.mainpage-banner {
    margin: 54px 0 0 0;
}
.mainpage-banner--gray .mainpage-banner__container {
    background: var(--color-gray-bg);
}
.mainpage-banner__container {
    padding: 20px 24px;
    border: 1px solid #EEEEF0;
    border-radius: 12px;
    align-items: center;
    display: flex;
}
.mainpage-banner__buttons {
    display: flex;
    flex-wrap: nowrap;
    margin-left: 20px;
    column-gap: 12px;
}
.mainpage-banner__title {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 8px;
}
.mainpage-banner__text{
    font-size: 15px;
    font-weight: 500;
}
@media screen and (max-width: 1047px) {
    .mainpage-banner__container {
        padding: 20px;
        display: block;
        align-items: center;
    }
    .mainpage-banner__icon {
        margin: 0 auto 10px;
    }
    .mainpage-banner__buttons {
        margin: 12px 0 0 0;
        justify-content: center;
    }
    .mainpage-banner__title,
    .mainpage-banner__text{
        text-align: center;
    }
    .mainpage-banner{
        margin: 24px 0;
    }
}