.banner__box {
    display: flex;
    justify-content: space-between;
    padding: 30px 40px 0 60px;
    gap: 20px;
    border-radius: 24px;
    background: linear-gradient(225deg, #d1adff 0%, #8290ff 37.81%, #d1adff 100%);
}

.banner__left {
    padding-top: 29px;
    padding-bottom: 29px;
}

.banner__subtitle {
    text-align: left;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.5);
}

.banner__title {
    text-align: left;
    color: #fff;
    max-width: 610px;
    margin-bottom: 24px;
}

.banner__description {
    text-align: left;
    color: #fff;
    max-width: 610px;
    letter-spacing: -0.1px;
    margin-bottom: 24px;
}

.banner__link {
    background: #FFFFFF;
    transition: background .3s ease-in-out;
}

.banner__link:hover {
    background: rgba(255, 255, 255, 0.7);
}

.banner__link span {
    background: linear-gradient(225deg, #D1ADFF 0%, #8290FF 37.81%, #D1ADFF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner__link::before {
    display: none;
}

.banner__img {
    display: flex;
}

.banner__img img {
    width: 432px;
    height: auto;
}

@media (max-width: 1150px) {
    .banner__box {
        padding: 30px 30px 0 30px;
    }
}

@media (max-width: 1050px) {
    .banner__box {
        flex-direction: column;
        gap: 24px;
        padding: 30px 20px 0 20px;
    }

    .banner__left {
        text-align: center;
        padding-top: 0;
    }

    .banner__title {
        margin: 0 auto 24px auto;
        text-align: center;
        max-width: 850px;
    }

    .banner__description {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 24px auto;
    }

    .banner__subtitle {
        text-align: center;
    }

    .banner__img {
        justify-content: center;
    }
}

@media (max-width: 680px) {
    .banner__title {
        margin: 0 auto 15px auto;
    }

    .banner__img img {
        width: 380px;
        height: auto;
    }
}

@media (max-width: 500px) {
    .banner__box {
        padding: 20px 20px 0 20px;
        border-radius: 10px;
    }

    .banner__description {
        margin: 0 auto 15px auto;
    }

    .banner__img img {
        width: 300px;
        height: auto;
    }
}

@media (max-width: 390px) {
    .banner__description {
        margin: 0 auto 15px auto;
    }

    .banner__img img {
        width: 240px;
        height: auto;
    }
}

.gateway__table-change.gateway__table-change-plus {
    color: #7EB194;
}

.gateway__table-change.gateway__table-change-minus {
    color: #DB5748;
}