@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Montserrat:100,300,400,500,600,700,800,900&display=swap');

/* General */

body {
    color: #262626;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
    max-width: 100%;
    overflow-x: hidden !important;
    transition: inherit;
    margin: 0;
}
div.row{
    margin-right: 0px;
    margin-left: 0px;
 }
 
.container-fluid{
    padding-right: 0px !important;
    padding-left: 0px !important;
 }
p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: #262626;
}

a {
    text-decoration: none !important;
    cursor: pointer;
}
a:hover {
    font-weight: 600;
}
button {
    border: none !important;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}

@media (max-width:800px) {
    h5 {
        font-size: 15px;
    }
}

h2 {
    font-size: 25px;
}
h3 {
    font-size: 22px;
}  

/* --------------------------------- Colores -------------------------------- */
.magenta {
    color: #D8315B !important;
}
.bg-magenta {
    background-color: #D8315B;
}
.morado {
    color: #613F98 !important;
}
.purpura {
    color: #8b1cff;
}
.azul {
    color: #00569B !important;
}
.bg-azul {
    background-color: #00569B !important;
}
.naranja {
    color: #E88D67 !important;
}
.verde {
    color: #63D471;
}
.azul-cielo {
    color: #46C8F5 !important;
}
.bg-azul-claro {
    background-color: #f3f8ff;
}
.gris {
    color: #CFD1D2;
}
.gris-medio {
    color: #848484 !important;
}
.gris-oscuro {
    color: #1E1B18 !important;
}
.bg-gris {
    background-color: #e9e9e9;
}
.bg-gris-claro {
    background-color: #f4f4f4;
}
.bg-gris-medio {
    background-color: #848484 !important;
}
.bg-morado {
    background-color: #613F98;
}
.bg-verde {
    background-color: #63d471;
}
.bg-naranja {
    background-color: #E88D67;
}
.bg-azul-cielo {
    background-color: #46c8f5;
}
.bg-degradado {
    background: rgb(10,205,240);
    background: linear-gradient(90deg, rgba(10,205,240,1) 0%, rgba(97,40,175,1) 100%); 
}
.bg-degradado-precios {
    background: rgb(239,141,133);
    background: linear-gradient(65deg, rgba(239,141,133,1) 26%, rgba(97,63,152,1) 87%);
}
.bg-precios-blanco-i {
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,1) 92%, rgba(230,231,232,1) 98%, rgba(205,207,208,1) 100%);
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.32);
    -moz-box-shadow:    0px 0px 5px 0px rgba(50, 50, 50, 0.32);
    box-shadow:         0px 0px 5px 0px rgba(50, 50, 50, 0.32);
}
.bg-precios-blanco-d {
    background: rgb(255,255,255);
    background: linear-gradient(-90deg, rgba(255,255,255,1) 92%, rgba(230,231,232,1) 97%, rgba(205,207,208,1) 100%);
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.32);
    -moz-box-shadow:    0px 0px 5px 0px rgba(50, 50, 50, 0.32);
    box-shadow:         0px 0px 5px 0px rgba(50, 50, 50, 0.32);
}
.bg-precios-destacado {
    background: rgb(70,151,255);
    background: linear-gradient(351deg, rgba(70,151,255,1) 0%, rgba(154,79,255,1) 100%);
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(50, 50, 50, 0.6);
    -moz-box-shadow:    0px 0px 8px 0px rgba(50, 50, 50, 0.6);
    box-shadow:         0px 0px 8px 0px rgba(50, 50, 50, 0.6);
}
.bg-degradado-candidato {
    background: rgb(99,212,113);
    background: linear-gradient(90deg, rgba(99,212,113,1) 0%, rgba(0,86,155,1) 100%); 
}
.bg-degradado-reclutador {
    background: rgb(232,141,103);
    background: linear-gradient(90deg, rgba(232,141,103,1) 0%, rgba(97,63,152,1) 100%); 
}

