﻿/*
Description:
		1 - Including files ("fonts.css", "reset.css" and others)
		2 - Tags styles and General styles
		3 - header
		4 - .content
		5 - footer
		* - @media rules
*/

/* 1 - BEGIN of Including files ("fonts.css", "reset.css" and others) ---------------------------------------------------------- */

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

@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat/Montserrat-Light.eot');
	src: url('fonts/Montserrat/Montserrat-Light.eot?#iefix') format('embedded-opentype'),
		 url('fonts/Montserrat/Montserrat-Light.woff2') format('woff2'),
		 url('fonts/Montserrat/Montserrat-Light.woff') format('woff'),
		 url('fonts/Montserrat/Montserrat-Light.ttf') format('truetype'),
		 url('fonts/Montserrat/Montserrat-Light.svg#Montserrat') format('svg');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat/ontserrat-Medium.eot');
	src: url('fonts/Montserrat/Montserrat-Medium.woff2') format('woff2'),
		 url('fonts/Montserrat/Montserrat-Medium.woff') format('woff'),
		 url('fonts/Montserrat/Montserrat-Medium.ttf') format('truetype'),
		 url('fonts/Montserrat/Montserrat-Medium.svg#Montserrat') format('svg'),
		 url('fonts/Montserrat/Montserrat-Medium.eot?#iefix') format('embedded-opentype');
	font-weight: 500;
	font-style: normal;
}

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

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

/* BEGIN of CSS RESET */
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;
}

/* END of CSS RESET */

/* 1 - END of Including files ("fonts.css", "reset.css" and others) ---------------------------------------------------------- */
/* 2 - BEGIN of Tags and General styles ---------------------------------------------------------- */

body {
	min-height: 500px;
	margin: 0 auto;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	line-height: 2;
	letter-spacing: -.01em;
	font-weight: normal;
	color: #232323;
}

a {
	text-decoration: none;
	outline: none;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

a:hover {
	opacity: 0.7;
	text-decoration: none;
	color: inherit;
	outline: none;
}

a:active {
	opacity: 0.6;
	outline: none;
	color: inherit;
	text-decoration: none;
}

a:focus {
	outline: none;
	color: inherit;
	text-decoration: none;
}

button, input, textarea, select {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

button:hover, input:hover, textarea:hover, select:hover {
	opacity: 0.8;
}

strong {
	font-weight: 700;
}

em {
	font-style: italic;
}

img {
	max-width: 100%;
}

h1 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 90px;
	line-height: 1.2;
	font-weight: 600;
}

h2 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 37px;
	line-height: 1.2;
	font-weight: 600;
}

.h2-sm {
	font-size: 24px;
}

h3 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 24px;
	line-height: 1.2;
	font-weight: 600;
}

.h3-sm {
	font-size: 18px;
}

h4 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 18px;
	line-height: 1.2;
	font-weight: 600;
}

h5 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 16px;
	line-height: 1.2;
	font-weight: 600;
}

h6 {
	margin: 0 0 0;
	padding: 0 0 15px;
}

blockquote {
	display: block;
	margin: 20px auto 20px;
	max-width: 840px;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 700;
	text-align: center;
}

p {
	padding: 0 0 15px;
	color: #666666;
}

ul, ol {
	padding: 0 0 15px 20px;
}

ul ol, ul ul, ol ul, ol ol {
	padding-bottom: 0;
}

.clear:before, .clear:after {
	content: "";
	display: block;
	clear: both;
}

.hide, .hidden {
	display: none;
}

.content-wrapper {
	width: 1000px;
	height: 100%;
	margin: 0 auto;
}

.alignleft, img.alignleft {
	float: left;
	display: block;
	margin: 0 5px 0 0;
}

.alignright, img.alignright {
	float: right;
	display: block;
	margin: 0 0 0 5px;
}

.aligncenter, img.aligncenter {
	float: none;
	display: block;
	margin: 0 auto 0;
}

.alignnone, img.alignnone {
	margin: 0 0 0;
	display: block;
}

.container {
	max-width: 1110px;
}

/* 2 - END of Tags styles and General styles ---------------------------------------------------------- */
/* 3 - BEGIN of header ---------------------------------------------------------- */

header {
	border-top: 7px solid #f28c13;
	background: transparent;
	position: absolute;
	z-index: 60;
	left: 0;
	right: 0;
	top: 0;
	box-shadow: none;
}

