/* ==========================
   RESET & BASE STYLES
   ========================== */

body {
  font-family: "PT Sans", sans-serif !important;
  font-weight: 400 !important;
  background-color: var(--bs-body-bg);
}

body.no-scroll {
  overflow: hidden;
}

/* Quitar márgenes superiores a headings y uniformar tamaños */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
  -webkit-text-stroke: 0.5px currentColor;
}

/* Parrafos y listas */
p, ul, ol {
  margin-bottom: 1rem;
}

/****CUSTOM ESTILOS THEME***/
.color-primary {
    color: var(--color_primary)!important;
}
.color-primary:hover {
    color: var(--color_primary)!important;
}
.color-secondary {
    color: var(--color_secondary)!important;
}
.background-secondary {
    background-color: var(--color_secondary)!important;
}
.bg_light_primary {
    background-color: var(--bg_light_primary)!important;
}
.button-primary {
    background-color: var(--button_primary)!important;
    border-color: var(--button_primary)!important;
    color: #fff;
}
.button-primary:hover {
    background-color: var(--button_primary_hover) !important;
    border-color: var(--button_primary_hover)!important;
    color: #fff;
}
.button-primary:active {
    background-color: var(--button_primary_active)!important;
    border-color: var(--button_primary_active)!important;
    color: #fff;
}

.btn-custom {
  position: relative;
  display: inline-flex;
  align-items: center;
  background-color: var(--color_primary)!important;
  color: #fff;
  padding: 5px 10px;
  font-size: 14.4px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0px;
  overflow: hidden;
  transition: transform 0.2s ease;
  border: none;
}

.btn-custom:hover {
  transform: translateY(-1px); /* pequeño efecto de levantar */
}

/* Barrido diagonal que cubre todo el botón */
.btn-custom::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 1.2s ease; /* más lento */
}

.btn-custom:hover::after {
  left: 100%;
}

.btn-custom i {
  margin-left: 8px;
}

/**************************************************/

/* Quitar viñetas y márgenes de listas usadas para menús, iconos, etc. */

/* ==========================
   IMÁGENES Y MULTIMEDIA
   ========================== */

/* Hace que las imágenes sean responsivas */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Videos y iframes responsivos */
iframe, video {
  max-width: 100%;
  display: block;
}
/* ==========================
   ENLACES Y BOTONES
   ========================== */

/* Enlaces más suaves */
a {
  color: inherit;               /* Usa color actual del texto */
  /*text-decoration: none;*/
  transition: color 0.2s ease;
}

/* ==========================
   FORMULARIOS
   ========================== */

/* Quitar estilos raros en inputs */
input, select, textarea, button {
  font: inherit;
  color: inherit;
}

.navbar.fixed-top {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050; /* igual que Bootstrap */
    transition: all 0.3s ease;
    background-color: #fff;
}

.svg-primary svg {
    fill: var(--color_primary);
}
/*****Custom css for home, pages, blog, single, header and footer****/
.header-logo a img {
    height: auto;
    max-width: 250px;
    width: 100%;
}
.fs-7{
    font-size: 0.8rem!important;
}
.icon-socials {
    text-decoration: none !important;
}
.icon-socials i{
    background-color: #eaeaea;
    border-radius: 4px;
    padding: 3px;
    font-size: 22px;
    color: var(--color_primary);
    margin: 0px 5px;
}
.vr {
    align-self: stretch;
    background-color: currentcolor;
    display: inline-block;
    min-height: 1em;
    opacity: .25;
    width: 1px;
}
.btn-whatsapp-head {
    font-weight: 400;
    align-items: center;
    background: #00c700;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    font-size: .85rem;
    height: 25px;
    justify-content: center;
    position: relative;
    top: 0;
    width: 25px;
}
.social-icons {
    color: var(--color_primary) !important;
}

.cont-menu{
    justify-content: center !important;
}

