/* General
=============================================*/
	@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,800&family=Ubuntu:wght@300;400;500;700&display=swap');

	html, body{
		font-family: 'Open Sans', sans-serif;
		margin: 0;
		padding: 0;
		
	}

	header{
		width: 100%;
		float: ;
	}

	article, aside, footer{
		width: 100%;
		float: left;
	}

	header::after, 
	article::after, 
	aside::after, 
	footer::after{
		clear: both;
		content: "";
		display: block;
	}

	.pad-20{
		padding: 20px 0;
	}

	.pad-40{
		padding: 40px 0;
	}

	.logo{
		max-width: 100%;
		margin: auto;
	}

	.features{
		max-width: 100%;
		margin: none;

	}

	.white{
		color: #fff;
	}

	.gray{
		color: #5c5c5c
	}

	.form-control{
		border: 1px solid transparent;
		border-radius: .10rem;
	}

	.form-control::placeholder{
		color: #2e2e2e;
	}

	.btn{
		background-color: #fff;
		border-radius: .10rem;
	}

	.background-img{
		background-size: cover;
		background-position: center center;
		background-repeat: no-repeat;
		background-attachment: fixed;
	}

/* Menu
=============================================*/

	.nav{
	    floatoat: right;
	    position: absolute;
	    top: 50%;
	    transform: translateY(-50%);
	    width: 100%;
	    margin: au;
	    font-size: 20px;
	}

	.nav a{
	    text-decoration: ;
	}

/* Fonts
=============================================*/

	h1, h2, h3, h4, h5, h6{
		
		font-family: 'Ubuntu', sans-serif;
		text-align: center;
		text-transform: uppercase;
		font-weight: 300;
	}


	h1{
		font-size: 144px;
		color: #5c5c5c;
	}

	h2{
		font-size: 118px;
		color: #88a732;
	}

	h3{
		font-size: 72px;
		color: #f49909;
	}

	h4{
		font-size: 35px;
		color: #88a732;
	}

	h5{
		font-size: 70px;
		color: #5c5c5c;
	}
	
	h6{
		font-size: 40px;
		color: #5c5c5c;
		
	}

	/* Links */

	a{
		color: #fff;
		text-decoration: ;
	}

	a:hover{
		color: rgba(0, 0, 0, 0.5);
		text-decoration: none
	}

	a.anchor{
		display: none;
		color: rgb(0, 0, 0, 0.5);
	}

/* Sections
=============================================*/

	/* Topbar */

	.topbar,
	footer{
		padding: 10px 0 15px;
	}

	.topbar p,
	footer p{
		margin-bottom: 0;
	}

	.topbar .address,
	footer .address{
		margin-right: 40px;
	}

	/* Welcome Area */

	.banner{
		text-align: center;
		background: #171717;
		background-size: cover;
		

	}

	.banner img{
		height: 100%;
		width: 100%;
		object-fit: cover;
	}

	.welcome{
		text-align: center;
	}

	.content{
		background: #f7f7f7;
		
	}

	.content img{
		max-width: 100%;
		width: auto;
		height: auto;
		vertical-align: middle;
		border:0	;
	}

/* Modules
=============================================*/



p.right-align-desktop{
	text-align: center;
}

nav button.open-menu,
nav button.close-menu{
	display: none;
}

@media screen and (max-width: 768px){

	h1{
		font-size: 42px;
	} 

	h2{
		font-size :26pt;
	} 


	h3{
		font-size: 20px;
	}


	h4{
		font-size: 12pt;
	}


	h5{
		font-size: 24pt;
	}

	.carousel-item{
		height: 180px;
	}

	p.right-align-desktop{
		text-align: left;
	}

	nav{
		position: fixed;
	  	background: #171717;
		top: 0;
	  	right: 0;
	  	left: 0;
	  	height: 40px;
	  	z-index: 900;
	}	

	nav .nav li a,
	nav .nav li a:hover,
	nav .nav li a:focus{
		color: #fff;
	}

	nav.closed ul.nav
	{
		display: none;
	}

	nav.open{
	  	z-index: 999;
	  	bottom: 0;
	  	height: 100vh;
	  	overflow-y: scroll;
	}

	nav button{
		background: none;
		color: #fff;
		border: none;
		float: right;
		font-size: 20px;
	}

	nav button.open-menu,
	nav button.close-menu{
	  	display: block;
	}

	nav ul.nav{
		height: auto;
		position: relative;
		top: 40px;
		transform: none;
	}

	nav .nav li{
		width: 100%;
	}

	nav .nav li a{
	  	display: block;
	  	width: 100%;
	  	float: left;
	  	text-align: center;
	}

}

/* Banner
=============================================*/

	.banner .btn.btn-default{
		background: transparent;
		border: 2px solid #fff;
		border-radius: 5px;
		color: #fff;
		font-size: 18px;
		font-weight: bold;
		padding: 15px 30px;
		text-decoration: none;
		text-shadow: none;
	}

	.banner .btn.btn-default:hover{
		color: #b1ddea;
		border-color: #b1ddea;
	}