@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');




.breadcrumb-item a{
	color:#054573 !important;
}
.btn_contacto{
	padding:5px;
    background-color:var(--main-color);
    color: white;
	border-radius: 5px;
	font-size: 1em;
    transition: background-color 0.5s ease, color 0.5s ease; /* Transición de color */
	width:7em;
}
.btn_contacto:hover {
     background-color:#008371;
	 color:black
}




/* Contenedor de la imagen con posición relativa */
.image-container {
    position: relative;
    display: inline-block;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

/* Degradado oscuro sobre la imagen */
.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); /* Degradado de negro a transparente */
    z-index: 1;
}

/* Estilo del título flotante */
.title-overlay h2 {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    font-size: 1.785em !important;
    z-index: 2;
	font-weight:normal
}



/* Estilo de la imagen dentro del contenedor */
.image-container img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease; /* Animación suave */
}

/* Efecto de zoom al pasar el mouse */
.image-container:hover img {
    transform: scale(1.1); /* Zoom al 110% */
}

.image-container:hover::before {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0)); /* Intensificar degradado */
}

/* Transiciones suaves en los elementos flotantes */
.image-container:hover .title-overlay,
.image-container:hover .price-overlay {
    transition: transform 0.5s ease; /* Transición suave */
}



/* Hacer que las tarjetas tengan el mismo tamaño */
.card {
    height: 100%;
    overflow: hidden; /* Evita que el contenido se desborde */
    position: relative; /* Asegura el control sobre los elementos hijos */
}

/* Efecto de escala en las imágenes al pasar el mouse */
.card-img-top {
    min-height: 200px; /* Define el alto máximo de la imagen */
	max-height: 200px; /* Define el alto máximo de la imagen */
    object-fit: cover; /* Recorta la imagen para ajustarse al contenedor */
    width: 100%; /* Asegura que la imagen ocupe todo el ancho de la tarjeta */
    transition: transform 0.3s ease;
}




/* Mantener la imagen dentro del contenedor al hacer hover */
.card-img-top:hover {
    transform: scale(1.1);
}

/* Evitar que el contenido de la tarjeta se desborde */
.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}



.s-layout_container {
  max-width:1280px;
  padding-left:50px;
  padding-right:50px;
  margin-left:auto;
  margin-right:auto;
  width:100%
}

@media only screen and (max-width: 768px) {
	.s-layout_container {
	  max-width:750px;
	  padding-left:15px;
	  padding-right:15px;
	  margin-left:auto;
	  margin-right:auto;
	  width:100%;
	}
}



/* Estilo del bloque de precio */
.price-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color:var(--main-color);
    color: white;
	padding:5px;
    padding-left:10px;
	font-size: 1.175em;
    z-index: 2;
    border-radius: 5px;
    text-align: left;
    transition: background-color 0.5s ease, color 0.5s ease; /* Transición de color */
	width:7em;
}



/* Estilo del bloque de precio */
.price-overlay-destacadas {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color:var(--main-color);
    color: white;
	padding:5px;
    padding-left:10px;
	font-size: 1.175em;
    z-index: 2;
    border-radius: 5px;
    text-align: left;
    transition: background-color 0.5s ease, color 0.5s ease; /* Transición de color */
	width:7em;
}
.price-overlay-destacadas:hover {
     background-color:#008371;
}


.price-desde{
	padding-top:5px;
	font-size:0.685em !important;
	margin-bottom:-5px
}

.price-text {
   font-size:1.175em;
}




.btn-whatsapp-mobile {
    display: flex;
    width: 60px; /* Aumenta el tamaño */
    height: 60px; /* Aumenta el tamaño */
    position: fixed;
    right: 0px;
    bottom: 50vh;
    justify-content: center;
    align-items: center; /* Centra verticalmente */
    z-index: 999;
    background-color:#1DAA61;
    color: #FFFFFF;
    border-top-left-radius: 15px; /* Borde superior izquierdo redondeado */
    border-bottom-left-radius: 15px; /* Borde inferior izquierdo redondeado */
    border-top-right-radius: 0; /* Borde superior derecho sin redondeo */
    border-bottom-right-radius: 0; /* Borde inferior derecho sin redondeo */
    padding: 0; /* Mantiene el contenido ajustado */
}



