
.equipos{
	display: block;
    width: 100%;
    float: left;
    margin: 0;
}




/* POPUP*/
.popup-equipo{
    position: fixed;
    top: 100px;
    right: 0;
    z-index: 999;
    width: 100%;
}

.popup-equipo .content{
	width: 100%;
    max-width: 35vw;
    position: absolute;
    right: 0;
    top: 0;
    background-color: #fff;
    padding: 30px;
    height: 90vh;
    box-shadow: 0px 2px 10px;
    overflow: auto;

}
.popup-equipo .content::-webkit-scrollbar {
    width: 10px;
}
.popup-equipo .content::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.popup-equipo .content::-webkit-scrollbar-thumb {
  background: #111B51;
  border-radius: 6px;
}
.popup-equipo .content .data{
    display: flex;
    flex-direction: column;
}
.popup-equipo .content .data .row{
	margin: 0;
	padding: 0;
	width: 100%;
	display: block;
}
.popup-equipo .content .data .row.description {
    padding-bottom: 30px;
}
.popup-equipo .content .data .top{
    display: flex;
}
.popup-equipo .content .data .top .row{
    display: flex;
}
.popup-equipo .content .data .top .row .data{
    width: 70%;
}
.popup-equipo .content .data .top .row .social{
    width: 30%;
    display: flex;
    justify-content: flex-end;
}
.popup-equipo .content .data .top .row .social i{
    color: #fff;
    background: #111B51;
    padding: 5px;
    border-radius: 5px;
    margin-left: 10px;
}
.popup-equipo .content .data .row .image{
	display: inline-block;
	width: 80%;
	
}
.popup-equipo .content .data .row .image img{
    margin-bottom: 15px;
}
.popup-equipo .content .data .row .close{
	display: inline-block;
	width: 20%;
	text-align: right;
    color: #111B51;
    font-weight: 400;
    font-size: 30px;
    opacity: 1;
    cursor: pointer;
}



.popup-equipo.d-none{
	display: none;
}





/* PUESTOS */
.equipos .puestos{
	display: inline-block;
    width: 300px;
    float: left;
    margin: 0;
    position: relative;
}
.equipos .puestos .item{
    margin-bottom: 14px;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: -0.02em;
    color: #7D7D7D;
    font-family: 'Poppins';
}

.equipos .puestos .active{
   color: #111B51;
}

.equipos .puestos .item .count{
    font-size: 11px;
}
.equipos .puestos .item:hover, .equipos .puestos .item:active{
	cursor: pointer;
    color: #111B51;
}



/* MIEMBROS */
.equipos .miembros{
	width: calc(100% - 300px);
    float: left;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
}

.equipos .miembros .nodata{
    text-align: center;
    width: 100%;
    color: #111B51;
    font-size: 20px;
}

.equipos .miembros .miembro{
	float: left;
    display: inline-block;
    margin: 0 0 32px 0;
    flex: 0 1 31%;
}

.equipos .miembros .miembro .imgcover,
.equipos .miembros .miembro .imgcovernlnk{	
	width: 100%;
    display: block;
    height: calc(26vw);
    margin: 0 0 12px 0;
    background-position: center !important;
    position: relative;
    background-size: cover;
    background-position: center !important;
    background-size: cover !important;
    border-radius: 2px;

}
.equipos .miembros .miembro h5.titulo, .popup-equipo .content .data h5.titulo{
    font-size: 20px;
    color: #111B51;
    margin-bottom: 5px;
    margin-top: 0px;
}
.equipos .miembros .miembro .cargo, .popup-equipo .content .data .cargo{
    font-size: 16px;
    color: #0061A0;
}
.equipos .miembros .miembro .imgcover .description{ 
	position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #3d83b0 0%,#111b51 100%);
    height: 100%;
    padding: 0;
    color: #fff;	
}

.equipos .miembros .miembro .imgcover .description.close{	display: none;	}

.equipos .miembros .miembro .imgcover .see-open:hover{
	cursor: pointer;	
}

.equipos .miembros .miembro .imgcover .description .main{
    display: flex;
    padding: 27px 19px;
    float: left;
    font-family: 'FoundersGroteskRegular';
    font-size: 30px;
    line-height: 40px;
}

.equipos .miembros .miembro .imgcover .description .data-content{
 	position: absolute;
    z-index: 0;
    color: #fff;
    display: flex;
    align-items: center;
    top: 0;
    width: 100%;
    padding: 30px;
}
@media (max-width: 1024px) {
    .equipos{
        display: flex;
        flex-direction: column;
    }
    
    .equipos .miembros .miembro{
		margin: 0;
	}
    .equipos .miembros{
        width: 100%;
        justify-content: space-between;
    }
	.equipos .miembros .miembro {
		flex: 0 1 48%;
	}
    .equipos .miembros .miembro .imgcover,
    .equipos .miembros .miembro .imgcovernlnk{
        height: calc(53vw);
    }
    .equipos .miembros .miembro h5.titulo{
        font-size: 14px;
    }
    .equipos .miembros .miembro .cargo{
        font-size: 12px;
    }
    .popup-equipo{
        top: 95px;

    }
    .popup-equipo .content{
        max-width: 100%;
        overflow:auto;
        height: 95vh;
    }
    .popup-equipo .content .data .description p{
        font-size: 14px;
    }
    .popup-equipo .content .data .top{
        display: flex;
        flex-direction: column-reverse;
    }
    .popup-equipo .content .data .top>div{
        width: 100%!important;
    }
}

