.faqs--widget .faq-item {
    border-bottom: 0.5px solid rgba(48, 48, 48, 0.6);
    padding: 30px 0 40px;
}

.faqs--widget h2 {
    text-align: center;
    margin-top: 15px;
}

.faqs--widget .faq-question {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-gap: 20px;
    gap: 20px;
    position: relative;
    cursor: pointer;
}

.faqs--widget .faq-answer {
    font-family: 'Karla';
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    display: none;
}

.faqs--widget .faq-question .arrow {
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    border: 1px solid #D2B589;
    backdrop-filter: blur(2px);
    border-radius: 100%;
    position: absolute;
    top: -10px;
    right: 0;
    cursor: pointer;
}

.faqs--widget .faq-question .arrow svg {
    transform: scale(-1);
    -webkit-transform: scale(-1);
    -moz-transform: scale(-1);
    -o-transform: scale(-1);
    -ms-transform: scale(-1);
    transition: transform 0.3s ease-out;
    -webkit-transition: transform 0.3s ease-out;
    -moz-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    -ms-transition: transform 0.3s ease-out;
}

.faqs--widget .faq-item.active .faq-question .arrow svg {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transition: transform 0.3s ease-out;
    -webkit-transition: transform 0.3s ease-out;
    -moz-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    -ms-transition: transform 0.3s ease-out;
}

.faqs--widget .faq-question .title--text {
    font-family: 'Kalnia Regular';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-transform: capitalize;
    color: #303030;
}

.faqs--widget .faq-question .title--text,
.faqs--widget .faq-answer {
    max-width: 767px;
    width: 100%;
}

.faqs--widget .faq-item.active .faq-answer {
    margin-top: 9px;
    margin-bottom: -22px;
}

@media only screen and (max-width: 991px) {

    .faqs--widget .faq-question .title--text,
    .faqs--widget .faq-answer {
        padding-right: 71px;
    }
}

@media only screen and (max-width: 767.98px) {

    .faqs--widget .faq-question .arrow {
        width: 41px;
        height: 41px;
        top: 0;
    }

    .faqs--widget .faq-item.active .faq-answer {
        margin-bottom: -3px;
    }

    .faqs--widget .faq-item:first-child {
        padding-top: 41px;
    }

    .faqs--widget .faq-item {
        padding: 30px 0 30px;
    }
}