/* =========================================================
   SLIDER LAYOUT HEADER-1
========================================================= */
.my-home-slider .swiper-slide{
    width:100%;
    height:calc(100vh - 160px);
}
.my-home-slider .swiper-slide{
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}
.my-home-slider .swiper-slide::before{
    content:'';
    position:absolute;
    inset:0;
    background-image:var(--bg);
    background-size:cover;
    background-position:center;
    transform:scale(1);
    transition:transform 7s ease;
    z-index:1;
}
.my-home-slider .swiper-slide::after{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
    z-index:2;
}
.my-home-slider .swiper-slide.swiper-slide-active::before{
    transform:scale(1.12);
}
.my-home-slider .container{
    position:relative;
    z-index:3;
}
.my-home-slider .text-content{
    max-width:900px;
    opacity:0;
    transform:translateY(40px);
    transition:
        opacity 1.2s ease,
        transform 1.2s ease;
}
.my-home-slider .swiper-slide-active .text-content{
    opacity:1;
    transform:translateY(0);
}
.my-home-slider .title-slider{
    font-size:48px;
    line-height:1.2;
    color:#fff;
    font-weight:900;
    text-shadow:rgb(0 0 0 / 60%) 3px 2px 10px;
    display:block;
}
.swiper-pagination-home{
    bottom:40px !important;
}
.swiper-pagination-home .swiper-pagination-bullet{
    width:40px;
    height:40px;
    line-height:40px;
    text-align:center;
    border-radius:50%;
    background:rgba(255,255,255,.3);
    color:#fff;
    font-weight:bold;
    opacity:1;
    transition:all .3s ease;
}
.swiper-pagination-home .swiper-pagination-bullet-active{
    background:#ffc600;
    color:#000;
    transform:scale(1.1);
}
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-pagination-home {
    position: absolute;
    bottom: 20px !important;
    width: 100%;
    text-align: center;
    z-index: 10;
}
.swiper-pagination-home .swiper-pagination-bullet {
    width: 35px;
    height: 35px;
    background-color: var(--color_primary);
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 5px !important;
    display: inline-block;
}
.swiper-pagination-home .swiper-pagination-bullet:hover {
    transform: scale(1.0);
    background-color: var(--button_primary_hover);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.swiper-pagination-home .swiper-pagination-bullet-active {
    background-color: var(--color_primary);
    transform: scale(1.11);
}
@media(max-width:768px){
    .my-home-slider .title-slider{
        font-size:28px;
    }
}
@media(max-width:576px){
    .my-home-slider,
    .my-home-slider .swiper-wrapper,
    .my-home-slider .swiper-slide{
        height:calc(100vh - 120px);
    }
    .my-home-slider .title-slider{
        font-size:1.8rem;
    }
}
/* =========================================================
   HASTA AQUI SLIDER LAYOUT HEADER-1
========================================================= */

/* =========================================================
   SLIDER LAYOUT HEADER-2
========================================================= */
.layout-slider-header-2{
    margin-top: -193px;
}
.site-header-2 {
    position: relative;
    z-index: 10;
}
.site-header-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
}
.layout-slider-header-2 .swiper-slide{
    width:100%;
    height:calc(100vh + 18px)
}

@media(max-width:576px){
    .layout-slider-header-2 .swiper-slide{
        height:calc(100vh - 120px);
    }
    .layout-slider-header-2 .title-slider{
        font-size:1.8rem;
    }
}
/* =========================================================
   HASTA AQUI SLIDER LAYOUT HEADER-2
========================================================= */


.bg-primary {
    background-color: var(--color_primary) !important;
    border-color: var(--color_primary) !important;
}
.bg-primary:hover {
    opacity: .85;
}
.bg-50 {
    background-color: var(--bg_light_primary) !important;
}

