@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');
html, body{
	margin: 0;
	padding: 0;
	width: 100%;
	max-width: 100%;
	font-size: 15px;
	font-family: 'Open Sans', sans-serif !important;
}
img{
	width: 100%;
}
*{
	margin: 0px auto;
	padding: 0;
}
.main-header{
	background: #f5f5f5;
    box-shadow: 0 8px 6px -6px rgba(0,0,0,.3);
    z-index: 2;
    padding-bottom: 15px;
}
.main-header .title{
	text-align: center;
    color: #fff;
    font-size: 25px;
    margin: 50px auto;
    padding: 0px 0px;
    font-weight: 900;
}
.logo{
	padding: 10px 0px;
}
.logo a{
	display: inline-block;
}
.logo a img{
	display: block;
  width: 280px;
}
.social-media{
	margin: 0px 15px;
}
.social-media a{
	color: #e13e20;
    font-size: 15px;
    width: 30px;
    height: 30px;
    display: inline-block;
    background: #fff;
    line-height: 30px;
    margin: 0px auto;
    vertical-align: top;
    border-radius: 50px;
    transition: .7s all;
    text-align: center;
    
}
.social-media a:hover{
	background: #000;
	color: #fff
}
.caption{
	position: absolute;
    top: 35%;
    left: 25%;
    background: rgb(42 42 42 / 49%);
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    color: #fff;
}
.caption h2{
	color: #ffffff;
    margin: 0px auto;
    letter-spacing: 1px;
    font-weight: 900;
}
.caption h4{
	background: #000;
    display: inline-block;
    padding: 15px;
    border-radius: 5px;
    font-size: 15px;
}
.form-wrap{
	width: 100%;
    height: 76vh;
    background: #faf8f8;
    margin: 5px 20px;
    padding: 15px 26px;
    box-shadow: 0 0 5px 0 rgba(125,121,121,.4);
    border-radius: 15px;
    align-items: center;
    display: flex;
    justify-content: center;
}
.form-wrap h2{
	font-size: 20px;
    color: #464444;
    padding: 20px 0px;
    font-weight: 900;
    text-align: center;
    margin: 0px auto;
}
.form-wrap h2:after {
    content: " ";
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 10px;
    background: -moz-linear-gradient(left, rgba(147, 184, 189, 0) 0%, rgb(225 62 32) 20%, rgb(225 62 32) 20%, rgb(225 62 32) 20%, rgba(147, 184, 189, 0) 100%);
    background: -webkit-gradient( linear, left top, right top, color-stop(0%, rgba(147, 184, 189, 0)), color-stop(20%, rgba(147, 184, 189, 0.8)), color-stop(53%, rgba(147, 184, 189, 1)), color-stop(79%, rgba(147, 184, 189, 0.8)), color-stop(100%, rgba(147, 184, 189, 0)) );
    background: -webkit-linear-gradient(left, rgba(147, 184, 189, 0) 0%, rgb(225 62 32) 20%, rgb(225 62 32) 20%, rgb(225 62 32) 20%, rgba(147, 184, 189, 0) 100%);
    background: -o-linear-gradient(left, rgba(147, 184, 189, 0) 0%, rgb(225 62 32) 20%, rgb(225 62 32) 20%, rgb(225 62 32) 20%, rgba(147, 184, 189, 0) 100%);
    background: -ms-linear-gradient(left, rgba(147, 184, 189, 0) 0%, rgb(225 62 32) 20%, rgb(225 62 32) 20%, rgb(225 62 32) 20%, rgba(147, 184, 189, 0) 100%);
    background: linear-gradient(left, rgba(147, 184, 189, 0) 0%, rgb(225 62 32) 20%, rgb(225 62 32) 20%, rgb(225 62 32) 20%, rgba(147, 184, 189, 0) 100%);
}
.form-wrap form{
	text-align: center;
	margin: 0px auto;
	padding: 0px;
}
.form-wrap form input{
	padding: 20px;
    margin: 10px auto;
    border: none;
    outline: none;
    box-shadow: 0px 1px 4px #b8cfd3;
    text-align: center;
}
.form-wrap form button{
	border: none;
    outline: none;
    box-shadow: none;
    background-color: #2a2a2a;
    margin: 10px auto;
    padding: 15px;
    display: block;
    width: 100%;
    transition: .7s all;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 17px;
}
.form-wrap form button:hover, .form-wrap form button:focus, .form-wrap form button:active{
	background-color: #e13e20;
	border: none;
    outline: none;
    box-shadow: none;
    color: #fff;
}
.form-wrap form span{
	text-align: left;
    font-size: 12px;
    margin: 0px auto;
}
footer{
	background: #0c0c0c;
    margin: 0px auto;
    padding: 0px;
    width: 100%;
}
footer p.copyright{
	margin: 0px auto;
    padding: 20px;
    text-align: center;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
}
footer p.copyright a{
	display: inline-block;
    color: #fff;
    text-decoration: underline;

}

@media screen and (max-width: 991px) {
  .logo, .social-media {
    text-align: center;
	}
	.caption {
    position: absolute;
    top: 0;
    left: 0;
   }
   .form-wrap {
    height: auto;
	}
}

@media screen and (max-width: 419px) {
	.caption {
    position: inherit;
    top: 0;
    left: 0;
    border-radius: none;
	 }

}

