﻿/*Start: Loader Css*/
.loader {
    position: relative;
    width: 5.5em;
    height: 3.5em;
    margin: 0px;
    padding: 0px;
    position: fixed;
    right: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(102, 102, 102,0.8);
    z-index: 30001;
}
.loader-text {
    color: #d0daff !important;
    font-weight: 700;
}
.loader > div {
    position: fixed;
    top: 54%;
    color: black;
    font-size: larger;
    text-align: center;
    display: block;
}

    .loader:before, .loader:after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        display: block;
        width: 0.5em;
        height: 0.5em;
        border-radius: 0.25em;
        transform: translate(-50%, -50%);
    }

    .loader:before {
        animation: before 2s infinite;
    }

    .loader:after {
        animation: after 2s infinite;
    }

@keyframes before {
    0% {
        width: 0.5em;
        box-shadow: 1em -0.5em rgba(0, 255, 0, 0.75), -1em 0.5em rgba(0, 128, 0, 0.75); /* Light Green and Dark Green */
    }

    35% {
        width: 3.5em;
        box-shadow: 0 -0.5em rgba(0, 255, 0, 0.75), 0 0.5em rgba(0, 128, 0, 0.75);
    }

    70% {
        width: 0.5em;
        box-shadow: -1em -0.5em rgba(0, 255, 0, 0.75), 1em 0.5em rgba(0, 128, 0, 0.75);
    }

    100% {
        box-shadow: 1em -0.5em rgba(0, 255, 0, 0.75), -1em 0.5em rgba(0, 128, 0, 0.75);
    }
}

@keyframes after {
    0% {
        height: 0.5em;
        box-shadow: 0.5em 1em rgba(0, 204, 0, 0.75), -0.5em -1em rgba(34, 139, 34, 0.75); /* Medium Green and Forest Green */
    }

    35% {
        height: 3.5em;
        box-shadow: 0.5em 0 rgba(0, 204, 0, 0.75), -0.5em 0 rgba(34, 139, 34, 0.75);
    }

    70% {
        height: 0.5em;
        box-shadow: 0.5em -1em rgba(0, 204, 0, 0.75), -0.5em 1em rgba(34, 139, 34, 0.75);
    }

    100% {
        box-shadow: 0.5em 1em rgba(0, 204, 0, 0.75), -0.5em -1em rgba(34, 139, 34, 0.75);
    }
}
.fontsize15 p{
    font-size:15px;
}
/**
 * Attempt to center the whole thing!
 */
/*End: Loader Css*/
.video-section {
    min-height: 500px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .video-container video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* Overlay icons */
.video-overlay-icon {
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: white;
    display: block;
    background-color: black;
    padding-top: 10px;
    padding-left: 5px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 40px;
    transition: background-color 0.3s, color 0.3s;
}

    /* Hover effect */
    .video-overlay-icon:hover {
        background: rgba(0, 0, 0, 0.7);
        color: #FF0000;
        transform: translate(-50%, -50%) scale(1.1);
    }

/* Start hidden for pause icon */
#pauseIcon {
    display: none;
}