.hero-banner{
  height:450px;
  object-fit:cover;
}

@media(max-width:768px){
  .hero-banner{
    height:147px;
  }
}





/* faq section */

.faq-sec{
  background:#dfdfdf;
  padding:80px 20px;
  font-family:Inter, sans-serif;
}

.faq-wrap{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* TEXT */
.faq-title{
  font-family:Playfair Display, serif;
  font-size:44px;
  margin-bottom:14px;
}

.faq-sub{
  max-width:420px;
  margin-bottom:40px;
}

/* FAQ ITEM */
.faq-item{
  border-bottom:1px solid rgba(0,0,0,0.25);
  padding:20px 0;
}

.faq-item input{
  display:none;
}

.faq-question{
  display:flex;
  align-items:center;
  gap:14px;
  cursor:pointer;
  font-family:Playfair Display, serif;
  font-size:22px;
}

.faq-no{
  font-size:14px;
}

.faq-icon{
  margin-left:auto;
  font-size:26px;
  transition:.3s;
}

/* ANSWER */
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
  padding-left:28px;
  font-size:15px;
  line-height:1.8;
}

/* OPEN STATE */
.faq-item input:checked ~ .faq-answer{
  max-height:200px;
}

.faq-item input:checked + label .faq-icon{
  transform:rotate(45deg);
}

/* IMAGE */
.faq-right img{
  width:100%;
  border-radius:14px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .faq-wrap{
    grid-template-columns:1fr;
  }
  .faq-title{font-size:32px;}
  .faq-question{font-size:18px;}
}



/* banner */
 
    /* BANNER */
.banner{
  width:100%;
  overflow:hidden;
}

/* DESKTOP */
.banner img{
  width:100%;
  height:420px;
  object-fit:cover;
}

/* TABLET */
@media(max-width:991px){
  .banner img{
    height:300px;
  }
}

/* MOBILE */
@media(max-width:576px){
  .banner img{
    height:174px;
  }
}
