/* FONT */



/* ROOT */
:root{
    --color-white:#ffffff;
    --color-black:#000000;
    --color-glicina:#93AAF2;
    --color-gris-claro:#F2F2F2;
    --color-azul-obscuro:#10213D;
    --color-azul-500:#2F5FB3;
    --color-amarillo-banner:#FBC022;
    --font-montserrat:'Montserrat', sans-serif;
    --z-fixed: 100;
    --header-height: 3rem;
}
html, body{
    overflow-x: hidden;
}

body{
    padding: 0;
    margin: 0;
    font-size: 14px;
}

/* __FONT */
h1, h2, h3, h4, h5, h6, p, a{
    font-family: var(--font-montserrat);
    margin: 0;
}
a{
    text-decoration: none;
}
.tit{
    font-size: 2.3em;
    font-weight: bold;
    margin-bottom: 1.3rem;
}
.tit_base{
    font-weight: bold;
    font-size: 1.7rem;
}
.tit_encabezado{
    font-size: 2.2em;
    font-weight: bold;
    color: var(--color-white);
}
.subTit_base{
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
}
.subTit{
    display: table-cell;
    text-align: center;
    font-size: 1.2em;
    vertical-align: middle;
    height: 60px;
    width: 200px;
    font-weight: bold;
}
.txt{
    font-size: 1em;
    font-weight: 500;
    color: var(--color-azul-obscuro);
}

    /*BTN*/
.btn_gen{
    padding: 8px 24px;
    border-radius: 25px;
}
.content_btn{
    display: inline-block;
    transition: all 0.6s ease-out;
    transform: scale(1.05);
    margin-top: 1.8rem;
}
.content_btn:hover{
    transform: scale(1);
}


    /* BTN PRINCIPAL*/
.btn_principal{
    position: relative;
    background-color: var(--color-glicina);
    color: var(--color-white);
}
.btn_principal::before {
    content: "";
    display: inline-block;
    height: 20px;
    width: 90%;
    position: absolute;
    bottom: -10px;
    left: 10px;
    right: 30px;
    z-index: -1;
    border-radius: 30em;
    background: var(--color-glicina);
    filter: blur(10px) brightness(0.95);
    transform-style: preserve-3d;
    transition: all 0.3s ease-out;
}
.btn_principal:hover {
    text-decoration: none;
    color: var(--color-white);
}
.btn_principal:hover:before {
    bottom: -5px;
    filter: blur(10px) brightness(0.95);
}

    /* BTN SECUNDARIO*/
.btn_secundario{
    font-weight: 500;
    padding: 8px 24px 8px 24px;
    background-color: var(--color-white);
    color: var(--color-azul-500);
}

.btn_secundario:hover {
    text-decoration: none;
    color: var(--color-azul-500);
}
.btn_secundario:hover:before {
    bottom: -5px;
    filter: blur(10px) brightness(0.95);
}
.home-slider .btn_secundario{
    display: block;
    width: 176px;
} 

.icon_airplane{
    display: inline!important;
    position: relative;
    bottom: 0;
    left: 4px;
    width: 18px!important;
    height: 10px!important;
}



/* .icon_airplane{
    position: absolute;
    top: 8px;
    right: 16px;
    width: 18px!important;
    height: 10px;
    background-image: url("../images/icon_airplane.svg");
    background-position: center center;
    background-repeat: no-repeat;
} */

.ion-ios-arrow-round-forward-outline{
    position: relative;
    top: 3px;
    padding-left: 0.4rem;
    font-size: 1.5em;
}



/* __HOMEPAGE__ */


    /* __HEADER */
