.faq {
  padding: 4rem 0;
  background: #f3f3f3;
}

.faq .section-title {
  font-weight: 800;
  font-size: 26px;
  line-height: 137.5%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #111111;
}

.faq__list {
  background: #FAFAFA;
  padding: 0 2rem;
}

.faq__item {
  border-top: .1rem solid #CFDBE0;
  padding: 2rem 0 2.5rem;
}

.faq__item:first-of-type {
  border-top: none;
}

.faq__item-title {
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 2.4rem;
  padding-right: 5rem;
  position: relative;
  cursor: pointer;
}

.faq__item-title::before {
  content: "";
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: .3rem solid #111;
  border-left: .3rem solid #111;
  right: 1rem;
  top: calc(50% - .8rem);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.faq__item-text {
  margin-top: 0rem;
  font-size: 1.4rem;
  line-height: 2.3rem;
  color: #3D5061;
  height: 0;
  opacity: 0;
}

.faq__item.active .faq__item-title {
  cursor: text;
}

.faq__item.active .faq__item-title::before {
  content: "";
  -webkit-transform: rotate(-225deg);
  -ms-transform: rotate(-225deg);
  transform: rotate(-225deg);
}

.faq__item.active .faq__item-text {
  margin-top: 2.5rem;
  -webkit-transition: height .3s, opacity .3s;
  -o-transition: height .3s, opacity .3s;
  transition: height .3s, opacity .3s;
  height: auto;
  opacity: 1;
  font-weight: 400;
}

.main-wrap::before {
  content: none;
}

@media only screen and (min-width: 768px) and (min-width: 1280px) {
  .faq {
    padding: 8rem 0;
    padding-top: 0;
  }

  .faq .breadcrumbs {
    margin-top: 2.5rem;
  }

  .faq .container {
    z-index: 4;
  }

  .faq .section-title {
    font-size: 32px;
    line-height: 137.5%;
    margin-bottom: 4rem;
  }

  .faq__list {
    padding: 0 7rem;
  }

  .faq__item {
    padding: 3rem 0;
  }

  .faq__item.active .faq__item-text {
    margin-top: 2rem;
    padding-right: 10rem;
  }
}