/*-------------============= RESET =============-----------*/
h1,h2,h3,h4,h5,h6,p{
  margin: 0;
}

.hide{
    display: none;
}

body {
    margin: 0;
    max-width: 1000px;
    margin: auto;
}

.boton {
    padding: 10px;
    margin: auto;
    border: 0;
    background-color: transparent;
}
.boton > .fas {
    font-size: 1.1rem;
    color: black;
  }

/*-------------============= HEADER =============-----------*/
#header {
    background-color: white;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    min-height: 50px;
}
.header-logo {
    position: relative;
    display: inline-block;
}
.header-logo img {
    display: block;
}

#header-menu-principal {
    display: none;
}
#header-menu-principal ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}
#header-menu-principal ul li {
    margin: 0 10px;
}
#header-menu-principal a {
    text-decoration: none;
    color: #042a41;
}
#header-menu-principal a.activo,
.menu-principal-nombre.activo {
    font-weight: bolder;
    text-transform: uppercase;
}

#header-filtro-boton {
    color: #333;
    font-size: 1.2rem;
    vertical-align: top;
    background-color: transparent;
    border: 0;
    padding: 7px;
}
#header-filtro-boton i {
    vertical-align: middle;
}
.header-filtro-msg {
    margin-left: 5px;
    font-size: 1rem;
}
.menu-principal-mobile {
    position: fixed;
    display: inline-block;
    top: 0;
    right: -200px;
    bottom: 0;
    z-index: 100;
    background-color: white;
    padding: 10px;
    transition: 0.5s;
}
.menu-principal-mobile.activo {
    right: 0;
}

.menu-principal-mobile a {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 10px;
}

#header-menu-boton-cerrar {
    color: #333;
    text-align: right;
    padding: 0px 10px;
    font-size: 26px;
}

@media screen and (min-width: 800px) {
    #header-menu-principal {
        display: inline-block;
    }
    #header-menu-mobile-boton {
        display: none;
    }
}

/*---------============= MAIN =============--------*/
/*main{}*/

/*-----===== MENU IG =====---*/
#ig-menu {
    position: fixed;
    display: none;
    bottom: 0;
    width: 100%;
    background-color: white;
    height: 50px;
}

.ig-menu {
    height: 6vh;
    justify-content: space-around;
}

.ig-menu a {
    color: #333;
    font-size: 25px;
    display: inline-block;
    margin: 10px;
}

/*---------============= FOOTER =============--------*/
.footer-basic {
    padding: 40px 0;
    background-color: #ffffff;
    color: #4b4c4d;
}

.footer-basic ul {
    padding: 0;
    list-style: none;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-basic li {
    padding: 0 10px;
}

.footer-basic ul a {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
}

.footer-basic ul a:hover {
    opacity: 1;
}

.footer-basic .social {
    text-align: center;
    padding-bottom: 25px;
}

.footer-basic .social > a {
    font-size: 24px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    /*border-radius:50%;*/
    border: 1px solid #ccc;
    margin: 0 8px;
    color: inherit;
    opacity: 0.75;
}

.footer-basic .social > a:hover {
    opacity: 0.9;
}

.footer-basic .copyright {
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 20;
}

.footer {
    position: fixed;
    bottom: 0;
    z-index: 10;
    width: 100%;
    max-width: 1000px;
    height: 60px;
    line-height: 60px;
    background-color: #f5f5f5;
    display: block;
}



.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.footer > .container {
    padding-right: 15px;
    padding-left: 15px;
}

.text-gray {
    color: #95a5a6;
}

.text-sticky {
    font-size: 14px;
    font-weight: normal;
    padding-top: 2px;
    font-family: var(--bs-body-font-family);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; 
}

.active {
    background-color: #042a41;
    font-weight: bold;
    color: white;
}

.text-volo {
    color: #042a41;
}

/* FADE IN */
.fadeMiduSlow {
    animation: fadeInSlow 5s ease;
}

@keyframes fadeInSlow {
    0% {
        opacity: 0;
    }
}

.fadeMiduNormal {
    animation: fadeInNormal 2s ease;
}

@keyframes fadeInNormal {
    0% {
        opacity: 0;
    }
}

.fadeMiduFast {
    animation: fadeInFast 1s ease;
}

@keyframes fadeInFast {
    0% {
        opacity: 0;
    }
}

.slide-drawer-in {
    animation: slideIn 3s ease;
}

@keyframes slideIn {
    0% {
        width: 0px;
    }
}

.slide-drawer-out {
    animation: slideOut 3s ease;
}

@keyframes slideOut {
    0% {
        width: 50%;
    }
}

/* DRAWER */
.drawer {
    z-index: 11;
    position: fixed;
    height: 100%;
    width: 60%;
    left: 0;
    top: 0;
    background: #000000;
    overflow-y: scroll;
    color: white;
    
    /* Initial transforms */
    transform: translateX(-100%);
    transition: 0.5s ease;
}

.drawer.is-open {
    transform: translateX(0);
}

.absolute-center {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translate(-50%);
}

.pl-1 {
    padding-left: 10px;
}

.pl-2 {
    padding-left: 20px;
}

.pl-3 {
    padding-left: 30px;
}

.pl-4 {
    padding-left: 40px;
}

.pl-5 {
    padding-left: 50px;
}

.pl-6 {
    padding-left: 60px;
}