.header_section{
	background:url("../images/thm-activate.png") no-repeat;
	background-size:cover;
	position:relative;
    padding-top: 100px;
	margin-left: 15px;
    margin-right: 15px;
	height:400px;
}
.header_section:before{
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	content:'';
	opacity:0.80;
}
.header_section .content{
	position:relative;
	text-align:center;
}

.header_section h3{
	font-family: 'Work Sans', sans-serif;
    font-size: 30px;
    color: #ffffff;
    font-weight: 600;
	margin-top: 20px;
    margin-bottom: 0;
    text-transform: initial;
}
.header_section h2{
	font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
	margin-top: 20px;
    margin-bottom: 0;
    text-transform: initial;
}
.header_section p{
	font-size: 15px;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 0;
	margin-top: 15px;
}
.header_section .form-group input{
	height: 40px;
    box-shadow: none;
    border-radius: 0;
    color: #898989;
    font-size: 15px;
    font-weight: 400;
    padding: 6px 17px;
    font-family: 'Open Sans', sans-serif;
	width:430px;
	margin:0 auto;
	margin-top: 25px;
    margin-bottom: 25px;
}
.header_section .form-group{
	margin-bottom:0;
}
.header_section button{
	line-height: 44px;
    height: 44px;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    width: 164px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
	padding-top: 0;
	display: block;
    border: 0;
    border-radius: 5px;
    background: #ee343d;
    color: #ffffff;
}
.header_section .theme-p.green{
	text-align:center;
	position: relative;
}
.header_section p.red{
	text-align: center;
    color: red;
    position: relative;
    font-weight: bold;
    background-color: #f1f1f1;
}
.btn {
  border-radius: 4px;
  background-color: #f4511e;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 28px;
  padding: 20px;
  width: 200px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.btn:hover {
	background-color: #196cbf;
	color: #fff;
}


.btn span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.btn span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.btn:hover span {
  padding-right: 25px;
}

.btn:hover span:after {
  opacity: 1;
  right: 0;
}