@font-face{
    font-family: champagne-limousines;
	src: url(../fuentes/champagne-limousines.ttf)
}

@font-face{
    font-family: bely-display;
	src: url(../fuentes/bely-display.ttf)
}

@font-face{
    font-family: bahnschrift;
	src: url(../fuentes/bahnschrift.ttf)
}

@font-face{
    font-family: opensans;
	src: url(../fuentes/opensans.ttf)
}

@font-face{
    font-family: plus-jakarta-sans;
	src: url(../fuentes/PlusJakartaSans.ttf)
}


@font-face{
    font-family: plus-jakarta-sans_light;
	src: url(../fuentes/PlusJakartaSans_Light.ttf)
}

*{
    box-sizing: border-box;
    margin: 0;    
}

*:focus {outline: none;}

body{overflow-x: hidden; background-color: #093146}

img {display: block; width: 100%;}

.brd_img{
    border-radius: 12px;
}

h1 {
    font-family: bely-display;
    color: #ffffff;
    font-weight:lighter;
}

h2, h3{
    font-family: plus-jakarta-sans, sans-serif;
    color: #ffffff;
}

h1{font-size:1.8em;}
h2{font-size: 1.5em;}
h3{font-size: 1.1em;}

a:link, a:visited, a:active{
    text-decoration:none;
}

p{
    font-family: plus-jakarta-sans_light;
    color: #fff;
    font-size: 1rem;
    line-height: 1.5em;

}

.btn_blanco{
    color: #093146;
    font-family: bahnschrift;
    text-decoration: none; 
    padding: 6px 15px;
    border: 0.15em solid #fff;
    border-radius: 6px;
    letter-spacing: 1px;
    background-color: #fff;
    font-weight: 600;
    font-size: 0.9em
}

.btn_blanco:hover{
    border: 0.15 solid #fff;
    background-color: transparent;
    color: #fff;
}

/*--------- btn ---------*/
.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 1.2rem;
    border-radius: 0.7rem;
    box-sizing: border-box;
    text-decoration: none;
}

.ver_mas{
    color: #8dc9e6;
    border: 0.10rem solid #8dc9e6;
    font-family: Arial, sans-serif;
    font-weight:600;
    letter-spacing: 1px;
    font-size: 0.85rem
}

.ver_mas:hover{
    background-color: #8dc9e6;
    color: #000;
}

.btn-whatsapp{
    background-color: #639c18;
    color: white;
    gap: 0.5rem;
    border: 2px solid transparent; 
    width: 100%;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background-color: #4c7c0d;
    transform: translateY(-2px);
}

.btn .ico-whatsapp{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    line-height:1;
}

.btn-text{
   font-family: Arial, sans-serif;
   font-size: 1.2rem; 
}



/*--------- ---------*/
.contenedor{
    margin: auto;
    width: 100%;
    padding: 0 15px; 
}

@media(min-width:1200px){
    .contenedor{
        width: 1200px;
    }
    
    h1{font-size:2.5em;}
    h2{font-size: 1.7em;}
    h3{font-size: 1.4em;}
}

#menus.change {
    background:  rgba(0, 0, 0, 0.6);
    transition: all ease .6s; 
}

#menus.change .menu_link{
    /* color: ;  */
    transition: all ease .6s;
} 

/*------------ Barra Menu ------------*/

.barra_menu{
    width: 100%;
    padding: 6px 0; 
    position: relative; 
}