header + * {
	padding-top: 0;
}

.navbar, header, .logo, header + * {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.header-fixed {
	position: absolute;
	z-index: 60;
	left: 0;
	right: 0;
	top: 0;
}

.header-fixed + * {
	padding-top: 0;
}

body header .btn-main {
	position: absolute;
	right: 0;
	top: 0;
	margin: 0 15px 0;
}

header .container {
	position: relative;
}



.logo {
	float: left;
	display: block;
	margin: 0 auto 0;
	padding: 0 0 0;
	max-width: 200px;
}

.logo img {
	display: block;
}



.navbar {
	margin: 0 0 0;
	padding: 0 0 0;
	border-radius: 0;
	clear: none;
	border: none;
	min-height: 0;
	float: right;
}

.navbar-collapse {
	margin: 0 0 0;
	padding: 0 0 0;
	border-radius: 0;
	border: none;
	min-height: 0;
	float: none;
}

.navbar-nav {
	margin: 0 0 0;
	padding: 0 0 0;
	border-radius: 0;
	border: none;
	min-height: 0;
	float: none;
}

.navbar-nav > li {
	outline: none;
}

.navbar-nav > li > a {
	padding: 8px 15px 8px;
	margin: 0 10px 0 0;
	font-size: 17px;
	line-height: 20px;
	color: #666666;
	font-weight: 700;
	text-transform: none;
	position: relative;
	background: transparent;
}

.navbar-nav > li.active > a {
	color: #666666;
	background: transparent;
}

.nav > li > a:focus, .nav > li > a:hover {
	color: #666666;
	background: transparent;
}



/* spinner css start */

.spinner-wr {
	background: #FFFFFF;
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	/*!!!!!!!!!!!!!!!!!!!!!!!*/
	/* display: none; */
}

.spinner {
	width: 60px;
	height: 60px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	margin: auto;
}

.double-bounce1, .double-bounce2 {
	width: 100%;
	height: 100%;
	border-radius: 50px;
	border-radius: 50%;
	background-color: #f28c13;
	opacity: 0.6;
	position: absolute;
	top: 0;
	left: 0;

	-webkit-animation: sk-bounce 2.0s infinite ease-in-out;
	animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
	0%, 100% { -webkit-transform: scale(0.0) }
	50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
	0%, 100% {
	transform: scale(0.0);
	-webkit-transform: scale(0.0);
	} 50% {
	transform: scale(1.0);
	-webkit-transform: scale(1.0);
	}
}

/* spinner css end */
/* back-to-top css start */

.back-to-top {
	position: fixed;
	bottom: 5px;
	right: 4px;
	z-index: 99;
	width: 44px;
	height: 44px;
	padding: 0 0 0;
	margin: 0 0 0;
	overflow: hidden;
	text-align: center;
	font-size: 18px;
	line-height: 1;
	background: transparent url('img/i-arr-up.png') no-repeat center center;
	cursor: pointer;
	text-decoration: none;
	text-indent: -9999px;
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	opacity: 0;
}

.back-to-top.show {
	opacity: 1;
}

.back-to-top:not(.show):hover {
	opacity: 0;
	cursor: default;
}

.back-to-top:hover {
	-moz-animation: bounce 1.5s infinite;
	-webkit-animation: bounce 1.5s infinite;
	animation: bounce 1.5s infinite;
}

@-moz-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-moz-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-moz-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	60% {
		-moz-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}
@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	60% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-moz-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	60% {
		-moz-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

/* back-to-top css end */

#ho_adv {
	display: none;
	position: absolute;
	width: 0;
	height: 0;
	left: -9999px;
}

/* 3 - END of header ---------------------------------------------------------- */
/* 4 - BEGIN of .content ---------------------------------------------------------- */


.content {
	position: relative;
}

.box-wr {
	padding: 50px 0 50px;
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	background-size: cover;
}



body .bg-orange {
	background-color: #f28c13;
	color: #ffffff;
}

html body .bg-dark {
	background-color: #1f2021;
	color: #ffffff;
}

body .bg-gray {
	background-color: #f5f5f5;
}



body .color-orange {
	color: #f28c13;
}



.img-wr {
	position: relative;
}

.img-wr img {
	display: block;
	margin: 0 auto 0;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}

.img-wr > a {
	display: block;
	overflow: hidden;
	width: 100%;
	-webkit-backface-visibility: hidden;
	transform: translate3d(0, 0, 0);
	-webkit-transition: all .7s ease;
	transition: all .7s ease;
}

.img-wr:hover a img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}



