/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*---------------------------GENERAL-CLASSES----------------------------------*/
/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/

*{
    margin: 0 !important;
    padding: 0 !important;
    
    font-family: "Arial","Tahoma";
}

/*-----------------------------------------------------------------------------*/
/*---------------------------------FONT----------------------------------------*/
/*-----------------------------------------------------------------------------*/

@font-face{
    font-family: "Gothic-regular"; 
   src:  url("../fonts/gothic/GOTHIC.TTF");
}
@font-face{
    font-family: "Gothic-bold";
    src:  url("../fonts/gothic/GOTHICB.TTF");
}
@font-face{
    font-family: "Raleway-regular";
    src:  url("../fonts/Raleway/Raleway-Regular.ttf");
}
@font-face{
    font-family: "Raleway-bold";
    src:  url("../fonts/Raleway/Raleway-Bold.ttf");
}

@font-face{
    font-family: "Raleway-italic";
    src:  url("../fonts/Raleway/Raleway-Italic.ttf");
}

/*sismores*/

/*@font-face{
    font-family: "Arial";
    src:  url("../fonts/1_Arial.ttf");
}

@font-face{
    font-family: "Tahoma";
    src:  url("../fonts/190_Tahoma.ttf");
}

@font-face{
    font-family: "Tahoma2";
    src:  url("../fonts/200_Tahoma.ttf");
}*/

*{
    box-sizing: border-box;
}

.font-size{    
    font-size: 320%;
}

/*-----------------------------------------------------------------------------*/
/*------------------------------MENU CONTAINER--------------------------------*/
/*-----------------------------------------------------------------------------*/

header{
    border: none;    
}

/*--------------------------------POSITION------------------------------------*/

.relative{
    position: relative;
    float: left;
    height: auto;
}

.absolute{
    position: absolute;
}

.flex-center{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-align-vleft {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: flex-start;
}

.flex-align-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
}


/*-------------------------------ANIMATION------------------------------------*/

.transition{
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition:all 0.5s ease 0s;
    -o-transition:all 0.5s ease 0s;
    -ms-transition:all 0.5s ease 0s;
}


/*----------------------------------------------------------------------------*/
/*---------------------------------SHADOWS------------------------------------*/


/*------------------------------SHADOW CENTER----------------------------------*/

.shadow-center{
    -webkit-box-shadow: 0px 0px 11px -4px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 11px -4px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 11px -4px rgba(0,0,0,0.75);
}


.shadow-center1{
    -webkit-box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.75);
}

.shadow-center2{
    -webkit-box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.75);
}

.shadow-center3{
    -webkit-box-shadow: 0px 0px 5px 3px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 5px 3px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 5px 3px rgba(0,0,0,0.75);
}



/*------------------------------SHADOW UP-------------------------------------*/

.shadow-up{
    -webkit-box-shadow: 0px -2px 7px -2px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px -2px 7px -2px rgba(0,0,0,0.75);
    box-shadow: 0px -2px 7px -2px rgba(0,0,0,0.75);
}

/*------------------------------SHADOW DOWN-----------------------------------*/

.shadow-down{
    -webkit-box-shadow: 0px 2px 7px -2px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 2px 7px -2px rgba(0,0,0,0.75);
    box-shadow: 0px 2px 7px -2px rgba(0,0,0,0.75);
}




/*-------------------------------MAIN COLORS------------------------------------*/

:root {
  --color-orange: #F7931E;
}




/*-----------------------------------------------------------------------------*/
/*-------------------------------MAIN TITLE------------------------------------*/
/*-----------------------------------------------------------------------------*/



 .main-title{
    position: fixed;
    left: -3%;
    background-color: #0563af;
    z-index: 2000;
    transform: skewX(-35deg);
    overflow: hidden;
    -webkit-border-radius: 0px 0px 10px 0px;
    -moz-border-radius: 0px 0px 10px 0px;
    border-radius: 0px 0px 10px 0px;
}

.main-title span{
    height: 100%;
    width: 100%;
    padding: 1%0 !important;
    color: white;
    background-color: #0563af;
    font-size: 240% !important;
    font-weight: 600;
    text-align: center;  
    transform: skewX(35deg);
}



.main-subtitle{
    position: fixed;
    left: 2.5%;
    z-index: 1000;
    background-color: gainsboro;
    transform: skew(35deg);    
    border-radius: 0% 0% 0% 1%;
}

.main-subtitle span{
    float: right;
    width: 69%;
    padding: 1% 0 !important;
    font-size: 200% !important;
    font-family: "Arial","Tahoma";
    color: gray;
    text-align: center;
    transform: skew(-35deg);
}

.main-title, .main-subtitle{
    top: 360px;
}


/*-----------------------------------------------------------------------------*/
/*--------------------------------NAVBAR---------------------------------------*/
/*-----------------------------------------------------------------------------*/

#navbar{
    
    width: inherit !important;
    position: fixed;
    z-index: 100;/*10000*/
    border: none;
    background-color: #242932;
    color:white;
    display: flex;
    align-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    border-bottom: 2px solid rgb(25,30,39);
}

.header-back{
    width: 100%;
}

#navbar, .header-back{    
    height: 360px !important;
    
}

#nav-logo{
    height: inherit;
    /*border: 1px solid red;*/
    
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: row;
}

#img-logo{
    height: 65%;
    width: auto;
}

#nav-title{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
    /*border: 1px yellow solid;*/
    height: inherit;
    
    font-family: "Tahoma","Arial" !important;
/*line break...*/
}

#nav-title h3{
    text-shadow: 2px 2px 20px #00a3de;
}

#nav-title h6{
    text-shadow: 2px 2px 20px #00a3de;
}

#nav-icons{
    height: inherit;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    /*border: 1px solid green;*/
}

#nav-icons img{
    margin-right: 3.5% !important;
    margin-left: 3.5% !important;
    cursor: pointer;
    height: 15px;
    width: 15px;
    /*border: 1px dashed palevioletred;*/
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#nav-icons img:hover{
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -o-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);
}


#portada{
    background:  url("../../img/96.png");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    /*background-color: transparent;*/
    padding-top: 1.5% !important;
    padding-bottom: 2.5% !important;
    padding-left: 2.5% !important;
    padding-right: 2.5% !important;

    display: flex;
    align-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;

    z-index:2;
    /*border: 9px darkolivegreen double;*/
}

#div-video{
    margin:2.5%!important;
    margin-top:0%!important;
    /*border: 1px orangered solid;*/
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
}

#video{
    /*width: 50%;*/
    box-shadow: -20px 10px 7px rgb(0 0 0 / 50%);
}

