.faqs-section {
    padding-top: 100px
}

.faqs-section .container {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}

.faqs-section h2 {
    text-align: center;
}

.faq-container {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
}

.faq-row {
    padding: 20px 24px;
    border-radius: 10px;
    background-color: #ffffff;
}

.faq-inner-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-left {
    display: flex;
    align-items: center;
    column-gap: 30px;
}

.faq-number {
    font-size: 20px;
    font-weight: 300;
    line-height: 27px;
    color: rgba(17, 43, 77, .2);
}

.faq-row p {
    font-weight: 700;
}

.faq-trigger {
    width: 42px;
    height: 42px;
    box-shadow: 0px 2px 2px 0px rgba(47, 71, 114, 0.1);
    border-radius: 61px;
    background-color: rgba(255,255,255);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-trigger i {
    color: var(--green-color);
}

.faq-row .faq-answer  {
    font-weight: 400;
}

.faq-left, .faq-answer  {
    width: calc(100% - 42px);
}

.faq-answer  {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, padding-top 0.4s ease;
    padding-top: 0;
}

.faq-row.active .faq-answer  {
    padding-top: 30px;
}

.faq-row.active .faq-trigger i:before {
    content: '\f068';
    transition: transform 0.3s ease;
}

@media(max-width: 991px) {
    .faq-number {
        display: none;
    }

    .faqs-section {
        padding-top: 60px;
    }
}

@media(max-width: 575px) {
    .faqs-section {
        padding-top: 30px;
    }

    .faq-left p {
        font-size: 14px;
        line-height: 18px;
    }

    .faq-trigger {
        width: 32px;
        height: 32px;
    }

    .faq-left, .faq-answer  {
        width: calc(100% - 32px);
        font-size: 14px;
        line-height: 18px;
    }

    .faq-container {
        row-gap: 2px;
    }

    .faqs-section .container {
        row-gap: 20px;
    }
}