.banner-body {
    width: 100%;
    height: 100vh;
    color: #fff;
    font-weight: 400;
    opacity: 1;
    transition: transform .6s cubic-bezier(.45,.05,.55,.95),opacity .6s cubic-bezier(.45,.05,.55,.95);
}
.banner-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}
.banner-wrap:after {
    content: "";
    display: block;
    width: 100%;
    height: 10.3125rem;
    position: absolute;
    bottom: 0;
    background-image: linear-gradient(180deg,rgba(227,239,255,0),#e3efff);
}
.banner-wrap video, .banner-wrap img {
    width: 100%;
    object-fit: cover;
    content: normal;
    margin-top: -4.125rem;
}
.banner-text-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 5.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    transition: opacity 2s ease-in-out;
}
.banner-slogan {
    font-size: 1rem;
    line-height: 1.5rem;
    color: #091221;
    text-align: center;
    font-weight: 800;
}
.banner-title {
    margin-top: 1rem;
    font-size: 2.5rem;
    line-height: 3rem;
    color: #091221;
    font-weight: 800;
    display: flex;
}
.banner-sub-title {
    background: linear-gradient(90deg,#2468f2,#3ed2fd);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.banner-action-wrap {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
.banner-action-button {
    height: 2.5rem;
    width: 7.5rem;
    display: flex;
    line-height: 2.75rem;
    align-items: center;
    justify-content: center;
    background: #2468F2;
    border-radius: .5rem;
    font-size: .75rem;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease-out;
}
.action-button-white {
    height: 2.5rem;
    width: 7.5rem;
    display: flex;
    line-height: 2.75rem;
    align-items: center;
    justify-content: center;
    border: 1px solid #2468F2;
    border-radius: .5rem;
    font-size: .75rem;
    color: #2468F2;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease-out;
}
.banner-action-button:hover, .action-button-white:hover {
    opacity: .75;
}
.banner-icon-wrap {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
}
.banner-icon {
    width: 1rem;
    height: 1.375rem;
    position: relative;
    border-radius: .375rem;
    border: 1.5px solid #222;
    margin-bottom: .75rem;
}
.banner-icon::after {
    content: "";
    position: absolute;
    width: 1.5px;
    height: .3125rem;
    background-color: #2468f2;
    top: .5625rem;
    left: 50%;
    margin-left: -1px;
    animation: wheel-animation 1.2s linear infinite;
}
.banner-icon-text {
    color: rgba(34, 34, 34, .7);
    font-size: max(12PX, min(.75rem, 14PX));
}
@keyframes wheel-animation {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(.3125rem);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-.3125rem);
    }
    100% {
        transform: translateY(0);
    }
}
