html {
	font-size: 10px;
}

body {
	font-family: 'Lato', sans-serif;
	font-size: 1.4rem;
	margin: 0;
	padding: 20.9rem 0 0;
	/*padding: 17.2rem 0 0;*/
}

.lang-nav {
	background-color: #8ba7b1;
	padding: 1rem 0;
	font-size: 1.2rem;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	transition: all .3s ease-in-out;
	z-index: 10;
	height: 3.7rem;
}

.scrolled .lang-nav {
	padding: 0.3rem 0;
	height: 2.3rem;
}

.lang-nav ul {
	display: block;
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: right;
}

.lang-nav ul > li {
	display: inline-block;
}

.lang-nav ul > li:not(:first-child) {
	padding-left: 1.3rem;
	position: relative;
}

.lang-nav ul > li:not(:first-child):before {
	content: '';
	display: block;
	width: 1px;
	height: 1.2rem;
	background-color: #bbc9ce;
    transform: rotate(15deg);
	-ms-transform: rotate(15deg);
    -webkit-transform: rotate(15deg);
    position: absolute;
    left: 0.5rem;
    top: 0.3rem;
}

.lang-nav ul > li > a {
	color: #fff;
	transition: all .4s ease;
}

.lang-nav ul > li > a:hover,
.lang-nav ul > li > a:focus,
.lang-nav ul > li.active > a {
	text-decoration: none;
	color: #005696;
}

.main-nav {
	padding: 4.2rem 0 4rem;
	position: fixed;
	top: 3.7rem;
	/*top: 0;*/
	left: 0;
	width: 100%;
	height: 17.2rem;
	background-color: #fff;
	z-index: 10;
	-webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	-moz-box-shadow:    0 0 0 0 rgba(0, 0, 0, 0);
	box-shadow:         0 0 0 0 rgba(0, 0, 0, 0);
	transition: all .3s ease-in-out
}

.scrolled .main-nav {
	top: 2.3rem;
	/*top: 0;*/
	padding: 1.2rem 0 1rem;
	height: 6.2rem;
	-webkit-box-shadow: 0 0.2rem 1rem 0 rgba(0, 0, 0, 0.1);
	-moz-box-shadow:    0 0.2rem 1rem 0 rgba(0, 0, 0, 0.1);
	box-shadow:         0 0.2rem 1rem 0 rgba(0, 0, 0, 0.1);
}

.main-nav .logo {
	display: block;
	height: 9rem;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url(../img/logo.svg);
	transition: all .3s ease-in-out;
}

.scrolled .main-nav .logo {
	height: 4rem;
}

.main-nav nav > ul {
	display: block;
	list-style: none;
	padding-top: 5rem;
	font-size: 2.2rem;
	font-weight: 300;
	margin: 0;
	transition: all .3s ease-in-out;
}

.scrolled .main-nav nav > ul {
	padding-top: 0.4rem;
}

.main-nav nav > ul > li {
	display: inline-block;
}

.main-nav nav > ul > li:not(:first-child) {
	padding-left: 5rem;
	position: relative;
}

.main-nav nav > ul > li:not(:first-child):before {
	content: '';
	display: block;
	width: 1px;
	height: 2rem;
	background-color: #bbc9ce;
    transform: rotate(15deg);
	-ms-transform: rotate(15deg);
    -webkit-transform: rotate(15deg);
    position: absolute;
    left: 2.5rem;
    top: 0.7rem;
}

.main-nav nav > ul > li.has-submenu {
	padding-right: 2rem;
	padding-bottom: 2.5rem;
	position: relative;
}

