/*---------- Barra dezplazamiento horizontale -----------*/

a.btn-sec {
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;

}

a.btn-sec:hover {
    text-decoration-thickness: 1.5px;
    color: var(--color-darkgray2);

}

a.color-purple {
    color: var(--color-violet);
}

a.color-orange {
    color: var(--color-orange);
}

a.color-gray {
    color: var(--color-darkgray2);
}

a.color-magenta {
    color: var(--color-magenta);
}    

#menu-empresas .container-fluid {
    background-color: var(--color-blue);

}

#menu-personas .container-fluid {
    background-color: var(--color-violet);

}

.menu-nav nav ul:nth-child(1) {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
    font-size: 13px;
    font-weight: 600;
}

.menu-nav nav ul .link-main {

    position: relative;
    width: 100%;
    z-index: 4;

}

.menu-nav li {

    list-style-type: none;
}

.menu-nav nav ul .link-main > a {

    display: flex;
    justify-content: center;
    align-items: center;

}

.menu-nav li a {
    height: 100%;
    position: relative;
    width: 100%;
    display: block;
    color: white;
    text-align: center;
    padding: 15px 15px;
    text-decoration: none;
    line-height: 14px;
    transition: 0.5s;

}

.menu-nav li a:hover {
    background-color: var(--color-orange);
}

#menu-personas .menu-nav .sub-menu {
    padding: 0;
    position: absolute;
    background: var(--color-violet);
    display: none;
    transition: 0.7s;

}

#menu-empresas .menu-nav .sub-menu {
    padding: 0;
    position: absolute;
    background: var(--color-blue);
    display: none;
    transition: 0.7s;

}

.menu-nav .sub-menu li a {
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);

}

.menu-nav .sub-menu li a span {
    font-size: 11px;
    font-weight: 400;

}

/* Estilos para los submenÃºs */

#menu-personas .menu-nav li:hover .sub-menu,
#menu-empresas .menu-nav li:hover .sub-menu {
    display: block;
}

.menu-nav .sub-menu a {
    color: white;

}

.menu-nav .sub-menu a:hover {
    background-color: var(--color-orange);
}


#menu-personas.fixed,
#menu-empresas.fixed {
    position: fixed;
    top: 115px;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 4;
}

.burger-icon {
    cursor: pointer;
    display: none;
    padding: 10px;

}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px auto;

}

/*--------- Mensaje info menu ----------*/

#inf-menu {
    background: var(--color-orange);
    padding: 10px 15px;
    position: absolute;
    border-radius: 0 0 10px 10px;
    display: flex;
    z-index: 2;

}

#inf-menu span {
    color: var(--color-white);
    font-size: 25px;

}

#inf-menu p {
    color: var(--color-white);
    font-size: 12px;
    width: 350px;
    margin: 0;
    transition: 1s;
    animation: fadeOut 1.5s ease-out 10s forwards;
    margin-left: 10px;
    height: 55px;

}

#inf-menu p[hidden] {
    display: none;
}

#inf-menu p.fadeIn {
    animation: fadeIn 1s ease-in forwards;
    opacity: 1;
    display: block;
}

/*---------- ANIMACION MENSAJE -----------*/

@keyframes fadeIn {
    from {
        opacity: 0;
        width: 0px;
        height: 0;
        margin-left: 0px;
        display: block;
    }



    50% {

        height: 30px;


    }

    65% {
        opacity: 0;



    }

    100% {
        opacity: 1;
        width: 350px;
        height: 55px;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        width: 350px;
        height: 55px;
    }

    25% {
        opacity: 0;
    }

    50% {

        height: 10px;
    }

    100% {
        opacity: 0;
        width: 0px;
        height: 0;
        margin-left: 0px;
        display: none;

    }
}

/*--------- SIEMPRE AL DIA ----------*/

.al-dia {
    overflow: hidden;
    position: relative;
}

.cont-dia .cont-not {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    z-index: 2;
}

.cont-dia .tar-not h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
}

.cont-dia .tar-not p {
    font-size: 13px;
    color: var(--color-white);
}

.cont-dia .tar-not {
    display: flex;
    border-radius: 10px;
    overflow: hidden;

}

.cont-dia .not-1 {
    height: 250px;

}

.tar-not div {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 25px 50px;
    width: 50%;
}

