@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Monoton&display=swap');
:root{
	--primary : #27348B;
	--secondary:#FFDE00;
	--bco:#fff;
	--negro: #000;
	--fuente: 'Open Sans', sans-serif;
	--titular: 'Monoton', cursive;
} 

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	font-size: 16px;
	font-family: var(--fuente);
	background: var(--celeste);
}

.header{
	width: 100%;
	height: 100vh;
	background-image: linear-gradient(rgba(39,52,139,1)0%, rgba(39,52,139,1)20%, rgba(39,52,139,0.5)100%),url(images/banner03.jpg);
	background-size: cover;
	background-position: center;
}

.header-s{
	width: 100%;
	height: auto;
	background-image: linear-gradient(rgba(39,52,139,1)0%, rgba(39,52,139,1)10%, rgba(39,52,139,0.5)100%),url(images/banner03.jpg);
	background-size: cover;
	background-position: center;
}

.container{
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 100px;
}

h1{
	font-family: var(--fuente);
	color: var(--primary);
}

h2{
	font-family: var(--fuente);	
}

.navbar{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding: 25px 0;
}

nav{
	flex: 1;
	text-align: right;
}

.logo{
	width: 220px;
}

.logo img{
	width: 100%;
}

.fa-bars{
	color: var(--secondary);
	font-size: 1.5rem;
	position: absolute;
    right: 0;
    top: 21px;
}

.user-icon{
	width: 30px;
	border-radius: 50%;
	cursor: pointer;
}

nav ul li{
	display: inline-block;
	list-style: none;
	margin-right: 30px;
}

nav ul li a{
	text-decoration: none;
	color: #fff;
	padding: 5px 2px;
}

nav ul li a:hover{
	border-bottom: 1px solid var(--secondary);
}

.content{
	width: 100%;
	height: auto;
}
.content .radio{
	width: 100%;
}
.content .destacado{
	width: 100%;
	padding:25px 0;
}
.content h1{
	font-size: 3.6rem;
	line-height: 3.5rem;
	letter-spacing: 1px;
	font-weight: 400;
	color: var(--secondary);
	font-family: 'Monoton', cursive;
}

.content p{
	color: #fff;
}

.miniatura-noticia{
	width: 100%;
	height: auto;
}
.btn-box{
	margin-top: 20px;
}

.btn-box a{
	width: 150px;
	border:1px solid var(--primary);
	color: #fff;
	padding: 10px 20px;
	margin-right: 10px;
	border-radius: 25px;
	cursor: pointer;
	background: var(--primary);
	text-decoration: none	;
}

.btn-box .btn {
	border:1px solid #fff;
	background: transparent;
	text-decoration: none;
}

.titulos{
	font-size: 1.7rem;
	font-weight: 700;
	color: var(--primary);
}
.subtitulo{
	font-size: 1.3rem;
	font-weight: normal;
	color: var(--primary);
	line-height: 1.5rem;
	padding-top: 15px;
}

.llamado{
	padding: 12px 70px;
}

.img-responsive{
	text-align: center;
	margin: 0 auto;
	padding-bottom: 35px;
	width: 100%;
}

.icon-service{
	height: 70px;
}
.monitoreo-caracteristicas{
	width: 20%;
	float: left;
	margin: 18px;
	text-align: center;
}
.icon-monitoreo{
	width: 60px;
	height: 60px;
	margin-bottom: 18px;
}
.footer{
	background: var(--primary);
	padding: 35px 0;
	color: var(--secondary);
}


@media (max-width:480px) {  
	body{
		background: ;
	}

	.container{
		width: auto;
		margin: 0 auto;
		padding-left: 30px;
		padding-right: 30px;
	}

	.content{
		width: 100%;
		color: #fff;
	}

	.content h1{
		font-size: 1.5rem;
		line-height: 30px;
		letter-spacing: 1px;
		color: var(--secondary);
	}

	h1{
		font-size: 32px;
		line-height: 40px;
		letter-spacing: 1px;
		margin-bottom: 10px;
	}

	h2{
		font-size: 36px;
		line-height: 40px;
		letter-spacing: 1px;
		margin: 15px 0;
		color: #A2D934;
	}

	p{
		line-height: 22px;
	}

	.llamado{
	padding: 12px 0px;
	}

	.navbar {
		width: 100%;
		display: inline-block;
		align-items: center;
		padding: 8px 0;
	}

	nav ul li {
		display: table;
		list-style: none;
		margin-right: 30px;
		font-size: 24px;
	}

	.user-icon{
		display: none;
	}

	.btn-box{
		margin-bottom: 35px;
	}
	
	.btn-box a {
		padding: 10px 15px;
		border-radius: 25px;
		cursor: pointer;
		background: var(--secondary);
	}

}