#main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #F9F9F9;
    color: #0A0908;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: sticky;  
    top: 0;            
    background-color: #F9F9F9; 
    z-index: 1000;     
}


#site-title {
    font-size: 3em;
    font-family: 'Quicksand', sans-serif;
    font-weight: 300;
    margin-left: 20px;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-right: 65px;
}

nav ul li a {
    color: #0A0908;
    text-decoration: none;
    font-size: 1.3em;
}

h1 {
    margin-top: 60px;
    margin-bottom: 40px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600px;
    font-size: 45px;
}

.video-wrapper {
    margin: 20px 0;
}

.video {
    border-radius: 15px;
    width: 560px;
    height: 315px;
}

.video-wrapper h2,
.video-wrapper p {
    margin: 10px 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 400px;
    margin-left: 170px;
    margin-right: 170px;
   
}

.video-wrapper h2 {
    margin-top: 20px;
    font-size: 20px;
    
}

.video-wrapper p {
    font-size: 18px;;
    margin-bottom: 80px;
}

button {
    background-color: #407899;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #30567A;
}

/* Contact Modal */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 60px; /* Location of the box */
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.6); /* Black with opacity */
}

.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 400px;
    height: 400px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
}

.modal-content h2 {
    text-align: center;
    margin-bottom: 55px;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

#social-media-icons a {
    margin: 0 20px; /* This adds a margin of 20px to the left and right of each icon */
    text-decoration: none;
}

#social-media-icons i {
    font-size: 2em; /* This increases the icon size, adjust as needed */
}

#social-media-icons a i {
    color: #407899;
}

.close-button {
    font-size: 2.5em; /* Adjust size of 'X' as needed */
    cursor: pointer;
    /*margin-left: 150px;*/
    position: absolute;
    top: 15px;
    right: 20px;
}

h2 {
    text-align: center;
}

/* Style for the submit button */
input[type="submit"] {
    background-color: #407899;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s; /* Duration of hover transition */
    cursor: pointer;
    border-radius: 5px;
}

input[type="submit"]:hover {
    background-color: black; 
    color: white;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

main > section {
    padding: 20px;
}

main > section > h1 {
    text-align: center;
    font-size: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

#left-container {
    width: 50%;
    float: left;
}

#right-container {
    width: 50%;
    float: right;
}

#right-container h1, #right-container p {
    margin-left: 15px;
}

#right-container p {
    margin-left: 15px;
    max-width: 80%; /* prevents the text from reaching to the edge of the screen */
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}


footer {
    text-align: center;
    padding: 10px;
}

/* Updated CSS */
main > section i {
    color: #407899;
    display: inline-block;
    margin: 10px;
    font-size: 24px;  /* Added to increase the size of the icons */
}

aside i {
    color: #B23A48;
}

.client-icons {
    text-align: center;
}

.client-icons i {
    color: #407899;
    display: inline-block;
    margin: 10px 15px;
    font-size: 75px;
    opacity: 0.2;
}

section#about-section p {
    padding-left: 25px;
    padding-right: 25px;
}

.hamburger {
    display: none;
    cursor: pointer;
}

nav ul {
    display: flex;
    list-style-type: none;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    max-height: 100vh; /* by default on larger screens the navigation is fully visible */
}

nav ul li {
    margin-right: 50px;
}

.top-header {
    display: flex;
    flex-direction: column;
    align-items: center;   /* Center align items */
}


@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
        cursor: pointer;
        font-size: 45px; /* Adjust the size as needed */
    }

    #site-title {
        text-align: center;
        font-size: 4em;  /* adjust this value as necessary */
        padding: 20px;
    }

    .menu {
        display: flex;
        flex-direction: column;
    }

    nav ul {
        display: none; /* Hide the navbar links by default on mobile */
        list-style-type: none;
        padding-left: 0;
    }

    nav ul li {
        text-align: center;
        margin-bottom: 10px; /* Adjust the spacing between the links */
    }

    nav ul.show {
        display: block; /* Show the navbar links when the class "show" is added */
    }

    nav ul li a {
        display: block;
        color: #0A0908;
        text-decoration: none;
        font-size: 1.3em;
    }

    #right-container {
        width: 100%;
        display: none; /* Hide the entire right-container on mobile */
    }

    .video {
        position: relative;
        width: 100%;
        height: auto;
        left: 0;
        margin-left: 0;
    }

    .video-container {
        width: 100%;
        
    }

    #left-container {
        width: 75%; /* Make the left container take up the full width on mobile */
        margin-left: 50px;
        
    }

    #right-container h1, #right-container p {
    display: none;
    }

    aside {
    position: static; /* Makes the sidebar follow the normal flow of the document */
    width: 100%; /* Takes up full width of its container */
}

aside ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

aside ul li {
    margin: 10px; /* adjust this value to increase or decrease the space between the icons */
}
}

@media screen and (min-width: 769px) {
    .hamburger,
    .fas.fa-bars::before {
        display: none;
    }
}
    