/* BANNER */
.banner-wrap{
    margin-top: 30px;
    padding-bottom: 50px;
}

.banner-wrap::after {
    content: "";
    position: absolute;
    width: calc(100% - 6rem);
    height: 40px;
    left: 3rem;
    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-image: linear-gradient(90deg, #016DD6 0%, #01B0FA 100%);
    overflow: hidden;
}
[data-theme="dark"] .banner{
        background: #12386d;
        background-image: none !important;
}
.dc-vps .banner {
    background-image: linear-gradient(90deg, #003C95 0%, #0066D3 100%);
}
.dc-collocation .banner {
    background-image: linear-gradient(90deg, #091626 0%, #0E1F25 100%);
}
.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 560px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}
.banner-text p.color-gray{
    color: #D9D9D9;
}
.banner-text .btn-banner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    gap: 10px;
    font-size: 1rem;
    color: #444444;
    background: #fff;
    margin-top: 1rem;
}

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

@media (min-width:970px) and (max-width:1280px) {
.banner-img {
    position: absolute;
    right: 0;
}
}
@media (min-width:970px) and (max-width:1079px) {
.banner-title {
        font-size: 4vw;
    }
.banner {
        height: 380px;
    }
.banner img {
        height: 100%;
    }
.banner-text {
    padding-left: 2rem;
    flex: 0 0 45%;
    z-index: 1;
}
}
@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;
    }
}