.contenedortarjetapresentacion{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	align-items: center;
	padding: 0 7%;
	background: rgba(255, 255, 255, 1.0);
}

.card{
	z-index: 700;
	position: relative;
	width: 100%;
	border-radius: 10px;
	margin: 10px;
}

.card .content{
	z-index: 705;
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 350px;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	text-align: center;
	padding: 20px;
	background: #fff;
	box-shadow: 2px 3px 10px rgba(73, 69, 52, 0.4);
}

.card .content .img{
	z-index: 720;
	height: 300px;
	margin-bottom: 10px;
}

.card .content .img img{
	position: relative;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.card .content span{
	z-index: 710;
	position: absolute;
	width: 150%;
	height: 450px;
	background: var(--colorverde);
	transform: rotate(-7deg);
	top: -190px;
	left: -100px;
}

.card .content h4{
	z-index: 730;
	font-size: 7mm;
	font-weight: 600;
	color: #1a1919;
	margin-top: 15px;
	margin-bottom: 10px;	
}

.card .content h6{
	z-index: 730;
	font-size: 5.5mm;
	font-weight: 300;
	color: #5e2066;
}

.card .content p{
	z-index: 730;
	font-size: 4mm;
	line-height: 6mm;
	font-weight: 300;
	color: #1a161f;
	margin-top: 10px;
	text-align: justify;
  	text-justify: inter-word;
}

.card .links{
	position: absolute;
	z-index: 90;
	width: 50px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	background: rgba(255, 255, 255, 0.5);
	box-shadow: 2px 3px 5px rgba(73, 69, 52, 0.4);
	padding: 20px;
	align-items: center;
	right: 10px;
	top: 15px;
	transition: 0.5s;
}


.card:hover .links{
	right: -50px;
	border-radius: 0 10px 10px 0;
}

.card .links a{
	font-size: 20px;
	color: #646069;
}

.card .links a:nth-child(1):hover{
	color: #0158ca;
}

.card .links a:nth-child(2):hover{
	color: #1c93e4;
}

.card .links a:nth-child(3):hover{
	color: #5d277d;
}

.card .links a:nth-child(4):hover{
	color: #fe0000;
}

/*OFICINAS-----------------------------------*/
.contenedornuestasoficinas{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	align-items: center;
	padding: 20px 7%;
	margin:20px 0;
	background: rgba(245, 245, 245, 1.0);
}


.contenedoroficinas{
	z-index: 705;
	position: relative;
	/**/
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	/**/
	width: 100%;
}

.contenedoroficinas h4{
	z-index: 730;
	text-align: center;
    font-style: oblique;
    font-weight: 500;
    font-size: 5.5mm;
  	text-justify: inter-word;
  	color: rgba(0, 0, 0, 1.0);
}

.contenedoroficinas-flex{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	width: 100%;
}

.oficina{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	align-items: center;
	padding: 20px;
	margin: 10px 0;
}

.oficina img{
	min-width: 300px;
	width: 30%;
	height: auto;
	object-fit: cover;
	border-radius: 10%;
}

.oficina h5{
	z-index: 730;
	font-size: 5mm;
	font-weight: 300;
	color: #5e2066;
}

.oficina h6{
	z-index: 730;
	font-size: 4mm;
	line-height: 6mm;
	font-weight: 300;
	color: #1a161f;
	margin-top: 10px;
	text-align: center;
  	text-justify: inter-word;
}

/*Tarjeta de Presentacion-------------------------------------------*/
@media screen and (max-width: 1700px){
	.contenedortarjetapresentacion{
		padding: 0 1%;
	}
}

@media screen and (max-width: 450px){
	.card{
		margin: 5px;
	}
	.card .content .img{
		height: 250px;
	}
	.card .content .img img{
		width: 250px;
		height: 250px;
	}
}

@media screen and (max-width: 320px){
	.card{
		margin: 2px;
	}
	.card .content .img{
		height: 200px;
	}
	.card .content .img img{
		width: 200px;
		height: 200px;
	}
}


/*Oficinas----------------------------------------------*/
@media screen and (max-width: 1700px){
	.contenedornuestasoficinas{
		padding: 20px 1%;
		margin:20px 0;
		background: rgba(245, 245, 245, 1.0);
	}

@media screen and (max-width: 730px){
	.contenedoroficinas-flex{
		flex-direction: column;
	}
}

@media screen and (max-width: 350px){
	.oficina img{
		min-width: 200px;
	}
}