.slide-item {
	outline: none;
}

.img-overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.pos-bottom {
	position: absolute;
	left: 0;
	right: 0;
	top: auto;
	bottom: 0;
}



body .box-top-banner {
	border-bottom: 9px solid #f1f1f1;
	padding: 0 0 0;
	margin: 0 0 0;
	color: #ffffff;
	text-shadow: -3px 2px 13px #333333;
}

.box-top-banner .img-bg {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.box-top-banner .img-overlay {
	min-height: 505px;
	padding: 100px 0 100px;
	position: relative;
}

.box-top-banner .pos-bottom {
	padding: 120px 0 70px;
}

.box-top-banner h1 {
	padding: 0 0 0;
}

.box-top-banner h2 {
	padding: 0 0 0;
	font-size: 42px;
	font-weight: bold;
}

.box-top-banner h1+h2 {
	padding-left: 180px;
}

.box-top-banner .container {
	max-width: 800px;
}

.parallax-item {
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	background-size: cover;
}



.text-wr {
	overflow: hidden;
}



.display-inline-block {
	display: inline-block;
	vertical-align: middle;
}

.list-styled {
	padding: 5px 0 10px;
	margin: 0 0 0;
	font-size: 15px;
	line-height: 2;
}

.list-styled li {
	padding: 0 0 5px 30px;
	margin: 0 0 0;
	position: relative;
	list-style: none;
}

.list-styled li:before {
	font-size: 23px;
	position: absolute;
	color: #66bd2b;
	left: 0;
	top: 4px;
	line-height: 1;
	content: "\f058";
	font-family: "FontAwesome";
}



.bordered-bottom {
	padding: 0 0 25px;
	margin: 0 0 35px;
	position: relative;
}

.bordered-bottom:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0;
	bottom: 0;
	width: 50px;
	border-bottom: 4px solid #f28c13;
}



.slider-simple img {
	display: block;
	margin: 0 auto;
	width: 100%;
}

iframe {
	display: block;
	width: 100%;
	padding: 0 0 0;
	margin: 0 auto;
	border: none;
}

.slider-simple iframe {
	height: 288px;
}



body .btn-main {
	padding: 15px 30px 14px;
	margin: 0 auto 0;
	font-size: 17px;
	line-height: 22px;
	width: auto;
	font-style: normal;
	border: 2px solid #f28c13;
	color: #ffffff;
	background-color: #f28c13;
	font-weight: 600;
	outline: none;
	font-style: italic;
	text-align: center;
	position: relative;
	display: inline-block;
	border-radius: 0;
}

body .btn-main:hover {
	background-color: #ffffff;
	color: #f28c13;
	opacity: 1;
}

.bg-orange .btn-main {
	border-color: #ffffff;
}



/* BEGIN of content of Contact Page */

.form-row {
	margin: 0 0 25px;
}

.form-row:after {
	content: "";
	display: block;
	clear: both;
}

form {
	margin: 0 0 0;
	padding: 0 0 0;
}

form:after {
	content: "";
	display: block;
	clear: both;
}

form input, form textarea, form select {
	display: block;
	margin: 0 0 0;
	padding: 18px 18px 18px;
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	color: #757575;
	background-color: #ffffff;
	clear: both;
	outline: none;
	width: 100%;
	border: 1px solid #ffffff;
	border-radius: 0;
}

form textarea {
	min-height: 130px;
}

form input:hover, form textarea:hover, form select:hover {
	border-color: #cccccc;
	opacity: 1;
}

form input:focus, form textarea:focus, form select:focus {
	border-color: #cccccc;
	opacity: 1;
}

form label {
	padding: 0 0 0;
	margin: 0 0 0;
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	display: block;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	color: #757575;
}