#menu-lateral{
    margin:2.5%!important;
    margin-top:0%!important;
    /*border: 1px salmon solid;*/
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: column;
}

#menu-lateral div img{
    height: auto;
    width: 100%;
    cursor: pointer;
    /*border: 1px red solid;*/
}

#menu-lateral div img:hover{
    background: linear-gradient(90deg, rgba(255,255,255,0) 1%, rgba(120,133,154,0.9) 20%, rgba(101,116,139,1) 35%,
     rgba(92,109,128,1) 50%, rgba(101,116,139,1) 65%, rgba(120,133,154,0.9) 80%, rgba(255,255,255,0) 99%); 
     /*background: #5c6d87;*/
    /*color: #65748b*/
    /*rgb(101,116,139), rgb(255,255,255)*/
    transform: translateX(1vh);
}

.color-difuminado{
    background: linear-gradient(90deg, rgba(255,255,255,0) 1%, rgba(120,133,154,0.9) 20%, rgba(101,116,139,1) 35%,
     rgba(92,109,128,1) 50%, rgba(101,116,139,1) 65%, rgba(120,133,154,0.9) 80%, rgba(255,255,255,0) 99%); 
    transform: translateX(1vh);
}

/*#menu-lateral div img:hover{
    transform: translateX(20px);
}*/

#menu-lateral div{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
    /*border: 1px double yellowgreen;*/
    border-bottom: 1px solid rgb(37,43,54);
    border-top: 1px solid rgb(78,83,96)
}

#footer{
    border-top-width: 2px;
    border-top-color: rgb(42,48,59);
    border-top-style: solid;
    /*border: 3px deeppink dotted;*/
    display: flex;
    align-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    padding: 2.5% 0.5% !important;
    /*width: inherit;*/
}

#footer div{
    /*border: 1px solid seagreen;*/
    display: flex;
    align-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    padding-left: 1.5%!important;
}

#footer div p{
    text-align: left;
    color: rgb(169,190,200);
    font-size: 85%;/*90-95% para el texto de lo dinámico*/
}

#footer div p a{
    text-decoration: none;
    color: rgb(169,190,200);
    overflow-wrap: anywhere;
    z-index: 2;
}

#footer div p a:hover{
    text-decoration: underline;
}

#cuerpo{
    /*border: 1px chartreuse solid;*/
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: center;
    /*z-index:-1;*/
}

/*#cuerpo div{
    margin:1.5%!important;
}*/

#cuerpo-titulos{
    padding: 0.5% 1.5%!important;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: flex-start;
    background:  url("../../img/11.png");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.titulo-cuerpo{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;

    /*border: 1px gold solid;*/
}

.titulo-cuerpo img{
    width: 85%;
    height: auto;
}

.titulo-cuerpo h5{
    font-weight: normal;
    font-size: 100%;
    color: rgb(176,231,255)
}

#cuerpo-textos{
    padding: 1.5%!important;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: flex-start;
}

.contenido-cuerpo{
    padding-right: 1.5%!important;
    text-align: left;
    color: rgb(216,220,226);
    font-size: 80%;
    /*border: 1px deepskyblue dashed;*/
}

/*.contenido-cuerpo div p{
    font-size: 100%;
}

.contenido-cuerpo div ol{
    font-size: 100%;
}*/

.contenido-cuerpo-ul{
    /*font-size: 100%;*/
    padding-left: 2%!important;
}

.contenido-cuerpo-ol{
    /*font-size: 100%;*/
    padding-left: 2%!important;
}

.contenido-cuerpo-form{
    /*font-size: 100%;*/
    font-weight: 500;
}

#wrapper{
    height: 100%;
    /*border:1px darkred solid;*/
    overflow-x: hidden;
    overflow-y: hidden;
}

.form-control{
    padding: 0.375rem 0.75rem !important;
}

.mb-3 input::placeholder{
    color: rgb(216,220,226);
}

input{
    --bs-bg-opacity: .35 !important;
}

.mb-3 textarea::placeholder{
    color: rgb(216,220,226);
}

textarea{
    --bs-bg-opacity: .35 !important;
}

button{
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x) !important;
}

.contenido-cuerpo-form{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.div-form-2{
    padding-right:2% !important;
}

/*Galería*/

#imagenActiva{
    border: 2px white solid;
    border-radius: 3px;
    height: 20vh;
    display: flex;
    flex-direction: row;
    align-content: center;
    flex-wrap: wrap;
    /*border: 1px solid greenyellow;*/
    justify-content: center;
    align-items: center;
    /*img change*/
    background:  url("../../img/thumb/SIS2.png");
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    /*otros detalles*/
    margin-right: 1.5%!important;
    cursor: pointer;
}

/*#imagenActiva img{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    border: 2px white solid;
    border-radius: 3px;
}*/

#slideshow{
    /*border: 2px solid white;
    border-radius: 3px;*/
    height: 20vh;
    display: flex;
    /*background-color: rgb(33,33,33);*/
}

#galeria{
    display: flex;
}

#flecha-izq{
    /*border-right: 2px solid white;*/
    /*background-color: rgb(33,33,33);*/
    height: 20vh;
    padding-right: 2%!important;
}

#flecha-der{
    /*border-left: 2px solid white;*/
    /*background-color: rgb(33,33,33);*/
    height: 20vh;
    padding-left: 2%!important;
}

#flecha-izq,
#flecha-der{
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    
}

#flecha-izq img, 
#flecha-der img{
    height: auto;
    width: 100%;
    cursor: pointer;
}

/*#fi{
    border-right: 1px solid white;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    border-left: 1px solid white;
    border-radius: 3px;
}

#fd{
    border-right: 1px solid white;
    border-left: 1px solid white;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    border-radius: 3px;
}*/

#thumbnails{
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.thumb{
    padding: 3%!important;
}

.thumb-img{
    border: 2px solid white;
    border-radius: 3px;
    transition: box-shadow 0.6s linear;
    
    cursor: pointer;
}

.thumb-img:hover{
    /*box-shadow: 0px 0px 3px 5px #5162fc*/
    /*box-shadow: 0px 0px 3px 10px rgba(38,78,114,0.65);*/
    box-shadow: 0px 0px 3px 5px rgba(182,203,250,0.95)
}

/*Modal - W3s https://www.w3schools.com/howto/howto_css_modal_images.asp*/
.modal { /*Bloque negro encima de todo*/
    display: none; 
    position: fixed;
    z-index: 10001;
    padding-top: 100px !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
}