#header{
    position: absolute;
    z-index: 1;
    width: 100%;
}
.navbar-collapse{
    justify-content: end;
}
.contacto_menu{
    position: absolute;
    top: 16px;
    right: 32px;
    display: inline-block;
    width: auto;
}
.contacto_menu a{
    font-family: var(--font-montserrat);
    color: #ffffff;
    font-size: 1em;
    font-weight: bold;
}
.contacto_menu a i{
    position: relative;
    top: 3px;
    margin-right: 6px;
    font-size: 1.4em;
}
.contacto_menu a:nth-child(1){
    padding-right: 18px;
    border-right: 2px solid var(--color-white);
}
.contacto_menu a:nth-child(2){
    padding-left: 12px;
}

    /* __NAV*/
.nav__logo{
    display: inline-block;
}
.nav__logo img{
    margin-top: 20px;
    width: 120px;
}
a.nav__logo::before{
    position: absolute;
    content: "";
    top: 0;
    width: 120px;
    height: 30px;
    background-color:#ffffff;
}
.nav__list{
    display: flex;
    flex-direction: row;
    list-style: none;
    margin-top: 20px;
    padding-left: 0;
}

.nav__item > a{ 
    font-size: 18px;
    font-weight: bold;
    opacity: .7; 
    color: var(--color-white)!important;
}
.active > a{
    position: relative; 
    opacity: 1; 
    color: var(--color-white)!important;
}
.active > a::before{
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--color-white);
    left: 46%;
    margin-top: 30px;
}
.navbar .nav__list li.nav__item{
    margin-left: 8px;
}
/*=============== NAV ===============*/
.nav__toggle {
font-size: 2rem;
color: var(--color-white);
cursor: pointer;
}

@media screen and (max-width: 767px) {
.nav__menu {
    position: absolute;
    background-color: var(--color-black);
    top: -70vh;
    left: -25%;
    width: 99vw;
    padding: 16px 0 32px 0;
    transition: .4s;
    z-index: 999;
}
.nav__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
    }
.test-carousel .item {
    min-height: 320px;
}
}

  
.nav__close {
position: absolute;
font-size: 1.5rem;
top: 18px;
right: 42px;
color: var(--color-white);
cursor: pointer;
}

/* show menu */
.show-menu {
top: 0;
}

/* Change background header */
.scroll-header {
background-color: var(--color-black);
}

/* Active link */
.active-link {
background: var(--color-white);
color: transparent;
-webkit-background-clip: text;
background-clip: text;
}
  











    /*__SLIDER*/
.owl-carousel.home-slider .slider-item .slider-text h2.sub_slider{
    font-family: var(--font-montserrat);
    font-weight: 200;
    color: var(--color-white);
    letter-spacing: 0;
    text-transform: none;
    font-size: 3.2em;
}
.owl-carousel.home-slider .slider-item .slider-text h1{
    font-family: var(--font-montserrat);
    font-size: 5rem;
    text-transform: none;
}
#vector_down_slider{
    position: absolute;
    bottom: -12px;
    width: 100%;
    height: 135px;
}
.content_arrow_down_slider{
    text-align: center;
    position: absolute;
    bottom: 4px;
}
.icon_arrow_down_slider{
    font-size: 2.5em;
    color: var(--color-azul-500);
}
.home-slider .owl-nav button.owl-prev,.home-slider .owl-nav button.owl-next{
    padding: 6px 13px 4px 13px!important;
    border: 1px solid #ffffff;
    border-radius: 30px;
}
.slider-item01{
    background-image: url('../images/sophie-travel-luna-de-miel.webp');
}
.slider-item02{
    background-image: url('../images/sophie-travel-conocer-el-mundo.webp');
}
.slider-item03{
    background-image: url('../images/sophie-travel-aventura.webp');
}
.slider-item04{
    background-image: url('../images/sophie-travel-nuevas-culturas.webp');
}
.slider-item05{
    background-image: url('../images/sophie-travel-crear-recuerdos.webp');
}

    /* __BRAND */