/* ---------------------------------- Generales ---------------------------------- */
.heavy {
    font-weight: 900 !important;
}
.bold {
    font-weight: 700;
}
.titulo {
    font-size: 30px;
    font-weight: 300;
    text-align: center;
    padding: 30px 0;
}
.titulos {
    padding: 40px 0;
    font-size: 36px;
    text-align: center;
    line-height: 39px;
    text-transform: uppercase;
}
.subtitulo {
    font-size: 23px;
    font-weight: 300;
    text-align: left;
    padding: 20px;
}
.sombra {
    -webkit-box-shadow: 1px 1px 17px 4px rgba(0,0,0,0.12);
    -moz-box-shadow: 1px 1px 17px 4px rgba(0,0,0,0.12);
    box-shadow: 1px 1px 17px 4px rgba(0,0,0,0.12);
}
.centrar-imagen {
    display:block;
    margin:auto;
}
.grayscale {
    filter: grayscale(100%);
}
.h-10 {
    height: 10px;
}
.h-100 {
    height: 100px;
}
.w-90 {
    width: 90% !important;
}
.tag {
    border-bottom: 2px solid #969696;
    padding-bottom: 5px;
    font-size: 13px;
    color: #969696;
}
.icons-redes {
    width: 2em;
    height: auto;
    margin: 0 5px;
}

@media (max-width:375px) {
    .titulo {
        font-size: 25px;
    }
    .titulos {
        font-size: 29px;
    }  
}

/* --------------------------------- Botones -------------------------------- */
.btn-magenta {
    background-color: #D8315B;
    color: #ffffff;
    width: 80%;
    font-size: 20px;
    font-weight: 700;
    line-height: 23px;
    border-radius: 0;
    border: none;
}
.btn-verde {
    color: #63D471;
    font-size: 17px;
    font-weight: 700;
    border: #63D471 2px solid;
    text-align: center;
    padding: 8px 10px;
}
.btn-verde:hover {
    color: #ffffff;
    background-color: #63D471;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    padding: 8px 10px;
}
.btn-verde-solid {
    color: #ffffff;
    background-color: #63D471;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    padding: 8px;
}
.btn-verde-solid:hover {
    color: #ffffff;
    box-shadow: 1px 1px 17px 4px rgba(0,0,0,0.12);
}
.btn-naranja {
    color: #e88d67;
    font-size: 14px;
    font-weight: 700;
    border: #e88d67 2px solid;
    padding: 8px 10px;
}
.btn-morado {
    color: #613F98;
    border: #613F98 2px solid;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    padding: 8px 10px;
}
.btn-morado:hover {
    color: #8b1cff;
    font-weight: 700;
    border: #8b1cff 2px solid;
}
.btn-morado-solid {
    color: #ffffff;
    background-color: #613F98;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    padding: 8px;
}
.btn-morado-solid:hover {
    color: #ffffff;
}
.btn-purpura-solid {
    color: #ffffff;
    background-color: #8b1cff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    padding: 12px 30px;
    border-radius: 30px;
}
.btn-purpura-solid:hover {
    color: #ffffff;
    background-color: #9c4bf3;
}
.btn-lila-solid {
    color: #ffffff;
    background-color: #81a0f5;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    padding: 12px 30px;
    border-radius: 30px;
    border: 2px solid #ffffff;
}
.btn-lila-solid:hover {
    color: #ffffff;
    background-color: #abbdf0;
    font-weight: 700;
}
.btn-azul {
    color: #00569B;
    border: 2px solid #00569B;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    padding: 3px 5px;
}
.btn-azul:hover {
    color: #00569B;
}
.btn-azul-claro-solid {
    color: #ffffff;
    background-color: #46C8F5;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    padding: 8px;
}
.btn-azul-claro-solid:hover {
    color: #ffffff;
}
.btn-login {
    color: #ffffff !important;
    background: rgb(10,205,240);
    background: linear-gradient(90deg, rgba(10,205,240,1) 0%, rgba(97,40,175,1) 100%);
}
.boton-azul {
    background: #0071CE;
    border: none;
    border-radius: 30px;
    display: inline-block;
    padding: 6px 44px;
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
}
.boton-magenta {
    color: #D8315B;
    border: 2px solid #D8315B;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    padding: 3px 5px;
}
.btn-activo {
    color: #00569B;
    border: 2px solid #00569B;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    padding: 3px 5px;
}
@media (max-width:800px) {
    .btn-magenta {
        font-size: 16px;
    }
    .btn-verde {
        font-size: 14px;
    }
    .boton-magenta {
        padding: 16px 5px;
        font-size: 12px;
    }
    .btn-activo {
        padding: 16px 5px;
        font-size: 12px;
    }
}

@media (max-width:375px) {
    .btn-verde-solid {
        font-size: 14px;
        line-height: 15px;
    }
    .btn-magenta {
        width: 60%;
    }
}

/* ---------------------------------- Menu ---------------------------------- */