.modal-content { /*imagen mostrada en el modal*/
    margin: auto !important;
    display: block;
    width: 80%;
    max-width: 700px;
}

#captionModal{
    margin: auto !important;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0 !important;
    height: 150px;
}

.modal-content, #captionModal {
    animation-name: zoom;
    animation-duration: 0.6s;
  }
  
@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

.closeModal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}
  
.closeModal:hover,
.closeModal:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}

#ul-galeria li{
    cursor: pointer;
}

#ul-galeria li:hover{
    text-decoration: underline;
}

#mensaje-exito{
    text-align:center;
    border-radius:3px;
    height:10vh;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#captcha-section{
    display: none;
    /*display: flex;*/
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin-bottom: 2.5%!important;
}
/*.hover {
    border: 8px solid;
    border-image: repeating-linear-gradient(135deg,#F8CA00 0 10px,#E97F02 0 20px,#BD1550 0 30px) 8;
    -webkit-mask: 
      conic-gradient(from 180deg at top 8px right 8px, #0000 90deg,#000 0)
       var(--_i,200%) 0  /200% var(--_i,8px) border-box no-repeat,
      conic-gradient(at bottom 8px left  8px,  #0000 90deg,#000 0)
       0   var(--_i,200%)/var(--_i,8px) 200% border-box no-repeat,
      linear-gradient(#000 0 0) padding-box no-repeat;
    transition: .3s, -webkit-mask-position .3s .3s;
}
.hover:hover {
    --_i: 100%;
    color: #CC333F;
    transition: .3s, -webkit-mask-size .3s .3s;
}*/

/*.barras{
    border: 1px darkturquoise solid;
}*/
/*-------------------------------------------------------------------------------*/
/*--------------------------------NAVBAR-TOGGLE-----------------------------------*/
/*-------------------------------------------------------------------------------*/


#navbar-toggle-btn, #navbar-toggle-btn + label{    
    display: none;
}

#modal-backdrop-menu{
    z-index: 100 !important;
}


/*-------------------------------------------------------------------------------*/
/*--------------------------------NAVBAR-HEADER-----------------------------------*/
/*-------------------------------------------------------------------------------*/


#navbar-header{
    z-index: 10010 !important;
    top: 0%;
    height: 100%;
    /*background-color: white !important;    */
    text-align: center; 
    background-color: #242932;

}


#nh-logo{        
    height: inherit;     
    /*background-color: white;*/    
    z-index: 10010;
    margin-left: 1.5vh !important;
    margin-right: 1vh !important;
}

#nh-logo img{
    /*float: right;*/
    /*width: auto;
    height: 90%;*/
    /*width: 100%;
    height: auto;
    z-index: 1;
    font-family: "Arial","Tahoma" !important;*/
    width: auto;
    height: 90%;
}

#nh-title{
    height: inherit;
    display: flex;
    align-items: center;
    align-content: center;
    align-self: center;
    /* height: calc(10vh); */
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
}

#nh-title h1{
    width: 100%;
    height: auto;
    font-size: 175%;
    font-family: "Arial","Tahoma" !important;
    text-shadow: 2px 2px 20px #00a3de;
    color:white
}

#nh-title h5{
    /*width: 100%;*/
    height: auto;
    font-size: 125%;
    font-family: "Arial","Tahoma" !important;
    text-shadow: 2px 2px 20px #00a3de;
    color:white
}

#nh-title h6{
    /*width: 100%;*/
    height: auto;
    margin-top: 0.5em !important;       
    font-style: italic;
    font-size: 90%;
    font-family: "Arial","Tahoma" !important;
}

#nh-icons{
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-direction: row;
    flex-wrap: wrap;
    height: 100%;
    align-content: center;
}



/*-------------------------------------------------------------------------------*/
/*--------------------------------NAVBAR-ITEMS-----------------------------------*/
/*-------------------------------------------------------------------------------*/

#navbar-items{
    
    font-family: "Arial","Tahoma" !important;
    position: absolute !important;
    z-index: 10000;
    height: 25%;    
    bottom: 0% !important;
    left: 0%;
    border-bottom: 0.6em solid var(--color-orange);
    padding-bottom: 0.3em !important;
    padding-right: 5% !important;
    margin-left: 25% !important;
    text-align: center;
    font-size: 85% !important;
}

#navbar-items .nav-li-checkbox{
    display: none;
}

#navbar-items .nav-li{
    position: relative;
    float: left;
    height: auto;
    overflow: hidden;    
    font-family: "Arial","Tahoma";
}

#li-0{
    width: 7.5vw; 
}
#li-1{
    width: 11vw; 
}
#li-2{
    width: 10vw; 
}
#li-3{
    width: 10vw; 
}
#li-4{
    /*width: 8vw;*/
    width: 10vw; 
}
#li-5{
    /*width: 16.5vw; */
    width: 12vw;
}
#li-6{
    width: 12vw; 
}

.li-active > a{
    font-size: 100%;
    font-family: "Arial","Tahoma";
}

#navbar-items .nav-li .nav-li-a{
    height: 100%;
    width: 100%;    
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    /*línea debajo*/
    /*--border-color: rgb(0, 0, 0);
    --border-width: 2.5px;
    --bottom-distance: 0%;
    background-image: linear-gradient(var(--border-color), var(--border-color));
    background-size: 0% var(--border-width);
    background-repeat: no-repeat;
    transition: background-size 0.5s;
    background-position: 50% calc(100% - var(--bottom-distance));*/
}

#navbar-items .nav-li .nav-li-a:hover{
    /*línea debajo*/
    /*background-size: 100% var(--border-width);*/
}

#navbar-items .nav-li .nav-li-subitem{
    position: relative;
    float: left;
    width: 100%;
    height: 0px;    
    left: 0%;  
    overflow: hidden;  
    /*línea debajo*/
    display: inline;
    --border-color: rgb(0, 0, 0);
    --border-width: 1px;
    --bottom-distance: 0%;
    background-image: linear-gradient(var(--border-color), var(--border-color));
    background-size: 0% var(--border-width);
    background-repeat: no-repeat;
    transition: background-size 0.5s;
    background-position: 50% calc(100% - var(--bottom-distance));
}

#navbar-items .nav-li .nav-li-subitem:hover{
    /*línea debajo*/
    background-size: 100% var(--border-width);
}

#navbar-items .nav-li .nav-li-subitem a{
    width: 100%;
    height: auto;
    text-align: center; 
    font-family: "Arial","Tahoma";   
}