.cont_brand{
    padding: 80px 0px 0px 0px;
}    
.cont_brand .owl-nav button.owl-prev i, .cont_brand .owl-nav button.owl-next i{
    font-size: 1.5em;
}
.cont_brand .owl-nav button.owl-prev, .cont_brand .owl-nav button.owl-next{
    background-color: var(--color-gris-claro);
    padding: 9px 19px!important;
    border-radius: 25px;
    position: absolute;
    top: 8px;
}
.cont_brand .owl-nav button.owl-prev{
    left: -80px;
}
.cont_brand .owl-nav button.owl-next{
    right: -80px;
}

    /* __BIENVENIDO */
section#sec_bienvenido{
    padding: 100px 0px 200px 0px;
    background-image: url('../images/down-divider.svg');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
}
.col_photo_bien{
    text-align: right;
    padding-right: 40px;
}
.second_photo_bien{
    position: absolute;
    right: 216px;
    bottom: -46px;
}
.txt_max{
    max-width: 356px;
}

    /* __SERVICIOS */
section#sec_servicios{
    padding: 50px 0px 80px 0px;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(242,242,242,1) 0%, rgba(255,255,255,1) 100%);
}
#sec_servicios .row:nth-child(1), #sec_servicios .row:nth-child(2){
    margin-bottom: 50px;
}
#sec_servicios .col-md-2{
    padding-right: 8px;
    padding-left: 8px;
}
#sec_servicios img{
    margin-bottom: 20px;
}

    /* __TESTIMONIALES */
#sec_opiniones {
    padding: 40px 0px 100px 0px;
}
.cont_testimonial .owl-nav button.owl-prev i, .cont_testimonial .owl-nav button.owl-next i{
    font-size: 1.5em;
}
.cont_testimonial .owl-nav button.owl-prev, .cont_testimonial .owl-nav button.owl-next{
    background-color: var(--color-gris-claro);
    padding: 5px 15px!important;
    border-radius: 25px;
    position: absolute;
}
.cont_testimonial .owl-nav button.owl-prev{
    left: -60px;
}
.col_txt_test{
    text-align: left;
}
.col_txt_test h1{
    margin: auto;
    list-style: 1;
    max-width: 160px;
}
.cont_testimonial .owl-nav {
    position: absolute;
    left: -23%;
    top: 90px;
}
.test-carousel .item{
    box-sizing: border-box;
    padding: 28px;
    background: var(--color-gris-claro);
    border-radius: 16px;
    min-height: 300px;
}
.test-carousel .item .comillas{
    width: 40px;
    height: 40px;
    background-image: url('../images/comillas-vector.svg');
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 16px;
}
.test-carousel .item p{
    font-family: var(--font-montserrat);
    font-size: 1em;
    font-weight: 500;
}
.test-carousel .item h6{
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 16px;
}

    /* __CERTIFICACIONES */
#sec_certificaciones{
    padding: 0px 0px 0px 0px;
}

    /* __BANNER*/
#sec_ban_contacto{
    padding: 100px 0px 10px 0px;
    background-image: url('../images/down-divider-black.svg');
    background-position: center bottom;
    background-size: contain;
    background-repeat: no-repeat;
}    
/* #sec_ban_contacto .col_banner_img{
    padding: 0;    
} */
.col_banner_img .banner{
    position: absolute;
    right: 0;
    content: "";
    width: 100%;
    height: 312px;
    background-image: url(../images/sophie-travel-nos-encargamos-de-todo.png);
    background-size: cover;
}
.col_banner_txt{
    background-color: var(--color-amarillo-banner);
    border-radius: 0px 200px 200px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 312px;
    padding: 0px 120px 0px 24px;
    box-sizing: border-box;
}
.col_banner_txt .tit_bn{
    font-size: 2.8em;
    font-family: var(--color-white);
    color: var(--color-white);
    font-weight: bold;
    line-height: 1.1;
}
.col_banner_txt .caption{
    color: var(--color-white);
    font-size: .9em;
    margin-top: 6px;
    font-weight: 500;
    
}
.content_btn_banner{
    display: inline-block;
    transition: all 0.6s ease-out;
    transform: scale(1.05);
    margin-top: .8rem;
}
.content_btn_banner:hover{
    transform: scale(1);
}

    /* FOOTER */