.main-nav nav > ul > li.has-submenu:after {
	content: '';
	display: block;
	width: 1rem;
	height: 0.5rem;
	position: absolute;
	right: 0;
	top: 1.5rem;
	background-image: url(../img/arrow-down.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center center;
    transform: rotate(0deg);
	-ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transition: all .3s ease-in-out;
}

.main-nav nav > ul > li.has-submenu:hover:after,
.main-nav nav > ul > li.has-submenu:focus:after {
    transform: rotate(180deg);
	-ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

.main-nav nav > ul > li > a {
	color: #6f6f6f;
	transition: all .4s ease;
}

.main-nav nav > ul > li > a:hover,
.main-nav nav > ul > li > a:focus,
.main-nav nav > ul > li.active > a {
	color: #4395d2;
	text-decoration: none;
}

.main-nav nav > ul > li > ul {
	display: block;
	list-style: none;
	padding: 0 1rem;
	margin: 0;
	position: absolute;
	top: 4.5rem;
	background-color: #fff;
	left: 2rem;
	width: 32rem;
	font-size: 1.8rem;
	-webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	-moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	max-height: 0;
	overflow: hidden;
	text-align: left; 
	transition: all .4s ease;
}

.main-nav nav > ul > li:hover > ul {
	max-height: 35rem;
	padding: 1rem;
}

.scrolled .main-nav nav > ul > li > ul {
	-webkit-box-shadow: 0 0.7rem 0.9rem 0 rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 0.7rem 0.9rem 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 0.7rem 0.9rem 0 rgba(0, 0, 0, 0.1);
}

.main-nav nav > ul > li > ul > li {
	display: block;
	padding: 0.2rem 0;
}

.main-nav nav > ul > li > ul > li a {
	color: #6f6f6f;
	transition: all .4s ease;
}

.main-nav nav > ul > li > ul > li a:hover,
.main-nav nav > ul > li > ul > li a:focus,
.main-nav nav > ul > li > ul > li.active a {
	color: #4395d2;
	text-decoration: none;
}

@-moz-keyframes bg {
	0% {
		-moz-transform: translate3d(0,0,0);
		-webkit-transform: translate3d(0,0,0);
		-ms-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}

	100% {
		-moz-transform: translate3d(-192rem,0,0);
		-webkit-transform: translate3d(-192rem,0,0);
		-ms-transform: translate3d(-192rem,0,0);
		transform: translate3d(-192rem,0,0);
	}
}

@-webkit-keyframes bg {
	0% {
		-moz-transform: translate3d(0,0,0);
		-webkit-transform: translate3d(0,0,0);
		-ms-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}

	100% {
		-moz-transform: translate3d(-192rem,0,0);
		-webkit-transform: translate3d(-192rem,0,0);
		-ms-transform: translate3d(-192rem,0,0);
		transform: translate3d(-192rem,0,0);
	}
}

@-ms-keyframes bg {
	0% {
		-moz-transform: translate3d(0,0,0);
		-webkit-transform: translate3d(0,0,0);
		-ms-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}

	100% {
		-moz-transform: translate3d(-192rem,0,0);
		-webkit-transform: translate3d(-192rem,0,0);
		-ms-transform: translate3d(-192rem,0,0);
		transform: translate3d(-192rem,0,0);
	}
}

@keyframes bg {
	0% {
		-moz-transform: translate3d(0,0,0);
		-webkit-transform: translate3d(0,0,0);
		-ms-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}

	100% {
		-moz-transform: translate3d(-192rem,0,0);
		-webkit-transform: translate3d(-192rem,0,0);
		-ms-transform: translate3d(-192rem,0,0);
		transform: translate3d(-192rem,0,0);
	}
}

.bg-anim {
	min-height: 68rem;
	overflow-x: hidden;
	position: relative;
}

.bg-anim .bg {
	height: 44.3rem;
	width: 576rem;
	position: absolute;
	bottom: 1.5rem;
	left: 0;
	z-index: 0;
	background-image: url(../img/bg.jpg);
	background-repeat: repeat-x;
	background-size: 192rem auto;
	background-position: bottom left;

	-moz-animation: bg 60s linear infinite;
	-webkit-animation: bg 60s linear infinite;
	-ms-animation: bg 60s linear infinite;
	animation: bg 60s linear infinite;
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-transform: translate3d(0,0,0);
	-webkit-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.bg-anim .container {
	position: relative;
	z-index: 1;
}

.no-padding {
	padding: 0 !important;
}

.bg-anim h1 {
	color: #4395d2;
	font-size: 5rem;
	margin: 6rem 0 1rem;
	font-weight: 300;
}

.bg-anim p {
	font-size: 1.9rem;
	font-weight: 300;
	color: #708c96;
	margin: 0 0 2rem;
}

.btn-blue {
	display: inline-block;
	background-color: #4395d2;
	color: #fff;
	padding: 1.1rem 1.8rem;
	font-size: 1.551rem;
	border-radius: 0.5rem;
	border: 0.2rem solid #4395d2;
	position: relative;
	overflow: hidden;
	transition: all .4s ease;
}

.btn-blue > span {
	position: relative;
	z-index: 1;
}

.btn-blue > span:after {
	content: ' »';
}

.btn-blue:before {
	content: '';
	display: block;
	width: 0;
	padding-bottom: 0;
	position: absolute;
	left: 50%;
	top: 50%;
	background-color: #fff;
	border-radius: 50%;
	z-index: 0;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transition: 0.4s ease;
}

.btn-blue:hover,
.btn-blue:focus {
	text-decoration: none;
	color: #4395d2;
}

.btn-blue:hover:before,
.btn-blue:focus:before {
	width: 110%;
	padding-bottom: 100%;
}

.lady-img {
	margin-top: 2.5rem;
}

.scroller {
	width: 3.9rem;
	height: 3.1rem;
	position: absolute;
	bottom: 4rem;
	left: calc(50% - 1.95rem);
	z-index: 2;
	cursor: pointer;
	transform: scale(1);
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
	transition: all .4s ease;
}

.scroller:hover,
.scroller:focus {
	transform: scale(1.2);
	-ms-transform: scale(1.2);
	-webkit-transform: scale(1.2);
}

.scroller > span {
	position: absolute;
	display: block;
	width: 3.9rem;
	height: 2.1rem;
	left: 0;
}

.scroller > span:first-child {
	top: 0;
}

.scroller > span:last-child {
	bottom: 0;
}

.scroller > span:before {
	content: '';
	display: block;
	width: 2.7rem;
	height: 0.3rem;
	border-radius: 0.15rem;
	background-color: #c5c4c5;
    transform: rotate(45deg);
	-ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    position: absolute;
    top: 0.9rem;
    left: -0.3rem;
}

.scroller > span:after {
	content: '';
	display: block;
	width: 2.7rem;
	height: 0.3rem;
	border-radius: 0.15rem;
	background-color: #c5c4c5;
    transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    position: absolute;
    top: 0.9rem;
    right: -0.3rem;
}

h2 {
	font-size: 4.5rem;
	font-weight: 300;
	color: #4395d2;
	margin: 0;
}

h2 + p {
	font-size: 2.4rem;
	color: #708c96;
	font-weight: 300;
	margin: 0 0 5rem;
}

.post-image {
	min-height: 20rem;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.post-title {
	font-size: 2.1rem;
	font-weight: 400;
	color: #4395d2;
	margin: 2.6rem 0;
}

.post-title + p {
	color: #708c96;
	font-size: 1.6rem;
	line-height: 2rem;
	font-weight: 300;
	margin: 0 0 2rem;
}

.btn-grey {
	display: inline-block;
	background-color: #8ba7b1;
	color: #fff;
	padding: 0.8rem 2.8rem;
	font-size: 1.4rem;
	border-radius: 0.5rem;
	border: 0.2rem solid #8ba7b1;
	position: relative;
	overflow: hidden;
	transition: all .4s ease;
}

.btn-grey > span {
	position: relative;
	z-index: 1;
}

.btn-grey > span:after {
	content: ' »';
}

.btn-grey:before {
	content: '';
	display: block;
	width: 110%;
	padding-bottom: 100%;
	width: 0;
	padding-bottom: 0;
	position: absolute;
	left: 50%;
	top: 50%;
	background-color: #fff;
	border-radius: 50%;
	z-index: 0;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transition: 0.4s ease;
}

.btn-grey:hover,
.btn-grey:focus {
	text-decoration: none;
	color: #8ba7b1;
}

.btn-grey:hover:before,
.btn-grey:focus:before {
	width: 110%;
	padding-bottom: 100%;
}

.blue-section {
	position: relative;
	background-color: #4395d2;
	margin: 10rem 0 5rem;
	overflow: hidden;
	padding: 4rem 0 0;
	color: #fff;
}

.blue-section:before {
	content: '';
	display: block;
	z-index: 0;
	width: 42.5rem;
	height: 49.7rem;
	background-image: url(../img/baloon.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
	position: absolute;
	top: 0;
	right: 7rem;
}

.blue-section:after {
	content: '';
	width: 0;
	height: 0;
	border-top: 9.5rem solid #fff;
	border-right: 100vw solid transparent;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}

.blue-section .container {
	position: relative;
	z-index: 2;
}

.blue-section h3 {
	font-size: 4rem;
	margin: 4.5rem 0 2.5rem;
}

.blue-section p {
	font-size: 1.8rem;
	margin: 0 0 6.5rem;
	font-weight: 300;
}

.margin-div {
	background-color: #fff;
	height: 2.4rem;
	position: absolute;
	z-index: 0;
	width: 100%;
	bottom: 0;
}

.products-section {
	padding-bottom: 7rem;
}

.product-categories {
	display: block;
	margin: 0 0 6.5rem;
	padding: 0;
	text-align: center;
}

.products-subtitle {
	margin-bottom: 2rem;
}

.product-categories li {
	font-size: 1.3rem;
	font-weight: 300;
	background-color: #fff;
	color: #8ba7b2;
	display: inline-block;
	border: 1px solid #e5e5e5;
	border-radius: 0.5rem;
	padding: 1.2rem 1.1rem;
	text-transform: uppercase;
	margin: 1.3rem 1.3rem 0 0;
	cursor: pointer;
	transition: all .4s linear;
}

.product-categories li:hover,
.product-categories li:focus,
.product-categories li.active {
	border: 1px solid #8ba7b2;
	background-color: #8ba7b2;
	color: #fff;
}

.product-img {
	position: relative;
	height: 30rem;
	margin-bottom: 3.3rem;
}

.product-img > img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}

h4 {
	color: #4395d2;
	font-size: 2rem;
	margin: 0 0 1.8rem;
	font-weight: 300;
}

.product-item p {
	color: #8ba7b2;
	font-size: 1.5rem;
	margin: 0 0 1.5rem;
	font-weight: 300;
}

.btn-white {
	display: inline-block;
	position: relative;
	font-size: 1.4rem;
	color: #708c96;
	font-weight: 300;
	border: 1px solid #e5e5e5;
	border-radius: 0.5rem;
	padding: 1.1rem 2.8rem;
	overflow: hidden;
	transition: all .4s ease;
}

.btn-white:hover,
.btn-white:focus {
	text-decoration: none;
	color: #fff;
	border: 1px solid #708c96;
}

.btn-white > span {
	position: relative;
	z-index: 1;
}

.btn-white:before {
	content: '';
	z-index: 0;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	display: block;
	background-color: #708c96;
	width: 0;
	padding-bottom: 0;
	border-radius: 50%;
	transition: all .4s ease;
}

.btn-white:hover:before,
.btn-white:focus:before {
	width: 110%;
	padding-bottom: 100%;
}

.owl-carousel .owl-nav {
	display: block !important;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
	display: block;
	width: 3.3rem;
	height: 5.7rem;
	position: absolute;
	top: calc(50% - 2.85rem);
}

.owl-carousel .owl-nav .owl-prev {
	left: -7rem;
}

.owl-carousel .owl-nav .owl-next {
	right: -7rem;
}

.owl-carousel .owl-nav .owl-prev > span,
.owl-carousel .owl-nav .owl-next > span {
	display: block;
	width: 4.2rem;
	height: 0.8rem;
	border-radius: 0.4rem;
	background-color: #e8e8e8;
	position: absolute;
	overflow: hidden;
}

.owl-carousel .owl-nav .owl-prev > span:first-child {
	-ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 1.2rem;
    left: -0.4rem;
}

.owl-carousel .owl-nav .owl-prev > span:last-child {
	-ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    bottom: 1.2rem;
    left: -0.4rem;
}

.owl-carousel .owl-nav .owl-prev > span:first-child:before {
	content: '';
	display: block;
	background-color: #4395d2;
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	transition: all .4s ease;
}

.owl-carousel .owl-nav .owl-prev:hover > span:first-child:before,
.owl-carousel .owl-nav .owl-prev:focus > span:first-child:before {
	width: 100%;
}

.owl-carousel .owl-nav .owl-prev > span:last-child:before {
	content: '';
	display: block;
	background-color: #4395d2;
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	transition: all .4s ease;
}

.owl-carousel .owl-nav .owl-prev:hover > span:last-child:before,
.owl-carousel .owl-nav .owl-prev:focus > span:last-child:before {
	width: 100%;
}

.owl-carousel .owl-nav .owl-next > span:first-child {
	-ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 1.2rem;
    left: -0.4rem;
}

.owl-carousel .owl-nav .owl-next > span:last-child {
	-ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: 1.2rem;
    left: -0.4rem;
}

.owl-carousel .owl-nav .owl-next > span:first-child:before {
	content: '';
	display: block;
	background-color: #4395d2;
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 100%;
	transition: all .4s ease;
}

.owl-carousel .owl-nav .owl-next:hover > span:first-child:before,
.owl-carousel .owl-nav .owl-next:focus > span:first-child:before {
	width: 100%;
}

.owl-carousel .owl-nav .owl-next > span:last-child:before {
	content: '';
	display: block;
	background-color: #4395d2;
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 100%;
	transition: all .4s ease;
}

.owl-carousel .owl-nav .owl-next:hover > span:last-child:before,
.owl-carousel .owl-nav .owl-next:focus > span:last-child:before {
	width: 100%;
}

.owl-carousel.product-gallery .owl-nav .owl-prev,
.owl-carousel.product-gallery .owl-nav .owl-next {
    display: block;
    width: 3.3rem;
    height: 5.7rem;
    position: absolute;
    top: 50%;
    transform: scale(0.5);
}

.owl-carousel.product-gallery .owl-nav .owl-next {
    right: -2rem;
}

.owl-carousel.product-gallery .owl-nav .owl-prev {
    left: -2rem;
}

footer {
	position: relative;
	padding: 10rem 0 0;
	background-image: url(../img/clouds.png);
	background-position: center bottom;
	background-repeat: repeat-x;
	background-color: #8ba7b1;
	overflow: hidden;
}

footer:before {
	content: '';
    width: 0;
    height: 0;
    border-top: 10rem solid #fff;
    border-left: 100vw solid transparent;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

footer h4 {
	color: #fff;
	font-size: 2.1rem;
	font-weight: 300;
	margin: 0 0 2rem;
}

footer p {
	color: #fff;
	font-size: 1.6rem;
	font-weight: 300;
	margin-bottom: 1.5rem;
}

.mail-link {
	color: #fff;
	font-size: 2rem;
	background-image: url(../img/mail.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 2.5rem 1.9rem;
	display: inline-block;
	position: relative;
	padding: 0.2rem 0 0.2rem 3.5rem;
	margin-bottom: 1.5rem;
}

.mail-link:hover,
.mail-link:focus {
	text-decoration: none;
	color: #fff;
}

.mail-link:before {
	content: '';
	background-color: #fff;
	display: block;
	width: 0;
	height: 0.2rem;
	position: absolute;
	left: 3.5rem;
	bottom: 0;
	transition: all .4s ease;
}

.mail-link:hover:before,
.mail-link:focus:before {
	width: calc(100% - 3.5rem);
}

.tel-link {
	color: #fff;
	font-size: 2rem;
	background-image: url(../img/phone.png);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 2.5rem 2.5rem;
	display: inline-block;
	position: relative;
	padding: 0.2rem 0 0.2rem 3.5rem;
}

.tel-link:hover,
.tel-link:focus {
	text-decoration: none;
	color: #fff;
}

.tel-link:before {
	content: '';
	background-color: #fff;
	display: block;
	width: 0;
	height: 0.2rem;
	position: absolute;
	left: 3.5rem;
	bottom: 0;
	transition: all .4s ease;
}

.tel-link:hover:before,
.tel-link:focus:before {
	width: calc(100% - 3.5rem);
}

.tel-link + p {
	font-size: 1.3rem;
	padding-left: 3.5rem;
	margin-bottom: 2.5rem;
}

#footer-form input {
	display: block;
	width: 100%;
	border-radius: 50%;
	border: 1px solid #fff;
	border-radius: 0.9rem;
	padding: 0.8rem 1rem;
	background-color: transparent;
	color: #fff;
	font-size: 1.3rem;
	line-height: 1.3rem;
	margin-bottom: 1.3rem;
	outline: 0 !important;
}

#footer-form textarea {
	display: block;
	width: 100%;
	border-radius: 50%;
	border: 1px solid #fff;
	border-radius: 0.9rem;
	padding: 0.8rem 1rem;
	background-color: transparent;
	color: #fff;
	font-size: 1.3rem;
	line-height: 1.3rem;
	margin-bottom: 1.3rem;
	resize: none;
	outline: 0 !important;
}

#footer-form ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: rgba(255, 255, 255, 0.7);
}

#footer-form ::-moz-placeholder { /* Firefox 19+ */
  color: rgba(255, 255, 255, 0.7);
}

#footer-form :-ms-input-placeholder { /* IE 10+ */
  color: rgba(255, 255, 255, 0.7);
}

#footer-form :-moz-placeholder { /* Firefox 18- */
  color: rgba(255, 255, 255, 0.7);
}