.btn-whatsapp {
    display: flex;
    width: 60px; /* Aumenta el tamaño */
    height: 60px; /* Aumenta el tamaño */
    position: fixed;
    right: 0px;
    bottom: 50vh;
    justify-content: center;
    align-items: center; /* Centra verticalmente */
    z-index: 999;
    background-color:#1DAA61;
    color: #FFFFFF;
    border-top-left-radius: 15px; /* Borde superior izquierdo redondeado */
    border-bottom-left-radius: 15px; /* Borde inferior izquierdo redondeado */
    border-top-right-radius: 0; /* Borde superior derecho sin redondeo */
    border-bottom-right-radius: 0; /* Borde inferior derecho sin redondeo */
    padding: 0; /* Mantiene el contenido ajustado */
}

.lnk-whatsapp {
	text-decoration:none;
    color: #FFFFFF;
    font-size: 1.75em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lnk-whatsapp:hover {
    color: #000000;
}
	
.lnk_header{
    font-size: 0.875em;
    color: #FFFFFF !important;
    text-decoration: none;
	font-weight:bold
}

.lnk_header:hover {
    font-size: 0.875em;
    color: #000000 !important;
    text-decoration: underline;
}




/*OLD*/

.transicion_fondo{
	

background: -moz-linear-gradient(rgba(255,255,255,1) 0%, rgba(228,228,228,1) 100%);
background: -webkit-linear-gradient(rgba(255,255,255,1) 0%, rgba(228,228,228,1) 100%);
background: -webkit-gradient(linear, 0 0, 100% 0, from(rgba(255,255,255,1)), to(rgba(228,228,228,1)));
background: -o-linear-gradient(rgba(255,255,255,1) 0%, rgba(228,228,228,1) 100%);
background: linear-gradient(rgba(255,255,255,1) 0%, rgba(228,228,228,1) 100%);


}


/*** Testimonial ***/
.logosEfect img {
    width: 100px;
    height: 50px;
	transition: .5s;
}

.logosEfect img:hover {
    width: 125px;
    height: 70px;
	transition: .5s;
}
	


/*** Testimonial ***/
.IconsHeader img {
	filter: grayscale(0);
	transition: .5s;
}

.IconsHeader img:hover {
	filter: grayscale(1);
	transition: .5s;
	
}





.lnk_vermas {
    font-size: 0.875em;
    color: #E31167 !important;
    text-decoration: none;
	font-weight:bold
}

.lnk_vermas:hover {
    font-size: 0.875em;
    color: #000000 !important;
    text-decoration: underline;
}





body {
    font-family: 'Outfit', sans-serif !important;
	text-rendering: optimizeLegibility;
}

html {
  scroll-behavior: smooth;
  font-size: 14px;
}


.witout-hover div img:hover {
    filter: sepia(100%) saturate(300%) brightness(70%) hue-rotate(180deg);
}

/*
a,
a:active,
a:hover,
a:focus {
    outline: 0 !important;
    border: none !important;
    -moz-outline-style: none !important;
    text-decoration: none !important;
}
*/
.list-bottom li {
    color: #eee;
    list-style: none;
    margin-bottom: 0.5em;
}

.item-bottom a {
    color: #eee;
    list-style: none;
    text-decoration: none;
    font-size: 1em;
}

.title-footer {
    font-size: 1.1em;
    color: #9AEBA3;
    letter-spacing: 1.5px;
    font-weight: 700;
}


/* Color Theme Swatches in Hex */

.Poseidon-1-hex {
    color: #DAFDBA;
}

.Poseidon-2-hex {
    color: #9AEBA3;
}

.Poseidon-3-hex {
    color: #45C4B0;
}

.Poseidon-4-hex {
    color: #13678A;
}

.Poseidon-5-hex {
    color: #012030;
}


/* Color Theme Swatches in RGBA */

.Poseidon-1-rgba {
    color: rgba(217, 252, 186, 1);
}

.Poseidon-2-rgba {
    color: rgba(153, 234, 162, 1);
}

.Poseidon-3-rgba {
    color: rgba(68, 196, 175, 1);
}

.Poseidon-4-rgba {
    color: rgba(18, 103, 138, 1);
}

.Poseidon-5-rgba {
    color: rgba(0, 32, 48, 1);
}

.title_1 {
    font-weight: 600;
    border-bottom: 3px solid #000;
}

.title_1_cont {
    font-weight: 600;
    color: #28388e;
    font-size: 2.2em;
    border-bottom: 3px solid #000;
}

.title_1_carac {
    font-weight: 600;
    font-size: 1.5em;
    color: #28388e;
}

.bg_menu {
    background-color: #45C4B0;
}

.fixed-top {
    box-shadow: 0px 4px 3px rgba(170, 170, 170, .5);
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.navbar-nav a {
    font-weight: regular;
}

.img_brand {
    width: 100%;
}

.btn_contacto_nav {
    position: relative;
    left: 10%;
}

.bg_container_menu {
    width: 100%;
    background-color: #45C4B0;
}

.hr_slider {
    margin: auto;
    border-bottom: 4px solid #28388e;
}

.title_slider h1 {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
}

.sub-title_slider h1 {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
}

.subtitle_slider h2 {
    color: #fff;
    font-weight: 400;
    font-size: 2.5rem;
}

.sub-subtitle_slider h2 {
    color: #fff;
    font-weight: 400;
    font-size: 1.6rem;
}

.list_carac {
    font-size: 1.2em;
    margin: 1em 0;
}

input[type="search"]::placeholder {
    color: #fff;
}

.btn_cotiza {
    background: #28388e;
    color: #fff;
    border-radius: 70px !important;
}

.btn_cotiza:hover {
    background: #8e2828;
    color: #fff;
    border-radius: 70px !important;
}

.img_slide {
    width: 30rem;
}

.bg_container_slide {
    background: #eee;
}


.bg_container_head {
    background: #13678A;
}

.title_slide {
    font-weight: 600;
    color: #666;
}

.subtitle_slide {
    color: #28388e;
}

.text_slide_2 {
    color: #666;
}

.container_slide_text {
    color: #fff;
    background: rgba(13, 37, 101, 0.7);
    padding: 0 10em
}

.container_slide_text_2 {
    color: #fff;
    background: rgba(18, 31, 66, 0.7);
}

.container_slide_text_3 {
    color: #fff;
    background: 0;
    padding: 0 10em
}

.container_slide_text_black {
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
}

.main_title {
    font-size: 3.5em;
    color: #104b86;
    font-weight: bold;
}

.slide_1 {
    width: 100% !important;
    height: 650px;
    background-image: linear-gradient(125deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1)), url(../../images/slide_1.jpg);
    background-position: center;
    background-size: cover;
}

.slide_2 {
    width: 100% !important;
    height: 650px;
    background-image: linear-gradient(125deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1)), url(../../images/slide_2.jpg);
    background-position: center;
    background-size: cover;
}

