html, body{
    width: 100%;
    height:100%;
	font-family: sans-serif;
	padding: 70px 20px 0;
    background-color: #E6E8E6;

}
*{
    margin: 0;
	padding: 0;
	box-sizing: border-box;
}
main{
    width: 80%;
    height: 80%;
    margin: 0 auto;
}
.text{
    text-align: justify;
    margin-left: 4%;
    font-family: 'Rubik', sans-serif;
    position: fixed;
}
.text p{
    font-size: 18px;
    line-height: 150%;

}
.video{
    margin: auto;
    display: block;
}
.contenedor{
    width: 60%;
	margin: auto;
	padding: 40px 0;
    display: block;
    
}
.contenedorObj{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.obj{
    border-radius: 10px;
	min-height: 200px;
	font-weight: bold;
	padding: 20px;
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-position: center center;
    font-family: 'Rubik', sans-serif;
    color: white;
    width: 200px;
    background-color: rgba(0, 0, 0, 0.31);
    transition: all .4s ease-in-out;
}
.obj .texto{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-shadow: 4px 4px 2px rgb(0, 0, 0);
    
}
.titulo{
    font-family: 'Courier New';
    text-align: center;
}
/*
.obj div:hover {
     color: whitesmoke;
	transform: scale(1.2);
    color: white;
    background-color: #30303035;
    border-radius: 5px;
  }

a{
    text-decoration: none;
    color: white;
}
*/

.container{
    width: 90%;
    min-height: 100vh;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    
}

.slider{
    background-color: #E6E8E6;
}
.slider_container{
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    align-items: center;
    gap: 1em;
}
.slider_body{
    grid-column: 2/3;
    grid-row: 1/2;
    opacity: 0;
    pointer-events: none;
    display: grid;
    background-color: #E6E8E6;
    grid-template-columns: 1fr max-content;
    align-items: center;
    transition: opacity 1.5s;
    margin-bottom: 40%;

}
.slider_body--show{
    opacity: 1;
    pointer-events:unset;
}
.slider.text{
    max-width: 600px;
}
.subtitle{
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.slider_review{
    font-weight: 300;
    font-size: 20px;
    line-height: 1.7;
}
.slider_image{
    width: 230px;
    height: 230px;
    border-radius: 50%;
    margin: 0 auto;
}
.slider_arrow{
    cursor: pointer;
    width: 100%;
    margin-bottom: 10%;
}
.slider_arrow:nth-of-type(2){
    justify-self: end;
}