@charset "UTF-8";
:root {
  --header-height: 100px;
}
body{
  background-color: #fff;
}

a {
  color: #333;
  text-decoration: none !important;
  font-family: "Poppins-500", sans-serif;
  transition: all .3s ease;
  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
}

.scroll--top{
  /* scroll-margin-top: var(--header-height); */
  margin-top: 80px;
}
.banner {
  background-image: url("/base/dist/images/bg.webp");
  background-size: cover;
  background-position: bottom center;
  min-height: 300px;
  display: flex;
  align-items: end;
  justify-content: center;
  position: relative;
}
.cover {
  background-color: rgba(0, 0, 0, .7);
  width: 100%;
  height: 100%;
  position: absolute;
  top:0;
  left:0;
  z-index: 1;
}
.box--banner {
  width: 100%;
  padding: 30px;
  z-index: 2;
}
.box--banner h1 {
  color: #fff;
}
.app-icon {
  width: 150px;
  height: 150px;
  border-radius: 20px;
  margin-right: 20px;
}
.btn-apple {
  background-color: #007AFF;
}
.btn-android {
  background-color: #03875f;
  
}
.btn-apple, .btn-android {
  color: #fff;
  border-radius: 8px;
  padding: 5px 30px;
  margin-right: 10px;
}
.btn-apple:hover, .btn-android:hover {
  color: #ccc;
}
@media screen and (max-width: 768px){
  h1 {
      font-size: 1.5rem !important;
  }
  .app-icon {
    width: 100px;
    height: 100px;
    display: flex;
    margin: 0 auto;
  }
  .scroll--top{
      margin-top: 60px;
  }
}

.topic-h1{
  color: #1b1e20;
  margin-bottom: 35px;
}
.input-search{
  height: 48px;
  font-size: 1.125rem;
  border: 1px solid rgb(255 255 255 / 27%);
  border-radius: 0.5rem;
  box-shadow: 1px 3px 13px rgba(0,0,0,0.16) !important;
  transition: all .3s;
  max-width: 80%;
  margin: 0 auto 40px;
}
.input-search:focus{
  outline: 0;
  border-color: #fff;
  background-color: unset;
}
.grid-box{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  @media screen and (max-width: 767px) {
    grid-template-columns: repeat(1, 1fr);
  }
}
.layout-content{
  margin-bottom: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgb(121 119 119 / 23%);
  & h2{
    margin-bottom: 1.25rem;
    color: #1b1e20;
  }
}
.card-content{
  display: block;
  padding: 1.2rem 1.25rem;
  border-radius: 0.75rem;
  box-shadow: 1px 3px 13px rgba(0,0,0,0.16);
  border: 1px solid rgb(255 255 255 / 27%);
  transition: all .3s;
  & h3{
    font-family: "Poppins-500", sans-serif;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    color: #1b1e20;
  }
  & p{
    font-size: 0.875rem;
    color: #495057;
    margin-bottom: 0;
  }
}
.did-find{
  text-align: center;
  margin: 5rem 0;
  & p{
    font-size: 1.125rem;
    color: #1b1e20;
    margin-bottom: 20px;
  }
  & .btn-contactus{
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 150px;
    width: 100%;
    height: 48px;
    border-radius: 10px;
    font-family: "Poppins-600", sans-serif;
    margin: 0 auto;
    color: #000;
    & i{
      margin-right: 6px;
    }
  }
}

.head-detail{
  border-bottom: 1px solid rgb(121 119 119 / 23%);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  color: #1b1e20;
  & h1{
    margin-bottom: 5px;
  }
  & p{
    color: #1b1e20;
    font-size: 1.12rem;
  }
  .tag-events{
    font-family: "Poppins-600", sans-serif;
    font-size: 0.875rem;
    color: #ff9641;
    background-color: #3e261c;
    min-width: 66px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
  }
}
.detail-content{
  color: #1b1e20;
  & p{
    margin-bottom: 1.3rem;
    font-size: 1.12rem;
  }
  & h2{
    margin-bottom: 1rem;
    font-size: 1.3rem;
  }
  & a{
    color: #ff9641;
  }
  .detail-image{
    text-align: center;
    margin: 2rem 0;
    & img{
      border-radius: 0.5rem;
      max-height: 600px;
      max-width: 100%;
      margin: auto;
      object-fit: contain;
      border: 1px solid rgb(121 119 119 / 23%);
    }
  }
}