:root {
    --primary-color: #51c0ff;
    --white-color: #ffffff;
}


/* Nav Bar Search Input */

/* Styling for Navbar Donate Button */
.donate-btn {
    background-color: #51c0ff !important;
    border: 1px solid #ffffff;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 8px 12px;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}


.donate-btn:hover {
    color: #fff;
    box-shadow: 0 4px 8px #000000a6;
}

/* Search Bar Styling */
.search-bar .input-group {
    max-width: 250px;
    /* Adjust as needed */
}

.search-bar input.form-control {
    border: 1px solid #51c0ff;
    border-radius: 25px 0 0 25px;
    padding: 10px 15px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    height: 40px;
    /* Match button height */
}

.search-bar input:focus {
    border-color: #ffffff;
    background-color: #f8f9fa;
}

.search-bar button {
    border-radius: 0 25px 25px 0;
    padding: 0 15px;
    font-size: 14px;
    color: #ffffff;
    border: 1px solid #ffffff;
    background-color: #51c0ff;
    height: 40px;
    /* Match input height */
    transition: all 0.3s ease;
}

.search-bar button:hover {
    background-color: #ffffff;
    color: #55bbfa;
    border-color: #ffffff;
}

/* Dropdown Styling */
.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 15px 8px 15px;
    color: #000000a6;
    /* text-shadow:
        1px 1px 0 #51c0ff,
        -1px -1px 0 #51c0ff,
        1px -1px 0 #51c0ff,
        -1px 1px 0 #51c0ff; */
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #d2eeff;
    transition: none;
}

.navbar .dropdown-menu {
    border-radius: 0 0 10px 10px;
    background-color: #ffffff;
    color: #fff;
    border: none;
}

.navbar .dropdown-menu a {
    color: #000000a6;
    padding: 8px 15px;
    transition: 0.3s;
}

.navbar .dropdown-menu a:hover {
    background-color: #51c0ff;
    color: #fff;
}

.dropdown-item.active {
    background-color: #51c0ff;
}

/* Responsive Adjustments for Navbar */
@media (max-width: 991.98px) {
    .donate-btn {
        margin-top: 10px;
        width: 100%;
    }

    .search-bar {
        width: 100%;
    }

    .search-bar .input-group {
        max-width: none;
    }
}



/* Hero Section */
/* home hero */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('../img/hero3.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    /* Fixed background on scroll */
    background-position: center bottom;
    /* Keep image aligned from the bottom */
    height: 90vh;
    /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    overflow: hidden;
}