#footer-form button {
	display: inline-block;
	outline: 0 !important;
	background-color: #fff;
	color: #8ba7b1;
	font-size: 1.3rem;
	padding: 0.8rem 3rem;
	border-radius: 0.4rem;
	border: none;
	position: relative;
	overflow: hidden;
	border: 0.2rem solid #fff;
}

#footer-form button:before {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	width: 0;
	padding-bottom: 0;
	z-index: 0;
	border-radius: 50%;
	background-color: #8ba7b1;
	transition: all .4s ease;
}

#footer-form button:hover:before,
#footer-form button:focus:before {
	width: 110%;
	padding-bottom: 100%;
	border-radius: 0.5rem;
}

#footer-form button > span {
	position: relative;
	z-index: 1;
	transition: all .3s ease;
}

#footer-form button:hover > span,
#footer-form button:focus > span {
	color: #fff;
}

footer hr {
	border: none;
	display: block;
	width: 100%;
	height: 1px;
	background-color: #a2b9c1;
	margin: 0.5rem 0 0;
}

footer p.stronger {
	font-weight: 400;
	font-size: 1.4rem;
	margin-top: 2rem;
}

.logo-white {
	width: 12rem;
	height: 5.7rem;
	display: inline-block;
	max-width: 100%;
	margin-top: 3rem;
}