#navbar-header,
#navbar-items,
#navbar-items .nav-li a,
#navbar-items .nav-li .nav-li-subitem{      
    /*background-color: white;     */
    background-color: #242932;
    color: white !important;
}

#navbar-items .nav-li .nav-li-subitem:hover{   
    background-color: white !important;    
}

#navbar-items .nav-li .nav-li-subitem:hover a{
    transform: scale(1.05);  
}

.nav-li-expanded{
    height: auto !important;
    opacity: 90%;   
}

.nav-li-expanded .nav-li-a{
    padding-bottom: 1.4vw !important;  
    background-color: transparent !important;    
}

.nav-li-expanded .nav-li-subitem{
    height: auto !important;
    padding: 0.75em 0.5vw !important;
}


.nav-li-expanded .nav-li-subitem{
    background-color: white !important;   
}

@media screen and (max-width: 3801px){
    .font-size{
        font-size: 231%;
    }
    
   .header-back, #navbar{
        height: 354px !important;
    }
    
    .main-title, .main-subtitle{
        top: 354px;
    }

}


@media screen and (max-width: 3751px){
    .font-size{
        font-size: 228%;
    }
    
   .header-back, #navbar{
        height: 349px !important;
    }

    .main-title, .main-subtitle{
        top: 349px;
    }

}

@media screen and (max-width: 3701px){
    .font-size{
        font-size: 228%;
    }
    
   .header-back, #navbar{
        height: 345px !important;
    }

    .main-title, .main-subtitle{
        top: 345px;
    }

}
@media screen and (max-width: 3651px){
    .font-size{
        font-size: 222%;
    }
    
   .header-back, #navbar{
        height: 340px !important;
    }

    .main-title, .main-subtitle{
        top: 340px;
    }

}
@media screen and (max-width: 3601px){
    .font-size{
        font-size: 219%;
    }
    
   .header-back, #navbar{
        height: 335px !important;
    }

    .main-title, .main-subtitle{
        top: 335px;
    }

}
@media screen and (max-width: 3551px){
    .font-size{
        font-size: 216%;
    }
    
   .header-back, #navbar{
        height: 331px !important;
    }

    .main-title, .main-subtitle{
        top: 331px;
    }

}
@media screen and (max-width: 3501px){
    .font-size{
        font-size: 213%;
    }
    
   .header-back, #navbar{
        height: 326px !important;
    }

    .main-title, .main-subtitle{
        top: 326px;
    }

}
@media screen and (max-width: 3451px){
    .font-size{
        font-size: 210%;
    }
    
   .header-back, #navbar{
        height: 321px !important;
    }

    .main-title, .main-subtitle{
        top: 321px;
    }

}
@media screen and (max-width: 3401px){
    .font-size{
        font-size: 207%;
    }
    
   .header-back, #navbar{
        height: 317px !important;
    }

    .main-title, .main-subtitle{
        top: 317px;
    }

}
@media screen and (max-width: 3351px){
    .font-size{
        font-size: 203%;
    }
    
   .header-back, #navbar{
        height: 312px !important;
    }

    .main-title, .main-subtitle{
        top: 312px;
    }

}
@media screen and (max-width: 3301px){
    .font-size{
        font-size: 200%;
    }
    
   .header-back, #navbar{
        height: 307px !important;
    }

    .main-title, .main-subtitle{
        top: 307px;
    }

}
@media screen and (max-width: 3251px){
    .font-size{
        font-size: 197%;
    }
    
   .header-back, #navbar{
        height: 303px !important;
    }

    .main-title, .main-subtitle{
        top: 303px;
    }

}
@media screen and (max-width: 3201px){
    .font-size{
        font-size: 194%;
    }
    
   .header-back, #navbar{
        height: 298px !important;
    }

    .main-title, .main-subtitle{
        top: 298px;
    }

}
@media screen and (max-width: 3151px){
    .font-size{
        font-size: 191%;
    }
    
   .header-back, #navbar{
        height: 293px !important;
    }

    .main-title, .main-subtitle{
        top: 293px;
    }

}
@media screen and (max-width: 3101px){
    .font-size{
        font-size: 188%;
    }
    
   .header-back, #navbar{
        height: 289px !important;
    }

    .main-title, .main-subtitle{
        top: 289px;
    }

}
@media screen and (max-width: 3051px){
    .font-size{
        font-size: 185%;
    }
    
   .header-back, #navbar{
        height: 284px !important;
    }

    .main-title, .main-subtitle{
        top: 284px;
    }

}
@media screen and (max-width: 3001px){
    .font-size{
        font-size: 182%;
    }
    
   .header-back, #navbar{
        height: 279px !important;
    }

    .main-title, .main-subtitle{
        top: 279px;
    }
}

@media screen and (max-width: 2951px){
    .font-size{
        font-size: 177%;
    }

   .header-back, #navbar{
        height: 275px !important;
    }

    .main-title, .main-subtitle{
        top: 275px;
    }
}

@media screen and (max-width: 2901px){
    .font-size{
        font-size: 176%;
    }
    
   .header-back, #navbar{
        height: 270px !important;
    }

    .main-title, .main-subtitle{
        top: 270px;
    }

}

@media screen and (max-width: 2851px){

    .font-size{
        font-size: 173%;
    }

   .header-back, #navbar{
        height: 265px !important;
    }
    
    .main-title, .main-subtitle{
        top: 265px;
    }

}

@media screen and (max-width: 2801px){
    .font-size{
        font-size: 170%;
    }

    .header-back, #navbar{
        height: 261px !important;
    }
    
    .main-title, .main-subtitle{
        top: 261px;
    }

}

@media screen and (max-width: 2751px){
    .font-size{
        font-size: 167%;
    }
       
   .header-back, #navbar{
        height: 256px !important;
    }

    .main-title, .main-subtitle{
        top: 256px;
    }

}

@media screen and (max-width: 2701px){
    .font-size{
        font-size: 164%;
    }

   .header-back, #navbar{
        height: 251px !important;
    }
    
    .main-title, .main-subtitle{
        top: 251px;
    }

}

@media screen and (max-width: 2651px){
    .font-size{
        font-size: 161%;
    }

   .header-back, #navbar{
        height: 247px !important;
    }
    
    .main-title, .main-subtitle{
        top: 247px;
    }

}

@media screen and (max-width: 2601px){
    .font-size{
        font-size: 158%;
    }

   .header-back, #navbar{
        height: 242px !important;
    }
    
    .main-title, .main-subtitle{
        top: 242px;
    }

}

@media screen and (max-width: 2551px){
    .font-size{
        font-size: 155%;
    }

   .header-back, #navbar{
        height: 237px !important;
    }
    
    .main-title, .main-subtitle{
        top: 237px;
    }

}

