@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap');
@font-face {
    font-family: 'Radian';
    src: url('../font/Radian Regular.otf') format('opentype');
}

:root {
    --primary-color: #fff;
    --secondary-color: #0f0d1d;
    --accent: #8f8da0;
    --text-color: #726f84;
    --button-color: #3172b3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 18px;
    line-height: 24px;
    color: var(--text-color);
    font-weight: 400;
    font-family: 'Radian', sans-serif;
}

/* generics start */
h1 {
    font-size: 72px;
    line-height: 70px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Radian', sans-serif;
}

h2 {
    font-size: 48px;
    line-height: 58px;
    font-weight: 400;
    color: var(--secondary-color);
    font-family: 'Radian', sans-serif;
}

h3 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 400;
    font-family: 'Radian', sans-serif;
}

h4 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    color: var(--secondary-color);
    font-family: 'Radian', sans-serif;
}
h5 {
    font-family: 'Calibri', sans-serif;
}
p {
    font-family: 'Calibri', sans-serif;
}
a {
    font-family: 'Calibri', sans-serif;
}
li {
    font-family: 'Calibri', sans-serif;
}
em, ul {
    font-family: 'Calibri', sans-serif;
}

.padding-top {
    padding-top: 118px;
}

.padding-bottom {
    padding-bottom: 100px;
}

a:hover {
    text-decoration: none;
}

.generic-btn {
    display: inline-block;
}

.generic-btn a {
    font-size: 16px;
    font-weight: 500;
    padding: 23px 63px;
    display: inline-block;
    color: var(--primary-color);
    background: var(--button-color);
    border: 1px solid var(--button-color);
    transition: .3s ease-in-out;
}

.generic-btn a:hover {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* header section styling start here */
.header-main-con {
    position: absolute;
    top: 0;
    border-bottom: 1px solid rgb(255 255 255 / 30%);
    z-index: 9999;
}

.header-main-con .navbar {
    padding: 0;
}

.header-main-con .navbar-light .navbar-nav .nav-link {
    color: var(--primary-color);
}

.header-main-con .navbar-light .navbar-brand {
    padding: 30px 0;

}

.header-main-con .navbar-nav {
    gap: 63px;
}

    .header-main-con .navbar-collapse {
        justify-content: space-between;
        padding: 40px 45px 41px 65px;
        border-left: 1px solid rgb(255 255 255 / 30%);
        border-right: 1px solid rgb(255 255 255 / 30%);
        font-weight: bold; /* O también puedes usar 700 */
    }

.header-social-links ul {
    gap: 8px;
}

    .header-social-links ul li a {
        width: 30px;
        height: 30px;
        border-radius: 100%;
        background: #a7a5b3;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: var(--secondary-color);
        
    }

        .header-social-links ul li a:hover {
            background: #3172B3;
            color: white;
        }

.header-main-con .nav-btns .search-btn a,
.header-main-con .nav-btns .contact-expert a {
    color: var(--primary-color);
}

    .header-main-con .nav-btns .contact-expert a:hover {
        color: #3172B3;
        text-shadow: 2px 2px 6px rgba(0,0,0,1);
    }

.search-btn {
    padding: 40px 45px;
}

.contact-expert {
    padding: 30px 30px;
    border-left: 1px solid rgb(255 255 255 / 30%);
}

.contact-expert a {
    font-size: 24px;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-expert a span {
    font-size: 16px;
    letter-spacing: 0;
}

.header-main-con .navbar-nav .nav-item a.nav-link {
    position: relative;

}

.header-main-con .navbar-nav .nav-item .nav-link.active {
    color: #3172B3;
    text-shadow: 2px 2px 6px rgba(0,0,0,1);
}

.header-main-con .navbar-nav .nav-item .nav-link::before {
    content: "";
    background: #3172B3;
    height: 0;
    width: 0;
    position: absolute;
    left: 0;
    bottom: -4px;

}

.header-main-con .navbar-nav .nav-item .nav-link.active::before,
.header-main-con .navbar-nav .nav-item .nav-link:hover::before {
    width: 24px;
    height: 2px;
}

.header-main-con .navbar-nav .dropdown-menu {
    padding: 10px 0;
    margin: 0;
    background: #3172B3;
    border: 0;
    border-radius: 0;
}

.header-main-con .navbar-nav .dropdown-menu .dropdown-item {
    padding: 7px 25px;
}

    .header-main-con .navbar-nav .dropdown-menu .dropdown-item:active,
    .header-main-con .navbar-nav .dropdown-menu .dropdown-item.active {
        background: transparent;
        color: #3172B3;
    }

    .header-main-con .navbar-nav .dropdown-menu .dropdown-item:hover {
        background: transparent;
        color: #3172B3;
    }

/* .header-main-con .navbar-nav .dropdown-menu .dropdown-item:first-child{
    padding-top: 15px;
}
.header-main-con .navbar-nav .dropdown-menu .dropdown-item:last-child{
    padding-bottom: 15px;
} */
.header-main-con .navbar-nav .nav-item .nav-link:hover {
    color: var(--button-color);
    text-shadow: 2px 2px 6px rgba(0,0,0,1);
}

.header-main-con .navbar-nav .nav-item.dropdown .nav-link.active:hover::before,
.header-main-con .navbar-nav .nav-item.dropdown .nav-link:hover::before {
    display: none;
}

/* header section styling end here */
/* banner section styling start here */
.banner-main-section {
    background: url('../Imagenes/Nuevas/NuCore - Empresarios trabajando 4.0.png') no-repeat center;
    /*    background-size: cover;
*/ /*background-size: 100% 120%;*/
    background-size: cover;
    background-position: center 0px;
    height: 900px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}



    .banner-main-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(16, 66, 109, 0.5);
        pointer-events: none;
        z-index: 1; 
    }

    .banner-main-section::after {
        content: "";
        background: url(../Imagenes/back2.png) no-repeat center;
        width: 901px;
        height: 984px;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 2; /* encima del ::before */
    }

    .banner-main-section > * {
        position: relative;
        z-index: 3; /* contenido arriba de todo */
    }


.banner-inner-section span {
    font-size: 18px;
    line-height: 20px;
    color: var(--primary-color);
    margin-bottom: 21px;
    letter-spacing: 1.5px;
}

.banner-inner-section h1 {
    /*    margin-bottom: 41px;
*/ /* margin-bottom: -300px;*/
    
    transform: translate(-100px, 340px); /* X, Y */
}

.banner-main-section .carousel {
    position: unset;
}


.banner-outer-section {
    position: relative;
    z-index: 3;
    padding-top: 128px;
}

.banner-main-section .carousel-control-prev span,
.banner-main-section .carousel-control-next span {
    background-image: none;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary-color);
}

.banner-main-section .carousel-control-prev span:hover,
.banner-main-section .carousel-control-next span:hover {
    color: var(--button-color);
}

.banner-main-section .carousel-control-prev,
.banner-main-section .carousel-control-next {
    z-index: 33;
    width: auto;
    height: 50px;
    top: 52%;
    opacity: 1;
}

.banner-main-section .carousel-control-prev {
    left: 65px;
}

.banner-main-section .carousel-control-next {
    right: 125px;
}
.video-institucional {
    font-size: 20px;
    color: #3172b3;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border-radius: 50%;
}

    .video-institucional i.big {
        font-size: 40px;
        margin-right: 700px;

    }
.icono-video {
    color: white;
    font-size: 85px;
    /*margin-left: 550px;
    margin-top: 300px;*/
    position: relative;
    z-index: 10;
    cursor: pointer;
    
}
@media (max-width: 1920px) {
    .icono-video {
        margin-left: 5px;
    }
}

/*@media (max-width: 990px) {
    .icono-video {
        margin-left: -270px;
    }
}

@media (max-width: 768px) {
    .icono-video {
        margin-left: -270px;
    }
}*/

@media (max-width: 480px) {
    .icono-video {
        margin-left: 5px;
        margin-top: -100px;
        font-size: 50px;
    }
}

.modal-content {
    border-radius: 10px;
}


/* banner section styling end here */
/* consulting services section styling start here */
.consulting-services-section {
    background: #f2f4f8;
    position: relative;
}

    .consulting-services-section::before {
        content: "";
        background: url(../Imagenes/fondoacerca.png) no-repeat;
        width: 100%;
        height: 200%;
        position: absolute;
        left: 0;
        top: 0;
    }

/*.consulting-services-box1 {
    padding: 45px 30px 49px;
    background: var(--primary-color);
}*/

   /* .consulting-services-box1 figure img {
        transition: .3s ease-in-out;
        margin-left: 0%;
        margin-top: -25%;
        display: block;
    }*/

.consulting-services-box h4 {
    display: flex;
    align-items: center; /* centra verticalmente texto e icono */
    justify-content: space-between; /* título a la izquierda, icono a la derecha */
    margin-bottom: 1rem;
}

    .consulting-services-box h4 figure {
        margin: 0;
        display: flex;
        align-items: center;
    }

    .consulting-services-box h4 img {
        max-width: 50px; /* ajusta según tu diseño */
        height: auto;
    }
   
