@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;500;600;700&display=swap');

body,html {
    padding: 0;
    margin: 0;
    overflow-x:clip;
}

.headerLogo a{
    display:block;
    width:100%;
    height:100%;
}

.header {
    height: 13vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    box-shadow: -5px 2px 22px #4fac00;
    width: 100%;
    top: 0;
    background-color: white;
    z-index: 20;
    position: absolute;
    box-sizing: border-box;
}

.headerLogo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}


.headerLogo {
    height: 8.6vh;
    transition: all 0.25s ease-in-out;
}

div.headerStuck .headerLogo {
    height: 7.5vh;
}
.headerDesktopNav {
    display: flex;
    flex-direction: row;
    width: 80%;
    justify-content: space-evenly;
}

.headerDesktopNav a {
    font-family: 'Fira Sans';
    text-decoration: unset;
    color: black;
    font-weight: 500;
    font-size: 1.1em;
    transition: all 0.25s ease-in-out;
}

.headerTranslate p {
    font-family: 'Fira Sans';
    font-weight: 500;
    color: black;
    font-size: 1em;
}

div.headerStuck {
    position: fixed;
    transition: all 0.25s ease-in-out;
    height: 10vh;
}
div.headerStuck .headerDesktopNav a {
    font-size: 1em;
}

div.headerStuck .headerTranslate p {
    font-size: 0.9em;
}



.entry-content>p {
    display: none;
}

.footer .currentPage{
    color:#666666;
}

.header .currentPage{
    color:#4fac00;
}

.header::after {
    background: rgba(79,172,0,0.04);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none!important;
}

@media only screen and (max-width:1600px){
    div.headerStuck .headerLogo {
    height: 6.7vh;
}

}



/*Burger Menu!*/

 @keyframes growDown {
    0% {
        transform: scaleY(0);
    }
    100% {
        transform: scaleY(1);
    }
}

@keyframes growDownR {
    0% {
        transform: scaleY(1);
    }
    100% {
        transform: scaleY(0);
    }
}


.growDown {
    animation: growDown 300ms ease-in-out forwards;
    transform-origin: top center;
}

.growDownR {
    animation: growDownR 300ms ease-in-out forwards;
    transform-origin: top center;
}

.headerMenuPhone{
    display:none;
  }



@media only screen and (max-width:1100px){

    .header {
    padding: 0 6%;
}

.mobileMenu.growDown::after {
    content: '';
    width: 0;
    height: 0;
    top: 0;
    left: 90.3%;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid #4fac00;
    position: absolute;
    transform: translate(-100%,-100%);
}



.mobileMenu a {
    font-family: 'Fira Sans';
    text-decoration: unset;
    color: black;
    margin: 0.3em 0;
}

.phoneTranslate p {
    font-family: 'Fira Sans';
    font-size: 0.9em;
    margin: 0;
    margin-top: 4vh;
    margin-bottom: 1vh;
}

    .displayNone {
        display: none!important;
    }

    .headerDesktopNav, .headerTranslate{
        display:none;
    }
.headerMenuPhone{
    display:flex;
 justify-content: flex-end;
 position: relative;
 

  }
.menu svg {
        width: 50px;
        height: 50px;
    }



    button.menu {
    background-color: transparent;
    border: none;
    position: relative;
}
    .line {
        fill: none;
        stroke: #4fac00;
        stroke-width: 6;
        transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
    }
    .line1 {
        stroke-dasharray: 60 207;
        stroke-width: 6;
    }
    .line2 {
        stroke-dasharray: 60 60;
        stroke-width: 6;
    }
    .line3 {
        stroke-dasharray: 60 207;
        stroke-width: 6;
    }
    .opened .line1 {
        stroke-dasharray: 90 207;
        stroke-dashoffset: -134;
        stroke-width: 6;
    }
    .opened .line2 {
        stroke-dasharray: 1 60;
        stroke-dashoffset: -30;
        stroke-width: 6;
    }
    .opened .line3 {
        stroke-dasharray: 90 207;
        stroke-dashoffset: -134;
        stroke-width: 6;
    }
.mobileMenu {
    position: absolute;
    z-index: 10;
    background-color: white;
    width: max-content;
    border-top: 3px solid #4fac00;
    transition: all 0.4s ease-in-out;
    top: 88%;
    right: 10%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 1.9vh 4vh;
    box-shadow: -3px 4px 10px rgba(0,0,0,0.4);
}
    .mobileMenu ul {
        padding: 0;
        margin: 0;
        transform: scale(0.85);
        flex-direction: column;
        display: flex;
        gap: 0.3em;
    }



}
/**/


@media only screen and (max-width:550px){
    .mobileMenu {
    padding: 1.9vh 3vh;
}
.mobileMenu.growDown::after {
    left: 89.3%;
}

.headerLogo {
    height: 6.6vh;
    aspect-ratio: 1.3/1;
    width: auto;
}
}