* {
    font-family: "Poppins";
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    padding-top: 100px;
    background-color: #F3F4E7;

}

body:not(.homepage) .navbar {
    background-color: #00473C;
}
.navbar {
    display: flex;
    font-weight: 800;
    font-family: "Poppins", sans-serif;
    align-content: center;
    align-items: center;
    text-decoration: none;
    justify-content: space-between;
    font-size: 2em;
    background-color: transparent;
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 80px;
    top: 0;
    transition: top 0.3s, background-color 0.3s;
}
.left-nav {
    color: white;
    max-width: 100%;
    padding-top: 15px;
    margin-left: 30px;
    display: flex;
    flex-wrap: nowrap;
}

.right-nav {
    color: white;
    max-width: 100%;
    padding-top: 15px;
    text-decoration: none;
    margin-right: 40px;
    display: flex;
    gap: 50px;
    flex-wrap: nowrap;
}

.banner{
    background-color: #C3EF4C;
    color: #00473C;
    text-align:center;
    width: 100%;
    font-size:2em;
    z-index: 1000;
}

.icon {
    display:none;
    visibility: hidden;
    color: #C3EF4C;
    position: absolute;
    max-width: 100%;
    top:35px;
    right:15px;
    text-decoration: none;
    margin-right: 40px;
    display: flex;
    flex-wrap: nowrap;
    transition: color 0.4s;
}

.icon:hover{
    color:#F3F4E7
}


navBtn:visited {
    color: #C3EF4C;
}

.navText{
    padding: 0 10px;
}


.navBtn{
    color: #C3EF4C;
    transition: color 0.4s;
}
.navBtn:hover{
    color: #F3F4E7;
}

.navBtnAlt{
    color: #C3EF4C;
    transition: color 0.4s;
    display:inline-flex;
    flex-wrap: nowrap;
}
.navBtnAlt:hover{
    color: #F3F4E7;
}

.navLogo {
    height: 35px;
    transition: opacity 0.4s;
}



.menu-image {
    position: relative;
    margin: 0px;
    display: flex;
}

.menu-image img {
    position: relative;
    height: 400px;
    width: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1275px) {
    .right-nav {
        display:none;
    }
    .icon{
        display:flex;
        visibility: visible;
    }  
    .navText{
        display:none;
    }

    .right-nav.active {
        display: flex; 
        flex-direction: column;
        gap: 30px; 
        position: fixed;
        top: 0; 
        left: 0;
        width: 100%; 
        height: 100vh; 
        background-color: #003129; 
        justify-content: flex-start;
        align-items:flex-end;
        padding: 100px 55px;
        box-sizing: border-box; 
        overflow-y: auto; 
        transition: ease-in;
    }
    .navBtn{width:fit-content;}
}

.references{
    text-align: center;
}
.references h1{
    color: #00473C;
    font-family: 'swear-display';
    font-size: 4.5em;
    padding-bottom: 30px;
    font-weight: 800;
}

.references h2{
    color: #00473C;
    font-family: 'Poppins';
    font-size: 2em;
}

.link{
    color: #90C232;
    font-family: 'Poppins';
    font-size: 1.5em;
}

.link:hover{
    color: #C3EF4C;
}