@import url('https://fonts.googleapis.com/css?family=Noto+Sans&display=swap');
@import url(menu.css);
@import url(blog.css);


*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	font-family: 'Noto Sans', sans-serif;
	background-color: black;
	
}

header{
	width: 100%;
	height: 70px;
	background: #043879;
	color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	align-items: center;
}

.contenedor{
	width: 98%;
	margin:auto;
}

h1{
	float: left;
	padding:10px;
}
.contenedor h1 img{
	width: 250px;
	height: 60px;
}


section{

	width: 100%;
	margin-bottom: 25px;
}

footer .contenedor{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-bottom: 20px;
	height: 0;
}

.copy{
	
	color: #ADAAAA;
	font-size: 15px;
	color: white;
}

.sociales{
	width: 100%;
	text-align: center;
	font-size: 30px;
}

.sociales a{
	color: white;
	text-decoration: none;
}
.banner{
	position: relative;
	width: 100%;
	height: calc(100vh - 50px);
	background-color:#F5f5f5;
	background-size: cover;
	background-position: center;
	transition: all .1s ease-in-out;
	background-image: url('../images/plataforma.png');
	
	animation: banner 24s infinite linear;
}
.banner-content{
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	color: #fff;
	background-color: rgba(0,22,40,.6);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.banner-content h1{
	margin: 0;
	padding: 0;
	padding-bottom: 30px;
	font-size: 40px;
	text-align: center;
}

.banner-content a{
	text-decoration: none;
	color: #fff;
	padding: 9px 20px;
	border:1px solid #fff;
	text-transform: uppercase;
	transition: all .3s ease-in-out;
}

.banner-content a:hover{
	background-color: #fff;
	color: #333;
}
.btn{
	text-decoration: none;
	color: #fff;
	padding: 9px 20px;
	border:1px solid #fff;
	text-transform: uppercase;
	transition: all .3s ease-in-out;
}
.btn:hover{
	background-color: #fff;
	color: #333;
}

.row{
	align-content: center;
	width: 80%;
	max-width: 800px;
	margin: 2em auto;
}

.row::after{
	content: '';
	display: table;
	clear: both;
}

.row .sec{
	background: #EDF0F7;
	opacity: 0.6;
	text-align: center;
	width: calc(50% - 4em - 4px - 40px);
	margin:0 10px;
	float: left;
	padding: 3em 2em;
	border:4px solid #EDF0F7;
	margin-left: 32px;
	border-radius: 100%;
	width: 100%;
    max-width: 300px;
    align-content: center;
 }

 .sec{
 	color: black;
 }

.hs{
	opacity: 0;
	display: none;
}

.modal-wrapper{
	opacity: 0;
	transform: scale(0.5);
	transition: all 0.2s ease-in;
	z-index: -10;
	position: absolute;
	background: rgba(0,0,0,0.8);
	top:0;
	left: 0;

}

.modal-wrapper .modalbox{
	opacity: 0;
	transform: scale(0.5);
	transition: all 0.2s ease-in;
	background: rgba(5, 5, 7,0.8);
	background-size: cover;
	color: white;
	height: auto;
	width: 50%;
	margin:2em auto;
	border:2px;
	position: relative;
	align-items: center;

}

.modal-wrapper .modal-header{
	text-align: center;
}

.modal-wrapper .modal-header .btn-close{
	position: absolute;
	color: #333;
	background: white;
	
	width: 2em;
	height: 2em;
	line-height: 2em;
	text-align: center;
	border-radius: 50%;
	top:-0.5em;
	right: 0;
	transition: all 0.5s ease-in;
	font-weight: bold;
	cursor: pointer;
}

.modal-wrapper .modal-content{
	padding: 1em 2em;
}

.modal-wrapper .modal-content-body{
	width: 90%;
	margin: 0 auto;
}
input[id^='modal']:checked + .modal-wrapper{
	opacity: 1;
	z-index: 100;
	transform: scale(1);
	transition: all 0.2s ease-out;
	height: 100vh;
}

input[id^='modal']:checked + .modal-wrapper > .modalbox{
	opacity: 1;
	z-index: 100;
	transform: scale(1);
	transition: all 0.3s ease-out 0.2s;
	
}




@media (min-width:768px){
	.sociales{
		width: auto;
	}

	footer .contenedor{
		justify-content: space-between;
	}
}

@media (min-width:1024px) {
	.row .sec{
		width: auto;
	}
}