@media screen and (max-width: 2501px){
    .font-size{
        font-size: 152%;
    }

   .header-back, #navbar{
        height: 233px !important;
    }
    
    .main-title, .main-subtitle{
        top: 233px;
    }

}

@media screen and (max-width: 2451px){
    .font-size{
        font-size: 149%;
    }
   
   .header-back, #navbar{
        height: 228px !important;
    }
    
    .main-title, .main-subtitle{
        top: 228px;
    }


}

@media screen and (max-width: 2401px){
    .font-size{
        font-size: 146%;
    }
    
    .header-back, #navbar{
        height: 223px !important;
    }
    
    .main-title, .main-subtitle{
        top: 223px;
    }

}

@media screen and (max-width: 2351px){
    .font-size{
        font-size: 143%;
    }
   
   .header-back, #navbar{
        height: 219px !important;
    }
    .main-title, .main-subtitle{
        top: 219;
    }

}

@media screen and (max-width: 2301px){
    .font-size{
        font-size: 140%;
    }

   .header-back, #navbar{
        height: 214px !important;
    }
    .main-title, .main-subtitle{
        top: 214px;
    }

}

@media screen and (max-width: 2251px){
    .font-size{
        font-size: 137%;
    }
    
   .header-back, #navbar{
        height: 209px !important;
    }
    .main-title, .main-subtitle{
        top: 209px;
    }

}

@media screen and (max-width: 2201px){
    .font-size{
        font-size: 133%;
    }
    
   .header-back, #navbar{
        height: 205px !important;
    }
    
    .main-title, .main-subtitle{
        top: 205px;
    }

    
}

@media screen and (max-width: 2151px){
    .font-size{
        font-size: 130%;
    }
    
   .header-back, #navbar{
        height: 200px !important;
    }
    
    .main-title, .main-subtitle{
        top: 200px;
    }

}

@media screen and (max-width: 2101px){
    .font-size{
        font-size: 127%;
    }
    
   .header-back, #navbar{
        height: 195px !important;
    }
    
    .main-title, .main-subtitle{
        top: 195px;
    }

}

@media screen and (max-width: 2051px){
    .font-size{
        font-size: 124%;
    }
    
    .header-back, #navbar{
        height: 191px !important;
    }
    
    .main-title, .main-subtitle{
        top: 191px;
    }

    
}

@media screen and (max-width: 2001px){
     .font-size{
        font-size: 121%;
    }
    
   .header-back, #navbar{
        height: 186px !important;
    }
    
    .main-title, .main-subtitle{
        top: 186px;
    }

}

@media screen and (max-width: 1951px){
    .font-size{
        font-size: 118%;
    }
    
   .header-back, #navbar{
        height: 181px !important;
    }
    
    .main-title, .main-subtitle{
        top: 181px;
    }

}

@media screen and (max-width: 1901px){
    .font-size{
        font-size: 115%;
    }
   
   .header-back, #navbar{
        height: 177px !important;
    }
    
    .main-title, .main-subtitle{
        top: 177px;
    }

}

@media screen and (max-width: 1851px){
    .font-size{
        font-size: 112%;
    }

   .header-back, #navbar{
        height: 172px !important;
    }
    
    .main-title, .main-subtitle{
        top: 172px;
    }
}

@media screen and (max-width: 1801px){
    .font-size{
        font-size: 109%;
    }
    
   .header-back, #navbar{
        height: 167px !important;
    }
    
    .main-title, .main-subtitle{
        top: 167px;
    }
}

@media screen and (max-width: 1751px){
    .font-size{
        font-size: 106%;
    }
    
   .header-back, #navbar{
        height: 163px !important;
    }
    
    .main-title, .main-subtitle{
        top: 163px;
    }
}

@media screen and (max-width: 1701px){
    .font-size{
        font-size: 103%;
    }
    
    .header-back, #navbar{
        height: 158px !important;
    }
    
    .main-title, .main-subtitle{
        top: 158px;
    }
}

@media screen and (max-width: 1651px){
    .font-size{
        font-size:100%;
    }

   .header-back, #navbar{
        height: 153px !important;
    }
    
    .main-title, .main-subtitle{
        top: 153px;
    }
    
    #navbar-header-box  > div{
        font-size: 105%;
    }
}

@media screen and (max-width: 1601px){
    .font-size{
        font-size: 98%;
    }
    
   .header-back, #navbar{
        height: 149px !important;
    }
    
    .main-title, .main-subtitle{
        top: 149px;
    }
}

@media screen and (max-width: 1551px){
    .font-size{
        font-size: 96%;
    }
    
    .header-back, #navbar{
        height: 144px !important;
    }
    
    .main-title, .main-subtitle{
        top: 144px;
    }

}

@media screen and (max-width: 1501px){
    .font-size{
        font-size: 94%;
    }

   .header-back, #navbar{
        height: 139px !important;
    }
    
    .main-title, .main-subtitle{
        top: 139px;
    }
    
    #navbar-header-box  > div{
        font-size: 100%;
    }

}

@media screen and (max-width: 1476px){
    .font-size{
        font-size: 93%;
    }

   .header-back, #navbar{
        height: 137px !important;
    }
    
    .main-title, .main-subtitle{
        top: 137px;
    }
}

@media screen and (max-width: 1441px){
    .font-size{
        font-size: 92%;
    }
    
   .header-back, #navbar{
        height: 135px !important;
    }
    
    .main-title, .main-subtitle{
        top: 135px;
    }
    
    #navbar-items .nav-li{
        font-size: 90%;
    }

}

@media screen and (max-width: 1401px){
    .font-size{
        font-size: 90%;
    }

   .header-back, #navbar{
        height: 130px !important;
    }
    
    .main-title, .main-subtitle{
        top: 130px;
    }
}

@media screen and (max-width: 1341px){
    .font-size{
        font-size: 88%;
    }

   .header-back, #navbar{
        height: 125px !important;
    }
    
    .main-title, .main-subtitle{
        top: 125px;
    }
}

@media screen and (max-width: 1301px){
    .font-size{
        font-size: 86%;
    }

   .header-back, #navbar{
        height: 121px !important;
    }
    
    .main-title, .main-subtitle{
        top: 121px;
    }
}

@media screen and (max-width: 1276px){
    #navbar-items{
        font-size: 85% !important;
    }

   .header-back, #navbar{
        height: 118px !important;
    }
    
    .main-title, .main-subtitle{
        top: 118px;
    }

}

