
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
ul.a {list-style-type: square; margin-left: 20px;}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input[type="checkbox"] {
	margin: 0;
}
img {
	max-width: 100%
}

input, textarea, select, button {
	font-size: inherit;
}

/*--------------------------------------------------------------
## Fonts
--------------------------------------------------------------*/
@font-face {
	font-family: "lato-regular";
	src: url(../fonts/Lato-Regular.ttf);
}

@font-face {
	font-family: "lato-bold";
	src: url(../fonts/Lato-Bold.ttf);
}

@font-face {
	font-family: "lato-medium";
	src: url(../fonts/Lato-Medium.ttf);
}

@font-face {
	font-family: "lato-light";
	src: url(../fonts/Lato-Light.ttf);
}

@font-face {
	font-family: "lato-heavy";
	src: url(../fonts/Lato-Heavy.ttf);
}

@font-face {
	font-family: "lato-black";
	src: url(../fonts/Lato-Black.ttf);
}

.lato-regular {
	font-family: 'lato-regular';
}

/*---------------------
## EO Fonts
---------------------*/


/*-----------------
## @Lightbox
-----------------*/
.lightbox {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	background-color: rgba(0, 0, 0, 0.7);

	pointer-events: none;
	opacity: 0;
	z-index: 999;
	transition: .4s;
}
	.lightbox.active {
		cursor: pointer;
		pointer-events: auto;
		opacity: 1;
	}

.lightbox-content {
	cursor: auto;
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background-color: #fff;
	padding: 20px;

	width: auto;
	max-width: 1060px;
	height: 80%;
	max-height: 80%;
	width: 100%;

	-webkit-box-shadow: 0px 4px 9px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 4px 9px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 4px 9px 0px rgba(0,0,0,0.75);
}
	.lightbox-content.lightbox-small {
		max-width: 700px;
	}
	.lightbox-content.h-auto {
		height: auto;
	}

.overflow-y {
	overflow-y: auto;
}

.lightbox-close {
	color: #fff;
	background: #333;
	border-radius: 15px;
	display: block;
	border: 2px solid #fff;
	margin: 0 auto;
	height: 31px;
	width: 31px;
	position: absolute;
	top: -10px;
	right: -10px;
	transition: .4s;

	-webkit-box-shadow: 0px 4px 13px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 4px 13px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 4px 13px 0px rgba(0,0,0,0.75);
}

.lightbox-close:after {
	content: '\2715';
    position: absolute;
    top: 4px;
    right: 6px;
    line-height: 1;
    font-size: 18px;
}

.lightbox-close:hover {
	background: #3f3f3f;
    cursor: pointer;
}

.lightbox-close:active {
	background: #2f2f2f;
    cursor: pointer;
}


/*--------------------------------------------------------------
## Own Defined Classes
--------------------------------------------------------------*/
/* Grid */
.row {
	margin-left: -20px;
	margin-right: -20px;
}
	.row.small {
		margin-left: -5px;
		margin-right: -5px;
	}


.column-2 {
	float: left;
	width: 50%;
	min-height: 1px;
	padding: 30px;
}
	.column-2:nth-child(odd) {
		clear: both;
	}
	.column-2-v1 {
		float: left;
		min-height: 1px;
	}
	.column-2-v1:first-child {
		width: 37.5%;
		padding-left: 50px;
		padding-right: 50px;
	}
	.column-2-v1:last-child {
		width: 62.5%;
	}

	.column-2-v2 {
		float: left;
		padding-left: 10px;
		padding-right: 10px;
		min-height: 1px;
	}
	.column-2-v2:first-child {
		width: 62.5%;
	}
	.column-2-v2:last-child {
		width: 37.5%;
	}

.column-3 {
	float: left;
	width: 33.3333333333%;
	min-height: 1px;
	padding: 20px;
}
	/* space between */
	.row.br .column-3 {
		border-right: 1px solid #cfcfcf;
	}
	.row.br .column-3:last-child {
		border-right: none;
	}

.column-4 {
	float: left;
	width: 25%;
	min-height: 1px;
}
	/* space between */
	.column-4.space-between {
		margin-right: 20px;
		width: calc(25% - 15px);
	}
	.column-4.space-between:last-child {
		margin-right: 0;
	}

