@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900');

html {
	position: relative; 
}

body {
	padding: 0;
	margin: 0;
	color: #222;
	font-family: 'Roboto', arial;
	font-size: 16px;
	font-weight: 300;
	position: relative;
}

.container {
	max-width: 1280px;
	padding: 40px;
	margin: 0 auto;
}
					

* { 
	box-sizing: border-box;
}

p, h1, h2, h3, h4, h5 {}

h1 {
	font-size: 36px;
	font-weight: 700;
}
h2 {
	font-size: 30px;
	font-weight: 300;
	line-height: 120%;
}
h3 {
	font-size: 20px;
	font-weight: 700;
	line-height: 120%;
}
.lnd-box h3 {
		text-transform: uppercase;
		text-align: center;
		letter-spacing: 2px;
} 
a {
	text-decoration: none;
	color: #222;
}

a.img {
	border: none;
}
a.img:hover {
	border: none;
}
	

img {
	display: block; 
	padding: 0; 
	margin: 0;
}

input, textarea {
	padding: 12px 16px;
	border-radius: 1px;
	font-size: 15px;
	font-family: 'Roboto', arial;
	box-shadow: 0 0 0 1px #e1e1e1;
	border:none;
	outline: none;
	position: relative;
}
input:focus, textarea:focus {
	box-shadow: 0 0 0 2px #c9e4ff;
}
input.error {
	box-shadow: 0 0 0 2px #fcaaa7;
}
input + a.err {
	display: none;
	position: absolute;
	top: 50%;
	margin-top: -21px;
	left:0;
	width: 100%;
	font-size: 15px;
	color: #fd3d38;
	padding: 12px 16px;
	background: url(../images/ico-error-close.png) no-repeat right 16px center;
}
input.error + a.err {
	display: block;
}

textarea {
	resize: none;
}


input::-webkit-input-placeholder {color:#555;}
input::-moz-placeholder          {color:#555;}
input:-moz-placeholder           {color:#555;}
input:-ms-input-placeholder      {color:#555;}

textarea::-webkit-input-placeholder {color:#555;}
textarea::-moz-placeholder          {color:#555;}
textarea:-moz-placeholder           {color:#555;}
textarea:-ms-input-placeholder      {color:#555;}

button {
	display: table;
	padding: 16px 30px;
	border-radius: 4px;
	font-size: 17px;
	font-family: 'Roboto', arial;
	background: #3F729D;
	color: #fff;
	border: none;
	font-weight: 500;
	transition: all .2s;
	cursor: pointer;
}
button:hover {
	background: #2A314D;
}



.btn {
	
	padding: 8px 20px;
	border-radius: 4px;
	font-size: 13px;
	font-family: 'Roboto', arial;
	background: #3F729D;
	color: #fff;
	font-weight: 500;
	transition: all .2s;
}
.btn:hover {
	background: #2A314D;
}

.btn2 {
	 display: table;
    background: none;
    border-radius: 4px;
    border: 2px solid #3F729D;
    color:#3F729D;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    padding: 9px 18px;
    transition: all .2s;
}
.btn2:hover {
    background: #3F729D;
    color:#fff;
}

strong {
	font-weight: 700;
}

table {
	border-collapse: separate; 
	border-collapse: collapse; 
	margin:30px 0; 
	width: 100%; 
	table-layout: fixed;
}
td, th {
	padding: 20px;
	vertical-align: middle; 
	word-wrap: break-word;
	text-align: left;
	font-weight: 300;

}
thead {
	background: #fb7134;
	color: #fff;
	font-size: 18px;
}



hr {
	display: block;
	height: 1px;
	background: #143c87;
	border: none;
	margin: 0px;
	display: block;
	margin-left: 28px;
	margin-right: 28px;
	position: relative;
}
hr:before {
	display: block;
	content: '';
	width: 100%;
	height: 1px;
	position: absolute;
	top:-1px;
	left: 0;
	background: #00153b;
}

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

ol {
	padding: 0; 
	margin: 20px 0; 
  counter-reset: li; 
  list-style: none; 
}
ol li {
	position: relative;
	margin-left: 40px;
	margin-bottom: 30px;
}
ol li:before {
    content: counter(li)'.';
    counter-increment: li;
    display: inline-block;
    color: #fb7134;
    position: absolute;
    top:1px;
    left:-40px;
    font-weight: 600;
}
sup {
	font-size: .6em;
}



.row > * {
	float: left
}
.row:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden; 
  height: 0;
}
.row-r > * {
	float: right;
}
.row-r > *:last-child {
	clear: right;
}
.row-r:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden; 
  height: 0;
}


.row-t-lws {
	display:table; 
	width: 100%;
}
.row-t-lws > * {
	display:table-cell; 
	vertical-align: middle;
}


.wtd100 {
	width: 100%;
}
.grey {
	color: #a6a6a6;
}
.txt12 {
	font-size: 12px;
}
.fsz-24 {
	font-size: 24px;
	line-height: 120%;
}
.tbl {
	display: table;
}
.clr{
    clear: both;
}

.fll {
    float: left;
}

.flr {
    float: right;
}

.ofl {
    overflow: auto;
}
.cntr {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.clrfix:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden; 
  height: 0;
}

.cntrchi	> * {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.block-t {
	display:table;
}
.block-t > div {
	display:table-cell; 
	vertical-align: middle;
	text-align: left;
}

.mrgch-0 > * {
    margin-top: 0px;
    margin-bottom: 0px;
}

.mrgch-4 > * {
    margin-top: 4px;
    margin-bottom: 4px;
}
.mrgch-8 > * {
    margin-top: 8px;
    margin-bottom: 8px;
}
.mrgch-12 > * {
    margin-top: 12px;
    margin-bottom: 12px;
}
.mrgch-16 > * {
    margin-top: 16px;
    margin-bottom: 16px;
}
.mrgch-20 > * {
    margin-top: 20px;
    margin-bottom: 20px;
}
.mrgch-28 > * {
    margin-top: 28px;
    margin-bottom: 28px;
}
.mrgch-32 > * {
    margin-top: 32px;
    margin-bottom: 32px;
}
.mrgch-64 > * {
    margin-top: 32px;
    margin-bottom: 32px;
}

.mrgtb-0 > *:first-child {margin-top: 0 !important;}
.mrgtb-0 > *:last-child {margin-bottom: 0 !important;}


.column2 {
	  -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
}
.column2 > * {
    padding: 0;
    margin: 0;
}
.column2 > * > *{
		display: inline-block;
    padding: 0px 0;
    margin: 0 0 8px 0;
}

.col-1 {width: 8.33333333%;}
.col-2 {width: 16.66666667%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33333333%;}
.col-5 {width: 41.66666667%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33333333%;}
.col-8 {width: 66.66666667%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33333333%;}
.col-11 {width: 91.66666667%;}
.col-12 {width: 100%;}
@media screen and (max-width: 568px){
	#price .box {
		width: 100%!important;
	}
	#ajax-contact-form1 > .col-4 {
		width: 100%;
	}
}
@media (min-width: 569px) and (max-width: 719px){
	#price .box {
		width: 50%!important;
	}
	#price .box:last-child {
		width: 100%!important;
	}
	
}
@media screen and (min-width: 719px){

.row-t {
	display:table; 
	width: 100%;
}
.row-t > * {
	display:table-cell; 
	vertical-align: middle;
}

}