/*! nouislider - 14.6.4 - 3/18/2021 */
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-user-select: none;
	-ms-touch-action: none;
	touch-action: none;
	-ms-user-select: none;
	-moz-user-select: none;
	user-select: none;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.noUi-target {
	position: relative;
}

.noUi-base,
.noUi-connects {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}

/* Wrapper for all connect elements.
 */
.noUi-connects {
	overflow: hidden;
	z-index: 0;
}

.noUi-connect,
.noUi-origin {
	will-change: transform;
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	-ms-transform-origin: 0 0;
	-webkit-transform-origin: 0 0;
	-webkit-transform-style: preserve-3d;
	transform-origin: 0 0;
	-webkit-transform-style: flat;
	transform-style: flat;
}

.noUi-connect {
	height: 100%;
	width: 100%;
}

.noUi-origin {
	height: 10%;
	width: 10%;
}

/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
	left: 0;
	right: auto;
}

/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
	width: 0;
}

.noUi-horizontal .noUi-origin {
	height: 0;
}

.noUi-handle {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	position: absolute;
}

.noUi-touch-area {
	height: 100%;
	width: 100%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
	-webkit-transition: transform 0.3s;
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	-o-transition: transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
}

.noUi-state-drag * {
	cursor: inherit !important;
}

/* Slider size and handle placement;
 */
.noUi-horizontal {
	height: 18px;
}

.noUi-horizontal .noUi-handle {
	width: 34px;
	height: 28px;
	right: -17px;
	top: -6px;
}

.noUi-vertical {
	width: 18px;
}

.noUi-vertical .noUi-handle {
	width: 28px;
	height: 34px;
	right: -6px;
	top: -17px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
	left: -17px;
	right: auto;
}

/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
	background: #FAFAFA;
	border-radius: 4px;
	border: 1px solid #D3D3D3;
	-webkit-box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
	box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}

.noUi-connects {
	border-radius: 3px;
}

.noUi-connect {
	background: #3FB8AF;
}

/* Handles and cursors;
 */
.noUi-draggable {
	cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
	cursor: ns-resize;
}

.noUi-handle {
	border: 1px solid #D9D9D9;
	border-radius: 3px;
	background: #FFF;
	cursor: default;
	-webkit-box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
	box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}

.noUi-active {
	-webkit-box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
	box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}

/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
	content: "";
	display: block;
	position: absolute;
	height: 14px;
	width: 1px;
	background: #E8E7E6;
	left: 14px;
	top: 6px;
}

.noUi-handle:after {
	left: 17px;
}

.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
	width: 14px;
	height: 1px;
	left: 6px;
	top: 14px;
}

.noUi-vertical .noUi-handle:after {
	top: 17px;
}

/* Disabled state;
 */
[disabled] .noUi-connect {
	background: #B8B8B8;
}

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
	cursor: not-allowed;
}

/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.noUi-pips {
	position: absolute;
	color: #999;
}

/* Values;
 *
 */
.noUi-value {
	position: absolute;
	white-space: nowrap;
	text-align: center;
}

.noUi-value-sub {
	color: #ccc;
	font-size: 10px;
}

/* Markings;
 *
 */
.noUi-marker {
	position: absolute;
	background: #CCC;
}

.noUi-marker-sub {
	background: #AAA;
}

.noUi-marker-large {
	background: #AAA;
}

/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
	padding: 10px 0;
	height: 80px;
	top: 100%;
	left: 0;
	width: 100%;
}

.noUi-value-horizontal {
	-webkit-transform: translate(-50%, 50%);
	-ms-transform: translate(-50%, 50%);
	transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
	-webkit-transform: translate(50%, 50%);
	-ms-transform: translate(50%, 50%);
	transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
	margin-left: -1px;
	width: 2px;
	height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
	height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
	height: 15px;
}

/* Vertical layout;
 *
 */
.noUi-pips-vertical {
	padding: 0 10px;
	height: 100%;
	top: 0;
	left: 100%;
}

.noUi-value-vertical {
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
	-webkit-transform: translate(0, 50%);
	-ms-transform: translate(0, 50%);
	transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
	width: 5px;
	height: 2px;
	margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
	width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
	width: 15px;
}

.noUi-tooltip {
	display: block;
	position: absolute;
	border: 1px solid #D9D9D9;
	border-radius: 3px;
	background: #fff;
	color: #000;
	padding: 5px;
	text-align: center;
	white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	left: 50%;
	bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	top: 50%;
	right: 120%;
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
	-webkit-transform: translate(50%, 0);
	-ms-transform: translate(50%, 0);
	transform: translate(50%, 0);
	left: auto;
	bottom: 10px;
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
	-webkit-transform: translate(0, -18px);
	-ms-transform: translate(0, -18px);
	transform: translate(0, -18px);
	top: auto;
	right: 28px;
}

/* Variables */
/* Media queries */
/* Box shadow */
/* Icons */
/* Base colors */
/* App colors */
/* Font family */
/* Font size */
/* Line height */
/* Unit */
/* Offset */
/* Radius */
/* Ease */
/* Global */
@font-face {
	font-family: "icons";
	src: url("./font/icons.eot");
	src: url("./font/icons.eot?#iefix") format("embedded-opentype"),
	url("./font/icons.svg#icons") format("svg"),
	url("./font/icons.ttf") format("truetype"),
	url("./font/icons.woff") format("woff");
	font-display: swap;
	font-weight: normal;
}

*,
::before,
::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html,
body {
	max-width: 100%;
	width: 100%;
}

html {
	font-size: 62.5%;
}

body {
	background-color: #fff;
	color: #848484;
	font-family: 'Open Sans', sans-serif;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.4;
	margin: 0;
	overflow-x: hidden;
	scroll-behavior: smooth;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-text-size-adjust: 100%;
	-webkit-touch-callout: none;
}

@media (min-width: 960px) {
	body {
		font-size: 1.7rem;
	}
}

.hidden-block {
	display: none !important;
}

.text-red {
	color: #c33c26 !important;
}

h1,
h2,
h3,
h4,
h5,
.--title {
	color: #fff;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	line-height: 1.2;
	margin: 0;
	padding: 0;
	text-align: left;
}

h1,
.--title-h1 {
	font-size: 3.4rem;
}

@media (min-width: 1280px) {
	h1,
	.--title-h1 {
		font-size: 7.3rem;
	}
}

h2,
.--title-h2 {
	font-size: 2.4rem;
}

@media (min-width: 1280px) {
	h2,
	.--title-h2 {
		font-size: 3.7rem;
	}
}

h3,
.--title-h3 {
	font-size: 1.8rem;
}

@media (min-width: 1280px) {
	h3,
	.--title-h3 {
		font-size: 2.8rem;
	}
}

h4,
.--title-h4 {
	font-size: 1.6rem;
}

@media (min-width: 1280px) {
	h4,
	.--title-h4 {
		font-size: 1.8rem;
	}
}

h5,
.--title-h5 {
	font-size: 1.6rem;
}

@media (min-width: 1280px) {
	h5,
	.--title-h5 {
		font-size: 1.6rem;
	}
}

p {
	margin: 0;
}

a {
	color: #002c4d;
	text-decoration: none;
}

@media (hover: hover), (-ms-high-contrast: none) {
	a:hover {
		color: #002c4d;
	}
}

a:focus {
	outline: 0;
}

i {
	font-style: normal;
}

strong {
	font-weight: 700;
}

small {
	font-size: 1.2rem;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

::-moz-selection {
	background: #002c4d;
	color: #848484;
}

::selection {
	background: #002c4d;
	color: #848484;
}

li,
ol,
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

th,
td {
	padding: 0;
	text-align: left;
	vertical-align: top;
}

figure,
picture {
	display: block;
	margin: 0;
}

img {
	border: 0;
	max-width: 100%;
	vertical-align: middle;
}

video {
	display: block;
	margin: 0;
	max-width: 100%;
	outline: 0;
	padding: 0;
}

fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

form,
button,
[role=button] {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

button,
input,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: 0;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
	display: block;
	font-family: inherit;
	font-size: 1.8rem;
	line-height: 1.4;
	margin: 0;
	outline: 0;
}

button,
[role=button],
label[for],
select {
	cursor: pointer;
	outline: 0;
}

button::-moz-focus-inner,
input::-moz-focus-inner,
input::-moz-focus-outer {
	border: 0;
	padding: 0;
}

label {
	cursor: pointer;
}

input:focus {
	outline: 0;
}

input::-ms-check {
	display: none;
}

select::-ms-expand {
	display: none;
}

textarea {
	overflow: auto;
	max-width: 100%;
	resize: vertical;
}

.--bg-light {
	background: #e4e3de;
}

.--bg-white {
	background: #fff;
}

.--bg-info {
	background: #2a7298;
}

.--block {
	display: block;
}

.--content {
	display: block;
	margin: auto;
	min-width: 320px;
	padding: 0 16px;
	position: relative;
	width: 100%;
	max-width: 972px;
}

@media (min-width: 1280px) {
	.--content {
		max-width: 1232px;
	}
}

@media (min-width: 1690px) {
	.--content {
		max-width: 1672px;
	}
}

.--row {
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: calc(100% + 16px); /* 8px column offset */
	margin: 0 -8px; /* 8px column offset */
}

.--column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 0 8px; /* 8px column offset */
}

.--flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: wrap;
	flex-flow: wrap;
	width: 100%;
}

.--flex-inline {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-ms-flex-flow: wrap;
	flex-flow: wrap;
}

.--flex-column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column wrap;
	flex-flow: column wrap;
}

