@charset "UTF-8";

@font-face {
	font-family: 'Proxima Nova Rg';
	src: url('fonts/ProximaNova-Regular.eot');
	src: url('fonts/ProximaNova-Regular.eot#iefix') format('embedded-opentype'), url('fonts/ProximaNova-Regular.woff') format('woff2'), url('fonts/ProximaNova-Regular.woff') format('woff'), url('fonts/ProximaNova-Regular.ttf') format('truetype'), url('fonts/ProximaNova-Regular.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}
 @font-face {
	font-family: 'Proxima Nova';
	src: url('fonts/ProximaNova-Semibold.eot');
	src: url('fonts/ProximaNova-Semibold.eot#iefix') format('embedded-opentype'), url('fonts/ProximaNova-Semibold.woff') format('woff2'), url('fonts/ProximaNova-Semibold.woff') format('woff'), url('fonts/ProximaNova-Semibold.ttf') format('truetype'), url('fonts/ProximaNova-Semibold.svg') format('svg');
	font-weight: 600;
	font-style: normal;
}

 @font-face {
	font-family: 'Proxima Nova Bold';
	src: url('fonts/ProximaNova-Bold.eot');
	src: url('fonts/ProximaNova-Bold.eot#iefix') format('embedded-opentype'), url('fonts/ProximaNova-Bold.woff') format('woff2'), url('fonts/ProximaNova-Bold.woff') format('woff'), url('fonts/ProximaNova-Bold.ttf') format('truetype'), url('fonts/ProximaNova-Bold.svg') format('svg');
	font-weight: 600;
	font-style: normal;
}

* {
	position: relative;
}

html {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

*, *::after, *::before {
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  -webkit-box-sizing: inherit;
}

html {
  background: #fff;
  color: #370153;
}

html, body {
	min-height: 100%;
	width: 100%;
	overflow-x: hidden;
}

body {
	font-family: 'Proxima Nova Rg';
	font-size: 1.6rem;
	line-height: 1.4;
	height: 100%;
	background: url('../images/background.jpg') no-repeat top;
	background-size: 100% 100%;
}

img {
	width: 100%;
	height: auto;
}

div {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

p {
  margin: 0;
  padding: 0;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

a {
  text-decoration: none;
}

h1, h2, h3, h4 {
	margin: 0;
}

.full_width {
	display: block;
	width: 100%;
	float: left;
}

.container {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}

.container:after {
  clear: both;
  content: "";
  display: table;
}

/*
Green - #5c9735
#426b26
Blue - #5e028d
off Black - #403d3a
gray - #999
*/

header {
	display: block;
	width: 100%;
	float: left;
	color: #fff;
	padding: 30px 0;
	border-bottom: 1px solid rgba(92,151,53,.4);
	-webkit-box-shadow: 6px -6px 29px -3px rgba(92,151,53,1);
	-moz-box-shadow: 6px -6px 29px -3px rgba(92,151,53,1);
	box-shadow: 6px -6px 29px -3px rgba(92,151,53,1);
}

@media screen and (max-width: 768px) {
	header {
		padding: 20px 0;
	}
}

header .logo {
	float: left;
}

@media screen and (max-width: 768px) {
	header .logo {
		float: left;
		width: 100%;
		text-align: center;
	}
}


header .logo h1 {
	font-family: 'Proxima Nova';
	font-size: 34px;
	color: #426b26;
	float: left;
	text-shadow: 2px 0px 3px rgba(150, 150, 150, 1);
}

@media screen and (max-width: 768px) {
	header .logo h1{
		font-size: 30px;
		float: none;
		vertical-align: top;
		display: inline-block;
	}
}


header .logo h1 span {
	color: #370153;
}

header .icon_wrap {
	float: left;
	width: 50px;
	margin-right: 4px;
}

@media screen and (max-width: 768px) {
	header .icon_wrap{
		width: 40px;
		float: none;
		display: inline-block;
		margin-right: -4px;
	}
}

header .heading {
	float: right;
	padding-top: 10px;
}

@media screen and (max-width: 768px) {
	header .heading {
		width: 100%;
		text-align: center;
		padding-top: 0;
	}
}

header .heading h2 {
	font-family: 'Proxima Nova';
	font-size: 24px;
	color: #426b26;
}

@media screen and (max-width: 768px) {
	header .heading h2 {
		font-size: 20px;
	}
}

.content_wrap {
	padding: 100px 0 0;
	text-align: center;
}

@media screen and (max-width: 1024px) {
	.content_wrap {
		padding-top: 40px;
	}
}

.content_wrap h2 {
	font-family: 'Proxima Nova Bold';
	text-align: center;
	font-size: 34px;
	margin-bottom: 60px;
	display: inline-block;
	border-bottom: 4px solid #370153;
	padding-bottom: 5px;
	color: #370153;
}

@media screen and (max-width: 1024px) {
	.content_wrap h2 {
		font-size: 30px;
	}
}

@media screen and (max-width: 768px) {
	.content_wrap h2 {
		font-size: 24px;
		margin-bottom: 0;
	}
}

.content_wrap h2 span{
	color: #426b26;
}


.columns_wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

@media screen and (max-width: 768px) {
	.columns_wrap {
		display: block;
		width: 100%;
		float: left;
	}
}

.columns_wrap .column {
	width: 47%;
	float: left;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
}

@media screen and (max-width: 768px) {
	.columns_wrap .column {
		display: block;
		width: 100%;
		float: left;
	}
}

.columns_wrap .column:first-child {
	margin-right: 12%;
	padding-top: 40px;
}

@media screen and (max-width: 1024px) {
	.columns_wrap .column:first-child {
		margin-right: 5%;
	}
}

@media screen and (max-width: 768px) {
	.columns_wrap .column:first-child {
		margin-right: 0;
		padding-top: 30px;
	}
}

.columns_wrap .column:last-child {
	float: right;
	margin-top: 20px;
}

.columns_wrap .column ul {
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	text-align: left;
}

.columns_wrap .column li {
	font-size: 16px;
	margin-bottom: 15px;
	padding-left: 22px;
	font-weight: 500;
	color: #000;
}

@media screen and (max-width: 1024px) {
	.columns_wrap .column li  {
		font-size: 15px;
	}
}

@media screen and (max-width: 768px) {
	.columns_wrap .column li  {
		font-size: 14px;
	}
}

.columns_wrap .column li:before {
	content: '';
	background: url('../images/arrow-right.png') no-repeat;
	left: 0;
	width: 30px;
	height: 30px;
	position: absolute;
	background-size: 54%;
	top: 3px;
}


.column .heading {
	background: #426b26;
	color: #fff;
	padding: 20px 0;
	text-align: center;
	border: 1px solid #5c9735;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	-webkit-border-top-left-radius: 6px;
	-webkit-border-top-right-radius: 6px;
	-moz-border-radius-topleft: 6px;
	-moz-border-radius-topright: 6px;
}

.column .heading .icon_wrap {
	display: inline-block;
	margin-right: 5px;
	width: 48px;
}

@media screen and (max-width: 1024px) {
	.column .heading .icon_wrap {
		width: 40px;
	}
}


.column .heading .text_wrap {
	display: inline-block;
	text-align: left;
}

.column .heading h3 {
	text-transform: uppercase;
	font-size: 26px;
	line-height: 1;
}

@media screen and (max-width: 1024px) {
	.column .heading h3 {
		font-size: 24px;
	}
}

@media screen and (max-width: 768px) {
	.column .heading h3 {
		font-size: 22px;
	}
}

.column .heading p {
	font-size: 16px;
	color: #c2e2ad;
}

@media screen and (max-width: 1024px) {
	.column .heading p {
		font-size: 14px;
	}
}

@media screen and (max-width: 768px) {
	.column .heading p {
		font-size: 12px;
	}
}

.contact_info {
	padding: 40px;
	text-align: center;
	border-right: 1px solid #370153;
	border-left: 1px solid #370153;
	border-bottom: 1px solid #370153;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
	-webkit-border-bottom-left-radius: 6px;
	-webkit-border-bottom-right-radius: 6px;
	-moz-border-radius-bottomleft: 6px;
	-moz-border-radius-bottomright: 6px;
	background: #f5f5f5;
}

@media screen and (max-width: 1024px) {
	.contact_info {
		padding: 8% 5%;
	}
}

@media screen and (max-width: 768px) {
	.contact_info {
		padding: 8% 4%;
	}
}

.contact_info img {
	width: 20px;
	float: left;
	margin-right: 10px;
}

@media screen and (max-width: 1024px) {
	.contact_info img{
		width: 18px;
	}
}

.contact_info h4 {
	font-size: 22px;
	margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
	.contact_info h4{
		font-size: 20px;
	}
}

@media screen and (max-width: 768px) {
	.contact_info h4 {
		font-size: 18px;
	}
}

.contact_info p {
	font-size: 16px;
	text-align: center;
	background: rgba(56,1,83,.1);
	margin: 12px 42px;
	padding: 5px 10px;
	text-align: left;
}

@media screen and (max-width: 1024px) {
	.contact_info p{
		font-size: 15px;
	}
}

@media screen and (max-width: 768px) {
	.contact_info p{
		font-size: 14px;
	}
}

.contact_info p span {
	font-weight: bold;
}

footer {
	display: block;
	width: 100%;
	float: left;
	margin-top: 175px;
	font-size: 14px;
	padding: 20px 0;
	border-top: 1px solid rgba(0,0,0, .4);
	color: #000;
}

@media screen and (max-width: 768px) {
	footer {
		font-size: 12px;
		margin-top: 70px;
	}
}


footer li:first-child {
	float: left;
}

@media screen and (max-width: 768px) {
	footer li:first-child {
		width: 100%;
		text-align: center;
		margin-bottom: 10px;
	}
}

footer li:last-child {
	float: right;
}

@media screen and (max-width: 768px) {
	footer li:last-child {
		width: 100%;
		text-align: center;
	}
}