form label span {
	padding: 0 0 0;
	margin: 0 0 0;
	position: absolute;
	left: 19px;
	top: 20px;
	display: block;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.input-wr {
	position: relative;
}

.input-focused span, .input-not-empty span {
	font-size: 70%;
	top: 3px;
	left: 8px;
	opacity: .8;
}

*::-webkit-input-placeholder {
	color: #5c5c5c;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*:-moz-placeholder {
	color: #5c5c5c;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*::-moz-placeholder {
	color: #5c5c5c;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*:-ms-input-placeholder {
	color: #5c5c5c;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*:focus::-webkit-input-placeholder {
	text-indent: 220px;
	opacity: 0;
}

*:focus::-moz-placeholder {
	text-indent: 220px;
	opacity: 0;
}

*:focus:-moz-placeholder {
	text-indent: 220px;
	opacity: 0;
}

*:focus:-ms-input-placeholder {
	text-indent: 220px;
	opacity: 0;
}

.error_message {
	display: block;
	line-height: 22px;
	margin: 10px 0 30px;
	color: #FF0000;
}

.error_message:before {
	margin: -2px 20px 0 0;
	font-size: 20px;
	content: "\f06a";
	display: inline-block;
	vertical-align: middle;
	font-family: 'FontAwesome';
}

#succsess_page {
	color: #a5be25;
}

#succsess_page h1 {
	color: #fff;
	padding: 0 0 20px;
}

#succsess_page h1:before {
	margin: 0 10px 0 0;
	font-size: 20px;
	content: "\f00c";
	display: inline-block;
	vertical-align: middle;
	font-family: 'FontAwesome';
}

.box-contacts p {
	padding: 3px 0 34px;
	font-size: 17px;
}

/* END of content of Contact Page */





.img-bg {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
	/* background-attachment: fixed; */
	-webkit-transition: all 1.5s ease;
	-o-transition: all 1.5s ease;
	transition: all 1.5s ease;
}

.slide-item:not(.slide-zoomIn) .img-bg {
	-webkit-animation: slowZoomMin 20s linear infinite;
}

@-webkit-keyframes slowZoomMin {
	0% {
		-webkit-transform: scale(1);
	}
	100% {
		-webkit-transform: scale(1.3);
	}
}


.top-slider .slide-item .img-overlay * {
	opacity: 0;
	-webkit-transition: all .9s ease;
	-o-transition: all .9s ease;
	transition: all .9s ease;
}

.top-slider .slide-item.slick-current .img-overlay * {
	opacity: 1;
}




.slick-prev, .slick-next {
	padding: 0 0 0;
	margin: 0 0 0;
	width: 40px;
	height: 40px;
	top: auto;
	bottom: 25px;
	text-align: center;
	display: block;
	opacity: 1;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
}

.slick-slider:hover .slick-prev, .slick-slider:hover .slick-next {
	opacity: 1;
}

.slick-prev:hover, .slick-next:hover {
	margin: 0 -5px;
}

.slick-prev:hover {
	margin: 0 5px;
}

.slick-prev {
	right: 70px;
	left: auto;
}

.slick-next {
	right: 25px;
}

.slick-prev:before, .slick-next:before {
	padding: 0 0 0;
	margin: 0 0 0;
	width: 40px;
	height: 40px;
	font-size: 30px;
	line-height: 40px;
	text-align: center;
	display: block;
	font-family: "FontAwesome";
	background-color: rgba(0, 0, 0, .7);
	color: #ffffff;
	opacity: 1;
}

.slick-prev:before {
	content: "\f104";
}

.slick-next:before {
	content: "\f105";
}

.slick-dots {
	bottom: 25px;
}

.slick-dots li {
	margin: 0 0;
}

.slick-dots li.slick-active button:before {
	opacity: .75;
	color: #aad702;
}

.slick-dots li button:before {
	font-size: 14px;
	opacity: .15;
}



.box-top-banner .slick-prev, .box-top-banner .slick-next {
	padding: 0 0 0;
	margin: auto 0;
	width: 40px;
	height: 80px;
	bottom: 0;
	top: 0;
	text-align: center;
	display: block;
	opacity: 0;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.box-top-banner .slick-slider:hover .slick-prev, .box-top-banner .slick-slider:hover .slick-next {
	opacity: 1;
}

.box-top-banner .slick-prev:hover, .box-top-banner .slick-next:hover {
	margin: auto -5px;
}

.box-top-banner .slick-prev {
	left: 45px;
}

.box-top-banner .slick-next {
	right: 45px;
}

.box-top-banner .slick-prev:before, .box-top-banner .slick-next:before {
	padding: 0 0 0;
	margin: 0 0 0;
	width: 40px;
	height: 80px;
	font-size: 80px;
	line-height: 1;
	background: transparent;
}



body .box-tabs {
	padding: 45px 0 0;
	margin: 0 0 0;
}

.box-tabs h2 {
	padding: 0 0 13px;
}

.box-tabs p {
	max-width: 770px;
	margin: 0 auto;
}

.tabs-nav a {
	position: relative;
}

.tabs-nav a.active:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -30px;
	margin: auto;
	width: 0;
	height: 0;
	color: #f28c13;
	border: 11px solid transparent;
	border-top-color: #f28c13;
}

