@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Narrow:wght@400;700&display=swap');

* {
    box-sizing: border-box;
}

body{
	margin: 0;
	background-color: var(--bg-main-color);
	background-repeat: no-repeat;
	overflow-x: hidden;

}

header {
	display: flex;
	width: 100%;
	justify-content: flex-start;
	background-color: white;
}

.div_inicio {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.div_img {
	width: 50%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.div_letra {
	width: 50%;
	padding: 50px 8%;
	font-family: 'PT Sans Narrow';
	font-weight: 200;
}

.div_letra > h1 {
	font-size: 35px;
	justify-content: center;
    display: flex;
}

.div_letra > p {
	font-size: 25px;
	text-align: justify;
} 

.div_titulo {
	width: 45%;
	margin-left: 27.5%;
	font-family: 'PT Sans Narrow';
	font-weight: 200;
}

.div_titulo > h1 {
	display: flex;
	justify-content: center;
	margin-top: 3%;
}

.div_final {
	width: 100%;
	display: flex;
	justify-content: space-evenly;
}

/*new*/

.contim {
	height: 300px;
	width: 100%;
	display: none;
	/*background-attachment: fixed;*/
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	justify-content: center;
	align-items: center;
}
.titex_cont{
	width: 100%;
	height: 90%;
	background-color: rgba(255, 255, 255, 0.5);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
}
.titex_cont > h2 {
	transition: font-size 1s ease;
	font-size: 32px;
	align-self: center;
	color: #2A2A2A;
	margin: 2% 0%;
	padding: 0;
}

.titex_cont > p {
	text-align: center;
	transition: font-size 1s ease;
	font-size: 18px;
	color: #2A2A2A;
	width: 80%;
	margin: 0;
	padding: 0;
}



@media screen and (max-width: 1500px){
	.div_letra {
		padding:4%;
	}

	.div_letra > h1 {
		font-size: 30px;
	}

	.div_letra > p {
		font-size: 20px;
		text-align: justify;
	} 
}

@media screen and (max-width: 1000px){
	.div_letra {
		padding:4%;
	}

	.div_letra > h1 {
		font-size: 28PX;
	}

	.div_letra > p {
		font-size: 18px;
		text-align: justify;
	} 
}

@media (max-width: 800px){
	.div_inicio {display: none;}
	.contim {
		display: flex;
	}
	.div_titulo > h1 {font-size: 1.95em;}
}



@media (max-width: 800px){

}


@media (max-width: 800px){
	.titex_cont > h2 {
		font-size: 25px;
	}
}

.ch-grid {
	margin: 20px 0 0 0;
	padding: 0;
	list-style: none;
	display: block;
	text-align: center;
	width: 100%;
  }
  
  .ch-grid:after,
  .ch-item:before {
	content: '';
	  display: table;
  }
  
  .ch-grid:after {
	clear: both;
  }
  
  .ch-grid li {
	width: 220px;
	height: 220px;
	display: inline-block;
	margin: 20px;
  }
  
  .ch-item {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	position: relative;
	cursor: default;
	box-shadow: 
	  inset 0 0 0 0 var(--main-color-4),
	  inset 0 0 0 16px var(--main-opa-color-3),
	  0 1px 2px rgba(0,0,0,0.1);
	transition: all 0.4s ease-in-out;
  }
  
  .ch-img-1 { 
	background-image: url(../imgs/2.webp);
  }
  
  .ch-img-2 { 
	background-image: url(../imgs/3.webp);
  }
  
  .ch-img-3 { 
	background-image: url(../imgs/4.webp);
  }
  
  .ch-img-4 { 
	background-image: url(../imgs/5.webp);
  }
  
  .ch-info {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	overflow: hidden;
	opacity: 0;
	transition: all 0.4s ease-in-out;
	transform: scale(0);
	backface-visibility: hidden;
  }
  
  .ch-info h3 {
	color: #fff;
	text-transform: uppercase;
	position: relative;
	letter-spacing: 2px;
	font-size: 22px;
	margin: 0 30px;
	padding: 85px 0 0 0;
	height: 110px;
	font-family: 'Open Sans', Arial, sans-serif;
	text-shadow: 
	  0 0 1px #fff, 
	  0 1px 2px rgba(0,0,0,0.3);
  }
  
  .ch-info p {
	color: #fff;
	padding: 10px 5px;
	font-style: italic;
	margin: 0 30px;
	font-size: 12px;
	border-top: 1px solid rgba(255,255,255,0.5);
  }
  
  .ch-info p a {
	display: block;
	color: rgba(255,255,255,0.7);
	font-style: normal;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 9px;
	letter-spacing: 1px;
	padding-top: 4px;
	font-family: 'Open Sans', Arial, sans-serif;
  }
  
  .ch-info p a:hover {
	color: rgba(255,242,34, 0.8);
  }
  
  .ch-item:hover {
	box-shadow: 
	  inset 0 0 0 110px var(--main-opa-color),
	  inset 0 0 0 16px var(--main-opa-color-2),
	  0 1px 2px rgba(0,0,0,0.1);
  }
  
  .ch-item:hover .ch-info {
	opacity: 1;
	transform: scale(1);  
  }

  .efecto-zoom {
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
	transition: all 1s ease-in-out;
	-webkit-transition: all 1s ease-in-out;
	/** Chrome & Safari **/
	-moz-transition: all 1s ease-in-out;
	/** Firefox **/
	-o-transition: all 1s ease-in-out;
	/** Opera **/
  }