.faq {
  margin-top: 60px;
  margin-bottom: 210px;
}


.faq__wrap {
  display: flex;
  justify-content: space-between;
}

.faq__aside {
  margin-right: 60px;
  width: 375px;
}

.faq-item {
  border: 1px solid #E1E1E1;
  padding: 32px 40px;
  margin-bottom: 24px;
}


.faq-item__question {
  position: relative;
  font-family: "NotoSansMedium";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #1A3C5E;
  cursor: pointer;
  min-width: 350px;
  
}

.faq-item__question::after {
  content: "";
  width: 14px;
  height: 9px;
  background: url("../images/arrow-select.svg") no-repeat center;
  position: absolute;
  right: 0px;
  bottom: 50%;
  transform: translateY(50%);
  display: block;
  transition: .2s ease-in;
}

.faq-item__question-text {
   max-width: 570px;
   margin-right: 45px;
}


.faq-item.active .faq-item__question::after {
  transform: translateY(50%) rotate(180deg);
}

.faq__title {
  color: #1A3C5E;
}

.faq__aside-text {
  margin-bottom: 40px;
}

.faq__content {
  width: calc(100% - 435px);
}
.catalog .faq__content {
  width: 100%;
}


.faq__wrap_article .faq__content {
  width: calc(100% - 25px);
}


.faq-item__answer {
  margin-top: 40px;
  display: none;
}

.faq-item__answer ul {
  margin-left: 20px;
  list-style: disc;
}




@media (max-width: 925px) {
  .faq__wrap {
     display: block;
  }

  .faq__aside {
    width: auto;
  }

  .faq__content {
    width: auto;
  }

  .faq__img-wrap {
    margin-bottom: 90px;
  } 
  .faq__aside {
    margin-right: 0;
  }

}


@media (max-width: 450px) {

  .faq-item__question-text {
    max-width: 300px;
  }

  .faq-item {
    padding: 16px 21px 16px 8px;
  }

  .faq__img-wrap {
    display: flex;
    justify-content: center;
  }

}

@media (max-width: 420px) {

  .faq-item__question-text {
    max-width: 245px;
  }

  .faq-item__question {
    min-width: unset;
  }
 
}