.slide_3 {
    width: 100% !important;
    height: 650px;
    background-image: linear-gradient(125deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1)), url(../../images/slide_3.jpg);
    background-position: center;
    background-size: cover;
}

.slide_4 {
    width: 100% !important;
    height: 300px;
    background: url(../../images/buenos_aires.jpg);
    background-position: center;
    background-size: cover;
}

.slide_5 {
    width: 100% !important;
    height: 550px;
    background: url(../../images/invierno_arg.jpg);
    background-position: center;
    background-size: cover;
}

.slide_7 {
    width: 100% !important;
    height: 550px;
    background: url(../../images/slide_banner.png);
    background-position: center;
    background-size: cover;
}

.slide_8 {
    width: 100% !important;
    height: 550px;
    background: url(../../images/slide_regiones.png);
    background-position: center;
    background-size: cover;
}

.card_home_1 {
    width: 100% !important;
    height: 487px;
    background: url(../../images/paq/paq_1.jpg);
    background-position: center;
    background-size: cover;
}

.card_home_2 {
    width: 100% !important;
    height: 487px;
    background: url(../../images/paq/paq_2.jpg);
    background-position: center;
    background-size: cover;
}

.card_home_3 {
    width: 100% !important;
    height: 487px;
    background: url(../../images/paq/paq_3.jpg);
    background-position: center;
    background-size: cover;
}

.card_home_4 {
    width: 100% !important;
    height: 487px;
    background: url(../../images/paq/paq_4.jpg);
    background-position: center;
    background-size: cover;
}

.card_home_5 {
    width: 100% !important;
    height: 487px;
    background: url(../../images/paq/paq_5.jpg);
    background-position: center;
    background-size: cover;
}

