.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 15px;
}

.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: 500;
    margin: 0;
    color: #fff;
}

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

.button__text {
    display: block;
}

.button__icon {
    display: none;
}

@media (max-width: 1080px) {
    .text-banner {
        flex-direction: column;
        align-items: start !important;
        gap: 10px !important;
    }
}

@media (max-width: 768px) {
    .banner__content .text-banner h3 {
        font-size: 16px;
    }

    .banner__content .text-banner p {
        font-size: 12px;
    }

    .banner__content .button.is--main .button__text {
        display: none;
    }

    .banner__content .button.is--main .button__icon {
        display: block;
    }

    .banner__content .button.is--main {
        padding: 0;
        width: 40px;
        height: 40px;
    }

    .banner__content .button.is--main .button__icon{
        width: 10px;
        height: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .banner__content .button.is--main .button__icon svg{
        width: 100%;
        height: 100%;
    }

    .banner__content {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .banner__content .text-banner h3 {
        font-size: 12px;
    }

    .banner__content .text-banner p {
        font-size: 10px;
    }

    .banner__content .button.is--main {
        padding: 0;
        width: 27px;
        height: 27px;
    }

    .banner__content .button.is--main .button__icon{
        width: 6px;
        height: 6px;
    }
}