@media screen and (max-width: 1251px){
    .font-size{
        font-size: 84%;
    }

   .header-back, #navbar{
        height: 116px !important;
    }
    
    .main-title, .main-subtitle{
        top: 116px;
    }
}

@media screen and (max-width: 1226px){
    .font-size{
        font-size: 83%;
    }

   .header-back, #navbar{
        height: 114px !important;
    }
    
    .main-title, .main-subtitle{
        top: 114px;
    }
}

@media screen and (max-width: 1201px){
    .font-size{
        font-size: 82%;
    }

   .header-back, #navbar{
        height: 111px !important;
    }
    
    .main-title, .main-subtitle{
        top: 111px;
    }
    
    #navbar-items .nav-li{
        font-size: 85%;
    }
}

@media screen and (max-width: 1171px){
    .font-size{
        font-size: 81%;
    }
    
   .header-back, #navbar{
        height: 109px !important;
    }
    
    .main-title, .main-subtitle{
        top: 109px;
    }

}

@media screen and (max-width: 1151px){
    .font-size{
        font-size: 80%;
    }
      
    #navbar-items{
        font-size: 80% !important;
    }
     
   .header-back, #navbar{
        height: 107px !important;
    }
    
    .main-title, .main-subtitle{
        top: 107px;
    }


}

@media screen and (max-width: 1101px){
    .font-size{
        font-size: 79%;
    }
    
    #navbar-items{
        font-size: 75% !important;
    }

    .header-back, #navbar{
        height: 102px !important;
    }
    
    .main-title, .main-subtitle{
        top: 102px;
    }
}

@media screen and (max-width: 1024px){
    .font-size{
        font-size: 78%;
    }
     
    .header-back, #navbar{
        height: 97px !important;
    }
    
    .main-title, .main-subtitle{
        top: 97px;
    }
    

}





/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*---------------------------CSS MOBILE PORTRAIT------------------------------*/
/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/



@media screen and (max-width: 991px) and (orientation:portrait){
    
 

    .font-size{
        font-size: 230%;
    }
    
    #navbar, .header-back{
        height: 200px !important;
    }
    
    #navbar-toggle-btn + label{
        position: absolute;
        display: block;
        z-index: 100001;
        cursor: pointer;
        height: 3em;
        width:  9% !important;        
        top: 27%;
        right: 1.5%;
  /*      border: 1px solid #A4A3A3;*/
    }
    
    #navbar-toggle-btn + label:before{    
        position: absolute;
        top: 30%;
        left: 10%;
        width: 80%;
        height: 3px;
        background-color: transparent;
        content: '';
        display: inline-block;
        visibility: visible;
        border-bottom: 1px solid #A4A3A3;
        
    }
    
    #navbar-toggle-btn + label:after{    
        position: absolute;
        top: 50%;
        left: 10%;
        width: 80%;
        height: 20%;
        background-color: transparent;
        content: '';
        display: inline-block;
        visibility: visible;    
        border-top: 1px solid #A4A3A3;
        border-bottom: 1px solid #A4A3A3;
    }

     #navbar-toggle-btn:checked + label{
        background-color: #E1E0E0 !important;
        border: 2px solid white;
    }
    
    #navbar-toggle-btn:checked + label:before{
        border-top: 2px solid white;        
    } 
    
    #navbar-toggle-btn:checked + label:after{
        background-color: #E1E0E0 !important;
        border-top: 2px solid white;
        border-bottom: 2px solid white;
    }
        
/*-------------------------------------------------------------------------------*/
/*--------------------------------NAVBAR-HEADER-----------------------------------*/
/*-------------------------------------------------------------------------------*/
    
    #navbar-header{
        width: 100% !important;
        height: 100%;
        -webkit-box-shadow: 0px 10px 12px -9px rgba(226,226,226,1);
        -moz-box-shadow: 0px 10px 12px -9px rgba(226,226,226,1);
        box-shadow: 0px 10px 12px -9px rgba(226,226,226,1);
        
    }
    
    #nh-logo{    
        width: 18%;
        height: 100% !important;   
        margin: 0 !important;   
        padding-left:  0vw !important;
    }
        
    #nh-logo img{
        float: left;
        height: 75% !important;  
        top: 0em;
    }
    
    #nh-title{
        width: 80%;
        height: 100%; 
        padding-left: 0em !important;
        z-index: 1;        
    }
    
    #nh-title h1{       
        margin-bottom: 1.5% !important;
        font-size: 75%;
        text-shadow: 2px 2px 20px #00a3de;
        color: white
    }    
    
    #nh-title h5{       
        margin-bottom: 1.5% !important;
        font-size: 65%;
        text-shadow: 2px 2px 20px #00a3de;
        color: white
    }  

    #nh-title h6{       
        font-size: 55%;
        margin-top: 0.2em !important;
    }
            
    
/*-------------------------------------------------------------------------------*/
/*--------------------------------NAVBAR-ITEMS-----------------------------------*/
/*-------------------------------------------------------------------------------*/
    #navbar-items{
        padding: 0 !important;
        float: left;
        z-index: -1;         
        padding: 0 !important;
        margin: 0 !important;
    }
     
    #navbar-toggle-btn ~ #navbar-items{ 
        height: 0px !important;     
        overflow: hidden;
        font-size: 110% !important;  
    }
    
    #navbar-toggle-btn:checked ~ #navbar-items{ 
        height: 100vh !important; 
        overflow: scroll;
        bottom: auto !important;
        top: 100%;
    }
    
    #navbar-toggle-btn:checked ~ #navbar-items .nav-li{
        height: auto;
    }
    
    .nav-li-expanded,
    .nav-li-expanded a,
    .nav-li-expanded .nav-li-subitem,
    .nav-li-expanded .nav-li-subitem a{
        background-color: #E7E7E7 !important;
    }


    .nav-li-expanded .nav-li-a{
        background-color: lightgray !important;
        padding-bottom: 0.5em !important;
        transform: scale(1.15);
    }
    
    #navbar-items .nav-li{        
        border-bottom: 1px solid #ffffff;
        padding: 2% 0 !important;
        height: 0px;
        width: 100% !important;
    }
    
    #navbar-items .nav-li .nav-li-a{
        width: 60%;
        margin: 0 20% !important;
        border: none;
    }
           
    .main-title, .main-subtitle{
        top: 200px;
    }
    
    .section > div h1 {
        font-size: 245% !important;
    }

    .section > div h5 {
        font-size: 225% !important;
    }
      

}