.card_home_6 {
    width: 100% !important;
    height: 487px;
    background: url(../../images/paq/paq_6.jpg);
    background-position: center;
    background-size: cover;
}

.full_height {
    height: 100%
}

.full_width {
    width: 100%
}

.nav-link {
    color: #fff !important;
    font-size: 1em;
}

.navbar-brand {
    width: 25%
}

.title_text_slide {
    color: #333;
    font-size: 1.2em;
    text-align: center;
    font-weight: 600;
}

.bg_container_banner_text {
    background: rgba(18, 31, 66, 0.7);
    min-height: 170px;
}

.bg_container_banner_1 {
    width: 100%;
}

.title_accordion {
    color: #E31167;
    font-weight: 600;
}

.bg_container_banner_2 {
    width: 100%;
    height: 170px;
    background: linear-gradient(to bottom, rgba(18, 31, 66, 0.9), rgba(18, 31, 66, 0.9)), url(../../images/globo.jpg);
    background-size: cover;
    background-position: center;
}

.bg_container_banner_3 {
    width: 100%;
    height: 170px;
    background: linear-gradient(to bottom, rgba(18, 31, 66, 0.7), rgba(18, 31, 66, 0.7)), url(../../images/playa.jpg);
    background-size: cover;
    background-position: center;
}

.bg_container_map {
    width: 100%;
}

.bg_container_map img {
    width: 100%;
}

.bg_container_alert {
    width: 100%;
    background: tomato;
}

.title_ventajas {
    color: #28388e;
    font-size: 3.6em;
}

.bg_container_contacto {
    background: #eee;
}

.dropdown-menu {
    background: var(--main-color) !important;
}

.title_contacto {
    font-weight: 600;
    color: #28388e;
}

.styled-input {
    margin: 1.2em 0 0em;
}

