

html {
  scroll-behavior: smooth;
}

body{
	font-family: 'Montserrat', sans-serif;
	background: #F6F6F6;
}

nav{
	width: 100%;
}

.logo{
	margin: 10px 0;
	width: 300px;
}

.menu{
	list-style: none;
	height: 50px;
	line-height: 50px;
}
.menu .menu-item{
	text-align: center;
	width: 140px;
	height: 100%;
}
.menu .menu-item:hover{
	border-bottom: 2px solid #17a2b8;
}
.menu .menu-item a{
	color: black;
	text-decoration: none;
	width: 100%;
	height: 100%;
	display: inline-block;
}
.menu .menu-item:hover a{
	color: #3D3D3D;
}
.menu-dropdown{
	cursor:pointer;
}
.menu-dropdown ul{
	display: none;
	list-style: none;
	position: absolute;
	top: 50px;
	left:-40px;
	z-index: 1000;

}
.menu-dropdown:hover ul{
	display: inline;
}
.menu-dropdown ul .item-dropdown{
	width: 320px;
	height: 50px;
	text-align: left;
	background-color: white;
}
.menu-dropdown ul .item-dropdown:hover{
	background: #EAEAEA;
}
.menu-dropdown ul .item-dropdown a{
	text-decoration: none;
	width: 100%;
	height: 100%;
	color: black;
	padding-left: 40px;
	display: inline-block;
}

.hero{
	width: 100%;
	height: 500px;
}
.hero .texto{
	text-align: center;
}
.hero .texto .titulo-principal{
	text-transform: uppercase;
	font-weight: 700;
	font-size: 40px;
}

.hero .texto .subtitulo{
	font-size: 24px;
}
.hero .texto button a{
	color: white;
	text-decoration: none;
	display: inline-block;
}
.hero .complemento{
	width: 500px;
	height: 500px;
	background: radial-gradient(ellipse at center, rgba(23,162,184,1) 10%, rgba(255,255,255,0) 70%);
	border-radius: 500px;
}


.main{
	background-color: #17a2b8;
	min-height: 550px;
	color: #4E4E4E;
}
.titulo-servicios{
	color: white;
	text-align: center;
	font-size:40px;
	font-weight: 700;
	padding: 20px 0;
	display: inline;
}
.servicio{
	padding: 15px;
	margin: 20px 0px;
	box-shadow: 5px 5px 8px #0C4E59;
	border-radius: 10px;
	background: #F6F6F6;
	color: #4E4E4E;
	text-align: center;
	transition: all .2s ease;
}
.imagen-servicio{
	width: 50px;
	float: left;
	margin-right: 25px;
}
.contacto{
	text-align: center;
	margin: 20px 0;
}
.titulo-contacto{
	text-align: center;
	font-size:40px;
	font-weight: 700;
	padding: 20px 0;
}
.texto-contacto{
	text-align: center;
}
.texto-contacto span{
	font-weight: 600;
}
.entrada {
    width: 60%;
    height: 45px;
    margin: 5px 0px;
    border-radius: 5px 5px 0px 0px;
    border-top: 1px solid #C8C8C8;
    border-left: 1px solid #C8C8C8;
    border-right: 1px solid #C8C8C8;
    border-bottom: 5px solid #17a2b8;
    padding-left: 10px;
    margin-bottom: 15px;
    transition: all .5s ease;
}

.mensaje {
    width: 60%;
    min-height: 150px;
    margin: 5px 0px 20px 0px;
    border-radius: 5px 5px 0px 0px;
    border-top: 1px solid #C8C8C8;
    border-left: 1px solid #C8C8C8;
    border-right: 1px solid #C8C8C8;
    border-bottom: 5px solid #17a2b8;
    padding: 10px;
    transition: all .5s ease;
}

footer{
	background: #17a2b8;
	color: white;
	padding:20px 0px;
	text-align: center;
}
footer a{
	color: white;
	font-weight: 600;
	text-decoration: none;
}
footer a:hover{
	color: white;
	text-decoration: none;
}

.subir{
	width: 60px;
	position: fixed;
	right: 40px;
	bottom: 40px;
	cursor: pointer;
	display: none;
}

.complemento img{
	width: 90%;
}
.row{
	margin: 0;
}
.ad{
    margin: 20px 0px;
    border-radius: 10px;
}
@media(max-width:1200px){
	nav div ul.menu{
		display: none;
	}
	.logo{
		text-align: center;
		width: 300px;
	}
	.complemento{
		display: none;
	}
	.hero .texto .titulo-principal{
		font-size: 30px;
	}
	.hero .texto .subtitulo{
		font-size: 20px;
	}
	.contacto iframe{
		width: 250px;
		height: 200px;
	}
	.ad{
        width: 400px;
        height: auto;
    }

}