.hero-section-about {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('../img/founder.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    /* Fixed background on scroll */
    background-position: center bottom;
    /* Keep image aligned from the bottom */
    height: 90vh;
    /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    overflow: hidden;
}

.hero-section h1,
.hero-section-about h1 {
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 50px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-section p,
.hero-section-about p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .btn-primary,
.hero-section-about .btn-primary {
    font-size: 1rem;
    padding: 12px 25px;
    background-color: #51c0ff;
    /* Red color from your brand */
    border-color: #51c0ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

/* .hero-section-about i {
    color: red;
    font-size: 20px;

} */

.hero-section .btn-primary:hover,
.hero-section-about .btn-primary:hover {
    background-color: #fff;
    color: #51c0ff;
    border-color: #51c0ff;
}

@media (max-width: 992px) {

    .hero-section {
        height: 70vh;

    }

    .hero-section-about {
        height: 70vh;

    }
}

@media (max-width: 768px) {

    .hero-section h1,
    .hero-section-about h1 {
        font-size: 2rem;
    }

    .hero-section p,
    .hero-section-about p {
        font-size: 1rem;
    }

    .hero-section .btn-primary,
    .hero-section-about .btn-primary {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {

    .hero-section h1,
    .hero-section-about h1 {
        font-size: 1.5rem;
    }

    .hero-section p,
    .hero-section-about p {
        font-size: 0.9rem;
    }

    .hero-section .btn-primary,
    .hero-section-about .btn-primary {
        font-size: 0.9rem;
        padding: 8px 18px;
    }
}





.section-padding {
    padding: 5rem 0;
}

.card {
    border: none;
    transition: transform 0.3s;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.btn-primary {
    background-color: var(--primary-color);
    border: 1px solid #ffffff;
}

.btn-primary:hover {
    background-color: #3ba3e0;
    border-color: #3ba3e0;
}

.cause-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.416);
}

.social-icons a {
    color: var(--primary-color);
    margin: 0 10px;
    font-size: 24px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #3ba3e0;
}



/* Counter Section */
.counter-section {
    background: #51bfff6f;
    /* Semi-transparent background */
    padding: 15px;
    z-index: 2;
}

.counter-section h3 {
    font-size: 2rem;
    margin-bottom: 0;
    color: #51c0ff;
    /* Maya Blue */
}

.counter-section p {
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .counter-section {
        /* bottom: 10%; */
        right: 10px;
        padding: 10px;
    }

    .counter-section h3 {
        font-size: 1.5rem;
    }

    .counter-section p {
        font-size: 0.8rem;
    }
}



/* CTA Section */
.cta-section {
    background: linear-gradient(to right, #51c0ff, #ffffff);
    color: #333;
    border-radius: 10px;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    /* White for text on blue */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}


.cta-contents {
    background: linear-gradient(to right, #000000a6 50%, #51bfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Button Styling */
.cta-btn {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-btn.btn-primary {
    background-color: #51c0ff;
    /* Maya Blue */
    color: #ffffff;
    border: none;
}

.cta-btn.btn-primary:hover {
    background-color: #ffffff;
    color: #51c0ff;
    border: 2px solid #51c0ff;
}

.cta-btn.btn-outline-light {
    color: #51c0ff;
    border: 2px solid #ffffff;
}

.cta-btn.btn-outline-light:hover {
    background-color: #51c0ff;
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}




/* Contact Us Section */
.contact-section {
    background: linear-gradient(to bottom, #ffffff, #f7f7f7);
    color: #333;
    border-radius: 10px;
}

.contact-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #51c0ff;
    /* Maya Blue */
}

.contact-section p {
    font-size: 1rem;
    color: #555;
}

.contact-info a {
    color: #51c0ff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Social Media Icons */
.social-links a {
    font-size: 1.5rem;
    color: #51c0ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #333;
}

.social-icon.facebook {
    color: #3b5998;
}

.social-icon.instagram {
    color: #e4405f;
}

.social-icon.twitter {
    color: #000000;
}

.social-icon.tiktok {
    color: #010101;
}

.social-icon.youtube {
    color: #ff0000;
}

.social-icon.threads {
    color: #51c0ff;
}

/* Contact Button */
.contact-btn {
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 50px;
    background-color: #51c0ff;
    color: #ffffff;
    border: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #ffffff;
    color: #51c0ff;
    border: 2px solid #51c0ff;
}






/* _______________________________
        ***About Us Page*** 
______________________________*/
.brand-bg {
    background-color: #51c0ff;
    color: #ffffff;
}

.brand-color {
    color: #51c0ff;
}

.section-title {
    font-size: 2rem;
    color: #51c0ff;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.icon-title {
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
}

.icon-title i {
    margin-right: 10px;
    color: #51c0ff;
}

.text-highlight {
    font-size: 1.1rem;
}

.team-member img {
    border-radius: 50%;
    height: 120px;
    width: 120px;
    object-fit: cover;
}

.founder-section img {
    max-width: 100%;
    border-radius: 10px;
}

.cta-section {
    background-color: #51c0ff;
    color: #fff;
    padding: 30px;
    text-align: center;
}

/* Section Titles */
.section-title {
    font-size: 1.8rem;
    color: #51c0ff;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.section-title i {
    margin-right: 10px;
    font-size: 1.5rem;
    color: #333;
}

/* Subtitle */
.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

/* Founders Section */
#founders {
    background: #f9f9f9;
}

#founders img {
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.founder-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    margin-top: 20px;
}

#founders .btn-primary {
    background-color: #51c0ff;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

#founders .btn-primary:hover {
    background-color: #005f99;
    transform: scale(1.05);
}



.founder-message {
    padding: 50px 15px;
    background-color: #ffffff;
    color: #333;
    border-top: 4px solid #51c0ff;
    border-bottom: 4px solid #51bfff4c;
}

.section-header h5 {
    font-size: 18px;
    color: #777777;
    margin-bottom: 30px;
}

.founder-img-wrapper {
    width: 450px;
    height: 450px;
    background-color: #51c0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    /* Centers the wrapper in its container */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.founder-img {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    /* Adds a white border around the image */
}

/* Optional: Ensure the entire layout stays balanced */
.message-content {
    padding-left: 15px;
}

.message-content h5 {
    font-size: 20px;
    color: #51c0ff;
    font-weight: bold;
}

.message-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.message-content ul {
    margin-left: 20px;
    font-size: 16px;
    color: #555;
}

.message-content ul li {
    margin-bottom: 10px;
}

.btn-primary {
    background-color: #51c0ff;
    border: 1px solid #ffffff;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 50px;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #3ba7e6;
}



/* Zigzag Sections */
#about-sections {
    background-color: #fff;
}

#about-sections .img-fluid {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

#about-sections .img-fluid:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.3);
}

#about-sections h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #333;
}

/* Zigzag Section Background Alternation */
#about-sections .bg-light {
    background-color: #f9f9f9 !important;
    border-radius: 10px;
    padding: 40px 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    #about-sections .row {
        flex-direction: column;
    }

    #about-sections .img-fluid {
        margin-bottom: 20px;
    }

    #founders img {
        width: 100%;
    }
}




