<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header {
    font-family: "SUSE", sans-serif;
}

#logo-ps {
    width: 5%;
    position: absolute;
    left: 8.5%;
    bottom: 13%;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.header {
    border-bottom: 1px solid #E2E8F0;
    background: rgb(86, 136, 98);
}

.navbar {
    bottom: 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #101010;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-item {
    margin-left: 3rem;
}

.nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff !important;
    text-decoration: none;
    padding: 1px 1px;
}

.nav-link:hover {
    color: #9ba5bb !important;
}

.nav-logo {
    font-size: 2.5rem;
    margin-left: 0.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

@media only screen and (max-width: 1740px) {
    #logo-ps {
        width: 5.3%;
        left: 10%;
        bottom: 22%;
    }
}

@media only screen and (max-width: 1640px) {
    #logo-ps {
        width: 4.7%;
        left: 10.5%;
        bottom: 23%;
    }
}

@media only screen and (max-width: 1540px) {
    #logo-ps {
        width: 5%;
        left: 11.5%;
        bottom: 23.3%;
    }
}

@media only screen and (max-width: 1440px) {
    #logo-ps {
        width: 5%;
        left: 12.5%;
        bottom: 24.5%;
    }
}

@media only screen and (max-width: 1340px) {
    #logo-ps {
        width: 5%;
        left: 13%;
        bottom: 27.9%;
    }
}

@media only screen and (max-width: 1240px) {
    #logo-ps {
        width: 5.2%;
        left: 14.8%;
        bottom: 28%;
    }
}

@media only screen and (max-width: 1140px) {
    #logo-ps {
        width: 5.5%;
        left: 15%;
        bottom: 26.1%;
    }
}

@media only screen and (max-width: 1040px) {
    #logo-ps {
        width: 6.2%;
        left: 16.8%;
        bottom: 25.8%;
    }
}

@media only screen and (max-width: 940px) {
    #logo-ps {
        width: 5.8%;
        left: 18.8%;
        bottom: 28.8%;
    }
}

@media only screen and (max-width: 900px) {
    #logo-ps {
        width: 7.8%;
        left: 20.8%;
        bottom: -1.2%;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 4.5rem;
        flex-direction: column;
        background: rgb(86, 136, 98);
        width: 90%;
        height: 75vh;
        margin: 0.4rem 0.1rem;
        padding: 4px 0;
        border-radius: 10px;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .nav-link {
        color: #fff;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 2.5rem 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media only screen and (max-width: 750px) {
    #logo-ps {
        width: 8.8%;
        left: 23.8%;
        bottom: 0.8%;
    }
}

@media only screen and (max-width: 650px) {
    #logo-ps {
        width: 7.8%;
        left: 28.4%;
        bottom: 0.8%;
    }
}

@media only screen and (max-width: 550px) {
    #logo-ps {
        width: 10.8%;
        left: 34.8%;
        bottom: 1.8%;
    }

    .nav-menu {
        z-index: 1;
    }
}

@media only screen and (max-width: 450px) {
    #logo-ps {
        width: 13.8%;
        left: 39.8%;
        bottom: 2.2%;
    }
}

@media only screen and (max-width: 387px) {
    #logo-ps {
        width: 14.8%;
        left: 41.8%;
        bottom: -2.9%;
    }
}

.main-fet {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.main-fet:hover {
    color: #9ba5bb !important;
}

.dropdown {
    position: relative;
    z-index: 999;
}

.dropdown ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.dropdown li {
    position: relative;
    margin: auto;
}

.dropdown li a {
    color: rgb(7, 3, 3);
    display: inline-block;
    padding: 10px;
    margin: 5px;
    width: 12vb;
    border: 2px solid rgb(15, 14, 14);
    height: auto;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s 0.2s;
}

.dropdown ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    background-color: white;
    padding: 0;
    z-index: 1000;
}

.dropdown ul ul li {
    display: block;
}

.dropdown li:hover ul {
    display: block;
}

.dropdown ul ul li a:hover {
    border-radius: 9px;
    background-color: #7f8cb1;
}

.dropdown ul ul {
    width: 140px;
}</pre></body></html>