@font-face { 
    font-family: "NotoSerifDisplay";
    src: url("../Fonts/NotoSerifDisplay-VariableFont_wdth\,wght.ttf") format("truetype");
    font-display: swap;
}

@font-face { 
    font-family: "Montserrat";
    src: url("../Fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
    font-display: swap;
}

body {
    background-color: #52604E;
    font-family: "Montserrat", Verdana, Tahoma, sans-serif;
    color: #52604F;
    min-height: 100vh;
    font-size: 16px;
}

h1, h2, h3, h4, h5 {
    font-family: "NotoSerifDisplay", Verdana, Tahoma, sans-serif;
}

.nav-icons {
    background-color: #fff;
    padding: 20px;
    margin: -8px -8px 0px -8px;
}

.menu-container {
    display: flex;
    justify-content: center;
}

.menu a {
    text-decoration: none;
    font-family: "Montserrat", Verdana, Tahoma, sans-serif;
    text-transform: uppercase;
    color: #52604F;
    font-weight: 450;
    font-size: 20px;
}


.menu {
    list-style: none;
    background-color: rgba(255, 255, 255, 1);
    display: none;
    flex-direction: column;
    position: absolute;
    top: 151px;
    padding: 20px;
    margin-left: 0.5px;
    left: 0;
    z-index: 1;
} 

.dropdown-menu a {
    padding: 10px;
    margin-bottom: -10px;
}

.dropdown-menu li:last-child {
    padding-bottom: 10px;
    margin-bottom: -10px;
}

.dropdown-menu {
    display: none;
    list-style: none;
    top: 100%;
    left: 0;
    background-color: rgba(255, 255, 255, 1);
}

.dropdown-menu.show {
    display: block;
}

.hamburger-icon {
    margin-top: 45px;
    width: 35px;
    height: 30px;
    background-image: url(../Images/Hamburger.png);
    background-size: cover;
}

.menu.show {
    display: flex;
}

.menu li {
   margin-bottom: 20px;
}

.toggle-menu {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

#active {
    text-decoration: underline;
}

.logo-desktop {
    display: none;
    color: #fff;
    max-width: 300px;
    height: auto;
    text-align: center;
}

.logo-mobile {
    max-width: 140px;
    height: auto;
}

.bottom-nav {
    display: flex;
    justify-content: space-around;
    background-color: #fff;
    flex-flow: wrap column;
    align-items: center;
}

.navigate h5, .navigate h2, .navigate h4, .follow h5, .follow h2, .follow h4 {
    font-size: 25px;
    font-weight: 600;
    text-decoration: underline;
    color: #52604F;
    text-align: center;
    margin-bottom: 0px;
}

.navigate {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    order: 1;
}

.navigate a, .navigate li {
    text-decoration: none;
    color: #52604F;
    list-style: none;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 5px;
    margin-right: 18px;
}

.navigate a:hover, .navigate li:hover, .menu a:hover {
    color: #758d82;
    text-decoration: underline #52604E;
}

.loader-div {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 999;
    margin-top: 200px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.loader {
    border: 16px solid #B6CCC1; 
    border-top: 16px solid #52604F; 
    background-color: #fff;
    background-image: url(../Images/Leaf.png);
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite;
}

.logo-foot {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    order: 3;
}

.logo-foot img {
    max-width: 200px;
    height: auto;
    padding-top: 30px;
}

.follow {
    order: 2;
}

.follow img {
    padding-left: 5px;
    padding-top: 10px;
}

.tagline {
    font-size: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error {
 color: #52604E;
 background-color: #fff;
 text-align: center;
}

.close-icon {
    position: absolute;
    top: 10px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.follow i {
    font-size: 40px;
    color: #9BBFAE;
    padding: 3px;
}

.follow i:hover {
    color: #758d82;
} 

.image-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.magnifying-glass-icon {
    font-size: 30px;
    color: rgba(255, 255, 255, 0.6);;
    cursor: pointer;
    position: absolute;
    bottom: 25px;
    right: 20px;
}

@media (min-width: 600px) {
    .toggle-menu {
        display: none;
    }

    body {
        font-size: 18px;
    }

    .menu {
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin: auto;
        padding-top: 15px;
        flex-direction: row;
        top: 0;
        right: 0;
    }

    .dropdown {
        position: relative;
    }
    
    .dropdown-menu {
        display: none;
        position: absolute;
        list-style: none;
        top: 100%;
        left: 0;
        background-color: rgba(255, 255, 255, 1);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu li:last-child {
        margin-bottom: 0px;
    }

    .dropdown-menu li {
        width: 140px;
        padding: 5px;
    }

    .fa-solid {
        display: inline-block;
    }


    .hamburger-icon {
        display: none;
    }

    .menu li {
        margin: 0 20px 0 0;
    }

    .logo-desktop {
        padding-top: 40px;
        display: block;
    }

    .navigate h5, .navigate h2, .navigate h4, .follow h5, .follow h2, .follow h4 {
        font-size: 35px;
    }
}

@media (min-width: 750px) {
    .bottom-nav {
        flex-flow: row wrap;
    }

    .follow {
        margin-top: -80px;
        order: 3;
        text-align: center;
    }

    .logo-foot {
        order: 2;
    }

    .navigate {
        order: 1;
    }

    .logo-foot img {
        max-width: 250px;
    }
}