body .tabs-item {
	padding: 0 0 0;
	margin: 0 0 0;
	display: none;
}

body .tabs-item h2 {
	padding: 0 0 20px;
}

body .tabs-item p {
	max-width: 100%;
}

body .type-thumb-item {
	padding: 0 0 0;
	margin: 17px 13px 36px;
	width: 150px;
	display: inline-block;
	vertical-align: top;
	text-align: center;
}

.type-thumb-item .img-wr {
	padding: 29px 0 0;
	margin: 0 auto 21px;
	width: 100px;
	height: 100px;
	border-radius: 100px;
	border-radius: 50%;
}

.type-thumb-item img {
	max-height: 46px;
	max-width: 60px;
	display: block;
	margin: 0 auto;
}

.type-thumb-item h5 {
	font-size: 15px;
	padding: 0 0 0;
	color: #666666;
	font-weight: 600;
}



body .block-full-width {
	padding: 0 0 0;
	margin: 0 0 0;
}

.block-full-width [class*="col-"] {
	padding: 0 0 0;
}

.text-item {
	padding: 15px 15px 15px;
	position: relative;
}

.block-full-width .text-item {
	padding: 30px 45px 10px 15px;
	max-width: 555px;
	margin: 0 0 0 auto;
}

.block-full-width [class*="col-"]+[class*="col-"] .text-item {
	padding: 50px 15px 15px 50px;
	margin: 0 auto 0 0;
}

.columns-row {
	/* display: table; */
}

.columns-row [class*="col-"] {
	/* float: none; */
	/* display: table-cell; */
	/* vertical-align: middle; */
}







.slide-item {
	outline: none;
}

.slider-simple {
	padding: 0 0 0;
	margin: 0 0 0;
}

.slider-simple img {
	display: block;
	margin: 0 auto;
	width: 100%;
}

.box-enquiry-link {
	padding: 36px 0 36px;
}

.box-enquiry-link h3 {
	padding: 10px 40px 10px 0;
	display: inline-block;
	vertical-align: middle;
	font-size: 33px;
	font-weight: bold;
}

.box-enquiry-link .btn-main {
	margin: 0 0 0;
	vertical-align: middle;
}




body .box-map {
	padding: 0 0 0;
	margin: 0 0 0;
}

.box-map h2 {
	padding: 0 0 23px;
}

.box-map h3 {
	padding: 0 0 0 20px;
	margin: 0 0 10px;
	border-left: 5px solid #f28c30;
}

.map-wr {
	margin: 0 0;
	min-height: 500px;
	position: relative;
}

#map {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.block-half-row {
	padding: 10px 15px 10px;
	margin: 0 0 0;
	position: relative;
	font-size: 13px;
	float: left;
	width: 50%;
}

.block-half-row:nth-child(odd) {
	clear: left;
}



.box-simple p {
	max-width: 750px;
	margin: 0 auto;
}

.box-simple p:last-child {
	padding-bottom: 0;
}

.box-form {
	padding: 105px 0 70px;
	color: #ffffff;
}

.box-form h3 {
	font-size: 29px;
}

.bg-orange p, .bg-orange a {
	color: inherit;
}

.block-contacts-info {
	padding: 50px 30px 93px 50px;
	margin: 8px -40px 30px 0;
}

.block-contacts-info h3 {
	font-size: 29px;
}

.block-contacts-info h5 {
	padding: 20px 0 5px;
	font-size: 17px;
}

.block-contacts-info p {
	font-size: 15px;
}

.block-contacts-info a:hover {
	text-decoration: underline;
}

#contact {
	padding: 0 0 0 45px;
}



.vcenter {
	height: 100%;
	white-space: nowrap;
}

.vcenter:before,
.vcenter >* {
	display: inline-block;
	vertical-align: middle;
	white-space: normal;
	word-spacing: normal;
}

.vcenter:before {
	content: "";
	height: 100%;
	margin: 0 -5px 0 0;
}

/*  */

.box-top-banner .btn-main {
	margin: 30px auto 0;
}

.btn-main.bg-dark {
	border: none;
	font-style: normal;
}

