@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@500;600;700&family=Roboto:wght@100;300;400;500;700;900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently */
}

/* NAVBAR */
navbar {
	-webkit-box-shadow: 0px 5px 20px 1px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 5px 20px 1px rgba(0,0,0,0.75);
	box-shadow: 0px 5px 20px 1px rgba(0,0,0,0.75);
	background: #fff;
}

/* CONTENIDO */
#contenido {
	position: absolute;
	top: 115px;
	left: 0;
	width: 100%;
}
#contenido .header {
	width: 100%;
	background: linear-gradient(#ebebeb,#b1b1b1);
	padding: 70px 0px 0px 0px;
	display: flex;
	justify-content: center;
}
#contenido .header .header-content {
	text-align: center;
	max-width: 900px;
}
#contenido .header .header-content h1, #contenido .header .header-content p {
	margin-bottom: 28px;
}
#contenido .header .header-content h1 {
	color: #53565A;
	font-family: 'Roboto Slab', serif;
	font-weight: 100;
	font-size: 38px
}
#contenido .header .header-content p {
	color: #53565A;
	font-family: 'Roboto', serif;
	max-width: 750px;
	font-weight: 300;
}
#contenido .header .header-content .buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 45px;
}
#contenido .header .header-content .buttons a {
	padding: 10px 20px;
	display: flex;
	justify-content: center;
	border-radius: 3px;
	align-items: center;
	font-family: 'Roboto', serif;
	border: 1px solid #53565A;
	text-decoration: none;
}
#contenido .header .header-content .buttons a:nth-child(1) {
	background: #6CC24A;
	border-color: #6CC24A;
	margin: 0px 10px;
	color: #fff;
}
#contenido .header .header-content .buttons a:nth-child(2) {
	color: #53565A;
}
#contenido .header .header-content .header-image img {
	height: 100%;
	max-height: 450px;
	display: block;
	margin: auto;
}
#contenido .header .header-content .header-image.w100 img {
	width: 80%;
	height: auto;
}
#contenido .social-media {
	background: linear-gradient(#003b49,#002023);
	padding: 30px;
}
#contenido .social-media .sociales {
	display: flex;
	justify-content: center;
	align-items: center;
}
#contenido .social-media a {
	margin: 0px 10px;
}
#contenido .social-media a i {
	color: #fff;
	font-size: 18px;
}
#contenido .content-description {
	padding: 70px 0px;
}
#contenido .content-description h2 {
	font-family: 'Roboto Slab', serif;
	font-size: 32px;
	color: #53565A;
	font-weight: 100;
	text-align: center;
	margin-bottom: 28px;
}
#contenido .content-description .valores {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}
#contenido .content-description .valores .valores-container {
	width: 100%;
	max-width: 900px;
	display: flex;
	justify-content: center;
}
#contenido .content-description .valores .valores-container .valor {
	width: 33.3%;
	padding: 20px;
	text-align: center;
}
#contenido .content-description .valores .valores-container .valor:nth-child(1), #contenido .content-description .valores .valores-container .valor:nth-child(2) {
	border-right: 1px solid #dde5ed;
}
#contenido .content-description .valores .valores-container .valor img {
	width: 100%;
	max-width: 90px;
	margin-bottom: 20px;
}
#contenido .content-description .valores .valores-container .valor p {
	font-family: 'Roboto', serif;
	color: #53565A;
}
#contenido .content-description .lista-servicios {
	width: 100%;
	display: flex;
	justify-content: center;
}
#contenido .content-description .lista-servicios .lista {
	width: 100%;
	max-width: 900px;
}
#contenido .content-description .lista-servicios .lista .list-element {
	display: flex;
	align-items: center;
	padding: 20px;
	border-bottom: 1px solid #dde5ed;
}
#contenido .content-description .lista-servicios .lista .list-element i {
	margin-right: 10px;
	color: #6CC24A;
}

/* NUEVO CONTENIDO */
body {background: linear-gradient(#ebebeb,#fff);}
#contenido .container {
    padding: 70px 0px 0px 0px;
    width: 100%;
    display: flex;
    justify-content: center;
}

#contenido .container .title-options {
    width: 90%;
    max-width: 900px;
    text-align: center;
}

#contenido .container .title-options img {
    width: 70px;
    height: auto;
    margin-bottom: 10px;
}

#contenido .container .title-options h1 {
    color: #53565A;
	font-family: 'Roboto Slab', serif;
	font-weight: 100;
	font-size: 38px;
	margin-bottom: 25px;
}

#contenido .container .title-options .options {
    width: 100%;
    display: flex;
}

#contenido .container .title-options .options .option {
    width: 33.3%;
    display: flex;
    justify-content: center;
}

#contenido .container .title-options .options .option.two-rows {
    width: 50%;
}

#contenido .container .title-options .options .option p {
    font-family: 'Roboto', serif;
    font-size: 18px;
    font-weight: 400;
    color: #53565a;
    cursor: pointer;
    transition: all 0.3s ease;
}

#contenido .container .title-options .options .option p:hover {
    text-decoration: underline;
}

#contenido .container .title-options .options .option .active {
    font-weight: 700;
    color: #6cc24a;
    pointer-events: none;
}

#contenido .container .title-options .options .option:nth-child(1), #contenido .container .title-options .options .option:nth-child(2) {
    border-right: 1px solid #53565A;
}

#contenido .container .title-options .options .option.two-rows:nth-child(2) {
    border-right: none;
}
#contenido .container .content {
    width: 90%;
    max-width: 800px;
    height: auto;
    position: relative;
    overflow: hidden;
}
#contenido .container .content .content-info {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s ease;
    padding: 0px 30px 0px 30px;
}
#contenido .container .content #content-2 {transform: translateX(100%);}
#contenido .container .content #content-3 {transform: translateX(200%);}

#contenido .container .content .content-info .servicios .servicio {
    font-family: 'Roboto', serif;
    color: #53565A;
    margin-bottom: 20px;
    text-align: justify;
}
#contenido .container .content .content-info .servicios .servicio p i {
    color: #6cc24a;
    margin-right: 15px;
}