.consulting-services-box {
    padding: 45px 30px 49px;
    background: var(--primary-color);
}

/*.consulting-services-box:hover figure img {
    transform: translateX(-8px);
}*/

    .consulting-services-box:hover h4 {
        color: #3172B3;
    }

.consulting-services-outer-section {
    position: relative;
    z-index: 2;
}


.consulting-services-img-con {
    justify-content: space-between;
}

.consulting-services-img-con a {
    font-size: 18px;
    color: var(--text-color);
    position: relative;
}

.consulting-services-box1 {
    padding: 30px 20px;
    background: var(--primary-color);
    display: grid;
    grid-template-columns: 1fr auto; /* texto ocupa todo, icono a la derecha */
    align-items: center; /* centra icono respecto al título+texto */
    gap: 20px; /* espacio entre texto e icono */
}

    .consulting-services-box1 h4 {
        margin-bottom: 10px;
    }

    .consulting-services-box1 .consulting-services-img-con {
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* texto alineado a la izquierda */
        gap: 8px;
    }

    .consulting-services-box1 figure {
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .consulting-services-box1 figure img {
            max-width: 70px;
            height: auto;
            transition: .3s ease-in-out;
        }

.consulting-services-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 31.5% 31.5% 31.5%;
}

.generic-title p {
    margin-bottom: 0;
    font-size: 20px;
}

.generic-title h2 {
    margin-bottom: 2px;
}

.generic-title {
    margin-bottom: 50px;
}

    .consulting-services-img-con a::after {
        content: "";
        width: 20px;
        height: 3px;
        background: #3172B3;
        position: absolute;
        left: 0;
        bottom: -6px;
    }

    .consulting-services-img-con a:hover {
        color: #3172B3;
    }

.consulting-services-img-con a:hover::after {
    background: var(--button-color);
}

.consulting-services-box h4 {
    margin-bottom: 12px;
    font-size: 25px;
}

/* consulting services section styling end here */
/* market section styling start here */
/* skills section styling start here */
.left-sec .title-heading {
    margin-bottom: 15px;
}

.skills>span {
    float: right;
    top: -1px;
    color: var(--text-color);
    font-size: 14px;
    position: absolute;
    right: 20px;
}

.skillbar {
    background-color: var(--button-color);
    width: 0px;
    height: 19px;
    border-radius: 8px;
}

.title-bar .title-heading {
    top: -26px;
    font-size: 14px;
    line-height: 16px;
    position: relative;
    color: var(--button-color);
}

.skills {
    background-color: #f2f4f8;
    width: 100%;
    height: 19px;
    position: relative;
    margin: 50px 0;
    border-radius: 8px;
}

.title-bar {
    position: absolute;
    top: 0;
}

.percentage {
    position: absolute;
    top: -1px;
    right: 7px;
    font-size: 14px;
    color: var(--text-color);
}

.left-sec {
    padding: 0 50px;
}

.left-sec ul li i {
    font-size: 18px;
    color: var(--button-color);
    margin-right: 8px;
}

.team-professional-lft h3,
.left-sec h5 {
    color: var(--secondary-color);
}

.market-inner-section {
    display: grid;
    gap: 94px;
    grid-template-columns: 43% 50%;
    margin-bottom: 120px;
}

.market-text-con p {
    font-size: 19px;
    line-height: 34px;
    margin-bottom: 34px;
}

.market-text-con>span {
    font-size: 24px;
    line-height: 36px;
    display: block;
    color: var(--button-color);
}

.market-contact-con a i {
    font-size: 30px;
    padding: 20px;
    color: var(--primary-color);
    transition: .3s ease-in-out;
    background: #3172B3;
}

.market-contact-con a {
    display: flex;
    gap: 30px;
    align-items: center;
    transition: .3s ease-in-out;
    position: relative; 
    z-index: 1; /* Mayor que la imagen de fondo */
    font-size: 15px;
}

.market-contact-con a ul li {
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    color: var(--secondary-color);
    transition: .3s ease-in-out;
    margin-bottom: 6px;
}

    .market-contact-con a ul li p {
        font-size: 24px;
        line-height: 28px;
        font-weight: 400;
        color: var(--text-color);
        transition: .3s ease-in-out;
    }

    .market-contact-con a:hover li,
    .market-contact-con a:hover li p {
        color: #3172B3;
    }

.market-contact-con a:hover i {
    transform: translateY(-4px);
}

.market-bottom-img img {
    border: 20px solid var(--primary-color);
}

.market-text-con {
    position: relative; 

}

    .market-text-con h2 {
        margin-bottom: 28px;
        font-size: 40px;
        line-height: 58px;
        font-weight: 600;
        position: relative;
        z-index: 1; 
        font-family: 'Radian', sans-serif;
    }

.img-nucore img{
    position: absolute;
    bottom: -30px;
    right: -50px;
    z-index: 0;
    opacity: 0.5;
    transform: rotate(100deg);
    width: 700px; /* tamaño reducido */
    height: auto;
}

.skills-con {
    margin-top: 59px;
    margin-bottom: 120px;
}

.market-video-con {
    position: relative; 
     
}

.market-bottom-img {
    position: absolute;
    right: -80px;
    bottom: -100px;
}


/* video box styling */
#fade {
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    z-index: 1001;
    -moz-opacity: 0.8;
    opacity: .80;
    filter: alpha(opacity=80);
}

#light {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 600px;
    max-height: 360px;
    z-index: 1002;
    overflow: visible;
    transform: translate(-50%, -50%);
}

#boxclose {
    width: 40px;
    height: 40px;
    font-size: 22px;
    line-height: 23px;
    border-radius: 100%;
    color: var(--button-color);
    background: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    position: absolute;
    right: -7px;
    top: -10px;
    z-index: 1002;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease-in-out;
}

#boxclose:hover {
    background: var(--button-color);
    color: var(--primary-color);
}

.boxclose:before {
    content: "×";
}

#fade:hover~#boxclose {
    display: none;
}

.video-play-icon a {
    width: 125px;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    background: #3172B3;
}

.video-play-icon a i {
    font-size: 35px;
}

.video-play-icon {
    position: absolute;
    left: -30px;
    top: 30px;
}

/* skills section styling end here */
/* characteristics section styling start here */
.characteristics-box {
    gap: 30px;
    padding: 60px 52px;
    background: var(--primary-color);
    box-shadow: 10px 10px 60px rgb(0 0 0 / 10%);
}

.characteristics-section {
    display: grid;
    gap: 0;
    grid-template-columns: 50% 50%;
    margin-bottom: -100px;
    z-index: 2;
    position: relative;
}

.characteristics-numb {
    font-size: 24px;
    line-height: 24px;
    padding: 22px;
    color: var(--button-color);
    background: rgb(60 114 252 / 20%);
}

.characteristics-box2 {
    position: relative;
    z-index: -1;
}

.characteristics-txt span {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.characteristics-txt p {
    line-height: 30px;
}

/* characteristics section styling end here */
/* market section styling end here */
/* cases section styling start here */
.cases-inner-section {
    display: grid;
    gap: 30px;
    grid-template-columns: 31.5% 31.5% 31.5%;
}

.case-text-box {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 36px 50px;
    width: 93%;
    background: transparent;
}

.case-main-box:hover .case-text-box {
    background: var(--button-color);
}

.case-text-box h3,
.case-text-box span {
    color: var(--primary-color);
}

.case-text-box figure {
    margin-bottom: 17px;
}

.case-text-box span {
    margin-bottom: 4px;
    display: block;
    letter-spacing: 1px;
}

.cases-section .generic-title {
    margin-bottom: 64px;
}

.cases-section {
    background: #f2f4f8;
    padding-top: 210px;
}

/* cases section styling end here */
/* mission section styling start here */
.mission-section {
/*    background: url('../Imagenes/Nuevas/banner-acercade2.png') no-repeat center center;
   
*/  
    background-color: #3172b3;
    background-size: cover;
    width: 100%;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    /* Asegurar que no se colapse en pantallas pequeñas */
    box-sizing: border-box;
}

    .mission-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0; /* Asegura cobertura total horizontal */
        bottom: 0; /* Asegura cobertura total vertical */
        background-color: rgba(0, 0, 0, 0.5);
       /* background-color: black;
        opacity: 0.5;*/
        z-index: 0;
    }

    .mission-section > * {
        position: relative;
        z-index: 1;
    }

/* Responsive para pantallas medianas */
@media (max-width: 768px) {
    .mission-section {
        min-height: 400px;
        background-position: center center;
        padding: 1.5rem 1rem;
    }
}

/* Responsive para móviles */
@media (max-width: 480px) {
    .mission-section {
        min-height: 300px;
        background-position: center center;
        padding: 1rem;
    }
}


.mission-inner-box {
    position: relative;
    z-index: 2;
    padding:100px;
}

.mission-inner-box h2 {
    font-weight: 600;
    margin-bottom: 10px;
}