.column-5 {
	float: left;
	width: 20%;
	min-height: 1px;
}
	.column-5.space-between {
		margin-right: 20px;
		width: calc(20% - 16px);
	}
	.column-5.space-between:last-child {
		margin-right: 0;
	}

.w-50 {
	width: 50%;
}

/* Margin & Padding */
.py-0 {
	padding-top: 0;
	padding-bottom: 0;
}
.pxx-10 {
	padding-left: 10px;
	padding-right: 10px;

}
.mb-0 {
	margin-bottom: 0 !important;
}
.mtx-25 {
	margin-top: 25px;
}
.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.left {
	float: left;
}
.right {
	float: right;
}

.w-100 {
	width: 100%;
}
.h-100 {
	height: 100%;
}
.m-w-400px {
	max-width: 400px;
}
.m-w-700px {
	max-width: 700px;
}
.m-w-900px {
	max-width: 900px;
}

.va-middle {
	vertical-align: middle;
}

/* Position */
.relative {
	position: relative;
}

/* Display */
.block {
	display: block;
}
.inline-block {
	display: inline-block;
}
.inline {
	display: inline;
}

/* Text Properties */
.bold{
	font-family: "Lato-Heavy";
}
.weight-normal {
	font-family: "Lato-Regular";
	font-weight: normal;
}
.italic {
	font-style: italic;
}
.underline {
	text-decoration: underline;
}

.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.text-left {
	text-align: left;
}

.text-lowercase {
	text-transform: lowercase;
}
.text-uppercase {
	text-transform: uppercase;
}
.text-normal {
	text-transform: none;
}

.lh-1 {
	line-height: 1;
}

.big-1 {
	font-size: 1.1em; /* 20px */
}
.big-2 {
	font-size: 1.22em; /* 22px */
}
.big-3 {
	font-size: 1.33em; /* 24px */
}
.big-4 {
	font-size: 1.5em; /* 27px */
}
.super-big {
	font-size: 6em; /* 108px ! */
	line-height: 1;
}

.small-1 {
	font-size: 16px; /* 16px */
}
.small-2 {
	font-size: 14px; /* 14px */
}
.small-3 {
	font-size: 12px; /* 12px s*/
}

.clearfix:after,
.row:after,
.form-row:after,
.horizontal-menu:after,
.form-row:after,
.inner-wrap:after {
	content: " ";
	display: block;
	height: 0;
	overflow: hidden;
	clear: both;
	width: 1100px;
}

* {
	box-sizing: border-box;
}

.inner-wrap2 {
	padding-left: 20px;
	padding-right: 20px;
	max-width: 1181px;
	margin-left: auto;
	margin-right: auto;
	background-color: #06C;
}
.inner-wrap {
	padding-left: 20px;
	padding-right: 20px;
	width: 1100px;
	margin: 0 auto;
}
.inner-wrap3 {

	width: 1100px;
	margin: 0 auto;	
	
	
}

