* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
} 

@font-face{
  font-family: 'GoldenHills';
  src: url(../fuentes/GoldenHills.ttf);
}

/* MENU DE NAVEGACION */

.container__nav {
	width: 100%;
	padding: 0px 20px;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-flow: row wrap;
}

.container__logo{
	display: flex;
	align-items: center;
}

.container__logo img {
	margin-top: 10px;
	width: 70px;
}

.container__logo h1{
	font-family: 'GoldenHills';
  font-size: 1.8em;
	margin: 0px 10px;
	text-decoration: none;
  color: #000;
}

nav ul {
	list-style-type: none;
}

nav ul li {
	position: relative;
	float: left;
	padding: 20px;
}

nav > ul > li > a {
	padding: 8px 12px;
	font-family: 'montserrat';
	font-size: 1em;
	border-radius: 20px;
	color: #000;
}

nav > ul > li > a:hover{
	background-color: #77BCA3;
	font-weight: 600;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.209);
	transition: all 0.12s ease 0s;
}

nav ul li ul {
	position: absolute;
	flex-direction: column;
	font-family: 'montserrat';
	top: 50px;
	opacity: 0.1;
	left:0;
	font-size: 1em;
	margin-top: 20px;
	padding: 5px 5px;
	background-color: #77BCA3;
	border-radius: 20px;
	visibility: hidden;
	z-index: 10;
	transition: all 0.3s ease;
}

nav ul li ul li hr {
	width: 100%;
	height: 2px;
	background-color: #fff;
	border: none;
}

#empresa:hover{
	background-color: #fff;
	box-shadow: none;
}

nav ul li:hover ul{
	visibility: visible;
	opacity: 1;
	top: 40px;
}

nav ul li ul:before {
	content: '';
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-bottom: 12px solid #77BCA3;
	position: absolute;
	top: -10px;
	right: 55px;
}

nav ul li ul li {
	padding: 5px 0px;
	text-align: center;
	width: 100%;
}

nav ul li ul li a{
	color: #fff;
}


nav ul li ul li a:hover {
	font-weight: 600;
}

/* MENU RESPONSIVE */

.menu_button{
	background-color: #fff;
	border: none;
	display: none;
	cursor: pointer;
}

.menu_button .menu_svg{
	width: 35px;
	height: 35px;
}

.menu_close{
	background-color: #fff;
	color: #77BCA3;
	border-radius: 50%;
	border: none;
	display: none;
	cursor: pointer;
}

.menu_close .close_svg{
	width: 40px;
	height: 40px;
}

@media screen and (max-width: 1240px){

	.menu_button{display: block;}

	.menu_close{
    display: block;
    position: absolute;
    right: 25px;
    top: 20px;
  }
	
	.menu{
		position: fixed;
		z-index: 100;
	}
	
	.nav {
		height: 100vh;
		width: 300px;
		background: linear-gradient(90deg, rgba(50,70,60,1) 0%, rgba(9,186,150,1) 100%);
		top: 0;
		right: -300px;
		transition: all 300ms;
		position: fixed;
		z-index: 110;
	}

	.back_menu{
		width: 100%;
		height: 100vh;
		position: fixed;
		top: 0;
		left: 0;
		background-color: #000;
		opacity: 0.3;
		display: none;
	}

	.nav.activo{
		display: block;
		position: fixed;
		margin-right: -20px;
		top: 0;
		right: 0;
		height: 100vh;
		overflow-y: scroll;
	}

	nav ul li{
		float: none;
		margin-top: 30px;
	}

	nav > ul > li > a {
	padding: 8px 12px;
	font-family: 'montserrat';
	font-size: 1.25em;
	border-radius: 20px;
	color: #fff;
}

	nav > ul > li > a:hover{
		background-color: transparent;
		font-weight: 600;
		box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.209);
		transition: all 0.12s ease 0s;
	}

	#empresa:hover{
	background-color: transparent;
	box-shadow: none;
}

	nav ul li ul {
	position: relative;
	flex-direction: column;
	font-family: 'montserrat';
	top: 0px;
	opacity: 1;
	left: 15px;
	font-size: 1em;
	margin-top: 20px;
	padding: 5px 5px;
	background: transparent;
	border: none;
	border-radius: 20px;
	visibility: visible;
	z-index: 10;
	transition: all 0.3s ease;
	width: 90%;
	height: 0px;
	overflow: hidden;
}

nav ul li ul li {
	padding: 0px 0px;
	text-align: center;
	width: 100%;
	margin: 15px 0px;
}

#servicios{
	position: relative;
	top: -35px;
}