.not-1 img {
    object-fit: cover;
    width: 50%;
}

.cont-not .tar-not.not-1 {
    background-color: var(--color-orange);
    margin-bottom: 25px;
}

.cont-not .cont-not-d2 {
    display: flex;
    justify-content: space-between;

}

.dia-personas .cont-not .cont-not-d2 .tar-not:nth-child(1) {
    background-color: var(--color-violet);
    width: 49%;
}

.dia-personas .cont-not .cont-not-d2 .tar-not:nth-child(2) {
    background-color: var(--color-magenta);
    width: 49%;
}

.dia-empresas .cont-not .cont-not-d2 .tar-not:nth-child(1) {
    background-color: var(--color-blue);
    width: 49%;
}

.dia-empresas .cont-not .cont-not-d2 .tar-not:nth-child(2) {
    background-color: var(--color-lightblue);
    width: 49%;
}

.cont-not .tar-not img {
    width: 50%;
    object-fit: cover;

}

.cont-not .cont-not-d2 .tar-not div {
    padding: 25px 30px;
    height: 280px;

}

.al-dia .figura1 {
    position: absolute;
    width: 400px;
    bottom: -90px;
    right: -20px;
    opacity: 0.15;
    z-index: 0;
}


/*---------- HOME PERSONAS -----------*/
/*---------- BUSCAS TRABAJO -----------*/
.b-trabajo .cards {
    display: flex;
    justify-content: space-around;


}

.b-trabajo .cards p {
    font-size: 13px;
    line-height: 20px;
    margin: 0;
}

.b-trabajo .cards img {
    height: 75px;
}

.b-trabajo .cards div {
    width: 30%;
    height: 270px;
    background-color: var(--color-white);
    box-shadow: 0px 0px 7px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

/*---------- OFERTAS DESTACADAS -----------*/


.cont-of-dest.ofertas-destacadas {
    padding: 1em;
}

.ofertas-destacadas p.card-text {
    text-align: left;
    font-size: 13px;
}

.ofertas-destacadas .card img {
    width: 100%;
    border-radius: 10px;
}

.ofertas-destacadas {
    position: relative;
    overflow: hidden;
}

.ofertas-destacadas .card-body h3 {
    font-size: 15px;
    margin-bottom: 0;
    margin-top: 20px;
    color: var(--color-darkgray2);
    border-bottom: 0px solid #1ba548;
    padding-bottom: 10px;
    font-weight: 600;
    
}
.ofertas-destacadas .btn {
    padding: 0px;
    text-align: left;
}
.ofertas-destacadas .card-body {
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.ofertas-destacadas .responsive {
    z-index: 2;
}
.ofertas-destacadas .slick-dots {
    display: none!important;
}

.ofertas-destacadas .modal-dialog {
    max-width: 500px !important;
}

.ofertas-destacadas #figura3 {
    position: absolute;
    width: 100px;
    top: -50px;
    left: 15%;
}

.ofertas-destacadas #figura3 .st0 {
    fill: var(--color-gray);
}

.ofertas-destacadas .figura1 {
    position: absolute;
    width: 500px;
    bottom: -150px;
    right: -150px;
    opacity: 1;
    transform: rotate(-140deg);

}

.ofertas-destacadas .figura1 #Grupo2 {

    opacity: 0.15;

}

.ofertas-destacadas .modal-body p {
    text-align: left;
    font-size: medium;
}

.ofertas-destacadas .modal-body li {
    text-align: left;
    font-size: medium;
}

.ofertas-destacadas .modal-body ul {
    list-style: none;
}

.ofertas-destacadas .modal-body ul li:before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    background: transparent url(/convenios-alianzas/Biblioteca%20de%20estilos/webparts/oferta-educativa/img/icono-listas.png) no-repeat;
    background-size: 12px;
    top: 5px;
    left: 0px;
    margin-left: -19px;
    position: relative;
    filter: hue-rotate(40deg);
}

.ofertas-destacadas .modal-title {
    font-size: large;
    padding-bottom: 5px;
    font-weight: 900;
    color: #212143;


}

.ofertas-destacadas .slick-dots li.slick-active button:before {
    color: #1b57a5;
}

.ofertas-destacadas .slick-dots li button:before {
    color: #1ba548;
}

/*---------- SECCION BASICA IMAGEN Y TEXTO -----------*/