.menu {
    font-weight: 800;
    padding: 15px 50px;
    cursor: pointer;
}
.menu a {
    color: #1E1B18;
}
.menu a:hover {
    color: #613F98;
    font-weight: 800;
}
.activo {
    color: #00569B;
    font-weight: 800;
}
.activo-reclutador {
    color: #613F98;
    font-weight: 800;
}
.activo-administrador {
    color: #00569b;
    font-weight: 800;
}
.dropdown-item {
    cursor: pointer;
}
.dropdown-item a:hover {
    background: none !important;
}

@media (max-width:375px) {
    .menu {
        padding-right: 25px;
    }
}

/* --------------------------------- Slider --------------------------------- */
.slider-title {
    font-size: 40px;
    text-align: center;
    font-weight: 600;
    padding-top: 40px;
}
.slider-subtitle {
    font-size: 30px;
    line-height: 30px;
    text-align: center;

}
.slider-text {
    font-size: 18px;
    line-height: 22px;
    color: white;
    width: 80%;
    text-align: justify;
}
.btn-slider {
    border: 2px solid white;
    margin-top: 15px;
    padding: 10px;
    font-weight: 500;
    color: white;
    font-size: 18px;
}
.btn-slider:hover {
    color: #ffffff !important;
    font-weight: 800;
}
.card-img-overlay {
    padding: 0;
}
.bg-empresas {
    background-image: url(../images/empresas/bg-empresas.jpg);
    background-position: center;
    background-size: cover;
}
@media (max-width:1920px) {
    .card-img-overlay {
      padding-top: 85px;  
    }
}
@media (max-width:1440px) {
    .card-img-overlay {
      padding-top: 0;  
    }
}
@media (max-width:800px) {
    .slider-title {
      padding-top: 12px;  
      font-size: 30px;
    }
    .slider-text {
        font-size: 11px;
        line-height: 13px;
    }
    .btn-slider {
        font-size: 13px;
        margin-top: 0px;
    }
}
@media (max-width:360px) {
    .slider-title {
        padding-top: 12px;
    }
}

/* -------------------------------- Buscador -------------------------------- */
.buscador {
    background-color: #ffffff;
    width: 80%;
    padding: 20px 20px 15px;
    -webkit-box-shadow: 1px 1px 17px 4px rgba(0,0,0,0.12);
    -moz-box-shadow: 1px 1px 17px 4px rgba(0,0,0,0.12);
    box-shadow: 1px 1px 17px 4px rgba(0,0,0,0.12);
}
.input-group-text-filtro {
    background: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .375rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
}
.titulo-filtro {
    color: #613F98;
    font-size: 16px;
    font-weight: 600;
}
.label-text {
    font-size: 14px;
    line-height: 15px;
    color: #505151;
    font-weight: 300;
}
@media (max-width:800px) {
    .form-control {
        font-size: 13px;
    }
    .titulo-filtro {
        font-size: 13px;
    }
    .label-text {
        font-size: 12px;
    }
}
    
/* -------------------------------- Vacantes -------------------------------- */
.vacantes-home {
    padding-top: 16px;
}
.logo-empresa {
    width: 100px;
    height: auto;
}
.vacante-titulo {
    font-size: 18px;
    font-weight: 600;
}
.vacante-titulo-gde {
    font-size: 20px;
    line-height: 22px;
    font-weight: 600;
    color: #00569B;
    text-transform: uppercase;
}
.vacante-titulo-ext {
    font-size: 30px;
    line-height: 32px;
    font-weight: 600;
    color: #00569B;
    text-transform: uppercase;
}
.vacante-datos {
    font-size: 13px;
}
.vacante-datos-ext {
    font-size: 14px;
}
.vacante-datos a {
    color: #46C8F5;
}
.datos {
    font-size: 14px;
    font-weight: 400;
    color: #613F98;
    line-height: 15px;
    margin: 0;
    padding-bottom: 10px;
}
.datos-desc {
    font-size: 16px;
    line-height: 17px;
    font-weight: 600;
    color: #505151;
    margin: 0;
}
.vacante-jornada {
    color: #00569B;
    font-size: 17px;
    text-align: center;
    padding-top: 10px;
    font-weight: 500;
}
.btn-detalles {
    color: #ffffff;
    background-color: #63D471;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    padding: 8px;
}
.btn-detalles:hover {
    color: #ffffff;
    box-shadow: 1px 1px 17px 4px rgba(0,0,0,0.12);
}
.destacada {
    position: absolute;
    top: 0px;
    left: 19px;
    width: 20px;
    height: 20px;
    line-height: 18px;
    text-align: center;
    color: #fff;
    border-radius: 100%;
    background-color: #FFC41D;
}
.destacada-bottom {
    margin-right: -16px !important;
    margin-left: -16px !important;
}
.vacante-resumen {
    font-size: 14px;
    line-height: 16px;
    font-weight: 300;
    text-align: justify;
}
.postulados {
    font-size: 14px;
    padding-top: 10px;
}
.empresa-gris {
    width: 100%;
    filter: grayscale(100%);
    height: 50px;
    object-fit: scale-down;
    padding-bottom: 5px;
}
.persona {
    height: 301px;
}
.bg-buscador {
    background-image: url(../images/vacantes/bg-buscador.jpg);
    background-size: cover;
    background-position: center;
}

