.ate-whychoose{
  width:100%;
  background:#E1D59F;
  padding:100px 20px;
  overflow:hidden;
}

.ate-whychoose *{
  box-sizing:border-box;
}

.ate-whychoose-wrap{
  max-width:1200px;
  width:100%;
  margin:0 auto;
}

.ate-whychoose-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 55px;
}

.ate-whychoose-head span{
  display:inline-flex;
  color:#2C061F;
  border:1px solid rgba(44,6,31,0.25);
  padding:8px 18px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
  margin-bottom:18px;
}

.ate-whychoose-head h2{
  font-family:'Cinzel', serif;
  color:#2C061F;
  font-size:46px;
  line-height:1.08;
  margin:0 0 18px;
}

.ate-whychoose-head p{
  color:#1E293B;
  font-size:16px;
  line-height:1.75;
  margin:0;
}

.ate-whychoose-layout{
  display:grid;
  grid-template-columns:0.9fr 0.95fr 1.05fr;
  gap:26px;
  align-items:center;
}

.ate-whychoose-list{
  display:flex;
  flex-direction:column;
}

.ate-why-item{
  width:100%;
  border:0;
  border-bottom:1px solid rgba(30,41,59,0.18);
  background:transparent;
  padding:22px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
  text-align:left;
  color:#1E293B;
  transition:color .25s ease;
}

.ate-why-item span{
  font-size:17px;
  font-weight:800;
}

.ate-why-item strong{
  font-size:22px;
  color:#2C061F;
  transition:color .25s ease;
}

/* click pannum pothu size/position change aakaathu */
.ate-why-item:hover,
.ate-why-item.active{
  color:#D89216;
}

.ate-why-item:hover strong,
.ate-why-item.active strong{
  transform:none !important;
  color:#D89216;
}

.ate-why-card{
  width:100%;
  height:560px;
  min-height : 560px !important ;
  max-height:560px !important;
  background:#ffffff;
  border:1px solid rgba(30,41,59,0.14);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(30,41,59,0.10);
}

.ate-card-top{
  background:#D89216;
  color:#2C061F;
  text-align:center;
  padding:18px;
  font-size:17px;
  font-weight:900;
}

.ate-card-img{
  padding:14px 14px 0;
  overflow:hidden;
}

.ate-card-img img{
  width:100%;
  height:155px;
  object-fit:cover;
  border-radius:18px;
  display:block;
  pointer-events:none;
  transition:opacity .25s ease;
}

.ate-why-card h3{
  color:#2C061F;
  font-family:'Cinzel', serif;
  font-size:22px;
  line-height:1.25;
  margin:22px 20px 12px;
  text-align:center;
}

.ate-why-card p{
  color:#1E293B;
  font-size:14px;
  line-height:1.65;
  margin:0 20px 26px;
  text-align:center;
}

.ate-why-main-img{
  width:100%;
  height:360px;
  overflow:hidden;
  border-radius:24px;
}

.ate-why-main-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:24px;
  display:block;
  pointer-events:none;
  transition:opacity .25s ease;
}

@media(max-width:1024px){
  .ate-whychoose-layout{
    grid-template-columns:1fr 1fr;
    align-items:stretch;
  }

  .ate-whychoose-list{
    grid-column:1 / -1;
  }

  .ate-why-card{
    min-height:445px;
  }

  .ate-why-main-img{
    height:445px;
  }
}

@media(max-width:767px){
  .ate-whychoose{
    padding:70px 16px;
  }

  .ate-whychoose-head h2{
    font-size:34px;
  }

  .ate-whychoose-layout{
    grid-template-columns:1fr;
  }

  .ate-why-item span{
    font-size:16px;
  }

  .ate-why-card{
    min-height:auto;
  }

  .ate-why-main-img{
    height:260px;
  }
}