@media screen and (max-width: 941px) and (orientation:portrait){
    .font-size{
        font-size: 218% !important;
    }
  
    #navbar, .header-back{
        height: 190px !important;
    }
    
    .main-title, .main-subtitle{
        top: 190px;
    }
}

@media screen and (max-width: 891px) and (orientation:portrait){
    .font-size{
        font-size: 206% !important;
    }
  
    #navbar, .header-back{
        height: 180px !important;
    }
    
    .main-title, .main-subtitle{
        top: 180px;
    }

}

@media screen and (max-width: 841px) and (orientation:portrait){
    .font-size{
        font-size: 195% !important;
    }
      
    #navbar, .header-back{
        height: 170px !important;
    } 
    
    .main-title, .main-subtitle{
        top: 170px;
    }
  
}

@media screen and (max-width: 801px) and (orientation:portrait){
     .font-size{
        font-size: 186% !important;
    }
  
    #navbar, .header-back{
        height: 162px !important;
    }
    
    .main-title, .main-subtitle{
        top: 162px;
    }    
}

@media screen and (max-width: 768px) and (orientation:portrait){
    .font-size{
        font-size: 178% !important;
    }
      
    #navbar, .header-back{
        height: 155px !important;
    }
    
    .main-title, .main-subtitle{
        top: 155px;
    }

}

@media screen and (max-width: 711px) and (orientation:portrait){
     .font-size{
        font-size: 165% !important;
    }
  
    #navbar, .header-back{
        height: 143px !important;
    }
    
    .main-title, .main-subtitle{
        top: 143px;
    }

}

@media screen and (max-width: 661px) and (orientation:portrait){
    .font-size{
        font-size: 153% !important;
    }
  
    #navbar, .header-back{
        height: 133px !important;
    }
    
    .main-title, .main-subtitle{
        top: 133px;
    }

}

@media screen and (max-width: 601px) and (orientation:portrait){
    .font-size{
        font-size: 139% !important;
    }
  
    #navbar, .header-back{
        height: 121px !important;
    }
    
    .main-title, .main-subtitle{
        top: 121px;
    }

}

@media screen and (max-width: 576px) and (orientation:portrait){
    .font-size{
        font-size: 134% !important;
    }  
    
    #navbar, .header-back{
        height: 116px !important;
    }
    
    .main-title, .main-subtitle{
        top: 116px;
    }
    
}

@media screen and (max-width: 536px) and (orientation:portrait){
    .font-size{
        font-size: 124% !important;
    }  
    
    #navbar, .header-back{
        height: 108px !important;
    }
    
    .main-title, .main-subtitle{
        top: 108px;
    }

}

@media screen and (max-width: 501px) and (orientation:portrait){
    .font-size{
        font-size: 116% !important;
    }
     
    #navbar, .header-back{
        height: 101px !important;
    }
    
    .main-title, .main-subtitle{
        top: 101px;
    }

}

@media screen and (max-width: 451px) and (orientation:portrait){
     .font-size{
        font-size: 105% !important;
    }
    
    #navbar, .header-back{
        height: 91px !important;
    }
    
    .main-title, .main-subtitle{
        top: 91px;
    }

}

@media screen and (max-width: 421px) and (orientation:portrait){
    .font-size{
        font-size: 99% !important;
    }
    
    #navbar, .header-back{
        height: 86px !important;
    }
    
    .main-title, .main-subtitle{
        top: 86px;
    }
   
}

@media screen and (max-width: 391px) and (orientation:portrait){
    .font-size{
        font-size: 92% !important;
    }
    
    #navbar, .header-back{
        height: 80px !important;
    }
    
    .main-title, .main-subtitle{
        top: 80px;
    }

}

@media screen and (max-width: 331px) and (orientation:portrait){
    .font-size{
        font-size: 77% !important;
    }
    
    #navbar, .header-back{
        height: 70px !important;
    }
    
    .main-title, .main-subtitle{
        top: 70px;
    }
 

}

@media screen and (max-width: 301px) and (orientation:portrait){
     .font-size{
        font-size: 70% !important;
    }

    #navbar, .header-back{
        height: 63px !important;
    }
    
    .main-title, .main-subtitle{
        top: 63px;
    }


}

@media screen and (max-width: 251px) and (orientation:portrait){
    .font-size{
        font-size: 65%;
    }

    #navbar, .header-back{
        height: 55px;
    }
    
    .main-title, .main-subtitle{
        top: 55px;
    }

}




/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*---------------------------CSS MOBILE LANDSCAPE-----------------------------*/
/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/




@media screen and (max-width: 991px) and (orientation:landscape){


    .font-size{
        font-size: 130%;
    }
    
   /* #navbar, .header-back{
        height: 130px !important;
    }*/
   
    #navbar, .header-back{
        height: 7vw !important;
    }
   
   
    #navbar-toggle-btn + label{
        position: absolute;
        display: block;
        z-index: 100001;
        cursor: pointer;
        height: 3em;
        width:  6% !important;        
        top: 5%;
        right: 4%;
    }
    
    #navbar-toggle-btn + label:before{    
        position: absolute;
        top: 30%;
        left: 10%;
        width: 80%;
        height: 3px;
        background-color: transparent;
        content: '';
        display: inline-block;
        visibility: visible;
        border-bottom: 1px solid #A4A3A3;
        
    }
    
    #navbar-toggle-btn + label:after{    
        position: absolute;
        top: 50%;
        left: 10%;
        width: 80%;
        height: 20%;
        background-color: transparent;
        content: '';
        display: inline-block;
        visibility: visible;    
        border-top: 1px solid #A4A3A3;
        border-bottom: 1px solid #A4A3A3;
    }

     #navbar-toggle-btn:checked + label{
        background-color: #E1E0E0 !important;
        border: 2px solid white;
    }
    
    #navbar-toggle-btn:checked + label:before{
        border-top: 2px solid white;        
    } 
    
    #navbar-toggle-btn:checked + label:after{
        background-color: #E1E0E0 !important;
        border-top: 2px solid white;
        border-bottom: 2px solid white;
    }
        