.contact input[type="text"],
.contact input[type="email"],
.contact input[type="number"],
.contact textarea,
.contact select {
    color: #333;
    border: none;
    padding: .8em 1em;
    border: 1px solid #ccc;
    font-size: 16px;
    width: 100%;
    background: rgba(229, 143, 230, 0);
    outline: none;
    letter-spacing: 1px;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

.contact textarea {
    min-height: 10em;
    resize: none;
}

.contact input[type="submit"] {
    font-size: 16px;
    background: #28388E;
    border-radius: 0;
    letter-spacing: 1px;
    color: #fff;
    padding: 10px 30px;
    outline: none;
    border: none;
    cursor: pointer;
}

.contact input[type="submit"]:hover {
    background: #333;
}

.bg_container_descripcion {
    background: #fff;
    width: 100%;
}

.bg_container_footer {
    background: #fff;
}

.title_footer {
    color: #666;
    font-weight: 600;
    font-size: 1rem;
}

.link_footer {
    color: #304f82;
    font-size: 0.9rem;
}

.link_footer:hover {
    transition: 0.5s;
    text-decoration: underline;
    color: #777;
}

.item_social {
    font-size: 0.9rem;
    color: #304f82;
    text-decoration: none !important;
}

.item_social:hover {
    color:#E31167 !important;
    text-decoration: none !important;
}

.galva_slide {
    color: #000;
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:disabled,
:not(:disabled):not(.disabled) {
    box-shadow: 0 !important;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}

button {
    box-shadow: none !important
}

button:focus,
button:active {
    outline: none;
    box-shadow: none;
}

.search_style input[type="search"]:focus,
.search_style input[type="search"]:active {
    outline: none;
    box-shadow: none;
    border-bottom: 1px solid #999 !important;
    background: #45C4B0;
}

.text_consult {
    font-size: 1.3em;
    color: #fff;
}

.img_footer {
    width: 100%
}

@media (max-width:975px) {
    .title_slider h1 {
        font-size: 2.8rem;
    }

    .subtitle_slider h2 {
        font-size: 1.5rem;
        padding-top: 0.6em;
    }

    .hr_slider {
        width: 90%;
    }

    .navbar-brand {
        width: 60%
    }

    .img_footer {
        width: 90%
    }

    .container_slide_text {
        color: #fff;
        background: rgba(13, 37, 101, 0.7);
        padding: 0 5em
    }
}

@media (max-width:500px) {
    .img_slide {
        width: 20rem;
    }

    .title_1 {
        font-size: 1.3rem;
    }

    .galva_slide {
        font-size: 2rem;
    }

    .title_text_slide {
        font-size: 1em;
    }

    .container_slide_text {
        color: #fff;
        background: rgba(13, 37, 101, 0.7);
        padding: 0
    }

    .slide_text .h2 {
        border-left: 2px solid #fff;
        font-size: 1.4em
    }

    .main_title {
        font-size: 1.7em;
    }

    .text_banner_1 .h1 {
        font-size: 1.1em;
    }

    .text_banner_1 p {
        font-size: 0.9em;
    }

    .bg_container_banner_text {
        min-height: 120px
    }

    .bg_container_banner_2 {
        height: 120px;
    }

    .text_consult {
        font-size: 1.1em;
        color: #fff;
    }

    .bg_container_banner_text,
    .bg_container_banner_2 {
        background: #304f82;
    }

    .bg_container_banner_3 {
        background: 0;
    }

    .container_slide_text_3 {
        padding: 1em;
    }

    .h1 {
        font-size: 1.7em !important;
    }
}


.dropdown-toggle {
    border: 0 !important;
    box-shadow: none !important;
}

.dropdown-toggle:focus,
.dropdown-toggle:active:focus,
.dropdown-toggle.active:focus {
    outline: none;
    box-shadow: none;
}

.dropdown-toggle:focus {
    outline: none;
    box-shadow: none;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}

.item_social_color span i {
    color: #E31167 !important
}

.color_pink {
    color: #E31167 !important;
    font-size: 1.2em
}

.color_footer {
    color: var(--main-color) !important;
    font-size: 1.2em
}




.lnk_footer {
    font-size: 1em;
    color: #FFFFFF !important;
    text-decoration: none;
}

.lnk_footer:hover {
    font-size: 1em;
    color: var(--main-color) !important;
    text-decoration: underline;
}

.btn-prev {
    z-index: 1000;
    margin-left: -50px !important;
}

.btn-next {
    z-index: 1000;
    margin-right: -50px !important;
}

/*.d-swiper {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}*/

.title_home {
    color: #fff;
    font-size: 4em;
    font-weight: 400
}

.icon_frase {
    width: 160px;
    height: 160px;
    font-weight: bolder;
    border-radius: 100px;
    border: 1px dashed #E31167
}

.font-2 {
    font-size: 1.8em;
}

.destinos-container-height {
    height: 60vh;
}

.destinos-height {
    background: #1a2741;
    height: 45vh
}

.destinos-titulo {
    font-size: 3em;
    font-weight: bolder;
    color: #fff
}

.destacados-titulo {
    font-size: 3em;
    font-weight: bolder;
    color: #333
}

.destinos-subtitulo {
    font-size: 1.5em;
    color: #fff
}

.destinos-subtitulo-2 {
    font-size: 1.5em;
    color: #333
}

.news-titulo {
    font-size: 2em;
    font-weight: bolder;
    color: #333
}

.news-subtitulo {
    font-size: 2em;
    color: #333
}

.bg_destinos {
    background-size: cover;
    background-position: 50% center;
    position: relative;
    /* height: 500px;*/
    margin-right: 5px;
    border: 0;
    border-radius: 0 !important
}

.bg_destinosNew {
    background-size: cover;
    background-position: 50% center;
    position: relative;
    height: 400px;
    margin-right: 5px;
    border: 0;
    border-radius: 15px;
}


.bg_container_newsletter {
    background: #E4E4E4;
}

.inputs_footer {
    width: 49%;
}

.bg_container_footer {
    background: #1a2741
}

.item_social span i {
    font-size: 1.1em;
    color: #fff;
}

.item_social span i:hover {
    color: #E31167;
    transition: ease-out 0.5s;
    -webkit-transition: ease-out 0.5s;
    -moz-transition: ease-out 0.5s;
}

.bordered {
    border-radius: 50px;
    border: 1px solid #E31167
}

.btn-agencias {
    background: #E31167;
    border-radius: 0;
    font-size: 0.9em;
    font-weight: 400;
    color: #fff;
    transition: ease-out 0.5s;
    -webkit-transition: ease-out 0.5s;
    -moz-transition: ease-out 0.5s;
}

.btn-agencias:hover {
    background: #fff;
    color: #E31167;
}

.login-form {
    background: rgba(255, 255, 255, 0.9);
    position: fixed;
    top: 8%;
    right: 15%;
    z-index: 1000;
    font-size: 0.9em;
}

.input-login-form {
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    background: 0;
    border-bottom: 1px solid #000;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
    border: 0;
}

.h-menu {
    height: 65vh
}

.border-left {
    border-right: 1px solid #eee
}

.circle {
    position: relative;
    bottom: 7em;
    right: 7em;
    z-index: 1000;
}

.circle:hover {
    -webkit-animation: spin 8s linear infinite;
    -moz-animation: spin 8s linear infinite;
    animation: spin 8s linear infinite;
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


.container-circle {
    width: 18em;
    height: 18em;
    padding: 10em;
    margin-bottom: 12.5px;
    -webkit-transition: all .9s ease;
    /* Safari y Chrome */
    -moz-transition: all .9s ease;
    /* Firefox */
    -o-transition: all .9s ease;
    /* IE 9 */
    -ms-transition: all .9s ease;
    /* Opera */
}

.container-circle:hover {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    transform: scale(1.15);
}

.worlds_circle {
    margin-top: 0px;
    font-size: 1.8em;
    width: 18em;
    height: 18em;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.inner {
    overflow: hidden;
}

.inner img,
.inner .btnn,
.inner .btnn-1  {
    transition: all 1.5s ease;
}

.inner:hover img {
   /* transform: scale(1.1);*/
}

.btnn {
    position: absolute;
    bottom: 150px;
	left:150px;
    z-index: 1100;
    display: none;
}

.btnn-1 {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 1100;
    display: none;
}


.inner:hover .btnn,
.inner:hover .btnn-1 {
    display: block;
}

@media (min-width:1900px) {
	.destinos-container-height {
  	  height: 60vh;
	}
}

@media (min-width:1300px) {
	.destinos-container-height {
  	  height: 100vh;
	}
}


@media (max-width:1200px) {
    .login-form {
        right: 20%
    }
    .font-2 {
        font-size: 1.4em;
    }
	
	.btnn {
    position: absolute;
    bottom: 1000px;
	left:1000px;
    z-index: 1100;
    display: none;
}

	.destinos-container-height {
  	  height: 110vh;
	}


}

@media (max-width:700px) {
    .login-form {
        top: 10%;
        right: 20%
    }

    .h-menu {
        height: auto
    }

    .border-left {
        border-right: 0
    }

    .container-circle:hover {
        -webkit-transition: none !important;
        -moz-transition: none !important;
        transition: none !important;
        -webkit-transform: none !important;
        -moz-transform: none !important;
        transform: none !important;
    }
	
	.destinos-container-height {
  	  height: 110vh;
	}

	
	
}

@media (max-width: 1000px) {
    .title_home {
        font-size: 3em;
    }

    .btn-next {
        position: absolute;
        right: 0
    }





}

@media (max-width: 700px) {
    .btn-prev {
        margin-left: 0 !important;
    }

    .btn-next {
        margin-right: 0 !important;
    }

    .btn-next {
        position: absolute;
        right: 0
    }

    .circle {
        position: relative;
        bottom: 7.1em;
        right: 6.8em
    }

    .m-top {
        margin-top: 12em !important;
    }

}

@media (max-height: 840px) {
    .m-top {
        margin-top: 10em !important;
    }
}

@media (max-height: 750px) {
    .m-top {
        margin-top: 15em !important;
    }
}

@media (max-height: 615px) {
    .m-top {
        margin-top: 20em !important;
    }
}

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

/*
.carousel-control-prev {
    margin-left: -50px;
}

.carousel-control-next {
    margin-right: -50px;
}
*/


.lnk_Itinerario {
    color:#666;
	text-decoration:none;
}

.lnk_Itinerario:hover {
    color:#E31167;
	text-decoration:underline;
}


.lnk_Agencias{
    color:#E31167;
	text-decoration:none;
}

.lnk_Agencias:hover {
    color:#FFFFFF;
	text-decoration:underline;
}



.btn_1 {
    background: #E40D68 !important;
    color: #FFFFFF !important;
    border: 1px solid #E40D68;
    border-radius: 15px;
}

.btn_1:hover {
    background: #E40D68 !important;
    color: #FFFFFF !important;
    transition: .4s ease-in-out;
}
