.homeCover {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    top: -101%;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.homecover-con {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -60%);
    transform: translate(-50%, -60%);
    color: #fff;
    
    text-align: center;
    display: flex;
    flex-direction: column;
}
.homecover-con .homeCover {
    line-height: 1;
    margin: 0 0 20px 0;
    font-weight: bold;
    font-size: 64px;
    background-image: none;
    color: #fff;
    width: 100%;
}
.homecover-con .slogan {
    font-size: 64px;
    letter-spacing: 8px;
}
.home-video {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.home-video > video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    
}
.home-video .play-btn {
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
}

.home-banner {
    width: 100%;
    height: 100%;
}

.home-banner > img {
    width: 100%;
    height: 100%;
}
.home-banner-xl {
    display: block;
}
.home-banner-xs {
    display: none;
}
@media screen and (max-width: 768px) {
    .home-banner-xl {
        display: none;
    }
    .home-banner-xs {
        display: block;
    }
}

.floating-arrow {
    width: 40px;
    height: 40px;
    position: absolute;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    left: 50%;
    bottom: 10%;
    z-index: 2;
}
.chevron-down {
    fill: #ffffff;
    width: 40px;
    height: 40px;
    -webkit-animation: floating-arrow-down 2s infinite ease-in-out;
	animation: floating-arrow-down 2s infinite ease-in-out;
}
@keyframes floating-arrow-down {
  from {
    -webkit-transform: translate(0, -30%);
            transform: translate(0, -30%); 
        }
  65% {
    -webkit-transform: translate(0, 0%);
            transform: translate(0, 0%); 
        }
  to {
    -webkit-transform: translate(0, -30%);
            transform: translate(0, -30%); 
        } 
} 




.coverWarp {
    display: flex;
    position: relative;
    width: 100%;
    min-height: 720px;
    min-width: 320px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow-x: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.FullBannerA {
    min-height: 960px !important;
        background-position: top;
}
.FullBannerB {
    min-height: 960px !important;
}
.FullBannerC {
    min-height: 960px !important;
}
.coverBannerInner {
    width: var(--content-width);
    margin-right: auto;
    margin-left: auto;
}
.conRright {
    display: flex;
    justify-content: flex-end;
}
.conLeft {
    display: flex;
    justify-content: flex-start;
}
.coverContent {
    width: 50%;
    align-self: center;
}
.coverContent-tit {
    font-size: 52px;
    color: #333333;
}
.coverContent-desc {
    color: rgba(0,0,0,.75);
    line-height: 1.8;
}
.brands-textcolor {
    color: var(--color-accent);
}
.font-thin {
    font-weight: 400;
}
.textLight .coverContent-tit {
    color: #ffffff;
}
.textLight .coverContent-desc {
    color: rgba(255,255,255,1);
}

@media screen and (max-width: 768px) {
    .home-video {
        width: 100%;
    }
    .homecover-con {
        width:100%;
    }
    .homecover-con h1 {
        font-size: 34px;
        margin-bottom: 10px;
    }
    .homecover-con .slogan {
        font-size: 34px;
        letter-spacing: 0px;
    }
    
    .FullBannerA {
        min-height: 640px !important;
    }
    .FullBannerB {
        min-height: 640px !important;
    }
    .FullBannerC {
        min-height: 640px !important;
        background-position: -80px 0px;
    }
    .coverContent {
        width:100%;
    }
    .coverContent-tit {
        font-size: 28px;
    }
}