/*-------------------------------------------------------------------------------*/
/*--------------------------------NAVBAR-HEADER-----------------------------------*/
/*-------------------------------------------------------------------------------*/
    
    #navbar-header{
        width: 100% !important;
        height: 100%;
        -webkit-box-shadow: 0px 10px 12px -9px rgba(226,226,226,1);
        -moz-box-shadow: 0px 10px 12px -9px rgba(226,226,226,1);
        box-shadow: 0px 10px 12px -9px rgba(226,226,226,1);
        
    }
    
    #nh-logo{  
        width: 10%;
        height: 100% !important;   
        margin: 0 !important;
    }
        
    #nh-logo img{
        float: left;
        height: 90% !important;  
        top: 0em;
    }
    
    #nh-title{
        height: 100%; 
        padding-left: 0em !important;
        z-index: 1;        
    }
    
    #nh-title h1{       
        margin-bottom: 0% !important;
        font-size: 75%;
        text-shadow: 2px 2px 20px #00a3de;
        color:white
    }    

    #nh-title h5{       
        margin-bottom: 0% !important;
        font-size: 65%;
        text-shadow: 2px 2px 20px #00a3de;
        color:white
    } 
    
    #nh-title h6{       
        font-size: 55%;
    }
            
    
/*-------------------------------------------------------------------------------*/
/*--------------------------------NAVBAR-ITEMS-----------------------------------*/
/*-------------------------------------------------------------------------------*/
    #navbar-items{
        padding: 0 !important;
        float: left;
        z-index: -1;         
        padding: 0 !important;
        margin: 0 !important;
        border-bottom: 0.3em solid var(--color-orange);
    }
     
    #navbar-toggle-btn ~ #navbar-items{ 
        height: 0px !important;     
        overflow: hidden;
        font-size: 110% !important;  
    }
    
    #navbar-toggle-btn:checked ~ #navbar-items{ 

        height: 100vh !important; 
        overflow: scroll;
        bottom: auto !important;
        top: 100%;
    }
    
    #navbar-toggle-btn:checked ~ #navbar-items .nav-li{
        height: auto;
    }
    
    .nav-li-expanded,
    .nav-li-expanded .nav-li{
        background-color: lightgray !important;
    }
    
    .nav-li-expanded .nav-li-a{
        padding-bottom: 0 !important;
        transform: scale(1.15);
    }
    #navbar-items .nav-li{        
        border-bottom: 1px solid #ffffff;
        padding: 2% 0 !important;
        height: 0px; width: 100% !important;
    }
    
    #navbar-items .nav-li .nav-li-a{
        width: 60%;
        margin: 0 20% !important;
        border: none;
    }
    
    
       
    .main-title, .main-subtitle{
        top: 200px;
    }

    
}

@media screen and (max-width: 941px) and (orientation:landscape){
    .font-size{
        font-size: 123% !important;
    }
  
    #navbar, .header-back{
        height: 123px ;
    }
    
    .main-title, .main-subtitle{
        top: 123px;
    }


}

@media screen and (max-width: 891px) and (orientation:landscape){
    .font-size{
        font-size: 117% !important;
    }
  
    #navbar, .header-back{
        height: 117px ;
    }
    
    .main-title, .main-subtitle{
        top: 117px;
    }

}

@media screen and (max-width: 841px) and (orientation:landscape){
    .font-size{
        font-size: 105% !important;
    }
      
    #navbar, .header-back{
        height: 110px ;
    } 
    
    .main-title, .main-subtitle{
        top: 110px;
    }
  
}

@media screen and (max-width: 801px) and (orientation:landscape){
     .font-size{
        font-size: 105% !important;
    }
  
    #navbar, .header-back{
        height: 105px ;
    }
    
    .main-title, .main-subtitle{
        top: 105px;
    }

    
}

@media screen and (max-width: 768px) and (orientation:landscape){
    .font-size{
        font-size: 101% !important;
    }
      
    #navbar, .header-back{
        height: 101px ;
    }
    
    .main-title, .main-subtitle{
        top: 101px;
    }

}

@media screen and (max-width: 711px) and (orientation:landscape){
     .font-size{
        font-size: 94% !important;
    }
  
    #navbar, .header-back{
        height: 94px ;
    }
    
    .main-title, .main-subtitle{
        top: 94px;
    }

}

@media screen and (max-width: 661px) and (orientation:landscape){
    .font-size{
        font-size: 87% !important;
    }
  
    #navbar, .header-back{
        height: 87px ;
    }
    
    .main-title, .main-subtitle{
        top: 87px;
    }

}

@media screen and (max-width: 601px) and (orientation:landscape){
    .font-size{
        font-size: 80% !important;
    }
  
    #navbar, .header-back{
        height: 80px ;
    }
    
    .main-title, .main-subtitle{
        top: 80px;
    }

}

@media screen and (max-width: 576px) and (orientation:landscape){
    .font-size{
        font-size: 76% !important;
    }  
    
    #navbar, .header-back{
        height: 76px ;
    }
    
    .main-title, .main-subtitle{
        top: 76px;
    }
    
}

@media screen and (max-width: 536px) and (orientation:landscape){
    .font-size{
        font-size: 71% !important;
    }  
    
    #navbar, .header-back{
        height: 71px ;
    }
    
    .main-title, .main-subtitle{
        top: 71px;
    }

}

@media screen and (max-width: 501px) and (orientation:landscape){
    .font-size{
        font-size: 67% !important;
    }
     
    #navbar, .header-back{
        height: 67px ;
    }
    
    .main-title, .main-subtitle{
        top: 67px;
    }

}

@media screen and (max-width: 451px) and (orientation:landscape){
     .font-size{
        font-size: 60% !important;
    }
    
    #navbar, .header-back{
        height: 60px ;
    }
    
    .main-title, .main-subtitle{
        top: 60px;
    }

}

@media screen and (max-width: 421px) and (orientation:landscape){
    .font-size{
        font-size: 56% !important;
    }
    
    #navbar, .header-back{
        height: 56px ;
    }
    
    .main-title, .main-subtitle{
        top: 56px;
    }
   
}

@media screen and (max-width: 391px) and (orientation:landscape){
    .font-size{
        font-size: 52% !important;
    }
    
    #navbar, .header-back{
        height: 52px ;
    }
    
    .main-title, .main-subtitle{
        top: 52px;
    }

}

@media screen and (max-width: 331px) and (orientation:landscape){
    .font-size{
        font-size: 46% !important;
    }
    
    #navbar, .header-back{
        height: 45px ;
    }
    
    .main-title, .main-subtitle{
        top: 45px;
    }
 

}

@media screen and (max-width: 301px) and (orientation:landscape){
     .font-size{
        font-size: 40% !important;
    }

    #navbar, .header-back{
        height: 40px ;
    }
    
    .main-title, .main-subtitle{
        top: 40px;
    }
}

@media screen and (max-width: 251px) and (orientation:landscape){
    .font-size{
        font-size: 35%;
    }

    #navbar, .header-back{
        height: 35px;
    }
    
    .main-title, .main-subtitle{
        top: 35px;
    }

}

