/* -------------have question--------------- */

.have-question {
    display: flex;
    flex-direction: column;
    background: url(../../../images/have-question-bcg.png) lightgray 50% / cover no-repeat;
    margin: 60px -16px;
    padding: 100px 25px;
}

.have-question-name {
    color: #FAFAFA;
    font-family: "Fixel Display-Bold", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin: 0;
}

.have-question-blocks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
    width: 100%;
}

.have-question-block {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    border: 2px solid rgba(250, 250, 250, 0.36);
    background: #050505;

}

.have-question-block-question-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.have-question-block-question, .have-question-answer {
    display: flex;
    padding: 20px 30px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;

}

.have-question-answer {
    display: none;
}

.have-question-block {
    cursor: pointer;
}

.have-question-block.open .have-question-answer {
    display: block;
}

.have-question-block.open .have-question-block-img {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.have-question-block-number {
    display: flex;
    padding: 7.5px 15px;
    border-radius: 900px;
    background: #FAFAFA;
    color: #050505;
    text-align: center;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.have-question-block-text {
    color: #FAFAFA;
    font-family: "Source Sans Pro Bold", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
}

.have-question-answer span {
    color: #FAFAFA;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.have-question-button {
    display: flex;
    width: 100%;
    margin-top: 30px;
    justify-content: center;
}

.have-question-button-wrapper {
    display: flex;
    padding: 25px 52px;
    justify-content: center;
    align-items: center;
    border-radius: 67px;
    background: #484040;
    width: max-content;
}

.have-question-button-wrapper button {
    background: none;
    border: none;
    cursor: pointer;
}

.have-question-button button span {
    color: #FAFAFA;
    font-family: "Source Sans Pro Bold", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

/* -------------end have question--------------- */

@media (min-width: 576px) {
    /* have question 576 */
    .have-question {
        padding: 80px 25px;
        margin: 60px -25px;
    }

    .have-question-block-number {
        padding: 10px 22.5px;
        font-size: 32px;
    }

    .have-question-block-text, .have-question-answer span {
        font-size: 24px;
    }

    .have-question-block-question-left {
        gap: 20px;
    }

    .have-question-block-question, .have-question-answer {
        padding: 30px;
    }

    .have-question-button {
        margin-top: 20px;
        justify-content: flex-end;
    }

    .have-question-button-wrapper {
        padding: 35px 52px;
    }

    .have-question-block-img {
        width: 34px;
        height: 19px;
    }
}

@media (min-width: 768px) {
    /* have question 768 */
    .have-question {
        padding: 100px 43px;
        margin: 100px -43px;
    }

    .have-question-button a span {
        font-size: 24px;
    }
}

@media (min-width: 992px) {
    /* have question 992 */
    .have-question {
        padding: 100px 38px;
        margin: 80px -38px;
    }

    .have-question-name {
        font-size: 64px;
    }

    .have-question-block-text, .have-question-answer span {
        font-size: 32px;
    }

    .have-question-blocks, .have-question-button {
        margin-top: 40px;
    }

}

@media (min-width: 1200px) {
    /* have question 1200 */
    .have-question {
        padding: 100px 60px;
        margin: 120px -60px;
    }

    .have-question-block-question-left {
        gap: 30px;
    }

    .have-question-blocks, .have-question-button {
        margin-top: 30px;
    }
}

@media (min-width: 1730px) {
    /* have question 1730 */
    .have-question {
        padding: 143px 99px;
        margin: 160px -99px;
    }


    .have-question-blocks, .have-question-button {
        margin-top: 40px;
    }

    .have-question-wrapper {
        max-width: 1730px;
        margin: 0 auto;
        width: 100%;
    }
}