.img-cover, .img-cover img {
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.card-aword .row-custom .col-custom {
    padding: .4rem;
}
.card-aword .row-custom-col1, .card-aword .row-custom-col5 {
    margin-bottom: 1rem;
    width: 16%;
}
.card-aword .row-custom-col2, .card-aword .row-custom-col4 {
    margin-bottom: .3rem;
    width: 20%;
}
.card-aword .row-custom-col3 {
    width: 26%;
}
.card-aword .row-custom {
    align-items: end;
    flex-wrap: wrap;
    justify-content: center;
}
.text-active.active {
    border-bottom: 2px solid var(--color_primary) !important;
    color: var(--color_primary) !important;
    /*padding: 5px 0 !important;*/
}
.animate-zoom div img {
    transition: all .5s 
ease-in-out;
}
.animate-zoom:hover div img {
    transform: scale(1.1);
    transition: all .5s 
ease-in-out;
}

/*Desde aqui control navigation para tours*/
/* Contenedor de los botones */
.custom-controls {
    display: flex;
    justify-content: flex-end;
}

/* Estilos base para los botones personalizados */
.swiper-button-next-tours,
.swiper-button-prev-tours {
    background: var(--color_primary);
    color: #fff !important;
    height: 38px !important;
    width: 38px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
    text-align: center;
    margin-top: calc(0px - 44px / 2);
    position: absolute;

}

/* Posicionamiento específico para cada botón */
.swiper-button-prev-tours {
    right: 57px;
    left: auto;
}

.swiper-button-next-tours {
    left: auto;
    right: 10px;
}

/* Estados hover y deshabilitado */
.swiper-button-next-tours:hover,
.swiper-button-prev-tours:hover {
    background: var(--color_primary);
    opacity: 0.85;
    transform: scale(1.1);
}

.swiper-button-next-tours.swiper-button-disabled,
.swiper-button-prev-tours.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* Estilos para los SVG */
.swiper-button-next-tours .swiper-icon,
.swiper-button-prev-tours .swiper-icon {
    width: 20px;
    height: 20px;
    pointer-events: none;
    color: inherit;
}
/*hasta aqui control navigation para tours*/


.top-10 {
    top: 10px;
}
.bottom-10 {
    bottom: 10px;
}
.luxury-custom {
    width: 643px; 
    margin-right: 10px;
}

.btn-pulse  {
    animation: shadow-pulse 1.5s infinite;
}

/* Animación con varias pulsaciones */
@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 0 14px rgba(255, 255, 255, 0);
    }
}

/*Css para flechas navegacion de swiper luxury tours*/
/* Estilos base para los botones personalizados */
.swiper-button-next-luxury,
.swiper-button-prev-luxury {
    align-items: center;
    background: var(--color_primary);
    box-shadow: 0 0 5px #fff, 0 0 25px #fff;
    color: #fff !important;
    display: flex;
    height: 35px !important;
    justify-content: center;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    width: 35px !important;
    z-index: 9999;
}
.swiper-button-next-luxury {
    right: 0;
}
.swiper-button-prev-luxury {
    left: 0;
}

