<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">﻿
body {
    /*  font-size: calc(12px + 1vw);
        line-height: calc(1.1em + 0.5vw);*/
}

header {
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    height:4.5rem;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    left: 1px;
}

.menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content:end;
}

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

        .menu li:last-child {
            margin-right: 0;
        }

    .menu a {
        text-decoration: none;
        color: #333;
        font-weight: bold;
        transition: color 0.3s;
        font-family: inherit;
        text-transform: uppercase;
        color: black;
    }

        .menu a:hover {
            color: #2e9b45;
        }

.active a {
    color: #2e9b45;
}

.toggle-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

    .toggle-menu span {
        width: 30px;
        height: 3px;
        background-color: #2e9b45;
        margin: 3px 0;
        transition: transform 0.3s;
    }

@media (max-width: 767px) {
    .menu {
        display: none;
        flex-direction: column;
        background-color: white;
        position: absolute;
        /*top: 140px;*/
        top: 65px;
        left: 0;
        right: 0;
        bottom: auto;
        padding: 30px;
        padding-left: 50px;
        padding-bottom: 65px;
        z-index: 16;
    }

        .menu.active {
            display: flex;
            color: #2e9b45;
        }

        .menu li {
            background-color: white;
            color: white;
            margin-right: 0;
            margin-bottom: 15px;
        }

            .menu li a {
                color: #184d05;
            }

    .toggle-menu {
        display: flex;
    }

        .toggle-menu.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-3px, 6px);
        }

        .toggle-menu.active span:nth-child(2) {
            opacity: 0;
        }

        .toggle-menu.active span:nth-child(3) {
            transform: rotate(45deg) translate(-3px, -6px);
        }
}

@media (max-width: 767px) nav ul li {
    display: block !important;
}

@media (max-width: 767px)  {
    nav ul {
        padding-left: 50px;
    }
}

@media (max-width: 767px) {
    nav {
        display: flex;
        /*flex-direction: row-reverse;*/
        margin-top:-43px;
        justify-content: flex-start;
    }
    .logo{
        right:1px;
        margin-top:-10px !important;
        position:relative !important;
    }
    .toggle-menu {
        display:flex;
        justify-content:end;
        align-items:end;
        margin-top:-88px !important;
    }
}
</pre></body></html>