main .bannerhero{
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: 100vh;
    gap: 4vh;
    background: linear-gradient(to top, #fff, #203a4300, #fff),
    url(../assets/amb2.jpg)
      no-repeat 50% 50% / cover;
}
main .bannerhero .font{
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  height: auto;
  padding: 2vh;
  padding-bottom: 5vh;
}
main .bannerhero .txt{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3vh;
  max-width: 1200px;
  margin: auto;
}
main .bannerhero .txt .box_button{
  display: flex;
  gap: 2vh;
}
main .bannerhero span{
  max-width: 800px;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  main .bannerhero .font{
    width: 80%;
    margin-left: 10%;
  }

  main .bannerhero .txt {
    flex-direction: column;
  }
}




section.other .content{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 2vh;
  max-width: 1400px;
  margin: auto;
}
section.other .box{
  width: 50%;
}
main .other .top{ 
  display: flex;
  flex-direction: column;
  gap: 2vh;
  color: #fff;
}

section.other .swiper {
  width: 100%;
  padding-bottom: 3vh;
}

section.other .swiper-slide {
  width: 35vh;
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: self-start;
  border-radius: 10px;
  border: 2px solid transparent;
}
section.other .swiper-slide:hover {
  border: 2px solid #c5ab63;
}

section.other .swiper-pagination-bullet,
section.other .swiper-pagination-bullet-active {
  background:  #17202a ;

}

section.other .swiper-slide span {
  text-transform: uppercase;
  color:  #17202a ;
  padding: 7px 18px 7px 25px;
  display: inline-block;
  border-radius: 0 20px 20px 0px;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-family: "Open Sans", sans-serif;
}


section.other .swiper-slide h2 {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.4;
  margin-bottom: 15px;
  padding: 25px 45px 0 25px;
}

.swiper-slide p {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  display: flex;
  align-items: center;
  padding: 0 25px 35px 25px;
}

.swiper-slide svg {
  color: #fff;
  width: 22px;
  height: 22px;
  margin-right: 7px;
}

.swiper-slide--one {
  background:
    url(../assets/12.png)
      no-repeat 50% 50% / cover;
}

.swiper-slide--two {
  background:
    url(../assets/3.png)
      no-repeat 50% 50% / cover;
}

.swiper-slide--three {
  background:
    url(../assets/5.png)
      no-repeat 50% 50% / cover;
}

.swiper-slide--four {
  background:
    url(../assets/14.png)
      no-repeat 50% 50% / cover;
}

.swiper-slide--five {
  background:
    url(../assets/200.png)
      no-repeat 50% 50% / cover;
}



.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
  background-image: none;
}