footer .social {
	line-height: 4rem;
	margin-top: 3.5rem;
}

footer .social a {
	display: inline-block;
	margin: 0 0.9rem;
}

footer .social a:first-child {
	margin-left: 1.6rem;
}

footer .social a > img {
	width: 4rem;
	height: 4rem;
	transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	transition: all .3s ease-in-out;
}

footer .social a:hover > img,
footer .social a:focus > img {
	transform: rotate(30deg);
	-ms-transform: rotate(30deg);
	-webkit-transform: rotate(30deg);
}

.grey-header {
	background-color: #f3f6f7;
	color: #708c96;
	padding: 1.5rem 0;
}

.grey-header h1 {
	font-size: 3rem;
	line-height: 3.4rem;
	font-weight: 300;
	margin: 0;
}

.back-link {
	cursor: pointer;
	color: #708c96;
	font-size: 1.4rem;
	line-height: 3.4rem;
	padding-right: 1.5rem;
	display: inline-block;
	position: relative;
	transition: all .4s ease;
}

.back-link:after {
	content: '';
	display: block;
	font-size: 1.4rem;
	width: 1.5rem;
	height: 3.4rem;
	position: absolute;
	top: 0;
	right: 0;
	background-image: url(../img/back-arrow.png);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: 0.5rem 1rem;
}