.content-basic {
    height: 360px;
    display: flex;
    justify-content: center;
}

.content-basic img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 10px;
}

.content-basic div {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 10px 20px;
    width: 48%;
}

/*---------- NAVEGACION PESTAÃ‘AS - TABS -----------*/


.tab-container {
    display: flex;
    justify-content: center;
}

.ag-tab {
    width: 270px;
    text-align: center;
    cursor: pointer;
    padding: 0 0 10px 0px;
    border-radius: 5px 5px 0 0;
    margin: 0px 20px 30px;
    font-size: 14px;
    font-weight: 500;

}

.ag-tab:hover {
    font-weight: 700;
    border-bottom: 3px solid var(--color-orange);

}

.active-tab {
    font-size: 14px;
    font-weight: 700;
    border-bottom: 3px solid var(--color-orange);

}

.tab-content {
    display: none;
}

.active-content {
    height: 300px;
    display: flex;
    justify-content: center;
}

.active-content div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 20px;
    width: 48%;

}

.active-content img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;

}

/*---------- SECCION HABILIDADES -----------*/

.s-habilidades .card-hab .conten {

    display: flex;
    justify-content: center;
    margin-bottom: 40px;

}

.s-habilidades .card-hab .tarjeta-h {
    background-color: var(--color-white);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    cursor: pointer;
    margin: 0 30px;
    overflow: hidden;
}

.s-habilidades .container .tarjeta-h h3 {
    padding: 15px 0;
    font-size: 16px;
    transition: 0.5s;
    text-align: center;
    margin: auto;
}

.s-habilidades #hhumanas,
.s-habilidades #htecnicas {
    overflow: hidden;
    height: 360px;
    position: relative;


}

.s-habilidades #hhumanas img,
.s-habilidades #htecnicas img {
    position: absolute;
    object-position: center;
    object-fit: cover;
    width: 50%;
    right: 0;

}

.s-habilidades #hhumanas .container .h-info,
.s-habilidades #htecnicas .container .h-info {
    display: flex;
    height: 360px;
    flex-direction: column;
    justify-content: space-around;
    width: 50%;
    padding: 30px 50px 30px 0;
}

.s-habilidades #hhumanas .container .h-info div,
.s-habilidades #htecnicas .container .h-info div {
    display: flex;
}

.s-habilidades #hhumanas .container .h-info div a,
.s-habilidades #htecnicas .container .h-info div a {
    margin-right: 25px;
}

.s-habilidades #hhumanas .container h3,
.s-habilidades #hhumanas .container p,
.s-habilidades #htecnicas .container h3,
.s-habilidades #htecnicas .container p {
    color: var(--color-white);
}

.s-habilidades #hhumanas {
    background-color: var(--color-orange);

}

.s-habilidades #htecnicas {
    background-color: var(--color-magenta);

}

.s-habilidades .h-info:nth-child(2) {
    background-color: var(--color-orange);
}

.s-habilidades .container .tarjeta-h:hover h3 {
    color: var(--color-white);
}

.s-habilidades .container .tarjeta-h:hover:nth-child(1) {
    background-color: var(--color-orange);
}

.s-habilidades .container .tarjeta-h:hover:nth-child(2) {
    background-color: var(--color-magenta);
}

.s-habilidades .container .tarjeta-h:hover:nth-child(3) {
    background-color: var(--color-violet);
}

.s-habilidades .container .tarjeta-h.active:nth-child(1) {
    background-color: var(--color-orange);

}

.s-habilidades .container .tarjeta-h.active h3 {
    color: var(--color-white);
}

.s-habilidades .container .tarjeta-h.active:nth-child(2) {
    background-color: var(--color-magenta);
}

.s-habilidades .container .tarjeta-h.active:nth-child(3) {
    background-color: var(--color-violet);
}


.s-habilidades .h-info img {
    width: 100%;
    height: 360px;
    margin-bottom: 20px;
    object-fit: cover;
    border-radius: 10px;
}








/*---------- HABILIDADES LISTA TABS -----------*/
.s-habilidades .h-info .lista h3 {
    margin-bottom: 20px;
}

.s-habilidades .h-info .lista ul {
    margin-top: 30px;
    padding-inline-start: 10px;
    padding-right: 20px;

}

