/********** Template CSS **********/
:root {
    --primary: #4682B4;
    --secondary: #8D9297;
    --light: #F8F9FA;
    --dark: #182333;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    font-family: Arial, sans-serif;
}


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

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


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
    font-family: Arial, sans-serif;
}

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

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

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

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



/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
    font-family: Arial, sans-serif;
    width: 100%;
}

.navbar .navbar-nav .nav-link {
    margin-left: 40px;
    padding: 25px 0;
    color: var(--secondary);
    font-weight: 5;
    text-transform: uppercase;
    outline: none;
    width: 100%;
}

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

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    /***  Ingresar ***/
    width: 100%;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
        width: 100%;
    }

    .navbar .navbar-nav {
        margin-top: 35px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 10;
        top: 500%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        width: 100%;

    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .3s;
        opacity: 2;

    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 10;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
    background: rgba(0, 0, 0, .65);
    z-index: 1;
    font-family: Arial, sans-serif;
    width: 100%;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--dark);
    border: 15px solid var(--dark);
    border-radius: 50px;
}

.carousel-caption .breadcrumb-item+.breadcrumb-item::before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
        width: 100%;
    }

    .container {
        width: 100%;
        }
        
    #header-carousel .carousel-item img {
        position: absolute;
        width: 10%;
        height: 20%;
        object-fit: cover;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 3rem;
        height: 3rem;
        border-width: 12px;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
    font-family: Arial, sans-serif;
    padding-left: 10%;
    width: 100%;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}





/*** Service ***/
.service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: var(--primary);
    opacity: 0;
    transition: .5s;
    font-family: Arial, sans-serif;
}

.service-item:hover .service-text::before {
    height: 100%;
    opacity: 1;
}

.service-text * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service-item:hover .service-text * {
    color: #FFFFFF !important;
}


/*** Appointment ***/
.appointment {
    background: linear-gradient(rgba(94, 111, 126, 0.65), rgba(252, 252, 253, 0.65)), url(../img/AbrikeyLogo.jpg) center center no-repeat;
    background-size: cover;
    font-family: Arial, sans-serif;
}







.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    color: #999999;
    font-family: Arial, sans-serif;
}

.footer .btn.btn-link {
    font-family: Arial, sans-serif;
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #999999;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: Arial, sans-serif;
    font-weight: 900;
    color: #999999;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 55px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
    font-family: Arial, sans-serif;
}

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

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

element.style {
    vertical-align: inherit;
}

.seccionmed {
    font-family: Arial, sans-serif;
    letter-spacing: 1px;
    text-align: center;
    padding-top: 100px;
    line-height: 0.5em;
    font-size: 28px;
    margin-top: 10mm;
    padding-left: 10%;
    padding-right: 5%;
    max-width: 100%;
}

.seccionmedp {
    color: black;
    letter-spacing: 1px;
    text-align: center;
    padding-top: 25px;
    line-height: 1em;
    font-size: 20px;
    padding-bottom: 1020;
    font-family: Arial, sans-serif;
    padding-left: 10%;
    padding-right: 5%;
    width: 100%;
    max-width: 100%;
}


.seccionmedaqs {
    color: whitesmoke;
    background-color: #182333;
    letter-spacing: 1px;
    text-align: center;
    padding-top: 50px;
    line-height: 0.5em;
    font-size: 20px;
    padding-bottom: 200px;
    margin-top: 15%;
    margin-left: 0mm;
    margin-right: 0mm;
    font-family: Arial, sans-serif;
    max-width: 100%;
}

.seccionmedpaqs {
    color: red;
    background-color: yellow;
    letter-spacing: 1px;
    text-align: center;
    padding-top: 300px;
    line-height: 0.5em;
    font-size: 20px;
    padding-bottom: 300px;
    margin-top: 15%;
    margin-left: 70mm;
    margin-right: 70mm;
    font-family: Arial, sans-serif;
    max-width: 100%;

}

hr {
    border: 1px solid #fcfcfc;
    /* Cambia el color y el estilo de la línea */
    width: 90%;
    /* Cambia el ancho de la línea */
}

.fs-20,
.fs-20>p {
    font-size: 16px;
}


span {
    padding-right: 10px;
    /* Añade un espacio a la derecha del texto en el span */
}