section.other .cond{
  width: 50%;
  padding-top: 5vh;
  margin: auto;
}
section.other .accordion .accordion-text{
  width: 50%;
}
section.other .cond a{
  color: #fff;
  text-decoration: underline;
}
.accordion .accordion-text .title{
  font-size: 35px;
  font-weight: 600;
  color: #fff;
  font-family: 'Fira Sans', sans-serif;
}
.accordion .accordion-text .faq-text{
  margin-top: 25px;
  height: 263px;
  overflow-y: auto;
}
.faq-text::-webkit-scrollbar{
  display: none;
}
.accordion .accordion-text li{
  list-style: none;
  cursor: pointer;
}
.accordion-text li .question-arrow{
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.accordion-text li .question-arrow .question{
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s ease;
}
.accordion-text li .question-arrow .arrow{
  font-size: 20px;
  color: #fff;
  transition: all 0.3s ease;
}
.accordion-text li.showAnswer .question-arrow .arrow{
  transform: rotate(-180deg);
}
.accordion-text li:hover .question-arrow .question,
.accordion-text li:hover .question-arrow .arrow{
  color: #fff;
}
.accordion-text li.showAnswer .question-arrow .question,
.accordion-text li.showAnswer .question-arrow .arrow{
  color: #c5ab63;
}
.accordion-text li .line{
  display: block;
  height: 2px;
  width: 100%;
  margin: 10px 0;
  background: rgba(0, 0, 0, 0.1);
}
.accordion-text li p{
  color: #595959;
  display: none;
  margin-top: 2vh;
}
.accordion-text li.showAnswer p{
  display: block;
  color: #fff;
}

@media (max-width: 994px) {
  .accordion{
    max-width: 100%;
    padding: 45px 60px 45px 60px;
  }
  .accordion .image-box{
    height: 360px;
    width: 220px;
  }
  .accordion .accordion-text{
    width: 63%;
  }
}
@media (max-width: 820px) {
  .accordion{
    flex-direction: column;
  }
  .accordion .image-box{
    height: 360px;
    width: 300px;
    background: #7d2ae8;
    width: 100%;
    border-radius: 25px;
    padding: 30px;
  }
  .accordion .accordion-text{
    width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 538px) {
  .accordion{
    padding: 25px;
  }
  .accordion-text li p{
    width: 98%;
  }
}
@media screen and (max-width: 850px) {
  section.other .content{
    flex-direction: column-reverse;
  }
  section.other .box{
    width: 100%;
  }
  section.other .cond{
    width: 100%;
  }
}



section.offer{
  background-color: #fff;
  border-top: 1px solid  #bdc3c7  ;
  max-width: 1400px;
  height: 100vh;
  margin: auto;
  display: flex;
}

section.offer .content{
  border-radius: 10px;
  max-width: 1400px;
  margin: auto;
  padding: 5vh;
  background-size: cover;
  background-position: bottom;
}
section.offer .content .box{
  width:60%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 5vh;
  margin-left: 40%;
}
section.offer .content .box .grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5vh;
  grid-auto-rows: minmax(100px, auto);
}
section.offer .content .box .grid .grid-item{
  padding: 2vh;
  border-top: 2px solid #000d10;
}
section.offer .content .box a{
  width: 50%;
}
@media screen and (max-width: 900px) {
  section.offer .content{
    border-radius: 0px;
  }
  section.offer .content .box{
    width: 100%;
    margin-left: 0;
  }
  section.offer .content .box a{
    width: 100%;
  }
  }
  













section.time{
  background-color: #fff;
  padding-top: 10vh;
  padding-bottom: 10vh;
}
section.time .content{
  max-width: 1400px;
  margin: auto;
  padding: 2vh;
}
section.time h2{
  color: black;
  margin-bottom: 8vh;
}
section.time .wrapper{
  max-width: 1400px;
  margin: 0 auto; 
  padding: 0 20px;
  position: relative;
}
.wrapper .center-line{
  position: absolute;
  height: 80%;
  width: 4px;
  background: #fff;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
}
.wrapper .row{
  display: flex;
}
.wrapper .row-1{
  justify-content: flex-start;
}
.wrapper .row-2{
  justify-content: flex-end;
}
.wrapper .row section{
  width: calc(50% - 40px);
  padding: 5vh;
  position: relative;
  border: 1px solid #4368b0;
  border-radius: 10.5555555556rem;
}
.wrapper .row section::before{
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  background: #fff;
  top: 28px;
  z-index: -1;
  transform: rotate(45deg);
}
.row-1 section::before{
  right: -7px;
}
.row-2 section::before{
  left: -7px;
}
.row section .icon,
.center-line .scroll-icon{
  position: absolute;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 45px;
  border-radius: 50%;
  color: #000;
  font-size: 17px;
  box-shadow: 0 0 0 2px #000, inset 0 2px 0 rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.05);
}
.center-line .scroll-icon{
  bottom: 0px;
  left: 50%;
  font-size: 30px;
  transform: translateX(-50%);
}
.row-1 section .icon{
  top: 15px;
  right: -60px;
}
.row-2 section .icon{
  top: 15px;
  left: -60px;
}
.row section .details,
.row section .bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.row section .details .title{
  font-weight: 700;
  color: #000d10;
}
.row section p{
  margin: 10px 0 17px 0;
}
.row section .bottom a{
  text-decoration: none;
  background: #ff7979;
  color: #fff;
  padding: 7px 15px;
  border-radius: 5px;
  /* font-size: 17px; */
  font-weight: 400;
  transition: all 0.3s ease;
}
.row section .bottom a:hover{
  transform: scale(0.97);
}
@media(max-width: 790px){
  .wrapper .center-line{
    left: 40px;
  }
  .wrapper .row{
    margin: 30px 0 3px 60px;
  }
  .wrapper .row section{
    width: 100%;
  }
  .row-1 section::before{
    left: -7px;
  }
  .row-1 section .icon{
    left: -60px;
  }
}
@media(max-width: 380px){
  .wrapper .center-line,
  .row section::before,
  .row section .icon{
    display: none;
  }
  .wrapper .row{
    margin: 10px 0;
  }
} 
@media screen and (max-width: 850px) {
  section.time h2{
    width: 100%;
  }
}






