.questions {
    padding: 80px 0;
}

.questions__wrapper {
    max-width: 1190px;
    padding: 0 15px;
    margin: 0 auto;
}

.questions__banner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 42px 0 42px 0px;
    border: 1px solid #CDCDCD;
}

.questions__title {
    font-weight: 300;
    font-size: 24px;
    line-height: 31px;
}

.questions__button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    max-width: 200px;
    width: 100%;
    height: 40px;
    border-radius: 57px;
    border: 0;
    background-color: #fce500;
    cursor: pointer;
}

.questions__img {
    margin-right: 32px;
}

.questions__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .questions__img {
        display: none;
    }

    .questions__title {
        text-align: center;
        margin-bottom: 16px;
    }

    .questions__button {
        margin: 0 auto;
    }
}

@media screen and (max-width: 550px) {
    .questions__title {
        font-size: 18px;
        line-height: 20px;
    }
}

