body{
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
}
*{
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}
h2{
    margin: 15px;
}
a{
    text-decoration: none;
    cursor: pointer;
}
#top{
    width: 100%;
    padding: 0 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    background-image: linear-gradient(to bottom, rgba(var(--color_primario_rgb),.5), rgba(var(--color_primario_rgb),0));
    pointer-events: none;
}
#top .top {
    background: rgba(var(--color_primario_rgb),.8);
    padding: 5px 0;
    width: 100%;
    max-width: 100%;
}
#top .top .pais{
    display: flex;
    align-items: center;
    gap: 10px;
}
#top .top .pais .inicio-btn{
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 15px;
    line-height: 29px;
    font-weight: 800;
    margin-right: 20px;
}
#top .top .pais .dropdown-paises{
    position: relative;
}
#top .top .pais #open-select-paises{
    color: #fff;
    cursor: pointer;
}
#top .top .pais #select-paises{
    position: absolute;
    top: 30px;
    left: 0;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, .5);
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.4s linear;
-moz-transition: max-height 0.4s linear;
transition: max-height 0.4s linear;
    
}
#top .top .pais #select-paises.activo{
    max-height: 280px;
    overflow-y: scroll;
}
#top .top .pais #select-paises ul{
    margin: 0;
}
#top .top .pais #select-paises ul li a{
    display: flex;
    align-items: center;
    gap: 10px;
    background: #021b39;
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    width: 250px;
    color: #fff;
    line-height: 15px;
    font-weight: 400;
}
#top .top .pais #select-paises ul li a:hover{
    background: var(--color_primario);
    transition: .3s linear;
}
#top .top .pais #select-paises ul li img{
    width: 25px;
}
#top .top .pais h5{
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 15px;
    line-height: 29px;
}
#top .top > div{
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}
#top > div{
    width: 90%;
    max-width: 1080px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 10px 0;
}
#top .logo{
    pointer-events: all;
}
#top .logo img{
    max-width: 250px;
    max-height: 80px;
}
#top #close-menu{
    display: none;
}
#top .menu .toggle{
    display: none;
    cursor: pointer;
    position: relative;
    z-index: 99999;
    margin-top: 25px;
}
#top .menu .toggle span{
    width: 29px;
    height: 2px;
    background: #fff;
    display: flex;
    margin: 5px 0;
    border-radius: 50px;
    transform-origin: 5px 0px;
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0), background 0.5s cubic-bezier(0.77,0.2,0.05,1.0), opacity 0.55s ease;
}
#top .menu ul{
    display: flex;
    gap: 50px;
}
#top .menu ul li{
    position: relative;
    padding: 10px 0;
}
#top .menu ul li a, #top .menu ul li i{
    color: #fff;
    transition: all .3s ease;
    text-shadow: 0px 0px 4px #000;
}
#top .menu ul li a, #top .menu ul li:hover i{
    transform: rotateZ(180deg);
}
#top .menu ul li .submenu .back{
    display: none;
}
#top .menu ul li .submenu{
    display: block;
    background: rgba(var(--color_primario_rgb),.8);
    padding: 20px;
    position: absolute;
    text-align: center;
    top: -180px;
    width: 200px;
    left: -40px;
    transition: all .3s ease;
    opacity: 0;
}
#top .menu ul li:hover .submenu{
    display: block;
    top: 40px;
    opacity: 1;
}
#top .menu ul li .submenu li{
    margin: 15px 0;
}
#top .redes-sociales{
    pointer-events: all;
}
#top .redes-sociales.mobile{
    display: none;
}
#top .redes-sociales i{
    color: #fff;
    margin: 0 5px;
    text-align: right;
    font-size: 14px;
}
#banner{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
#banner .img-bg{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -999;
    width: 100%;
    height: 100%;
}
#banner .img-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .8;
}
#banner .img-bg video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}
#banner .tittle-banner{
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 8px #000;
}
#banner .tittle-banner h1{
    font-size: 50px;
    text-transform: uppercase;
}
#banner .tittle-banner p{
    font-size: 21px;
  font-weight: 600;
  max-width: 900px;
}
#banner .btn-banner{
    padding: 20px 30px;
    background: var(--color_primario);
    font-size: 20px;
    text-shadow: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    transition: all .3s ease;
}
#banner .btn-banner:hover{
    background: var(--color_secundario);
}
#open-carousel{
    display: none;
}
#carousel{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 999;
}
#carousel .alert-deslizar{
    color: #fff;
    text-align: left;
    font-size: 13px;
    display: none;
}
#carousel .pais img{
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: translateY(25px);
    transition: all .5s ease;
}
#carousel .estados img{
    width: 100%;
    height: 130px;
    object-fit: cover;
    transition: all .5s ease;
}
#carousel .item.pais:hover img{
    transform: translateY(0);
}
#carousel .carrusel-cont{
    display: flex;
    gap: 3px;
    justify-content: center;
    align-items: end;
}
.owl-carousel.owl-drag .owl-item .item{
    padding: 0 1px;
    opacity: 1;
    box-sizing: border-box;
}
#carousel .pais .txt-carousel{
    background: #fff;
    height: 20px;
    overflow: hidden;
}

