<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.panel {
    position: fixed;
    right: -100%;/*left or right*/
    width: 100% !important; 
}
 
.menu-link i {
    text-decoration: none;
    font-size: 40px;
    color: #fff;
}

#menu {
    background: rgba(255, 255, 255, 1);
    z-index: 998;
}
#menu ul {
    margin-top: 100px;
}

#menu li {
    text-align: center;
    transition: all 0.4s ease;
    padding: 20px 0;
}
#menu li a {
    color: #63a615;
    font-size: 23px;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 20px 0;
}
#menu li a.active {
    color: #63a615;
}
#menu li a:hover {
    color: #C7DD9A;
}
.menu-link {
    z-index: 999;
    display: block;
    position: fixed;
    top: 0;
    right: 30px; 
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 80px;
    height: 80px;
    font-size: 0;
    text-indent: -9999px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    border-radius: none;
    border: none;
    cursor: pointer;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
    background-color: #63a615;
}
.menu-link:focus {
    outline: none;
}
.menu-link span {
    display: block;
    position: absolute;
    top: 35px;
    left: 18px;
    right: 18px;
    height: 6px;
    border-radius: 2px;
    background: #FFF;
    -webkit-transition: background 0 0.3s;
    transition: background 0 0.3s;
}

.menu-link span::before,
.menu-link span::after {
    position: absolute;
    display: block;
    right: 0;
    width: 76%;
    height: 6px;
    border-radius: 2px;
    background-color: #C7DD9A;
    content: "";
    -webkit-transition-duration: 0.3s, 0.3s;
    transition-duration: 0.3s, 0.3s;
    -webkit-transition-delay: 0.3s, 0;
    transition-delay: 0.3s, 0;
}

.menu-link span::before {
    top: -15px;
    -webkit-transition-property: top, -webkit-transform;
    transition-property: top, transform;
}

.menu-link span::after {
    bottom: -15px;
    -webkit-transition-property: bottom, -webkit-transform;
    transition-property: bottom, transform;
}

/* active state, i.e. menu open */
.menu-open {
    background-color: #63a615;
}

.menu-open span {
    background: none;
}

.menu-open span::before {
    top: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menu-open span::after {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.menu-open span::before,
.menu-open span::after {
    -webkit-transition-delay: 0, 0.5s;
    transition-delay: 0, 0.5s;
}
.menuContact {
	width: 100%;
	display: inline-flex;
    text-align: center;
}
.menuContactInner {
	display: inline-flex;
    margin: 0 auto;
}
.menuContact h5 {
    font-size: 3.0rem;
}
@media screen and (max-width: 1440px) {
    #menu ul {
        margin-top: 100px;
    }
}

@media screen and (max-width: 991px) {
    #menu li a {
        font-size: 20px;
    }
}

@media screen and (max-width:800px) {
    #menu li {
        padding: 15px 0;
    }
    #menu ul {
        margin-top: 70px;
    }
}
@media screen and (max-width:680px) {	
	.panel {
		width: 100% !important; 
	}
	.noScroll {
		overflow: hidden;
	}
}
@media screen and (max-width:480px) {
	.menu-link {
        width: 85px;
    }
}


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