@media (max-width: 1200px) {
    .page__banner {
        display: none;
    }
}
.page__banner {
    width: 100%;
    background-image: linear-gradient(90deg, rgba(25, 25, 25, 1) 0%, rgba(0, 183, 244, 0.9) 100%), url('/static/assets/img/banner-img.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 24px 0;
}

.banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.banner__content .text-banner {
    display: flex;
    align-items: center;
    gap: 24px;
}

.banner__content .text-banner h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.banner__content .text-banner p {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    color: #fff;
}

.banner__content .button.is--main {
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
}