.mission-inner-box h2,
.mission-inner-box p {
    color: var(--primary-color);
}

.mission-inner-box p {
    line-height: 34px;
    margin-bottom: 40px;
    font-size: 24px;
}

/* Imagen izquierda */
/*.mission-section::before {
    content: "";*/
/*    background: url(../Imagenes/logoizquierdo1.png) no-repeat center;
*/    /*background-size: contain;
    width: 200px;
    height: 250px;
    position: absolute;
    left: -50px;
    top: -50px;
    z-index: 0;
}*/

/* Imagen derecha */
/*.mission-section::after {
    content: "";*/
/*    background: url(../Imagenes/logoderecho1.png) no-repeat center;
*/    /*background-size: contain;
    width: 200px;
    height: 250px;
    position: absolute;
    right: -50px;
    top: 300px;
    z-index: 0;
}*/

/* RESPONSIVE: Tablets y pantallas medianas */
/*@media (max-width: 768px) {
    .mission-section::before,
    .mission-section::after {
        width: 150px !important;
        height: 200px !important;
        background-size: contain !important;
    }
}*/


/* RESPONSIVE: Celulares */
/*@media (max-width: 480px) {
    .mission-section::before,
    .mission-section::after {
        width: 100px;
        height: 150px;
    }

    .mission-section::before {
        left: -20px;
        top: -20px;
    }

    .mission-section::after {
        right: -20px;
        top: 200px;
    }
}*/

/* mission section styling end here */
/* faq section styling start here */
.faq-box .card .btn,
.faq-box .card .btn.collapsed {
    color: var(--secondary-color);
/*    background: #f2f4f8;
*/    width: 100%;
    text-align: left;
    border: 0;
    padding: 27px 30px 23px;
}

.faq-box .card .btn {
    background: transparent;
    padding: 27px 30px 30px;
}

.faq-box .card .btn:hover {
    color: var(--button-color);
}

.faq-box .card .card-header {
    padding: 0;
    margin-bottom: 0;
/*    background-color: unset;
*/    border-bottom: 0;
}

.faq-box .card .card-body {
    font-size: 16px;
    padding: 0 40px 48px 32px;
}

.card-header:first-child,
.faq-box .card {
    border-radius: 0;
}

.faq-box .card {
    margin-bottom: 10px;
    border: 1px solid #f2f4f8;
}

.faq-box .card:last-child {
    margin-bottom: 0;
}

.faq-box .card .btn span {
    color: var(--button-color);
}

.faq-box .card .btn:hover,
.faq-box .card .btn:focus {
    text-decoration: none;
}

.faq-outer-con {
    display: grid;
    gap: 28px;
    grid-template-columns: 48.5% 49%;
}

.faq-list-con {
    display: grid;
    grid-template-columns: 66% 30%;
    gap: 4%;
    align-items: start;
}

.faq-subtitle {
    font-size: 1.5rem;
    font-weight: bold;
}

.faq-description {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.5;
}
/* Título de cada sección */
.accordion-button {
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    width: 100%;
    min-height: 60px;
    color: #000;
    background-color: transparent;
    border: none;
    box-shadow: none;
    border-bottom: 2px solid #ccc;
    border-radius: 0;
    position: relative;
    padding-right: 50px;
    padding-left: 1rem;
    text-align: left;
    display: flex;
    justify-content: flex-start; /* Alinea el contenido a la izquierda */
    align-items: center; /* Centra verticalmente */
}



    .accordion-button:focus,
    .accordion-button:active,
    .accordion-button:not(.collapsed) {
        background-color: transparent;
        border: none;
        box-shadow: none;
        outline: none;
        border-bottom: 2px solid #ccc; 
    }

/* Descripción en cursiva */
.accordion-body em {
    display: block;
    font-style: italic;
    padding-top: 5px; /* añade espacio interno arriba */

    color: #333;
    margin: 0 0 1rem 0; /* margen inferior uniforme */
    line-height: 1.5; /* altura de línea consistente */
    font-size: 16px; /* asegúrate que todos tengan mismo tamaño, ajusta según tu diseño */
}

/* Lista personalizada */
.accordion-body ul {
    list-style: none; /* elimina bullets */
    padding-left: 0; /* quita indentación default */
    margin: 0; /* limpia margen si existe */
}

.accordion-body li {
    position: relative; /* necesario si usas position absolute en ::before */
    padding-left: 20px; /* espacio para el check */
    margin-bottom: 5px; /* separa los items */
    border-bottom: 0;
}

    .accordion-body li::before {
        content: '✔';
        position: absolute; /* coloca el check en posición fija */
        left: 0; /* al inicio del li */
        top: 0; /* ajusta según tu diseño, por ejemplo top: 2px; si no se ve centrado */
        color: #0066cc; /* azul */
        font-weight: bold;
    }


/* Íconos alineados completamente a la derecha */
.accordion-button .icon-up,
.accordion-button .icon-down {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
    transition: opacity 0.3s ease;
    color: #3172b3
}

.accordion-button:not(.collapsed) .icon-down {
    display: none;
}

.accordion-button.collapsed .icon-up {
    display: none;
}

/*ul.list-unstyled li {
    margin-bottom: 0.5rem;
    padding-left: 1.5em;
    position: relative;
    font-size: 0.95rem;
}

ul.list-unstyled li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

.service-box {
    background-color: #2e6dbb;*/ /* Azul */
    /*color: white;
    padding: 1.5rem;
    text-align: center;
    border-radius: 5px;
    font-size: 1rem;
}

.service-box i {
    display: block;
    font-size: 1.5rem;
    margin-top: 0.5rem;
}*/


.faq-box .card-header h5 .btn::after,
.faq-box .card-header h5 .btn.collapsed::after {
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    font-weight: 600;
    font-size: 15px;
    right: 26px;
    top: 39px;
    transform: translateY(-50%);
    color: var(--text-color);
}

.faq-box .card-header h5 .btn::after {
    content: "\f068";
}

.faq-box .card-header h5 .btn.collapsed::after {
    content: "\f067";
    color: var(--button-color);
}

.faq-img-con figure {
    margin-bottom: 48px;
    height: 34%; /* ajusta según el tamaño deseado */
    overflow: hidden; /* oculta lo que sobresale */
    position: relative;
}

    .faq-img-con figure img {
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        position: relative;
        top: -30px; /* recorta 20px desde la parte superior */
    }