.btn-main.bg-dark .fa {
	margin-right: 8px;
}

.btn-main.bg-dark:hover {
	color: #fff;
	background: #666;
}

/*  */



































/* 4 - END of .content ---------------------------------------------------------- */
/* 5 - BEGIN of footer ---------------------------------------------------------- */

footer {
	padding: 10px 0 10px;
	background: #232323;
	color: #a5a5a5;
	border-top: 4px solid #f28c13;
}

footer a {
	color: inherit;
}

footer p {
	padding: 0;
	color: inherit;
}

/* 5 - END of footer ---------------------------------------------------------- */
/* * - BEGIN of @media ---------------------------------------------------------- */

@media screen and (max-width: 1199px) {
body {
	font-size: 13px;
	line-height: 2;
	letter-spacing: -.01em;
}
h1 {
	padding: 0 0 15px;
	font-size: 70px;
}
h2 {
	padding: 0 0 15px;
	font-size: 32px;
}
.h2-sm {
	font-size: 22px;
}
h3 {
	padding: 0 0 15px;
	font-size: 22px;
}
.h3-sm {
	font-size: 16px;
}
h4 {
	padding: 0 0 15px;
	font-size: 16px;
}
h5 {
	padding: 0 0 15px;
	font-size: 15px;
}
h6 {
	padding: 0 0 15px;
}
.box-top-banner .slick-prev, .box-top-banner .slick-next {
	width: 40px;
	height: 40px;
}
.box-top-banner .slick-prev:before, .box-top-banner .slick-next:before {
	width: 40px;
	height: 40px;
	font-size: 40px;
}
.box-top-banner .slick-next {
	right: 5px;
}
.box-top-banner .slick-prev {
	left: 5px;
}
.box-top-banner h2 {
	font-size: 30px;
}
.box-top-banner .img-overlay {
	min-height: 400px;
	padding: 60px 0 60px;
}
.box-wr {
	padding: 40px 0 40px;
}
body .box-tabs {
	padding: 30px 0 0;
	margin: 0 0 0;
}
body .btn-main {
	padding: 10px 20px 10px;
	font-size: 14px;
	line-height: 22px;
}
header {
	border-top: 4px solid #f28c13;
}
body .box-top-banner {
	border-bottom: 4px solid #f1f1f1;
}
body .type-thumb-item {
	margin: 10px 5px 35px;
	width: 130px;
}
.type-thumb-item h5 {
	font-size: 13px;
}
.type-thumb-item img {
	max-height: 35px;
	max-width: 45px;
}
.type-thumb-item .img-wr {
	padding: 23px 0 0;
	margin: 0 auto 10px;
	width: 80px;
	height: 80px;
}
.tabs-nav a.active:before {
	bottom: -25px;
	border: 8px solid transparent;
	border-top-color: #f28c13;
}
.parallax-item {
	transform: translate3d(0,0,0) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scaleX(1) scaleY(1) scaleZ(1) !important;
	-webkit-transform: translate3d(0,0,0) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scaleX(1) scaleY(1) scaleZ(1) !important;
}
.list-styled {
	padding: 0 0 15px;
	font-size: 13px;
}
.list-styled li {
	padding: 0 0 3px 20px;
}
.list-styled li:before {
	font-size: 15px;
	top: 6px;
}
.block-full-width .text-item {
	padding: 30px 30px 15px 15px;
	max-width: 555px;
}
.box-enquiry-link h3 {
	padding: 10px 30px 10px 0;
	font-size: 22px;
}
.slick-prev, .slick-next {
	width: 30px;
	height: 30px;
	bottom: 10px;
}
.slick-next {
	right: 10px;
}
.slick-prev:before, .slick-next:before {
	width: 30px;
	height: 30px;
	font-size: 22px;
	line-height: 30px;
}
.slick-prev {
	right: 50px;
}
body .tabs-item h2 {
	padding: 0 0 15px;
}
.block-full-width [class*="col-"]+[class*="col-"] .text-item {
	padding: 30px 15px 15px 30px;
}
.box-map h2 {
	padding: 0 0 15px;
}
.block-half-row {
	padding: 10px 15px 0;
	font-size: 12px;
	float: left;
	width: 50%;
}
.block-contacts-info {
	padding: 30px 25px 50px;
	margin: 5px 0 30px 0;
}
#contact {
	padding: 0 0 0 0;
}
.block-contacts-info h3 {
	font-size: 22px;
}
.block-contacts-info h5 {
	padding: 10px 0 5px;
	font-size: 15px;
}
.block-contacts-info p {
	font-size: 13px;
}
.box-form h3 {
	font-size: 22px;
}











}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 991px) {
body {
	font-size: 13px;
	line-height: 2;
	letter-spacing: -.01em;
}
h1 {
	padding: 0 0 15px;
	font-size: 50px;
}
h2 {
	padding: 0 0 15px;
	font-size: 28px;
}
.h2-sm {
	font-size: 18px;
}
h3 {
	padding: 0 0 15px;
	font-size: 20px;
}
.h3-sm {
	font-size: 14px;
}
h4 {
	padding: 0 0 15px;
	font-size: 15px;
}
h5 {
	padding: 0 0 15px;
	font-size: 14px;
}
h6 {
	padding: 0 0 15px;
}
.box-top-banner h2 {
	font-size: 22px;
}
.box-top-banner h1+h2 {
	padding-left: 100px;
}
.box-top-banner .img-overlay {
	min-height: 300px;
	padding: 60px 0 60px;
	 text-align: center;
}
.box-top-banner .pos-bottom {
	padding: 50px 0 70px;
}
.block-contacts-info {
	padding: 30px 15px 10px;
	margin: 5px 0 30px 0;
	text-align: center;
}
.back-to-top {
	width: 24px;
	height: 24px;
	-webkit-background-size: contain;
	background-size: contain;
}
form label {
	font-size: 13px;
	line-height: 20px;
}

form label span {
	left: 13px;
	top: 14px;
}
form input, form textarea, form select {
	padding: 13px 13px 13px;
	font-size: 13px;
}
.input-focused span, .input-not-empty span {
	top: 0px;
	left: 5px;
}
.block-contacts-info h5 {
	padding: 0 0 5px;
	font-size: 15px;
}
.block-half-row {
	padding: 10px 15px 0;
	font-size: 11px;
	float: left;
	width: 50%;
}
.columns-item.vcenter.text-item {
	height: auto !important;
}










}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 767px) {
body {
	font-size: 12px;
	line-height: 2;
	letter-spacing: -.01em;
}
h1 {
	padding: 0 0 15px;
	font-size: 45px;
}
h2 {
	padding: 0 0 15px;
	font-size: 22px;
}
.h2-sm {
	font-size: 16px;
}
h3 {
	padding: 0 0 15px;
	font-size: 18px;
}
.h3-sm {
	font-size: 13px;
}
h4 {
	padding: 0 0 15px;
	font-size: 14px;
}
h5 {
	padding: 0 0 15px;
	font-size: 13px;
}
h6 {
	padding: 0 0 15px;
}
.box-top-banner h1+h2 {
	padding-left: 0;
}
.box-top-banner h2 {
	font-size: 18px;
}
.box-top-banner .img-overlay {
	min-height: 250px;
	padding: 30px 0 30px;
	text-align: center;
}
.box-top-banner .pos-bottom {
	padding: 60px 0 30px;
}
.box-top-banner .btn-main {
	margin: 10px auto 0;
}
.type-thumb-item img {
	max-height: 25px;
	max-width: 30px;
}
.type-thumb-item .img-wr {
	padding: 15px 0 0;
	margin: 0 15px 0 0;
	width: 50px;
	height: 50px;
	float: left;
}
body .type-thumb-item {
	margin: 10px auto 20px;
	padding: 0 10px 0;
	width: auto;
	display: block;
	text-align: left;
	max-width: 230px;
}
body .type-thumb-item:after {
	display: block;
	content: "";
	position: static;
	clear: both;
	border: none;
}
.tabs-nav a.active:before {
	display: none;
}
.type-thumb-item h5 {
	font-size: 13px;
	overflow: hidden;
	padding: 15px 0 0;
}
.box-enquiry-link h3 {
	padding: 0 0 30px;
	font-size: 20px;
	display: block;
}
.map-wr {
	min-height: 300px;
}
.block-full-width .text-item {
	padding: 30px 15px 15px 15px;
	max-width: 100%;
}
.block-full-width [class*="col-"]+[class*="col-"] .text-item {
	padding: 30px 15px 15px 15px;
}










}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 550px) {
.map-wr {
	min-height: 300px;
}









}

/* ----------------------------------------------------------------------------------- */
/* * - END of @media ---------------------------------------------------------- */
