
.faq-drop__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
}

@media (max-width: 767px) {
    .faq-drop__content {
        row-gap: 20px;
    }
}

.faq-drop__item {
    width: 100%;
    padding-bottom: 30px;
    border-bottom: 1px solid #F0F0F0;
}

@media (max-width: 767px) {
    .faq-drop__item {
        padding-bottom: 20px;
    }
}

.faq-drop__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 25px;
    column-gap: 25px;
    cursor: pointer;
}

.faq-drop__head._active .faq-drop__icon span:first-child {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-drop__title {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin-bottom: 0;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 27px;
    color: #130F13;
}

@media (max-width: 767px) {
    .faq-drop__title {
        font-size: 18px;
        line-height: 1.3;
    }
}

@media (max-width: 478px) {
    .faq-drop__title {
        font-size: 16px;
    }
}

.faq-drop__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    height: 20px;
    width: 20px;
    position: relative;
}

.faq-drop__icon span {
    width: 100%;
    height: 2px;
    background: #EC3438;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.faq-drop__icon span:first-child {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-drop__body {
    margin-top: 30px;
    display: none;
}

.faq-drop__body > *:not(:last-child) {
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .faq-drop__body {
        margin-top: 20px;
    }
}
