/********** Template CSS **********/
:root {
    --primary: #0592e4 ;
    --secondary: #FE8800;
    --light: #F5F5F5;
    --dark: #14141F;
    --color-text: #616161;
    --color-text-btn: #ffffff;
    --card1-gradient-color1: #f12711;
    --card1-gradient-color2: #f5af19;
    --card2-gradient-color1: #7F00FF;
    --card2-gradient-color2: #E100FF;
    --card3-gradient-color1: #3f2b96;
    --card3-gradient-color2: #a8c0ff;
    --card4-gradient-color1: #11998e;
    --card4-gradient-color2: #38ef7d;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: #FFFFFF !important;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}


/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(20, 20, 31, .7), rgba(20, 20, 31, .7)), url(../img/bg-hero.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
    border-radius: 30px!important;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Destination ***/
.destination img {
    transition: .5s;
}

.destination a:hover img {
    transform: scale(1.1);
}


/*** Package ***/
.package-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.package-item img {
    transition: .5s;
}

.package-item:hover img {
    transform: scale(1.1);
}


/*** Booking ***/
.booking {
    background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/booking.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/*** Team ***/
.team-item {
    border: 1px solid rgba(0, 0, 0, .1);
    /*border-radius: 50px;*/
    border-top-left-radius: 90px!important;
    border-top-right-radius: 90px!important;
    border-bottom-left-radius: 20px!important;
    border-bottom-right-radius: 20px!important;

}

.team-item img {
    transition: .5s;
    width: 100%;
    border-top-left-radius: 90px!important;
    border-top-right-radius: 90px!important;
    display: grid;
    place-items: center;
}

.team-item:hover img {
    transform: scale(1.1);
    border-top-left-radius: 20px!important;
    border-top-right-radius: 20px!important;
}

.team-item .btn {
    background: #FFFFFF;
    color: var(--primary);
    border-radius: 20px;
    border-bottom: 1px solid var(--primary);
}

.team-item .btn:hover {
    background: var(--primary);
    color: #FFFFFF;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.destination-item img {
    transition: .5s;
}

.destination-item:hover img {
    transform: scale(1.3);
}

.destination-overlay {
    position: absolute;
    /*top: 30px;*/
    /*right: 30px;*/
    /*bottom: 30px;*/
    /*left: 30px;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*background: rgba(0, 0, 0, 0.3);*/
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: .5s;
    /*z-index: 1;*/
}

.destination-item:hover .destination-overlay {
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    border-width: 1px;
}

/* video youtube */
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.icono_servicios i{
    font-size: 3rem;
    color: var(--primary) !important;;
}
.service-item_dos:hover * {
    color: black!important;
}


.icono_proceso i{
    font-size: 3rem;
    color: white !important;;
}

.hover_otros_paquetes{
    transition: transform,color 0.3s;
    /*transition:  0.3s; !* Transición de color *!*/
}
.hover_otros_paquetes:hover h5{
    transform: scale(1.1);
    font-size: 1.3rem;
}

.hover_otros_paquetes:hover p{
    transform: scale(1.1);

}
.hover_otros_paquetes:hover .star-icon:nth-child(1) {
    color: yellow!important;
}

.hover_otros_paquetes:hover .star-icon:nth-child(2) {
    color: yellow!important;
}

.hover_otros_paquetes:hover .star-icon:nth-child(3) {
    color: yellow!important;
}

.hover_otros_paquetes:hover .star-icon:nth-child(4) {
    color: yellow!important;
}

.hover_otros_paquetes:hover .star-icon:nth-child(5) {
    color: yellow!important;
}
.oferta{
    border: 2px solid #0592e4;
}
.card_sombra{
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
    border-radius: 20px!important;
    border: none;
}
.font_size_16_px{
    font-size: 17px!important;
}
.circulo_aumentar{
    width: 28px!important;
    height: 28px!important;
    border-radius: 30px!important;
    background: #ecf0f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
}
.input_contador{
    width: 40%;border :none;outline: none;background:#ecf0f6;text-align: center;
}

.activar_oferta{
    border: 2px solid #0592e4!important;
}

.text_precio{
    font-size: 1rem!important;line-height: 1.25rem!important;font-weight: 600!important;
}
.circle_en{
    background: linear-gradient(to right, #1170c0, #2c8cd7);
    color: white;
    font-size: 13pt;
    margin: 15px 0px 0px 0px;
    height: 40px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
}

.resaltador_texto{
    background: red;
    border-radius: 4px;
    padding: 4px;
    color: white;
    font-size: 10pt;
    text-transform: uppercase;
}
.max-width-100 {
    max-width: 100%;
}

.max-height-100 {
    max-height: 100%;
}



.custom-nav-icon {
    font-size: 24px;
    color: #fff; /* Cambia el color según tus preferencias */
    background-color: #000; /* Fondo de los botones de navegación */
    padding: 10px; /* Espaciado dentro de los botones */
    border-radius: 50%; /* Hace los botones circulares */
    cursor: pointer; /* Cambia el cursor al pasar sobre los botones */
}

.custom-prev-icon:before {
    content: '\f053'; /* Icono de flecha izquierda, usa un icono de tu elección */
    font-family: FontAwesome; /* Asegúrate de que FontAwesome está cargado en tu proyecto */
}

.custom-next-icon:before {
    content: '\f054'; /* Icono de flecha derecha, usa un icono de tu elección */
    font-family: FontAwesome; /* Asegúrate de que FontAwesome está cargado en tu proyecto */
}

/* Estilos adicionales para posicionar los botones */
.owl-prev {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}

.owl-next {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.item_blog {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.containerBlog {
    transition: transform 0.3s ease, box-shadow 0.3s ease,border-radius 0.3s ease;
}
.containerBlog:hover{
    transform: translateY(-5px);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 20px;
}

.blog-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}


.blog-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.text {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 30px;
    color: white;
    text-align: center;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    background: linear-gradient(140deg, rgba(0, 0, 0, 0.4) 100%, rgba(255, 255, 0, 0) 50%);
}


/*body{*/
/*    font-family: 'Roboto', sans-serif;*/
/*    background: linear-gradient(to right, #8e9eab, #eef2f3);*/
/*    height: 100vh;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    flex-wrap: wrap;*/
/*    gap: 30px;*/
/*}*/
.card-wrap_{
    /*width: 220px;*/
    background: #fff;
    border-radius: 20px;
    /*border: 5px solid #fff;*/
    overflow: hidden;
    color: var(--color-text);
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px,
    rgba(0, 0, 0, 0.23) 0px 6px 6px;
    cursor: pointer;
    transition: all .2s ease-in-out;
    height: 100%;
}
.card-wrap_:hover{
    transform: scale(1.1);
}
.card-header_{
    height: 200px;
    width: 100%;
    background: red;
    border-radius:100% 0% 100% 0% / 0% 50% 50% 100%;
    display: grid;
    place-items: center;

}

.card-header_ i{
    color: #fff;
    font-size: 72px;
}
.card-content_{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    margin: 0 auto;
}
.card-title_{
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 20px;
    height: 45px;
}
.card-text_{
    text-align: center;
    font-size: 12px;
    margin-bottom: 20px;
}
.card-btn_{
    border: none;
    border-radius: 100px;
    padding: 5px 30px;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.card-header_.one_{
    background: linear-gradient(to bottom left, var(--card1-gradient-color1), var(--card1-gradient-color2));
}
.card-header_.two_{
    background: linear-gradient(to bottom left, var(--card2-gradient-color1), var(--card2-gradient-color2));
}
.card-header_.three_{
    background: linear-gradient(to bottom left, var(--card3-gradient-color1), var(--card3-gradient-color2));
}
.card-header_.four_{
    background: linear-gradient(to bottom left, var(--card4-gradient-color1), var(--card4-gradient-color2));
}

.card-btn_.one_{
    background: linear-gradient(to left, #0477cb, #23dcf3 );
}
.card-btn_.two_{
    background: linear-gradient(to left, var(--card2-gradient-color1), var(--card2-gradient-color2));
}
.card-btn_.three_{
    background: linear-gradient(to left, var(--card3-gradient-color1), var(--card3-gradient-color2));
}
.card-btn_.four_{
    background: linear-gradient(to left, var(--card4-gradient-color1), var(--card4-gradient-color2));
}

/* ------------------------------------------------------------------------------------- */
.container__ {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 40px;
    min-height: 100vh;
    background: #3c2846;
}

.card__ {
    background: #287bff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    /*width: 100%;*/
    height: 450px;
    /*margin: 30px;*/
    border-radius: 20px;
    border-bottom-left-radius: 160px;
    border-bottom-right-radius: 160px;
    box-shadow: 0 15px 0 #fff,
    inset 0 -15px 0 rgba(255, 255, 255, 0.24),
    0 45px 0 rgba(0, 0, 0, 0.15);
    overflow: hidden;

}

.card__::before {
    content: "";
    position: absolute;
    top: -140px;
    left: -40%;
    padding: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2));
    transform: rotate(35deg);
    pointer-events: none;
    filter: blur(5px);
}

.card__:nth-child(1) {
    background: linear-gradient(to bottom, #0477cb, #23dcf3);
}

.card__:nth-child(2) {
    background: linear-gradient(to bottom, #ffec61, #f321d7);
}

.card__:nth-child(3) {
    background: linear-gradient(to bottom, #24ff72, #9a4eff);
}

.card__ .icon__ {
    position: relative;
    width: 140px;
    height: 120px;
    background: white;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    box-shadow: 0 15px 0 rgba(0, 0, 0, 0.1),
    inset 0 -8px 0 #fff;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.card__ .icon__::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50px;
    width: 50px;
    height: 50px;
    background: transparent;
    border-top-right-radius: 50px;
    box-shadow: 15px -15px 0 15px white;
}

.card__ .icon__::after {
    content: "";
    position: absolute;
    top: 0;
    right: -50px;
    width: 50px;
    height: 50px;
    background: transparent;
    border-top-left-radius: 50px;
    box-shadow: -15px -15px 0 15px white;
}

.card__ .icon__ .ion-icon__ {
    color: black;
    position: relative;
    font-size: 5em;
    z-index: 1000;
    --ionicon-stroke-width: 24px;
}


.card__ .content__ {
    position: absolute;
    width: 100%;
    padding: 30px;
    padding-top: 150px;
    text-align: center;
}

.card__ .content__ h2 {
    font-size: 1.8em;
    color: #fff;
    margin-bottom: 15px;
}

.card__ .content__ p {
    color: #fff;
    line-height: 1.5em;
}
/* ------------------------------------------------------------------------------------- */
.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #0592e4;
    border-color: #0592e4;
}
.page-link {
    position: relative;
    display: block;
    color: #0592e4;
    background-color: #fff;
    border: 1px solid #dee2e6;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.page-link:focus {
    z-index: 3;
    color: #0592e4;
    background-color: #e9ecef;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(5, 146, 228, 0.25);
}
.page-link:hover {
    z-index: 2;
    color: #0592e4;
    background-color: #e9ecef;
    border-color: #dee2e6;
}
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo oscuro semitransparente */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Encima de todo */
}
.svgLoa {
    width: 3.25em;
    transform-origin: center;
    animation: rotate4 2s linear infinite;
}

.circleLoa {
    fill: none;
    stroke: hsl(214, 97%, 59%);
    stroke-width: 2;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: dash4 1.5s ease-in-out infinite;
}
.hoverTextWhite:hover{
    color: white;
}


@keyframes rotate4 {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash4 {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dashoffset: -125px;
    }
}

.colorAzulCamino{
    color: #1170c0;
}
.titulo-con-linea {
    position: relative;
    display: inline-block;
    color:  #1170c0 ;
    margin-bottom: 1rem;
}

.titulo-con-linea::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color:  #1170c0 ;
}

/* ------------------------------------------------ */
/* From Uiverse.io by Javierrocadev */
.card_blog {
    width: 100%;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    background-color: #fffffe;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    border: 1px solid rgba(0, 0, 0, .1);
    cursor: pointer;
}

.card_blog::before {
    content: "";
    width: 100%;
    height: 120px;
    position: absolute;
    top: 0;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom: 3px solid #fefefe;
    background: linear-gradient(to bottom, #0477cb, #23dcf3);
    /*background: linear-gradient(40deg, rgba(85, 177, 249,1) 0%, rgba(17, 112, 192,1) 50%, rgba(209, 223, 236,1) 100%);*/
    transition: all 0.3s ease;
}

.card_blog * {
    z-index: 1;
}

.image_blog {
    width: 90px;
    height: 90px;
    background-color: #1468BF;
    border-radius: 50%;
    border: 4px solid #fefefe;
    margin-top: 30px;
    transition: all 0.5s ease;
}

.card-info_blog {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.5s ease;
}

.card-info_blog span {
    font-weight: 600;
    font-size: 20px;
    color: #161A42;
    margin-top: 15px;
    line-height: 22px;
}

.card-info_blog p {
    color: rgba(0, 0, 0, 0.5);
}

/*.button_blog {*/
/*    text-decoration: none;*/
/*    background-color: #1468BF;*/
/*    color: white;*/
/*    padding: 5px 20px;*/
/*    border-radius: 5px;*/
/*    border: 1px solid white;*/
/*    transition: all 0.5s ease;*/
/*}*/

.card_blog:hover {
    width: 100%;
    border-radius: 50%;
    border: none;

}

.card_blog:hover::before {
    width: 100%;
    height: 350px;
    border-radius: 50%;
    /*border-bottom: none;*/
    transform: scale(0.95);
    border: none;
}
.card_blog:hover .card-info_blog span,
.card_blog:hover .card-info_blog p {
    color: white;
}
.card_blog:hover .card-info_blog span{
    font-size: 18px;
}

.card_blog:hover .card-info_blog {
    transform: translate(0%,-15%);
}

.button_blog:hover {
    /*background-color: #1170c0 ;*/
    /*color: white;*/
    transform: scale(1.1);
}
/* ------------------------------------------------ */

.bgSection{
    background: #f4f7fc;
}

/*------------------------------------------------*/
/* From Uiverse.io by Javierrocadev */
.card_team {
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    background-color: #fffffe;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .1);
}

.card_team::before {
    content: "";
    width: 350px;
    height: 100px;
    position: absolute;
    top: 0;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom: 3px solid #fefefe;
    background: linear-gradient(to bottom, #0477cb, #23dcf3);
    /*background: linear-gradient(40deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);*/
    transition: all 0.5s ease;
}

.card_team * {
    z-index: 1;
}

.image_team {
    width: 90px;
    height: 90px;
    background-color: #1468BF;
    border-radius: 50%;
    border: 4px solid #fefefe;
    margin-top: 30px;
    transition: all 0.5s ease;
}

.card-info_team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.5s ease;
}

.card-info_team span {
    font-weight: 600;
    font-size: 24px;
    color: #161A42;
    margin-top: 15px;
    line-height: 5px;

}

.card-info_team p {
    color: rgba(0, 0, 0, 0.5);
}

.button_team {
    text-decoration: none;
    background-color: #1468BF;
    color: white;
    padding: 5px 20px;
    border-radius: 5px;
    border: 1px solid white;
    transition: all 0.5s ease;
}

.card_team:hover {
    border: none;
}
.card_team:hover::before {
    width: 350px;
    height: 100%;
    border-bottom: none;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    transform: scale(0.95);

}

.card_team:hover .card-info_team {
    transform: translate(0%,-25%);
}

.card_team:hover .image_team {
    transform: scale(2) translate(-60%,-40%);
}

.button_team:hover {
    background-color: #FF6844;
    transform: scale(1.1);
}
.card_team:hover .card-info_team span,
.card_team:hover .card-info_team p {
    color: white;
    margin: 0;
}
/*------------------------------------------------*/

.borderRadi{
    border-radius: 20px;
}

.btn-check:checked+.btn-primary, .btn-check:active+.btn-primary, .btn-primary:active, .btn-primary.active, .show>.btn-primary.dropdown-toggle {
    color: white;
    background-color: #0477cb;
    border-color: #0477cb;
}
.circleIcons{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #0477cb, #23dcf3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
}
.circleIcons:hover{
    color: white;
}
/*.bgToursActive {*/
/*    background: #0275d8 !important; !* un azul más oscuro *!*/
/*    border: 2px solid #025aa5;*/
/*    color: #fff !important;*/
/*    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);*/
/*}*/
.bgToursActive {
    /*background: #0275d8 !important;   !* naranja fuerte para contraste *!*/
    border: 2px solid #0275d8;       /* borde más oscuro */
    color: #fff !important;          /* texto blanco */
    font-weight: bold;               /* resalta el texto */
    transform: scale(1);          /* un pequeño zoom */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* sombra más marcada */
    transition: all 0.2s ease-in-out;
}