.back-link:hover,
.back-link:focus {
	text-decoration: none;
}

.article-image {
	height: 20rem;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.article-row {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.article-row:first-child {
	padding-top: 5rem;
}

.article-row:not(:last-child) {
	border-bottom: 1px solid #e5e5e5;
}

.article-row h2 {
	font-size: 2.6rem;
	color: #4395d2;
	font-weight: 400;
	margin: 1.2rem 0 1.7rem;
}

.article-row p {
	color: #708c96;
	font-size: 1.8rem;
	line-height: 2.2rem;
	font-weight: 300;
	margin: 0 0 1.7rem;
}

.articles-list {
	background-image: url(../img/articles-bg.jpg);
	background-repeat: repeat-x;
	background-position: center bottom -7rem;
	padding-bottom: 3rem;
}

.post-photo {
	height: 39.7rem;
	background-size: cover;
	margin: 4.2rem 0;
}

.article-container {
	background-image: url(../img/articles-bg.jpg);
	background-repeat: repeat-x;
	background-position: center bottom -7rem;
	padding-bottom: 7rem;
}

.article-container p,
.article-container ul {
	color: #708c96;
	font-size: 1.8rem;
	line-height: 2.4rem;
	font-weight: 300;
	margin: 0 0 2.2rem;
	text-align: justify;
}

.article-container p.lead {
	font-size: 2rem;
	font-weight: 400;
}

.product-category-image {
	height: 30.4rem;
	background-size: contain;
	background-position: center bottom;
	background-repeat: no-repeat;
	margin-top: 10rem;
}

.product-category-title {
	font-size: 3rem;
	font-weight: 300;
	color: #708c96;
	margin: 2rem 0;
}

.product-title {
	font-size: 2.8rem;
	font-weight: 300;
	color: #708c96;
	margin: 5rem 0 3rem;
}

.products-container {
	padding-bottom: 46rem;
	background-image: url(../img/articles-bg.jpg);
	background-repeat: repeat-x;
	background-position: center bottom;
}

.products-container p {
	font-size: 1.6rem;
	font-weight: 300;
	color: #708c96;
	margin: 0 0 1.8rem;
}

.products-container p:last-child {
	margin-bottom: 3.5rem;
}

.no-right-padding {
	padding-right: 0 !important;
}

.click-link {
	cursor: pointer;
}

.no-products {
	font-size: 1.8rem !important;
	margin: 3rem 0 0 !important;
}

.product-image {
	height: 30rem;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	margin-top: 8rem;
}

.product-image.photo-360 {
	position: relative;
	cursor: pointer;
}

.product-image.photo-360 > .show-photo {
	text-align: center;
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}

.product-image.photo-360 > .show-photo > p {
	font-size: 2.1rem;
	color: #8ba7b1;
	font-weight: 400;
}

.product-image.photo-360 > .show-photo > img {
	width: 12.6rem;
	height: 6.8rem;
}

.product-container {
	padding-bottom: 7rem;
	background-image: url(../img/articles-bg.jpg);
	background-repeat: repeat-x;
	background-position: center bottom -7rem;
}

.product-container p {
	color: #708c96;
	font-size: 1.8rem;
	font-weight: 300;
}

.product-container .inline {
	margin: 7rem 0 6.5rem;
}

.product-container .inline p {
	display: inline;
	margin: 0;
}

.product-container .product-parameters {
	margin-top: 3rem;
	border: 1px solid #e7f0f6;
	padding: 1.5rem;
}

.product-container .product-parameters p {
	font-size: 1.7rem;
}

.product-container .product-parameters p > strong {
	font-weight: 400;
}

.product-functions {
	border: 1px solid #e7f0f6;
	color: #708c96;
	font-size: 1.7rem;
	font-weight: 300;
}

.product-functions ul {
	display: block;
	list-style: none;
	padding: 0;
	margin: 0;
}

.product-functions ul > li,
.product-functions p {
	padding: 1.2rem;
	margin: 0;
	display: block;
}

.product-functions ul > li > strong,
.product-functions p > strong {
	font-weight: 400;
}

.product-functions ul > li:nth-child(odd),
.product-functions p:nth-child(odd) {
	background-color: #e7f0f6;
}

.popup-layer {
	position: fixed;
	z-index: 997;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	display: none;
}

.popup-360 {
	position: fixed;
	z-index: 998;
	width: 60rem;
	height: 60rem;
	max-width: 100%;
	max-height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}

.popup-360 > span {
	content: '';
	display: block;
	width: 5rem;
	height: 5rem;
	background-image: url(../img/x.png);
	background-size: 3rem 3rem;
	background-position: 1rem 1rem;
	background-color: rgba(255, 255, 255, 0.5);
	background-repeat: no-repeat;
	position: absolute;
	z-index: 999;
	top: 0;
	right: 0;
	cursor: pointer;
	transition: all .1s linear;
}

.popup-360 > span:hover {
	background-size: 2.6rem 2.6rem;
	background-position: 1.2rem 1.2rem;
}

.view-360 {
	width: 60rem;
	height: 60rem;
	max-width: 100%;
	max-height: 100%;
}

.zindexer.ovviosfullscreen {
	display: none !important;
}

h2.product-description {
	font-size: 2rem;
	color: #708c96;
	margin: 5.5rem 0 3.5rem;
	text-align: center;
}

.function-icon {
	display: inline-block;
	min-width: 10rem;
	vertical-align: top;
	margin: 1rem 0;
    max-width: 100%;
    overflow: hidden;
}

.function-icon > img {
	display: block;
	margin: 0 auto 0.5rem;
}

.function-icon > p {
	font-size: 1.1rem;
	line-height: 1.3rem;
	font-weight: 600;
	text-align: center;
	color: #8ba7b1;
	margin: 0;
	max-width: 10rem;
	text-transform: uppercase;
}

.function-icon > p > span {
	text-transform: none;
}

.products-carousel {
	display: none;
}

.main-nav nav > span {
	display: none;
}

.mobile-button {
	display: none;
	position: absolute;
	right: 2rem;
	top: 50%;
	transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	height: 2.5rem;
	width: 3.5rem;
}

.mobile-button:before {
	content: '';
	background-color: #708c96;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0.5rem;
	display: block;
	transition: all .3s ease;
}

.mobile-button.active:before {
	width: 1.9rem;
	left: 0.8rem;
}

.mobile-button:after {
	content: '';
	background-color: #708c96;
	position: absolute;
	top: 2rem;
	left: 0;
	width: 100%;
	height: 0.5rem;
	display: block;
	transition: all .3s ease;
}

.mobile-button.active:after {
	width: 1.9rem;
	left: 0.8rem;
}

.mobile-button > span {
	background-color: #708c96;
	position: absolute;
	top: 1rem;
	left: 0;
	width: 100%;
	height: 0.5rem;
	display: block;
	transition: all .3s ease;
}

.mobile-button.active > span {
	background-color: #4395d2;
}

.product-packshot {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	height: 30rem;
	margin-bottom: 3rem;
}

.related h2 {
	color: #708c96;
	font-weight: 400;
	font-size: 2.6rem;
	padding: 2.5rem 0;
	border-top: 1px solid #e5e5e5;
	margin: 5rem 0 0;
}

.related-box .thumb {
	height: 30.8rem;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #e5e5e5;
}

.related-box h3 {
	font-size: 2.2rem;
	font-weight: 400;
	color: #4395d2;
	margin: 2rem 0;
}

.related-box p {
	font-size: 1.7rem;
	font-weight: 300;
	color: #708c96;
	margin: 0 0 1.5rem;
}

.product-gallery.owl-loaded {
    display: block;
}

.product-gallery {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1;
}

.product-files {
	padding: 3rem 0 1rem;
}

.product-file {
	display: inline-block;
	border-radius: 0.5rem;
	border: 0.2rem solid #8ba7b1;
	background-color: #8ba7b1;
	color: #fff;
	margin: 0 0.5rem;
	padding: 1.2rem 6.3rem 1.2rem 3.8rem;
	position: relative;
	overflow: hidden;
	font-size: 1.56rem;
	text-transform: uppercase;
	transition: all .3s ease;
}

.product-file:hover,
.product-file:focus {
	text-decoration: none;
	color: #8ba7b1;
}

.product-file:before {
    content: '';
    display: block;
    width: 110%;
    padding-bottom: 100%;
    width: 0;
    padding-bottom: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: #fff;
    border-radius: 50%;
    z-index: 0;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transition: 0.4s ease;
}

.product-file:hover:before,
.product-file:focus:before {
    width: 110%;
    padding-bottom: 100%;
}

.product-file > span {
    position: relative;
    z-index: 1;
}

.product-file > span:before {
	content: '';
	display: block;
	width: 1.5rem;
	height: 2.1rem;
	background-image: url(../img/strzalka.svg);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	top: -0.1rem;
	right: -4.5rem;
	opacity: 1;
	transition: all .3s ease;
}

.product-file:hover > span:before,
.product-file:focus > span:before {
	opacity: 0;
}

.product-file > span:after {
	content: '';
	display: block;
	width: 1.5rem;
	height: 2.1rem;
	background-image: url(../img/strzalka2.svg);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	top: -0.1rem;
	right: -4.5rem;
	opacity: 0;
	transition: all .3s ease;
}

.product-file:hover > span:after,
.product-file:focus > span:after {
	opacity: 1;
}

.made-by{ padding-top: 5.67rem; }
.made-by a{ color: #FFF; display: inline-block; position: relative; }
.made-by a:hover,
.made-by a:focus {
	text-decoration: none;
	color: #fff;
}

.made-by a:before {
	content: '';
	background-color: #fff;
	display: block;
	width: 0;
	height: 0.1rem;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: all .4s ease;
}

.made-by a:hover:before,
.made-by a:focus:before {
	width: 100%;
}

.bb-widget {
	cursor:pointer;
}

.btn-bestbuy > span:before {
	background-image: url(../img/shop.svg);
	width: 1.9rem;
}

.btn-bestbuy > span:after {
	background-image: url(../img/shop2.svg);
	width: 1.9rem;
}
/*
.a4b-buybox-standard {
    max-width: 100% !important;
    border: 1px solid #e7f0f6 !important;
    padding: 1.2rem !important;
    margin: 3rem auto 1rem !important;
    font-size: 1.4rem !important;
    font-family: 'Lato', sans-serif !important;
    font-weight: 400 !important;
    line-height: 100% !important;
}

.a4b-buybox-standard .a4b-box-head {
    margin: 0 !important;
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    color: #708c96 !important;
    padding: 0.6rem 0 1.5rem !important;
}

.a4b-buybox-standard .a4b-box-row-head {
    border-bottom: 1px solid #e7f0f6 !important;
    padding: 0.3rem 1.8rem 0.6rem !important;
    color: #708c96 !important;
    margin: 0 -1.2rem;
}

.a4b-buybox-standard .a4b-box-th1,
.a4b-buybox-standard .a4b-box-th3 {
    font-size: 1.4rem !important;
}

.a4b-buybox-standard .a4b-box-row {
    border-bottom: 1px solid #e7f0f6 !important;
    padding: 1rem 1.8rem !important;
    margin: 0 -1.2rem;
    transition: all .4s ease;
}

.a4b-buybox-standard .a4b-box-row:hover {
    background: #e7f0f6 !important;
}

.a4b-buybox-standard .a4b-box-td1 img {
	width: 1.6rem !important;
	height: 1.6rem !important;
}

.a4b-buybox-standard .a4b-box-td1 img,
.a4b-buybox-standard .a4b-box-td1 span {
	vertical-align: middle;
}

.a4b-buybox-standard .a4b-box-td1 span {
	display: inline-block;
	color: #708c96;
}

.a4b-buybox-standard .a4b-box-td3,
.a4b-buybox-standard .a4b-box-td3 span {
    color: #708c96 !important;
}

.a4b-buybox-standard .a4b-box-td3 span {
    font-weight: 600 !important;
}

.a4b-buybox-standard .a4b-box-td4 {
	color: #4395d2 !important;
}

.a4b-buybox-standard .a4b-box-footer {
    padding: 0.3rem 1rem !important;
    font-size: 0.8rem !important;
    margin-top: 0.8rem;
    color: #708c96 !important;
}

.a4b-buybox-standard .a4b-box-footer a {
	transition: all .4s ease;
}

.a4b-buybox-standard .a4b-box-footer a:hover,
.a4b-buybox-standard .a4b-box-footer a:focus {
    text-decoration: none !important;
    color: #4395d2;
}*/

@media(max-width: 1279px) {
	html {
		font-size: 9px;
	}
}

@media(max-width: 1200px) {
	html {
		font-size: 8px;
	}

	.bg-anim h1 {
		font-size: 4rem;
	}
}

@media(max-width: 991px) {
	html {
		font-size: 10px;
	}

	.bg-anim p {
		padding: 0.7rem 1rem;
		background-color: rgba(255, 255, 255, 0.75);
		border-radius: 1rem;
	}

	#footer-form {
		margin-bottom: 1.5rem;
	}

	.mobile-button {
		display: block;
	}

	.main-nav nav {
		position: fixed;
		z-index: 1000;
		background-color: rgba(255, 255, 255, 0.9);
		width: 100%;
		height: 100%;
		top: 0;
		left: 100%;
		text-align: center;
		opacity: 0;
		transition: all .4s ease;
	}

	.main-nav nav.active {
		left: 0;
		opacity: 1;
	}

	.main-nav nav > ul {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		padding: 1.5rem;
		min-width: 52%;
	}

	.main-nav nav > ul > li {
		display: block;
		font-size: 3.6rem;
		line-height: 4rem;
		font-weight: 400;
	}

	.main-nav nav > ul > li:not(:first-child) {
		padding-left: 0;
		margin-top: 3rem;
	}

	.main-nav nav > ul > li:not(:first-child):before {
		display: none;
	}

	.main-nav nav > ul > li.has-submenu {
		padding-bottom: 0rem;
	}

	.main-nav nav > span {
		display: block;
		position: absolute;
		right: 1.5rem;
		top: 10.7rem;
		width: 4rem;
		height: 4rem;
		transition: all .4s ease;
	}

	.scrolled .main-nav nav > span {
		top: 3.8rem;
	}

	.main-nav nav > span:before {
		content: '';
		display: block;
		width: 3rem;
		height: 0.6rem;
		border-radius: 0.3rem;
		background-color: #6f6f6f;
		position: absolute;
		left: 0.5rem;
		top: 1.5rem;
		transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
	}

	.main-nav nav > span:after {
		content: '';
		display: block;
		width: 3rem;
		height: 0.6rem;
		border-radius: 0.3rem;
		background-color: #6f6f6f;
		position: absolute;
		left: 0.5rem;
		top: 1.5rem;
		transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
	}

	.main-nav nav > ul > li.has-submenu {
	    padding-right: 0;
	}

	.main-nav nav > ul > li.has-submenu:after {
		background-image: url(../img/arrow-down.svg);
		background-size: 5rem 5rem;
		width: 5rem;
		height: 5rem;
		top: -0.3rem;
		right: -2.5rem;
	}

	.main-nav nav > ul > li > ul {
		position: static;
		font-size: 2.4rem;
		line-height: 2.8rem;
		background: none;
		text-align: center;
		width: auto;
		max-height: none;
		margin-top: 1.5rem;
	}

	.scrolled .main-nav nav > ul > li > ul {
		-webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	    -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}

	.main-nav nav > ul > li:hover > ul {
	    padding: 0 1rem;
	}

	.main-nav nav > ul > li > ul > li:not(:first-child) {
		margin-top: 0.5rem;
	}

	.bg-anim {
	    min-height: 54rem;
	}

	.scroller {
		bottom: 2rem;
	}

	.owl-carousel .owl-nav .owl-prev {
	    left: -5.5rem;
	}

	.owl-carousel .owl-nav .owl-next {
	    right: -8rem;
	}

	.logo-white {
		margin-bottom: 1.5rem;
	}

	.back-link {
		line-height: 1.8rem;
	}

	.back-link:after {
		height: 2rem;
	}

	.products-container {
		padding-bottom: 10rem;
		background-position: center bottom -6rem;
	}

	.made-by{ text-align: center; padding-top: 0; }
}

@media(max-width: 767px) {
	body {
		padding: 14.9rem 0 0;
	}

	.main-nav {
		height: 11.2rem;
		padding: 1rem 0 1rem;
	}

	.scrolled .main-nav {
		padding: 1rem 0 1rem;
	}

	.lang-nav ul {
		text-align: center;
	}

	.bg-anim h1 {
	    margin: 1rem 0;
	}

	.main-nav nav > span {
		top: 7.7rem;
	}

	.main-nav nav > ul {
		width: calc(100% - 3rem);
	}

	.main-nav nav > ul > li {
		font-size: 2.2rem;
		line-height: 3rem;
	}

	.main-nav nav > ul > li:not(:first-child) {
	    margin-top: 1.5rem;
	}

	.main-nav nav > ul > li.has-submenu:after {
	    background-image: url(../img/arrow-down.svg);
	    background-size: 3rem 3rem;
	    width: 3rem;
	    height: 3rem;
	    top: 0.2rem;
	    right: 2rem;
	}

	.main-nav nav > ul > li > ul {
		font-size: 1.8rem;
		line-height: 2.4rem;
	}

	.owl-carousel .owl-nav .owl-prev {
		transform: scale(0.5);
		left: -3.5rem;
	}

	.owl-carousel .owl-nav .owl-next {
		transform: scale(0.5);
		right: -6.5rem;
	}

	.bg-anim {
	    min-height: 0;
	    padding-bottom: 7rem;
	}

	.bg-anim p {
		font-size: 1.7rem;
	}

	.lady-img {
	    margin: 3rem auto 1.5rem;
	    max-height: 35rem;
	}

	div:not(:first-child) > .post-image {
		margin-top: 3rem;
	}

	.back-link {
		margin-top: 1.5rem;
	}

	.product-image {
		height: 15rem;
	}

	.related-box {
		margin-bottom: 3rem;
	}

	.post-photo,
	.related-box .thumb {
		height: 20rem;
	}
}

@media(max-width: 719px) {
	.a4b-buybox-standard.a4b-buybox-noformat .a4b-box-td1,
	.a4b-buybox-standard.a4b-buybox-noformat .a4b-box-th1 {
	    width: 70% !important;
	}
}

@media(max-width: 600px) {
	.popup-360 > span {
		right: 10px;
	}

	.popup-360 {
		height: auto;
	}

	.product-category-image {
		height: 25rem;
	}

	.product-image {
	    margin-top: 3rem;
	}

	.product-image:not(.photo-360) {
	    height: 28rem;
	}
}