body {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

header {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    z-index: 10;
}

header img {
    width: 60px;
    height: 81px;
}

.header-content {
    background-color: #01264d;
    display: flex;
    justify-content: space-between;
    
    align-items: center;
    width: 100%;
    height: 120px;

    padding: 0 40px; 
    box-sizing: border-box; 
}

nav {
    display: flex;
    gap: 25px;
    
}

nav a{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: white;
    font-size: 28px;
    font-style: italic;
    text-shadow: 2px 0px 2px rgb(4, 4, 4);
    text-decoration: none;
}

nav a:hover{
    cursor: pointer;
    color: rgb(180, 178, 178);
}

.belowheader {
    background-color: #001f3d;
    height: 30px;
    position: sticky;
}

html {
    background-color: #001f3d;
}

body {
    margin: 0;
    padding: 0;
}


footer {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    background-color:#001f3d;
    color: white;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    gap: 100px;
    padding-right: 70px;
}

.footer-column {
    max-width: 200px;
}

.footer-column h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column a {
    color: #cccccc;
    margin-bottom: 10px;
    font-size: 12px;
    text-decoration: underline;
}
.footer-column a:hover {
    color: white;
}

.footer-column p, .footer-column span {
    display: block;
    font-size: 12px;
    line-height: 1.6;
}

/* END OF PAGE SIMILAR CONTENT */

.inter-300 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

#ourteam-main-pic{
    display: flex;
    height: 810px;
    width: 100%;
    position: relative;
    background-color: black;
    background-attachment: fixed;
}

.slide {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center 35%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-image: url("../assets/images/ourteam/ourteamformal-min.jpg");
}

.slidetext {
    margin-left: 260px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 600;
    color: white;
    font-size: 60px;
    font-style: italic;
    text-shadow: 4px 2px 2px rgb(4, 4, 4);
}

.ourteamcard {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 510px;
    width: 300px;
    border: solid 1px rgba(255, 255, 255, 0.237);
    border-radius: 10px;
    margin-bottom: 40px;
    padding-top: 15px;
    overflow: hidden;
}

.imgframe {
    height: 400px;
    width: 250px;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 10px;
}

.ourteamcard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#ourteam-body {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #01264d;
    padding-top: 10px;
    padding: 0px 0px 0px 0px;
}

#ourteam-body h2 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 40px;
  color: white;
}

.imgcards {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    padding: 0 10px;
}

@media (max-width: 768px) {

    .header-content {
        justify-content: space-between;
        
        gap: 0;
    }

    .menu-toggle {
        display: block; 
    }

    /* dropdown menu on mobile */
    nav {
        display: none;
        position: absolute;
        top: 150px;
        left: 0;
        width: 100%;
        background-color: #01264d;
        
        flex-direction: column; 
        margin-left: 0;
        gap: 0;
        
        border-bottom: 3px solid #001f3d;
    }

    nav.show {
        display: flex;
    }

    nav a {
        font-size: 22px;
        padding: 20px 0;
        width: 100%;
        text-align: center;
        text-shadow: none;
        border-bottom: 1px solid #001f3d;
    }

    nav a:last-child {
        border-bottom: none;
    }
    
    nav a:hover {
        background-color: #001f3d;
        color: white;
    }

    .slidetext {
        margin-left: 0;
        text-align: center;
        font-size: 40px;
        color: rgb(246, 246, 246);
    }

    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
        padding-right: 20px;
    }

    .slide {
        background-repeat: no-repeat;
        background-attachment: scroll;
        zoom: 1;  
        background-size: cover;
        background-position: center 30%;
    }
}