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

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

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

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

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

.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 .videoBtn2,
.videoBtnBox:hover .videoBtn1 {
    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%);
}

.animateItem {
    opacity: 0;
    transform: translateY(20%);
}

.animateItemOn {
    transition: .5s;
    opacity: 1 !important;
    transform: translateY(0%) !important;
}