/*-------------
 	General
-------------*/

html, body {
  height: 100%;
  margin: 0;
}

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html{
	font: normal 16px sans-serif;
	color: #555;
}

a{
	text-decoration: none;
	color: inherit;
	cursor: pointer;

	opacity: 0.9;
}

a:hover{
	opacity: 1;
}

a.btn{
	color: #fff;
	border-radius: 4px;
	text-transform: uppercase;
	background-color: #2196F3;
	font-weight: 800;
	text-align: center;
}

hr{
	width: 150px;
	height: 2px;
	background-color: #2196F3;
	border: 0;
	margin-bottom: 80px;
}

section{
	display: flex;
	flex-direction: column;
	align-items: center;

	padding: 50px 100px;
}

@media (max-width: 1000px){

	section{
		padding: 40px 50px;
	}

}

@media (max-width: 768px){

	html,
    body {
        width: 100%;
        overflow-x: hidden;
	}

}

@media (max-width: 600px){

	section{
		padding: 20px 30px;
	}

}

section h3.title{
	color: #414a4f;
	text-transform: capitalize; 
	font: bold 32px 'Open Sans', sans-serif;
	margin-bottom: 35px;
	text-align: center;
}

section p{
	max-width: 800px;
	text-align: center;
	margin-bottom: 35px;
	padding: 0 20px;
	line-height: 2;
}

ul.grid{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

form {
    margin-top: 20px;
}

center {
    max-width: 760px;
    width: 100%;
}

input {
  border-top-style: hidden;
  border-right-style: hidden;
  border-left-style: hidden;
  border-bottom-style: hidden;
  background-color: #fff;
  padding: 10px 15px;
}

/*----------------
 	Hero Section
----------------*/

.full-height {
  height: 100%;
}

.hero{
	position: relative;
	justify-content: center;
	min-height: 100vh;
	color: #fff;
	text-align: center;
}

.hero .background-image{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-color: #2196F3;
	z-index: -1;
}

.hero .background-image:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0.82;
}

.hero h1{
	font: bold 35px 'Open Sans', sans-serif;
	margin-bottom: 5px;
}

.hero h3{
	font: normal 20px 'Open Sans', sans-serif;
	margin-bottom: 30px;
}

.hero a.btn{
	padding: 20px 46px;
}

@media (max-width: 800px){

	.hero{
		min-height: 600px;
	}

	.hero h1{
		font-size: 35px;
	}

	.hero h3{
		font-size: 20px;
	}

	.hero a.btn{
		padding: 15px 40px;
	}

}

@media (max-width: 666px){

	.hero h1{
		font-size: 30px;
	}

	.hero h3{
		font-size: 17px;
	}

}

@media (max-width: 545px){

	.hero h1{
		font-size: 25px;
	}

	.hero h3{
		font-size: 15px;
	}

}

@media (max-width: 464px){

	.hero h1{
		font-size: 20px;
	}

	.hero h3{
		font-size: 14px;
	}

}

@media (max-width: 383px){

	.hero h1{
		font-size: 18px;
	}

	.hero h3{
		font-size: 12px;
	}

}


/*----------------
 	iFrame Section
----------------*/

.iframe-youtube {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.container {
    position: relative;
    width: 800px;
    overflow: hidden;
    padding-top: 450px;
}

@media (max-width: 1167px) {
    .container {
        width: 720px;
        padding-top: 420px;
    }
}

@media (max-width: 780px) {
    .container {
        width: 100%;
        padding-top: 56.25%;
    }
}

/*----------------
 	Form Section
----------------*/

.input-styles {
    width: 36% !important;
    height: 44px;
    margin-right: 5px !important;
    border-radius: 4px !important;
    margin-bottom: 15px!important;
    margin-top: 15px!important;
    background-color: white!important;
    color: #959595!important;
}

.button-form-styles {
    padding: 13px 13px !important;
    font-family: inherit !important;
    border-radius: 4px!important;
    background-color: #25d366;
    color: white;
}

.button-form-styles:hover {
    background-color: #25d366 !important;
    color: white !important;
}

@media only screen and (max-width: 1167px) {
    .input-styles {
        width: 33% !important;
    }
    
    .button-form-styles {
        padding: 13px 5px !important;
    }
}

@media only screen and (max-width: 999px) {
    .button-form-styles {
        padding: 13px 5px !important;
    }
}

@media only screen and (max-width: 690px) {
    .input-styles {
        width: 100% !important;
        border-radius: 4px !important;
        margin: 3px 0px!important;
    }

    .button-form-styles {
        padding: 10px 104px !important;
        margin-top: 3px !important;
        display:block;
    }
    
    form {
        margin-top: 25px;
    }
}

@media only screen and (max-width: 479px) {
    .button-form-styles {
        padding: 10px 69px !important;
    }
}

@media only screen and (max-width: 321px) {
    .button-form-styles {
        padding: 10px 10px !important;
    }
}