/* Program/Event Page */
/* Events Container */
.events-container {
    max-width: 80%;
    margin: 0 auto;
    /* position: relative; */
    /* Ensure this is set to anchor absolute elements */
    /* padding-top: 100px; */
    /* Add space to account for the floating header */
}

/* Events Header */
.events-header {
    /* position: absolute; */
    /* Float above the container */
    /* top: 80%; */
    /* Adjust this to align near the navbar */
    /* left: 50%; */
    /* transform: translateX(-50%); */
    background-color: #51bfffd4;
    color: white;
    text-align: center;
    padding: 20px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 3px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1;
    /* Ensure it stays above other content */
    /* width: 90%; */
    /* Optional: Width adjustment */
}

.card-title {
    color: #4a4c70;
    font-weight: 600;
    margin-bottom: 0.75rem;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;

}

.read-more-btn {
    background-color: transparent;
    border: none;
    color: #007bff;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: underline;
    padding: 0;
    text-decoration: none;
}

.read-more-btn:hover {
    color: #0056b3;
}


.event-card:hover {
    transform: scale(1.02);
}

.floating-icon {
    position: absolute;
    top: -20px;
    right: 20px;
    background-color: #51c0ff;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.event-date {
    background-color: #51c0ff;
    color: white;
    padding: 20px;
    text-align: center;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.event-date .month {
    font-size: 18px;
    font-weight: bold;
    display: block;
}

.event-date .day {
    font-size: 32px;
    font-weight: bold;
    display: block;
}

.event-date .placeholder {
    font-size: 16px;
    text-align: center;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

.event-details {
    padding: 15px;
    flex-grow: 1;
    position: relative;
}

.event-details h3 {
    margin: 0 0 10px 0;
    color: #51c0ff;
}

.event-details p {
    margin: 0;
    color: #666;
}

/* Floating icon SVG styles */
.icon-svg {
    fill: white;
    width: 30px;
    height: 30px;
}

@media (max-width: 768px) {

    /* Events Header */
    /* .events-header {
        font-size: 15px;
        bottom: 20%;

    }

    .event-card {
        margin-top: 90px;
    } */

}

/* Modal styling */
.modal-Pop {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    /* Ensures the entire image is displayed */
    border-radius: 8px;
    display: block;
    margin: auto;
    animation: fadeIn 0.3s ease-in-out;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.modal-close:hover,
.modal-close:focus {
    color: #bbb;
    text-decoration: none;
}

/* Animation for smoother opening */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



/* Guidline Page */
.header-section {
    background: linear-gradient(135deg, var(--maya-blue) 0%, #1e90ff 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.guidelines-container {
    max-width: 1100px;
    margin: -50px auto 30px;
    padding: 0 15px;
}

.guidelines-container h2 {
    color: #ffffff !important;
}

.guideline-card {
    border-radius: 3px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.guideline-card:hover {
    transform: translateY(-10px);
}

.guideline-header {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.6);
    /* Semi-transparent overlay */
    color: white;
    padding: 15px 20px;
}

.guideline-header svg {
    margin-right: 15px;
}

.guideline-body {
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    /* Slightly opaque background */
}

.guideline-body div {
    color: #51bfff;
}

.guideline-body div strong {
    font-size: 20px;
}

.icon-wrapper {
    background-color: var(--soft-blue);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.call-section {
    background-color: #51c0ff;
    color: white;
    text-align: center;
    padding: 50px 0;
}

/* Background Images */
.community-section {
    background: url('../img/guide-1.png') center/cover no-repeat;
}

.program-section {
    background: url('../img/guide-2.png') center/cover no-repeat;
}



/* General Pagination Container Styling */
.custom-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

/* Pagination Button Styling */
.custom-pagination .pagination-button {
    padding: 10px 15px;
    font-size: 14px;
    color: #333;
    background-color: #f2f2f2;
    border: 1px solid #ddd;
    border-radius: 1px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.custom-pagination .pagination-button:hover {
    background-color: #3aa0e0;
    color: white;
    border-color: #3aa0e0;
}

/* Active Page Button Styling */
.custom-pagination .pagination-button.active {
    background-color: #fff;
    color: #51c0ff;
    border: 1px solid #51c0ff;
    cursor: default;
    pointer-events: none;
    /* Prevent clicking on the active button */
}



/* ====================================
        **Event Gallery Page** 
===================================*/
/* Image Modal Styles */
.event-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: block;
    object-fit: contain;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #51c0ff;
    text-decoration: none;
    cursor: pointer;
}

.gallery-container {
    padding: 3rem 1.5rem;
    background-color: #f8f9fa;
}

.gallery-header {
    color: #51c0ff;
    font-size: 2.5rem;
    font-weight: 600;
    position: relative;
    margin-bottom: 2rem;
}

.gallery-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #51c0ff, #3d90ff);
    border-radius: 2px;
}

.gallery-row {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.gallery-item {
    width: calc(20% - 20px);
    margin: 10px;
    flex-shrink: 0;
}

.event-post {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #fff;
}

.media-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.image-container img {
    cursor: pointer;
}

.image-container img,
.video-container video,
.video-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #51c0ff;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-btn:hover {
    background: #fff;
    transform: scale(1.1);
}

.description-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1;
}

.description-panel.active {
    transform: translateY(0);
}

.description-content {
    color: #333;
    font-size: 0.9rem;
    line-height: 1.4;
    max-height: 150px;
    overflow-y: auto;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .gallery-item {
        width: calc(25% - 20px);
    }
}

@media (max-width: 992px) {
    .gallery-item {
        width: calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    .gallery-item {
        width: calc(50% - 20px);
    }

    .gallery-header {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .gallery-item {
        width: calc(100% - 20px);
    }

    .gallery-header {
        font-size: 1.75rem;
    }
}

/* Video specific styles */
.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-container video,
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}