html {
	font-family: Sans-Serif;
}

.wrapper {
	position: absolute;
	width: 100%;
	height: 100%;
	min-height: 700px;
	min-width: 1024px;
	top: 0;
	left: 0;
	z-index: 1;
}

.main-header {
	position: relative;
	z-index: 2;
	transition: background 0.2s linear;
	-webkit-transition: background 0.2s linear;
	-moz-transition: background 0.2s linear;
	-o-transition: background 0.2s linear;
	-ms-transition: background 0.2s linear;
}

.main-header_state_scrolled {
	background: #223a7d;
}

.main-section {
	position: relative;
	width: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center;
	background-color: #2A5E8A;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	overflow: auto;
}

.main-section_page_home {
	background-image: url('images/home.jpg');
}

.main-section_page_about {
	background-image: url('images/about.jpg');
}

.main-section_page_products {
	background-image: url('images/products.jpg');
}

.main-section_page_events {
	background-image: url('images/events.jpg');
}

.main-section_page_download {
	background-image: url('images/download.jpg');
}

.main-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}

.main-header:after {
	content: ' ';
	clear: both;
	display: block;
}

.small-logo {
	display: block;
	float: left;
	width: 67px;
	height: 24px;
	background: url('images/logo_small.png');
	margin-top: 5px;
	opacity: 0;
	transition: opacity 0.2s linear;
	-webkit-transition: opacity 0.2s linear;
	-moz-transition: opacity 0.2s linear;
	-o-transition: opacity 0.2s linear;
	-ms-transition: opacity 0.2s linear;
}

.main-header_state_scrolled .small-logo {
	opacity: 1;
}

.main-nav__list {
	float: right;
	text-align: right;
	font-size: 0;
}

.main-nav__el {
	display: inline-block;
}

.main-nav__el a {
	color: white;
	text-transform: uppercase;
	font-size: 14px;
	padding: 10px 14px;
	display: block;
	text-decoration: none;
}

.main-nav__el a:hover,
.main-nav__el.active a {
	color: #1E4486;
	font-weight: bold;
	background: white;
}

.container {
	position: relative;
	width: 1024px;
	margin: 0 auto;
}

.container-full {
	position: absolute;
	width: 1024px;
	top: 0;
	left: 50%;
	margin-left: -512px;
	height: 100%;
}

.home {
	position: absolute;
	right: 0;
	bottom: 130px;
	width: 430px;
	text-align: center;
}

.home__header {
	color: white;
	text-transform: uppercase;
	font-size: 60px;
	font-weight: bold;
	display: inline-block;
	margin-bottom: 15px;
}

.home__logo {
	display: inline-block;
	width: 403px;
	height: 149px;
	background: url('images/logo.png');
	margin-bottom: 10px;
}

.home__btn {
}

.btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.btn {
	display: inline-block;
	font-size: 16px;
	text-decoration: none;
	border: solid thin #547c98;
	border-radius: 8px;
	padding: 10px 20px;
	color: white;
	cursor: pointer;
	font-weight: bold;
	background: #407b98;
	background: -moz-linear-gradient(top,  #407b98 0%, #183444 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#407b98), color-stop(100%,#183444));
	background: -webkit-linear-gradient(top,  #407b98 0%,#183444 100%);
	background: -o-linear-gradient(top,  #407b98 0%,#183444 100%);
	background: -ms-linear-gradient(top,  #407b98 0%,#183444 100%);
	background: linear-gradient(to bottom,  #407b98 0%,#183444 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#407b98', endColorstr='#183444',GradientType=0 );
}

.main-section__title {
	text-align: center;
	display: block;
	padding: 50px 30px;
}

.main-section__title span {
	color: white;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 25px;
	display: inline-block;
	background: #223a7d;
	border-radius: 15px;
	padding: 8px 15px;
}

.main-section__title_margin_small {
	padding-bottom: 10px;
}

.main-section__text {
	width: 50%;
	color: white;
	line-height: 1.2;
	font-size: 20px;
	text-align: justify;
}

.main-section__text p {
	margin-bottom: 10px;
}

.main-section__text b {
	font-weight: bold;
	font-size: 22px;
}

.main-section__highlight {
	font-weight: bold;
	font-size: 22px;
	margin: 15px 0;
}

.products {
	text-align: center;
	margin-bottom: 40px;
	font-size: 0;
}

.product {
	width: 245px;
	display: inline-block;
	margin-right: 11px;
}

.product:last-of-type {
	margin-right: 0;
}

.product__pic {
	width: 245px;
	height: 245px;
	overflow: hidden;
	margin-bottom: 15px;
}

.product__pic img {
	height: 100%;
}

.events {
	width: 815px;
	float: right;
}

.event {
	float: left;
	width: 400px;
	margin-bottom: 20px;
}

.event:nth-of-type(odd) {
	clear: right;
	margin-right: 15px;
}

.event__pic {
	position: relative;
	width: 100%;
	height: 200px;
	margin-bottom: 15px;
	background: rgba(19, 35, 49, 0.5);
	overflow: hidden;
	display: block;
}

.event__pic:hover:after {
	display: block;
	content: ' ';
	width: 60px;
	height: 60px;
	position: absolute;
	z-index: 2;
	left: 50%;
	top: 50%;
	margin-left: -30px;
	margin-top: -30px;
	background: url('images/plus.png');
	background-size: 100%;
}

.event__pic img {
	width: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 0;
}

.event__description {
	width: 100%;
	height: 30px;
	line-height: 30px;
	background: rgba(19, 35, 49, 0.5);
	color: white;
	text-align: center;
}

.gallery {
	text-align: justify;
}

.gallery:after {
	content: ' ';
	display: inline-block;
	width: 100%;
}

.gallery__pic {
	width: 240px;
	height: 240px;
	display: inline-block;
	margin-bottom: 20px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
}

.gallery__pic:hover:after {
	display: block;
	content: ' ';
	width: 60px;
	height: 60px;
	position: absolute;
	z-index: 2;
	left: 50%;
	top: 50%;
	margin-left: -30px;
	margin-top: -30px;
	background: url('images/plus.png');
	background-size: 100%;
}

.gallery__pic img {
	max-height: 100%;
	max-width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

.download {
	width: 400px;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -200px;
	margin-top: -130px;
}

.download__icon {
	display: inline-block;
	width: 368px;
	height: 243px;
	background: url('images/download.png');
	margin-bottom: 17px;
}

.download__btn {
	display: inline-block;
}

.dealers:after {
	content: ' ';
	display: block;
	clear: both;
}

.dealer {
	width: 25%;
	float: left;
	color: white;
	padding-right: 15px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	margin-bottom: 20px;
}

.dealer:nth-of-type(4n+1) {
	clear: left;
}

.dealer__country {
	font-weight: bold;
	font-size: 18px;
}

.dealer__name {
	font-weight: bold;
	font-size: 16px;
	margin: 5px 0;
}

.dealer__info {
	font-size: 13px;
	line-height: 1.2;
}

.dealers-map {
	background: #223a7d;
	padding: 15px;
}

.dealers-map__image {
	position: relative;
	width: 100%;
	background: #1c579d;
}

.dealers-map img {
	width: 100%;
}

.dealers-map__dealer {
	position: absolute;
	width: 16px;
	height: 16px;
	cursor: pointer;
	border-radius: 8px;
	background: #f6d439;
}

.dealers-map__dealer:hover {
	background: #ac153b;
}

.main-section__subtitle {
	color: white;
	text-align: center;
	margin-bottom: 30px;
}

.main-form {
	position: absolute;
	top: 50%;
	margin-top: -111px;
	left: 0;
	width: 100%;
}

.main-form__error {
	color: rgb(231, 0, 0);
	font-size: 20px;
	margin-bottom: 10px;
}

.main-form__inputs {
	float: left;
	width: 500px;
}

.main-form__input {
	width: 100%;
	height: 42px;
	border: none;
	border-radius: 6px;
	margin-bottom: 12px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	padding: 0 10px;
}

.main-form__textarea {
	width: 500px;
	height: 150px;
	float: right;
	border: none;
	border-radius: 6px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	padding: 10px;
	font-family: Sans-Serif;
}

.clear {
	clear: both;
}

.main-form__btn {
	text-align: center;
	margin: 10px 0;
}

.contact {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100px;
	line-height: 100px;
	background: white;
	font-size: 14px;
}

.contact__copyright {
	float: left;
}

.contact__design {
	float: right;
	text-decoration: none;
	color: inherit;
}

.contact__design-container {
	display: inline-block;
	line-height: 1.4;
}


.contact__social {
	width: 40px;
	height: 40px;
	background: #21397b center center no-repeat;
	border-radius: 20px;
	position: absolute;
	display: block;
	top: 50%;
	margin-top: -20px;
	left: 50%;
}

.contact__social_type_facebook {
	margin-left: -70px;
	background-image: url('images/facebook.png');
}

.contact__social_type_youtube {
	margin-left: -20px;
	background-image: url('images/youtube.png');
}

.contact__social_type_gplus {
	margin-left: 30px;
	background-image: url('images/gplus.png');
}

.youtube {
	position: relative;
}

.youtube__main {
	background: #1f3571;
	width: 700px;
}

.youtube__video {
	width: 700px;
	height: 525px;
}

.youtube__info {
	color: white;
	padding: 10px;
}

.youtube__title {
	float: left;
	font-weight: bold;
}

.youtube__extra {
	float: right;
	font-weight: bold;
}

.youtube__description {
	margin-top: 5px;
	font-size: 14px;
	line-height: 1.2;
}

.youtube__sidenav {
	position: absolute;
	background: #1f3571;
	top: 0;
	right: 0;
	height: 100%;
	width: 300px;
}

.youtube__sidenav-arrow {
	position: absolute;
	left: 50%;
	margin-left: -10px;
	width: 20px;
	height: 20px;
	border-radius: 10px;
	cursor: pointer;
	background-size: 100%;
	background-repeat: no-repeat;
}

.youtube__sidenav-arrow_up {
	top: 10px;
	background-image: url('images/arrow_up.png');
}

.youtube__sidenav-arrow_down {
	bottom: 10px;
	background-image: url('images/arrow_down.png');
}

.youtube__sidenav-main {
	position: absolute;
	top: 45px;
	bottom: 45px;
	left: 15px;
	right: 15px;
	overflow: hidden;
}

.youtube__sidenav-vid {
	position: relative;
	cursor: pointer;
	margin-bottom: 5px;
}

.youtube__sidenav-vid:after {
	content: ' ';
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	width: 50px;
	height: 50px;
	margin-left: -25px;
	margin-top: -25px;
	background: url('images/arrow_right.png');
	background-size: 100%;
	background-repeat: no-repeat;
}

.youtube__sidenav-vid img {
	width: 100%;
}

.dealers-map__dealer-info {
	position: absolute;
	color: white;
	background: #213a7d;
	padding: 10px;
	border-radius: 15px;
	z-index: 3;
	white-space: nowrap;
	line-height: 1.2;
	max-width: 0;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
}

.dealers-map__dealer_is-active .dealers-map__dealer-info,
.dealers-map__dealer:hover .dealers-map__dealer-info {
	max-width: 400px;
	max-height: 100px;
	opacity: 1;
}

.dealers-map__dealer-top {
	white-space: nowrap;
}

.dealers-map__dealer-location {
	font-size: 18px;
	text-transform: uppercase;
	font-weight: bold;
}

.dealers-map__dealer-name {
	font-size: 16px;
	font-weight: bold;
	margin-left: 10px;
}

.dealers-map__dealer-description {
	font-size: 12px;
	line-height: 1.2;
}

.lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-height: 700px;
	z-index: 3;
	background: rgba(43, 94, 133, 0.8);
}

.lightbox__content {
	position: absolute;
	left: 50px;
	right: 50px;
	top: 50px;
	bottom: 150px;
	background: #344356;
}

.lightbox__footer {
	background: #344356;
	position: absolute;
	bottom: 70px;
	left: 50px;
	right: 50px;
	height: 60px;
	line-height: 60px;
	color: white;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	padding: 0 20px;
}

.lightbox__description {
	float: left;
}

.lightbox__location {
	float: right;
}

.lightbox__main {
	position: relative;
	height: 100%;
	margin: 0 80px;
	overflow: hidden;
	text-align: center;
	background: url('images/loader.gif') center center no-repeat;
}

.lightbox__main img {
	max-height: 100%;
	max-width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

.lightbox__arrow {
	position: absolute;
	top: 0;
	width: 80px;
	height: 100%;
	cursor: pointer;
}

.lightbox__arrow:after {
	position: absolute;
	content: ' ';
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	margin-left: -20px;
	background: center center no-repeat;
	background-size: 100%;
}

.lightbox__arrow:hover {
	background: rgba(255, 255, 255, 0.4);
}

.lightbox__arrow_left {
	left: 0;
}

.lightbox__arrow_right {
	right: 0;
}

.lightbox__arrow_left:after {
	background-image: url('images/arrow_left.png');
}

.lightbox__arrow_right:after {
	background-image: url('images/arrow_right.png');
}

.lightbox__close {
	position: absolute;
	right: 20px;
	top: 20px;
	width: 30px;
	height: 30px;
	cursor: pointer;
	background: #344356 url('images/close.png') center center no-repeat;
	background-size: 20px;
}

.product-info {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-height: 700px;
	z-index: 3;
	background: rgba(43, 94, 133, 0.8);
}

.product-info__close {
	position: absolute;
	right: 20px;
	top: 20px;
	width: 30px;
	height: 30px;
	cursor: pointer;
	background: #344356 url('images/close.png') center center no-repeat;
	background-size: 20px;
}

.product-info__title {
	text-align: center;
	display: block;
	padding: 15px;
	padding-top: 50px;
}

.product-info__title span {
	color: white;
	font-weight: bold;
	font-size: 20px;
	display: inline-block;
	background: #223a7d;
	border-radius: 15px;
	padding: 8px 15px;
}

.product-info__wrapper {
	width: 700px;
	margin: 0 auto;
}

.product-info__image {
	width: 50%;
	float: left;
	padding-right: 15px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.product-info__image img {
	width: 100%;
}

.product-info__details {
	width: 50%;
	float: right;
	padding-left: 15px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	color: #132331;
	line-height: 1.2;
	font-size: 16px;
}

.product-info__details b {
	font-weight: bold;
}

.product-info__specs {
	margin: 10px 0;
}

.product-info__spec {
}

.product-info__spec:after {
	content: ' ';
	clear: both;
	display: block;
}

.product-info__label {
	width: 100px;
	font-weight: bold;
	float: left;
}

.product-info__value {
	float: left;
}

.product-info__thumbs {
	margin-top: 15px;
}

.product-info__thumb {
	display: block;
	float: left;
	margin-right: 10px;
	width: 105px;
	height: 105px;
	overflow: hidden;
	margin-bottom: 20px;
	cursor: pointer;
}

.product-info__thumb:nth-of-type(3n+3) {
	margin-right: 0;
}

.product-info__thumb img {
	width: 100%;
}

.product-info__subtitle {
	text-align: center;
	font-size: 18px;
}

.product-info__table-wrapper {
	text-align: center;
}

.product-info__table {
	display: inline-block;
	margin-top: 20px;
}

.product-info__table td {
	border: solid 2px black;
	padding: 5px 20px;
	text-align: center;
}

.hidden-link {
	display: none;
}

.contact-details {
	color: white;
	text-align: center;
	position: absolute;
	left: 0;
	width: 100%;
	top: 50%;
	margin-top: -140px;
}

.contact-details__title {
	font-size: 25px;
	font-weight: bold;
	margin-bottom: 10px;
}

.contact-details__subtitle {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
}

.contact-details__facebook {
	display: block;
	color: white;
	text-decoration: none;
	margin-top: 20px;
	font-weight: bold;
	font-size: 18px;
}
