<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* nav */
.nav {
    width: auto;
    text-align: right;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.nav ul {
    /* margin:15px 80px 20px 20px; .nav ul li a*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.nav ul li {
    padding: 0 2rem;
    list-style: none;
    display: inline-block;
    position: relative;
}

.nav ul li a {
    color: #005ca9;
    /* color: #1973FF; */
    font-size: 18px;
    -webkit-transition: 0.1s ease;
    transition: 0.1s ease;
}

.nav ul li a:hover {
    color: #BAD5FF;
}

.mobilenav ul .sub-menu,
.nav ul .sub-menu {
    display: none;
}

.nav ul li:hover&gt;.sub-menu {
    display: block;
    min-width: 200px;
}

.nav ul li .sub-menu {
    position: absolute;
    margin: 0;
    padding: 0;
    width: auto;
    text-align: left;
}

.nav ul li .sub-menu li:first-child {
    margin-top: 32px;
}

.nav ul li .sub-menu li {
    padding: 0 0 10px 0;
    color: rgba(255, 255, 255, .6);
    display: block;
    border: none;
    background: rgba(0, 0, 0, .3);
    padding: 5px 10px;
    -webkit-transition: 0.25s linear;
    transition: 0.25s linear;
    background-color: #005ca9;
    font-size: inherit;
}

.special-header-items .nav ul li .sub-menu li {
    padding: 0 0 10px 0;
    display: block;
    border: 1px solid rgba(255, 255, 255, .3);
    background: #333;
    padding: 5px 10px;
}

.special-header-items .nav ul li .sub-menu li a {
    font-size: 1.5em;
    color: rgba(255, 255, 255, 1);
}

.nav ul li .sub-menu li:hover {
    /* border: 1px solid rgba(255, 255, 255, 1); */
}

.nav ul li .sub-menu li:hover&gt;a {
    /* color: rgba(255, 255, 255, 1); */
}

.nav ul li .sub-menu li a {
    /* font-size: 1.5em; */
    color: rgba(255, 255, 255, 1);
    line-height: 1.2;
    text-transform: none;
    display: block;
    padding: .5rem 0;
        hyphens: auto;
}

.nav ul li.menu-item-has-children:after {
    /* position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    right: 0;
    top: 10px;
    content: '';
    -webkit-transition: .2s;
    transition: .2s;
    background-repeat: no-repeat;
    background-image: url(../img/arrow-down-blue.png);
    background-position: center center;
    background-size: 12px 23px;
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); */
}

/* Fixed Nav */
/* .fixed .nav ul {

}

.fixed .nav ul li a {
    font-size: 16px;
}

.fixed .nav ul li .sub-menu li:first-child {
    margin-top: 27px;
} */
/* Footer Nav */
.footernav {
    text-align: right;
}

.footernav ul {
    margin: 15px 25px 20px 20px;
}

.footernav ul li {
    padding: 0 15px;
    list-style: none;
    display: inline-block;
    position: relative;
}

.footernav ul li a {
    color: #fff;
    font-size: 14px;
}

/* Mobilenav */
.mobilenav {
    display: none;
}
@media only screen and (max-width:1356px) {
    .nav ul li{
        padding: 0 1.5rem;
    }
}
@media only screen and (max-width:1284px) {
    .nav ul li{
        padding: 0 1rem;
    }
    .nav ul li a{
        font-size: 1.6rem;
    }

}
@media only screen and (max-width:1100px) {
    .nav ul li{
        padding: 0 .5rem;
    }
    .nav ul li a{
        font-size: 1.4rem;
    }
}



@media only screen and (max-width:1024px) {
    .nav {
        display: none;
    }

    .mobilenav {
        position: fixed;
        padding: 0 calc(100vw / 12);
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, .9);
        border-bottom: 1px solid rgba(255, 255, 255, .3);
        z-index: 99;
    }

    .mobilenav ul {
        margin-top: 150px;
    }

    .mobilenav ul ul {
        margin-top: 10px;
    }

    .mobilenav ul li {
        list-style: none;
        /* padding:10px; */
        position: relative;
    }

    .mobilenav ul li a {
        color: #005ca9;
        /* color: #1973FF; */
        font-size: 1.5em;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease;
        width: 100%;
        display: inline-block;
        padding: 1rem 1rem 1rem 0;
    }

    .mobilenav ul li a:hover {
        color: #BAD5FF;
    }

    .mobilenav ul .menu-item-has-children&gt;span {
        background: url(../img/arrow-down-blue.png);
        background-repeat: no-repeat;
        display: block;
        cursor: pointer;
        position: absolute;
        right: 10px;
        width: 25px;
        height: 15px;
        top: 17px;
        float: right;
        font-family: 'thomasicons' !important;
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        font-size: 2.4em;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.4s ease;
        transition: 0.4s ease;

    }
    .mobilenav ul .sub-menu{
        padding-left: 2rem;

    }
    .mobilenav ul .sub-menu a{
        font-size: 1.2em;
    line-height: 1.8rem;

    }

    .mobilenav ul .menu-item-has-children span.open {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    /* ------------------------------------
	 *  HAMBURGER
	 * ------------------------------------
	 */
    #hamburger {
        width: 30px;
        height: 30px;
        position: absolute;
        top: 50%;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg) translateY(-50%);
        -webkit-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        cursor: pointer;
        right: 0px;
        z-index: 10000;
    }

    #hamburger span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: #005ca9;
        /* background: #1973FF; */
        border-radius: 5px;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }

    #hamburger:hover&gt;span {
        /* background: rgba(255,255,255, .6); */
        opacity: 0.8;
    }

    .header-wrapper&gt;.open {
        position: fixed !important;
    }

    .open span {
        -webkit-transition-duration: 1s;
        /* Safari */
        transition-duration: 1s;
    }

    #hamburger span:nth-child(1) {
        top: 0px;
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }

    #hamburger span:nth-child(2) {
        top: 9px;
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }

    #hamburger span:nth-child(3) {
        top: 18px;
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }

    #hamburger.open span:nth-child(1) {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        top: -3px;
        left: 2px;
    }

    #hamburger.open span:nth-child(2) {
        width: 0%;
        opacity: 0;
    }

    #hamburger.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 18px;
        left: 2px;
    }
}
</pre></body></html>