* {
	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  PAGINA */

.container__banner{
  width: 100%;
  height: 334px;
  background-image: url(../img/galeria-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;
  }
}

/* GALERÍA */

.galeria {
	width: 100%;
	padding: 100px;
	background-color: #fff;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	grid-auto-rows: 300px;
	gap: 25px;
	min-height: calc(100vh - 400px);
	max-width: 1600px;
	margin: auto;
}

.galeria a {
	overflow: hidden;
	border-radius: 30px;
}

.galeria a img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
}

@media screen and (max-width: 800px){
	.galeria{
		padding: 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;
	}
}