/* =========================================================
   FAQ SECTION
========================================================= */

.faq-section {
    width: 100%;
    background: #ffffff;
    box-sizing: border-box;
}

.faq-contain {
    padding-top: 80px;
    padding-bottom: 80px;
    border-top: 1px solid #DBDBDB;
}


/* =========================================================
   FAQ CONTAINER
========================================================= */

.faq-contain {
    display: grid;

    grid-template-columns: 1fr 1.25fr;

    column-gap: 100px;

    align-items: start;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.faq-left {
    min-width: 0;

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    min-height: 380px;
}


/* =========================================================
   HEADING
========================================================= */

.faq-heading h2 {
    margin: 0;
    line-height: 1.2;
    font-weight: 600;
}


/* =========================================================
   CONTACT
========================================================= */

.faq-contact {
    max-width: 360px;
}


.faq-contact h3 {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 600;
    color: #515151;
}


.faq-contact p {
    margin: 0 0 22px;

    line-height: 1.6;

    font-weight: 400;

    color: #515151;
}


/* =========================================================
   FAQ LIST
========================================================= */

.faq-list {
    width: 100%;
    min-width: 0;
}


/* =========================================================
   FAQ ITEM
========================================================= */

.faq-item {
    width: 100%;

    border-bottom: 1px solid #d9d9d9;
}


/* =========================================================
   QUESTION
========================================================= */

.faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 20px 0;

    background: transparent;
    border: 0;


    cursor: pointer;

    text-align: left;
}


.faq-question span:first-child {
    min-width: 0;
    font-size: 22px;
    line-height: 1.45;
    font-weight: 700;
    color: #000;
}


/* =========================================================
   FAQ ICON
========================================================= */

.faq-icon {
    width: 28px;
    height: 28px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    line-height: 1;
    font-weight: 300;

    color: #111111;

    transition: transform 0.25s ease;
}


/* =========================================================
   ANSWER
========================================================= */

.faq-answer {
    display: none;
    max-width: 700px;
    padding: 0 50px 20px 0;
    line-height: 1.6;
    color: #515151;
}


.faq-answer p {
    margin: 0;
}


/* =========================================================
   ACTIVE FAQ
========================================================= */

.faq-item.active .faq-answer {
    display: block;
}


.faq-item.active .faq-icon {
    transform: rotate(45deg);
}


/* =========================================================
   HOVER
========================================================= */

.faq-question:hover span:first-child {
    color: #0C6AA5;
}


.faq-question:hover .faq-icon {
    color: #0C6AA5;
}


/* =========================================================
   LARGE LAPTOP
   1201px – 1600px
========================================================= */

@media (max-width: 1600px) {

    .faq-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .faq-container {
        column-gap: 70px;
    }

    .faq-left {
        min-height: 350px;
    }

    .faq-heading h2 {
        font-size: 30px;
    }



}


/* =========================================================
   TABLET
   901px – 1200px
========================================================= */

@media (max-width: 1200px) {

    .faq-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .faq-container {
        grid-template-columns: 1fr 1.2fr;

        column-gap: 50px;
    }

    .faq-left {
        min-height: 330px;
    }

    .faq-heading h2 {
        font-size: 28px;
    }

    .faq-contact {
        max-width: 300px;
    }




    .faq-question {
        padding: 18px 0;
    }


}


/* =========================================================
   SMALL TABLET
   601px – 900px
========================================================= */

@media (max-width: 900px) {

    .faq-section {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .faq-container {
        grid-template-columns: 1fr;

        row-gap: 50px;
    }

    .faq-left {
        min-height: auto;

        gap: 40px;
    }

    .faq-heading h2 {
        font-size: 30px;
    }

    .faq-contact {
        max-width: 500px;
    }


    .faq-list {
        width: 100%;
    }

    .faq-question {
        padding: 18px 0;
    }


    .faq-answer {
        padding-right: 30px;
    }
}


/* =========================================================
   MOBILE
   600px and below
========================================================= */

@media (max-width: 600px) {

    .faq-section {
        padding-top: 45px;
        padding-bottom: 45px;
    }

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

    .faq-left {
        gap: 35px;
    }

    .faq-heading h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .faq-contact {
        max-width: 100%;
    }

    .faq-contact h3 {
        margin-bottom: 12px;

    }

    .faq-contact p {
        margin-bottom: 20px;


        line-height: 1.55;
    }

    .faq-question {
        gap: 15px;

        padding: 17px 0;
    }

    .faq-question span:first-child {
        line-height: 1.5;
    }

    .faq-icon {
        width: 24px;
        height: 24px;

        font-size: 20px;
    }

    .faq-answer {
        padding: 0 25px 18px 0;
        line-height: 1.55;
    }

    .faq-contain {
        display: block;
    }

    .faq-left {
        margin-bottom: 30px;
    }
}


/* =========================================================
   SMALL MOBILE
   400px and below
========================================================= */

@media (max-width: 400px) {

    .faq-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .faq-heading h2 {
        font-size: 25px;
    }





    .faq-question {
        padding: 15px 0;
    }


    .faq-icon {
        width: 22px;
        height: 22px;

        font-size: 18px;
    }


}