/* Section */
header.no-bg {
    background-color: transparent !important;
    padding-bottom: 0%;
}

@media (min-width: 1080px) { .personSection { width:70%; } }
@media (min-width: 992px) and (max-width: 1079px) { .personSection { width:75%; } }
@media (min-width: 768px) and (max-width: 991px) { .personSection { width:80%; } }
@media (min-width: 500px) and (max-width: 767px) { .personSection { width:90%; } }
@media (max-width: 499px) { .personSection { width:100%; } }
.personSection {
	margin:0px auto;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}
.margin {
	padding-left:3%;
	padding-right:3%;
	box-sizing: border-box;
	margin-left: 0;
	margin-top: 2%;
}

/* Encabezado */
h3 {
	font-size:1.2em;
/*	font-weight:bold;*/
}

/* Equipo */
#dvEquipo article {
	text-align:center;
}
#dvEquipo article img {
	width:80%;
}
#dvEquipo article span{
	font-weight: bold;
}
#dvEquipo article p {
	font-size:0.8em;
}
.img-equipo {
	filter: grayscale(1);	
}
.img-equipo:hover {
	filter: grayscale(0);	
}
dialog {
	z-index: 1000;
	position: fixed;
	top: 30%;
	width: 96%;
	max-width: 600px;
	height: auto;
	padding: 50px 40px;
	box-shadow: 0 0 10px rgba(0,0,0,.5);
	border: #ddd 1px solid;
}
dialog::backdrop {
	position: fixed;
	top:0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	background-color: rgba(0,0,0,.5);
	width: 100%;
	height: 100%;
}
.close-icon {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	cursor: pointer;
}
.dialog-imagen-equipo{
	width: 30%;
	height: auto;
	max-width: 400px;
}
.dialog-row{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 30px;
}
.equipo-wrapper {
	box-sizing: border-box;
}
@media (max-width: 768px)  { 
	dialog {
		top: 15%;
		padding: 50px 8px;
	}
	.dialog-row{
		gap: 10px;
	}
}