
.why-choose-us {
  font-family: "Mulish", sans-serif;
  background: #0a0909;
  padding: 50px 20px;
  background-image: linear-gradient(#000000d3,#00000092),url("../images/why-us.jpg");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.content{
    margin-bottom: 15rem;
}

.content > h1 {
  font-size: 42px;
  color: #8b5e3c;
  margin-bottom: 25px;
  position: relative;
  text-align: center;
}

.content h1::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #c89b6d, #8b5e3c);
  display: block;
  margin-top: 10px;
  border-radius: 5px;
  margin: 10px auto 0;
  position: relative;
  right: 100px;
}

.title {
  font-size: max(2vw, 24px);
  line-height: 1.1;
  padding-bottom: .4em;
  color: rgb(255, 255, 255);
  text-shadow: 0 2px 2px rgba(0, 0, 0, .1);
}

.text {
  font-size: max(1vw, 15px);
  line-height: 1.4;
  overflow: hidden;
  padding-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.accordions {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.accordion {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  width: max(50vw, 280px);
  padding: 25px 30px 10px;
  border-radius: 15px;
  margin-bottom: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.accordion:nth-child(2) {
  background: rgba(255, 180, 180, 0.08);
}

.accordion:nth-child(3) {
  background: rgba(103, 78, 4, 0.24);
}

.accordion:nth-child(4) {
  background: rgba(220, 180, 255, 0.08);
}

@media screen and (max-width: 767px) {
  .accordion {
    padding: 15px 20px 15px;
  }

  .title {
    font-size: 20px;
  }

  .content > h1{
    font-size: 30px;
  }

  .content h1::after{
    right: 0;
  }

  .content{
    margin-bottom: -4rem;
  }

  .accordion{
    text-align: center;
    width: 100%;
  }

  /* .why-choose-us {*/
  /*  overflow: hidden;*/
  /*}*/
  
    .why-choose-us {
    background-attachment: scroll;
  }

  .accordion {
    transform: translateZ(0);
    will-change: transform, opacity;
  }
}