.swiper-button-next-luxury.swiper-button-disabled,
.swiper-button-prev-luxury.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}
/* Estilos para los SVG */
.swiper-button-next-luxury .swiper-icon,
.swiper-button-prev-luxury .swiper-icon {
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.bg-opacity-bottom {
    background: linear-gradient(1turn, #743300, transparent, transparent);
}
.animate-border-width:hover .border-animate-center:before {
    width: 100%;
}
.border-animate-center:before {
    border-bottom: 1px solid #fff;
    content: "";
    display: block;
    position: relative;
    transition: all .3s 
ease-in-out;
    width: 20%;
}

.destinations-swiper{
    width: 425.333px; 
    margin-right: 10px;
}
.min-h-500 {
    min-height: 500px;
}
/*Css para flechas navegacion de swiper destinations*/
/* Estilos base para los botones personalizados */
.swiper-button-next-destinations,
.swiper-button-prev-destinations {
    align-items: center;
    background: var(--color_primary) !important;
    box-shadow: 0 0 5px #fff, 0 0 25px #fff;
    color: #fff !important;
    display: flex;
    height: 35px !important;
    justify-content: center;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    width: 35px !important;
    z-index: 9999;
}
.swiper-button-next-destinations {
    right: 0;
}
.swiper-button-prev-destinations {
    left: 0;
}

.swiper-button-next-destinations.swiper-button-disabled,
.swiper-button-prev-destinations.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}
/* Estilos para los SVG */
.swiper-button-next-destinations .swiper-icon,
.swiper-button-prev-destinations .swiper-icon {
    width: 20px;
    height: 20px;
    pointer-events: none;
}
.bg-opacity-start:before {
    background: linear-gradient(90deg, #fff3ea, #fff3ea, transparent, transparent);
    content: " ";
    inset: 0;
    position: absolute;
}
.bg-opacity-start {
    background-position-x: 0;
    background-position-y: center;
    background-size: cover;
}

.hover-a:hover {
    color: var(--color_primary) !important;
}
.hover-a:hover:after {
    transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
}
.hover-a:after {
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    background: var(--color_primary) !important;
    transform: scale(0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


/*pages*/
.min-h-450 {
    min-height: 450px;
}

.fs-sm-9 {
    font-size: .9rem;
}
a {
    color: var(--color_primary);
}

.fs-sm {
    font-size: .8rem;
}

.top--10{
    top: -10px;
}
.list-style-none {
    list-style: none;
}
.letter-spacing-1 {
    letter-spacing: 1px;
}
@media (max-width: 576px) {
    .has-logo-content {
        display: none;
    }
    .cont-menu {
        align-items: center !important;
        justify-content: space-between !important
    }
    .logo-web .logo {
        width: 135px;
        height: 100%;
    }
}

/*custom*/
.btn-whatsapp {
    align-items: center;
    background: #00c700;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    font-size: .8rem;
    height: 25px;
    justify-content: center;
    position: relative;
    top: 0;
    width: 25px;
}

.min-width-100 {
    min-width: 100%;
}
.text-700 {
    color: var(--color_secondary);
}
.fs-14{
    font-size: 14px;
}
.top--15 {
    top: -15px;
}

/*DESDE AQUI CSS PARA BTN WHATSAPP MULTI AGENTE*/
.btn-whatsapp-footer {
    align-items: center;
    animation: breathe 2s ease-in-out infinite;
    background-color: #25d366;
    border: 0;
    border-radius: 50%;
    bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,.3);
    display: flex;
    height: 50px;
    justify-content: center;
    right: 20px;
    position: fixed;
    width: 50px;
    z-index: 9999
}

.btn-whatsapp-footer i {
    animation: beat 2s ease-in-out infinite;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition:all .25s ease;
}

@keyframes breathe {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,.5)
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37,211,102,0)
    }

    to {
        box-shadow: 0 0 0 0 transparent
    }
}
@keyframes beat {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.2)
    }

    to {
        transform: scale(1)
    }
}

.whatsapp-panel{
    position:fixed;
    right:20px;
    bottom:90px;
    width:350px;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.15);

    opacity:0;
    visibility:hidden;
    transform:translateY(15px);

    transition:.3s;
    z-index:9999;
}

.whatsapp-panel.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.whatsapp-header{
    background: #2DB742;
    color:#fff;
    padding:20px;
    display:flex;
    gap:15px;
    align-items:flex-start;
}

.whatsapp-header i{
    font-size:35px;
}

.whatsapp-header .wsp-title{
    margin:0;
    font-size:20px;
    font-weight:600;
}

.whatsapp-header .wsp-content{
    margin:0;
    opacity:.9;
    font-size:12px;
}

.whatsapp-body{
    padding:15px;
}

.agent-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px;
    background:#f7f7f7;
    border-radius:10px;
    margin-bottom:10px;
    transition:.3s;
    border-left: 3px solid #25d366;
}

.agent-item:hover{
    background:#efefef;
}