#footer{
    padding: 60px 0px;
    background-color: var(--color-black);
}
#footer a{
    color: var(--color-white);
}
.col_foot_txt{
    text-align: right;
}
.list_footer{
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: end;
}
.cont_foot_contacto a i{
    position: relative;
    top: 2px;
    margin-right: 6px;
    font-family: var(--font-montserrat);
    font-size: 1.2em;
}
.cont_foot_contacto a:nth-child(1){
    margin-right: 30px;
}
.list_footer li{
    margin-top: 20px;   
    margin-left: 32px;
}
.list_footer li a{
    opacity: .5;
    transition: all .3s;
}
.list_footer li a:hover{
    opacity: 1;
}
.actF > a{
    position: relative;
    opacity: 1!important;
}
.actF > a::before{
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--color-white);
    left: 46%;
    margin-top: 30px;
}
.row_foot2{
    padding: 30px 0px 0px 0px;
    color: var(--color-white);
}
.row_foot2 div:nth-child(2){
    text-align: right;
}
.max_foot_left{
    max-width: 208px;
}


/* __CONTACTO__ */
#encabezado_contacto{
    background-image: url('../images/sophie-travel-encabezado-contacto.webp');
}
.encabezado{
    position: relative;
    width: 101vw;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.encabezado > div{
    text-align: center;
    height: 380px;
    align-items: center;
}

.encabezado > div::before{
    position: absolute;
    content: "";
    width: 105%;
    height: 150px;
    bottom: -1px;
}
.encabezado > div::before{
    background-image: url('../images/down-divider-bn.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

/* __NOSOTROS__ */
#encabezado_nosotros{
    background-image: url('../images/sophie-travel-encabezado-nosotros.webp');
}
#descripcion_nost{
    position: relative;
    top: -60px;
}
.second_photo_left {
    position: absolute;
    right: 216px;
    bottom: -60px;
}
.second_photo_right {
    position: absolute;
    right: 216px;
    bottom: 64px;
}
.txt_desc{
    margin-bottom: 16px;
}
.desc_left{
    margin-top: 60px;
}
.desc_right{
    margin-top: 32px;
}
.desc_row2{
    margin-top: 60px;
}
    /*DIVIDER*/
.divider{
    width: 101vw;
    height: 150px;
    margin-top: 40px;
    background-image: url('../images/down-divider.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

    /* VALORES */
#valores{
    padding: 40px 0px 120px 0px;
    background-color: var(--color-gris-claro);
    /* background-color: var(--color-azul-500); */
    background-image: url('../images/down-divider-black.svg');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
}
#valores .cont_valores{
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    padding: 0px 30px;
    min-height: 140px;
    border-radius: 100px;
    background-color: var(--color-white);
    margin-bottom: 20px;
}
#valores .tit_base{
    margin-bottom: 28px;
}
#valores .cont_valores p.txt{
    margin: 6px;
    font-size: 0.9em;
    text-align: center;
}

/* __NUESTROS DESTINOS__ */
#encabezado_destinos{
    background-image: url('../images/sophie-travel-encabezado-nuestros-destinos.webp');
}
#destinos{
    padding: 40px 0px 80px 0px;
}
.dest_row1, .dest_row2{
    margin-bottom: 60px;
}
.dest_row3{
    margin-bottom: 20px;
}
#destinos .row > div{
    padding-left: 8px;
    padding-right: 8px;
}
#destinos .subTit_base{
    margin-top: 20px;
}
#destinos{
    background-image: url('../images/down-divider-black.svg');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
}


