.banner-ms.banner-ms--faq .banner-ms__img {
  height: 405px;
}

.faq .container-ms {
  padding-top: 51px;
  padding-bottom: 51px;
  width: 1028px;
}
.faq__wrapper {
  border: 2px solid #030503;
  box-shadow: 8px 8px 0 -2px #030503;
  padding: 86px 80px 40px 109px;
}
.faq__item {
  border-bottom: 1px solid #030503;
  padding: 18px 0 20px;
}
.faq__item:last-child {
  border: none;
}
.faq__item.active .faq__item__content {
  display: block;
  max-height: 9999px;
  transition: max-height 0.2s ease-in-out;
  padding: 3px 0 7px 70px;
}
.faq__item.active .faq__item__content > * {
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}
.faq__item.active .faq__item__toggle:before {
  opacity: 0;
}
.faq__item__title {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
}
.faq__item__title h3 {
  font-size: 20px;
  line-height: 28px;
  margin: 0;
}
.faq__item__toggle {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid #030503;
  box-shadow: 2px 2px 0 0 #030503;
  flex: 0 0 24px;
}
.faq__item__toggle:after, .faq__item__toggle:before {
  content: "";
  display: block;
  width: 2px;
  height: 2px;
  border-radius: 2px;
  background-color: #030503;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  opacity: 1;
  transition: opacity 0.2ms ease-in-out;
}
.faq__item__toggle:after {
  width: 12px;
}
.faq__item__toggle:before {
  height: 12px;
}
.faq__item__content {
  margin: 0;
  padding: 0 0 0 70px;
  max-height: 0;
  overflow: hidden;
  transition: padding 0.2s ease-in-out, max-height 0.2s cubic-bezier(0, 1, 0, 1);
}
.faq__item__content > * {
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
.faq__item__content p {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
}

@media (max-width: 1160px) {
    .faq .container-ms {
        padding-top: 28px;
        padding-right: 25px;
    }

    .faq__wrapper {
        padding: 5px 14px 20px 18px;
    }

    .faq__item.active .faq__item__content {
        padding: 17px 0 37px;
    }

    .faq__item__title h3 {
        font-size: 18px;
        line-height: 25px;
    }

    .faq__item__content {
        padding-right: 0;
        padding-left: 0;
    }

        .faq__item__content p {
            font-size: 16px;
            line-height: 25px;
        }
}