/* base css */

html {
	box-sizing: border-box;
}

html, body {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	position: relative;
 }
  
*, *::after, *::before {
	box-sizing: inherit;
}

body {
	font-family: 'Montserrat', sans-serif;
	color: black;
	font-size: 14px;
	line-height: 1.5;
	font-weight: 400;
	text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased !important;
	overflow-x: hidden;
}

body.menu-is-active {
	position: fixed;
}

@media screen and (min-width: 768px) {
	body {
		font-size: 16px;
	}
}

.visually-hidden {
	margin: 0;
}

.block-pagetitle {
	position: absolute !important;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px;
	height: 1px;
	word-wrap: normal;
}

/* links */

a {
	text-decoration: none;
	color: black;
  }

a:hover {
	outline: none;
	text-decoration: underline;
}

a:focus,
a:active {
	outline: none;
	text-decoration: none;
}

/* headings */

h1,
.h1,
.title {
	font-size: 10vw;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.2;
	margin-bottom: 20px;
	color: #023f87;
}

h2,
.h2,
h2 a,
.pretitle {
	font-size: 24px;
	color: #db1c24;
	margin-top: 0;
	font-weight: 400;
}

.subtitle {
	font-size: 18px;
}

h3 {
	font-size: 28px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.2;
	margin-bottom: 20px;
	color: #023f87;	
	margin-top: 0;
}
.center h1 {
	margin-top: 0;
}
.center h2 {
	margin-bottom: 0;
}

@media screen and (min-width: 360px) {
	h1,
	.h1,
	.title {
		font-size: 38px;
	}
}

@media screen and (min-width: 768px) {
	h1,
	.h1,
	.title {
		font-size: 48px;
	}
	h3 {
		font-size: 38px;
	}
	.center {
		text-align: center;
	}

	.subtitle {
		font-size: 24px;
	}

}

@media screen and (min-width: 1024px) {
	h1,
	.h1,
	.title {
		font-size: 38px;
	}
	h3 {
		font-size: 28px;
	}
}

@media screen and (min-width: 1280px) {
	h1,
	.h1,
	.title {
		font-size: 48px;
	}
	h3 {
		font-size: 30px;
	}
}


/* button */

.btn a,
.button {
	background: #db1c24;
	color: white;
	line-height: 14px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 17px;
	min-width: 190px;
	-webkit-transition: all 250ms ease;
	-moz-transition: all 250ms ease;
	-o-transition: all 250ms ease;
	transition: all 250ms ease;
	text-align: center;
	display: inline-block;
	outline: none;
	border: none;
	border-radius: 3px;
	margin: 0;
	cursor: pointer;
	width: 100%;
}

.btn a:hover,
.button:hover {
	text-decoration: none;
	background: #c7151e;
}

.button:disabled,
.button:disabled:hover {
	background: #bbbdbf;
	cursor: not-allowed;
}

@media screen and (min-width: 768px) {
	.btn a,
	.button {
		width: auto;
		padding: 17px 24px;
	}
}

/* img */

img {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}

picture {
	display: flex;
	width: 100%;
	height: 100%;
}

/* header */

.header {
	width: 100%;
	padding: 20px;
	display: flex;
	background-color: white;
	-webkit-box-shadow: 0px -17px 15px 4px rgba(0,0,0,0.7); 
	box-shadow: 0px -17px 15px 4px rgba(0,0,0,0.7);
}

.header > div:nth-of-type(1),
.header .block-logo,
.header .site-logo,
.header .site-logo a {
	float: left;
	width: 140px;
}

.header > div:nth-of-type(2) {
	display: flex;
	position: fixed;
	width: 100%;
	height: 100%;
	background: #f1f2f5;
	top: 0;
	right: -100%;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	padding: 30% 0;
	overflow-y: scroll;
	-webkit-transition: all 250ms ease;
	-moz-transition: all 250ms ease;
	-o-transition: all 250ms ease;
	transition: all 250ms ease;
	z-index: 1;
}

.header > div:nth-of-type(2).menu-is-active {
	right: 0;	
}

.header .link {
	width: auto;
	height: 24px;
	display: flex;
	margin: 0;
	padding: 30px;
	justify-content: center;
}

.header .link a {
	display: flex;
	width: auto;
	height: 24px;
	background: url(../../images/assets/instagram.svg) no-repeat left center;
	padding-left: 30px;
	color: #023f87;
	font-size: 18px;
	line-height: 24px;
}

.header .link a:hover {
	text-decoration: none;
}
.header .navigation {
	width: 100%;
}