/* __PREGUNTAS FRECUENTES__ */
#encabezado_preguntas{
    background-image: url('../images/sophie-travel-encabezado-preguntas-frecuentes.jpg');
}
#preguntas{
    padding: 40px 0px 120px;
    background-image: url('../images/down-divider-black.svg');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
}
#accordionExample .card{
    border: none;
    border-bottom: 2px dashed var(--color-azul-500);
}
.card-header{
    padding: 20px 0px 20px 16px;
    margin-bottom: 0;
    background-color: var(--color-white);
    border-bottom: none;
}
.card-header .btn{
    padding: 0px;
    font-size: 1.2rem;
    color: var(--color-black);
    font-weight: bold;
}
.card-body{
    padding: 0px 0px 24px 16px;
    font-size: 1rem;
    font-weight: 400;
}
.accordion .card .ion-ios-arrow-round-down {
    color: var(--color-azul-500);
    float: right;
    margin-right: 20px;
    font-size: 1.2em;
}
.accordion .card .ion-ios-arrow-round-down::before{
    font-weight: bold;
}
.accordion .card .card-header button:not(.collapsed) .rotate-icon {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}


/* __AVISO DE PRIVACIDAD__ */
#encabezado_privacidad{
    background-image: url('../images/sophie-travel-encabezado-aviso-privacidad.jpg');
}
#aviso{
    padding: 40px 0px 120px 0px;
    background-image: url('../images/down-divider-black.svg');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
}

/* __FORMULARIO__ */
#form_contact{
    padding: 80px 0px 120px 0px;
    background-image: url('../images/down-divider-black.svg');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
}
#form_contact h1{
    margin-bottom: 16px;
}
#form_contact p:nth-child(2){
    margin-bottom: 16px;
}
.list_contact_form{
    margin-top: 20px;
    list-style: none;
    padding-left: 0;
}
.list_contact_form li a{
    color: var(--color-black);
    font-weight: bold;
}
.list_contact_form li a i{
    position: relative;
    top: 4px;
    font-size: 1.5em;
    margin-right: 8px;
}
.ion-ios-mail-outline:before, .ion-ios-call-outline:before{
    font-weight: 900!important;
}
#formulario input, #formulario textarea{
    border: 2px solid var(--color-gris-claro);
}
#formulario input[type=text], #formulario input[type=email], #formulario input[type=tel]{
    background-color: var(--color-gris-claro);
    color: var(--color-black);
    border-radius: 22px;
    font-family: var(--font-montserrat);
    font-size: 0.9em;
    font-weight: 500;
    width: 100%;
    height: 44px;
    padding: 0px 16px;
    margin-bottom: 16px;
}
#formulario textarea{
    font-family: var(--font-montserrat);
    font-size: 0.9em;
    font-weight: 500;
    background-color: var(--color-gris-claro);
    border-radius: 22px;
    width: 100%;
    height: 200px;
    padding: 16px;
}
#formulario input[type=submit]{
    padding: 8px 24px;
    border-radius: 25px;
    font-family: var(--font-montserrat);
    font-size: 1em;
    margin-top: 16px;
    color:var(--color-white);
    background-color: var(--color-glicina);
}

/* __MENSAJE DE ERROR__ */
.formulario__input-error {
    font-size: 12px;
    margin-bottom: 0;
    display: none;
}
.formulario__input-error-activo {
	display: block;
}
.formulario__validacion-estado {
    position: absolute;
    right: 28px;
    top: 8px;
    z-index: 100;
    font-size: 16px;
    opacity: 0;
}
.formulario__mensaje, .formulario__captcha{
	height: 45px;
	line-height: 45px;
	background: #F66060;
	padding: 0 15px;
	border-radius: 3px;
	display: none;
}
.formulario__mensaje-activo {
	display: block;
}
.formulario__mensaje-exito {
	font-size: 14px;
	color: #119200;
	display: none;
}
.formulario__mensaje-exito-activo {
	display: block;
}

/* ----- -----  Estilos para Validacion ----- ----- */

