@font-face {
	font-family: 'Nunito Sans';
	src: url('../fonts/NunitoSans-ExtraLight.woff2') format('woff2');
	font-weight: 200;
	font-style: normal;
}
@font-face {
	font-family: 'Nunito Sans';
	src: url('../fonts/NunitoSans-ExtraLightItalic.woff2') format('woff2');
	font-weight: 200;
	font-style: italic;
}
@font-face {
	font-family: 'Nunito Sans';
	src: url('../fonts/NunitoSans-Light.woff2') format('woff2');
	font-weight: 300;
	font-style: normal;
}
@font-face {
	font-family: 'Nunito Sans';
	src: url('../fonts/NunitoSans-LightItalic.woff2') format('woff2');
	font-weight: 300;
	font-style: italic;
}
@font-face {
	font-family: 'Nunito Sans';
	src: url('../fonts/NunitoSans-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: 'Nunito Sans';
	src: url('../fonts/NunitoSans-Italic.woff2') format('woff2');
	font-weight: 400;
	font-style: italic;
}
@font-face {
	font-family: 'Nunito Sans';
	src: url('../fonts/NunitoSans-Medium.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: 'Nunito Sans';
	src: url('../fonts/NunitoSans-MediumItalic.woff2') format('woff2');
	font-weight: 500;
	font-style: italic;
}
@font-face {
	font-family: 'Nunito Sans';
	src: url('../fonts/NunitoSans-SemiBold.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
}
@font-face {
	font-family: 'Nunito Sans';
	src: url('../fonts/NunitoSans-SemiBoldItalic.woff2') format('woff2');
	font-weight: 600;
	font-style: italic;
}
@font-face {
	font-family: 'Nunito Sans';
	src: url('../fonts/NunitoSans-Bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
}
@font-face {
	font-family: 'Nunito Sans';
	src: url('../fonts/NunitoSans-BoldItalic.woff2') format('woff2');
	font-weight: 700;
	font-style: italic;
}
@font-face {
	font-family: 'Nunito Sans';
	src: url('../fonts/NunitoSans-ExtraBold.woff2') format('woff2');
	font-weight: 800;
	font-style: normal;
}
@font-face {
	font-family: 'Nunito Sans';
	src: url('../fonts/NunitoSans-ExtraBoldItalic.woff2') format('woff2');
	font-weight: 800;
	font-style: italic;
}
@font-face {
	font-family: 'Nunito Sans';
	src: url('../fonts/NunitoSans-Black.woff2') format('woff2');
	font-weight: 900;
	font-style: normal;
}
@font-face {
	font-family: 'Nunito Sans';
	src: url('../fonts/NunitoSans-BlackItalic.woff2') format('woff2');
	font-weight: 900;
	font-style: italic;
}

* {
	font-family: 'Nunito Sans', sans-serif;
}

body {
	font-size: 16px;
	line-height: 1.5;
	color: #333;
}
body.active {
	overflow-y: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: bold;
	color: #000;
}
h1,
h2,
h3 {
	line-height: 1.25;
}
h4,
h5,
h6 {
	line-height: 1.3333;
}
h1 {
	font-size: 48px;
}
h2 {
	font-size: 36px;
}
h3 {
	font-size: 24px;
}
h4 {
	font-size: 20px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}

a {
	color: #1A936F;
	text-decoration: none;
}
a:hover {
	color: #1A936F;
	text-decoration: underline;
}


/* Button style */
.button,
.submit {
	display: inline-block;
	text-decoration: none;
	border: 0;
	outline: none;
	color: #fff;
	background: #1A936F;
	line-height: 24px;
	padding: 13px 20px;
	border-radius: 0px 5px 0px 5px;
	transition: all 0.2s linear;
}
.button:hover,
.submit:hover {
	color: #fff;
	text-decoration: none;
	background: #177d5f;
}
.button:active,
.submit:active {
	outline: none;
}

/* Form */
input[type=text],
input[type=email],
textarea {
	border: none;
	outline: none;
	width: 100% !important;
	padding: 13px 20px;
	border: 1px solid #E0E7EC;
	transition: all 0.2s linear;
}
input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
	border-color: #1A936F;
	transition: all 0.2s linear;
}
textarea {
	max-width: 100%;
	min-height: 100px;
}
.mod-rscontact-pre-text p {
	font-style: italic;
}
.control-group {
	margin-bottom: 20px;
}
.mod-rscontact-error {
	font-size: 14px;
}
.rscontact {
	margin-top: -200px;
	padding: 30px;
	background: #fff;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}
@media (max-width: 768px) {
	.rscontact {
		margin-top: 20px;
		padding: 0;
		background: transparent;
		box-shadow: none;
	}
}
.alert-success {
	padding: 30px;
	background: #1a936f;
	color: #fff;
}


/* Helpers */
.devider {
	width: 100%;
	height: 1px;
	background: #e9e9e9;
}
.mar-b30 {
	margin-bottom: 30px;
}
.mar-b60 {
	margin-bottom: 60px;
}
.mar-b90 {
	margin-bottom: 90px;
}
.mar-b120 {
	margin-bottom: 120px;
}
.pad-t30 {
	padding-top: 30px;
}
.pad-t60 {
	padding-top: 60px;
}
.pad-t90 {
	padding-top: 90px;
}
.pad-t120 {
	padding-top: 120px;
}
.pad-r60 {
	padding-right: 30px;
}
.larg-text {
	font-size: 18px;
	line-height: 1.5;
}


/* Title border */
.title-border {
	position: relative;
	padding-left: 40px;
	font-weight: bold;
	margin-bottom: 16px;
	color: #000;
}
.title-border:before {
	content: '';
	position: absolute;
	top: 10px;
	left: 0px;
	width: 25px;
	height: 3px;
	background: #1A936F;
}



/* Header */
.header {
	position: absolute;
	top: 60px;
	width: 100%;
	left: 0;
}
.header-bar {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.menu-toggle {
	display: none;
}
.header-nav {}
.header-nav>ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: flex-end;
}
.header-nav>ul>li:first-child {
	display: none;
}
.header-nav>ul>li {
	padding: 0 20px;
}
.header-nav>ul>li:last-child {
	padding-right: 0;
}
.header-nav>ul>li>a {
	display: block;
	line-height: 32px;
	text-transform: uppercase;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
}
@media (max-width: 768px) {
	.header-nav>ul>li {
		padding: 0 15px;
	}
}
@media (max-width: 576px) {
	.menu-toggle {
		display: block;
		width: 32px;
		height: 32px;
		background: url(../images/menu.png)no-repeat center center;
		font-size: 0;
		position: relative;
		z-index: 3;
	}
	.menu-toggle.active {
		background: url(../images/close.png)no-repeat center center;
	}
	.menu-toggle-wrap {
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		justify-content: flex-end;
	}
	.header-nav {
		display: none;
	}
	.header-nav.active {
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		left: 0;
		bottom: 0;
		background: rgba(0, 0, 0, 0.95);
		z-index: 2;
	}
	.header-nav.active>ul {
		justify-content: center;
		height: 100%;
		width: 100%;
		flex-direction: column;
		align-items: center;
	}
	.header-nav.active>ul>li {
		margin-bottom: 30px;
	}
	.header-nav.active>ul>li>a {
		font-size: 24px;
		line-height: 2;
	}
}

/* Lang Switcher */
.chzn-container-single .chzn-single {
	position: relative;
	display: block;
	overflow: hidden;
	padding: 0 0 0 8px;
	height: 32px;
	border: none !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: #fff !important;
	text-decoration: none;
	white-space: nowrap;
	line-height: 32px;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	min-width: 60px;
}
.chzn-container .chzn-drop {
	border: none !important;
}
.chzn-container-single .chzn-drop {
	border-radius: 0 0 0 0 !important;

}
.chzn-container .chzn-results {
	margin: 0 !important;
	padding: 0 !important;
}
.chzn-container .chzn-results li.highlighted {
	background: #1A936F !important;
}



/* Main */
.main-content {
	padding-top: 120px;
	background: url(../images/dots.png)no-repeat left top;
}
@media (max-width: 992px) {
	.main-content {
		background: #fff;
	}
}
/* Banner section */
.banner-section {
	padding-top: 210px;
	padding-bottom: 120px;
	background: #000;
}
.homepage-banner {
	background: #000 url(../images/homepage-banner.png)no-repeat center center;
	background-size: cover;
}
.aboutpage-banner {
	background: #000 url(../images/aboutpage-banner.png)no-repeat center center;
	background-size: cover;
}
.brandspage-banner {
	background: #000 url(../images/brandspage-banner.png)no-repeat center center;
	background-size: cover;
}
.contactpage-banner {
	background: #000 url(../images/contactpage-banner.png)no-repeat center center;
	background-size: cover;
}
.pre-title {
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 600;
	color: #1A936F;
	letter-spacing: 1px;
	margin-bottom: 10px;
}
.title {
	color: #fff;
	margin-bottom: 10px;
}
.post-title {
	font-size: 20px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.4;
	margin-bottom: 20px;
}

/* Facts */
.facts {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}
.facts-num {
	font-size: 24px;
	font-weight: bold;
	color: #1A936F;
	line-height: 1;
}
.facts-desc {
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
}


/* Sale point */
.sale-point-map {
	max-width: 1400px;
	max-height: 550px;
	margin: 0 auto;
}
.sale-point-map img {
	max-width: 100%;
}
.sale-point-text {
	position: absolute;
	max-width: 310px;
	top: 100px;
	padding: 20px;
	background: #fff;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
}
.sale-point-title {
	font-weight: bold;
	color: #000;
	margin-bottom: 10px;
	padding-left: 30px;
	background: url(../images/map-pin.png)no-repeat left center;
}
.sale-point-text p {
	margin-bottom: 0;
}
@media (max-width: 576px) {
	.sale-point-text {
		position: static;
		max-width: 100%;
		width: 100%;
		box-shadow: none;
		border-top: 1px solid #e9e9e9;
		padding: 20px 0;
	}
}


/* Brands */
.brand-info {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.brand-info img {
	margin-bottom: 30px;
}
.brand-info .brand-link {
	font-weight: bold;
	margin-bottom: 20px;
}
.brand-desc-italic {
	font-style: italic;
}
.brand-desc {
	font-size: 14px;
}


/* Contacts */
.upper-title {
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 600;
	color: #000;
	letter-spacing: 1px;
	margin-bottom: 5px;
}
.contacts-info a {
	color: #333;
}
.contacts-info a:hover {
	color: #1A936F;
}

/* Footer */
.footer {}
.footer>.container {
	padding-top: 60px;
	padding-bottom: 50px;
}
.footer-action-title {
	margin-bottom: 20px;
}
.footer-nav {}
.footer-nav-title {
	font-weight: bold;
	color: #000;
	margin-bottom: 16px;
}
.footer-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer-nav ul li {
	margin-bottom: 15px;
}
.footer-nav ul li:first-child {
	display: none;
}
.footer-nav ul li a {
	line-height: 20px;
	color: #999999;
	transition: all 0.2s linear;
}
.footer-nav ul li a:hover {
	text-decoration: underline;
	color: #1A936F;
}

/* Copyright */
.copyright {
	padding: 30px 0;
	font-size: 14px;
	line-height: 30px;
	text-align: center;
	border-top: 1px solid #e9e9e9;
}