.bl {
    border-left-style: solid;
    border-left-width: 1px;
}

.bb {
    border-bottom-style: solid;
    border-bottom-width: 1px;
}

.border-box,
a,
article,
aside,
blockquote,
body,
code,
dd,
div,
dl,
dt,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
html,
input[type=email],
input[type=number],
input[type=password],
input[type=tel],
input[type=text],
input[type=url],
legend,
li,
main,
nav,
ol,
p,
pre,
section,
table,
td,
textarea,
th,
tr,
ul {
    box-sizing: border-box;
}

*,
:after,
:before {
    box-sizing: inherit;
}



.mr5 {
    margin-right: 4rem;
}

.ml3 {
    margin-left: 1rem;
}

.ml5 {
    margin-left: 1rem;
}

*,
:after,
:before {
    box-sizing: inherit;
}

.c-white,
.eyeb.ham,
.eyeb.light {
    color: #ffffff;
}

a:-webkit-any-link {
    color: -webkit-link;
    cursor: pointer;
}

.fs-20,
.fs-20>p {
    font-size: 160px;
}


body,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
ul {
    font-weight: 400;
    margin: 0;
    padding: 0;
}

.f3,
.mobile-menu-container .nav a,
.standard-title,
h3 {
    font-size: 1.625rem;
}

.c-white,
.eyeb.ham,
.eyeb.light {
    color: #fff;
}

.c-grey-8,
.filter-btn {
    color: #333;
}

.lh-copy {
    line-height: 1.5;
}

.bg-dark-green {
    background-color: #021835;
}

.pv5,
.standard-section {
    padding-bottom: 2rem;
    padding-top: 4rem;
}

.sans-serif {
    font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}

.article-content.post-content p em,
.article-content h4,
.article-content h4 strong,
.article-content h5,
.desktop-menu .submenu a.nav__link:after,
.f-main,
section.boilerplate li,
section.boilerplate p {
    font-family: Diatype Regular, -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 100%;
}

style attribute {
    --scrollbar-width: 17px;
}


.ph3,
.standard-section {
    padding-left: 10rem;
    padding-right: 1rem;
}


.no-underline {
    text-decoration: none;
}







.link-bar svg {
    min-width: 32px;
}

img,
svg {
    height: auto;
    vertical-align: middle;
    max-width: 100%;
}

*,
:after,
:before {
    box-sizing: inherit;
}

svg {
    width: 32;
    height: 32;
    fill: none;
}

svg:not(:root) {
    overflow-clip-margin: content-box;
    overflow: hidden;
}

.c-white,
.eyeb.ham,
.eyeb.light {
    color: #fff;
}

a:-webkit-any-link {
    color: gray;
    cursor: pointer;
}

.webkit-any-link2 {

    cursor: pointer;
    background-color: #182333;

    margin-left: 49px;
    padding: px 0;

    font-weight: 500;
    font-family: Arial, sans-serif;




}

.fs-20,
.fs-20>p {
    font-size: 16px;
}

li {
    text-align: -webkit-match-parent;
}

.f3,
.mobile-menu-container .nav a,
.standard-title,
h3 {
    font-size: 1.625rem;
}



ul.horizontal-list {
    list-style-type: none;
    /* Elimina los marcadores de lista */
    padding: 0;
    /* Elimina el relleno predeterminado */
}

ul.horizontal-list li {
    display: inline;
    /* O puedes usar 'display: inline-block' si necesitas aplicar margen o relleno */
    margin-right: 20px;
    /* Espacio entre los elementos de la lista */
}