.formulario__grupo-correcto .formulario__validacion-estado {
	color: #1ed12d;
	opacity: 1;
}

.formulario__grupo-incorrecto .formulario__label {
	color: #bb2929;
}

.formulario__grupo-incorrecto .formulario__validacion-estado {
	color: #bb2929;
	opacity: 1;
}

.formulario__grupo-incorrecto .formulario__input {
	border: 3px solid #bb2929;
}


/* __BTN_WHATSAPP */
#btn_whatsApp{
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99;
}
#btn_whatsApp img{
    width: 60px;
    height: auto;
    transform: scale(1);
    transition: all 0.3s ease;
}
#btn_whatsApp img:hover{
    transform: scale(1.1);
}


/* __RESPONSIVE__ */

    /* __MIN-WIDTH 1400 */
@media all and (min-width:1400px){
    #vector_down_slider{
        position: absolute;
        bottom: -2px;
        width: 101%;
        height: auto;
    }
}

    /* __MAX-WIDTH 1366 */
@media all and (max-width:1366px){
    .test-carousel .item {
        min-height: 320px;
    }
    .cont_brand .owl-nav button.owl-prev {
        left: -60px;
    }
    .cont_brand .owl-nav button.owl-next {
        right: -60px;
    }
}

    /* __MIN-WIDTH 1200 */
@media all and (max-width:1200px){
    .col_banner_img .banner, .col_banner_txt {
        height: 264px;
    }
    .col_banner_txt .tit_bn {
        font-size: 2em;
    }
    #vector_down_slider{
        bottom: -32px;
    }
    .content_arrow_down_slider{
        bottom: -12px;
    }
    .second_photo_right {
        right: 28%;
    }
}

/* __MAX-WIDTH 991 */
@media all and (max-width:992px) and (min-width:768px){
    .nav__item > a {
        font-size: 1.1em;
    }
    .col_banner_img .banner, .col_banner_txt {
        height: 198px;
    }
    .col_banner_txt .tit_bn {
        font-size: 1.4em;
    }
    .second_photo_right {
        right: 8%;
        bottom: 100px;
    }
}


    /* __MIN-WIDTH 768 */
@media all and (min-width:768px){
    .nav__toggle, .nav__close {
        display: none;
    }
}

    /* __MAX-WIDTH 768 */
