:root {
    --dorado: #D7BB5E;
    --dorado-dos: #F6F0DB;
    --azul: #2B4AA0;
    --cafe: #9D873C;
    --gris: #444444;
    --gris-claro: #818181;
    --negro: #000;
    --blanco: #fff;
}

body {
    color: var(--negro);
    background-color: var(--blanco);
    font-family: "Inter", 'Roboto Condensed', sans-serif;
    scroll-behavior: smooth;
    height: 100%;
}

*,
div {
    margin: 0px;
    padding: 0px;
}

.row {
    margin: 0px;
}

.container-fluid {
    padding: 0px;
}

/*------Fuentes---------*/

.fontOne {
    font-family: "Inter", 'Roboto Condensed', sans-serif;
}

.fontTwo {
    font-family: 'Roboto Condensed', sans-serif;
}

/*------Inicio textos---------*/
p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 0px;
    margin: 0;
}

h1 {
    font-size: 35px;
    font-weight: 100;
}

h2 {
    font-size: 28px;
    font-weight: 100;
}

h3 {
    font-size: 24px;
    font-weight: 100;
}

h4 {
    font-size: 22px;
    font-weight: 100;
}

h5 {
    font-size: 20px;
    font-weight: 100;
}

h6 {
    font-size: 14px;
    font-weight: 100;
}

b {
    font-weight: 800;
}

a {
    text-decoration: none;
}

.complete {
    width: 100%;
}

.hg-complete {
    height: 100%;
}

.borderOne {
    border-radius: 10px !important;
}

.mayus {
    text-transform: uppercase;
}

.spacingOne {
    letter-spacing: 5px;
}

.hoverNone:hover {
    background: transparent !important;
}

.borderDorado {
    border-bottom: 1px solid var(--dorado);
}

/*Fin textos*/

/*------Inicio colores---------*/
.dorado {
    color: var(--dorado);
}

.dorado-dos {
    color: var(--dorado-dos);
}

.azul {
    color: var(--azul);
}

.cafe {
    color: var(--cafe);
}

.gris {
    color: var(--gris);
}

.gris-claro {
    color: var(--gris-claro);
}

.gris2 {
    color: var(--gris-claro);
}

.blanco {
    color: var(--blanco);
}

.negro {
    color: var(--negro);
}

/*Fin colores*/

/*------Titulares---------*/
.tittlePrimary {
    font-size: 30px;
    font-weight: 800;
    line-height: normal;
}

.subTittle {
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
}

/*Fin Titulares*/