.s-habilidades .h-info ul li {
    list-style: none;
    margin-bottom: 25px;
    border-radius: 30px;
    transition: 0.5s;
}

.s-habilidades .h-info ul li a {
    display: flex;
    padding-right: 15px;
    text-decoration: none;
}

.s-habilidades .h-info .lista,
.s-habilidades .h-info .info {
    width: 48%;

}

.s-habilidades .h-info ul li p {
    color: var(--color-black);
    font-size: 12.5px;
    margin: auto 5px;

}

.s-habilidades .h-info ul li span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-size: 35px;
    font-weight: 700;
    height: 50px;
    width: 50px;
    background-color: var(--color-gray);
    color: var(--color-black);
    border-radius: 50px;
    margin-right: 15px;
    transition: 0.5s
}

.s-habilidades .h-info .lista li:hover {
    background-color: var(--color-orange);
}

.s-habilidades .h-info .lista li:hover p {

    color: var(--color-white);
    font-weight: 500;

}

.s-habilidades .h-info ul li:hover span {
    background-color: var(--color-darkgray2);
    color: var(--color-white);
}

.s-habilidades .h-info .lista .active {

    color: var(--color-white);
    font-weight: 500;
}

.s-habilidades .h-info #hhumanas .lista .active {
    background-color: var(--color-orange);

}

.s-habilidades .h-info #htecnicas .lista .active {
    background-color: var(--color-magenta);

}

.s-habilidades .h-info .lista .active p {

    color: var(--color-white);
    font-weight: 500;
}

.s-habilidades .h-info ul li.active span {
    background-color: var(--color-darkgray2);
    color: var(--color-white);
}

.th-content {
    display: none;
}

.h-active {
    display: flex;
    justify-content: space-between;

}

/*---------- SECCION QUIERES APRENDER -----------*/
.s-aprende .container > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 270px;

}

.s-aprende .info {
    display: flex;
    flex-direction: column;
    width: 40%;
}

.s-aprende .info h3 {
    margin-bottom: 30px;
}

.s-aprende .card {
    display: flex;
    width: 55%;
    justify-content: space-around;
}

.s-aprende .card div {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: center;
    width: 45%;
    background-color: var(--color-lightgray);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.s-aprende .card p {
    font-size: 12.7px;
    margin-bottom: 0;
    line-height: 20px;
}

.s-aprende .card img {
    height: 65px;
}

/*---------- GESTION PROYECTOS -----------*/
#gestionp .container>div {
    display: flex;
    
}

#gestionp  .text {
    width: 45%;
    
}
#gestionp .proyectos {
    width: 55%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

#gestionp  .text h3 {
    margin-bottom: 25px;
}
#gestionp .text, #gestionp  .proyectos {
   padding: 20px;
}

#gestionp .proyectos .cont{
    width: 30%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: auto;
    text-align: center;
    background-color: var(--color-white);
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 3px 3px rgba(0,0,0,.2);
}

#gestionp .proyectos .cont p, #gestionp  .proyectos .cont img {
    padding: 0px 10px 0 10px;
}
#gestionp .proyectos div img {
 margin: 0 auto;
    height: 80px;

}
#gestionp .proyectos div span {
    font-weight: 700;
}

#gestionp .proyectos .cont div{
    background-color: rgba(0,0,0,.8);
    opacity: 0;
    height: auto;
    position: absolute;
    border-radius: 10px;
    transition: 1s;
   
}

#gestionp .proyectos .cont div p{
   font-size: 12.5px;
    line-height: 20px;
    color: var(--color-white);
    transform: translateY(-50%);
    top: 50%;
    position: relative;
}

#gestionp .proyectos .cont:hover div {
    
    opacity: 1;
    height: 100%;
}
#gestionp .container .info {
    display: block;
    margin: auto;
    padding: 10px;
    text-align: center;
}
#gestionp .container a {
    color: var(--color-orange);   
}

#gestionp i {
    color: var(--color-orange);
}
/*---------- MINIBANNER -----------*/
.mini-banner.empresas {
    position: relative;
    background-color: var(--color-lightblue);
    height: 170px;
    display: flex;
    justify-content: center;
    overflow: hidden;

}

.mini-banner.personas {
    position: relative;
    background-color: var(--color-violet);
    height: 170px;
    display: flex;
    justify-content: center;
    overflow: hidden;

}

