* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #eef1f4;
}

header {
    height: 90vh;
    background-image: url(Assests/Images/video_bg.gif);
    background-size: cover;
}


nav {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    top: 0;
}

nav a {
    text-decoration: none;
    color: #eef1f4;
}

.logo img {
    width: 300px;
    height: 70px;
}

.nav-list ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 23px;
}

.nav-list ul li {
    list-style: none;
    color: #eef1f4;
    font-size: 13px;
    font-family: sans-serif;
    letter-spacing: 2px;
    cursor: pointer;
}

.nav-list ul li :hover {
    color: #c1dbf5;
}

section .enq {
    width: 50vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    top: 200px;
    gap: 23px;
}

section .enq a {
    text-decoration: none;
    color: white;
}


section .enq span {
    font-size: 35px;
    color: white;
    letter-spacing: 2px;
    font-family: sans-serif;
    font-weight: 500;
}

section .enquire {
    background-color: #003366;
    color: white;
    padding: 15px 20px;
    font-family: sans-serif;
    font-size: 15px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}

.video {
    width: 85vw;
    margin: auto;
}

.video .heading {
    color: #003366;
    font-family: sans-serif;
    font-weight: 100;
    letter-spacing: 2px;
    text-align: center;
    margin-top: 60px;
}

.video .video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.video iframe {
    height: 300px;
    width: 557px;
    border-radius: 25px;
}

.video .about-video {
    height: 255px;
    width: 557px;
    border-radius: 25px;
    background-color: white;
}

.video .headings {
    color: #003366;
    font-family: sans-serif;
    font-weight: 100;
    letter-spacing: 2px;
    text-align: left;
    margin-top: 20px;
    margin-left: 20px;
}

.video .about-class {
    box-sizing: border-box;
    padding: 10px 30px 10px 20px;
    font-family: sans-serif;
    letter-spacing: 1px;
    font-size: 13px;
}

footer {
    height: 250px;
    width: 100%;
    background-color: #003366;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 53px;
}

footer ul li :hover {
    color: #c1dbf5;
}

footer a {
    text-decoration: none;
    color: #eef1f4;
}

footer .contact-icons {
    display: flex;
    gap: 40px;
}

.fa-youtube:before {
    content: "\f167";
    color: red;
    font-size: 40px;
}

footer .insta-logo {
    height: 35px;
    width: 35px;
    margin-top: 5px;
}

footer .youtube-logo {
    height: 45px;
    width: 45px;
}

footer span {
    font-size: 13px;
    font-family: sans-serif;
    letter-spacing: 1px;
    color: white;
}

@media screen and (max-width: 1100px) {

    header {
        height: 90vh;
        background-image: url(Assests/Images/video_mbg.gif);
        background-size: cover;
    }

    nav {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        position: absolute;
        top: 0;
    }

    nav .nav-list {
        text-align: center;
    }

    .nav-list ul {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 23px;
        text-align: center;
    }

    .nav-list ul li {
        display: flex;
        justify-content: center;
        align-items: center;
        list-style: none;
        color: #eef1f4;
        font-size: 10px;
        font-family: sans-serif;
        letter-spacing: 2px;
        cursor: pointer;
    }

    section .enq {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: absolute;
        left: 0;
        top: 250px;
        gap: 23px;
    }

    section .enq span {
        font-size: 30px;
        color: white;
        letter-spacing: 2px;
        font-family: sans-serif;
        font-weight: 500;
        text-align: center;
    }

    .video .video-container {
       display: flex;
       flex-direction: column;
    }

    .video iframe {
        height: 192px;
        width: 350px;
        border-radius: 10px;
    }

    .video .about-video {
        height: 365px;
        width: 80vw;
    }

    footer {
        height: 320px;
        width: 100%;
        background-color: #003366;
        margin-top: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 53px;
    }

    footer span {
        font-size: 12px;
        font-family: sans-serif;
        letter-spacing: 1px;
        text-align: center;
        color: white;
    }

}