.--flex-nowrap {
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.--flex-end {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.--flex-centre,
.--flex-centre-x {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.--flex-centre,
.--flex-centre-y {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.--flex-end-x {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.--flex-space {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.--flex-stretch {
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

.--flex-start {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.--flex-start-x {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.--hide {
	display: none;
}

.--hide-text {
	font-size: 0;
	line-height: 0;
}

.--link,
.--link-rev {
	display: inline-block;
	position: relative;
	z-index: 1;
}

.--link::after,
.--link-rev::after {
	background: #848484;
	bottom: 0;
	content: "";
	height: 1px;
	left: 50%;
	position: absolute;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: -1;
}

.--link, .--link::after,
.--link-rev,
.--link-rev::after {
	-webkit-transition: 0.3s cubic-bezier(0.25, 0.45, 0.65, 1.75);
	-o-transition: 0.3s cubic-bezier(0.25, 0.45, 0.65, 1.75);
	transition: 0.3s cubic-bezier(0.25, 0.45, 0.65, 1.75);
}

.--link::after {
	width: 100%;
}

@media (hover: hover), (-ms-high-contrast: none) {
	.--link:hover::after {
		width: 0;
	}
}

.--link-rev::after {
	width: 0;
}

@media (hover: hover), (-ms-high-contrast: none) {
	.--link-rev:hover::after {
		width: 100%;
	}
}

.--link-underline {
	text-decoration: underline;
}

.--link-text {
	color: #000;
	text-decoration: none;
}

.--link-text:hover, .--link-text:focus {
	text-decoration: underline;
	color: #002c4d;
}

.--shadow {
	-webkit-box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
}

.--sticker,
.--sticker-small,
.--sticker-round {
	color: #fff;
	display: inline-block;
	line-height: 1.2;
	padding: 4px 12px;
	position: relative;
	z-index: 1;
}

.--sticker::after,
.--sticker-small::after,
.--sticker-round::after {
	background: #002c4d;
	border-radius: 5px;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.--sticker {
	font-size: 1.8rem;
	padding: 4px 12px;
}

.--sticker-small {
	font-size: 1.4rem;
	height: 24px;
	padding: 5px 12px;
}

.--sticker-round {
	font-size: 1.4rem;
	height: 26px;
	padding: 6px 14px;
}

.--sticker-round::after {
	border-radius: 13px;
}

.--text-center {
	text-align: center;
}

.--text-right {
	text-align: right;
}

.--text-line-through {
	text-decoration: line-through;
}

.--text-brand {
	color: #002c4d;
}

.--text-dark {
	color: #000;
}

.--text-underline {
	text-decoration: underline;
}

.--w-hide {
	display: none;
}

.--w-1 {
	width: 8.333333%;
}

.--w-2 {
	width: 16.666667%;
}

.--w-3 {
	width: 25%;
}

.--w-4 {
	width: 33.333333%;
}

.--w-5 {
	width: 41.666667%;
}

.--w-6 {
	width: 50%;
}

.--w-7 {
	width: 58.333333%;
}

.--w-8 {
	width: 66.666667%;
}

.--w-9 {
	width: 75%;
}

.--w-10 {
	width: 83.333333%;
}

.--w-11 {
	width: 91.666667%;
}

.--w-12 {
	width: 100%;
}

@media (min-width: 480px) {
	.--w-t-3 {
		width: 25%;
	}

	.--w-t-6 {
		width: 50%;
	}

	.--w-t-9 {
		width: 75%;
	}
}

@media (min-width: 640px) {
	.--w-s-auto {
		width: auto;
	}

	.--w-s-hide {
		display: none;
	}

	.--w-s-show {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.--w-s-1 {
		width: 8.333333%;
	}

	.--w-s-3 {
		width: 25%;
	}

	.--w-s-4 {
		width: 33.333333%;
	}

	.--w-s-5 {
		width: 41.666667%;
	}

	.--w-s-6 {
		width: 50%;
	}

	.--w-s-7 {
		width: 58.333333%;
	}

	.--w-s-8 {
		width: 66.666667%;
	}

	.--w-s-9 {
		width: 75%;
	}

	.--w-s-10 {
		width: 83.333333%;
	}

	.--w-s-12 {
		width: 100%;
	}
}

@media (min-width: 960px) {
	.--w-m-show {
		display: block;
	}

	.--w-m-1 {
		width: 8.333333%;
	}

	.--w-m-3 {
		width: 25%;
	}

	.--w-m-4 {
		width: 33.333333%;
	}

	.--w-m-5 {
		width: 41.666667%;
	}

	.--w-m-6 {
		width: 50%;
	}

	.--w-m-7 {
		width: 58.333333%;
	}

	.--w-m-8 {
		width: 66.666667%;
	}

	.--w-m-9 {
		width: 75%;
	}

	.--w-m-10 {
		width: 83.333333%;
	}

	.--w-m-12 {
		width: 100%;
	}
}

@media (min-width: 1280px) {
	.--w-l-2 {
		width: 16.666667%;
	}

	.--w-l-3 {
		width: 25%;
	}

	.--w-l-4 {
		width: 33.333333%;
	}

	.--w-l-5 {
		width: 41.666667%;
	}

	.--w-l-6 {
		width: 50%;
	}

	.--w-l-7 {
		width: 58.333333%;
	}

	.--w-l-8 {
		width: 66.666667%;
	}

	.--w-l-9 {
		width: 75%;
	}

	.--w-l-12 {
		width: 100%;
	}
}

@media (min-width: 1690px) {
	.--w-x-3 {
		width: 25%;
	}
}

.--offset-2 {
	margin-left: 16.666667%;
}

@media (min-width: 960px) {
	.--offset-m-1 {
		margin-left: 8.333333%;
	}

	.--offset-m-6 {
		margin-left: 50%;
	}
}

@media (min-width: 640px) {
	.--flex-s-column {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.--flex-s-row {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}

@media (min-width: 960px) {
	.--flex-m-column {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

@media (min-width: 1690px) {
	.--flex-x-column {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.--flex-x-row {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}

.--bold {
	font-weight: bold;
}

[class*=__button-wrap] {
	margin: -4px auto;
}

@media (min-width: 640px) {
	[class*=__button-wrap] {
		margin: -4px;
	}
}

[class*=__button-wrap--wide] {
	margin: -8px auto;
}

@media (min-width: 640px) {
	[class*=__button-wrap--wide] {
		margin: -8px;
		width: calc(100% + 16px);
	}
}

.button {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 5px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	flex-flow: column;
	font-size: 1.5rem;
	font-weight: 700;
	min-height: 70px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	line-height: 1.2;
	overflow: hidden;
	padding: 20px 45px;
	position: relative;
	text-transform: uppercase;
	text-align: center;
	-webkit-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	z-index: 1;
}

@media (min-width: 480px) {
	.button {
		font-size: 1.5rem;
	}
}

.button, .button::before, .button::after,
.button .button__counter {
	-webkit-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

.button [class*=__button-wrap] {
	margin: 4px;
}

[class*=__button-wrap--wide] .button {
	margin: 4px 8px;
}

.button--brand {
	background: #002c4d;
	color: #fff;
}

@media (hover: hover), (-ms-high-contrast: none) {
	.button--brand:hover {
		background: #002c4d;
		color: #fff;
	}
}

.icon::before {
	display: inline-block;
	font-family: "icons";
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	position: relative;
	text-transform: none;
}

.icon--camera:before {
	content: "\e902";
}

.icon--file:before {
	content: "\e903";
}

.icon--fax:before {
	content: "\e904";
}

.icon--home:before {
	content: "\e905";
}

.icon--search:before {
	content: "\e906";
}

.icon--mail:before {
	content: "\e900";
}

.icon--phone:before {
	content: "\e901";
}

/* Components */
.content {
	font-size: 1.5rem;
}

.content__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -8px;
}

.content__column {
	padding-left: 8px;
	padding-right: 8px;
}

.content__flex {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.content--section {
	color: #000;
	margin: 0 auto 16px;
	max-width: 768px;
	width: 100%;
}

.content--section:last-child {
	margin-bottom: 0;
}

@media (min-width: 1280px) {
	.content--section {
		margin: 0 0 40px;
	}

	.content--section:last-child {
		margin-bottom: 0;
	}
}

.content > h3, .content__column h3 {
	margin-bottom: 10px;
	font-size: 1.8rem;
}

@media (min-width: 960px) {
	.content > h3, .content__column h3 {
		margin-bottom: 15px;
		font-size: 2.8rem;
	}
}

.content > h2, .content__column h2 {
	margin-bottom: 15px;
	font-size: 2.4rem;
}

@media (min-width: 960px) {
	.content > h2, .content__column h2 {
		margin-bottom: 30px;
		font-size: 3.7rem;
	}
}

.content > ul, .content > p ul, .content__column ul,
.--list {
	margin-bottom: 20px;
}

@media (min-width: 960px) {
	.content > ul, .content > p ul, .content__column ul,
	.--list {
		margin-bottom: 40px;
	}
}

.content > ul li, .content > p ul li, .content__column ul li,
.--list-item {
	font-size: 1.4rem;
	margin: 4px 0 4px 18px;
	position: relative;
	color: #000;
}

.content > ul li::before, .content > p ul li::before, .content__column ul li::before,
.--list-item::before {
	background: #002c4d;
	border-radius: 50%;
	content: "";
	height: 6px;
	left: -16px;
	position: absolute;
	top: 8px;
	width: 6px;
}

@media (min-width: 960px) {
	.content > ul li, .content > p ul li, .content__column ul li,
	.--list-item {
		font-size: 1.6rem;
	}
}

.content > ol, .content > p ol, .content__column ol,
.--list-num {
	counter-reset: counter-list;
	margin: 0 0 32px;
}

.content > ol li, .content > p ol li, .content__column ol li,
.--list-num-item {
	counter-increment: counter-list;
	font-size: 1.5rem;
	padding: 4px 0 4px 30px;
	position: relative;
}

.content > ol li::before, .content > p ol li::before, .content__column ol li::before,
.--list-num-item::before {
	color: #002c4d;
	content: "0" counter(counter-list);
	left: 0;
	position: absolute;
	top: 4px;
}

.content > ol li:nth-child(n+10)::before, .content > p ol li:nth-child(n+10)::before, .content__column ol li:nth-child(n+10)::before,
.--list-num-item:nth-child(n+10)::before {
	content: counter(counter-list);
}

.content > p, .content__column p {
	margin-bottom: 30px;
	font-size: 1.6rem;
	color: #000;
}

@media (min-width: 960px) {
	.content > p, .content__column p {
		margin-bottom: 60px;
		font-size: 2rem;
	}
}

.content > a, .content > p a, .content table a, .content__column a {
	text-decoration: underline;
}

.content .table-wrapper {
	margin-bottom: 20px;
	font-size: 1.5rem;
}

@media (min-width: 960px) {
	.content .table-wrapper {
		margin-bottom: 40px;
		font-size: 2rem;
	}
}

.content table {
	border: none;
}

.content table tr {
	border-bottom: 1px solid #e1e1e1;
}

.content table tr:last-of-type {
	border-bottom: none;
}

.content table td {
	padding-top: 15px;
	padding-bottom: 15px;
	font-size: 1.6rem;
	color: #000;
}

.content table td:last-of-type {
	font-weight: bold;
}

@media (min-width: 640px) {
	.content table td {
		font-size: 2rem;
	}
}

.content > img, .content > p img, .content__column img {
	margin: 0 0 12px;
	height: auto;
}

.footer {
	background-color: black;
	padding: 40px 0 40px 0;
}

@media (min-width: 960px) {
	.footer {
		padding: 130px 0 80px 0;
	}
}

.footer__section {
	margin-bottom: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
}

@media (min-width: 640px) {
	.footer__section {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		text-align: start;
	}
}

.footer__title {
	color: #fff;
	font-size: 1.6rem;
	margin-bottom: 10px;
}

@media (min-width: 1280px) {
	.footer__title {
		margin-bottom: 35px;
	}
}

.footer__contact {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.footer__bottom .footer__content {
	-webkit-column-gap: 30px;
	-moz-column-gap: 30px;
	column-gap: 30px;
}

@media (min-width: 640px) {
	.footer__bottom .footer__content {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
}

.footer__contact-phone {
	margin-bottom: 5px;
}

.footer__icon {
	color: #002c4d;
	font-size: 1.5rem;
	margin-right: 10px;
}

.footer__phone {
	color: #fff;
	font-size: 2rem;
}

@media (min-width: 960px) {
	.footer__phone {
		font-size: 2.3rem;
	}
}

.footer__mail {
	color: #fff;
	text-decoration: underline;
	font-size: 2rem;
}

@media (min-width: 960px) {
	.footer__mail {
		font-size: 2.3rem;
	}
}

.footer__name {
	color: #fff;
	font-weight: bold;
}

.footer__adress {
	color: #fff;
}

.footer__number {
	color: #A2A2A2;
}

.footer__menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-column-gap: 70px;
	-moz-column-gap: 70px;
	column-gap: 70px;
}

@media (min-width: 640px) {
	.footer__menu {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}

.footer__menu-wrap {
	margin-bottom: 10px;
}

@media (min-width: 640px) {
	.footer__menu-wrap {
		margin-bottom: 0;
	}
}

.footer__menu-title {
	font-size: 1.9rem;
	color: #fff;
	font-weight: bold;
	margin-bottom: 15px;
}

.footer__menu-link {
	font-size: 1.6rem;
	color: #002c4d;
}

/* FOOTER - BOTTOM */
.footer__figure {
	max-width: 110px;
	max-height: 75px;
	margin: 8px 0;
}

.footer__copyright-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.footer__copyright {
	color: #fff;
	margin-bottom: 10px;
}

.header {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	z-index: 10;
	width: 100%;
	position: absolute;
	background-color: #002c4d;
}

@media (min-width: 1690px) {
	.header {
		background-color: transparent;
	}
}

.header__box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding-top: 25px;
	padding-bottom: 25px;
}

@media (min-width: 700px) {
	.header__box {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}

.header__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (min-width: 700px) {
	.header__wrap {
		-webkit-box-pack: normal;
		-ms-flex-pack: normal;
		justify-content: normal;
		width: auto;
	}
}

.header__subwrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.header__logo {
	z-index: 1;
	margin-right: 10px;
	max-width: 170px;
	width: 100%;
}

.header__logo-img {
	max-width: 100%;
	height: auto;
	display: block;
}

@media (min-width: 800px) {
	.header__logo {
		margin-right: 50px;
	}
}

@media (min-width: 1580px) {
	.header__logo {
		max-width: 215px;
	}
}

@media (min-width: 1690px) {
	.header__logo {
		margin-right: 150px;
	}
}

.header__menu {
	width: 100%;
	z-index: 1;
	max-height: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-shadow: none;
	box-shadow: none;
	background-color: transparent;
	-webkit-box-pack: space-evenly;
	-ms-flex-pack: space-evenly;
	justify-content: space-evenly;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

@media (min-width: 700px) {
	.header__menu {
		width: 460px;
		max-height: none;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		margin-right: 60px;
	}
}

.header__menu-item {
	margin: 20px 0;
}

@media (min-width: 1280px) {
	.header__menu-item {
		margin: 0;
	}
}

.header__link {
	display: inline-block;
	cursor: pointer;
	position: relative;
	font-size: 1.5rem;
	color: #000;
}

@media (min-width: 1690px) {
	.header--image .header__link {
		color: #fff;
	}
}

.header__menu-item.dropdown {
	position: relative;
	display: inline-block;
	padding-right: 20px;
}

.header__dropdown-content {
	background-color: #002c4d;
	display: none;
	position: absolute;
	z-index: 21;
	padding: 10px 0;
	width: 100%;
}

.header__link.dropdown {
	color: black;
	padding: 5px 6px;
	text-decoration: none;
	display: block;
}

.header__link.dropdown:hover {
	color: #002c4d;
}

.header__menu-item.dropdown:hover .header__dropdown-content {
	display: block;
	-webkit-box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
	border-radius: 5px;
}

.dropdown:hover .header__link.btn {
	color: #002c4d;
}

.header__arrow-down {
	position: absolute;
	top: 2px;
	right: -20px;
	border: solid #002c4d;
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 4px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

@media (min-width: 1280px) {
	.header__arrow-down {
		top: 3px;
		right: -15px;
	}
}

.header__products {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: absolute;
	max-height: 0px;
	overflow: hidden;
}

.header__search {
	font-size: 2rem;
	color: #000;
}

.header__toggle {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 4.5rem;
	height: 4.6rem;
	padding: 0.8rem;
	min-height: unset;
	margin: 0 0 0 auto;
	position: relative;
}

@media (min-width: 640px) {
	.header__toggle {
		margin-left: 0;
	}
}

@media (min-width: 700px) {
	.header__toggle {
		display: none;
	}
}

.header__icon-bar {
	width: 100%;
	max-width: 23px;
	height: 2px;
	background-color: black;
	-webkit-transition: -webkit-transform 0.2s ease;
	transition: -webkit-transform 0.2s ease;
	-o-transition: transform 0.2s ease;
	transition: transform 0.2s ease;
	transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.header__icon-bar:first-of-type, .header__icon-bar:last-of-type {
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
}

.header__icon-bar:first-of-type {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.header__icon-bar:last-of-type {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.header__icon-bar:nth-of-type(2) {
	display: none;
}

.header__toggle--collapsed .header__icon-bar {
	position: relative;
	overflow: visible;
}

.header__toggle--collapsed .header__icon-bar:first-of-type, .header__toggle--collapsed .header__icon-bar:last-of-type {
	-webkit-transform: rotate(0);
	-ms-transform: rotate(0);
	transform: rotate(0);
}

.header__toggle--collapsed .header__icon-bar:nth-of-type(2) {
	display: block;
}

.header__menu--collapse {
	max-height: 0;
	overflow: hidden;
	-webkit-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

@media (min-width: 700px) {
	.header__menu--collapse {
		overflow: visible;
		max-height: unset;
		-webkit-column-gap: 5rem;
		-moz-column-gap: 5rem;
		column-gap: 5rem;
	}
}

.header__search-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
}

.header__search-wrap.pc {
	display: none;
}

@media (min-width: 700px) {
	.header__search-wrap.pc {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}

.header__search-wrap.phone {
	margin-right: 10px;
}

@media (min-width: 700px) {
	.header__search-wrap.phone {
		display: none;
	}
}

.header__search-form {
	max-width: 0;
	position: absolute;
	margin-left: 20px;
	z-index: 20;
	-webkit-transform: translate(-100%, 100%);
	-ms-transform: translate(-100%, 100%);
	transform: translate(-100%, 100%);
}

@media (min-width: 1000px) {
	.header__search-form {
		position: unset;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
}

.header__search-bar {
	background-color: white;
	border-radius: 20px;
	width: 200px;
	-ms-flex-line-pack: center;
	align-content: center;
	padding: 5px 10px;
	-webkit-box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
	border: 2px #002c4d solid;
}

@media (min-width: 1280px) {
	.header__search-bar {
		width: 300px;
	}
}

.header__search-form--collapse {
	overflow: hidden;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

/* Modules */
.form__error-text {
	font-size: 1.3rem;
	color: #c33c26;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 0 6px 0;
}

.form__error-text::before {
	content: "";
	display: block;
	position: static;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 14px;
	height: 12px;
	margin: 0 5px 0 0;
	background: url("/img/alert.svg") 0/cover;
}

.form__item {
	-webkit-box-shadow: 0 14px 19px rgba(0, 0, 0, 0.06);
	box-shadow: 0 14px 19px rgba(0, 0, 0, 0.06);
	background: #fff;
	border-radius: 5px;
	padding-top: 12px;
	padding-left: 16px;
	padding-bottom: 20px;
	padding-right: 16px;
	color: #000;
}

@media (min-width: 1690px) {
	.form__item {
		max-width: 334px;
	}
}

.form__item--button {
	padding: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.form__label {
	color: #878787;
	font-size: 1.4rem;
}

.form__row-top {
	gap: 20px;
	margin-bottom: 15px;
}

@media (min-width: 1690px) {
	.form__row-top {
		gap: 0;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		margin-bottom: 35px;
	}
}

.form__input {
	font-size: 1.8rem;
	color: #000;
	width: 100%;
	height: 100%;
}

@media (min-width: 960px) {
	.form__input {
		font-size: 2.3rem;
	}
}

.form__textarea {
	font-size: 1.8rem;
	color: #000;
}

@media (min-width: 960px) {
	.form__textarea {
		font-size: 2.3rem;
	}
}

.form__item--textarea {
	max-width: unset;
}

@media (min-width: 1690px) {
	.form__item--textarea {
		width: 100%;
	}
}

/* Header Wrap */
.main-header {
	width: 100%;
	max-width: 1920px;
	z-index: 1;
	background: #994e04;
	overflow: hidden;
	margin: 0 auto 0 auto;
	padding-top: 100px;
	position: relative;
	padding-bottom: 100px;
}

.main-header--space-bottom {
	padding-bottom: 40px;
}

@media (min-width: 1280px) {
	.main-header--space-bottom {
		padding-bottom: 250px;
	}
}

@media (min-width: 960px) {
	.main-header--image {
		min-height: 800px;
		max-height: unset;
	}
}

@media (min-width: 1280px) {
	.main-header--image {
		min-height: 1010px;
	}
}

.main-header--color {
	background: -o-radial-gradient(35% 20%, ellipse 1300px 1800px, #002c4d 0%, #001930 100%);
	background: radial-gradient(ellipse 1300px 1800px at 35% 20%, #002c4d 0%, #001930 100%);
	z-index: 0;
	padding-top: 0;
}

.main-header--homepage {
	background: #994e04;
	overflow: hidden;
	margin: 0 auto 0 auto;
	padding-top: 100px;
	position: relative;
	width: 100%;
	max-width: 1920px;
	z-index: 1;
}

@media (min-width: 960px) {
	.main-header--homepage {
		min-height: 800px;
	}
}

@media (min-width: 1280px) {
	.main-header--homepage {
		min-height: 1120px;
	}
}

.main-header--homepage::after {
	content: "";
	display: block;
	position: absolute;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	left: 100px;
	background: -o-radial-gradient(closest-side, #994e04 0%, #994e04 100%);
	background: radial-gradient(closest-side, #994e04 0%, #994e04 100%);
	width: 1400px;
	height: 1800px;
	-webkit-transform: rotate(15deg);
	-ms-transform: rotate(15deg);
	transform: rotate(15deg);
	top: -20%;
	z-index: -1;
}

.main-header__wave {
	position: absolute;
	bottom: 0;
	width: 100%;
	left: 0;
}

/* Main Header */
.main-header__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	text-align: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	z-index: 2;
	padding-top: 180px;
	padding-bottom: 90px;
}

@media (min-width: 960px) {
	.main-header__content {
		padding-top: 190px;
		padding-bottom: 180px;
		text-align: left;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}

.main-header--color .main-header__content {
	padding-bottom: 0;
	padding-top: 250px;
}

.main-header--image .main-header__content {
	padding-top: 20px;
}

@media (min-width: 960px) {
	.main-header--image .main-header__content {
		padding-bottom: 180px;
		text-align: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

@media (min-width: 1000px) {
	.main-header--image .main-header__content {
		padding-bottom: 180px;
		text-align: left;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}

@media (min-width: 1690px) {
	.main-header--image .main-header__content {
		padding-bottom: 0;
		padding-top: 200px;
	}
}

.main-header__title {
	font-size: 3rem;
	font-family: 'Open Sans', sans-serif;
	margin-bottom: 30px;
	text-align: center;
	padding: 0 20px;
	font-weight: bold;
}

@media (min-width: 800px) {
	.main-header__title {
		padding: 0;
		font-weight: normal;
		font-size: 5rem;
	}
}

@media (min-width: 1000px) {
	.main-header__title {
		text-align: left;
	}
}

@media (min-width: 1280px) {
	.main-header__title {
		font-size: 6rem;
	}
}

@media (min-width: 1690px) {
	.main-header__title {
		font-size: 7.2rem;
	}
}

.main-header--image .main-header__title {
	color: #fff;
	margin-bottom: 10px;
}

@media (min-width: 1000px) {
	.main-header--image .main-header__title {
		padding-top: 60px;
	}
}

@media (min-width: 1690px) {
	.main-header--image .main-header__title {
		padding-top: 0;
	}
}

@media (min-width: 1690px) {
	.main-header--job-detail .main-header__title {
		padding-top: 0;
	}
}

.main-header__title--product-listing {
	margin-bottom: 45px;
}

@media (min-width: 640px) {
	.main-header__title--product-listing {
		margin-bottom: 65px;
	}
}

@media (min-width: 1690px) {
	.main-header__title--product-listing {
		max-width: 540px;
		font-size: 7.2rem;
	}
}

.main-header__perex {
	font-size: 2rem;
	color: #fff;
	margin-bottom: 35px;
	padding-right: 20px;
}

@media (min-width: 1000px) {
	.main-header__perex {
		font-size: 2.6rem;
		max-width: 450px;
		padding: 0;
	}
}

.main-header--color .main-header__perex {
	max-width: unset;
	margin-bottom: 45px;
}

@media (min-width: 640px) {
	.main-header--color .main-header__perex {
		margin-bottom: 75px;
	}
}

@media (min-width: 1280px) {
	.main-header--color .main-header__perex {
		margin-bottom: 0;
		max-width: 780px;
	}
}

.main-header--image .main-header__perex {
	max-width: unset;
	margin-bottom: 45px;
	color: #fff;
}

@media (min-width: 640px) {
	.main-header--image .main-header__perex {
		margin-bottom: 75px;
	}
}

@media (min-width: 1280px) {
	.main-header--image .main-header__perex {
		margin-bottom: 40px;
		max-width: 730px;
	}
}

.main-header--job-detail .main-header__perex {
	gap: 30px;
}

.main-header__link {
	text-decoration: underline;
	cursor: pointer;
}

.main-header__background {
	position: relative;
	width: auto;
	height: 500px;
}

@media (min-width: 1000px) {
	.main-header__background {
		position: absolute;
		top: 0;
		right: 0;
		width: 450px;
		height: 750px;
	}
}

@media (min-width: 1180px) {
	.main-header__background {
		width: 600px;
	}
}

@media (min-width: 1690px) {
	.main-header__background {
		width: 970px;
	}
}

.main-header--image .main-header__background {
	position: relative;
	width: 100%;
	height: 100%;
}

@media (min-width: 1000px) {
	.main-header--image .main-header__background {
		position: absolute;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
	}
}

@media (min-width: 1180px) {
	.main-header--image .main-header__background {
		width: 100%;
	}
}

@media (min-width: 1690px) {
	.main-header--image .main-header__background {
		width: 100%;
	}
}

.main-header__figure {
	position: relative;
	height: 100%;
}

@media (min-width: 1000px) {
	.main-header__figure {
		-webkit-mask-image: url(/img/homepage_maska.svg);
		mask-image: url(/img/homepage_maska.svg);
		-webkit-mask-size: 100% 100%;
		mask-size: 100% 100%;
	}
}

.main-header--image .main-header__figure {
	position: relative;
}

@media (min-width: 1000px) {
	.main-header--image .main-header__figure {
		-webkit-mask-image: none;
		mask-image: none;
		-webkit-mask-size: 0;
		mask-size: 0;
	}

	.main-header--image .main-header__figure:before {
		content: "";
		display: block;
		position: absolute;
		-ms-flex-negative: 0;
		flex-shrink: 0;
		background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.71)), to(rgba(0, 0, 0, 0)));
		background: -o-linear-gradient(left, rgba(0, 0, 0, 0.71) 0%, rgba(0, 0, 0, 0) 100%);
		background: linear-gradient(90deg, rgba(0, 0, 0, 0.71) 0%, rgba(0, 0, 0, 0) 100%);
		width: 100%;
		height: 100%;
	}
}

.main-header__img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.main-header__product-figure {
	height: auto;
	width: 250px;
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translate(-50%, 50%);
	-ms-transform: translate(-50%, 50%);
	transform: translate(-50%, 50%);
	-webkit-box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
}

@media (min-width: 960px) {
	.main-header__product-figure {
		width: 350px;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		right: 50%;
		left: auto;
		top: 60%;
	}
}

@media (min-width: 1690px) {
	.main-header__product-figure {
		width: 490px;
		right: 59%;
		top: 44%;
	}
}

.main-header__cheese-product-img {
	max-height: 490px;
	height: 100%;
}

.main-header__button {
	font-size: 1.2rem;
}

@media (min-width: 330px) {
	.main-header__button {
		font-size: 1.5rem;
	}
}

@media (min-width: 1280px) {
	.main-header--image .main-header__button {
		padding-top: 25px;
		padding-bottom: 25px;
		padding-right: 90px;
		padding-left: 90px;
	}
}

.main-header--job-detail .main-header__button {
	margin-bottom: 20px;
}

@media (min-width: 1280px) {
	.main-header--job-detail .main-header__button {
		margin-bottom: 0;
	}
}

.main-header__button--job-listing {
	margin-bottom: 25px;
}

@media (min-width: 1280px) {
	.main-header__button--job-listing {
		margin-bottom: 0;
	}
}

/* Quote */
.quote {
	padding-bottom: 150px;
}

.quote__content {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

@media (min-width: 960px) {
	.quote__content {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}
}

.quote__figure {
	max-width: 785px;
	min-width: 300px;
	width: 50%;
	position: relative;
}

@media (min-width: 960px) {
	.quote__figure {
		width: 100%;
	}
}

.quote__shape {
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
}

.quote__img {
	position: relative;
	z-index: 1;
}

.quote__signature-figure {
	width: 151px;
	height: 91px;
}

@media (min-width: 1280px) {
	.quote__signature-figure {
		width: 181px;
		height: 109px;
	}
}

@media (min-width: 1690px) {
	.quote__signature-figure {
		width: 244px;
		height: 147px;
	}
}

.quote__signature-img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.quote__description {
	text-align: center;
}

@media (min-width: 960px) {
	.quote__description {
		text-align: left;
	}
}

@media (min-width: 1280px) {
	.quote__description {
		text-align: left;
	}
}

.quote__title {
	margin-bottom: 12px;
	font-size: 2.6rem;
	text-align: center;
}

@media (min-width: 960px) {
	.quote__title {
		margin-bottom: 20px;
		font-size: 2.4rem;
		text-align: left;
	}
}

@media (min-width: 1280px) {
	.quote__title {
		font-size: 3rem;
		margin-bottom: 20px;
		text-align: left;
	}
}

@media (min-width: 1690px) {
	.quote__title {
		font-size: 3.7rem;
		margin-bottom: 20px;
		text-align: left;
	}
}

.quote__text {
	color: #fff;
	margin-bottom: 25px;
	font-size: 1.3rem;
}

@media (min-width: 960px) {
	.quote__text {
		font-size: 1.5rem;
		margin-bottom: 25px;
	}
}

@media (min-width: 1280px) {
	.quote__text {
		font-size: 1.7rem;
		margin-bottom: 40px;
	}
}

@media (min-width: 1690px) {
	.quote__text {
		font-size: 2rem;
		margin-bottom: 40px;
	}
}

.quote__signature-description {
	margin: -15px 0 0 0px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 250px;
}

@media (min-width: 960px) {
	.quote__signature-description {
		margin: -25px 0 0 80px;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}

@media (min-width: 1280px) {
	.quote__signature-description {
		margin: -40px 0 0 95px;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}

@media (min-width: 1690px) {
	.quote__signature-description {
		margin: -40px 0 0 130px;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}

.quote__signature {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media (min-width: 960px) {
	.quote__signature {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
}

@media (min-width: 1280px) {
	.quote__signature {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
}

.quote__text-part {
	max-width: 741px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-left: 0px;
}

@media (min-width: 960px) {
	.quote__text-part {
		padding-left: 71px;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}

@media (min-width: 1280px) {
	.quote__text-part {
		padding-left: 111px;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}

.quote__name {
	font-size: 1.8rem;
}

@media (min-width: 1280px) {
	.quote__name {
		font-size: 2.2rem;
	}
}

@media (min-width: 1690px) {
	.quote__name {
		font-size: 2.8rem;
	}
}

.quote__work-title {
	font-size: 1.3rem;
}

@media (min-width: 1280px) {
	.quote__work-title {
		font-size: 1.5rem;
	}
}

@media (min-width: 1690px) {
	.quote__work-title {
		font-size: 1.7rem;
	}
}

.quote__picture-part {
	padding-bottom: 25px;
}

@media (min-width: 960px) {
	.quote__picture-part {
		padding-bottom: 0px;
	}
}

.info-section {
	padding: 20px 0;
	border-top-width: 1px;
	border-top-style: solid;
	border-color: #E6E6E6;
	margin-bottom: 20px;
}

@media (min-width: 960px) {
	.info-section {
		margin-bottom: 70px;
	}
}

@media (min-width: 1280px) {
	.info-section {
		margin-bottom: 100px;
	}
}

@media (min-width: 1690px) {
	.info-section {
		margin-bottom: 140px;
	}
}

/* INFO-SECTION - ROW */
.info-section__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (min-width: 1280px) {
	.info-section__row {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}

/* INFO-SECTION - COLUMN */
.info-section__column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	max-width: 500px;
	margin-bottom: 20px;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

@media (min-width: 1280px) {
	.info-section__column {
		max-width: 100%;
		margin-bottom: 0;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
	}
}

/* INFO-SECTION - COLUMN-INFO */
.info-section__column-wrap {
	padding-right: 0px;
	padding-top: 40px;
}

@media (min-width: 1280px) {
	.info-section__column-wrap {
		padding-right: 70px;
	}
}

.info-section__title {
	font-size: 2.8rem;
	margin-bottom: 30px;
}

.info-section__desc {
	font-size: 1.6rem;
	margin-bottom: 33px;
}

.info-section__more-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.info-section__more {
	color: black;
	font-size: 2.2rem;
	margin-right: 6px;
}

.info-section__more-icon {
	height: 25px;
	width: 25px;
	background-color: #002c4d;
	border-radius: 50%;
	display: inline-block;
	z-index: 2;
}

.info-section__more-icon::before {
	content: "";
	display: block;
	position: relative;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 8px;
	height: 8px;
	color: white;
	border-right: 2px solid;
	border-top: 2px solid;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	left: 8px;
	top: 8px;
}

/* INFO-SECTION - COLUMN-CONTACT */
.info-section__contact-wrap {
	-webkit-box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
	background-color: white;
	margin-top: 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-bottom-style: solid;
	border-bottom-width: 7px;
	border-bottom-color: #002c4d;
	width: 260px;
	padding: 25px;
}

@media (min-width: 1280px) {
	.info-section__contact-wrap {
		margin-top: -50px;
		width: 240px;
	}
}

@media (min-width: 1690px) {
	.info-section__contact-wrap {
		padding: 40px;
		width: 290px;
	}
}

.info-section__portrait {
	border-radius: 50%;
	max-width: 101px;
	max-height: 101px;
	margin-bottom: 20px;
	overflow: hidden;
}

.info-section__portrait-img {
	border-radius: 50%;
}

.info-section__name {
	color: black;
	font-size: 2.6rem;
	margin-bottom: 10px;
	text-align: center;
}

.info-section__position {
	font-size: 1.8rem;
	margin-bottom: 30px;
}

.info-section__phone {
	color: black;
	font-size: 2rem;
	margin-bottom: 10px;
}

.info-section__mail {
	color: #002c4d;
	text-decoration: underline;
	font-size: 2rem;
}

/* INFO-SECTION - CERTIFICATES */
.info-section__figure {
	width: 260px;
	height: 370px;
	margin-top: 0px;
}

@media (min-width: 1280px) {
	.info-section__figure {
		margin-top: -50px;
		width: 240px;
	}
}

@media (min-width: 1690px) {
	.info-section__figure {
		width: 290px;
	}
}

.info-section__img {
	max-width: 100%;
}

.product-categories {
	padding-bottom: 120px;
	margin-top: -170px;
	position: relative;
	z-index: 1;
}

/* PRODUCT-CATEGORIES - ROW */
.product-categories__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	row-gap: 20px;
}

@media (min-width: 1280px) {
	.product-categories__row {
		row-gap: 0;
	}
}

/* PRODUCT-CATEGORIES - COLUMN */
.product-categories__column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (min-width: 1280px) {
	.product-categories__column {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}

/* PRODUCT-CATEGORIES - DESC */
.product-categories__title {
	font-size: 3rem;
	margin-bottom: 10px;
	text-align: center;
}

@media (min-width: 1280px) {
	.product-categories__title {
		margin-bottom: 25px;
		text-align: start;
		font-size: 3.7rem;
	}
}

.product-categories__desc {
	font-size: 1.8rem;
	color: black;
	padding-right: 0;
	text-align: center;
}

@media (min-width: 1280px) {
	.product-categories__desc {
		padding-right: 90px;
		text-align: start;
		font-size: 2rem;
	}
}

/* PRODUCT-CATEGORIES - PRODUCT */
.product-categories__product {
	background-color: #FFFFFF;
	border-radius: 5px;
	-webkit-box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
	max-height: 460px;
	max-width: 450px;
	width: 100%;
	padding: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-bottom-width: 7px;
	border-bottom-style: solid;
	border-bottom-color: #002c4d;
}

@media (min-width: 1280px) {
	.product-categories__product {
		height: 400px;
		max-width: 536px;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}

@media (min-width: 1690px) {
	.product-categories__product {
		height: 480px;
	}
}

.product-categories__name {
	font-size: 2.3rem;
	color: black;
	margin-right: 15px;
}

@media (min-width: 1280px) {
	.product-categories__name {
		font-size: 2.6rem;
	}
}

.product-categories__name-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/* PRODUCT-CATEGORIES - IMG */
.product-categories__figure {
	width: 220px;
	height: 220px;
	margin-bottom: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media (min-width: 480px) {
	.product-categories__figure {
		width: 360px;
		height: 320px;
	}
}

@media (min-width: 1280px) {
	.product-categories__figure {
		width: 310px;
	}
}

@media (min-width: 1690px) {
	.product-categories__figure {
		width: 450px;
	}
}

.product-categories__img {
	max-width: 100%;
	max-height: 100%;
}

/* PRODUCT-CATEGORIES - ICON */
.product-categories__name-icon {
	height: 28px;
	width: 32px;
	background-color: #002c4d;
	border-radius: 50%;
	display: inline-block;
	z-index: 2;
}

@media (min-width: 320px) {
	.product-categories__name-icon {
		height: 32px;
		width: 32px;
	}
}

.product-categories__name-icon::before {
	content: "";
	display: block;
	position: relative;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 8px;
	height: 8px;
	color: white;
	border-right: 2px solid;
	border-top: 2px solid;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	left: 7px;
	top: 10px;
}

@media (min-width: 320px) {
	.product-categories__name-icon::before {
		left: 11px;
		top: 12px;
	}
}

.zig-zag__box {
	margin: 0 auto;
	padding-top: 70px;
	padding-bottom: 120px;
}

.zig-zag__box div:last-of-type {
	margin-bottom: 0;
}

.zig-zag__text-wrapper {
	padding: 15px 10px;
	max-width: 667px;
}

@media (min-width: 960px) {
	.zig-zag__text-wrapper {
		padding: 20px 30px 25px 40px;
		max-width: unset;
	}
}

@media (min-width: 1690px) {
	.zig-zag__text-wrapper {
		padding: 45px 0 70px 165px;
	}
}

.zig-zag__text {
	font-size: 1.6rem;
	color: #000;
}

@media (min-width: 960px) {
	.zig-zag__text {
		font-size: 2rem;
	}
}

.zig-zag__text-wrapper--reverse {
	padding: 15px 10px;
}

@media (min-width: 960px) {
	.zig-zag__text-wrapper--reverse {
		padding: 20px 40px 25px 30px;
	}
}

@media (min-width: 1690px) {
	.zig-zag__text-wrapper--reverse {
		padding: 45px 165px 70px 0;
	}
}

.zig-zag__title {
	margin-bottom: 15px;
}

@media (min-width: 960px) {
	.zig-zag__title {
		margin-bottom: 30px;
	}
}

.zig-zag__row {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 20px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (min-width: 960px) {
	.zig-zag__row {
		margin-bottom: 65px;
	}
}

@media (min-width: 1690px) {
	.zig-zag__row {
		margin-bottom: 120px;
	}
}

.zig-zag__figure {
	max-width: 812px;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	background: yellow;
	height: 40vw;
	border-radius: 5px;
	overflow: hidden;
}

@media (min-width: 640px) {
	.zig-zag__figure {
		height: 300px;
	}
}

@media (min-width: 1280px) {
	.zig-zag__figure {
		height: 400px;
	}
}

@media (min-width: 1690px) {
	.zig-zag__figure {
		height: 507px;
	}
}

.zig-zag__img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.zig-zag__row--reverse {
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
}

@media (min-width: 960px) {
	.zig-zag__row--reverse {
		-webkit-box-orient: unset;
		-webkit-box-direction: unset;
		-ms-flex-direction: unset;
		flex-direction: unset;
	}
}

.nutritional-table__title {
	margin-bottom: 10px;
}

@media (min-width: 960px) {
	.nutritional-table__title {
		margin-bottom: 20px;
	}
}

.nutritional-table__table-row {
	border-bottom: 1px solid #e1e1e1;
}

.nutritional-table__table-row:last-of-type {
	border-bottom: none;
}

.nutritional-table__cell {
	padding-top: 15px;
	padding-bottom: 15px;
	font-size: 1.6rem;
	color: #000;
}

.nutritional-table__cell:last-of-type {
	font-weight: bold;
}

@media (min-width: 640px) {
	.nutritional-table__cell {
		font-size: 2rem;
	}
}

.time-line {
	background: #e4e3de;
	padding-top: 50px;
	padding-bottom: 75px;
	margin-bottom: 25px;
}

@media (min-width: 960px) {
	.time-line {
		margin-bottom: 50px;
	}
}

@media (min-width: 1690px) {
	.time-line {
		margin-bottom: 100px;
	}
}

.time-line__columns-wrapper {
	display: none;
}

@media (min-width: 975px) {
	.time-line__columns-wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin-bottom: 35px;
	}
}

.time-line__column-xs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	max-width: 650px;
	margin-bottom: 20px;
}

@media (min-width: 975px) {
	.time-line__column-xs {
		display: none;
		max-width: unset;
	}
}

.time-line__left-column {
	position: relative;
}

@media (min-width: 960px) {
	.time-line__left-column::after {
		content: "";
		display: block;
		position: absolute;
		-ms-flex-negative: 0;
		flex-shrink: 0;
		width: 32px;
		height: 32px;
		border-radius: 50%;
		top: 0;
		right: -15px;
		left: auto;
		bottom: 0;
		margin-top: auto;
		background: #002c4d;
	}
}

.time-line__right-column {
	-ms-flex-line-pack: end;
	align-content: flex-end;
	padding-top: 140px;
}

.time-line__box {
	background: #fff;
	-webkit-filter: drop-shadow(0 3px 19px rgba(0, 0, 0, 0.06));
	filter: drop-shadow(0 3px 19px rgba(0, 0, 0, 0.06));
	padding-left: 20px;
	padding-top: 15px;
	padding-bottom: 25px;
	padding-right: 15px;
	margin-bottom: 20px;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 5px;
}

@media (min-width: 975px) {
	.time-line__box {
		max-width: 420px;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}

@media (min-width: 1280px) {
	.time-line__box {
		padding-left: 40px;
		padding-top: 35px;
		padding-bottom: 50px;
		padding-right: 25px;
		max-width: 550px;
		margin-bottom: 40px;
	}
}

@media (min-width: 1690px) {
	.time-line__box {
		max-width: 770px;
	}
}

@media (min-width: 975px) {
	.time-line__box-left::before {
		content: "";
		position: absolute;
		right: 0;
		top: 50%;
		width: 0;
		height: 0;
		border: 10px solid transparent;
		border-left-color: #fff;
		border-right: 0;
		margin-top: -13px;
		margin-right: -10px;
	}

	.time-line__box-left::after {
		content: "";
		display: block;
		position: absolute;
		-ms-flex-negative: 0;
		flex-shrink: 0;
		width: 32px;
		height: 32px;
		border-radius: 50%;
		top: 0;
		right: -65px;
		left: auto;
		bottom: 0;
		margin: auto 0;
		background: #002c4d;
	}
}

@media (min-width: 975px) {
	.time-line__box-right::before {
		content: "";
		position: absolute;
		left: 0;
		top: 50%;
		width: 0;
		height: 0;
		border: 10px solid transparent;
		border-right-color: #fff;
		border-left: 0;
		margin-top: -13px;
		margin-left: -10px;
	}

	.time-line__box-right::after {
		content: "";
		display: block;
		position: absolute;
		-ms-flex-negative: 0;
		flex-shrink: 0;
		width: 32px;
		height: 32px;
		border-radius: 50%;
		top: 0;
		right: auto;
		left: -67px;
		bottom: 0;
		margin: auto 0;
		background: #002c4d;
	}
}

@media (min-width: 960px) {
	.time-line__box-last-dot::after {
		content: "";
		display: block;
		position: absolute;
		-ms-flex-negative: 0;
		flex-shrink: 0;
		width: 32px;
		height: 32px;
		border-radius: 50%;
		top: 0;
		right: auto;
		left: -67px;
		bottom: 0;
		margin: auto 0;
		background: #002c4d;
	}
}

.time-line__box-texts {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 20px;
}

@media (min-width: 975px) {
	.time-line__box-texts {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		margin-bottom: 0;
	}
}

.time-line__line {
	display: none;
}

@media (min-width: 960px) {
	.time-line__line {
		display: block;
		width: 4px;
		background: #994e04;
		position: absolute;
		right: -1px;
		top: 100px;
		bottom: 0;
	}
}

.time-line__title {
	text-align: center;
	margin-bottom: 15px;
}

@media (min-width: 1280px) {
	.time-line__title {
		margin-bottom: 25px;
	}
}

.time-line__box-title {
	margin-bottom: 10px;
	text-align: center;
}

@media (min-width: 975px) {
	.time-line__box-title {
		text-align: left;
	}
}

.time-line__perex {
	font-size: 1.6rem;
	text-align: center;
	color: #000;
	max-width: 667px;
	margin-bottom: 50px;
}

@media (min-width: 1280px) {
	.time-line__perex {
		font-size: 2rem;
		margin-bottom: 100px;
	}
}

.time-line__box-perex {
	font-size: 1.4rem;
	text-align: center;
}

@media (min-width: 975px) {
	.time-line__box-perex {
		text-align: left;
	}
}

@media (min-width: 1280px) {
	.time-line__box-perex {
		font-size: 1.6rem;
	}
}

.time-line__box-year {
	font-size: 1.8rem;
	color: #002c4d;
	font-weight: bold;
	margin-bottom: 10px;
}

@media (min-width: 1280px) {
	.time-line__box-year {
		font-size: 2rem;
	}
}

.time-line__text {
	text-align: center;
}

.time-line__box-figure {
	width: 120px;
	height: 114px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	border-radius: 5px;
	overflow: hidden;
}

@media (min-width: 975px) {
	.time-line__box-figure {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		margin-left: 15px;
	}
}

@media (min-width: 1280px) {
	.time-line__box-figure {
		width: 180px;
		height: 170px;
		margin-left: 30px;
	}
}

@media (min-width: 1690px) {
	.time-line__box-figure {
		width: 240px;
		height: 227px;
		margin-left: 60px;
		margin-top: -30px;
		margin-bottom: -40px;
	}
}

.time-line__box-img {
	max-width: 100%;
	max-height: 100%;
}

.contact-form__wrapper {
	background: #e4e3de;
	padding: 50px 10px;
	margin-bottom: 50px;
}

@media (min-width: 1280px) {
	.contact-form__wrapper {
		padding: 100px 0;
		margin-bottom: 120px;
	}
}

.contact-form__column {
	margin: 0 auto;
}

.contact-form__upload {
	margin-bottom: 15px;
	background: #fff;
	-webkit-box-shadow: 0 14px 19px rgba(0, 0, 0, 0.06);
	box-shadow: 0 14px 19px rgba(0, 0, 0, 0.06);
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	border-radius: 5px;
}

@media (min-width: 480px) {
	.contact-form__upload {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}

@media (min-width: 960px) {
	.contact-form__upload {
		margin-bottom: 35px;
	}
}

.contact-form__top-texts {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 40px;
}

@media (min-width: 1280px) {
	.contact-form__top-texts {
		margin-bottom: 80px;
	}
}

.contact-form__title {
	text-align: center;
}

.contact-form__perex {
	text-align: center;
	font-size: 2.4rem;
}

@media (min-width: 1280px) {
	.contact-form__perex {
		font-size: 3.7rem;
	}
}

.form__terms {
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center;
	font-size: 1.4rem;
}

@media (min-width: 1280px) {
	.form__terms {
		margin-top: 40px;
		margin-bottom: 40px;
	}
}

.contact-form__choose-file {
	font-size: 1.8rem;
	padding-right: 35px;
	padding-left: 50px;
	padding-top: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #e1e1e1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 10px;
}

.contact-form__choose-file::before {
	margin-right: 11px;
	font-size: 18px;
}

@media (min-width: 480px) {
	.contact-form__choose-file {
		border-right: 1px solid #e1e1e1;
		border-bottom: none;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		margin-bottom: 0;
	}
}

.contact-form__choose-file:hover {
	background: #002c4d;
	color: #fff;
	-webkit-transition: ease;
	-o-transition: ease;
	transition: ease;
	border-radius: 5px;
}

.contact-form__file-name {
	font-size: 2.3rem;
	color: #000;
	margin-bottom: 10px;
}

@media (min-width: 480px) {
	.contact-form__file-name {
		margin-bottom: 0;
		padding-left: 35px;
	}
}

.form__terms-link {
	color: #878787;
	font-size: 1.4rem;
}

.job-detail__columns-wrapper {
	margin-bottom: 20px;
}

@media (min-width: 1280px) {
	.job-detail__columns-wrapper {
		margin-bottom: 90px;
	}
}

@media (min-width: 960px) {
	.job-detail__right-column {
		margin-bottom: 90px;
		margin-top: -145px;
	}
}

.job-item__content {
	padding-right: 45px;
	padding-top: 40px;
	padding-bottom: 40px;
	padding-left: 45px;
	border-radius: 5px;
	background: #fff;
	-webkit-box-shadow: 0 3px 19px rgba(0, 0, 0, 0.06);
	box-shadow: 0 3px 19px rgba(0, 0, 0, 0.06);
}

.job-item__button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.job-item__button:hover {
	color: #002c4d;
	text-decoration: underline;
	font-weight: bold;
}

.job-item__title {
	margin-bottom: 20px;
}

.job-item__title:hover {
	-webkit-text-decoration: underline #002c4d;
	text-decoration: underline #002c4d;
	font-weight: bold;
}

.job-item__perex {
	margin-bottom: 15px;
	font-size: 1.6rem;
	color: #000;
}

@media (min-width: 960px) {
	.job-item__perex {
		font-size: 2rem;
		margin-bottom: 3rem;
	}
}

.job-item__button-text {
	font-size: 2.8rem;
	color: #000;
	margin-right: 16px;
}

.job-item__button-arrow {
	background: #002c4d;
	width: 32px;
	height: 32px;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 50%;
	overflow: hidden;
}

.job-item__button-arrow::after {
	content: "";
	display: block;
	position: absolute;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 10px;
	height: 10px;
	border: 2px solid #fff;
	border-left: 0;
	border-top: 0;
	rotate: 315deg;
	left: 9px;
	border-radius: 1px;
}

.contact-box {
	background: #e4e3de;
	padding: 35px 0 60px 0;
	margin-bottom: 70px;
	max-width: 1920px;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 960px) {
	.contact-box {
		padding: 70px 0 120px 0;
		margin-bottom: 140px;
	}
}

.contact-box__content {
	row-gap: 35px;
}

@media (min-width: 960px) {
	.contact-box__content {
		row-gap: 70px;
	}
}

.contact-box__title {
	margin-bottom: 20px;
}

@media (min-width: 960px) {
	.contact-box__title {
		margin-bottom: 40px;
	}
}

.contact-box__include {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	row-gap: 20px;
}

@media (min-width: 960px) {
	.contact-box__include {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}

.contact-box-item__position {
	margin-bottom: 5px;
	font-size: 1.6rem;
	color: #878787;
}

@media (min-width: 960px) {
	.contact-box-item__position {
		font-size: 1.8rem;
	}
}

.contact-box-item__phone {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	color: #002c4d;
}

.contact-box-item__phone::before {
	font-size: 1.6rem;
}

.contact-box-item__mail-link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}

.contact-box-item__mail-link::before {
	color: #002c4d;
	font-size: 1.5rem;
}

.contact-box-item__phone-number {
	color: #000;
}

.contact-box-item__contacts {
	gap: 5px;
	font-size: 1.5rem;
}

@media (min-width: 960px) {
	.contact-box-item__contacts {
		font-size: 2rem;
	}
}

.contact-box-item__content {
	border-radius: 5px;
	background: #fff;
	-webkit-box-shadow: 0 3px 19px rgba(0, 0, 0, 0.06);
	box-shadow: 0 3px 19px rgba(0, 0, 0, 0.06);
	padding: 30px;
	min-height: 213px;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.contact-box-item__position {
	margin-bottom: 15px;
}

@media (min-width: 960px) {
	.contact-box-item__position {
		margin-bottom: 25px;
	}
}

.contact-box-page__content {
	margin-top: 40px;
	margin-bottom: 45px;
}

@media (min-width: 960px) {
	.contact-box-page__content {
		margin-top: 0;
	}
}

@media (min-width: 1280px) {
	.contact-box-page__content {
		margin-top: -200px;
		margin-bottom: 90px;
	}
}

.contact-box-page__row {
	row-gap: 16px;
}

.contact-box-page__figure {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

@media (min-width: 960px) {
	.contact-box-page__figure {
		width: 150px;
		height: 150px;
	}
}

.contact-box-page__img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center top;
	object-position: center top;
}

.contact-box-page__box--with-photo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
}

@media (min-width: 960px) {
	.contact-box-page__box--with-photo {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
}

.contact-box-page__box-content {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	min-width: 0;
}

.contact-box-page__box {
	background: #fff;
	padding: 15px 20px 25px;
	border-radius: 5px;
	-webkit-box-shadow: 0 3px 19px rgba(0, 0, 0, 0.06);
	box-shadow: 0 3px 19px rgba(0, 0, 0, 0.06);
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%;
}

@media (min-width: 960px) {
	.contact-box-page__box {
		padding-left: 40px;
		padding-top: 30px;
		padding-bottom: 55px;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}

.contact-box-page__title {
	margin-bottom: 10px;
	text-align: center;
	color: #000;
}

@media (min-width: 960px) {
	.contact-box-page__title {
		margin-bottom: 20px;
		text-align: left;
		font-size: 3.7rem;
	}
}

.contact-box-page__texts {
	font-size: 1.4rem;
	text-align: center;
	color: #000;
}

@media (min-width: 960px) {
	.contact-box-page__texts {
		font-size: 1.6rem;
		text-align: left;
		max-width: 365px;
	}
}

.contact-box-page__texts--invoicing {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
}

@media (min-width: 960px) {
	.contact-box-page__texts--invoicing {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		gap: 0;
		margin-bottom: 25px;
	}
}

.contact-box-page__texts--registration-address {
	margin-bottom: 10px;
}

@media (min-width: 960px) {
	.contact-box-page__texts--registration-address {
		margin-bottom: 20px;
	}
}

.contact-box-page__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	row-gap: 15px;
}

@media (min-width: 960px) {
	.contact-box-page__list {
		row-gap: 30px;
	}
}

.contact-box-page__list-link {
	font-size: 1.8rem;
}

@media (min-width: 960px) {
	.contact-box-page__list-link {
		font-size: 2.3rem;
	}
}

.contact-box-page__list-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.contact-box-page__list-item::before {
	color: #002c4d;
	font-size: 1.8rem;
	margin-right: 11px;
}

@media (min-width: 960px) {
	.contact-box-page__list-item::before {
		font-size: 2.3rem;
	}
}

@media (min-width: 960px) {
	.contact-box-page__list-item {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
}

.contact-box-page__list-item--fax::before {
	font-size: 1.6rem;
}

@media (min-width: 960px) {
	.contact-box-page__list-item--fax::before {
		font-size: 1.9rem;
	}
}

.contact-box-page__list-item--mail::before {
	font-size: 1.7rem;
}

@media (min-width: 960px) {
	.contact-box-page__list-item--mail::before {
		font-size: 2.1rem;
	}
}

.contact-map__content {
	margin-bottom: 50px;
}

@media (min-width: 1280px) {
	.contact-map__content {
		margin-bottom: 100px;
	}
}

.contact-map__flexbox {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
}

@media (min-width: 960px) {
	.contact-map__flexbox {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		gap: 0;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
	}
}

.contact-map__map {
	border-radius: 5px;
	overflow: hidden;
	border: 0;
	width: 100%;
	height: 100%;
}

.contact-map__map-box {
	height: 300px;
}

@media (min-width: 480px) {
	.contact-map__map-box {
		height: 350px;
	}
}

@media (min-width: 640px) {
	.contact-map__map-box {
		height: 500px;
	}
}

@media (min-width: 960px) {
	.contact-map__map-box {
		height: auto;
	}
}

.contact-map__figure {
	aspect-ratio: 1;
	max-width: 288px;
	margin: 0 auto;
	z-index: 1;
	position: relative;
}

@media (min-width: 480px) {
	.contact-map__figure {
		max-width: 430px;
	}
}

@media (min-width: 640px) {
	.contact-map__figure {
		max-width: 500px;
	}
}

@media (min-width: 960px) {
	.contact-map__figure {
		max-width: unset;
	}
}

.contact-map__img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 5px;
	overflow: hidden;
}

.contact-map__logobox {
	position: absolute;
	left: 113px;
	right: 0;
	top: 175px;
	bottom: 0;
}

@media (min-width: 480px) {
	.contact-map__logobox {
		left: 185px;
		right: 0;
		top: 285px;
		bottom: 0;
	}
}

@media (min-width: 640px) {
	.contact-map__logobox {
		left: 220px;
		right: 0;
		top: 340px;
		bottom: 0;
	}
}

@media (min-width: 960px) {
	.contact-map__logobox {
		left: 188px;
		right: 0;
		top: 290px;
		bottom: 0;
	}
}

@media (min-width: 1280px) {
	.contact-map__logobox {
		left: 155px;
		right: 0;
		top: 230px;
		bottom: 0;
	}
}

@media (min-width: 1690px) {
	.contact-map__logobox {
		left: 230px;
		right: 0;
		top: 350px;
		bottom: 0;
	}
}

.contact-map__logo-figure {
	width: 70px;
	height: 50px;
	position: relative;
	background: #fff;
	padding: 8px 6px;
	z-index: 2;
	border-radius: 5px;
	-webkit-box-shadow: 0 3px 19px rgba(0, 0, 0, 0.06);
	box-shadow: 0 3px 19px rgba(0, 0, 0, 0.06);
}

.contact-map__logo-figure::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-top-color: #fff;
	border-bottom: 0;
	margin-left: -13px;
	margin-bottom: -9px;
}

@media (min-width: 960px) {
	.contact-map__logo-figure {
		width: 100px;
		height: 80px;
		padding: 16px 13px;
	}
}

.contact-map__logo {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.quick-contact__content {
	background: #fff;
	padding-top: 20px;
	padding-left: 20px;
	padding-bottom: 20px;
	padding-right: 20px;
	border-bottom: 7px solid #002c4d;
	border-radius: 5px;
	-webkit-box-shadow: 0 3px 19px rgba(0, 0, 0, 0.06);
	box-shadow: 0 3px 19px rgba(0, 0, 0, 0.06);
	margin-bottom: 25px;
}

@media (min-width: 960px) {
	.quick-contact__content {
		padding-top: 40px;
		padding-left: 40px;
		padding-bottom: 55px;
		padding-right: 75px;
		margin-bottom: 75px;
	}
}

.quick-contact__photobox {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 45px;
}

.quick-contact__info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

@media (min-width: 960px) {
	.quick-contact__contacts {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

.quick-contact__figure {
	width: 101px;
	height: 101px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 20px;
}

.quick-contact__img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.quick-contact__title {
	margin-bottom: 10px;
}

.quick-contact__perex {
	max-width: 358px;
	font-size: 2rem;
	color: #000;
	margin-bottom: 40px;
}

.quick-contact__name {
	font-size: 2.6rem;
	color: #000;
}

.quick-contact__position {
	color: #878787;
	font-size: 1.8rem;
}

.quick-contact__contact {
	font-size: 20px;
	line-height: 1.5;
}

.quick-contact__contact--phone {
	color: #000;
	margin-right: 20px;
}

.quick-contact__contact--phone::before {
	font-size: 17px;
	color: #002c4d;
}

@media (min-width: 960px) {
	.quick-contact__contact--phone {
		margin-right: 0;
	}
}

.quick-contact__contact--mail {
	text-decoration: underline;
}

.quick-contact__contact--mail::before {
	font-size: 14px;
	color: #002c4d;
	margin-right: 10px;
}

.product-list__flexbox {
	row-gap: 25px;
	z-index: 3;
}

@media (min-width: 960px) {
	.product-list__flexbox {
		margin-top: -100px;
	}
}

@media (min-width: 1280px) {
	.product-list__flexbox {
		margin-top: -300px;
	}
}

.product-item__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 30px;
	padding-bottom: 30px;
	padding-left: 20px;
	padding-right: 20px;
	background: #fff;
	-webkit-box-shadow: 0 3px 19px rgba(0, 0, 0, 0.06);
	box-shadow: 0 3px 19px rgba(0, 0, 0, 0.06);
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	max-width: 730px;
}

@media (min-width: 640px) {
	.product-item__content {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		gap: 30px;
		-ms-flex-item-align: center;
		align-self: center;
	}
}

@media (min-width: 960px) {
	.product-item__content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 20px;
		-ms-flex-item-align: unset;
		align-self: unset;
	}
}

@media (min-width: 1690px) {
	.product-item__content {
		padding-top: 60px;
		padding-bottom: 60px;
		padding-left: 70px;
		padding-right: 80px;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		gap: 0;
		max-width: unset;
	}
}

.product-item__button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.product-item__button:hover {
	-webkit-text-decoration: underline #002c4d;
	text-decoration: underline #002c4d;
	font-weight: bold;
}

@media (min-width: 640px) {
	.product-item__button {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
}

@media (min-width: 960px) {
	.product-item__button {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

@media (min-width: 1690px) {
	.product-item__button {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
}

.product-item__title {
	text-align: center;
}

.product-item__title:hover {
	-webkit-text-decoration: underline #002c4d;
	text-decoration: underline #002c4d;
	font-weight: bold;
}

@media (min-width: 640px) {
	.product-item__title {
		text-align: left;
	}
}

@media (min-width: 960px) {
	.product-item__title {
		text-align: center;
	}
}

@media (min-width: 1690px) {
	.product-item__title {
		text-align: left;
	}
}

.product-item__texts {
	max-width: 291px;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
}

@media (min-width: 640px) {
	.product-item__texts {
		text-align: left;
	}
}

@media (min-width: 960px) {
	.product-item__texts {
		text-align: center;
	}
}

@media (min-width: 1690px) {
	.product-item__texts {
		text-align: left;
	}
}

.product-item__perex {
	font-size: 1.6rem;
	color: #000;
}

@media (min-width: 960px) {
	.product-item__perex {
		font-size: 2rem;
	}
}

.product-item__figure {
	width: 100%;
	height: 205px;
	max-width: 290px;
}

.product-item__img {
	max-width: 100%;
	max-height: 100%;
	-webkit-filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.21));
	filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.21));
}

.product-item__button-text {
	font-size: 2.4rem;
	color: #000;
	margin-right: 16px;
}

@media (min-width: 1280px) {
	.product-item__button-text {
		font-size: 2.8rem;
	}
}

.product-item__button-arrow {
	background: #002c4d;
	width: 32px;
	height: 32px;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 50%;
	overflow: hidden;
}

.product-item__button-arrow::after {
	content: "";
	display: block;
	position: absolute;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 10px;
	height: 10px;
	border: 2px solid #fff;
	border-left: 0;
	border-top: 0;
	rotate: 315deg;
	left: 9px;
	border-radius: 1px;
}

.available-jobs-box__title {
	margin-bottom: 25px;
}

.available-jobs-box__item-link {
	line-height: 1.5;
	font-size: 2rem;
}

.header-gallery__box {
	margin-top: 20px;
	row-gap: 2rem;
}

@media (min-width: 960px) {
	.header-gallery__box {
		margin-top: 60px;
	}
}

@media (min-width: 1280px) {
	.header-gallery__box {
		margin-top: 100px;
	}
}

@media (min-width: 1690px) {
	.header-gallery__box {
		margin-top: 140px;
	}
}

.header-gallery__figure {
	width: 100%;
	height: 115px;
	text-align: center;
	-webkit-box-shadow: 0px 3px 19px rgba(0, 0, 0, 0.06);
	box-shadow: 0px 3px 19px rgba(0, 0, 0, 0.06);
	border-radius: 5px;
	overflow: hidden;
}

.header-gallery__figure:hover .header-gallery__img, .header-gallery__figure:focus .header-gallery__img {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

.header-gallery__img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

.header-gallery__button {
	width: 100%;
	height: 115px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	background: #fff;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 26px 25px 25px;
	font-size: 1.6rem;
	text-align: center;
	-webkit-box-shadow: 0 3px 19px rgba(0, 0, 0, 0.06);
	box-shadow: 0 3px 19px rgba(0, 0, 0, 0.06);
	border-radius: 5px;
	color: #000;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.header-gallery__button:before {
	color: #fff;
	background: #002c4d;
	padding: 8px;
	border-radius: 50%;
	overflow: hidden;
	font-size: 12px;
}

.header-gallery__button:hover, .header-gallery__button:focus {
	color: #002c4d;
}

.job-listing__columns-wrapper {
	margin-bottom: 20px;
}

@media (min-width: 960px) {
	.job-listing__columns-wrapper {
		margin-bottom: 60px;
	}
}

@media (min-width: 1280px) {
	.job-listing__columns-wrapper {
		margin-top: -215px;
	}
}

@media (min-width: 1690px) {
	.job-listing__columns-wrapper {
		margin-bottom: 120px;
	}
}

.job-listing__left-column {
	gap: 30px;
	margin-bottom: 30px;
}

.job-listing__right-column {
	margin-bottom: 30px;
}

/* Modules | Eshop */
.basket-nav {
	border: 1px solid #e4e3de;
	overflow: hidden;
	min-height: 60px;
	margin-bottom: 35px;
}

.basket-nav__item {
	padding: 15px;
	position: relative;
	height: 100%;
	color: #848484;
	font-size: 1.6rem;
}

@media (min-width: 960px) {
	.basket-nav__item {
		font-size: 1.8rem;
	}
}

@media (min-width: 960px) {
	.basket-nav__item::before, .basket-nav__item::after {
		content: "";
		display: block;
		position: absolute;
		-ms-flex-negative: 0;
		flex-shrink: 0;
		border-bottom: 33px solid rgba(0, 0, 0, 0);
		border-left: 15px solid #fff;
		border-top: 33px solid rgba(0, 0, 0, 0);
		right: 0;
		-webkit-transform: translate(100%);
		-ms-transform: translate(100%);
		transform: translate(100%);
		z-index: 10;
	}
}

.basket-nav__item::before {
	right: -1px;
	border-left-color: #e4e3de;
}

.basket-nav__link {
	color: #848484;
}

.basket-nav__link:hover .basket-nav__item, .basket-nav__link:focus .basket-nav__item {
	background: #e4e3de;
}

.basket-nav__link:hover .basket-nav__item::after, .basket-nav__link:focus .basket-nav__item::after {
	border-left-color: #e4e3de;
}

.basket-nav__item--selected {
	background: #e4e3de;
}

.basket-nav__item--selected::after {
	border-left-color: #e4e3de;
}

.basket-nav__desc {
	counter-increment: step;
	text-align: center;
}

.basket-nav__desc::before {
	content: "";
	display: block;
	position: static;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin: 0 8px 0 0;
	background: no-repeat 0/cover;
}

.basket-nav__desc--first::before {
	width: 36px;
	height: 33px;
	background-image: url("/img/order/steps/1.svg");
}

.basket-nav__desc--second::before {
	width: 23px;
	height: 33px;
	background-image: url("/img/order/steps/2.svg");
}

.basket-nav__desc--last::before {
	width: 33px;
	height: 33px;
	background-image: url("/img/order/steps/3.svg");
}

/* Plugins */
.not-selectable {
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.carousel {
	position: relative;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.carousel *, .carousel *:before, .carousel *:after {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}

.carousel.is-draggable {
	cursor: move;
	cursor: -webkit-grab;
	cursor: grab;
}

.carousel.is-dragging {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor: grabbing;
}

.carousel__viewport {
	position: relative;
	overflow: hidden;
	max-width: 100%;
	max-height: 100%;
}

.carousel__track {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.carousel__slide {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: var(--carousel-slide-width, 60%);
	max-width: 100%;
	padding: 1rem;
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
	-ms-scroll-chaining: none;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
}

.has-dots {
	margin-bottom: calc(0.5rem + 22px);
}

.carousel__dots {
	margin: 0 auto;
	padding: 0;
	position: absolute;
	top: calc(100% + 0.5rem);
	left: 0;
	right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	list-style: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.carousel__dots .carousel__dot {
	margin: 0;
	padding: 0;
	display: block;
	position: relative;
	width: 22px;
	height: 22px;
	cursor: pointer;
}

.carousel__dots .carousel__dot:after {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background-color: currentColor;
	opacity: 0.25;
	-webkit-transition: opacity 0.15s ease-in-out;
	-o-transition: opacity 0.15s ease-in-out;
	transition: opacity 0.15s ease-in-out;
}

.carousel__dots .carousel__dot.is-selected:after {
	opacity: 1;
}

.carousel__button {
	width: var(--carousel-button-width, 48px);
	height: var(--carousel-button-height, 48px);
	padding: 0;
	border: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	pointer-events: all;
	cursor: pointer;
	color: var(--carousel-button-color, currentColor);
	background: var(--carousel-button-bg, transparent);
	border-radius: var(--carousel-button-border-radius, 50%);
	-webkit-box-shadow: var(--carousel-button-shadow, none);
	box-shadow: var(--carousel-button-shadow, none);
	-webkit-transition: opacity 0.15s ease;
	-o-transition: opacity 0.15s ease;
	transition: opacity 0.15s ease;
}

.carousel__button.is-prev, .carousel__button.is-next {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.carousel__button.is-prev {
	left: 10px;
}

.carousel__button.is-next {
	right: 10px;
}

.carousel__button[disabled] {
	cursor: default;
	opacity: 0.3;
}

.carousel__button svg {
	width: var(--carousel-button-svg-width, 50%);
	height: var(--carousel-button-svg-height, 50%);
	fill: none;
	stroke: currentColor;
	stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
	stroke-linejoin: bevel;
	stroke-linecap: round;
	-webkit-filter: var(--carousel-button-svg-filter, none);
	filter: var(--carousel-button-svg-filter, none);
	pointer-events: none;
}

body.compensate-for-scrollbar {
	overflow: hidden !important;
	-ms-touch-action: none;
	touch-action: none;
}

.fancybox__container {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	direction: ltr;
	margin: 0;
	padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	color: var(--fancybox-color, #fff);
	-webkit-tap-highlight-color: transparent;
	overflow: hidden;
	z-index: 1050;
	outline: none;
	-webkit-transform-origin: top left;
	-ms-transform-origin: top left;
	transform-origin: top left;
	--carousel-button-width: 48px;
	--carousel-button-height: 48px;
	--carousel-button-svg-width: 24px;
	--carousel-button-svg-height: 24px;
	--carousel-button-svg-stroke-width: 2.5;
	--carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
}

.fancybox__container *, .fancybox__container *::before, .fancybox__container *::after {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}

.fancybox__container :focus {
	outline: thin dotted;
}

body.is-using-mouse .fancybox__container :focus {
	outline: none;
}

@media all and (min-width: 1024px) {
	.fancybox__container {
		--carousel-button-width: 48px;
		--carousel-button-height: 48px;
		--carousel-button-svg-width: 27px;
		--carousel-button-svg-height: 27px;
	}
}

.fancybox__backdrop {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	background: var(--fancybox-bg, rgba(24, 24, 27, 0.92));
}

.fancybox__carousel {
	position: relative;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	min-height: 0;
	height: 100%;
	z-index: 10;
}

.fancybox__carousel.has-dots {
	margin-bottom: calc(0.5rem + 22px);
}

.fancybox__viewport {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: visible;
	cursor: default;
}

.fancybox__track {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
}

.fancybox__slide {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 48px 8px 8px 8px;
	position: relative;
	-ms-scroll-chaining: none;
	overscroll-behavior: contain;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	outline: 0;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	--carousel-button-width: 36px;
	--carousel-button-height: 36px;
	--carousel-button-svg-width: 22px;
	--carousel-button-svg-height: 22px;
}

.fancybox__slide::before, .fancybox__slide::after {
	content: "";
	-webkit-box-flex: 0;
	-ms-flex: 0 0 0px;
	flex: 0 0 0;
	margin: auto;
}

@media all and (min-width: 1024px) {
	.fancybox__slide {
		padding: 64px 100px;
	}
}

.fancybox__content {
	margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
	padding: 36px;
	color: var(--fancybox-content-color, #374151);
	background: var(--fancybox-content-bg, #fff);
	position: relative;
	-ms-flex-item-align: center;
	align-self: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	z-index: 20;
}

.fancybox__caption {
	-ms-flex-item-align: center;
	align-self: center;
	max-width: 100%;
	margin: 0;
	padding: 1rem 0 0 0;
	line-height: 1.375;
	color: var(--fancybox-color, currentColor);
	visibility: visible;
	cursor: auto;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	overflow-wrap: anywhere;
}

.is-loading .fancybox__caption {
	visibility: hidden;
}

.fancybox__container > .carousel__dots {
	top: 100%;
	color: var(--fancybox-color, #fff);
}

.fancybox__nav .carousel__button {
	z-index: 40;
}

.fancybox__nav .carousel__button.is-next {
	right: 8px;
}

@media all and (min-width: 1024px) {
	.fancybox__nav .carousel__button.is-next {
		right: 40px;
	}
}

.fancybox__nav .carousel__button.is-prev {
	left: 8px;
}

@media all and (min-width: 1024px) {
	.fancybox__nav .carousel__button.is-prev {
		left: 40px;
	}
}

.carousel__button.is-close {
	position: absolute;
	top: 8px;
	right: 8px;
	top: calc(env(safe-area-inset-top, 0px) + 8px);
	right: calc(env(safe-area-inset-right, 0px) + 8px);
	z-index: 40;
}

@media all and (min-width: 1024px) {
	.carousel__button.is-close {
		right: 40px;
	}
}

.fancybox__content > .carousel__button.is-close {
	position: absolute;
	top: -36px;
	right: 0;
	color: var(--fancybox-color, #fff);
}

.fancybox__no-click, .fancybox__no-click button {
	pointer-events: none;
}

.fancybox__spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
	color: var(--fancybox-color, currentColor);
}

.fancybox__slide .fancybox__spinner {
	cursor: pointer;
	z-index: 1053;
}

.fancybox__spinner svg {
	-webkit-animation: fancybox-rotate 2s linear infinite;
	animation: fancybox-rotate 2s linear infinite;
	-webkit-transform-origin: center center;
	-ms-transform-origin: center center;
	transform-origin: center center;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 100%;
	height: 100%;
}

.fancybox__spinner svg circle {
	fill: none;
	stroke-width: 2.75;
	stroke-miterlimit: 10;
	stroke-dasharray: 1, 200;
	stroke-dashoffset: 0;
	-webkit-animation: fancybox-dash 1.5s ease-in-out infinite;
	animation: fancybox-dash 1.5s ease-in-out infinite;
	stroke-linecap: round;
	stroke: currentColor;
}

@-webkit-keyframes fancybox-rotate {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes fancybox-rotate {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes fancybox-dash {
	0% {
		stroke-dasharray: 1, 200;
		stroke-dashoffset: 0;
	}
	50% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -35px;
	}
	100% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -124px;
	}
}

@keyframes fancybox-dash {
	0% {
		stroke-dasharray: 1, 200;
		stroke-dashoffset: 0;
	}
	50% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -35px;
	}
	100% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -124px;
	}
}

.fancybox__backdrop, .fancybox__caption, .fancybox__nav, .carousel__dots, .carousel__button.is-close {
	opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop, .fancybox__container.is-animated[aria-hidden=false] .fancybox__caption, .fancybox__container.is-animated[aria-hidden=false] .fancybox__nav, .fancybox__container.is-animated[aria-hidden=false] .carousel__dots, .fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close {
	-webkit-animation: 0.15s ease backwards fancybox-fadeIn;
	animation: 0.15s ease backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__backdrop, .fancybox__container.is-animated.is-closing .fancybox__caption, .fancybox__container.is-animated.is-closing .fancybox__nav, .fancybox__container.is-animated.is-closing .carousel__dots, .fancybox__container.is-animated.is-closing .carousel__button.is-close {
	-webkit-animation: 0.15s ease both fancybox-fadeOut;
	animation: 0.15s ease both fancybox-fadeOut;
}

.fancybox-fadeIn {
	-webkit-animation: 0.15s ease both fancybox-fadeIn;
	animation: 0.15s ease both fancybox-fadeIn;
}

.fancybox-fadeOut {
	-webkit-animation: 0.1s ease both fancybox-fadeOut;
	animation: 0.1s ease both fancybox-fadeOut;
}

.fancybox-zoomInUp {
	-webkit-animation: 0.2s ease both fancybox-zoomInUp;
	animation: 0.2s ease both fancybox-zoomInUp;
}

.fancybox-zoomOutDown {
	-webkit-animation: 0.15s ease both fancybox-zoomOutDown;
	animation: 0.15s ease both fancybox-zoomOutDown;
}

.fancybox-throwOutUp {
	-webkit-animation: 0.15s ease both fancybox-throwOutUp;
	animation: 0.15s ease both fancybox-throwOutUp;
}

.fancybox-throwOutDown {
	-webkit-animation: 0.15s ease both fancybox-throwOutDown;
	animation: 0.15s ease both fancybox-throwOutDown;
}

@-webkit-keyframes fancybox-fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fancybox-fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@-webkit-keyframes fancybox-fadeOut {
	to {
		opacity: 0;
	}
}

@keyframes fancybox-fadeOut {
	to {
		opacity: 0;
	}
}

@-webkit-keyframes fancybox-zoomInUp {
	from {
		-webkit-transform: scale(0.97) translate3d(0, 16px, 0);
		transform: scale(0.97) translate3d(0, 16px, 0);
		opacity: 0;
	}
	to {
		-webkit-transform: scale(1) translate3d(0, 0, 0);
		transform: scale(1) translate3d(0, 0, 0);
		opacity: 1;
	}
}

@keyframes fancybox-zoomInUp {
	from {
		-webkit-transform: scale(0.97) translate3d(0, 16px, 0);
		transform: scale(0.97) translate3d(0, 16px, 0);
		opacity: 0;
	}
	to {
		-webkit-transform: scale(1) translate3d(0, 0, 0);
		transform: scale(1) translate3d(0, 0, 0);
		opacity: 1;
	}
}

@-webkit-keyframes fancybox-zoomOutDown {
	to {
		-webkit-transform: scale(0.97) translate3d(0, 16px, 0);
		transform: scale(0.97) translate3d(0, 16px, 0);
		opacity: 0;
	}
}

@keyframes fancybox-zoomOutDown {
	to {
		-webkit-transform: scale(0.97) translate3d(0, 16px, 0);
		transform: scale(0.97) translate3d(0, 16px, 0);
		opacity: 0;
	}
}

@-webkit-keyframes fancybox-throwOutUp {
	to {
		-webkit-transform: translate3d(0, -30%, 0);
		transform: translate3d(0, -30%, 0);
		opacity: 0;
	}
}

@keyframes fancybox-throwOutUp {
	to {
		-webkit-transform: translate3d(0, -30%, 0);
		transform: translate3d(0, -30%, 0);
		opacity: 0;
	}
}

@-webkit-keyframes fancybox-throwOutDown {
	to {
		-webkit-transform: translate3d(0, 30%, 0);
		transform: translate3d(0, 30%, 0);
		opacity: 0;
	}
}

@keyframes fancybox-throwOutDown {
	to {
		-webkit-transform: translate3d(0, 30%, 0);
		transform: translate3d(0, 30%, 0);
		opacity: 0;
	}
}

.fancybox__carousel .carousel__slide {
	scrollbar-width: thin;
	scrollbar-color: #ccc rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
	background-color: rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
	background-color: #ccc;
	border-radius: 2px;
	-webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

.fancybox__carousel.is-draggable .fancybox__slide, .fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
	cursor: move;
	cursor: -webkit-grab;
	cursor: grab;
}

.fancybox__carousel.is-dragging .fancybox__slide, .fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor: grabbing;
}

.fancybox__carousel .fancybox__slide .fancybox__content {
	cursor: auto;
}

.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
	cursor: -webkit-zoom-in;
	cursor: zoom-in;
}

.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
	cursor: -webkit-zoom-out;
	cursor: zoom-out;
}

.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
	cursor: move;
	cursor: -webkit-grab;
	cursor: grab;
}

.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor: grabbing;
}

.fancybox__image {
	-webkit-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
	-ms-touch-action: none;
	touch-action: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
}

.has-image .fancybox__content {
	padding: 0;
	background: transparent;
	min-height: 1px;
}

.is-closing .has-image .fancybox__content {
	overflow: visible;
}

.has-image[data-image-fit=contain] {
	overflow: visible;
	-ms-touch-action: none;
	touch-action: none;
}

.has-image[data-image-fit=contain] .fancybox__image {
	max-width: 100%;
	max-height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.has-image[data-image-fit=contain-w] {
	overflow-x: hidden;
	overflow-y: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__content {
	min-height: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__image {
	max-width: 100%;
	height: auto;
}

.has-image[data-image-fit=cover] {
	overflow: visible;
	-ms-touch-action: none;
	touch-action: none;
}

.has-image[data-image-fit=cover] .fancybox__content {
	width: 100%;
	height: 100%;
}

.has-image[data-image-fit=cover] .fancybox__image {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
	-ms-flex-negative: 1;
	flex-shrink: 1;
	min-height: 1px;
	overflow: visible;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
	width: 100%;
	height: 80%;
}

.fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
	width: 960px;
	height: 540px;
	max-width: 100%;
	max-height: 100%;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
	padding: 0;
	background: rgba(24, 24, 27, 0.9);
	color: #fff;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
	background: #e5e3df;
}

.fancybox__html5video, .fancybox__iframe {
	border: 0;
	display: block;
	height: 100%;
	width: 100%;
	background: transparent;
}

.fancybox-placeholder {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

.fancybox__thumbs {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	position: relative;
	padding: 0px 3px;
	opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
	-webkit-animation: 0.15s ease-in backwards fancybox-fadeIn;
	animation: 0.15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__thumbs {
	opacity: 0;
}

.fancybox__thumbs .carousel__slide {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: var(--fancybox-thumbs-width, 96px);
	margin: 0;
	padding: 8px 3px;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	overflow: visible;
	cursor: pointer;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 5px solid var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
	opacity: 0;
	-webkit-transition: opacity 0.15s ease;
	-o-transition: opacity 0.15s ease;
	transition: opacity 0.15s ease;
	border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
	opacity: 0.92;
}

.fancybox__thumbs .carousel__slide > * {
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.fancybox__thumb {
	position: relative;
	width: 100%;
	padding-top: calc(100% / (var(--fancybox-thumbs-ratio, 1.5)));
	background-size: cover;
	background-position: center center;
	background-color: rgba(255, 255, 255, 0.1);
	background-repeat: no-repeat;
	border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__toolbar {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 20;
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), color-stop(8.1%, rgba(0, 0, 0, 0.006)), color-stop(15.5%, rgba(0, 0, 0, 0.021)), color-stop(22.5%, rgba(0, 0, 0, 0.046)), color-stop(29%, rgba(0, 0, 0, 0.077)), color-stop(35.3%, rgba(0, 0, 0, 0.114)), color-stop(41.2%, rgba(0, 0, 0, 0.155)), color-stop(47.1%, rgba(0, 0, 0, 0.198)), color-stop(52.9%, rgba(0, 0, 0, 0.242)), color-stop(58.8%, rgba(0, 0, 0, 0.285)), color-stop(64.7%, rgba(0, 0, 0, 0.326)), color-stop(71%, rgba(0, 0, 0, 0.363)), color-stop(77.5%, rgba(0, 0, 0, 0.394)), color-stop(84.5%, rgba(0, 0, 0, 0.419)), color-stop(91.9%, rgba(0, 0, 0, 0.434)), to(rgba(0, 0, 0, 0.44)));
	background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.006) 8.1%, rgba(0, 0, 0, 0.021) 15.5%, rgba(0, 0, 0, 0.046) 22.5%, rgba(0, 0, 0, 0.077) 29%, rgba(0, 0, 0, 0.114) 35.3%, rgba(0, 0, 0, 0.155) 41.2%, rgba(0, 0, 0, 0.198) 47.1%, rgba(0, 0, 0, 0.242) 52.9%, rgba(0, 0, 0, 0.285) 58.8%, rgba(0, 0, 0, 0.326) 64.7%, rgba(0, 0, 0, 0.363) 71%, rgba(0, 0, 0, 0.394) 77.5%, rgba(0, 0, 0, 0.419) 84.5%, rgba(0, 0, 0, 0.434) 91.9%, rgba(0, 0, 0, 0.44) 100%);
	background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.006) 8.1%, rgba(0, 0, 0, 0.021) 15.5%, rgba(0, 0, 0, 0.046) 22.5%, rgba(0, 0, 0, 0.077) 29%, rgba(0, 0, 0, 0.114) 35.3%, rgba(0, 0, 0, 0.155) 41.2%, rgba(0, 0, 0, 0.198) 47.1%, rgba(0, 0, 0, 0.242) 52.9%, rgba(0, 0, 0, 0.285) 58.8%, rgba(0, 0, 0, 0.326) 64.7%, rgba(0, 0, 0, 0.363) 71%, rgba(0, 0, 0, 0.394) 77.5%, rgba(0, 0, 0, 0.419) 84.5%, rgba(0, 0, 0, 0.434) 91.9%, rgba(0, 0, 0, 0.44) 100%);
	padding: 0;
	-ms-touch-action: none;
	touch-action: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	--carousel-button-svg-width: 20px;
	--carousel-button-svg-height: 20px;
	opacity: var(--fancybox-opacity, 1);
	text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4));
}

@media all and (min-width: 1024px) {
	.fancybox__toolbar {
		padding: 8px;
	}
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
	-webkit-animation: 0.15s ease-in backwards fancybox-fadeIn;
	animation: 0.15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__toolbar {
	opacity: 0;
}

.fancybox__toolbar__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.fancybox__toolbar__items--left {
	margin-right: auto;
}

.fancybox__toolbar__items--center {
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.fancybox__toolbar__items--right {
	margin-left: auto;
}

@media (max-width: 640px) {
	.fancybox__toolbar__items--center:not(:last-child) {
		display: none;
	}
}

.fancybox__counter {
	min-width: 72px;
	padding: 0 10px;
	line-height: var(--carousel-button-height, 48px);
	text-align: center;
	font-size: 17px;
	font-variant-numeric: tabular-nums;
	-webkit-font-smoothing: subpixel-antialiased;
}

.fancybox__progress {
	background: var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
	height: 3px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0;
	-ms-transform-origin: 0;
	transform-origin: 0;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	-webkit-transition-timing-function: linear;
	-o-transition-timing-function: linear;
	transition-timing-function: linear;
	z-index: 30;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.fancybox__container:-webkit-full-screen::backdrop {
	opacity: 0;
}

.fancybox__container:-ms-fullscreen::backdrop {
	opacity: 0;
}

.fancybox__container:fullscreen::-webkit-backdrop {
	opacity: 0;
}

.fancybox__container:fullscreen::backdrop {
	opacity: 0;
}

.fancybox__button--fullscreen g:nth-child(2) {
	display: none;
}

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(1) {
	display: none;
}

.fancybox__container:-ms-fullscreen .fancybox__button--fullscreen g:nth-child(1) {
	display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
	display: none;
}

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(2) {
	display: block;
}

.fancybox__container:-ms-fullscreen .fancybox__button--fullscreen g:nth-child(2) {
	display: block;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
	display: block;
}

.fancybox__button--slideshow g:nth-child(2) {
	display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
	display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
	display: block;
}

.incredible-select__bar {
	padding: 4px;
	color: #000;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: #848484;
}

.incredible-select__bar .incredible-select__close-btn {
	font-size: 13px;
	padding: 4px 8px;
}

.incredible-select--stylable {
	width: 100%;
	display: block;
	position: relative;
	cursor: pointer;
	margin-bottom: 15px;
	text-transform: none;
	color: #000;
}

.incredible-select__selected-option {
	padding: 13px 25px 13px 15px;
	font-size: 14px;
	font-weight: 400;
	position: relative;
	border: 1px solid #e4e3de;
	min-height: 50px;
}

.incredible-select__selected-option::after {
	position: absolute;
	right: 15px;
	width: 8px;
	height: 8px;
	border-right: 2px solid #000;
	border-bottom: 2px solid #000;
	content: "";
	display: block;
	top: 18px;
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.incredible-select__options {
	position: absolute;
	background: white;
	top: calc(100% - 1px);
	display: none;
	left: 0;
	right: 0;
	border: 1px solid #e4e3de;
	z-index: 900;
	font-size: 14px;
	font-weight: 400;
	text-transform: none;
}

.incredible-select__options .incredible-select__item {
	width: 100%;
	padding: 13px 15px;
	color: #000;
}

.incredible-select__options .incredible-select__item.is-selected {
	font-weight: 700;
}

.incredible-select__options .incredible-select__item:not(:last-of-type) {
	border-bottom: 1px solid #e4e3de;
}

.incredible-select__options .incredible-select__item:hover {
	cursor: pointer;
}

@media (min-width: 960px) {
	.incredible-select--stylable.var--2 .incredible-select__selected-option {
		font-size: 15px;
	}
}

.modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10000;
	padding: 20px;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	display: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.modal.open {
	visibility: visible;
	opacity: 1;
	-webkit-transition-delay: 0s;
	-o-transition-delay: 0s;
	transition-delay: 0s;
	overflow: auto;
}

.modal__overlay {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 21;
	background-color: rgba(0, 0, 0, 0.7);
}

.modal__close {
	position: absolute;
	top: 10px;
	right: 10px;
	border: none;
	outline: none;
	background: none;
	font-size: 24px;
	color: #747474;
	font-weight: bold;
	height: 16px;
	width: 16px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.modal__close::before, .modal__close::after {
	content: "";
	display: block;
	position: absolute;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	background: #000;
}

.modal__close::before {
	width: 2px;
	height: 100%;
	left: calc(50% - 1px);
	top: 0;
}

.modal__close::after {
	height: 2px;
	width: 100%;
	top: calc(50% - 1px);
	left: 0;
}

.modal__close:hover {
	color: #000;
}

.modal iframe {
	height: 50vw;
	min-height: 250px;
	max-width: 100%;
	width: 100%;
}

@media (min-width: 960px) {
	.modal iframe {
		height: 650px;
		max-height: 80vh;
	}
}

.modal__container {
	position: relative;
	z-index: 22;
	margin: 0 auto;
	background-color: #fff;
	text-align: left;
	width: 100%;
}

.modal--product .modal__container {
	max-width: 680px;
}

.modal--product .modal__container, .modal--gdpr .modal__container {
	padding: 30px;
}

.modal--centered .modal__container {
	margin: auto;
}

.modal__container .button {
	margin-left: 0;
	margin-top: 20px;
}

.modal__product {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	color: #000;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.modal__product-title {
	font-size: 2rem;
}

.modal__product-prices {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.modal__product-figure {
	height: 120px;
	width: 200px;
	margin-right: 20px;
}

.modal__product-img {
	max-height: 100%;
	max-width: 100%;
}

.modal__product-info {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 8px;
}

.modal__buttons {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.modal__buttons .modal__button:first-of-type {
	margin-right: 20px;
}

.eu-finance{
	padding: 0 0 40px 0;
}


.eu-finance__figure {
	max-width: 700px;
	width: 100%;
}

.eu-finance__img {
max-width: 100%;
	max-height: 100%;
}