.agent-info{
    display:flex;
    align-items:center;
    gap:12px;
}

.agent-avatar{
    width:50px;
    height:50px;
    min-width:50px;
    border-radius:50%;
    overflow:hidden;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.agent-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.agent-info h5{
    margin:0;
    color:#333;
    font-size:15px;
}

.agent-info span{
    color:#888;
    font-size:13px;
}

.whatsapp-icon{
    color:#25D366;
    font-size:22px;
}

/*HASTA AQUI CSS PARA BTN WHATSAPP MULTI AGENTE*/

.scrollToTopBtn {
    background-color: #fff1d3;
    border: none;
    border-radius: 50%;
    bottom: 90px;
    color: #000;
    cursor: pointer;
    font-size: 26px;
    height: 38px;
    line-height: 43px;
    opacity: 0;
    overflow: hidden;
    position: fixed;
    right: 30px;
    transform: translateY(100px);
    transition: all .5s ease;
    width: 38px;
    z-index: 100;
}
.shadow-primary {
    box-shadow:
        0 0 5px var(--color_primary),
        0 0 25px var(--color_primary);
}
.showBtn {
    opacity: 1;
    transform: translateY(0)
}
.top--3 {
    top: -3px;
}

.form-control:focus {
    background-color: var(--bs-body-bg);
    box-shadow: rgba(255, 112, 0, 0.25) 0px 0px 0px 0.25rem;
    color: var(--bs-body-color);
    border-color: rgb(255, 184, 128);
    outline: 0px;
}

.fade-in {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.max-h-250 {
    max-height: 250px;
}
.min-h-250 {
    min-height: 250px;
}

.h-600 {
    height: 600px;
}
.h-500 {
    height: 500px;
}
.h-450 {
    height: 450px;
}

.form-check-input:checked {
    background-color: var(--color_primary);
    border-color: var(--color_primary);
}
.form-check-input:focus {
    border-color: var(--color_primary);
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(0, 0, 0, 0.15);
}

.accordion-custom .accordion-item{
    padding-bottom: 10px;
}
.accordion-custom .accordion-item .accordion-header .accordion-button:not(.collapsed){
    border-left-width: 4px !important;
    border-left-color: var(--color_secondary) !important;
}
.accordion-custom .accordion-item .accordion-header .accordion-button:focus{
    box-shadow: none;
}
.fw-bold-800 {
    font-weight: 800 !important;
}

.div-title-home h1{
    font-size: 32px;
    font-weight: 800;
    text-align: center;
}
@media only screen and (max-width: 768px) {
    .div-title-home h1 {
        font-size: 24.8px;
    }
}


/***** CSS PARA LAYOUT GRID 1 *****/
.wrapper-grid-1{
    position:relative;
    width:100%;
}
.wrapper-grid-1 .grid-1{
    height:100%;
}
.wrapper-grid-1 .card{
    transition:all .3s ease;
    overflow:hidden;
}
.wrapper-grid-1 .card:hover{
    transform:translateY(-2px);
}
/* IMAGE */
.wrapper-grid-1 .card img{
    transition:transform .5s ease;
}
.wrapper-grid-1 .card:hover img{
    transform:scale(1.05);
}
/* RESPONSIVE BUTTON */
@media(max-width:576px){
    .wrapper-grid-1 .btn{
        width:100%;
        margin-top:15px;
    }
    .wrapper-grid-1 .d-flex.justify-content-between{
        flex-direction:column;
        align-items:flex-start !important;
    }

}

/***** HASTA AQUI CSS PARA LAYOUT GRID 1 *****/

.header-single-tour::before {
    height: 140px;
    /*background: #202020;*/
    background: var(--color_secondary) !important;
}

/*ESTILOS EN MENU PARA HEADER 1 Y HEADER 2*/

/*Estilo generales del menu*/
#mega-menu-wrap-main-menu .mega-menu-toggle .mega-toggle-block-1 button.mega-toggle-standard {
    gap: 0px;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu a.mega-menu-link .mega-description-group .mega-menu-description {
    display:none !important;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu a.mega-menu-link .mega-description-group {
    vertical-align: baseline !important;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-flyout ul.mega-sub-menu {
    width: 350px;
    background: var(--bg_light_primary) !important;
    border-top: 3px solid var(--color_primary) !important;
    padding: 10px 3px !important;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
    color: var(--color_primary) !important;
}

/*NAV MENU HEADER 1*/
.site-header #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link:hover{
    background-color: var(--bg_light_primary) !important;
    color: var(--color_primary) !important;
} 
.site-header #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link:focus{
    background-color: transparent !important;
    color: #333;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
    color: var(--color_primary) !important;
    background-color: var(--bg_light_primary) !important;
}
.site-header #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
.site-header #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link {
    color: #333;
    background-color: transparent !important;
}
.site-header #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
    color: #131111;
    background-color: var(--bg_light_primary) !important;
}
.site-header #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover, 
.site-header #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus {
    background-color: var(--color_secondary) !important;
    color: var(--color_primary) !important;
}


