.banner {
    width: max-content;
    margin: 0 auto;
    padding-top: 200px;
    margin-bottom: 160px;
}

.banner div {
    width: 1000px;
    height: 300px;
    background: #7BA3FF;
    border-radius: 60px 60px 60px 60px;
    margin: 0 auto;
}

.banner-left {
    position: absolute;
    bottom: 0;
    width: 487px;
    transition: 1s;
    left: -487px;
}

.banner-right {
    position: absolute;
    bottom: 54px;
    height: 197px;
    transition: 1s;
    right: -428px;
}

.tabs {
    margin-bottom: 80px;
}

.tabs div {
    width: 186px;
    height: 96px;
    margin: 0 58px;
    background: #FFFFFF;
    box-shadow: 0px 0px 6px 0px rgba(0, 75, 121, 0.15);
    border-radius: 30px 30px 30px 30px;
    cursor: pointer;
}

.tabs .colours {
    display: block;
}

.tabs .white {
    display: none;
}

.tabs .on .colours {
    display: none !important;
}

.tabs .on .white {
    display: block !important;
}


.tabs .on {
    background: #7BA3FF;
    box-shadow: 0px 0px 6px 0px rgba(0, 75, 121, 0.15);
}

.content2,
.content3 {
    display: none;
}

.sTitle {
    height: 31px;
    margin-bottom: 50px;
    margin-left: 60px;
}

.cont1_swiper img {
    height: 402px;
}

.cont1_swiper {
    width: 686px;
    height: 386px;
    position: absolute;
    right: 0;
    top: 0;
}

.cont_box {

    border-radius: 60px;
    padding: 60px;
}

.cont_box p ,
.cont_box b{
    font-weight: 400;
    font-size: 14px;
    color: #5D728B;
    line-height: 24px;
    margin-bottom: 10px;
}

.footer {
    margin-top: 140px;
}

.videoBtn2 {
    width: 60px;
    animation: spin 3s linear infinite;
}

.videoBtn1 {
    width: 30px;
    position: absolute;
    top: 15px;
    left: 15px;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.videoBtnBox {
    width: 717px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
    border-radius: 74px 74px 74px 74px;
    padding: 40px;
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translate(0, -50%);
    cursor: pointer;
    transition: .3s;
}

.videoBtnBox img {
    transition: .3s;
}

.videoBtnBox p {
    font-weight: 400;
    font-size: 12px;
    color: #5D728B;
    line-height: 24px;
    transition: .3s;
}

.videoBtnBox:hover img {
    animation: ani .5s linear infinite;
}


.videoBtnBox:hover {
    background: #fff;
}

/* .videoBtnBox:hover p {
    color: #000;
} */

@keyframes ani {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);

    }

    100% {
        transform: scale(1);

    }
}

.videoCont {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 22;
}

.videoMode {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .8);
    z-index: 1;
}

.videoCont video {
    position: absolute;
    max-width: 70vw;
    max-height: 70vh;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}