body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: scroll;
    font-family: Calibri;
    font-family: Arial, sans-serif;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #122433;
    height:50px;
}
.video-container {
    position: relative;
    height: 600px;
    width: 100%;
    overflow: hidden;
}

video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
}
#MyTable td :hover {
    background: white;
    color: #122433;
}
.content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    text-align: left;
    color: white;
    z-index: 1;
    padding-left: 90px;
    
}

.content1 {
    position: absolute;
    top: 100px;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    text-align: left;
    color: white;
    z-index: 1;
    padding-left: 90px;
   
}

.content2 {
    position: absolute;
    top: 240px;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    text-align: left;
    color: #122433; ;
    z-index: 1;
    padding-left: 90px;
   
}

.content2 a{
  
    color: #122433; 
   
   
}
.content2 a:hover {
  
  border: 5px;
  border-color: #122433; 
   
   
}

h1 {
    font-size: 3em;
    margin: 0;
 
}

p {
    font-size: 1.5em;
    margin: 0;
    color:#122433;
}



.menu-container {
    text-align: left;
    margin: 5px;
}



.menu-button {
    padding: 0px 0px;
    font-size: 20px;
    cursor: pointer;
    margin-bottom: 0px;
    font-weight: bold;
    color:#122433;
}


a:hover {
    color: #B40000;
}

.menu-list {
    list-style-type: none;
    padding-top: 15px;
    padding-bottom:10px;
    margin: 0px;
    background-color:white;
   
    display: none; /* Initially hide the menu */
}


.menu-list li {
    margin: 0px 0;
    padding:5px;
   list-style-type: none;
}

.menu-list a {
    text-decoration: none;
    color:#122433;
    font-size: 16px;
    transition: color 0.3s;
}

.menu-list ul li a:hover {

    text-decoration: none;
    color:#B4E8A9;
    transition: color 0.3s;
    
}







.contact-form {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width:700px;
    width:100%;
    margin-top:30px;
   
 
}

    .contact-form h2 {
        margin-bottom: 20px;
        color: #333333;
        text-align: center;
    }

    .contact-form label {
        color: #333333;
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form textarea {
        width: 100%;
        padding:10px;
        margin:10px;
        border: 1px solid #cccccc;
        border-radius: 5px;
        font-size: 16px;
        box-sizing: border-box;
    }

        .contact-form input[type="text"]:focus,
        .contact-form input[type="email"]:focus,
        .contact-form input[type="tel"]:focus,
        .contact-form textarea:focus {
            border-color: #007bff;
            outline: none;
            box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
        }

    .contact-form textarea {
        resize: vertical;
        min-height: 120px;
    }

    .contact-form button {
        background-color: #122433;
        color: #ffffff;
        padding: 12px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 18px;
        width: 100%;
        box-sizing: border-box;
        transition: background-color 0.3s ease;
    }

        .contact-form button:hover {
            background-color: #1e3a18;
            color: #B4E8A9;
        }

    .contact-form .form-group {
        margin-bottom: 15px;
    }

    .contact-form .form-footer {
        text-align: center;
        margin-top: 20px;
    }

        .contact-form .form-footer p {
            color: #777777;
            font-size: 14px;
        }




header {
    background-color: #122433;
    padding: 10px 0;
    height:75px;
}

nav {
    max-width: 960px;
    margin: 0 auto;
}

.menu {
    list-style: none;
    display: flex;
    justify-content: space-around;
}

    .menu li {
        position: relative;
    }

        .menu li a {
            color:#B4E8A9;
            text-decoration: none;
            padding: 10px 20px;
            display: block;
            font-size: 16px;
        }

            .menu li a:hover {
                background-color:#B4E8A9;
                color: #122433;
            }

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #122433;
    list-style: none;
    padding: 10px 0;
    min-width: 150px;
    width: 300px;
    z-index: 999;
    border: solid;
    border-color: #B4E8A9;
}

    .submenu li a {
        padding: 10px 15px;
        color: #B4E8A9;
        font-size: small;
    }

        .submenu li a:hover {
            background-color: #B4E8A9;
            color: #122433;
        }

/* Show the submenu on hover */
.menu li:hover .submenu {
    display: block;
}

/* Responsive Menu */
@media screen and (max-width: 768px) {
    .menu {
        flex-direction: column;
        align-items: center;
    }

        .menu li {
            width: 100%;
        }

            .menu li a {
                text-align: center;
            }

    .submenu {
        position: static;
        display: none;
        width: 100%;
    }

    .menu li:hover .submenu {
        display: block;
    }
}

.slideshow {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0px;
    background-color:white;
    
}

.slides {
    display: flex;
    width: 200%;
    animation: slide 110s linear infinite;
    padding: 0px;
}

.slide {
    width: 7%;
    flex-shrink: 0;
    padding: 0px;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.img_main:hover {
    width: 565px;
    height: 1000px
    
}

  
