@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
}

body{
	background-color: #fff;
	padding: 20px;
}

nav{
	background-color: #18929D;
	padding: 10px 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
nav .logo a{
	text-decoration: none;
	color: #fff;
	font-size: 35px;
	font-weight: 600;
}
nav ul{
	display: flex;
	align-items: center;
	list-style: none;
	padding: 20px;
}
nav li{
	margin-left: 7px;
}
nav li a{
	text-decoration: none;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	padding: 8px 15px;
	border-radius: 5px;
	transition: 0.3s;
}
nav li a:hover{
	background-color: white;
	color: black;
}

#banner {
	width: 100%;
	padding: 20px;
	display: flex; 
  margin-left: 20px;
  margin-right: 0px;
}

.banner{
	height: 100vh;
	background: linear-gradient( rgba(0,0,0,0.281), rgba(0,0,0,0.308)), url('img/banner.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.texto .titulo{
	color: #fff;
	font-size: 60px;
	font-weight: 600;
}
.texto .sub_titulo{
	color:#FFDB58;
	font-size: 58px;
	font-weight: 600;
}
.texto .botoes{
	margin-top: 30px;
}
.texto .botoes button{
	height: 55px;
	width: 170px;
	border-radius: 5px;
	border: 0;
	margin: 0 10px;
	font-size: 20px;
	font-weight: 500;
	padding: 0 10px;
	cursor: pointer;
	outline: none;
	transition: 0.3s;
}
.texto .botoes button.n-overlay{
	color: white;
	background: none;
	border: 2px solid white;
}
.texto .botoes button.n-overlay:hover{
	color: black;
	background-color: white;
}

h2{
	text-align: center;
	margin-bottom: 10px;	
}

h3{
	text-align: center;
	margin-bottom: 10px;	
}

p{
	text-align: center;
}

.video-container{
	margin: 0px -20px 30px -20;
	padding: 20px;
	padding-bottom: 53%;
	position: relative;
}

.video-container > iframe{
	position:absolute;
	top:5%;
	left:5%;
  width:90%;
	height:90%;
}

ol{
	display: inline-block;
	vertical-align: top;
	width: 95%;
	margin-right: 30%;
}

img {
  width: 80%;
	padding: 20px;
	display: block; 
  margin-left: auto;
  margin-right: auto;
}
    
footer {
	position: absolute;
	width: 100%;
  height: 100px; 
	text-align: center;
	line-height: 100px;
}

