/* BANNER */
.banner-wrap{
    margin-top: 30px;
    padding-bottom: 50px;
}
.banner-wrap::after {
    content: "";
    position: absolute;
    width: 1000px;
    height: 40px;
    left: calc(50% - 1000px / 2);
    bottom: 35px;
    background: #003C95;
    opacity: .2;
    filter: blur(10px);
    display: block;
    z-index: -1;
}
.banner {
    box-sizing: border-box;
    height: 420px;
    background: #E9F3FF;
    border-radius: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #016DD6 0%, #01B0FA 100%);
    overflow: hidden;
}
.dc-vps .banner {
    background: linear-gradient(90deg, #003C95 0%, #0066D3 100%);
}
.dc-collocation .banner {
    background: linear-gradient(90deg, #333333 0%, #003C95 100%);
}
.dc-vps .banner img {
    content: url(/web/img/banners/vps_banner.png?2);
}
.dc-collocation .banner img {
    content: url(/web/img/banners/collocation_banner.png);
}
.dc-collocation .banner .banner-title{
    background: linear-gradient(120deg, #FFFFFF 50%, #4BA0FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.banner-title {
    font-size: 48px;
    line-height: 120%;
    color: #fff;
}

.collocation .banner-title {
    font-size: 48px;
    line-height: 110%;
    background: linear-gradient(90deg, #444444 50%, #4BA0FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-text {
    padding: 40px 0 40px 40px;
    flex: 0 0 490px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}
.banner-text p.color-gray{
    color: #D9D9D9;
}
.banner-text .btn-banner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 30px;
    gap: 10px;
    font-size: 1rem;
    color: #444444;
    background: #fff;
    margin-top: 2rem;
}

.banner-img {
    display: flex;
    height: 100%;
    align-items: flex-end;
}

@media (max-width: 969px) {
    .banner-wrap {
        margin-top: 0;
    }
    .banner-wrap::after {
        width: 90%;
        left: calc(5%);
    }
    .banner {
        height: auto;
        flex-direction: column-reverse;
        padding-top: 0;
        border-radius: 0;
    }

    .banner-text {
        max-width: 80vw;
        flex: 0 0 45%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .banner-img {
        mask-image: linear-gradient(to top, transparent, black 15%)
    }

    .banner-img img {
        max-width: 100%;
    }
}

@media (max-width: 800px) {
    .banner-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 540px) {
    .banner-title {
        font-size: 2rem;
    }

    .banner-text {
        max-width: 100%;
        padding: 1.5rem;
    }
}