.faq-img-con ul li {
    position: relative;
    padding-left: 43px;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.faq-img-con ul li:last-child {
    margin-bottom: 0;
}

.faq-img-con ul li::before {
    content: "";
    background: url(../Imagenes/like+.png) no-repeat;
    width: 20px;
    height: 15px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.exp-years {
    padding: 50px 30px 30px;
    text-align: center;
    color: var(--primary-color);
    background: #3172b3;
    margin-top: 5px;
}
/* Por defecto: flecha a la izquierda */
.arrow-icon::before {
    content: "\f060"; /* Unicode de fa-arrow-left */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

/* En pantallas pequeñas: flecha hacia arriba */
@media (max-width: 768px) {
    .arrow-icon::before {
        content: "\f062"; /* Unicode de fa-arrow-up */
    }
}


.exp-years span {
    font-size: 60px;
    line-height: 46px;
    margin-bottom: 15px
}

.exp-years small {
    font-size: 18px;
    line-height: 28px;
}

.faq-main-section .generic-title {
    margin-bottom: 65px;
}

/* faq section styling end here */
/* customer slider section styling start here */
.customer-slider-section {
    position: relative;
    background: #f2f4f8;
}

.customer-slider-section::before {
    content: "";
    background: url(../Imagenes/COMILLAS.png ) no-repeat center;
    width: 328px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.customer-slider-section::after {
    content: "";
    background: url(../images/customer-slider-right-shape.png) no-repeat center;
    width: 346px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

.customer-slider-outer-con {
    display: grid;
    gap: 23px;
    grid-template-columns: 32% 66.3%;
    position: relative;
    z-index: 3;
}

.customer-slider-review p {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 26px;
}

.customer-slider-con .owl-nav,
.customer-slider-con .owl-dots {
    display: none;
}

.customer-slider-con .owl-carousel .owl-item .customer-slider-review figure img {
    width: auto;
}

.customer-slider-review {
    padding: 40px 47px 74px 32px;
    background: var(--primary-color);
    box-shadow: 0 0 60px rgb(0 0 0 / 7%);
}

.customer-slider-con .owl-stage-outer {
    padding-bottom: 40px;
    background: transparent;
}

.customer-title-con .btn-wrap .prev-btn,
.customer-title-con .btn-wrap .next-btn {
    width: 65px;
    height: 65px;
    display: flex;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    background: var(--primary-color);
    float: left;
    margin-right: 10px;
    border: none;
    font-size: 22px;
    margin-bottom: 40px;
}

.customer-title-con .btn-wrap .prev-btn:focus,
.customer-title-con .btn-wrap .next-btn:focus {
    outline: none;
}

.customer-title-con {
    display: flex;
    flex-direction: column;
    padding-top: 30px;
}

.customer-title-con .btn-wrap {
    margin-top: auto;
}

.customer-title-con .btn-wrap .prev-btn:hover,
.customer-title-con .btn-wrap .next-btn:hover {
    cursor: pointer;
    color: var(--primary-color);
    background: var(--button-color);
}

.customer-slider-review figure {
    position: absolute;
    bottom: -40px;
    left: 32px;
}

.customer-slider-review span {
    color: var(--button-color);
}

.customer-slider-review small {
    font-size: 16px;
    letter-spacing: 1px;
}

.customer-title-con h2 {
    margin-bottom: 18px;
}

.customer-slider-review::after {
    content: "";
    background: url(../Imagenes/COMILLAS.png) no-repeat;
    width: 60px;
    height: 40px;
    position: absolute;
    bottom: 30px;
    right: 85px;
}

/* customer slider section styling end here */
/* progress counter section styling start here */
.progress-counter-section {
    background: url(../Imagenes/bannerinicio.png) no-repeat center;
    background-size: cover;
    height: 473px;
    position: relative;
    padding: 70px 0;
}

.progress-counter-section::before {
    content: "";
    background: rgb(15 13 29 / 80%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.customer-counter-inner-sec {
    position: relative;
    z-index: 3;
}

.customer-counter-inner-sec {
    display: grid;
    gap: 30px;
    grid-template-columns: 23% 23% 23% 23%;
}

.customer-counter-box {
    padding: 54px 40px 43px;
    text-align: center;
    position: relative;
    background: rgb(0 0 0 / 20%);
    border: 1px solid rgb(255 255 255 / 30%);
}

.customer-counter-box figure {
    transition: .3s ease-in-out;
}

.customer-counter-box:hover figure {
    transform: translateY(-8px);
}

.customer-counter-box .count {
    font-size: 48px;
    line-height: 36px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.customer-counter-box span {
    font-size: 18px;
    line-height: 24px;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.customer-counter-box small {
    font-size: 54px;
    line-height: 36px;
    color: var(--primary-color);
}

.customer-counter-box figure {
    margin-bottom: 32px;
}

/* progress counter section styling end here */
/* map section styling start here */
.map-section iframe {
    width: 100%;
    height: 565px;
    border: none;
}

/* map section styling end here */
/* blog section styling start here */


.blog-text-details {
    width: 90%;
    z-index: 2;
    float: right;
    margin-top: -103px;
    position: relative;
    border: 1px solid #cacaca;
    padding: 35px 40px 46px 20px;
    background: var(--primary-color);
}

.blog-inner-section {
    gap: 30px;
    display: grid;
    grid-template-columns: 31.54% 31.54% 31.54%;
}

.blog-text-details .posting-date {
    left: 0;
    top: -33px;
    font-size: 12px;
    line-height: 12px;
    position: absolute;
    text-align: center;
    padding: 10px 28px;
    display: inline-block;
    color: var(--primary-color);
    background: var(--button-color);
}

.blog-text-details .comments span,
.blog-text-details .comments span small {
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 2px;
}

.blog-text-details .comments span small {
    color: var(--button-color);
}

.blog-text-details .comments {
    margin-bottom: 23px;
}

.blog-text-details h4 {
    margin-bottom: 19px;
    font-weight: 400;
}

.blog-text-details h4 a {
    color: var(--secondary-color);
}

.blog-text-details h4 a:hover {
    color: var(--button-color);
}

.blog-text-details p {
    font-size: 16px;
    line-height: 32px;
    margin-bottom: 22px;
}

.blog-text-details .blog-btn a {
    font-size: 14px;
    line-height: 16px;
    color: var(--text-color);
    letter-spacing: 1px;
}

.blog-text-details .blog-btn a::after {
    content: "";
    background: var(--text-color);
    width: 15px;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: -7px;
}

.blog-section .generic-title {
    margin-bottom: 67px;
}

.blog-text-details .blog-btn a:hover {
    color: var(--button-color);
}

.blog-text-details .blog-btn a:hover::after {
    background: var(--button-color);
}

.blog-text-details:hover {
    box-shadow: 10px 10px 15px rgb(0 0 0 / 21%);
}
#carrousel {
    margin: 10px;
}

@media (max-width: 768px) {
    #carrousel {
        margin: 70px 0px 0px 0px;
    }
}

@media (max-width: 425px) {
    #carrousel {
        margin: 50px 0px 0px 0px;
    }
}



#carrousel .owl-carousel .logo-img {
    width: 100%;
    height: 200px; /* Ajusta según necesidad */
    object-fit: contain;
    display: block;
    margin: 0 auto;
    padding: 0px; /* Quitar padding para no dejar espacio */
    background-color: transparent !important; /* Fondo transparente */
    box-shadow: none; /* Quitar sombra si no la quieres */
    transition: all 0.2s ease;
}


#carrousel .owl-item {
    height: 300px;
    position: relative;
    transform: scale(0.7);
    -ms-transform: scale(0.7);
    transition: all 0.2s;
    z-index: 1;
}

@media (max-width: 768px) {
    #carrousel .owl-item {
        height: 270px;
    }
}

@media (max-width: 380px) {
    #carrousel .owl-item {
        height: 200px;
    }
}

#carrousel .owl-stage-outer {
    padding-bottom: 10px;
}

#carrousel .owl-item.big {
    transform: scale(1);
    -ms-transform: scale(1);
    z-index: 3;
}

#carrousel .owl-item.medium {
    transform: scale(0.8);
    -ms-transform: scale(0.8);
    z-index: 2;
}

    #carrousel .owl-item.medium.mdright {
        position: relative;
        left: -30px;
    }

@media (min-width: 768px) {
    #carrousel .owl-item.medium.mdright {
        left: 0px;
    }
}

#carrousel .owl-item.medium.mdleft {
    position: relative;
    right: -30px;
}

@media (min-width: 768px) {
    #carrousel .owl-item.medium.mdleft {
        right: 0px;
    }
}

#carrousel .owl-item.smallRight.active {
    transform: scale(0.7);
    -ms-transform: scale(0.7);
    position: relative;
    left: -30px;
}

#carrousel .owl-item.smallLeft.active {
    transform: scale(0.7);
    -ms-transform: scale(0.7);
    position: relative;
    right: -30px;
}

#carrousel .owl-nav {
    position: absolute;
    top: 30%;
    width: 100%;
}

    #carrousel .owl-nav .owl-prev {
        position: absolute;
        left: -100px;
        top: 10px;
        background: transparent !important;
        color: #000 !important;
        font-size: 80px !important;
        border: none !important;
        
    }

        /*#carrousel .owl-nav .owl-prev:hover {
            color: #adadad !important;
            border: none !important;*/ /* Quita borde */
            /*outline: none !important;*/ /* Quita borde al hacer clic/focus */
        /*}*/

    #carrousel .owl-nav .owl-next {
        position: absolute;
        right: -100px;
        top: 10px;
        background: transparent !important;
        color: #000 !important;
        font-size: 80px !important;
        border: none !important;
      
    }

        /*#carrousel .owl-nav .owl-next:hover {
            color: #adadad !important; 
            border: none !important;*/ /* Quita borde */
            /*outline: none !important;*/ /* Quita borde al hacer clic/focus */
        /*}*/
    #carrousel .owl-nav button:focus {
        outline: none !important;
        box-shadow: none !important;
    }

         
/* blog section styling end here */
/* register section styling start here */
.logo-negocio {
    width: 300px; /* tamaño por defecto */
    margin-top: -40px; /* tu ajuste original */
    max-width: 100%; /* evita que se desborde */
    height: auto; /* mantiene proporción */
}
.best-experience-section {
    padding: 105px 0;
    position: relative;
    background: #3172B3;
}



.best-experience-section .container-fluid {
    padding: 0 19%;
}

.best-experience-section::before {
    content: "";
    background: url(../Imagenes/sobreimagen.png) no-repeat;
    width: 637px;
    height: 325px;
    position: absolute;
    left: 0;
    top: 0;
}

.best-experience-section::after {
    content: "";
    background: url(../Imagenes/sobreimagen2.png) no-repeat;
    width: 329px;
    height: 324px;
    position: absolute;
    right: 0;
    top: 0;
}
/*ACERCA DE*/
.best-experience-section-acerca {
    /*    background: url(../Imagenes/Nuevas/banner-acercade3.png) no-repeat center center;
*/ background-size: cover;
    position: relative;
    padding: 60px 0;
    color: white;
    background: #3172B3;
}

    .best-experience-section-acerca::before {
        content: '';
        background: url(../Imagenes/sobreimagen.png) no-repeat;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        background-color: rgba(16, 66, 109, 0.5);
    }
.best-experience-section-acerca::after {
    content: "";
    background: url(../Imagenes/sobreimagen2.png) no-repeat;
    width: 329px;
    height: 324px;
    position: absolute;
    right: 0;
    top: 0;
}
.register-inner-section-acerca h2 {
    margin-bottom: 20px; /* Espacio entre el título y los íconos */
    color: var(--primary-color);
    text-align: center;
}

