.section-faq {
  margin-top: 30px;
  margin-bottom: 30px;
}
.section-faq-title {
  margin-bottom: 20px !important;
}
.section-faq-item {
  margin-bottom: 15px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 30px;
}
@media only screen and (max-width: 1199px) {
  .section-faq-item {
    padding: 20px;
  }
}
.section-faq-item-name {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex: 1 0 0;
  color: #232323;
  font-size: 24px;
  line-height: 28px;
  cursor: pointer;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
@media only screen and (max-width: 1199px) {
  .section-faq-item-name {
    font-size: 20px;
  }
}
.section-faq-item-name svg {
  flex: 0 0 auto;
  width: 35px;
  display: block;
  height: 35px;
  fill: #232323;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  transform: rotate(-90deg);
}
@media only screen and (max-width: 1199px) {
  .section-faq-item-name svg {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
  }
}
.section-faq-item.active .section-faq-item-name svg {
  transform: rotate(90deg);
}
.section-faq-item-text {
  display: none;
  margin-top: 30px;
}
.section-faq-item.active .section-faq-item-text {
  display: block;
}
.section-faq-item:hover .section-faq-item-name{
  color: #026EF9;
}
.section-faq-item:hover .section-faq-item-name svg{
  fill: #026EF9;
}