.conte_menu{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.logo_desnivel{
    max-width: 70px;   
}

.cont_br{
    display: flex; 
}

/*-------------- Iconos --------------*/
.cont_leng_sociales{
    display: flex; 
    align-items:center;
    margin-left: ;
}

.redes_sociales{
    display: flex;    
}

.redes_sociales [class^="ico-"]{
    text-decoration: none;
    color: #fff;
    line-height: 0px;
    font-size: 24px;
    margin-left: 8px;
}

/*----------  Menu - Icono -----------*/  
    .menu-toggle {
        position: relative;        
        width: 26px;
        height: 24px;        
        display: flex;
        align-items: center;
        cursor: pointer;
        margin-left: 8px;
    }
    .menu-toggle-bar {
        width: 100%;
        height: 3px;
        border-radius: 4px;
        position: absolute;
        transition: all 0.3s ease;
        background-color: #fff;
    }
    .menu-toggle-bar--top {
        transform: translate(0, -8px);
    }
    .menu-toggle-bar--bottom {
        transform: translate(0, 8px); 
        width: 60%;
    }
    .nav-open .menu-toggle-bar--top {
        transform: translate(0, 0) rotate(45deg);
    }
    .nav-open .menu-toggle-bar--middle {
        opacity: 0;
    }
    .nav-open .menu-toggle-bar--bottom {
        transform: translate(0, 0) rotate(-45deg);
        width: 100%;
    }

/*--------------Menu Movil--------------*/

.menu{
    position: absolute;
    top: 86px;
    left: -100%;
    width: 100%;
    transition: all 0.4s;
    z-index: 900;
}

.menu-lista{
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #093146;
}

.menu_link{
    display: block;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    font-family: champagne-limousines;
    font-size: 0.8em;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    font-weight: 600;
}

.menu_link:hover{
    background-color: #8dc9e6;
    color: #093146;
}

.mostrar {
    left: 0;  
}

.fixed{
    position: fixed;
    top: 0;
    z-index: 1000; 
}

@media(min-width:1024px){    
    
    .cont_br{
        border-bottom: 1px solid #ffffff;
        width: 92%;
    }
    
    .menu-toggle{
        display: none;
    }
    
    .menu{
        position: static;
        width: 100%;
        padding-left: 0px;
        margin: auto;  
    }
    
    .menu-lista{
        display: flex;
        background: none;
       /* justify-content: center; */
    }
    
    .menu_link{
       border-bottom: none;        
    }
    
    .menu_link:hover{
        background: none;        
    }    
  
}

/*-------------- Baner --------------*/
.baner_desnivel{
    position: relative;
}

.inicio{
    width:100%;
    height:100vh;
    object-fit: cover;
}

.text_banner{
    font-family: bely-display;
    color: #fff;
    font-weight:lighter;
    padding-bottom: 10px;
    /*text-align: center;*/
}

.text_descripcion{
    text-align: justify;
    padding: 20px 0;
}

.btn_mas{
    text-decoration: none;
    color: #8dc9e6;
    font-family: bahnschrift;
    padding: 5px 30px;
    border: 0.10em solid #8dc9e6;
    border-radius: 15px;
    letter-spacing: 1px;
    display: inline-block;
    font-weight: 600;
}

.baner_contenido_home{
    position: absolute;
    bottom: 0;
    width: 100%; 
    z-index: 3;
}

.info_baner{
    width: 100%;
    padding-bottom: 80px;
}

@media(min-width:1024px){
.info_baner{
    width: 50%;
    margin-left: 50%;    
    }
}

/*------ Opciones de Turismo ------*/
.cont_turistico{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; 
    border: 0.10em solid #8dc9e6;
    border-radius: 20px;
    padding: 1rem 2rem;
    margin: 1rem 0px;    
    width: 100%;    
}

legend {
    background-color: #8dc9e6; 
    padding: 8px 5%;
    border-radius: 8px; 
    margin: auto;
    font-family: bahnschrift;
    color: #093146;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9em;
}

.opcion_t{
    display: flex;
    flex-wrap: wrap;
    align-items: center;    
    margin-bottom: 15px;
    width: 48%;
    text-align: center;
    justify-content: center;
}


.ico_d{
    width: 60px;
    margin-right: 10px;   
}

.opcion_t:hover .ico_d{   
    filter: brightness(0) saturate(100%) 
    invert(84%) sepia(100%) saturate(26%) 
    hue-rotate(84deg) brightness(108%) contrast(106%); 
}

.text_t{
    color: #8dc9e6;
    font-size: 1.2em;
}

.opcion_t:hover .text_t{
    color: #fff;
}

@media(min-width:1024px){
    .cont_turistico{
        border-radius: 90px;    
    }
    
    .opcion_t{
        width: 24%;
        margin-bottom: 0px;
    }
    
    .text_t{
        font-size: 1.4em;
    }    
}
 
/*------------ Subir Nivel ------------*/

.desnivel_img{
    margin-bottom: 15px;
    border-radius: 12px;
}

.desnivel_titulo{
    padding-bottom: 15px;
}

.desnivel_descripcion{
    text-align: justify;
    margin-top: 15px;
}

/*.cont_btn{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}*/

@media(min-width:768px){
    .desnivel_expedition_nosotros{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .desnivel_img{
        margin-bottom: 0px;
        width: 48.5%;
        object-fit:cover;
    }
    
    .desnivel_informacion{
       width: 48.5%; 
    }
}

/*------------ Servicios ------------*/
.b_servi{
    position: relative;
}

.img_serv{
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.b_servi .t_servicios{
    position: absolute;
    bottom: -5px; 
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    padding: 0 60px 10px;
    border-bottom: 1px solid #fff; 
}

.text_serv{
    width: 100%;
}

.text_serv .contenedor{
    max-width: 700px;
    text-align: center;
}

@media(min-width:1366px){
    .img_serv{
        height: auto;
    }
}

/*--------------- Servicios ----------------*/

#actividades_turisticas{
    padding: 40px 0;
}

.actividad_contenido{
    border: 0.10em solid #8dc9e6;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 40px;
    width: 100%;
}

.a_titulo{
    margin-bottom: 15px;  
}

.actividad_descripcion{
    padding: 20px 0;
}

.actividad_img{
    border-radius: 12px;
}

/*----- cards lugares turisticos -----*/
.lugares_tours{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 30px 0px;
}

.col_tour{
    width: 48.5%;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    border-radius: 12px; 
}

.zoom{
    transition:all .5s;    
}

.col_tour:hover .zoom{
    transform: scale(1.15);
}

.name_tour{
    background: rgba(0, 0, 0, 0.6);
    transition: all ease .6s;
    position: absolute;
    bottom: 0;
    width: 100%;
    border-radius: 0 0 12px 12px;
    padding: 15px;
}

.text_tr{
    padding-bottom: 15px;
}
/*------------- -------------*/

@media(min-width:768px){
    .actividad_contenido{
        display: flex;
        padding: 0px;  
    }
    
    .ac_left{
        padding-left: 1.5rem;  
    }
    
    .ac_right{
        padding-right: 1.5rem;  
    }
    
    .actividad_titulo{
        width: 20%;
        margin: auto; 
        text-align: center;
    }
    
 /*   .ac_titulo_right{
        text-align: right;
    }*/
        
    .actividad_descripcion{
        width:50%;
        padding: 20px;
        margin: auto;
    }
    
    .at_img_right{
        width: 30%;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
        border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
        object-fit: cover;
    }
    
    .at_img_left{
        width: 30%;
        border-top-right-radius: 0px;
        border-bottom-right-radius: 0px;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        object-fit: cover;
    }
    
    .col_tour{
        width: 23.5%;  
    }    

}


/*----------------*/
.linea_lr{
    display: flex;
    margin-bottom: -8px;
}

.izquierda, .derecha{
    width: 20px;
    height: 20px;
    box-shadow: -0.10em 0.10em 0;
    color: #8dc9e6;    
}

.izquierda{    
    margin: 0 -10px 0 10px;
    transform: rotate(45deg);
}

.derecha{
    margin: 0 10px 0 -10px;
    transform: rotate(225deg);
}

.linea{
    width: 100%;
    border-bottom: 0.10em solid #8dc9e6;
    margin: auto; 
}


    
/*----- cont_tours_left ------*/    
/*    .cont_tours_left{
        padding-right: 3rem;
        padding-top: 0;
        padding-left: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        height: 153px;
    }
    
    .tours_img_left{
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        border-top-right-radius: 0px;
        border-bottom-right-radius: 0px;
        width: 100%;
        height: 150px;
        object-fit: cover;
    }
    
    .col_tours_left{
        width: 45%;
        margin: auto;
    }   */


/*------ Galeria -----*/

.b_galeria{
    position: relative;
}

.b_galeria .tours_galeria{
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    padding: 0 60px 10px;
    border-bottom: 1px solid #fff;
}

/*----img galeria---*/

.small, .normal, .large{
    padding-bottom: 15px;
}

.col_gal_desnivel img{
    border-radius: 12px;
}

.cont_btn_galeria{
    text-align: center;
}

.img_gal{
    max-width: 100px;
    margin: 30px auto;
}

@media(min-width:480px){  
    .fila{
       display: flex;
       flex-wrap: wrap;
       justify-content:space-between;
        padding: 40px 0px;
    }    
    .col_gal_desnivel{
        width: 48.5%;
    }
}
    
@media(min-width:768px){	
	.col_gal_desnivel{
       width: 24%; 
    }
}

/*----------- contacto -----------*/
    
    .info_contacto{
       position: relative;
    }

    .f_contacto{
        width: 100%;
        height: 500px;
        object-fit: cover;
    }
    
    .info_contacto .t_contacto{
        position: absolute;
        top: 0%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }    
    
    .info_contacto .col_direccion{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%) translateY(-50%);
    }
    
    .logo_d{
        max-width: 80px;
        margin: -35px auto 35px;
    }
    
    .cont_sociales{
        border: 0.10em solid #8dc9e6;
        border-radius: 25px;
        background-color: #093146;
        padding: 0 60px 40px;
        text-align: center;
        font-family: champagne-limousines;
        font-size: 1.1em;
        color: #fff;        
        width: 100%; 
        max-width: 400px;        
        margin: 0 auto;
    }
    
    .cont_sociales [class^="ico-"]:before{
        position: relative;
        top: 2px;        
        font-size:24px;
        margin-right:5px; 
    }
     
    .cont_sociales a{
        text-decoration: none; 
        color: #fff;
        display: inline-block;
        margin-bottom: 15px;
    }
        
    /*---------------*/    
    .cont_pag{
        background-color: #093146;
        padding: 15px 0;
    }
    
    .text_pag{
        font-family: champagne-limousines;;
        color: #fff;
        font-size: 1.2em;
        text-align: center;
        letter-spacing: 3px;
    }


/*.img_tours{
    width: 60px;
    filter: brightness(0) saturate(100%) 
    invert(84%) sepia(100%) saturate(26%) 
    hue-rotate(84deg) brightness(108%) contrast(106%);
}*/