.header .menu {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.header .menu .menu-item,
.language li {
	padding: 0 12px;
	display: flex;
}

.header .menu a,
.language li a {
	color: #023f87;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 24px;
	padding: 30px;
	width: 100%;
}

.header .menu a:hover,
.language li a:hover {
	text-decoration: none;
}
.header .site-logo {
	height: 40px;
	position: relative;
	z-index: 2;
}
.header .site-logo a {
	height: 40px;
}
.header .site-logo img {
	height: 100%;
}
@media screen and (min-width: 768px) {
	.header {
		padding: 36px;
	}
	.header .site-logo,
	.header .site-logo a,
	.header .site-logo img {
		height: 48px;
	}

	.header > div:nth-of-type(1),
	.header .block-logo,
	.header .site-logo,
	.header .site-logo a {
		float: left;
		width: 200px;
	}
}
@media screen and (min-width: 1024px) {
	.header {
		float: none;
		display: flex;
		justify-content: space-between;
	}
	
	.header .menu {
		margin: 12px 0px;
		padding: 0px;
	}
	.header .menu .menu-item,
.language li	{
		display: inline;
		padding: 0 12px;
	}
	
	.header .menu a,
.language li a	{
		font-size: 14px;
		padding: 5px;
		width: auto;
	}
	
	.header .menu a:hover,
.language li a:hover	{
		border-bottom: 4px solid #db1c24;
	}

	.header > div:nth-of-type(2) {
		display: flex;
		justify-self: flex-end;
		position: relative;
		background: none;
		width: auto;
		height: auto;
		flex-direction: row;
		justify-content: flex-end;
		align-items: center;
		padding: 0;
		overflow-y: visible;
		right: 0;
	}

	.header .link {
		width: 24px;
		height: 24px;
		overflow: hidden;
		margin: 12px 10px 12px 20px;
		padding: 0;
	}
	.header .link a {
		width: 24px;
		padding-left: 24px;
	}
	.header > div:nth-of-type(1),
	.header .block-logo,
	.header .site-logo,
	.header .site-logo a {
		float: none;
		display: inline-block;
		height: 48px;
	}
}

/* hero */

.hero {
	position: relative;
	overflow: hidden;
	width: 100%;
	max-height: 720px;
	height: calc(100vh - 120px);
}

.hero > div,
.hero .block-content {
	height: 100%;
}

.hero .block-content {
	display: flex;
	align-items: flex-start;
}

.hero .img {
	position: absolute;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
}

.hero .img picture {
	width: 100%;
	height: 100%;
}

.hero .img img {
	object-fit: cover;
	height: 100%;
}

.hero .img::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background: -moz-linear-gradient(top,  rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.9) 40%, rgba(255,255,255,0) 65%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(top,  rgba(255,255,255,0.9) 0%,rgba(255,255,255,0.9) 40%,rgba(255,255,255,0) 65%,rgba(255,255,255,0) 100%);
	background: linear-gradient(to bottom,  rgba(255,255,255,0.9) 0%,rgba(255,255,255,0.9) 40%,rgba(255,255,255,0) 65%,rgba(255,255,255,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6ffffff', endColorstr='#00ffffff',GradientType=0 );
	}

.hero .desc {
	padding: 0 30px;
	margin-top: 60px;
}
@media screen and (min-width: 360px) {
	.hero .desc {
		margin-top: 60px;
	}
}
.hero .pretitle {
	color: #db1c24;
	font-size: 24px;
	line-height: 1.2;
}

.hero .title {
	font-weight: 700;
	text-transform: uppercase;
	font-size: 10vw;
	line-height: 1.1;
}

.hero .img.hor {
	display: none;
}

@media screen and (min-width: 380px) {
	.hero .title {
		font-size: 38px;
	}
}

.hero .features {
	margin-top: 20px;
}

.hero .features > div {
	background: url(../../images/assets/checked.svg) no-repeat left center;
	background-size: 24px 24px;
	padding: 5px 0 5px 34px;
}

@media screen and (min-width: 768px) {
	.hero {
		max-height: 900px;
	}
	.hero .pretitle {
		font-size: 50px;
	}
	.hero .title {
		font-size: 70px;
	}
	.hero .desc {
		margin: 90px 0 0 90px;
		width: 588px;
		padding: 0;
	}
	.hero .img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	.hero .features {
		margin-top: 40px;
	}
}


@media screen and (min-width: 1024px) {
	.hero {
		max-height: 1080px;
	}
	.hero .desc {
		margin: 100px 0 0 10%;
		width: 600px;
	}
	.hero .block-content {
		align-items: center;
	}
	.hero .img img {
		object-position: center;
	}
	.hero .img.hor {
		display: flex;
	}
	.hero .img.ver {
		display: none;
	}
	.hero .img::before {
		background: -moz-linear-gradient(-20deg,  rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.9) 20%, rgba(255,255,255,0.6) 40%, rgba(255,255,255,0) 60%, rgba(255,255,255,0) 100%);
		background: -webkit-linear-gradient(-20deg,  rgba(255,255,255,0.9) 0%,rgba(255,255,255,0.9) 20%,rgba(255,255,255,0.6) 40%,rgba(255,255,255,0) 60%,rgba(255,255,255,0) 100%);
		background: linear-gradient(110deg,  rgba(255,255,255,0.9) 0%,rgba(255,255,255,0.9) 20%,rgba(255,255,255,0.6) 40%,rgba(255,255,255,0) 60%,rgba(255,255,255,0) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6ffffff', endColorstr='#00ffffff',GradientType=1 );
			}
}

@media screen and (min-width: 1280px) {
	.hero .pretitle {
		font-size: 60px;
	}
	.hero .title {
		font-size: 80px;
	}
	.hero .desc {
		margin: 0 0 0 10%;
		width: 720px;
	}
}

@media screen and (min-width: 1440px) {
	.hero .pretitle {
		font-size: 70px;
	}
	.hero .title {
		font-size: 90px;
	}
	.hero .desc {
		margin: 0 0 0 11%;
	}
}

/* hamburger */

.hamburger {
	position: absolute;
	right: 20px;
	top: 20px;
	width: 40px;
	height: 40px;
	padding: 0;
	cursor: pointer;
	-webkit-transition: opacity 0.25s linear, filter 0.25s linear;
	-moz-transition: opacity 0.25s linear, filter 0.25s linear;
	-o-transition: opacity 0.25s linear, filter 0.25s linear;
	transition: opacity 0.25s linear, filter 0.25s linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
	outline: none;
	z-index: 99;
	}
	
	.hamburger.is-active {
		position: fixed;
		right: 20px;
		top: 20px;
	}
	
	.hamburger:hover,
	.hamburger:focus {
		background: none;
	}
	
	.hamburger-box {
		width: 40px;
		height: 40px;
		display: inline-block;
		position: relative;
		padding-left: 10px;
	}
	
	.hamburger-inner {
		display: block;
		top: 50%;
		margin-top: -2px;
	}
	
	.hamburger-inner,
	.hamburger-inner::before,
	.hamburger-inner::after {
		width: 18px;
		height: 2px;
		background-color: #023f87; /* change color */
		position: absolute;
		-webkit-transition: transform 0.25s ease;
		-moz-transition: transform 0.25s ease;
		-o-transition: transform 0.25s ease;
		transition: transform 0.25s ease;
	}
	
	.hamburger.is-active .hamburger-inner,
	.hamburger.is-active .hamburger-inner::before,
	.hamburger.is-active .hamburger-inner::after {
	  background-color: #023f87;
	}
	
	.hamburger-inner::before,
	.hamburger-inner::after {
		content: "";
		display: block;
	}
	
	.hamburger-inner::before {
		top: -6px;
	}
	
	.hamburger-inner::after {
		bottom: -6px;
	}
	
	.hamburger-inner {
	  -webkit-transition-duration: 0.1s;
	  -moz-transition-duration: 0.1s;
	  -o-transition-duration: 0.1s;
	  transition-duration: 0.1s;
	  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	  -moz-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	  -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	
	.hamburger-inner::before {
	  -webkit-transition: top 0.1s 0.2s ease, opacity 0.1s ease;
	  -moz-transition: top 0.1s 0.2s ease, opacity 0.1s ease;
	  -o-transition: top 0.1s 0.2s ease, opacity 0.1s ease;
	  transition: top 0.1s 0.2s ease, opacity 0.1s ease;
	}
	
	.hamburger-inner::after {
	  -webkit-transition: bottom 0.1s 0.2s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	  -moz-transition: bottom 0.1s 0.2s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	  -o-transition: bottom 0.1s 0.2s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	  transition: bottom 0.1s 0.2s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	
	.hamburger.is-active .hamburger-inner {
	  -webkit-transform: rotate(45deg);
	  -moz-transform: rotate(45deg);
	  -o-transform: rotate(45deg);
	  transform: rotate(45deg);
	  -webkit-transition-delay: 0.2s;
	  -moz-transition-delay: 0.2s;
	  -o-transition-delay: 0.2s;
	  transition-delay: 0.2s;
	  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	  -moz-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	  -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	
	.hamburger.is-active .hamburger-inner::before {
		top: 0;
		opacity: 0;
		-webkit-transition: top 0.1s ease, opacity 0.1s 0.2s ease;
		-moz-transition: top 0.1s ease, opacity 0.1s 0.2s ease;
		-o-transition: top 0.1s ease, opacity 0.1s 0.2s ease;
		transition: top 0.1s ease, opacity 0.1s 0.2s ease;
	}
	
	.hamburger.is-active .hamburger-inner::after {
		bottom: 0;
		-webkit-transform: rotate(-90deg);
		-moz-transform: rotate(-90deg);
		-o-transform: rotate(-90deg);
		transform: rotate(-90deg);
		-webkit-transition: bottom 0.1s ease, transform 0.1s 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
		-moz-transition: bottom 0.1s ease, transform 0.1s 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
		-o-transition: bottom 0.1s ease, transform 0.1s 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
		transition: bottom 0.1s ease, transform 0.1s 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	
@media screen and (min-width: 768px) {
	.hamburger,
	.hamburger.is-active {
		right: 40px;
		top: 40px;
	}
	.hamburger-inner::before {
	  top: -8px;
	}
	
	.hamburger-inner::after {
	  bottom: -8px;
	}
	
	.hamburger-inner,
	.hamburger-inner::before,
	.hamburger-inner::after {
	  width: 26px;
	  height: 3px;
	}
	
	.hamburger-box {
	  padding-left: 7px;
	}		
}
@media screen and (min-width: 1024px) {
	.hamburger {
		display: none;
	}
}

/* intro */

.intro .box {
	padding: 60px 0 0 0;
}

.intro .desc {
	font-size: 18px;
}

.intro .desc p:last-of-type {
	margin-bottom: 0;
}

.intro .btn {
	margin-top: 40px;
}

@media screen and (min-width: 768px) {
	.intro .box {
		padding: 15% 0 0 0;
		text-align: center;
	}
	.intro .desc {
		font-size: 24px;
	}
}
@media screen and (min-width: 1024px) {
	.intro .box {
		padding: 10% 50px 2% 50px;
	}
}
@media screen and (min-width: 1280px) {
	.intro .box {
		padding: 12% 0 2% 0;
	}
}
@media screen and (min-width: 1440px) {
	.intro .box {
		padding: 13% 0 0 0;
	}
}
/* feature */

.top .block-product-box {
	display: flex;
}

.top {
	padding: 60px 30px 0 30px;
}

.top .img {
	width: 100%;
	display: flex;
	flex-shrink: 0;
	padding: 0;
	justify-content: center;
	margin-top: 60px;
	margin-bottom: 60px;
}

.top .block-product-box .col:last-of-type .img {
	margin-bottom: 0;
}

.top .img > div,
.top .img a {
	display: flex;
}

.top .img img {
	align-self: center;
}

.top .box {
	padding: 60px 30px;
	background: #f1f2f5;
	position: relative;
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}

.top .box::before {
	content: '';
	display: flex;
	width: 50px;
	height: 50px;
	position: absolute;
	bottom: -25px;
	left: 50%;
	margin-left: -25px;
	background: #f1f2f5;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index: -1;
}

.top .box h3 {
	margin: 0;
	text-align: center;
}

.top .position {
	align-self: center;
}
.top .box > div {
	display: flex;
}
.top .btn {
	margin-top: 20px;
}

.top .desc {
	text-align: center;
}

@media screen and (min-width: 768px) {
	.top {
		padding: 12% 12% 0 12%;
	}
	.top .block-product-box .col {
		padding: 0;
	}

	.top .box {
		padding: 20%;
		min-height: 330px;
	}
	.top .img {
		margin: 15% 0;
	}
	.top .box::before {
		bottom: -25px;
	}
}
@media screen and (min-width: 1024px) {
	.top {
		padding: 6% 2% 0 2%;
	}
	.top .block-product-box .col {
		padding: 0 20px;
	}

	.top .box {
		padding: 16%;
		min-height: 280px;
	}
	.top .img {
		margin-top: 15%;
		margin-bottom: 0;
	}
	.top .box::before {
		bottom: -10px;
	}
}

@media screen and (min-width: 1280px) {
	.top {
		padding: 7% 3% 0 3%;
	}
	.top .block-product-box .col {
		padding: 0 20px;
	}

	.top .box {
		padding: 20%;
		min-height: 330px;
	}
	.top .img {
		margin-top: 18%;
	}
	.top .box::before {
		bottom: -25px;
	}
}

@media screen and (min-width: 1440px) {
	.top {
		padding: 8% 5% 0 5%;
	}
	.top .block-product-box .col {
		padding: 0 20px;
	}

	.top .box {
		padding: 16%;
		min-height: 340px;
	}
	.top .img {
		margin-top: 80px
	}
}


/* instruction */

.top.instruction .views-row:nth-of-type(1) .box,
.top.instruction .views-row:nth-of-type(3) .box {
	order: 1;
}

.top.instruction .views-row:nth-of-type(1) .img,
.top.instruction .views-row:nth-of-type(3) .img {
	order: 2;
}

.top.instruction .views-row:nth-of-type(2) .box,
.top.instruction .views-row:nth-of-type(4) .box {
	order: 1;
}

.top.instruction .views-row:nth-of-type(2) .img,
.top.instruction .views-row:nth-of-type(4) .img {
	order: 2;
}
.top.instruction {
	padding: 60px 30px;
}
.top.instruction .views-row {
	padding: 60px 0 0 0;
}

.top.instruction .views-row:nth-of-type(1) {
	padding: 0;
}

.top.instruction .views-row:nth-of-type(1),
.top.instruction .views-row:nth-of-type(3) {
	align-items: flex-start;
}

.top.instruction .img > div {
	width: 100%;
}

.top.instruction .img {
	padding: 0;
	flex-shrink: 0;
	width: 100%;
	display: flex;
	margin-top: 60px;
}

.top.instruction .img img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.top.instruction .box {
	flex-shrink: 0;
	width: 100%;
	padding: 60px 30px;
}

@media screen and (min-width: 768px) {
	.top.instruction {
		padding: 12%;
	}
	.top.instruction .box {
		padding: 15%;
	}
	.top.instruction .img {
		margin-top: 15%;
	}
	.top.instruction .views-row {
		padding: 15% 0 0 0;
	}
}

@media screen and (min-width: 1024px) {
	.top.instruction {
		padding: 9%;
	}
	.top.instruction .box {
		width: 45.3%;
		height: 520px;
		padding: 7%;
	}
	.top.instruction .img {
		padding: 0;
		width: 54.7%;
		display: flex;
		height: 520px;
		margin-top: 0;
	}
	.top.instruction .views-row {
		padding: 10% 0 0 0;
	}
	.top.instruction .views-row:nth-of-type(2),
	.top.instruction .views-row:nth-of-type(4) {
		align-items: flex-end;
		margin-top: 0;
	}

	.top.instruction .views-row:nth-of-type(1) .box::before,
	.top.instruction .views-row:nth-of-type(3) .box::before {
		left: auto;
		right: -25px;
	}
	.top.instruction .views-row:nth-of-type(2) .box::before,
	.top.instruction .views-row:nth-of-type(4) .box::before {
		left: -25px;
		right: auto;
	}
	.top.instruction .views-row:nth-of-type(1) .box,
	.top.instruction .views-row:nth-of-type(3) .box {
		order: 1;
		margin-right: 0;
		margin-left: 0;
	}

	.top.instruction .views-row:nth-of-type(1) .img,
	.top.instruction .views-row:nth-of-type(3) .img {
		order: 2;
		padding-left: 10%;
	}

	.top.instruction .views-row:nth-of-type(2) .box,
	.top.instruction .views-row:nth-of-type(4) .box {
		order: 2;
		margin-left: 0;
		margin-right: 0;
	}

	.top.instruction .views-row:nth-of-type(2) .img,
	.top.instruction .views-row:nth-of-type(4) .img {
		order: 1;
		padding-right: 10%;
	}
}
@media screen and (min-width: 1280px) {
	.top.instruction .views-row:nth-of-type(2),
	.top.instruction .views-row:nth-of-type(4) {
		margin-top: -14%;
	}

	.top.instruction .box {
		height: 600px;
		padding: 8%;
	}
	.top.instruction .img {
		height: 750px;
	}
}

@media screen and (min-width: 1440px) {
	.top.instruction .views-row:nth-of-type(2),
	.top.instruction .views-row:nth-of-type(4) {
		margin-top: -10%;
	}
}

/* highlight */

.highlight {
	display: flex;
	width: 100%;
	padding: 60px 30px;
	justify-content: center;
	}

@media screen and (min-width: 768px) {
	.highlight {
		padding: 12% 50px;
	}	
}

@media screen and (min-width: 1024px) {
	.highlight {
		padding: 10% 50px;
	}	
}

@media screen and (min-width: 1280px) {
	.highlight {
		padding: 9%;
	}	
}

@media screen and (min-width: 1440px) {
	.highlight {
		padding: 8%;
	}	
}

/* homepage contact */

.frontpage .main {
	padding: 60px 0;
	text-align: center;
}

.frontpage .contact {
	margin-top: 60px;
	text-align: left;
	padding: 0;
}

.form-item {
	margin-bottom: 40px;
}

.form-item input,
.form-item textarea {
	border: 2px solid #f1f2f5;
	border-radius: 3px;
	outline: none;
	background: #f1f2f5;
	padding: 10px;
	font-size: 16px;
	line-height: 24px;
	font-family: 'Montserrat', sans-serif;
	transition: all 250ms ease;
}

.form-actions input {
	font-family: 'Montserrat', sans-serif;
}

.form-item input:focus,
.form-item textarea:focus,
.form-item input:focus:hover,
.form-item textarea:focus:hover {
	border-color: #333333;
}

.form-item input:hover,
.form-item textarea:hover {
	border-color: #d7d7d7;
}

input:invalid,
input:invalid:hover,
textarea:invalid,
textarea:invalid:hover {
	outline: none;
	box-shadow: none;
}


input[type="email"]:invalid:focus,
input[type="email"]:invalid:focus:hover,
input[type="url"]:invalid:focus {
	background: #ffe6e6;
}

input[type="email"]:invalid:focus,
input[type="email"]:invalid:focus:hover {
	border-color: #db1c24;
}

label,
input,
textarea,
.form-actions {
	display: block;
	width: 100%;
}

label {
	font-weight: 700;
	margin-bottom: 6px;
}

.form-required::after {
	content: '*';
	margin-left: 4px;
}

.form-item-name,
.form-item-email {
	width: 100%;
}

.form-item-message {
	width: 100%;
}

form {
	display: flex;
	flex-wrap: wrap;
}

.form-actions {
	display: flex;
	justify-content: center;
	margin-top: 24px;
}

input.button {
	width: 100%;
}

.frontpage .webform .subtitle {
	font-size: 16px;
}

@media screen and (min-width: 768px) {
	
	.frontpage .main {
		padding: 15% 0;
	}
	input.button {
		width: auto;
	}
	.frontpage .contact {
		margin-top: 100px;
	}
	.form-item-name,
	.form-item-email {
		width: 50%;
	}
	
	.form-item-name {
		padding-right: 16px;
	}

	.form-item-email {
		padding-left: 16px;
	}
	.frontpage .webform .subtitle {
		margin: 0 auto;
		width: 590px;
	}
}

@media screen and (min-width: 1024px) {
	.frontpage .contact {
		padding: 0;
	}
	.frontpage .webform .subtitle {
		width: 700px;
	}
	.frontpage .main {
		padding: 9% 0;
	}
}

@media screen and (min-width: 1280px) {
	.frontpage .main {
		padding: 8% 0;
	}
}

@media screen and (min-width: 1440px) {
	.frontpage .main {
		padding: 7% 0;
	}
}


/* footer */

.footer {
	background: #023f87;
	display: flex;
	flex-direction: column;
	font-size: 12px;
	text-align: center;
	padding: 36px;
}

.footer,
.footer a {
	color: white;
}

.footer a {
	font-weight: 700;
}

.footer .branding {
	background-image: url(../../images/assets/logo-small.svg);
	background-size: 64px 48px;
	background-repeat: no-repeat;
	background-position: top center;
	padding-top: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media screen and (min-width: 1440px) {
	.footer {
		flex-direction: row;
		justify-content: space-between;
	}
	.footer .branding {
		background-position: 0;
		padding-top: 0;
		padding-left: 98px;
	}
	.footer .copy {
		line-height: 48px;
	}
}

/* company */

.cert {
	float: left;
	width: 100%;
	padding: 60px 30px;
}

.cert .col {
	background-color: #f1f2f5;
	padding: 60px 30px;
	margin-bottom: 30px;
}

.cert .col:last-of-type {
	margin-bottom: 0;
}

@media screen and (min-width: 768px) {
	.cert {
		padding: 12%;
	}
	.cert .col {
		padding: 15%;
		margin-bottom: 15%;
	}
}

@media screen and (min-width: 1024px) {
	.cert {
		padding: 7% 7% 10% 7%;
		display: flex;
	}
	.cert .col {
		padding: 7%;
		margin: 0 35px;
	}
}

@media screen and (min-width: 1440px) {
	.cert {
		padding: 7% 4%;
	}
	.cert .col {
		margin: 0 4%;
	}
}

/* bottom */

.bottom {
	float: left;
	width: 100%;
	padding: 0 30px 60px 30px;
}

/* location */

.block-introlocation {
	margin-bottom: 60px;
}

.block-introlocation p {
	font-size: 18px;
	margin-bottom: 0;
}

@media screen and (min-width: 768px) {
	.bottom {
		padding: 0 12% 12% 12%;
	}
	.block-introlocation {
		margin-bottom: 12%;
		text-align: center;
	}
	
	.block-introlocation p {
		font-size: 24px;
	}
}
@media screen and (min-width: 1024px) {
	.bottom {
		padding: 0 11% 11% 11%;
	}
	.block-introlocation {
		margin-bottom: 11%;
	}
	
}
@media screen and (min-width: 1280px) {
	.bottom {
		padding: 0 10% 10% 10%;
	}
	.block-introlocation {
		margin-bottom: 10%;
	}
	
}

@media screen and (min-width: 1440px) {
	.bottom {
		padding: 0 8% 8% 8%;
	}
	.block-introlocation {
		margin-bottom: 8%;
	}
	
}

/* login */

.section-temp .main,
.page-403 .main,
.page-404 .main {
	padding: 9%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.section-temp .description,
.section-temp p,
.page-403 .description,
.page-403 p,
.page-404 .description,
.page-404 p {
	font-size: 12px;
	margin: 4px 0;
}

.section-temp .form-item,
.page-403 .form-item,
.page-404 .form-item {
	width: 100%;
	padding: 0;
}
.section-temp form,
.page-403 form,
.page-404 form {
	width: 100%;
	max-width: 500px;
}

.page-temp-password .form-item-name {
	margin-bottom: 0;
}

/* product */

.center {
	padding-bottom: 60px;
}

.img-grp {
	display: flex;
	flex-direction: column;
}

.img-grp .img {
	width: 100%;
	flex-shrink: 0;
}

.img-grp .img > div {
	height: 100%;
	width: 100%;
	display: flex;
	border-radius: 3px;
	overflow: hidden;
	background: #f1f2f5;
}

.img-grp .img div {
	height: 100% !important;
}

.img-grp .img img {
	height: 100%;
	object-fit: cover;
}

.slick--field-product-image {
	width: 100%;
	position: relative;
}

.slick--field-product-image .slick-dots {
	position: absolute;
	bottom: 2px;
	width: 100%;
	display: flex;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
	z-index: 2;
}

.slick--field-product-image .slick-dots button {
	background-color: rgba(201, 201, 201, 0.6);
	border: none;
	outline: none;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	padding: 0;
	text-indent: -100px;
	overflow: hidden;
	cursor: pointer;
	margin: 4px;
}

.slick--field-product-image .slick-dots .slick-active button {
	background-color: rgba(214, 22, 22, 0.8);
}


.slick--field-product-image .slick__arrow {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.slick--field-product-image .slick__arrow .slick-arrow {
	background-color: transparent;
	background-image: url(../../images/assets/arrow.svg);
	background-repeat: no-repeat;
	background-size: 60px 60px;
	background-position: center;
	display: flex;
	width: 100px;
	height: 100%;
	outline: none;
	border: none;
	margin: 0;
	cursor: pointer;
	text-indent: 1000px;
	overflow: hidden;
	position: relative;
	transition: all ease 0.3s;
}

.slick--field-product-image .slick__arrow .slick-next {
	right: -100px;
}

.slick--field-product-image .slick__arrow .slick-prev {
	left: -100px;
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

.slick--field-product-image:hover .slick__arrow .slick-next {
	right: 0;
}

.slick--field-product-image:hover .slick__arrow .slick-prev {
	left: 0;
}

.media--loading:not([data-animation])::before,
.is-b-loading:not([data-animation])::before {
    background: #e2e2e2;
}

.grp {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-shrink: 0;
	width: 100%;
}

.grp > div {
	height: 100%;
	background-color: #f1f2f5;
	padding: 60px 30px;
	border-radius: 3px;
}

.grp .cta {
	margin: 60px 0 30px 0;
	position: relative;
}

.grp .cta h2,
.grp .desc > div:first-of-type,
.spec > div:first-of-type {
	color: #023f87;
	font-size: 24px;
	text-transform: uppercase;
	font-weight: 700;
	line-height: 1;
}

.grp .dec p:last-of-type {
	margin-bottom: 0;
}

.grp .cta .btn {
	margin-top: 30px;
}

.grp .cta::before {
	content: '';
	display: flex;
	width: 50px;
	height: 50px;
	position: absolute;
	left: 50%;
	top: -15px;
	margin-left: -25px;
	background: #f1f2f5;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index: -1;
}

.spec {
	background-color: #f1f2f5;
	padding: 60px 30px 30px 30px;
	margin-top: 30px;
	border-radius: 3px;
}

.spec > div:nth-of-type(2) {
	margin-top: 30px;
}
.spec .paragraph {
	border-top: 1px solid #e2e2e2;
	padding: 30px 0;
	display: flex;
	font-size: 14px;
	flex-direction: column;
}

.spec .paragraph .details {
	display: flex;
	flex-shrink: 0;
	width: 100%;
	flex-direction: column;
}

.spec .paragraph > div {
	width: 100%;
	flex-shrink: 0;
}
.spec .paragraph .details > div {
	width: 100%;
}

.spec .paragraph > div:first-of-type,
.spec .paragraph .details > div > div:first-of-type {
	font-weight: 700;
	text-transform: uppercase;
}

.spec .paragraph > div:first-of-type {
	color: #023f87;
	margin-bottom: 20px;
	padding-right: 40px;
}

.cat {
	display: inline-block;
	width: 100%;
}

.cat > div {
	margin: 0;
}

.cat > div:last-of-type::after {
	display: none;
}

@media screen and (min-width: 768px) {
	.slick--field-product-image .slick-dots {
		bottom: 12px;
	}
	.center {
		padding-bottom: 80px;
	}
	.grp .cta {
		margin: 80px 0;
	}
	.grp > div {
		padding: 60px;
	}
	.spec {
		margin-top: 80px;
		padding: 60px;
	}
	.spec .paragraph {
		flex-direction: row;
		padding: 40px 0;
	}
	.spec .paragraph .details {
		width: 50%;
	}
	.spec .paragraph > div {
		width: 50%;
	}
	.spec > div:nth-of-type(2) {
		margin-top: 60px;
	}
	.cat {
		display: flex;
		justify-content: center;
	}
	
	.cat > div {
		margin: 00;
	}
	
	.cat > div::after {
		content: '|';
		margin: 0 10px;
	}
}

@media screen and (min-width: 1024px) {
	.center {
		padding-bottom: 7%;
	}
	.grp {
		flex-direction: row;
	}
	.grp .cta {
		margin-bottom: 0;
		margin-right: 3%;
	}
	.grp .desc {
		margin-top: 6%;
		margin-left: 3%;
	}
	.grp .cta {
		margin-top: 6%;
		margin-right: 3%;
	}
	.spec {
		margin-top: 6%;
}
	.spec .paragraph .details {
		flex-direction: row;
		width: 75%;
	}
	.spec .paragraph > div {
		width: 25%;
	}
}

@media screen and (min-width: 1280px) {
	.img-grp {
		flex-direction: row;
	}
	
	.img-grp .img {
		padding-right: 6%;
		width: 70%;
	}
	.grp {
		width: 30%;
		flex-direction: column;
	}
	.grp .cta {
		margin-bottom: 19%;
		margin-top: 0;
		margin-right: 0;
	}
	.grp .desc {
		margin-top: 0;
		margin-left: 0;
	}
	.grp .cta::before {
		top: auto;
		bottom: 50%;
		left: -25px;
		margin-bottom: -25px;
		margin-left: 0;
	}
}
@media screen and (min-width: 1440px) {
	.img-grp .img {
		width: 72%;
	}
	.grp {
		width: 28%;
	}
}

/* filter */

.bef-exposed-form {
	padding: 30px 0;
	margin: 60px 30px 0 30px;
	border-top: 1px solid #e2e2e2;
	float: left;
}

.bef-exposed-form .form-item {
	width: 100%;
	margin: 0;
}

.bef-exposed-form .form-actions {
	display: none;
}

.bef-links > ul {
	display: inline-block;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bef-links ul ul {
	display: inline;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bef-links li {
	display: inline;
	margin: 4px;
	line-height: 2.4;
}

.bef-links li li {
	display: inline-block;
}

.bef-links li a {
	font-weight: 700;
	text-transform: uppercase;
	color: #023f87;
	font-size: 14px;
	padding: 6px 12px;
}

.bef-link--selected,
.bef-links li a:hover {
	background-color: #f1f2f5;
	border-radius: 3px;
}

.bef-links li a:hover {
	text-decoration: none;
}

@media screen and (min-width: 768px) {
	
	.bef-exposed-form {
		padding: 80px 0 0 0;
		margin: 80px 80px 0 80px;
		text-align: center;
	}
}

@media screen and (min-width: 1024px) {
	.bef-exposed-form {
		padding: 60px 0 20px 0;
		margin: 6% 6% 0 6%;
		width: 88%;
	}
}

@media screen and (min-width: 1280px) {
	.bef-exposed-form {
		margin: 6% 7% 0 7%;
		width: 86%;
	}
}

/* product list */

.product-list {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	padding: 0;
}
.related {
	margin-top: -60px;
}
.product-list .col {
	padding: 0 30px 30px 30px;
}
.product-list .col .wrapper {
	background-color: #f1f2f5;
	border-radius: 3px;
	overflow: hidden;
	height: 100%;
	position: relative;
	padding-bottom: 78px;
}

.product-list .col .views-field {
	height: 100%;
}

.product-list .col .inside {
	padding: 30px;
}

.product-list .inside h2 a {
	color: #023f87;
	font-size: 24px;
	text-transform: uppercase;
	font-weight: 700;
}

.product-list .btn {
	position: absolute;
	bottom: 30px;
	width: calc(100% - 60px);
}

.prd-img a {
	display: flex;
}

.product-list .center p {
	font-size: 18px;
	margin-bottom: 30px;
}

.product-list .center {
	margin-bottom: -30px;
}

@media screen and (min-width: 768px) {
	.product-list {
		padding: 40px;
	}
	.product-list .col,
	.product-list .col .inside {
		padding: 40px;
	}
	.product-list .btn {
		bottom: 40px;
		width: auto;
	}
	.product-list .col .wrapper {
		padding-bottom: 88px;
	}
	.product-list .center p {
		font-size: 24px;
	}
	.product-list .center {
		margin-bottom: -40px;
	}
	.related {
		margin-top: -80px;
	}
	
}

@media screen and (min-width: 1024px) {
	.product-list .col {
		padding: 15px;
	}
	
	.product-list .col .inside {
		padding: 30px;
	}
	.product-list .center {
		padding-bottom: 40px;
		margin-bottom: 0;
	}
	
	.product-list {
		padding: 15px calc(7% - 15px) calc(7% - 15px) calc(7% - 15px);
	}
	.product-list .btn {
		width: calc(100% - 60px);
		bottom: 30px;
	}
	.product-list .btn a {
		width: 100%;
	}
	.product-list .col .wrapper {
		padding-bottom: 78px;
	}
	.related {
		margin-top: -7%;
	}
}

@media screen and (min-width: 1280px) {
	.product-list .col,
	.product-list .col .inside {
		padding: 40px;
	}
	.product-list {
		padding: 0 calc(7% - 40px) calc(7% - 40px) calc(7% - 40px);
	}
	.product-list .btn,
	.product-list .btn a {
		width: auto;
	}
	.product-list .btn {
		bottom: 40px;
	}
	.product-list .col .wrapper {
		padding-bottom: 88px;
	}
	.product-list .center {
		margin-bottom: 0;
	}

}
.language .links {
	margin: 0;
	padding: 0;
}
.language .links .is-active {
  display: none;
}