@media (max-width:414px) {
    .vacante-jornada {
        font-size: 14px;
    }
    .postulados {
        font-size: 12px;
    }
    .vacante-titulo {
        text-align: center;
    }
    .destacada {
        left: 72px;
    }
    .empresa-gris {
        height: 30px;
    }
}

/* ----------------------------------- ADS ---------------------------------- */
.banner {
    width: 100%;
    height: 200px;
    object-fit: scale-down;
}

@media (max-width:414px) {
    .banner {
        height: 100px;
        padding-top: 10px;
    }
}

/* -------------------------------- PAQUETES -------------------------------- */
.titulo-paquete {
    font-size: 30px;
}
.precio {
    font-size: 40px;
    font-weight: 400;
    padding-top: 40px;
}
.cantidad {
    font-size: 30px;
    font-weight: 800;
}
.precios {
    max-width: 24%;
}
.empresa {
    width: 100%;
    height: 50px;
    object-fit: scale-down;
    padding-bottom: 5px;
}

@media (max-width:800px) {
    .titulo-paquete {
        font-size: 23px;
    }
    .btn-purpura-solid {
        font-size: 15px;
    }
    .btn-lila-solid {
        font-size: 15px;
    }
}
@media (max-width:414px) {
    .precios {
        max-width: 100%;
    }
}

/* -------------------------------- ARTICULOS ------------------------------- */
.articulo-titulo {
    font-size: 18px;
    font-weight: 800;
    text-align: center;
}
.articulo-descripcion {
    font-size: 14px;
    line-height: 15px;
    text-align: justify;
}

/* -------------------------------- CONTACTO -------------------------------- */
.mapa {
    width: 823px;
    height: 600px;
}
.control-contacto {
    border: none;
    border-radius: 0;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.32);
    -moz-box-shadow:    0px 0px 5px 0px rgba(50, 50, 50, 0.32);
    box-shadow:         5px 5px 5px 0px rgba(50, 50, 50, 0.32);
}

@media (max-width:768px) {
    .mapa {
        width: 433px;
        height: 638px;
    }
}
@media (max-width:360px) {
    .mapa {
        width: 328px;
        height: 240px;
    }
}

.text-container {
    padding: 10px 30px;
    text-align: justify;
}

/* FAQ */
.faq {
    font-size: 20px;
    font-weight: 900;
    text-align: left;
    margin: 0;
    padding: 0px;
    color: #5557E6;
}
.faq100 {
    font-size: 17px;
    font-weight: 900;
    text-align: left;
    margin: 0;
    padding: 0px;
    color: #2e356e;
}
.card-accordion {
    height: 50px;
}

