<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Theming */

:root{
    --white: #f9f9f9;
    --black: #36383F;
    --grey: #85888C;
}

/* Reset */

body{
    /*font-family: "Poppins", sans-serif;*/
}

a{
    text-decoration: none;
}

ul{
    list-style: none;
    text-align: right;
    padding-right:30px;
}

/* Header */
.header{
    background-color: #transparent;
    /*box-shadow: 1px 1px 5px 0px #333;*/
    position: absolute;
    top: 0px;
    width: 93vw;
    padding-right:10px;
}

/* Logo */
.logo{
    display: inline-block;
    color: #000;
    font-size: 60px;
    margin-left: 10px;
    background-color: #transparent;

}

/* Nav menu */
.nav{
    width: 100%;
    /*height: 100%;*/
    position: relative;
    top:-40px;
    /*background-color: rgba(244,244,244,.9);*/
    overflow: hidden;
    font-size:1.2em;
    font-weight:700;
    float: right;
}


.menu {background-color: rgba(244,244,244,.9);}
.menu a{
    display: block;
    padding-left: 10px; padding-right: 10px; padding-bottom: 10px; padding-top: 20px;
    color: #000;
background-color: rgba(244,244,244,.9);
}


.menu a:hover{
    background-color: #eee;
    color: #f62020;
}

.nav{
    max-height: 0;
    transition: max-height .5s ease-out;
}

/* Menu Icon */

.hamb{
    cursor: pointer;
    float: right;
    padding: 20px 20px;
}

     
        .nohamb{
        display: none;
    }


.hamb-line {
    background: #000;
    display: block;
    height: 2px;
    position: relative;
    width: 24px;
    
}

.hamb-line::before,
.hamb-line::after{
    background: #000;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.hamb-line::before{
    top: 5px;
}

.hamb-line::after{
    top: -5px;
}


.side-menu {
    display: none;
}

/* Toggle menu icon */

.side-menu:checked ~ nav{
    max-height: 100%;
}

.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}

.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;

}

.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}



/* Responsiveness */

@media (min-width: 960px) {
    .nav{
        max-height: none;
        top: -76px;
        position: relative;
        float: right;
        text-align: right;
        width: 94vw;
        background-color: transparent;

    }

    .menu li{
        float: right;
        text-align: right;
    }

    .menu a:hover{
        background-color: transparent;
        color: #f62020;
        
    }
    
    .hamb, nav.hamb, nav.nav.hamb{
        display: none;
        background-color:transparent;
        
    }
    
        .nohamb{
        display: block;
    }
    
    .menu, .menu a {background-color: transparent;}


}
</pre></body></html>