.mini-banner .i-svg {
    position: absolute;
    right: 15%;
    top: 15px;
    width: 140px;
    z-index: 1;
}

.mini-banner .container {
    display: flex;

}

.mini-banner .container img {
    width: 33%;
    object-fit: cover;
    object-position: top;
    margin-top: -40px;

}

.mini-banner .container div:nth-child(2) {
    width: 37%;
    height: 80%;
    margin: auto;
    padding: 15px;

}

.mini-banner .container div:nth-child(3) {
    width: 30%;
    height: 80%;
    margin: auto;
    padding: 0px;
    display: inline-flex;

}

.mini-banner .container h3 {
    margin-bottom: 20px
}

.mini-banner .container p {
    font-size: 13px;
    line-height: 22px;

}

.mini-banner h3,
.mini-banner p {
    color: var(--color-white);
}

.mini-banner .container a {
    display: inline;
    text-align: center;
    margin: auto;
    z-index: 3;

}

/*--------------- LAPTOP 1100*1024 -------------*/

@media (max-width:1100px) {
    .mini-banner .btn-secundary {

        padding: 7px 10px;
        font-size: 13px;
    }
}

/*--------------- TABLET 768*1023 -------------*/

@media (max-width:1023px) {
    /*
    .header {
        padding: 50px 0;
    }
*/




    /*--------- MENU NAVEGACION PERSONAS Y EMPRESAS ----------*/
    .menu-interno {

        z-index: 30;
    }

    .menu-nav nav ul:nth-child(1) {

        flex-wrap: wrap;
        font-size: 12px;
    }

    .menu-nav nav ul .link-main {

        z-index: 5;
    }

    .menu-nav .sub-menu {
        padding: 0;
        position: relative;
        display: none;
        transition: 0.7s;
    }

    .menu-nav .sub-menu li a {
        font-size: 12px;
        font-weight: 500;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    }

    .menu-nav .sub-menu li a span {
        font-size: 11px;
        font-weight: 400;

    }

    /* Estilos para los submenÃºs */

    .menu-nav li:hover .sub-menu {

        position: relative;
        width: 100%;
    }

    .burger-icon {
        text-align: center;
        display: block;
    }

    .nav-hidden {
        display: none;
    }

    .nav-visible {
        display: block;
    }

    .sub-menu {
        display: block;
    }

    /*--------- SIEMPRE AL DIA ----------*/


    .cont-dia .tar-not h3 {
        font-size: 14px;

    }

    .cont-dia .tar-not p {
        font-size: 12.5px;

    }

    .cont-dia .not-1 {
        height: 270px;

    }

    .cont-not .cont-not-d2 {

        overflow-x: auto;

    }

    .cont-not .cont-not-d2 .tar-not {
        width: 100vw;
        flex: 0 0 auto;
        margin-right: 20px;
    }

    .cont-not .cont-not-d2 .tar-not:nth-child(1) {

        width: 70%;
    }

    .cont-not .cont-not-d2 .tar-not:nth-child(2) {

        width: 70%;
    }

    .cont-not .tar-not img {
        width: 50%;
        object-fit: cover;

    }

    /*---------- HOME PERSONAS -----------*/
    /*---------- BUSCAS TRABAJO -----------*/

    .b-trabajo .cards p {
        font-size: 12.5px;
    }

    .b-trabajo .cards img {
        height: 60px;
    }

    .b-trabajo .cards div {
        padding: 20px;


    }

    /*---------- OFERTAS DESTACADAS -----------*/




    /*---------- NAVEGACION PESTAÃ‘AS - TABS -----------*/


    .active-content {
        height: 270px;
    }

    .active-content div {
        padding: 10px 10px;

    }


    /*---------- SECCION HABILIDADES -----------*/

    .s-habilidades .card-hab .tarjeta-h {
        width: 30%;
    }

    .s-habilidades .card-hab .tarjeta-h img {
        width: 100%;
    }

    .s-habilidades .h-info > div {
        flex-wrap: wrap;
    }

    .s-habilidades .h-info img {
        height: auto;
        padding-right: 0px;
        margin-bottom: 0px;
        border-radius: 10px;
    }

    .s-habilidades .h-info .lista h3 {
        text-align: center;
    }

    .s-habilidades .h-info .lista > p {
        padding: 0 50px;
        text-align: center;
    }

    .s-habilidades .h-info .lista ul {
        padding-right: 0px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;

    }

    .s-habilidades .h-info ul li {
        width: 48%;
    }

    .s-habilidades .h-info .lista,
    .s-habilidades .h-info .info {
        width: 100%;

    }

    .s-habilidades .h-info ul li p {
        font-size: 12px;
    }

    .s-habilidades .h-info ul li span {
        font-size: 30px;
        width: 50px;
        margin: auto;
    }

    .s-habilidades .h-info .info div {
        display: flex;
        justify-content: space-around;
    }

    .s-habilidades .h-info .info img,
    .s-habilidades .h-info .info p {
        width: 47%;
    }

    /*---------- SECCION QUIERES APRENDER -----------*/
    .s-aprende .container > div {
        height: auto;
    }

    .s-aprende .info {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .s-aprende .info h3 {

        width: 100%;
    }

    .s-aprende .card {
        width: 100%;

    }


    /*---------- MINIBANNER -----------*/


    .mini-banner {
        height: 150px;

    }


    .mini-banner .container img {
        width: 30%;
        margin-top: 0px;
    }

    .mini-banner .container div:nth-child(2) {
        width: 50%;


    }

    .mini-banner .container div:nth-child(3) {
        width: 20%;
        display: flex;
        flex-wrap: wrap;
    }

    .mini-banner .container h3 {
        margin-bottom: 15px
    }

    .mini-banner .container p {
        font-size: 12.5px;
        line-height: 20px;

    }

    .mini-banner .btn-secundary {

        padding: 7px 10px;
        font-size: 12px;
    }
}

@media (max-width:990px) {
    #menu-personas.fixed {

        top: 100px;

    }
    #menu-empresas.fixed {

        top: 100px;

    }

    .s-habilidades #hhumanas img,
    .s-habilidades #htecnicas img {

        height: 100%;
    }

    .s-habilidades #hhumanas .container .h-info div a,
    .s-habilidades #htecnicas .container .h-info div a {

        margin-bottom: 10px;
    }

    .s-habilidades #hhumanas,
    .s-habilidades #htecnicas {

        height: 420px;

    }

    .s-habilidades #hhumanas .container .h-info,
    .s-habilidades #htecnicas .container .h-info {

        height: 420px;

    }

}