/* -------------------------------- Panel ------------------------------- */
.porcentaje {
    font-size: 18px;
    color: #505151;
    border: 1px solid #505151;
    font-weight: 300;
    padding: 10px;
}
.instruccion {
    font-size: 12px;
}
.label-panel {
    font-size: 16px;
    color: #848484;
    font-weight: 700;
}
.titular {
    font-size: 35px;
}
.bg-slider-candidato {
    background-image: url(../images/panel/candidatos/bg-cover.jpg);
    background-size: cover;
    background-position: center;
    min-height: 410px !important;
    background-repeat: no-repeat;
    padding-top: 240px;
}
.bg-slider-empresa {
    background-image: url(../images/panel/reclutador/bg-cover.png);
    background-size: cover;
    background-position: center;
    min-height: 410px !important;
    background-repeat: no-repeat;
    padding-top: 240px;
}
.img-perfil {
    display: inline-block;
    margin: 0 20px 0 0;
    vertical-align: middle;
}
.img-perfil-menu {
    display: inline-block;
    margin: 0;
    vertical-align: middle;
}
.perfil {
    margin: 0 0 30px;
}
.img-perfil figure {
    border-radius: 100%;
    display: inline-block;
    height: 80px;
    width: 80px;
}
.img-perfil-menu figure {
    border-radius: 100%;
    display: inline-block;
    height: 45px;
    width: 45px;
}
.img-perfil figure img {
    border-radius: 100%;
    height: 100%;
    width: 100%;
    vertical-align: middle;
}
.img-perfil-menu figure img {
    border-radius: 100%;
    height: 100%;
    width: 100%;
    vertical-align: middle;
}
.menu-candidato {
    font-size: 15px;
    color: #444444;
    font-weight: 600;
}
.profesion {
    font-size: 16px;
    color: #1E1B18;
    line-height: 18px;
    font-weight: 700;
    margin-bottom: 3px;
}
.duracion {
    font-size: 16px;
    line-height: 18px;
    font-weight: 300;
    color: #848484;
}
.escuela {
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    color: #969696;
    margin-bottom: 3px;
}
.exp-descripcion {
    font-size: 15px;
    font-weight: 400;
}
.imagen-candidato {
    width: 100px;
    height: auto;
}
.actividad-can {
    font-size: 13px;
}
.avatar {
    max-width: 140px;
    max-height: 107px;
}


@media (max-width:800px) {
    .fa-2x {
        font-size: 1em !important;
    }
}

@media (max-width:375px) {
    .btn-verde-solid {
        font-size: 14px;
        line-height: 15px;
    }
    .btn-magenta {
        width: 60%;
    }
    .bg-slider-candidato {
        padding-top: 30px;
    }
}

/* ------------------------------- DIRECTORIO ------------------------------- */
.bg-directorio-candidatos {
    background-image: url(../images/directorio/bg-candidatos.jpg);
    background-size: cover;
    background-position: center;
}

.bg-directorio-empresas {
    background-image: url(../images/directorio/bg-empresas.jpg);
    background-size: cover;
    background-position: center;
}

/* ------------------------------ ADMINISTRADOR ----------------------------- */
.bg-degradado-administrador {
    background: rgb(70,200,245);
    background: linear-gradient(90deg, rgba(70,200,245,1) 0%, rgba(97,63,152,1) 100%);
    padding: 10px !important;
}
.admin-empresa {
    font-size: 18px;
    color: #00569B;
    font-weight: 600;
    margin-bottom: 0;
}
.admin-categoria {
    font-size: 13px;
    color: #000000;
    font-weight: 600;
    line-height: 14px;
    margin-bottom: 0;
}
.admin-caducidad {
    font-size: 13px;
    color: #9d9fa2;
    line-height: 14px;
}
.admin-paquete {
    font-size: 14px;
    color: #00569b;
    line-height: 15px;
    text-align: center;
}
.ventas-titulo {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 17px;
    text-align: center;
}
.ventas-numero {
    font-size: 40px;
    color: #ffffff;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0;
}
.ventas-tituloBlack {
    font-size: 15px;
    font-weight: 800;
    color: #232323;
    margin-bottom: 10px;
    line-height: 17px;
    text-align: center;
}
.ventas-dinero {
    font-size: 22px;
    color: #ffffff;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0;
}

.ventas-dineroBlack {
    font-size: 22px;
    color: #232323;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0;
}

/* --------------------------------- Footer --------------------------------- */
.menu-footer {
    color: #ffffff;
    font-size: 14px;
    line-height: 17px;
    font-weight: 300;
}
.menu-footer a {
    color: #ffffff;
}
.menu-footer a:hover {
    font-weight: 600;
}
.address {
    font-size: 14px;
    color: #ffffff;
}
.address a {
    color: #ffffff;
}
.redes {
    width: 50px;
}
.copyright {
    font-size: 13px;
    background-color: #e9e9e9;
    padding: 10px 0;
}
.copyright a {
    color: #262626;
}

@media (max-width:800px) {
    .menu-footer {
        font-size: 13px;
    }
    .address {
        font-size: 12px;
    }
    .redes {
        width: 30px;
    }    
}


.error{
    color: #EF1D42;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.alert-success {
    color: #fff;
    background-color: #4b7;
    border-color: #ffeeba;
}

.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: .25rem;
}


/* The Close Button */
.close {
    /* Position it in the top right corner outside of the modal */
    position: absolute;
    right: 25px;
    top: 0; 
    color: #000;
    font-size: 35px;
    font-weight: bold;
}

/* Close button on hover */
.close:hover,
.close:focus {
    color: red;
    cursor: pointer;
}
