* {
    font-family: "Poppins";
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    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;
}

.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
}


a: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;
}






@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;}
}

.header{
    text-align: center;
    font-size: 4em;
    font-weight: 800;
    font-family: "swear-display";
    margin-top: 90px;
    color: #00473C;
}

.cards {
    display: flex;
    margin-top: 25px;
    margin-bottom: 70px;
    justify-content: center;
    padding: 10px 0;
    width: 100%;

}

.card1{
    margin: 0px 20px 0px 20px;
    padding: 20px;
    border-radius: 1.25rem;
    background-color: #e1e6cf;
    width: 60%;
}



.card-image {
    width: 30%;
    border-radius: 1.25em;
    align-items: center;    
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;

}
.card-title{
    color: #00473C;
    font-weight: 700;
    font-size: 2.75em;
    font-family: "swear-display";
    padding-top: 0px;
    padding-bottom: 15px;
    text-align: center;
}



 .info{
    font-family: "Poppins";
    font-size: 1.25em;
    font-weight: 400;
    color: #00473C;
 }