/*--------------- MOBILE 320X767 -------------*/

@media (max-width:767px) {


    .mg-t3 {
        margin-top: 20px;
    }

    .mg-t5 {
        margin-top: 25px;
    }


    /*--------- MENU NAVEGACION PERSONAS Y EMPRESAS ----------*/
    #menu-personas.fixed {

        top: 90px;

    }
     #menu-empresas.fixed {

        top: 90px;

    }

    /*---------- ANIMACION MENSAJE -----------*/

    #inf-menu p {
        text-align: center;
        width: 300px;


    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            width: 0px;
            height: 0;
            margin-left: 0px;
            display: block;
        }



        50% {

            height: 30px;


        }

        100% {
            opacity: 1;
            width: 300px;
            height: 55px;
        }
    }

    @keyframes fadeOut {
        0% {
            opacity: 1;
            width: 300px;
            height: 55px;
        }

        50% {

            height: 10px;
            opacity: 0;


        }

        100% {
            opacity: 0;
            width: 0px;
            height: 0;
            margin-left: 0px;
            display: none;

        }
    }


    /*--------- SIEMPRE AL DIA ----------*/

    .tar-not div {

        padding: 10px 20px;
        width: 100%;
        height: 220px;
    }

    .cont-not .cont-not-d2 .tar-not,
    .cont-not .tar-not {
        flex-direction: column;

    }

    .cont-dia .not-1 {
        height: auto;
    }

    .cont-not .cont-not-d2 .tar-not img {
        width: 100%;

    }

    .cont-not .cont-not-d2 .tar-not div {
        padding: 20px 20px;
        height: 280px;
    }



    .cont-not .cont-not-d2 .tar-not:nth-child(1) {
        width: 85%;
    }

    .cont-not .cont-not-d2 .tar-not:nth-child(2) {
        width: 85%;
    }

    .cont-not .tar-not img {
        width: 100%;
        object-fit: cover;
    }

    /*---------- HOME PERSONAS -----------*/
    /*---------- BUSCAS TRABAJO -----------*/
    .container .text-intro {

        margin-bottom: 20px;
    }

    .b-trabajo .cards {
        overflow-x: auto;
        justify-content: normal;
        margin-bottom: 0px;
    }

    .b-trabajo .cards p {
        font-size: 13px;
    }

    .b-trabajo .cards img {
        height: 60px;
    }

    .b-trabajo .cards div {
        width: 70%;
        margin: 20px;
        flex: 0 0 auto;

    }

    /*---------- OFERTAS DESTACADAS -----------*/




    /*---------- NAVEGACION PESTAÃ‘AS - TABS -----------*/

    .tab-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .active-content {
        height: auto;

        flex-wrap: wrap;
    }

    .active-content div {
        padding: 10px 10px;
        width: 100%;
        text-align: center;
        height: 270px;
        align-items: center;

    }


    /*---------- SECCION HABILIDADES -----------*/
    .s-habilidades .card-hab .conten {
        overflow-x: auto;
        justify-content: space-between;
        margin-bottom: 0px;
        padding: 0 10px;

    }

    .s-habilidades .card-hab .tarjeta-h {
        width: 70%;
        flex: 0 0 auto;
        margin-right: 20px;
        margin-bottom: 10px;
    }

    .s-habilidades #hhumanas,
    .s-habilidades #htecnicas {
        height: auto;

    }

    .s-habilidades #htecnicas .container .h-info,
    .s-habilidades #hhumanas .container .h-info {
        height: auto;
        width: 100%;
        padding: 30px 20px 30px 20px;
    }

    .s-habilidades #hhumanas img,
    .s-habilidades #htecnicas img {
        position: relative;
        width: 100%;
    }

    .h-active {
        flex-direction: column;
    }

    .s-habilidades #hhumanas .container h3,
    .s-habilidades #hhumanas .container p,
    .s-habilidades #htecnicas .container h3,
    .s-habilidades #htecnicas .container p {
        text-align: center;
        margin-bottom: 20px;
    }

    .s-habilidades #hhumanas .container .h-info div,
    .s-habilidades #htecnicas .container .h-info div {
        justify-content: space-evenly;

    }

    .s-habilidades #hhumanas .container .h-info div a,
    .s-habilidades #htecnicas .container .h-info div a {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .s-habilidades .h-info .lista > p {
        padding: 0 20px;
    }

    .s-habilidades .h-info ul li {
        width: 100%;
    }

    .s-habilidades .h-info .info div {
        flex-wrap: wrap;
    }

    .s-habilidades .h-info .info img,
    .s-habilidades .h-info .info p {
        width: 100%;
        margin-bottom: 15px
    }

    /*---------- SECCION QUIERES APRENDER -----------*/
    .s-aprende .card {
        flex-wrap: wrap;
    }

    .s-aprende .card div {

        width: 90%;
        margin-top: 20px;

    }

    .s-aprende .card p {
        font-size: 13px;
        margin: 15px 0;

    }

    /*---------- MINIBANNER -----------*/

    .mini-banner .container {
        flex-wrap: wrap;
    }

    .mini-banner {
        height: auto;
        padding: 20px 0;
    }


    .mini-banner .container img {
        display: none;
    }

    .mini-banner .container div:nth-child(2) {
        width: 100%;
        text-align: center;
        height: auto;
    }

    .mini-banner .container div:nth-child(3) {
        width: 100%;
        height: auto;
    }

    .mini-banner .container p {
        font-size: 13px;
    }

    .mini-banner .btn-secundary {
        padding: 10px 25px;

    }

}

@media (max-width:350px) {

    /*---------- ANIMACION MENSAJE -----------*/

    #inf-menu p {
        text-align: center;
        width: 200px;
        height: 85px;


    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            width: 0px;
            height: 0;
            margin-left: 0px;
            display: block;
        }



        50% {

            height: 40px;


        }

        100% {
            opacity: 1;
            width: 200px;
            height: 85px;
        }
    }

    @keyframes fadeOut {
        0% {
            opacity: 1;
            width: 200px;
            height: 85px;
        }

        50% {

            height: 30px;
            opacity: 0;


        }

        100% {
            opacity: 0;
            width: 0px;
            height: 0;
            margin-left: 0px;
            display: none;

        }
    }


}