#carousel .estados a{
    line-height: 10px;
}
#carousel .estados:hover{
    transform: scale(1.1);
    transform-origin: bottom;
    z-index: 999;
}
#carousel .estados .txt-carousel{
    background: #fff;
    padding: 10px 5px;
    width: 100%;
    max-width: 100%;
    background: var(--color_secundario);
    color: #fff;
}
#carousel .item{
    padding: 0 1px;
    opacity: .8;
    box-sizing: border-box;
    transition: all .3s ease;
    width: 245px;
}
.owl-carousel.owl-drag .owl-item .muy-pronto{
    opacity: .7;
    cursor: auto;
    filter: grayscale(100%);
}
#carousel .item:hover {
    opacity: 1;
}
#form_banner {
    position: fixed;
    top: 6px;
    right: 6px;
    z-index: 99999;
    font-size: 11px;
    background-color: rgba(255,255,255,.5)
}
#form_banner select {
    background-color: transparent;
    border-width: 0px;
}
#form_banner select > option:checked {
    color:#001B3A;
    font-weight: bold;
}

@media only screen and (max-width: 1200px) {
    #top .menu ul{
        gap: 40px;
    }
}
@media only screen and (max-width: 900px) {
    #top .menu ul{
        gap: 30px;
    }
}
@media only screen and (max-width: 800px) {
    #top .menu ul{
        gap: 20px;
    }
}
@media only screen and (max-width: 600px) {
    h1{
        font-size: 40px !important;
    }
    h2{
        font-size: 20px;
    }
    #top .menu ul{
        gap: 10px;
    }
}
@media only screen and (max-width: 500px) {
    #top .logo img{
        width: 200px;
    }
}
@media only screen and (max-height: 500px) {
    #top .menu ul{
        gap: 20px;
    }
}
@media screen and (max-width: 1000px){
    #top .menu ul li .submenu .back{
        display: block;
    }
    #top .menu .toggle{
        display: block;
    }
    #top .redes-sociales.mobile{
        display: block;
        margin-top: 100px
    }
    #top .redes-sociales{
        display: none;
    }
    #top .menu #menu-mobile{
        flex-direction: column;
        position: fixed;
        height: 100vh;
        min-height: fit-content;
        background: black;
        padding: 110px 70px 50px;
        max-width: 300px;
        right: 0;
        top: 0;
        text-align: right;
        z-index: 9999;
        transform: translateX(100%);
        transition: all .3s ease;
    }
    #top #menu.navigation #menu-mobile{
        transform: translateX(0);
    }
    #top #menu.navigation .toggle span:nth-last-child(2){
        transform: rotate(0deg) scale(0);
    }
    #top #menu.navigation .toggle span:nth-last-child(1){
        transform: rotate(-45deg) translate(0, -1px);
        transform-origin: 0% 100%;
    }
    #top #menu.navigation .toggle span:nth-last-child(3){
        transform: rotate(45deg) translate(-3px, -1px);
    }
    #top .menu ul li a, #top .menu ul li i{
        transform: rotateZ(-90deg) translateX(-2px);
    }
    #top .menu ul li a, #top .menu ul li:hover i{
        transform: rotateZ(-90deg) translateX(-2px);
    }
    #top .menu #menu-mobile .submenu{
        position: fixed;
        top: 0;
        right: 0;
        z-index: 9999999;
        height: 100vh;
        min-height: fit-content;
        max-width: 300px;
        left: auto;
        width: 100%;
        padding: 100px 50px 50px;
        opacity: 1;
        transform: translateX(100%);
        background: rgba(var(--color_primario_rgb),1);
    }
    #top .menu #menu-mobile .submenu.nav-submenu{
        transform: translateX(0);
    }
    #top #menu.navigation #close-menu{
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 999;
        background: rgba(0, 0, 0, .3);
        cursor: pointer;
    }
    .carrusel-container{
        position: relative;
        z-index: 99999;
    }
    #carousel{
        transform: translateY(100%);
        transition: .3s ease;
    }
    #carousel .alert-deslizar{
        display: block;
        margin-bottom: 10px;
    }
    #carousel.activo{
        transform: translateY(0);
    }
    #carousel .carrusel-cont{
        overflow-x: scroll;
        justify-content: start;
    }
    #carousel .carrusel-cont .item{
        min-width: 245px;
    }
    #carousel.activo .item.pais img{
        transform: translateY(0);
    }
    #open-carousel{
        display: block;
        color: #fff;
        font-size: 18px;
        text-align: center;
        cursor: pointer;
        width: fit-content;
        margin: 10px 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        transition: .3s ease;
        z-index: 9999;
    }
    #open-carousel.activo{
        bottom: 180px;
    }
    #open-carousel.activo i{
        transform: rotate(180deg);
    }
    #close-carousel{
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 999;
        background: rgba(0, 0, 0, .4);
        cursor: pointer;
    }
    #close-carousel.activo{
        display: block;
    }
}

.banner-pais{
    display: block !important;
}