.video-section {
    width: 100%;
    text-align: center;
    background: #000;
    /* optional black background */
    padding: 20px 0;

    /* space above & below */
}

.video-container {
    width: 100%;
    height: 500px;
    /* You can change this */
    position: relative;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    font-family: Arial, sans-serif;
    margin-top: -50px;
}

.footer h4 {
    font-family: 'Poppins', 'Century Gothic', 'Futura', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
    color: #161111;
    margin-bottom: 10px;

    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.footer h4::after {
    content: "";
    display: block;
    width: 270px;
    height: 4px;
    background: #161111;
    margin: 6px auto 0;
}

.footer-input {
    border: none;
    border-bottom: 1px solid #ddd;
    font-family: 'Poppins', 'Century Gothic', 'Futura', sans-serif;
    outline: none;
    padding: 10px;
    font-size: 26px;
    width: 580px;
    max-width: 90%;
    margin: 15px auto;
    display: block;
    text-align: center;
    color: #cec5c5;
}

.footer-line {
    width: 80%;
    margin: 25px auto;
    border: 0;
    border-top: 1px solid #ddd;
}

.footer-menu {
    font-size: 13px;
    margin-bottom: 20px;
    color: #464141;
}

.footer-menu a {
    color: #333;
    font-family:  sans-serif;
    text-decoration: none;
    padding: 0 5px;
}

.footer-copy {
    font-size: 13px;
    color: #444;
    margin-bottom: 5px;
    margin-top: 10px;
    font-family: sans-serif;
}

.footer-policy {
    font-size: 12px;
    font-family:sans-serif;
}

.footer-policy a {
    color: #444;
    text-decoration: none;
    margin: 0 3px;
}

/* Layout */
.social-icons {
    display: flex;
    /* don't rely on Bootstrap's d-flex */
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    justify-content: center;
   
}

/* The <a> itself has class="social-icon" */
.social-icons .social-icon {
    position: relative;
    /* enables z-index */
    z-index: 1000;
    /* sit above iframes/overlays */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #000000;
    color: #fff;
    font-size: 1.5rem;
    /* transition: transform .3s ease, background-color .3s ease, color .3s ease; */
    text-decoration: none;
    pointer-events: auto;
    
    /* transform: translateY(80px); */
        /* ensure clickable */
}

/* Make icon not intercept clicks */
.social-icons .social-icon i {
    pointer-events: none;
}

/* Hover/Focus states */
.social-icons .social-icon:hover,
.social-icons .social-icon:focus-visible {
    transform: scale(1.2);
    background-color: #000;
    color: #fff;
     
    outline: none;
}

/* Brand colors on the anchor */
.social-icons .facebook {
    background-color: #000000;
}

.social-icons .linkedin {
    background-color: #000000;
}

.social-icons .pinterest {
    background-color: #000000;
}

.social-icons .instagram {
    background-color: #000000;
}

.social-icons .youtube {
    background-color: #000000;
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */
@media (max-width: 1200px) {
    .video-container {
        height: 450px;
    }

    .footer h4 {
        font-size: 2.3rem;
    }

    .footer-input {
        width: 520px;
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .video-container {
        height: 400px;
    }

    .footer h4 {
        font-size: 2.1rem;
    }

    .footer-input {
        width: 480px;
        font-size: 22px;
    }

    .footer h4::after {
        width: 240px;
    }
}

@media (max-width: 768px) {
    .video-section {
        padding: 15px 0;
    }

    .video-container {
        height: 350px;
    }

    .footer {
        padding: 40px 20px;
    }

    .footer h4 {
        font-size: 1.9rem;
        text-align: center;
    }

    .footer-input {
        width: 90%;
        font-size: 20px;
        padding: 8px;
    }

    .footer h4::after {
        width: 220px;
    }

    .footer-menu {
        font-size: 12px;
        text-align: center;
    }

    .footer-menu a {
        display: inline-block;
        margin: 2px 4px;
    }
}

@media (max-width: 576px) {
    .video-container {
        height: 300px;
    }

    .footer {
        padding: 30px 15px;
    }

    .footer h4 {
        font-size: 1.7rem;
    }

    .footer-input {
        width: 95%;
        font-size: 18px;
        padding: 6px;
    }

    .footer h4::after {
        width: 200px;
    }

    .footer-menu {
        font-size: 11px;
        margin-bottom: 15px;
    }

    .footer-menu a {
        margin: 1px 3px;
        padding: 2px 4px;
    }

    .footer-copy {
        font-size: 12px;
        margin-top: 60px;
    }

    .footer-policy {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .video-container {
        height: 250px;
    }

    .footer {
        padding: 25px 10px;
    }

    .footer h4 {
        font-size: 1.5rem;
    }

    .footer-input {
        width: 98%;
        font-size: 16px;
        padding: 5px;
    }

    .footer h4::after {
        width: 180px;
    }

    .footer-menu {
        font-size: 10px;
    }

    .footer-menu a {
        margin: 1px 2px;
        padding: 1px 3px;
    }

    .footer-copy {
        font-size: 11px;
        margin-top: 50px;
    }

    .footer-policy {
        font-size: 10px;
    }
}