/*NAV MENU HEADER 2*/
.site-header-2 #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link {
    color: #fff;
}
.site-header-2 .navbar.fixed-top #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link {
    color: #333;
}
.site-header-2 #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link:hover{
    background-color: transparent !important;
    color: var(--color_primary) !important;
} 
.site-header-2 #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link:focus{
    background-color: transparent !important;
    color: #fff;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
    color: var(--color_primary) !important;
    background-color: transparent !important;
}
.site-header-2 #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
.site-header-2 #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link {
    color: #fff;
    background-color: transparent !important;
}
.site-header-2 #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
    color: #131111;
    background-color: var(--bg_light_primary) !important;
}
.site-header-2 #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover, 
.site-header-2 #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus {
    background-color: var(--color_secondary) !important;
    color: var(--color_primary) !important;
}

/*MEDIA QUERY*/
@media only screen and (max-width: 768px) {
    #mega-menu-wrap-main-menu .mega-menu-toggle {
        background-color: var(--color_primary) !important;
    }
    #mega-menu-wrap-main-menu .mega-menu-toggle + #mega-menu-main-menu {
        background-color: var(--color_secondary) !important;
    }
    #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-flyout ul.mega-sub-menu {
        width: 300px;
    }
    #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link {
        color: #fff;
    }
    .site-header #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
    .site-header #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link {
        color: #fff;
    }
    
    .header-single-tour::before {
        height: 160px;
    }
}

/*Estilo para el swal fire*/
.swal-small{
    width:340px !important;
    font-size:15px;
}

/* icono */
.swal-small .swal2-icon{
    margin:10px auto !important;
}

.swal-small .swal2-icon .swal2-icon-content{
    font-size:28px !important;
}

/* titulo */
.swal-small .swal2-title{
    padding-top: 0px;
    font-size:20px !important;
}

/* texto */
.swal-small .swal2-html-container{
    font-size:15px !important;
}
/* contenedor botones */
.swal-small .swal2-actions{
    margin-top:10px;
}


.clients-marquee{
    position:relative;
    overflow:hidden;
    width:100%;
}

/* Desvanecimiento izquierda */
.clients-marquee::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to right, #ffffff, transparent);
}

/* Desvanecimiento derecha */
.clients-marquee::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to left, #ffffff, transparent);
}

.clients-track{
    display:flex;
    align-items:center;
    gap:20px;
    width:max-content;
    animation: scrollClients 15s linear infinite;
}

.clients-track img{
    height:70px;
    width: 150px;
    object-fit:contain;
    transition:.3s;
    /*filter:grayscale(100%);*/
    /*opacity:.7;*/
}

.clients-track img:hover{
    filter:none;
    opacity:1;
    transform:scale(1.05);
}

@keyframes scrollClients{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }

}