/* ==== General CSS ==== */
a,
input,
button,
select,
textarea {
	border: none;
	outline: none;
	background-color: transparent;
	text-decoration: none;
	color: #000;
}
input[type=text],
input[type=password],
input[type=email],
input[type=phone],
select,
textarea {
   box-sizing: border-box;
   appearance: none;
}

body {
	cursor: default;
	font-family: 'Open Sans', sans-serif;
	font-size: 0;
}

html, body{
	height: 100%;
}
.wrapper {
	display: block;
	margin: 0 auto;
	width: 960px;
}
.inl {
	display: inline-block;
	vertical-align: top;
}
.tal{
	text-align: left;
}
.tac{
	text-align: center;
}
.tar{
	text-align: right;
}
img{
	display: block;
	margin: 0px 0px;
	padding: 0px 0px;
	border: none;
	width: 100%;
}
img.auto{
	width: auto;
}
img.right{
	float: right;
	margin: 0px 0px 10px 10px;
	width: 200px;
}
img.left{
	float: left;
	margin: 0px 10px 10px 0px;
	width: 200px;
}
a{
	color: blue;
}
a:hover{
	text-decoration: underline;
}
::-moz-selection { /* Code for Firefox */
  color: #fff;
  background: #000;
}
::selection {
  color: #fff;
  background: #000;
}
.col-10{
	width: 10%;
}
.col-20{
	width: 20%;
}
.col-30{
	width: 30%;
}
.col-40{
	width: 40%;
}
.col-50{
	width: 50%;
}
.col-60{
	width: 60%;
}
.col-70{
	width: 70%;
}
.col-80{
	width: 80%;
}
.col-90{
	width: 90%;
}

/* ################################### Content ################################### */
.content{
	display: block;
	background-image: url(../img/bg1.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
	height: 100%;
	padding: 125px 0;
	box-sizing: border-box;
}
.content .main{
	display: block;
	width: 400px;
	margin: 0 auto;
	padding: 50px 40px;
	box-sizing: border-box;
	text-align: center;
	background-color: #f1f1f1;
	border-radius: 10px;

}
.content .main .logo{
	display: inline-block;
	position: relative;
	background-color: #fff;
	margin: -125px auto 0px;
	border-radius: 50%;
}
.content .main .logo img{
	display: block;
	width: 125px;
}
.content .main form{
	display: block;
	margin: 10px 0 0;
}
.content .main input[type="text"], textarea {
    border-radius: 0px;
    margin: 10px 0;
    outline: 0 none;
    padding: 10px 8px;
	box-sizing: border-box;
    width: 100%;
    background-color: #fff;
    font-size: 13px;
    color: #69727b;
	border-radius: 5px;
}
input[type="text"]::placeholder{
	color: #69727b;
}
textarea::placeholder{
	color: #69727b;
}
input[type="submit"] {
	display: block;
	width: 100%;
	background-color: #04ab8d;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
	padding: 15px 40px;
	box-sizing: border-box;
	margin: 10px 0;
	border: medium none;
	outline: medium none;
	white-space: normal;
	border-radius: 5px;
}
input[type="submit"]:hover{
	background-color: #007f68;
	cursor: pointer;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #69727b;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #69727b;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #69727b;
}
textarea{
	min-height: 200px;
	max-height: 250px;
	max-width: 100%;
}


/* ################################### Thank You ################################### */
.thank-you{
	display: block;
	margin: 0 auto;
	padding: 100px 0;
	box-sizing: border-box;
	text-align: center;
}
.thank-you img{
	display: block;
	margin: 0 auto;
	width: 200px;
}
.thank-you h1{
	display: block;
	margin: 20px 0;
	padding: 0;
	box-sizing: border-box;
	font-size: 40px;
	line-height: 50px;
	color: #024b94;
}
.thank-you p{
	display: block;
	margin: 10px 0;
	padding: 0;
	box-sizing: border-box;
	font-size: 18px;
	line-height: 28px;
}
.thank-you p span{
	font-size: 13px;
	color: #666;
}



/* ====Responsive CSS ==== */
/* 
   1024 px
*/
@media screen and (max-width: 1024px) {
.wrapper {
   width: 700px;
}

}



/* 
   770 px
*/
@media screen and (max-width: 770px) {
.wrapper {
   width: 90%;
}

.content{
	padding: 100px 0;
}
.content .main{
	margin: 0 auto 40px;
}
.content .main .logo{
	display: inline-block;
	position: relative;
	background-color: #fff;
	margin: -85px auto 0px;
	border-radius: 50%;
}
.content .main .logo img{
	display: block;
	width: 100px;
}


}



/* 
   600 px
*/
@media screen and (max-width: 600px) {
.wrapper {
   width: 90%;
}

.content .main{
	width: 90%;
	padding: 30px 30px;
}

.thank-you h1 {
	font-size: 25px;
	line-height: 35px;
  }

}



/* 
   420 px
*/
@media screen and (max-width: 420px) {
.wrapper {
   width: 90%;
}
}