.bg-style-1 {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.bg-center {
	background-position: center;
	background-repeat: no-repeat;
}

.bg-contain {
	background-size: contain;
}

.bg-cover {
	background-size: cover;
}

/*--------------------------------------------------------------
## @General
--------------------------------------------------------------*/
body {
	font-size: 16px;
	font-family: "lato-regular","Trebuchet Ms", sans-serif;
	color: #333;
	background-color: #ffffff;
	line-height: 1.3;
	width: 100%;
	text-align:center;
	margin: 0 auto;
}

input[type="text"],
input[type="number"],
input[type="email"],
textarea,
select {
	font-size: inherit;
	font-family: inherit;
	color: #333;
	font-size: 16px;
}

a {
	color: inherit;
	text-decoration: none;
	transition: .3s;
}

section {
	padding-top: 10px;
	padding-bottom: 10px;
}
	section.smaller {
		padding-top: 10px;
		padding-bottom: 10px;
	}

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

h1 {
	font-size: 30px;
	font-family: "lato-bold";
	color:#333;
	margin-bottom: -10px;
}
	h1.emphasize {
		font-family: "lato-light";
	}
	h1.emphasize b {
		font-weight: normal;
		font-family: "lato-bold";
	}
	h1.white { color:#FFF; }

h2 {
	margin-bottom: 15px;
	font-size: 60px;
	font-weight: bold;
	font-family: "lato-heavy";
	color:#333;
}
h2.b { font-size: 20px;}

h3 {
	font-size: 20px;
	font-family: "lato-regular";
}

h4 {
	margin-bottom: 15px;
	font-size:40px;
	font-family: "lato-heavy";
	color:#3366cc;
}
h4.b{font-size:16px; color:#333;}

.margin10b { margin-bottom: 20px; }
.marginneg20t { margin-top: -20px; }

input[type="submit"] {
  margin-bottom: 10px;
  margin: 0 auto;
  background-color: #33cc00;
 width: 200px;
    height: 50px;
  border: none;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  font-family: Trebuchet Ms, Georgia;
  font-weight: bold;
  cursor: pointer;
  transition: .5s;
  border-radius: 30px;
}
  input[type="submit"]:hover {
    background-color: #333;
}

input[type="submit2"] {
  margin-bottom: 15px;
  margin: 0 auto;
  background-color: #33cc00;
  width: 300px;
    height: 75px;
  border: none;
  color: #fff;
  font-size: 24px;
  text-transform: uppercase;
  font-family: Trebuchet Ms, Georgia;
  font-weight: bold;
  cursor: pointer;
  transition: .5s;
  border-radius: 30px;
  text-align:center;
}
  input[type="submit2"]:hover {
    background-color: #333;
}

/*---------------------------------
## @Objects
---------------------------------*/
.blue {
	color: #2eb5fa;
}

.white {
	color: #fff;
}

.grey {
	color: #666;
}

.grey-bg {
	background-color: #e5e5e5;
}

.bold {
	font-family: "lato-bold";
}

.bb,
.form-row-package {
	border-bottom: 1px solid #cfcfcf;
}
.by {
	border-top: 1px solid #cfcfcf;
	border-bottom: 1px solid #cfcfcf;
	padding: 8px 0;
}

.horizontal-menu li {
	display: inline-block;
}
	.horizontal-menu li:after {
		content: "|";
		margin-left: 4px;
	}
	.horizontal-menu li:last-child:after {
		content: none;
	}


/*---------------------------------
## @Header
---------------------------------*/
#header {
	padding-top: 25px;
	padding-bottom: 15px;
}

#pre-content {
	background-image:url(../img/header.jpg);
	height: 615px;
	background-repeat:no-repeat;
	background-position: center;
	width: 100%;
	margin: 0 auto;
}
.pre {
	background-image:url(../img/bg.jpg.png);
	width: 100%;
	}

#pre-content2 {
	height: 70px;
	background:#333;
	background-repeat:no-repeat;
	background-position: center;
}

#bordered {
	border-radius: 5px;
	border:#ccc solid 1px;;
	width: 1020px;
	margin: 0 auto;
	padding: 20px;
}


/*---------------------------------
## @Footer
---------------------------------*/
#footer {
	text-align: center;
	border-top: 5px solid #1a2b3f;
	padding-top: 20px;
	padding-bottom: 20px;
	font-size: 14px;
	background-color:#333;
}

.col10 {
	float: left;
	width: 7%;
	margin-top: 5px;

}
.col20 {
	float: left;
	width: 20%;

}
.col30 {
	float: left;
	width: 30%;
	padding: 10px;
}
.col40 {
	float: left;
	width: 40%;
	padding: 10px;
}
.col80 {
	float: left;
	width: 80%;
}
.col70 {
	float: left;
	width: 78%;
}
.col90 {
	float: left;
	width: 90%;

}

/*---------------------
## Thankss
---------------------*/
.col-50 { width: 50%; float:left; }
.blackhr { width: 1000px; border: solid #333; border-width: 3px; clear: both; margin-top: 20px;}
.blackhrthin { width: 100%; border: solid #ddd; border-width: 1px; clear: both; margin-top: 10px; }
.red {
	color: #f00;
}
.thanks-wrap {
	padding-left: 20px;
	padding-right: 20px;
	max-width: 1020px;
	margin-left: auto;
	margin-right: auto;
}
.thanksbg {
	width: 100%;
	margin: 0 auto;
	background-color: #09C;
	padding: 20px;
}