/* #style-11::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

#style-11::-webkit-scrollbar {
    width:  11px;
    background-color: #F5F5F5;
}

#style-11::-webkit-scrollbar-thumb {
    background-color: #3366FF;
    background-image: -webkit-linear-gradient(0deg,
            rgba(255, 255, 255, 0.5) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.5) 50%,
            rgba(255, 255, 255, 0.5) 75%,
            transparent 75%,
            transparent)
} */
.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px;
    /*Fix for safari gap*/
    min-height: 100px;
    max-height: 150px;
}
.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/*Shrinking for mobile*/
@media (max-width: 1280px) {
    .waves {
        height: 40px;
        min-height: 40px;
    }

    .content {
        height: 30vh;
    }
}

@media (min-width: 1280px) {
    .waves {
        height: 60px;
        min-height: 60px;
    }

    .content {
        height: 30vh;
    }
}

.bghdr{
    background-image: url('/pictures/class.jpg');
    /* background-repeat: no-repeat; */
    min-height: 70vh;
    /* background-size: 100% 100%; */
    /* background-size:contain; */
    width: 100vw;
    background-size: cover;
    background-position: center;
}

.bgcourse{
    background-image: url('/pictures/course-details.jpg');
    min-height: 70vh;
    width: 100vw;
    background-size: cover;
    background-position: center;
}

.bgtt{
    background-image: url('/pictures/tt.jpg');
    min-height: 30vh;
    width: 100vw;
    background-size: cover;
    background-position: center;
}





.salutations {
    background: linear-gradient(-45deg, #210af5, #cf2323, #2623cf, #c023cf);
    /* background: linear-gradient(-90deg, #6252ee, #3366FF, #23a6d5, #23d5ab); */
    background-size: 400% 400%;
    animation: gradient 8s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.progress-container {
    width: 100%;
    height: 8px;
    background: #ccc;
}

/* The progress bar (scroll indicator) */
.progress-bar {
    height: 8px;
    background: darkcyan;
    width: 0%;
}







.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}