/* ==========================================================================
   HOME FAQ
   ========================================================================== */


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

.home-faq {
    width: 100%;

    padding: 72px 0;

    background: #FFFFFF;
}


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

.home-faq__heading {
    max-width: 680px;

    margin: 0 auto 34px;

    text-align: center;
}











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

.home-faq__list {
    max-width: 860px;

    margin: 0 auto;
}


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

.home-faq-item {
    margin-bottom: 11px;

    background: #FFFFFF;

    border: 1px solid #E7E7E7;
    border-radius: 7px;

    overflow: hidden;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


.home-faq-item:last-child {
    margin-bottom: 0;
}


.home-faq-item.is-open {
    border-color: #DDDDDD;

    box-shadow:
        0 7px 22px
        rgba(0, 0, 0, .04);
}


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

.home-faq-item__heading {
    margin: 0;

    font-size: inherit;
}


/* ==========================================================================
   BUTTON
   ========================================================================== */

.home-faq-item__button {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    width: 100%;
    min-height: 58px;

    padding: 16px 18px;

    background: #FFFFFF;

    border: 0;

    color: #262626;

    text-align: left;

    cursor: pointer;

    outline: none;
}


.home-faq-item__button:hover {
    background: #F0F0F0;
}


.home-faq-item__button:focus {
    box-shadow:
        inset 0 0 0 2px
        #002EBE;
}


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

.home-faq-item__question {
    flex: 1;

    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}


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

.home-faq-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 32px;

    width: 32px;
    height: 32px;

    background: #F0F0F0;

    border-radius: 50%;

    color: #002EBE;

    font-size: 12px;
}


.home-faq-item.is-open
.home-faq-item__icon {
    background: #002EBE;

    color: #FFFFFF;
}


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

.home-faq-item__panel {
    border-top: 1px solid #E7E7E7;
}


.home-faq-item__answer {
    padding: 17px 18px 19px;

    color: #666666;

    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    line-height: 1.75;
}


/* ==========================================================================
   TABLET
   ========================================================================== */

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

    .home-faq {
        padding: 60px 0;
    }


    .home-faq__heading h2 {
        font-size: 28px;
    }

}


/* ==========================================================================
   MOBILE
   ========================================================================== */

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

    .home-faq {
        padding: 48px 0;
    }


    .home-faq__heading {
        margin-bottom: 27px;

        text-align: left;
    }


    .home-faq__heading h2 {
        font-size: 25px;
    }


    .home-faq__intro {
        font-size: 13px;
    }


    .home-faq-item__button {
        min-height: 56px;

        gap: 13px;

        padding: 14px;
    }


    .home-faq-item__question {
        font-size: 13px;
    }


    .home-faq-item__icon {
        flex-basis: 30px;

        width: 30px;
        height: 30px;
    }


    .home-faq-item__answer {
        padding: 15px 14px 17px;

        font-size: 12px;
    }

}