#videoTop {
    width: 100%;
    height: var(--fullHeight);
    min-height: var(--fullHeight);
    margin-top: 0 !important;
}

#videoTop .video {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
}

#videoTop video {
    position: absolute;
    width: 100%;
    height: auto;
    z-index: 1;
}

#videoTop .content {
    position: absolute;
    width: 100%;
    bottom: 10%;
    padding: 10px 0 10px 20px;
    border-radius: 0 15px 15px 0;
    z-index: 2;
    background: var(--videoTop_overlay_content);
    color: #fff;
}

#videoTop .content h2 {
    margin: 0;
    font-family: Rajdhani-Light;
    font-size: clamp(0px, var(--videoTop_size_h2), 50px);
    font-weight: var(--videoTop_weight_h2);
}

#videoTop .content h3 {
    font-size: clamp(0px, var(--videoTop_size_h3), 13px);
    font-weight: var(--videoTop_weight_h3);
}

#videoTop .iconScrollDown {
    position: absolute;
    display: flex;
    justify-content: center;
    width: 100%;
    bottom: 25%;
    z-index: 3;
}

#videoTop .iconScrollDown i {
    display: none;
    margin-top: 25px;
    font-size: clamp(0px, 50vw, 205px);
    color: #7e7e7e8e;
    animation-name: flutuar;
    animation-duration: 0.7s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-out;
    transition: opacity 3s;
}

#videoTop .loading {
    position: absolute;
    inset: 0;
    z-index: 5;
    transition: opacity 3s;
}

#videoTop .loading img {
    width: 100%;
    height: auto;
}