/*------Botones---------*/
.btnPrimarioDorado {
    background-color: var(--dorado);
    font-weight: 800;
    color: var(--blanco);
    text-decoration: none;
    border-radius: 30px;
    border: 2px solid var(--blanco);
    padding: 15px 50px;
    transition: 0.3s ease-in-out;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.btnPrimarioDorado:hover {
    transform: scale(1.1);
    background-color: var(--cafe);
}

.btnBlancoBorder {
    background-color: transparent;
    font-weight: 800;
    color: var(--blanco);
    border: 2px solid var(--blanco);
    text-decoration: none;
    border-radius: 30px;
    border: 2px solid var(--blanco);
    padding: 15px 50px;
    transition: 0.3s ease-in-out;
}

.btnBlancoBorder:hover {
    transform: scale(1.1);
}

/*Efecto desplazamiento*/
/*** ESTILOS BOTÓN SLIDE LEFT ***/
.despEffect {
    background: #fff;
    /* color de fondo */
    color: #4741d7;
    /* color de fuente */
    padding: 16px 20px;
    border-radius: 3px;
    /* redondear bordes */
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
}

.despEffect:hover {
    color: #fff;
    /* color de fuente hover */
}

.despEffect::after {
    content: "";
    background: var(--dorado);
    /* color de fondo hover */
    position: absolute;
    z-index: -1;
    padding: 16px 20px;
    display: block;
    top: 0;
    bottom: 0;
    left: -100%;
    right: 100%;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
}

.despEffect:hover::after {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
}

/*Fin Botones*/
a:focus,
a:active,
a:hover,
input[type="text"]:focus,
input[type="text"]:active,
input[type="date"]:focus,
input[type="date"]:active,
input[type="number"]:focus,
input[type="number"]:active,
input[type="submit"]:focus,
input[type="submit"]:active {
    text-decoration: none;
    outline: none;

}

/*----------------------_Nav_-----------------------*/
header {
    position: relative;
}

nav.navTop {
    position: absolute;
    top: 0;
    z-index: 20;
    width: 100%;
}

nav.navTop div ul {
    list-style: none;
    margin: 0;
}

nav.navTop div ul li a {
    color: var(--blanco);
    transition: 0.3s ease-out;
    padding: 8px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

nav.navTop div ul li a img {
    width: 16px;
    margin-right: 10px;
}

nav.navTop div ul li a:hover {
    background-color: var(--blanco);
    border-radius: 20px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.35);
    -webkit-backdrop-filter: saturate(180%) blur(40px);
    backdrop-filter: saturate(100%) blur(8px);
}

.logoPrimary img {
    width: 180px;
    margin: 0 20px;
}

.trabajeCon {
    border-radius: 10px 0 0 10px;
    border: 2px solid var(--blanco);
    overflow: hidden;
}

.trabajeCon a {
    padding: 16px !important;
    display: block;
    overflow: hidden;
    font-size: 14px;
}

nav.navTop div ul li.trabajeCon a:hover {
    background: rgba(255, 255, 255, 0.25);
    -webkit-backdrop-filter: saturate(180%) blur(40px);
    backdrop-filter: saturate(100%) blur(8px);
    border-radius: 0px !important;
}

.soyEmpleado {
    border-radius: 0px 10px 10px 0px;
    border: 3px solid var(--blanco);
    padding: 15px;
    background-color: var(--blanco);
    color: var(--azul) !important;
    font-size: 14px;
}
.menu-ul .close-x, .closeX {
    position: absolute;
    display: flex;
    height: 2.5em;
    width: 2.5em;
    background: var(--dorado);
    top: 1.875em;
    right: 1.875em;
    border-radius: 3.125em;
    border: none;
    justify-content: center;
    align-items: center;
  }
  nav .close-x::after, .closeX::after, nav .close-x::before, .closeX::before {
    content: '';
    background: var(--blanco);
    position: absolute;
    height: 0.938em;
    width: 0.125em;
    transform: rotate(45deg);
  }
  .close-2::after {
    height: 0.938em;
    width: 0.063em;
  }
  
  nav .close-x::before, .closeX::before {
    height: 0.125em;
    width: 0.938em;
  }
  
  .close-2::before {
    width: 0.938em;
    height: 0.063em;
  }
  
  nav .close-x {
    display: none;
  }
  
/*Inicio Slider*/
.img-slider {
    position: relative;
}

.img-slider img {
    width: 100%;
}

.info-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.info-slide h1 {
    font-size: 45px;
    color: var(--blanco);
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    line-height: 55px;
}

.info-slide p {
    font-size: 22px;
    margin: 0;
    padding: 0;
    color: var(--blanco);
}

.slick-prev {
    background-image: url('../images/arrw-left.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 45px;
    height: 45px;
    z-index: 20;
    left: 30px;
    transition: 0.3s ease-in-out;
    cursor: pointer !important;
}

.slick-prev:hover,
.slick-prev:focus {
    background-image: url('../images/arrw-left.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    height: 40px;
}

.slick-prev:before,
.slick-next:before {
    color: transparent;
    padding: 10px;
}

.slick-next {
    background-image: url('../images/arrow-right.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 45px;
    height: 45px;
    right: 30px;
    transition: 0.3s ease-in-out;
    cursor: pointer !important;
}

.slick-next:hover,
.slick-next:focus {
    background-image: url('../images/arrow-right.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    height: 40px;
}

.slick-dots li button {
    position: relative;
    z-index: 33 !important;
    bottom: 30px;
    color: var(--azul);
}

.contenido-dos-paso-uno {
    padding: 0 px;
}

.slick-dots li button:before {
    font-size: 30px;
    color: var(--dorado);
    opacity: 1;
}

.slick-dots li.slick-active button:before {
    color: var(--rojo1);
}

.separador-slide {
    margin-top: -75px;
    position: relative;
    z-index: 19;
}

.slick-dots {
    z-index: 14;
}

/*------Sección Uno---------*/
.sectionOne {
    background-image: url('../images/background-section-uno.png');
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    padding-bottom: 60px;
}

.barras-img {
    width: 70%;
}

/*------Sección Dos---------*/
.back-secTwo>.container {
    margin-top: -360px;
}

.back-secTwo-info {
    background-image: url('../images/lleve-su-negocio-a-usa.png');
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    position: relative;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
}

.back-secTwo-info p {
    position: absolute;
    font-size: 16px;
    bottom: 0px;
    line-height: 22px;
    padding: 20px 30px;
    padding-top: 70px;
    background: rgb(28, 48, 104);
    background: linear-gradient(180deg, rgba(28, 48, 104, 0) 0%, rgba(28, 48, 104, 0) 13%, rgba(28, 48, 104, 1) 68%, rgba(28, 48, 104, 1) 100%);
}

.shape-blue-sec-2 {
    width: 100%;
}

/*------Sección Tres---------*/
.sectionThree {
    padding: 60px 20px;
}

/*------Sección Cuatro---------*/
.sectionFourth {
    background-image: url('../images/back-contacto.png');
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    padding: 150px 0;
    overflow: hidden;
    position: relative;

}

.form-contact {
    position: relative;
}

.woman-section-contact {
    width: 350px;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

form {
    position: relative;
    z-index: 19;
}

.form-control {
    padding: 10px 15px;
}

/*------Footer---------*/
footer {
    background: rgb(43, 74, 161);
    background: linear-gradient(180deg, rgba(43, 74, 161, 1) 0%, rgba(22, 37, 81, 1) 100%);
    border-radius: 30px 30px 0 0;
    margin-top: -40px;
    position: relative;
    z-index: 5;
}

hr.hr-footer {
    border: 0.4px solid #D7BB5E !important;
    opacity: 1
}

.logo-apex-footer {
    width: 55%;
    margin: 10px 0;
}

.nav-footer {
    list-style: none;
}

.nav-footer {
    list-style: none;
}

.nav-footer li {
    list-style: none;
    width: max-content;
}

.nav-footer li a {
    color: var(--blanco);
    transition: 0.3s ease-out;
    font-size: 14px;
}

.nav-footer li a:hover {
    background-color: var(--blanco);
    border-radius: 20px;
    padding: 8px 15px;
    background: rgb(0 0 0 / 35%);
    -webkit-backdrop-filter: saturate(180%) blur(40px);
    backdrop-filter: saturate(100%) blur(8px);
}

.nav-footer li a img {
    width: 16px;
    margin-right: 10px;
}

/*------Inicio modal---------*/
.header-modal {
    max-width: 200px;
    position: relative;
    display: block;
    margin: 0 auto;
}

.modal {
    background: rgb(0 0 0 / 10%);
    -webkit-backdrop-filter: saturate(180%) blur(40px);
    backdrop-filter: saturate(50%) blur(8px);
}

.slide-clientes {
    position: relative;
    z-index: -3;
}

.btn-close {
    background-image: url('../images/close-modal-blue.png');
    background-size: contain;
    opacity: unset;
    margin: 0 !important;
    padding-right: 30px !important;
}

.logo-modal {
    width: 18%;
    display: block;
    margin: 0 auto;
}

.close2 {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    border: solid 1px var(--rojo1) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--blanco) !important;
    opacity: 1;
    color: var(--rojo1);
}
.btnEnviar{
    background-color: var(--dorado);
    font-weight: 800;
    color: var(--blanco);
    text-decoration: none;
    border-radius: 30px;
    border: 2px solid var(--blanco);
    padding: 15px 50px;
    transition: 0.3s ease-in-out;
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: flex;
    width: 220px;
    margin: 0 auto;
}
.btnEnviar:hover{
    background-color: var(--cafe);
}
.btn-descarga-pdf {
    background-color: #F6F0DB;
    border-radius: 10px;
    color: var(--cafe);
    font-weight: 800;
    padding: 14px 20px;
    padding-right: 0px;
    display: inline-block;
    width: 100%;
    transition: 0.3s;
}
.btn-descarga-pdf:hover img{
    filter: brightness(6);
}
.btn-descarga-pdf:hover{
    background-color: var(--cafe);
    color: var(--blanco);
}
.btn-descarga-pdf img {
    width: 32px;
    padding-right: 10px;
}

.download-arrow {
    width: 80px !important;
    padding-left: 20px;
}

/* medida xxl*/
@media (max-width: 1400px) {

    /*Nav*/
    nav.navTop div ul li a img {
        width: 13px;
        margin-right: 5px;
    }

    .logoPrimary img {
        margin: 0 10px;
    }

    nav.navTop div ul li a {
        line-height: 16px;
    }

    .soyEmpleado {
        border: 1px solid var(--blanco);
    }

}

/* medida xl*/
@media (max-width: 1200px) {

    /*Nav*/
    nav.navTop div ul li a {
        line-height: 16px;
        font-size: 12px;
    }

    .logoPrimary img {
        width: 130px;
        margin: 0 10px;
    }

    .separador-slide {
        margin-top: -64px;
    }
}

/* medida lg*/
@media (max-width: 992px) {
    .tittlePrimary {
        text-align: center;
    }

    .subTittle {
        text-align: center;
        margin: 0 auto;
        display: block;
    }

    p {
        text-align: center;
    }

    .btnBlancoBorder {
        margin: 0 auto;
        display: table;
        text-align: center;
    }

    .logo-apex-footer {
        margin: 0 auto;
        display: block;
        width: 220px;
    }

    /*Nav Responsive*/
    nav {
        flex-direction: column;
        background-color: #2B4AA0;
        height: 100vh;
        z-index: 1410;
    
        position: fixed !important;
        right: -100%;
    }

    nav>div>ul {
        flex-direction: column;
    }

    .menu-open *,
    .closeX * {
        pointer-events: none;
    }

    .menu-open {
        margin-left: 1.25em;
        height: 2.813em;
        width: 2.813em;
        background: var(--azul);
        border-radius: 3.125em;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        border: 2px solid var(--dorado);
        position: fixed;
        right: 30px;
        z-index: 123;
        top: 30px;
        cursor: pointer;
    }

    .menu-open .line {
        height: 1px;
        width: 15px;
        background: var(--blanco);
    }
    nav .close-x {
        display: flex;
      }
      nav.active {
        right: 0;
        z-index: 1000;
        gap: 50px;
      }
      nav.navTop div ul li a{
        font-size: 18px;
       
      }
      .soyEmpleado{
        border-radius: 15px;
      }
      .logoPrimary img{
        width: 220px;
      }
      .trabajeCon{
        border-radius: 15px;
      }
      nav.navTop div ul{
        gap: 30px;
      }
      .logo-responsive {
        position: absolute;
        top: 30px;
        left: 30px;
        z-index: 99;
      }
      .logo-responsive figure img{
        width: 180px;
      }

}

/* medida md*/
@media (max-width: 768px) {}

/* medida sm*/
@media (max-width: 576px) {}