@media all and (max-width:767px){
    .contacto_menu {
        position: absolute;
        top: 86%;
        right: 0px;
        display: table-cell;
        text-align: center;
        width: 100%;
    }
    .nav__menu {
        left: -4%;
    }
    .contacto_menu a {
        font-size: .9em;
    }
    .owl-carousel.home-slider .owl-nav {
        top: 84%;
    }
    .owl-carousel.home-slider .owl-nav .owl-prev {
        left: 30%;
    }
    .owl-carousel.home-slider .owl-nav .owl-next {
        right: 30%;
    }
    #vector_down_slider {
        height: 80px;
        bottom: -13px;
    }
    .content_arrow_down_slider {
        bottom: -8px;
    }
    .col_photo_bien {
        text-align: center;
    }
    .second_photo_bien, .second_photo_left {
        right: 60%;
    }
    .txt_max {
        max-width: 100%;
    }
    section#sec_bienvenido{
        background-size: auto;
    }
    #sec_bienvenido .row >div:nth-child(2){
        margin-top: 60px;
    }
    #sec_servicios .row:nth-child(2) {
        margin-bottom: 0px;
    }
    #sec_servicios .row .col-sm-4{
        margin-bottom: 40px;
    } 
    #sec_opiniones .row .col-md-3{
        margin-bottom: 24px;
    }
    #sec_certificaciones .row .tit_base{
        text-align: center;
        margin-bottom: 24px;
    } 
    .col_banner_img .banner{
        height: 512px;
        background-image: url('../images/sophie-travel-nos-encargamos-de-todo-md.png');
    }
    .col_banner_txt{
        height: 260px;
        text-align: center;
        justify-content: flex-start;
        border-radius: 0px 0px 250px 250px;
        padding: 0px 32px 0px 32px;
        margin-top: 512px;
        background-color: #f5b819;
    }
    #sec_ban_contacto{
         background-size: auto;
    }
    .max_foot_left {
        max-width: 100%;
        margin-bottom: 30px;
    }
    .col_foot_txt {
        text-align: center;
    }
    .list_footer {
        padding-left: 0;
        justify-content: center;
    }
    .list_footer li {
        margin-left: 16px;
        margin-right: 16px;
    }
    .row_foot2 div:nth-child(2) {
        text-align: center;
    }
    /* MOVIL NOSOTROS */
    #valores{
        background-size: auto;
    }
    .desc_left {
        margin-top: 100px;
    }
    .desc_row2, .desc_right {
        margin-top: 0px;
    }
    .col_photo_der{
        text-align: center;
    }
    .second_photo_right {
        left: 56%;
        bottom: -60px;
    }
    #descripcion_nost{
        padding-bottom: 60px;
    }
    #valores .cont_valores{
        padding: 0 12px;
    }
    .divider {
        width: 100vw;
        height: 80px;
        margin-top: 0px;
    }
    /* DESTINOS */
    #destinos{
        background-size: auto;
    }
    .dest_row1, .dest_row2 {
        margin-bottom: 0px;
    }
    .dest_row1 .col-6, .dest_row2 .col-6, .dest_row3 .col-6{
        margin-bottom: 40px;
    }
    /* FAQS */
    #preguntas {
        background-size: auto;
    }
    /* FORMULARIO */
    .formulario{
        margin-top: 20px;
    }
    #form_contact{
        background-size: auto;
    }
}


/* __MAX-WIDTH 576 */
@media all and (max-width:576px){
    html, body{
        overflow-x: hidden;
    }
    .owl-carousel.home-slider .slider-item .slider-text h2.sub_slider{
        font-size: 2.1em;
    }
    .owl-carousel.home-slider .slider-item .slider-text h1{
        font-size: 3.4em;
    }
    .owl-carousel.home-slider .owl-nav .owl-prev {
        left: 16%;
    }
    .owl-carousel.home-slider .owl-nav .owl-next {
        right: 16%;
    }
    #sec_marcas_caroucel{
        overflow-x: hidden;
    }
    #vector_down_slider {
        bottom: -18px;
        background-image: url('../images/down-divider-slider.svg');
        background-position: center top;
        background-repeat: no-repeat;
        background-size: 180%;
    }
    section#sec_bienvenido{
        padding: 60px 0px 120px 0px;
    }
    #sec_certificaciones .col-6{
        text-align: center;
        margin-top: 20px;
    }
    .col_banner_img{
        display: flex;
        justify-content: center;
    }
    .col_banner_img .banner{
        position: relative;
        width: 316px;
        height: 300px;
    }
    #sec_ban_contacto .row{
        justify-content: center;
    }
    .col_banner_txt{
        max-width: 316px;
        height: 260px;
        text-align: center;
        justify-content: center;
        border-radius: 0px 0px 250px 250px;
        padding: 0px 16px 40px 16px;
        margin-top: -1px;
        background-color: #f5b819;
    }
    .col_banner_txt .tit_bn {
        font-size: 1.5em;
    }
    #sec_ban_contacto{
        padding: 60px 0px 0px 0px;
    }
    .list_footer li {
        margin-left: 8px;
        margin-right: 8px;
    }
    .cont_foot_contacto a:nth-child(1) {
        margin-right: 0px;
        display: block;
        margin-bottom: 12px;
    }
}

/* __MAX-WIDTH 480 */
@media all and (max-width:480px){
    .list_footer li {
        margin-left: 4px;
        margin-right: 4px;
    }
}