.pt2 {
    padding-top: 0.5rem;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex {
    display: flex;
}

.border-box,
a,
article,
aside,
blockquote,
body,
code,
dd,
div,
dl,
dt,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
html,
input[type=email],
input[type=number],
input[type=password],
input[type=tel],
input[type=text],
input[type=url],
legend,
li,
main,
nav,
ol,
p,
pre,
section,
table,
td,
textarea,
th,
tr,
ul {
    box-sizing: border-box;
}

*,
:after,
:before {
    box-sizing: inherit;
}

div {
    display: block;
}

.c-grey-8,
.filter-btn {
    color: #333;
}

.lh-copy {
    line-height: 1.5;
}

.sans-serif {
    font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}

.article-content.post-content p em,
.article-content h4,
.article-content h4 strong,
.article-content h5,
.desktop-menu .submenu a.nav__link:after,
.f-main,
section.boilerplate li,
section.boilerplate p {
    font-family: Diatype Regular, -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 100%;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
ul {
    font-weight: 400;
    margin: 0;
    padding: 0;
}

style attribute {
    --scrollbar-width: 17px;
}

html {
    -webkit-text-size-adjust: 100%;
    line-height: 1.15;

}

.stats-col:first-child,
.stats-col:nth-child(2) {
    border-bottom: 1px solid var(--dark-green);
}

.stats-col:first-child {
    border-right: 1px solid var(--dark-green);
}

.cards-block h2,
.cards-block h3,
.cards-block h4,
.tc {
    text-align: center;
}

.ph2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.pv4 {
    padding-bottom: 2rem;
    padding-top: 2rem;
}

.w-50 {
    width: 50%;
}

.border-box,
a,
article,
aside,
blockquote,
body,
code,
dd,
div,
dl,
dt,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
html,
input[type=email],
input[type=number],
input[type=password],
input[type=tel],
input[type=text],
input[type=url],
legend,
li,
main,
nav,
ol,
p,
pre,
section,
table,
td,
textarea,
th,
tr,
ul {
    box-sizing: border-box;
}

*,
:after,
:before {
    box-sizing: inherit;
}

div {
    display: block;
}

.c-grey-8,
.filter-btn {
    color: #333;
}

.lh-copy {
    line-height: 1.5;
}

.sans-serif {
    font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}

.article-content.post-content p em,
.article-content h4,
.article-content h4 strong,
.article-content h5,
.desktop-menu .submenu a.nav__link:after,
.f-main,
section.boilerplate li,
section.boilerplate p {
    font-family: Diatype Regular, -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: Arial, sans-serif;
    max-width: 100%;

}

body,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
ul {
    font-weight: 400;
    margin: 0;
    padding: 0;
    width: 100%;
}

style attribute {
    --scrollbar-width: 17px;
}

*,
:after,
:before {
    box-sizing: inherit;
}


iframe {
    margin-top: 5%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}




.img-fluid {
    width: 100%;
    /* Asegura que la imagen sea responsive y ocupe el ancho del contenedor */
    height: 20%;
    /* Mantiene la proporción de la imagen */
    object-fit: cover;
    /* Asegura que la imagen cubra todo el contenedor */
}




.contenedor-texto {
  
    display: flex;
    justify-content: center;
    align-content: center;
    margin: 0px 0;

    background-repeat: no-repeat;
    background-position: center;
    max-height: 600px;
    margin: 0px 100;
    width: max-content;

    margin: 0 100px;
    color: #fff;
    padding-bottom: 100px;
    display: inline-block;
    text-decoration: none;
    font-family: Arial, sans-serif;

}

.contenedor-texto .texto {

    text-align: center;
    padding: 20px 60px;
}

.contenedor-texto .texto h3 {
    color: #fff;
    font-weight: 300;
    margin: 0;
}



.contenedor-imagen {
    position: relative;
}

/* quienes somos */
.texto-encima {
    
    width: 100%;
    position: absolute;
    top: 90%;
    
    left: 22%;
    transform: translate(-50%, -50%);
    font-family: Arial, sans-serif;
}

.pacerca {
    width: 100%;
    padding-top: 80px;
    
    top: 10%;
    /* Ajusta estos valores según necesites */
    left: 22%;
    color: black;
    margin-right: 3%;
    font-family: Arial, sans-serif;
    padding-right: 5%;
    padding-left: 20%;

}

.seccioncalidad {
    width: 100%;
    color: whitesmoke;
    background-color: #182333;
    letter-spacing: 1px;
    text-align: left;
    padding-top: 100px;
    line-height: 1em;
    font-size: 16px;
    padding-bottom: 150px;
    margin-top: 5%;
    margin-left: 0mm;
    margin-right: 0mm;
    font-family: Arial, sans-serif;
}



/* Estilos para logo de aquien servimos */


.lohorizontal-list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0px;
    max-width: 100%;
    }
    
    .logo {
      max-width: 100%;
    ;
    height: auto;
    margin: 0;
    display: block;
    transition: transform 0.5s ease; /* Agrega una transición suave para el efecto de escala */
    
    }
    
    .logo:hover {
    transform: scale(2.2); /* Aumenta ligeramente el tamaño del logo al pasar el mouse */
    cursor: pointer; /* Cambia el cursor a una mano para indicar que es un enlace */
    }
    
    /* Agrega un efecto de sombra para dar profundidad */
    .logo:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }





/* Estilos para servicios */
.contenedor-serviciosserv {
    margin-top: 1%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--dark);
    font-size: 17PX;
    font-family: Arial, sans-serif;
    text-align: justify;
}

.columna-textoserv,
.columna-imagenserv {
    flex: 10;
    /* Esto asigna el mismo espacio a ambas columnas */
    font-family: Arial, sans-serif;
}

/* Asegúrate de que la imagen sea responsive */
.img-fluidserv {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {

    /* Para pantallas más pequeñas, las columnas se apilarán verticalmente */
    .contenedor-serviciosserv {
        flex-direction: column;
        width: 100%;
    }
}

.contenedor-serviciosserv .columna-textoserv {
    background-color: var(--dark);
    /* Cambia este valor por el color de fondo que prefieras */
    text-align: center;
    /* Centra el texto horizontalmente */
    padding: 10%;
    /* Añade espacio alrededor del texto */
    margin-top: 50px;
    /* Añade espacio en la parte superior para que no comience justo en el inicio de la página */
    font-family: Arial, sans-serif;
    width: 100%;
}




/* Estilos para las tarjetas de servicios */
.contenedor-targetaserv {
    margin-top: 5%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: 20%;
    margin-right: 20%;
    font-family: Arial, sans-serif;
}

.tarjetaserv {
    margin: 10px;
    flex-basis: calc(50% - 20px);
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 50px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.8s ease;
    font-family: Arial, sans-serif;
}

.tarjetaserv:hover {
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

.tarjetaserv h6 {
    cursor: pointer;
    position: relative;
}

.tarjetaserv h6:after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
}

.descripcionserv {
    display: none;
    margin-top: 2%;
}

.tarjetaserv:hover {
    background-color: #6B7A8F;
    color: white;
}




/* Estilos para Abrikeyweb */

.bodylog {
    font-family: Arial, sans-serif;
    background-image: url('img/asesoriaai.png');
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #F8F9F9;
    max-width: 100%;
}

.login-container {

    padding: 60px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.login-form {
    display: flex;
    flex-direction: column;
    width: 290px;

}

.input-group {
    margin-bottom: 10px;
    margin-top: 5%;
    width: 100%;

}

.input-group label {
    display: block;
    margin-bottom: 5px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;

}

button {
    margin-top: 10%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: #6B7A8F;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #6B7A8F;
}

p {
    text-align: justify;
    /* Justifica el texto dentro de las etiquetas <p> */
    max-width: 100%
}





/* Estilos específicos para la sección de KPIs */
.kpi-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    gap: 30px;
    padding: 20px;
    background-color: white;
    }
    
    .kpi {
    flex: 0 0 40%;
    padding: 20px;
    margin: 10px;
    border: 1px solid white;
    border-radius: 8px;
    background-color: whitesmoke;
    box-sizing: border-box;
    }
    
    .kpi-section h2 {
    font-size: 2.5em;
    color: #182333;
    text-align: center;
    margin-bottom: 0.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    }
    
    .kpi-section h4 {
    font-size: 1.5em;
    color: #182333;
    text-align: center;
    margin-top: 0;
    margin-bottom: 2em;
    font-style: italic;
    }
    
    .kpi h4 {
    margin-bottom: 0.5em; /* Espacio reducido debajo del subtítulo */
    }
    
    .kpi p {
        color: black;
        font-family: Arial, sans-serif;
        text-align: center; /* Alinea el texto de la descripción al centro */
    margin-top: 0; /* Espacio reducido encima de la descripción */
    margin-bottom: 0; /* Espacio reducido debajo de la descripción */
    font-size: 19px;
    }
    
    .kpi-number {
    margin-bottom: 0.5em; /* Espacio reducido debajo del número */
    font-size: 2em;
    font-weight: bold;
    color: #182333;
    }