.essence-boxes {
    display: flex;
    flex-wrap: wrap; /* Permite que bajen si no caben */
    justify-content: center; /* Centra los elementos horizontalmente */
    gap: 20px; /* Espacio entre los ítems */
    margin-top: 10px; /* Separación extra si se desea */
    font-family: 'Radian', sans-serif;
}

.essence-item {
    background-color: rgba(0, 51, 102, 0.6);
    color: white;
    padding: 12px 40px;
    border-radius: 0px;
    font-weight: bold;
    font-family: 'Radian', sans-serif;
    font-size: 25px;
    min-width: 250px;
    text-align: center;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

    .essence-item:hover {
        transform: translateY(-5px);
    }

.essence-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.essence-item h5 {
    margin-top: 10px;
    font-size: 18px;
}


/*CONVERSEMOS*/
/*.best-experience-section-conversemos {
    padding: 105px 0;
    position: relative;
    background: #3172B3;
    background-size: cover;
    overflow: hidden;
}

    .best-experience-section-conversemos .container-fluid {
        padding: 0 19%;
    }*/

    /* Imágenes decorativas */
    /*.best-experience-section-conversemos::before {
        content: "";
        background: url(../Imagenes/sobreimagen+.png) no-repeat;
        background-size: contain;
        width: 637px;
        height: 325px;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
    }

    .best-experience-section-conversemos::after {
        content: "";
        background: url(../Imagenes/sobreimagen2.png) no-repeat;
        background-size: contain;
        width: 329px;
        height: 324px;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 1;
    }*/




/* Responsive ajustes */
/*@media (max-width: 992px) {
    .best-experience-section-conversemos .container-fluid {
        padding: 0 10%;
    }

    .best-experience-section-conversemos::before {
        width: 350px;
        height: 180px;
    }

    .best-experience-section-conversemos::after {
        width: 200px;
        height: 180px;
    }
}

@media (max-width: 576px) {
    .best-experience-section-conversemos {
        padding: 60px 0;
    }

        .best-experience-section-conversemos .container-fluid {
            padding: 0 5%;
        }

        .best-experience-section-conversemos::before,
        .best-experience-section-conversemos::after {
            display: none;
        }

   
}
@media (max-width: 576px) {
    .generic-btn-con {
        display: inline-block;
    }
}*/

.essence-boxes {
    display: flex;
    flex-direction: row; 
    flex-wrap: wrap; /* Para que se ajusten en varias líneas si no caben */
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.register-inner-section h2 {
    margin-bottom: 0;
    color: var(--primary-color);
    text-align: center; /* Opcional */
}


.register-inner-section {
    display: flex;
    flex-direction: row; /* fila, no columna */
    justify-content: space-between; /* texto a la izquierda, botón a la derecha */
    align-items: center; /* centra verticalmente */
    max-width: 1000px;
    margin: 0 auto;
    z-index: 3;
    position: relative;
    padding: 0 0; /* sin padding arriba y abajo */
    gap: 100px; /* opcional, para espacio entre texto y botón */
}

.register-inner-section .generic-btn a {
    width: 260px;
    padding: 23px 30px;
    text-align: center;
    color: var(--secondary-color);
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.register-inner-section .generic-btn a:hover {
    color: var(--primary-color);
    background: transparent;
}
/*conversemos*/
.register-inner-section-conversemos {
    display: flex;
    flex-direction: row; /* fila, no columna */
    justify-content: space-between; /* texto a la izquierda, botón a la derecha */
    align-items: center; /* centra verticalmente */
    max-width: 1000px;
    margin: 0 auto;
    z-index: 3;
    position: relative;
    padding: 0 0; /* sin padding arriba y abajo */
    gap: 100px; /* opcional, para espacio entre texto y botón */
}

    .register-inner-section-conversemos h2 {
        flex: 1; /* para que el texto ocupe el espacio disponible */
        margin: 0; /* elimina márgenes para que quede alineado */
        font-size: 48px; /* ajusta tamaño según tu preferencia */
        color: white;
    }

.generic-btn-con a {
    width: 260px;
    padding: 23px 30px;
    text-align: center;
    color: var(--secondary-color);
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    display: inline-block;
    border-radius: 5px; /* opcional */
    transition: all 0.3s ease;
}

    .generic-btn-con a:hover {
        color: var(--primary-color);
        background: transparent;
    }

/* register section styling end here */
/* footer section styling start here */
.footer-main-section {
    padding: 105px 0 68px;
    position: relative;
    background: #445261;
}

.footer-main-section::before {
    content: "";
    background: url(../Imagenes/sobrefooterizq.png) no-repeat;
    width: 415px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.footer-main-section::after {
    content: "";
    background: url(../Imagenes/sobrefooterderecho.png) no-repeat;
    width: 494px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

.footer-inner-section {
    z-index: 2;
    position: relative;
    display: grid;
    gap: 0;
    grid-template-columns: 31% 25% 44%;
}

.footer-inner-section h4 {
    font-weight: 400;
    margin-bottom: 23px;
    color: var(--primary-color);
    margin-top: 18px;

}
.footer-logo-con img {
    padding-bottom: 0px;
    margin-top: -40px;         
}
    .footer-logo-con p {
    font-size: 16px;
    line-height: 32px;
    color: var(--accent);
    padding-bottom: 25px;
    margin-bottom: 0;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.footer-contact-details ul {
    margin-bottom: 0;
}

.footer-contact-details {
    padding: 0px 0 35px;

}

.footer-contact-details ul li,
.footer-contact-details ul li a {
    font-size: 16px;
    line-height: 25px;
    color: white;

}

.footer-contact-details ul li a:hover {
    color: var(--button-color);
}

.footer-contact-details ul li {
    padding-left: 30px;
    margin-bottom: 15px;

}

    .footer-contact-details ul li i {
        color: #3172B3;
        position: absolute;
        left: 0;
        top: 5px;
    }

.footer-links-inner-box ul li a {
    font-size: 16px;
    line-height: 25px;
    color: white;
    margin-top: 19px; /* baja todo el bloque */
}

.footer-links-inner-box ul li a:hover {
    color: var(--button-color);
}

.footer-links-inner-box ul li {
    margin-bottom: 10px;

}

.footer-links-inner-box {
    display: grid;
    gap: 30px;
    grid-template-columns: 45.5% 42.5%;
}

.footer-logo-con figure {
    margin-bottom: 11px;
}

.footer-logo-con {
    padding-right: 40px;
}

.footer-links-box {
    padding-left: 30px;
}

.footer-newsletter-con {
    padding-left: 40px;
}

.subscription-con {
    padding: 30px 00px 36px;
/*    background: #141734;
*/}

.subscription-con p {
    margin-bottom: 27px;
    color: var(--primary-color);
}

.subs-register-con {
    position: relative;
}

.subs-register-con input {
    width: 100%;
    border: 0;
    padding: 20px 130px 20px 20px;
    font-size: 14px;
    color: var(--text-color);
}

.subs-register-con input::placeholder {
    color: var(--text-color);
}

.subs-register-con input:focus,
.subs-register-con button {
    outline: none;
}

    .subs-register-con button {
        border: 0;
        font-size: 14px;
        line-height: 16px;
        padding: 14px 20px;
        background: #3172B3;
        color: var(--primary-color);
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        transition: .3s ease-in-out;
    }

.subs-register-con button:hover {
    cursor: pointer;
    color: var(--button-color);
    box-shadow: 0 0 2px var(--button-color);
    background: var(--primary-color);
}

.footer-inner-section {
    border-bottom: 2px solid #272634;
}

.footer-copyright-con {
    padding-top: 25px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright-con p {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 0;
    color: white;
}

.footer-copyright-con .header-social-links ul li a {
    color: var(--secondary-color);
}

.footer-copyright-con .header-social-links ul li a:hover {
    color: var(--primary-color);
}

/* footer section styling end here */
/* services page styling start here */
.sub-banner-section {
    background: url('../Imagenes/Nuevas/Banner 5.png') no-repeat center;
    background-size: cover;
    height: 550px;
    text-align: center;
    position: relative;
    overflow: hidden; /* para que los pseudo-elementos no se salgan */
}

    /* Capa de color semitransparente */
    .sub-banner-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(16, 66, 109, 0.5); /* #10426d con 50% de opacidad */
        z-index: 1;
        pointer-events: none;
    }

    /* Imagen decorativa encima de la capa de color */
    .sub-banner-section::after {
        content: "";
        position: absolute;
        top: 0;
        left: 900px;
        right: 0;
        bottom: 0;
        background: url(../Imagenes/back2.png) no-repeat center;
        background-size: cover;
        z-index: 2;
    }

    /* Asegurar que el contenido quede encima de todo */
    .sub-banner-section > * {
        position: relative;
        z-index: 3;
    }

.sub-banner-section-conversemos {
    background: url('../Imagenes/Nuevas/Banner 4.png') no-repeat center 20%;
    background-size: cover;
    height: 550px;
    text-align: center;
    position: relative;
    width: 100%;
    overflow: hidden; /* Para que los pseudo-elementos no se desborden */
}

    /* Capa semitransparente */
    .sub-banner-section-conversemos::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(16, 66, 109, 0.5); /* #10426d con opacidad */
        z-index: 1;
        pointer-events: none;
    }

    /* Imagen decorativa */
    .sub-banner-section-conversemos::after {
        content: "";
        background: url(../Imagenes/back2.png) no-repeat;
        background-size: cover;
        width: 584px;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 2;
        pointer-events: none;
    }

    /* Asegura que el contenido HTML esté por encima */
    .sub-banner-section-conversemos > * {
        position: relative;
        z-index: 3;
    }

.sub-banner-inner-section {
    padding-top: 120px;
    position: relative;
    z-index: 2;
}
.core-services-inner-con {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch; /* CLAVE 1: Hace que todas las tarjetas tengan la misma altura */
    gap: 40px; /* Reduje el gap para un look más compacto */
    padding: 20px;
}

/* --- Estilo de cada Tarjeta Individual --- */
.core-service-box {
    display: flex;
    flex-direction: column; /* Organiza el contenido de la tarjeta en vertical */
    align-items: center; /* Centra el contenido horizontalmente */
    text-align: center; /* Centra el texto de la lista */
    width: 320px; /* Un ancho fijo o max-width ayuda a la consistencia */
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

    /* --- Imagen de la Tarjeta --- */
    .core-service-box figure {
        margin-bottom: 20px;
        transition: transform 0.3s ease-in-out;
    }

        .core-service-box figure img {
            max-width: 160px;
            max-height: 107px;
        }

    /* --- Título de la Tarjeta --- */
    .core-service-box h3 {
        line-height: 1.2;
        margin-bottom: 20px;
        font-size: 24px;
        color: #333;
    }

    /* --- Lista de Servicios --- */ .core-service-box ul {
        padding-left: 0;
        margin-bottom: 25px;
        list-style: none;
        width: 100%; /* Permite que la lista ocupe el ancho completo para alinear a la izquierda */
        text-align: left; /* Alinea la lista completa a la izquierda dentro de su espacio */
    }

        .core-service-box ul li {
            font-size: 16px;
            line-height: 1.5;
            margin-bottom: 8px;
            position: relative;
            padding-left: 20px; /* Espacio para el punto y un poco de margen */ /* Aquí quitamos 'display: inline-block' y 'text-align: left' del li */ /* para permitir que el 'text-align: left' del ul sea el que domine */
        }

            .core-service-box ul li::before {
                content: "";
                background: #3172B3;
                width: 5px;
                height: 5px;
                border-radius: 50%;
                position: absolute;
                left: 0; /* Posicionamos el punto al inicio del padding-left del li */
                top: 10px;
            }

    /* --- Contenedor del Botón 'Conoce más' --- */
    .core-service-box .service-btn {
        margin-top: auto; /* CLAVE 2: Empuja este div (y el botón dentro) al final de la tarjeta */
    }


    /* --- Efectos Hover --- */
    .core-service-box:hover figure {
        transform: translateY(-8px);
    }

    .core-service-box:hover h3 {
        color: #3172B3;
    }

/* --- Clases genéricas para el botón (simulando Bootstrap) --- */
.btn {
    display: inline-block;
    font-weight: 400;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-color: #3172B3;
    border: 1px solid transparent;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 0.25rem;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out;
}

.btn-primary:hover {
    background-color: #285a8c;
}
/* services page styling end here */
/* supplementory section styling start here */
.supplementory-right-img-box .supplementory-icon {
    width: 125px;
    height: 125px;
    background: #3172B3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 30px;
    left: -40px;
}

.supplementory-right-img-box {
    position: relative;
    float: right;
    margin-top: 11px;
}

.supplementory-inner-section {
    display: grid;
    gap: 68px;
    grid-template-columns: 43% 51%;
    align-items: center;
    position: relative;
}

.supplementory-left-box p {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 49px;
}

.supplementory-left-box h2 {
    margin-bottom: 28px;
}

.supplementory-left-box .service-btn a {
    letter-spacing: 2px;
}

.supplementory-left-box .service-btn a {
    letter-spacing: 1px;
    position: relative;
    color: var(--button-color);
}

.supplementory-left-box .service-btn a::before {
    content: "";
    background: var(--button-color);
    width: 20px;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: -9px;
}

.supplementory-left-box .service-btn a:hover {
    color: var(--secondary-color);
}

.supplementory-left-box .service-btn a:hover::before {
    background: var(--secondary-color) !important;
}

.supplementory-section .generic-title {
    margin-bottom: 61px;
}

.supplementory-section {
    position: relative;
}
/*un poco de nosotros */
.supplementory-section::after {
    content: "";
/*    background: url(../Imagenes/fondoacerca.png) no-repeat;
*/    background-size: cover;
    width: 537px;
    height: 860px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

/* supplementory section styling end here */
/* supplementory section reverse order section styling start here */
.supplementory-section.supplementory-reverse-order-section {
    background: #f2f4f8;
}

    .supplementory-section.supplementory-reverse-order-section::before {
        content: "";
        background: url(../Imagenes/fondoacerca.png) no-repeat;
        background-size: contain;
        background-repeat: no-repeat;
        width: 1118px;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
    }

.supplementory-section.supplementory-reverse-order-section::after {
    display: none;
}

.supplementory-section.supplementory-reverse-order-section .supplementory-left-box {
    order: 2;
}

.supplementory-section.supplementory-reverse-order-section .supplementory-right-img-box .supplementory-icon {
    right: -44px;
    left: unset;
}

.supplementory-section.supplementory-reverse-order-section .supplementory-inner-section {
    gap: 78px;
    grid-template-columns: 56% 37%;
}

.supplementory-section.supplementory-reverse-order-section .supplementory-right-box .supplementory-right-img-box {
    float: left;
}

.supplementory-section.supplementory2-section::after {
    display: none;
}

/* supplementory section reverse order section styling end here */
/* single service page styling start here */
.single-service-img-con .single-service-search-icon {
    width: 125px;
    height: 125px;
    background: var(--button-color);
    position: absolute;
    left: 30px;
    bottom: -35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-service-img-con {
    margin-bottom: 145px;
}

.single-service-inner-con p {
    line-height: 34px;
    margin-bottom: 36px;
}

.single-service-inner-con p span {
    color: var(--button-color);
}

.single-service-inner-con .generic-title h2 {
    margin-bottom: 0;
}

.single-service-inner-con .generic-title {
    margin-bottom: 70px;
}

.single-service-consumer-market h2 {
    margin-bottom: 25px;
}

.single-service-consumer-market {
    margin-bottom: 57px;
}

.single-service-sub-text-con p {
    margin-bottom: 34px;
}

.single-service-sub-section {
    display: grid;
    gap: 30px;
    grid-template-columns: 49% 48%;
    margin-bottom: 100px;
}

.sub-page-form h2 {
    margin-bottom: 18px;
}

.sub-page-form ul {
    display: grid;
    gap: 20px 30px;
    margin-bottom: 24px;
    grid-template-columns: 31.5% 31.5% 31.5%;
}

.sub-page-form ul li input {
    width: 100%;
    height: 45px;
}

.sub-page-form ul li span.error {
    font-size: 14px;
    line-height: 16px;
    color: red;
    padding: 5px 10px;
}

.sub-page-form ul li textarea,
.sub-page-form ul li input {
    width: 100%;
    padding: 6px 10px 6px;
    font-size: 16px;
    line-height: 26px;
    caret-color: var(--text-color);
    border: 1px solid #d1d1d1;
}

.sub-page-form ul li textarea {
    min-height: 206px;
    resize: none;
    color: var(--text-color);
}

.sub-page-form ul li textarea:focus,
.sub-page-form ul li input:focus {
    outline: none;
    border-color: var(--button-color);
}

.sub-page-form ul li textarea::placeholder,
.sub-page-form ul li input::placeholder {
    color: var(--text-color);
}

.sub-page-form ul li:last-child {
    grid-column: 1/-1;
}

.submit-btn button {
    width: 254px;
    padding: 23px 20px;
    border: none;
    border: 1px solid var(--button-color);
    font-size: 16px;
    letter-spacing: 1px;
    background: var(--button-color);
    color: var(--primary-color);
    transition: .3s ease-in-out;
}

.sub-page-form ul li {
    text-align: left;
}

.submit-btn button:focus {
    outline: none;
}

.submit-btn button:hover {
    cursor: pointer;
    background: transparent;
    color: var(--button-color);
}

/* single service page styling end here */
/* about page styling start here */
.about-page-banner {
    background: url(../images/about-banner-img.jpg) no-repeat center;
    background-size: cover;
}

/* about vision section styling start here */
.vision-inner-section {
    display: grid;
    gap: 81px;
    grid-template-columns: 44% 48.7%;
}

.vision-text-con p {
    line-height: 34px;
    margin-bottom: 34px;
}

.vision-text-con p span {
    color: var(--button-color);
}

.vision-text-con h2 {
    margin-bottom: 18px;
}

.vision-scope-img {
    width: 125px;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--button-color);
    position: absolute;
    top: 30px;
    left: -40px;
}

.vision-text-con {
    padding-top: 65px;
}

/* about vision section styling end here */
/* about team section styling start here */
.about-team-member-details {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    width: 100%;
    z-index: 2;
}

.about-team-member {
    position: relative;
    display: inline-block;
}

.about-team-member figure {
    overflow: hidden;
}

.about-team-member-details span {
    font-size: 16px;
    line-height: 18px;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.about-team-member-details h3 {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.about-team-member figure::after {
    content: "";
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.9) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}

.about-team-member:hover figure img {
    scale: 1.1;
}

.about-team-member figure img {
    transition: .3s ease-in-out;
}

.about-team-member .header-social-links ul li a {
    width: 24px;
    height: 24px;
    font-size: 14px;
}

.about-team-inner-con {
    display: grid;
    gap: 50px 30px;
    grid-template-columns: 31.5% 31.5% 31.5%;
}

.about-team-section .generic-title {
    margin-bottom: 64px;
}

/* about team section styling end here */
/* about page styling end here */
/* case page styling start here */
.case-study-section .supplementory-left-box p {
    font-size: 18px;
    line-height: 34px;
    margin-bottom: 33px;
}

.case-study-section .supplementory-left-box h2 {
    margin-bottom: 10px;
}

.case-study-section .supplementory-right-img-box {
    margin-top: 0;
}

.case-study-section .supplementory-left-box {
    margin-top: 5px;
}

.supplementory-section.case-study-section::after {
    display: none;
}

.case-banner-section {
    background: url('../Imagenes/Nuevas/Banner 10.png') no-repeat center;
    background-size: cover;
}

/*#businessCarousel {
    max-width: 100%; 
    max-height: 500px;
    margin: 0 auto; 
    overflow: visible;*/ /* Cambié a visible para que flechas no se corten */
    /*position: relative;*/ /* Para posicionar controles relativos */

/*}*/

     /*.carousel-inner img {
        position: relative;
        width: 100%;*/ /* Ancho total del contenedor */
        /*height: 500px;
        object-fit: cover;*/ /* Mantener proporción y recortar si es necesario */
        /*object-position: center 30%;*/ /* 50% es el centro vertical; 60% baja un poco */
        /*z-index: 1;
    }*/

    /*.carousel-item {
        position: relative;
    }*/

/* Estructura general del slide */
.servicio-slide {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    gap: 30px;
}

.contenido-servicio {
    flex: 1 1 50%;
}

.imagen-servicio {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .imagen-servicio img {
        width: 100%;
        max-width: 450px;
        height: auto;
        box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
        object-fit: contain;
    }

/* Textos */
.numero-servicio {
    color: #3172b3;
    font-weight: bold;
    font-size: 28px;
}

.contenido-servicio h5 {
    font-weight: bold;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: left;
}

.contenido-servicio p {
    font-size: 18px;
    margin-bottom: 30px;
    text-align: left;
}

.contenido-servicio ul {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 18px;
    text-align: left;
}

/* RESPONSIVO */
/*@media (max-width: 768px) {
    .servicio-slide {
        flex-direction: column;
        padding: 20px;
    }

    .contenido-servicio,
    .imagen-servicio {
        flex: 1 1 100%;
        text-align: center;
    }

        .contenido-servicio h5 {
            font-size: 24px;
            text-align: center;
        }

        .contenido-servicio p,
        .contenido-servicio ul {
            font-size: 18px;
            text-align: center;
        }

        .imagen-servicio img {
            max-width: 80%;
        }
}*/


         /*.carousel-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.4);*/ /* overlay con opacidad */
            /*z-index: 2;
        }*/

/*#businessCarousel .carousel-caption {
    position: absolute;
    z-index: 3;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    text-align: left;
    color: white;
}*/

/*.numero-servicio {
    color: #004c82;
    font-weight: bold;
    margin-left: -100px;*/ /* ajusta la cantidad a tu gusto */
/*}*/
/* Título del servicio */
    /*.carousel-caption h5 {
        font-weight: bold;
        font-size: 32px;*/ /* tamaño mayor y legible */
        /*margin-bottom: 20px;*/ /* espacio inferior */
        /*text-align: left;*/ /* alineación izquierda */
    /*}*/

/* Descripción en cursiva */
/*.carousel-caption p {
    font-size: 20px;
    margin-bottom: 40px;
    margin-left: -70px;*/ /* ajusta la cantidad a tu gusto */
    /*text-align: left;*/ /* alineación izquierda */
/*}*/

/* Lista de puntos */
/*.carousel-caption ul {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 20px; 
    margin-bottom: 100px;*/ /* sin espacio extra abajo */
    /*margin-left: -70px;*/ /* ajusta la cantidad a tu gusto */

/*}*/

/* Cada punto de la lista */
    /*.carousel-caption ul li {
        margin-bottom: 0px;*/ /* espacio entre puntos */
        /*text-align: left;*/ /* alineación izquierda */
    /*}*/

/* cambiar el color de los puntos de lista */
/*.carousel-caption ul {
    color: white; 
}*/

/* Si prefieres personalizar aún más los bullets */

.carousel-caption ul li::marker {
    color: #ffffff; /* color de los bullets */
}


.carousel {
    position: relative;
    min-height: 500px; /* puedes ajustar esta altura */
}

/* Estilo de los indicadores (bolitas) */
.carousel-indicators {
    position: absolute;
    bottom: 15px; /* coloca los indicadores en la parte inferior del carrusel */
    left: 0;
    right: 0;
    justify-content: center;
    margin: 0;
    padding: 0;
    z-index: 10;
}

    .carousel-indicators li {
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background-color: #BDBDBD;
        margin: 0 5px;
    }

    .carousel-indicators [data-bs-target] {
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background-color: #bdbdbd; /* cambia a color  */
        margin: 0 5px; 
        border: none;
    }

    .carousel-indicators .active {
        background-color: #004c82; /* color del puntito activo */
    }

.prev-btn, .next-btn {
    background: none;
    border: none; 
    font-size: 35px; 
    color: #004c82; 
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.prev-btn {
    left: -90px; /* ajusta según tu diseño */
}

.next-btn {
    right: -100px; /* ajusta según tu diseño */
}

    .prev-btn:hover, .next-btn:hover {
        color: #00263a; /* tono más oscuro al hover si deseas */
    }

.custom-control {
    width: auto; /* ajusta al contenido */
}

    .custom-control .control-text {
        font-size: 80px; /* tamaño del símbolo */
        color: #004c82; /* cambia a tu color corporativo si deseas */
        background: none; /* sin fondo */
        border: none;
    }

.carousel-control-prev {
    left: -50px; /* posición fuera de la imagen */
}

.carousel-control-next {
    right: -50px; /* posición fuera de la imagen */
}
.carousel-control-prev,
.carousel-control-next {
    opacity: 1; /* siempre visibles */
    background: none; /* sin fondo */
    width: auto; /* ancho ajustado al símbolo */
    padding: 0; /* sin padding */
    margin: 0; /* sin margen extra */
    border: none;
            color: #004c82; /* cambia a tu color corporativo si deseas */

}

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        opacity: 1; /* sin efecto hover */
    }

    .carousel-control-prev .control-text,
    .carousel-control-next .control-text {
        font-size: 40px; /* ajusta tamaño */
        color: #000; /* color del símbolo */
        display: inline-block;
        line-height: 1; /* evita espacio vertical */
        border: none;
        color: #004c82; /* cambia a tu color corporativo si deseas */
    }


.generic-btn2 a {
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    color: var(--button-color);
}

.generic-btn2 a::before {
    content: "";
    background: var(--button-color);
    width: 20px;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: -9px;
}

.generic-btn2 a:hover {
    color: var(--secondary-color);
}

.generic-btn2 a:hover::before {
    background: var(--secondary-color);
}

.case-expert-section {
    background: #f2f4f8;
}

.case-expert-box {
    background: var(--primary-color);
    box-shadow: 10px 10px 25px 0 rgb(0 0 0 / 10%);
    padding: 33px 15px 45px 30px;
    display: flex;
    flex-direction: column;
    transition: .2s ease-in-out;
}

.case-expert-box:hover h4 {
    color: var(--button-color);
}

.case-expert-box:hover {
    box-shadow: 10px 10px 25px 0 rgb(0 0 0 / 20%);
}

.case-experts-inner-con {
    display: grid;
    gap: 20px 24px;
    grid-template-columns: 23.3% 23.3% 23.3% 23.3%;
}

.case-expert-box .generic-btn2 {
    margin-top: auto;
}

.case-expert-box p {
    font-size: 16px;
    line-height: 24px;
}

.case-expert-box h4 {
    margin-bottom: 18px;
}

.case-expert-box p {
    margin-bottom: 26px;
}

.case-expert-section {
    position: relative;
}

.case-expert-section::before {
    content: "";
    background: url(../images/communication-bg-img.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 1118px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.case-expert-section .generic-title,
.case-expert-section .case-experts-inner-con {
    z-index: 3;
    position: relative;
}

.consultancy-section::after {
    display: none;
}

/* case page styling start here */
/* contact page styling start here */
.contact-cases-section {
    padding-top: 118px;
    position: relative;
}

.contact-cases-section .case-main-box .case-text-box {
    background: var(--button-color);
    padding: 36px 30px 55px;
}

.contact-cases-section .case-main-box .case-text-box.location-box {
    padding: 36px 30px 29px;
}

.contact-cases-section .case-text-box a {
    font-size: 24px;
    color: var(--primary-color);
}

.contact-cases-section .case-text-box a:hover {
    text-decoration: underline;
}

.contact-cases-section .case-text-box p {
    color: var(--primary-color);
    font-size: 22px;
    line-height: 26px;
}

.contact-cases-section .case-text-box span {
    margin-bottom: 6px;
}

.contact-cases-section .case-text-box figure {
    margin-bottom: 25px;
}

.contact-cases-section::before {
    content: "";
    background: url(../images/contact-case-shape.png) no-repeat center;
    background-size: contain;
    width: 635px;
    height: 496px;
    position: absolute;
    left: 0;
    top: -10px;
}

.contact-form-section .generic-title {
    margin-bottom: 44px;
}

.contact-form-section .map-section iframe {
    height: 500px;
}

.contact-form-inner-con {
    margin-bottom: 74px;
}

/*BOTON DE ENVIAR*/
.btn-primary {
    margin-top: 40px;
    background-color: #3172b3; /* Naranja personalizado */
}

    .btn-primary:hover {
        background-color: #3172b3; /* Más oscuro al pasar el mouse */

    }



/* contact page styling end here */
/* 404 page styling start here */
.opps-inner-con p {
    font-size: 36px;
    line-height: 36px;
    color: var(--secondary-color);
    letter-spacing: -0.46px;
}

.opps-inner-con figure {
    margin-bottom: 39px;
}

.oops-section {
    padding: 150px 0;
}

/* 404 page styling end here */
/* blog page styling start here */
.blog-banner-section {
    background: url('../Imagenes/Nuevas/Banner 3.png') no-repeat center top;
    background-position: center 30%;
    background-size: cover;
    width: 100%;
    height: 550px;
    position: relative;
    overflow: hidden;
}
    .blog-banner-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(16, 66, 109, 0.5); /* Color #10426d con 50% de opacidad */
        z-index: 1;
    }

    .blog-banner-section:after {
        background: url(../Imagenes/back2.png) no-repeat center;
        background-size: cover;
        z-index: 2;
    }
    .blog-banner-section > * {
        position: relative;
        z-index: 3;
    }
.servicios-banner-section {
    background: url('../Imagenes/Nuevas/Banner 2.png') no-repeat center top;
    background-position: center 30%;
    background-size: cover;
    width: 100%;
    height: 550px;
    position: relative;
    overflow: hidden;
}

    .servicios-banner-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(16, 66, 109, 0.5); /* Color #10426d con 50% de opacidad */
        z-index: 1;
    }

    .servicios-banner-section:after {
        content: "";
        position: absolute;
        top: 0;
        left: 900px;
        right: 0;
        bottom: 0;
        background: url(../Imagenes/back2.png) no-repeat center;
        background-size: cover;
        z-index: 2;
    }

    .servicios-banner-section > * {
        position: relative;
        z-index: 3;
    }


.blog-tabs-section {
    background: #f2f4f8;
}

.single-blog-box {
    width: 540px;
    box-shadow: 3px 3px 25px rgb(0 0 0 / 7%);
    background: var(--primary-color);
}
    .single-blog-box img {
        width: 100%;
        height: auto;
        display: block;
    }

.single-blog-box:hover h4 a {
    color: var(--button-color);

}
/* Hace que figure actúe como contenedor relativo */
.overlay-box figure {
    position: relative;
    margin: 0;
}

/* Imagen responsiva */
.overlay-box img {
    width: 100%;
    height: auto;
    display: block;
}

/* Texto superpuesto tipo banner inferior */
.overlay-text {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 92, 165, 0.8); /* azul con transparencia */
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 10px 15px;
    box-sizing: border-box;
}
    

.single-blog-outer-con {
    display: grid;
    gap: 50px 30px;
    margin-bottom: 70px;
    grid-template-columns: 48.6% 48.6%;
}

.single-blog-details {
    padding: 32px 40px 54px;
}

.single-blog-details .generic-btn2 a::before {
    bottom: -7px;
}

.single-blog-details h4 a {
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--secondary-color);
}

.single-blog-details ul li {
    font-size: 16px;
    line-height: 18px;
    padding-left: 20px;
    color: #77808b;
}

.single-blog-details ul li i {
    position: absolute;
    font-size: 14px;
    line-height: 16px;
    left: 0;
    top: 0;
    color: var(--button-color);
}

.single-blog-details p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 34px;
}

.single-blog-details ul {
    display: flex;
    gap: 20px;
}

.blog-tabs-inner-section .nav-tabs a.nav-link {
    color: var(--text-color);
    font-size: 24px;
    border: none;
    padding: 13px 36px;
}

.blog-tabs-inner-section .nav-tabs a.nav-link:hover {
    color: var(--button-color);
}

.blog-tabs-inner-section .nav-tabs .nav-link.active:hover {
    color: var(--primary-color);
}

.blog-tabs-inner-section .nav-tabs .nav-link.active {
    color: var(--primary-color);
    background-color: var(--button-color);
    border-radius: 0;
}

.blog-tabs-inner-section .nav-tabs {
    border: 0;
    margin-bottom: 50px;
    gap: 4px;
}

.blog-tabs-inner-section .nav-tabs .nav-item {
    margin: 0;
}

.blog-tabs-inner-section .pagination {
    margin-bottom: 0;
    justify-content: center;
    gap: 2px;
}

.blog-tabs-inner-section .pagination .page-link {
    padding: 11px 15px;
    margin-left: 0;
    font-size: 20px;
    line-height: 20px;
    color: #000;
    background-color: transparent;
    border: none;
    font-weight: 600;
}

.blog-tabs-inner-section .pagination .page-link:hover {
    color: var(--button-color);
}

.blog-tabs-inner-section .pagination .page-link:focus {
    box-shadow: none;
}

.blog-tabs-inner-section .pagination .page-item.active .page-link {
    background: var(--button-color);
    color: var(--primary-color);
}

.blog-tabs-inner-section .pagination .page-item.active .page-link:hover {
    color: var(--primary-color);
}

.blog-tabs-inner-section .pagination .page-link i {
    color: var(--accent);
}

/* blog page styling end here */
/* bottom to top button */
#button.show {
    opacity: 1;
    visibility: visible;
}

#button:hover {
    cursor: pointer;
}

#button {
    display: inline-block;
    background-color: #3172B3;
    width: 42px;
    height: 42px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 57px;
    right: 113px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;
    cursor: pointer;
}

    #button::after {
        content: "\f062";
        font-family: 'Font Awesome 5 Free';
        font-size: 18px;
        line-height: 50px;
        color: #fff;
        font-weight: 600;
    }

@-webkit-keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgb(60, 114, 252, .99)
    }

    to {
        box-shadow: 0 0 0 25px rgb(53, 0, 252, .01)
    }
}

@keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgb(60, 114, 252, .99)
    }

    to {
        box-shadow: 0 0 0 25px rgb(53, 0, 252, .01)
    }
}

/* bottom to top button */
/* Preloader -------------------------------------------------------*/
/* Loader Styles start here */
.loader-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999;
}

.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    font-size: 0;
    color: var(--accent);
    display: inline-block;
    margin: -25px 0 0 -25px;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.lead {
    font-size: 13px;
}

.loader div {
    background-color: var(--button-color);
    display: inline-block;
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    opacity: .5;
    border-radius: 50%;
    -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
    animation: ballPulseDouble 2s ease-in-out infinite;
}

.loader div:last-child {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.mb-10 {
    margin-bottom: -10rem !important;
}

.pt-4v2 {
    padding-top: 3rem !important;
}

@media (min-width: 1200px) {
    .container-media {
        max-width: 1400px!important;
    }
}

@media (min-width: 2000px) {
    .container-media {
        max-width: 2000px !important;
    }
}


.whatsApp {
    position: fixed;
    bottom: 50px; /* distancia desde abajo */
    right: 35px; /* distancia desde la derecha */
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    padding: 15px;
    font-size: 24px;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

    .whatsApp:hover {
        transform: scale(1.1);
        background-color: #128C7E;
    }


@media (max-width: 480px) {
    .whatsApp {
        bottom: 110px; /* distancia desde abajo */
        right: 35px; /* distancia desde la derecha */
    }
}