﻿
:root {
    --main-Blue: rgb(7,18,72);
    --main-Gold: #f6bd14;
    --mid-color: #ddf9fe;
    --midA-color: #2691d9;
    --midB-color: #ffef96;
    --color-dark: #071248;
    --text-grey: #8390A2;
    --midC-color: #f0b947;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: white;
    /*width:95vw;*/
    overflow-x: hidden;
}


/*Top Bar ***********************************************************************/
.Top-Menu {
    display: flex;
    justify-content: space-between;
    /*padding: 1rem 1.5rem;*/
    box-shadow: 2px 2px 4px #8390A2;
    border-left: 1px solid #f8e7e7;
    background: var(--main-Blue);
    position: fixed;
    left: 0px;
    width: 100%;
    top: 0px;
    z-index: 100;
    transition: width 500ms;
    height: 5vw;
}

.nav-container {
    display: flex;
    justify-content: center; /* Center the nav-links horizontally */
    margin-top: .5vw;
    width: 100%; /* Ensure it takes the full width */
    z-index: 1000; /* Higher than .Menubar to ensure it's on top */
}


/* Top Menu Bar *****************************************************************/
.nav-links ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
    justify-content: center;
}

    .nav-links ul li {
        margin: 1vw 2vw; /* Adjust spacing between items */
        z-index: 1000;
    }

        .nav-links ul li a {
            
            text-decoration: none;
            font-weight: bold;
            font-family: Calibri;
            font-size: 1.5vw;
        }
            .nav-links ul li a:hover {
                text-decoration: underline; /* Optional: underline effect */
            }
.Menu-click{
    color:white;
}
.Menu-Unclick {
    color: var(--main-Gold);
}
/*Logo ***************************************************************/
.CompanyLogo {
    width: 10vw;
    height: 10vw;
    padding: .4rem 0rem .5rem .5rem;
    color: #fff;
    z-index: 1000;
    margin-left: 1vw;
}

/*Side Main Menubar ********************************************************************/
.sidebar-brand-Menubar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--main-Blue);
    z-index: 100;
    width: 5vw;
    
}

.Content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2vw 8vw auto;
    margin-bottom: 6vw;
    /*margin-top: 10vw;*/
    margin-top: 5vw;
    width: 90%;
}

/* Video ******************************************************************/
.video-container {
    width: 90vw;
    height: auto;
    display: flex;
    justify-content: center;
    margin: 0 0 2vw 0;
/*    position: relative;
    width: 90vw;
    height: auto;
    padding-bottom: 56.25%;
    overflow: hidden;*/
}
    video {
        width: 100%;
        max-width: 90vw;
        height: auto;
    }
/*.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}*/

/* About */
.About-container {
    display: flex;
    align-items: flex-start;
    width: 100%;
}
/*About 1*/
.About-Image-1 {
    flex: 1;
    max-width: 70%;
    height: auto;
    margin-right: 1vw;
    margin-left: -5vw;
    opacity: 0; /* Start with the image invisible */
    transform: translateX(-50px); /* Start the image 50px to the left */
    animation: fadeInLeft 3s ease forwards; /* Apply the animation */
}
/* Keyframes for fade-in from left */
@keyframes fadeInLeft {
    to {
        opacity: 1; /* Final opacity */
        transform: translateX(0); /* End with no horizontal translation */
    }
}
.About-Content-1 {
    flex: 2;
    text-align: left;
    font-size: 1.42vw;
    line-height: 1.5;
    margin-top:1vw;
}

/*Abount 2*/
.About-Image-2 {
    flex: 2;
    max-width: 60%;
    height: auto;
    margin-right: -2vw;
    opacity: 0; /* Start with the image invisible */
    transform: translateX(50px); /* Start the image 50px to the left */
    animation: fadeInright 3s ease forwards; /* Apply the animation */
}
@keyframes fadeInright {
    to {
        opacity: 1; /* Final opacity */
        transform: translateX(0); /* End with no horizontal translation */
    }
}

.About-Content-2 {
    margin-left: -2vw;
    flex: 1;
    text-align: left;
    font-size: 1.42vw;
    line-height: 1.5;
}

/* Footer ******************************************************************/
footer {
    background-color: #f1f5f9;
    color: var(--main-Blue);
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-family: Calibri;
    font-weight: bold;
}