#contacto{
	position: relative;
	top: -35px;
}

#medicos{
	position: relative;
	top: -35px;
}

nav ul li ul li a{
	color: #fff;
	font-size: 1.25em;
}

	nav ul li:hover ul{
		visibility: visible;
		opacity: 1;
		top: 0px;
		height: 183px;
		background: rgba(81, 192, 152, 0.3);
		border: solid rgba(255, 255, 255, 0.7);
	}

	nav ul li ul:before{
		display: none;
	}
}

@media screen and (max-width: 600px){
	.container__logo img {
		width: 50px;
	}

	.container__logo h1 {
		font-size: 1.2em;
	}
}

@media screen and (max-width: 375px){
	.container__logo h1 {
		margin: 0px 5px;
		font-size: 1.1em;
	}
}

/* BANNER */

.container__banner{
	width: 100%;
	height: 334px;
	background-image: url(../img/contacto-banner.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.banner{
	position: relative;
	width: 100%;
	height: 334px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
	box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.titulo {
	position: absolute;
	display: inline-flex;
	align-items: center;
	padding: 47px 105px;
	bottom: 0;
}

.titulo hr{
	height: 82px;
	width: 5px;
	background-color: #00FCA1;
	border: none;
	margin: 0px 13px;
}

.titulo h2 {
	font-size: 4em;
	font-family: 'Oswald';
	font-weight: 700;
	color: #fff;
}

/* BANNER - RESPONSIVE */

@media screen and (max-width: 800px){

	.container__banner, .banner{
		height: 240px;
	}

	.titulo {
	padding: 47px 0px 47px 25px;
	}

	.titulo hr{
		height: 60px;
		margin: 0px 13px 0px 0px;
	}

	.titulo h2{
		font-size: 2.5em;
	}
}

/* CONTACTO */


.section__contacto {
	width: 100%;
	padding: 100px 122px;
	background-color: #fff;
}

.section__contacto h3 {
	font-family: 'Oswald';
	font-size: 3em;
	color: #000;
	font-weight: 600;
}

.container__contacto{
	display: flex;
	padding: 0px 24px;
	justify-content: space-between;
	align-items: center;
}

.contacto__items {
	display: block;
	margin-bottom: 40px;
}

.contacto__items .elemento{
	display: flex;
	align-items: center;
	margin-top: 40px;
}

.contacto__items .elemento a{
	width: 50px;
	height: 50px;
	margin-right: 40px;
}

.contacto__items .elemento a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contacto__items .elemento p{
	color: #000;
	font-family: 'Oswald';
	font-weight: 600;
	font-size: 1.25em;
}

.container__contacto hr{
	background-color: #00FCA1;
	border: none;
	width: 5px;
	height: 570px;
	margin: 0px 20px;
}

.ubicacion__items {
	display: block;
	justify-items: center;
	margin-bottom: 40px;
}

.ubicacion__items .elemento{
	display: flex;
	align-items: center;
	margin-top: 40px;
}

.ubicacion__items .elemento a{
	width: 50px;
	height: 50px;
	margin-right: 40px;
}

.ubicacion__items .elemento a img {
	width: 100%;
	height: 100%;
	min-width: 50px;
	object-fit: cover;
}

.ubicacion__items .elemento p{
	color: #000;
	font-family: 'Oswald';
	font-weight: 600;
	font-size: 1.25em;
}

.mapa {
	border-radius: 50px;
	margin-top: 40px;
	width: 100%;
	height: 420px;
}

/* CONTACTO - RESPONSIVE */

@media screen and (max-width: 1050px){
	.container__contacto{
		flex-wrap: wrap;
	}

	.contacto__items{
		margin-bottom: 0px;
	}

	.container__contacto hr{
		display: none;
	}
}

@media screen and (max-width: 800px){
	.section__contacto{
		padding: 50px 20px;
	}

	.section__contacto h3{
		font-size: 2em;
	}
}

@media screen and (max-width: 500px){
	.container__contacto{
		padding: 0px;
	}

	.mapa{
		height: 300px;
	}

	.contacto__items .elemento a{
		margin-right: 20px;
	}

	.ubicacion__items .elemento a{
		margin-right: 20px;
	}
}

/* FORMULARIO -- CORREO */

.container__form {
	margin-top: 90px;
	width: 100%;
	background: rgba(0, 252, 161, 0.3);
	padding: 50px 80px;
	border-radius: 50px;
}

.container__form form{
	display: block;
}

.titulo__form {
	font-family: 'Oswald';
	font-weight: 700;
	font-size: 3em;
}

.texto__form{
	font-family: 'Raleway';
	font-size: 1.875em;
	margin-top: 30px;
}

form {
	width: 100%;
} 

.user_details{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.container__dato{
	width: calc(100% / 2 - 20px);
	margin-top: 30px;
}

.container__dato span {
	font-family: 'Oswald';
	font-weight: 600;
	font-size: 1.5em;
}

.container__dato input{
	width: 100%;
	height: 50px;
	border-radius: 30px;
	margin-top: 10px;
	padding-left: 10px;
	border: 1px solid #787878;
	font-size: 1.25em;
	font-family: 'Raleway';
	outline: none;
}

.mensaje {
	width: 100%;
	height: 150px;
	border-radius: 30px;
	margin-top: 50px;
	padding: 10px 15px;
	border: 1px solid #787878;
	font-size: 1.25em;
	font-family: 'Raleway';
	outline: none;
	resize: none;
}

.boton__enviar{
	font-family: 'Montserrat';
	font-size: 1.5em;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(180deg, #742699 0%, #1FBFB6 95.83%);
	width: 300px;
	height: 50px;
	border: none;
	outline: none;
	border-radius: 30px;
	display: block;
	margin: auto;
	margin-top: 50px;
	cursor: pointer;
}

/* FORMULARIO - RESPONSIVE */

@media screen and (max-width: 1000px){
.container__dato{
	width: 100%;
	margin-top: 30px;
}
}

@media screen and (max-width: 800px){

	.container__form{
		margin-top: 10px;
	}

	.titulo__form{
		font-size: 2em;
		text-align: center;
	}

	.texto__form{
		font-size: 1.3em;
		text-align: center;
	}

	.boton__enviar{
		width: 150px;
		font-size: 1.25em;
	}
}

@media screen and (max-width: 600px){
	.container__form{
		padding: 50px 30px;
	}

	.container__dato{
		margin: 15px 0px;
	}

	.container__dato span{
		font-size: 1.25em;
	}

	.container__dato input{
		font-size: 1em;
	}

	.mensaje{
		margin-top: 25px;
	}
}

/* FOOTER */

.container_footer {
	background-color: #00756e;
	padding: 10px 20px;
	padding-bottom: 0;
}

.opciones {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer_item{
	font-family: 'Oswald';
	font-size: 1.5em;
	color: #fff;
}

.footer_item2{
	font-family: 'Montserrat';
	font-weight: 700;
	text-decoration: none;
	color: #fff;
	font-size: 1.25em;
}

.footer_item3{
	font-family: 'Montserrat';
	font-weight: 500;
	text-decoration: none;
	color: #fff;
	font-size: 1.25em;
}

.footer_item3:hover{
	color: #FEEAA4;
}

.decoration_f{
	color: #fff;
	font-size: 1.5em;
}

.iconos {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 130px;
}

.icon-link{
  height:25px;
  width:25px;
  margin-right: 8px;
  margin-top: 8px;
}

.icono {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.iconos p {
	margin-top: 14px;
	font-size: 10px;
	color: #fff;
	font-family: 'Montserrat';
}

.polygon {
	position: relative;
	width: 60%;
	background-color: #000;
	clip-path: polygon(0 0, 70% 0, 100% 100%, 0% 100%);
	margin-left: -20px;
	padding: 5px 20px;
	min-width: 360px;
}

.container__copyright{
	width: 80%;
}

.copyright{
	color: #fff;
	font-family: 'Montserrat';
	font-weight: 500;
	font-size: 0.8em;
}

/* FOOTER RESPONSIVE */ 

@media screen and (max-width: 1100px){
	.decoration_f{
		display: none;
	}

	.opciones{
		flex-direction: column;
		align-items: flex-start;
		margin: 15px;
	}

	.footer_item{
		margin: 20px;
		font-size: 2em;
	}

	.footer_item2 {
		margin: 20px;
		font-size: 1.75em;
	}

	.opciones > a {
		margin: 20px;
		font-size: 1.5em;
	}

	.iconos {
		max-width: none;
		margin: 20px;
		align-items: center;
		justify-content: start;
	}

	.icon-link{ 
		width: 45px;
		height: 45px;
		margin-right: 30px;
	}

	.iconos p {
		font-size: 14px;
	}

}

@media screen and (max-width: 600px){
	.footer_item{
		font-size: 1.5em;
	}

	.footer_item2{
		font-size: 1.25em;
	}

	.opciones > a {
		margin: 20px;
		font-size: 1.25em;
	}

	.icon-link{
		width: 35px;
		height: 35px;
		margin-right: 15px;
	}

	.iconos p{
		font-size: 10px;
	}
}