footer{
    opacity: 0;
    }
header{
    position: fixed;
    height: 84px;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: 100;
    background-repeat: repeat;
    background-position: right top;
    background-color:rgba(253, 250, 249, 0);
    transition: all ease-in-out 300ms;
    }
header.header-shrink{
    height: 55px;
    }
header .header {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1700px;
    margin: 0px auto;
    padding: 12px 18px 0px 18px;
    z-index: 8;
    height: 84px;
    transition: all ease-in-out 300ms;
    }
header.header-shrink .header {
    height: 55px;
    }
header.light-bg {
    background: rgba(253, 250, 249, 1);
    }
header .header::after {
    display: none;
    }
header .header .logo{
    position: relative;
    width: 200px;
    height: 59px;
    transition: all ease-in-out 300ms;
    cursor: pointer;
    filter: invert(100%) sepia(0%) saturate(100%) hue-rotate(0deg) brightness(1000%) contrast(100%);
    }
header.header-shrink .header .logo{
    width: 120px;
    height: 35px;
    }
header.light-bg .header .logo{
    filter: none;
    }
header .header .logo.white{
    filter: invert(100%) sepia(0%) saturate(100%) hue-rotate(0deg) brightness(1000%) contrast(100%);
    }
header .header .menu {
    position: relative;
    display: none;
    padding: 31px 0px 0px 0px;
    transition: all ease-in-out 300ms;
    }
header .header .menu ul {
    position: relative;
    display: block;
    }
header .header .menu ul li {
    position: relative;
    display: inline-block;
    padding: 0px 11px;
    font-size: 16px;
    line-height: 1.8em;
    }
header .header .menu ul li:first-child {
    padding-left: 0px;
    }
header .header .menu ul li:last-child {
    padding-right: 0px;
    }
header .header .menu ul li a{
    color: #fff;
    cursor: pointer;
    }
header.light-bg .header .menu ul li a{
    color: #222;
    }
header .header .menu ul li.selected a{
    border-bottom: 1.3px solid #fff;
    }
header.light-bg .header .menu ul li.selected a{
    border-bottom: 1.48px solid #222;
    }
/*----- MIN NAV -----*/
header .min-nav {
    position: fixed;
    display: block;
    top: 0px;
    right: 0px;
    height: 66px;
    width: 66px;
    padding: 16px 18px;
    transition: all ease 300ms;
    z-index: 10;
    /*background-color: rgba(0, 255, 255, 0.5);*/
    }
header .min-nav .min-nav-btn{
    position: relative;
    display: block;
    width: 32px;
    height: 32px;
    cursor: pointer;
    /*background-color: rgba(255, 0, 0, 0.8);*/
    }
header .min-nav .min-nav-btn i{
    position: absolute;
    display: block;
    top: 4px;
    height: 2px;
    width: 32px;
    background-color:rgba(253, 250, 249, 1);
    transition: all ease-in-out 300ms;
    }
header.light-bg .min-nav .min-nav-btn i{
    background-color:rgba(33, 31, 32, 1);
    }
header .min-nav .min-nav-btn i:nth-child(2){
    top: 12px;
    }
header .min-nav .min-nav-btn i:nth-child(3){
    top: 20px;
    }
header .min-nav .min-nav-btn.on i {
    transform: rotate(45deg);
    top: 11px;
    right: -4px;
    background-color:rgba(253, 250, 249, 1);
    }
header .min-nav .min-nav-btn.on i:nth-child(2) {
    opacity: 0;
    }
header .min-nav .min-nav-btn.on i:nth-child(3) {
    transform: rotate(-45deg);
    }
/*----- /MIN NAV -----*/
/*----- DROP DOWN NAV -----*/
.drop-down-nav {
    position: fixed;
    display: block;
    opacity: 0;
    top: -120%;
    background-color: #6c778b;
    height: 100vh;
    width: 100%;
    transition: all ease-in-out 300ms;
    padding: 144px 0px 0px 63px;
    z-index: 7;
    overflow: auto;
    }
.drop-down-nav.on {
    opacity: 1;
    top: 0%;
    }
.drop-down-nav ul {
    padding: 0px;
    }
.drop-down-nav ul li {
    padding-bottom: 4px;
    margin-bottom: 20px;
    margin-top: -24px;
    opacity: 0;
    }
@keyframes DDMbtnOn{
    0%{
       opacity: 0;
         margin-top: -24px;
    }
    100%{
        opacity: 1;
         margin-top: 0px;
    }
}
@keyframes DDMbtnOff{
    0%{
       opacity: 1;
        margin-top: 0px;
    }
    100%{
        opacity: 0;
        margin-top: -24px;
    }
}
.drop-down-nav ul li.on {
    animation: DDMbtnOn 300ms forwards 1;
    }
.drop-down-nav ul li.off {
    animation: DDMbtnOff 300ms forwards 1;
    }
.drop-down-nav ul li a {
    display: inline-block;
    border-bottom: 0px solid rgb(255, 255, 255);
    font-size: 21px;
    line-height: 1.1em;
    letter-spacing: 0.05em;
    color: rgb(207, 216, 232);
    text-transform: uppercase;
    }
.drop-down-nav ul li.selected a {
    font-size: 24px;
    color: rgb(255, 255, 255);
    border-bottom: 2px solid rgba(253, 250, 249, 1);
    }
.drop-down-nav ul li.selected::after a {
    
    }
/*----- DROP DOWN NAV -----*/

@media only screen and (min-width:768px){
header .header {
    padding: 12px 36px 0px 36px;
    }
header .min-nav {
    width: 104px;
    padding-left: 36px;
    padding-right: 36px
    }
header .min-nav .min-nav-btn{
    width: 32px;
    height: 32px;
    /*background-color: rgba(255, 0, 0, 0.8);*/
    }
.drop-down-nav {
    padding-left: 81px;
    padding-right: 36px;
    }
    
}
@media only screen and (min-width:992px){
header.header-shrink{
    height: 84px;
    }
header .header {
    padding: 12px 55px 0px 55px;
    }
header .header .menu {
    display: block;
    }
header .header .logo {
    width: 200px;
    height: 59px;
    }
header.header-shrink .header .logo{
   width: 200px;
    height: 59px;
    }
.drop-down-nav {
    display: none;
    }
header .min-nav {
    display: none !important;
    }
}
@media only screen and (min-width:1200px){
header .header {
    padding: 12px 73px 0px 73px;
    }
header .header .menu ul li {
        padding: 0px 12px;
    }
}
