﻿:root {
    --green: #365e32;
    --darkgreen: #304d2d;
    --lightgreen: #4f9048d9;
    --orange: #ffc202;
}
a{
    text-decoration: none;
    color: white;
}
.head-top-title {
    font-family: "Lato", sans-serif;
    margin-left: 0.5vw;
}
.sticky {
    position: fixed !important;
    width: 100% !important;
    top: 0;
    z-index: 2 !important;
}
.navbar-header > .head {
    color: white;
    padding: 0.5vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background: var(--darkgreen);
}

.navbar-header > .body {
    color: white;
    padding: 0.5vw;
    display: flex;
    flex-direction: row;
    background: var(--green);
    justify-content: center;
}

.logo {
    height: 100px;
}
.mobil-nav-tool {
    padding: 15px;
    background: var(--darkgreen);
    border-radius: 15px;
    text-decoration: none;
    color: white !important;
    display: flex;
    align-items: center;
    height: fit-content;
    margin: auto 5px;
    gap: 10px;
}
.nav-login {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 300px;
}
    .nav-login > a > span {
        font-size: 15px;
        font-weight: 200;
    }
.login-demo {
    padding: 10px 12px;
    background: var(--darkgreen);
    border-radius: 15px;
    text-decoration: none;
    color: white !important;
    display: flex;
    align-items: center;
    height: fit-content;
    margin: auto 5px;
    width: 48%;
    justify-content: space-around;
}
    .nav-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    margin-left: 14vw;
}

.nav-menu-item {
    display: flex;
    flex-direction:row;
    padding: 10px;
    transition-duration: .3s;
    transition-property: transform
}
    .nav-menu-item:hover {
        cursor: pointer;
        transform: scale(1.1)
    }

.menu-item-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 0.5vw;
    color: inherit;  
    text-decoration: none;
}
.menu-title-text {
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 500;
}
.menu-item-divider {
    width: 1px;
    height: auto;
    background: #FFFFFF36;
    margin-left: 0.5vw;
}
.monthly_content {
    overflow-x: visible;
}
@media screen and (max-width: 1200px) {
    .logo {
        height: 75px;
        margin-left: 2vw;
    }
    .column {
        width: 100%;
    }
    .navbar-header > .head {
        display: none;
    }
    .nav-menu {
        display: none;
    }
    .nav-login {
        display: none !important;
    }
    .monthly_content {
        overflow-x: auto;
    }
}
 



