@charset "UTF-8";
.picture {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

/* stylelint-disable */
/* stylelint-enable */
/* stylelint-disable */
/**
* Селекторы для таргетинга на конкретные браузеры без влияния на специфику или
* ограничение использования в медиа-запросах
*
* Плюсы:
* - Работает с медиа-запросами
*
* Минусы:
* - Не может использоваться с @extend, так как это приведет к недействительности других селекторов
*/
/**
* Целевой Internet Explorer, но не Edge
*
* @demo
*	div {
*		@include browser-ie () {
*			// ...
*		}
*	}
*/
/**
* Target IE-Edge
*/
/**
* Target Firefox
*/
/**
* Target Safari
*/
/**
* Target all WebKit browsers
*/
/**
* Remove the unit of a length
*
* @param {Number} $number - Number to remove unit from
* @return {Number} - Unitless number
*/
/**
* Returns nth property from css property list
*
* @property {map} $list List
* @property {number} $index Item index
*
* @example
*	$bottom-margin: css-nth(10px 20px 30px 40px, 3); // 30px
*	$bottom-margin: css-nth(10px 20px, 3); // 10px
*/
/**
* Remove nth elements from the list
*
* @property {map} $list List
* @property {number} $index Item index
*
* @example
*	$list: remove-nth(10px 20px 30px 40px, 3); // 10px 20px 40px
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for one in $index position
*
* 'inherit' value when used with 'margins' or 'paddings' mixin will not produce any output
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-top-only: breakpointPickCssNth($spacer, 1);
* => (xs: 10px inherit inherit inherit, md: 20px inherit inherit inherit)
*	@include margins($spacer-top-only);
*
*	$spacer-bottom-only: breakpointPickCssNth($spacer, 3);
* => (xs: inherit inherit 12px inherit, md: inherit inherit 20px inherit)
*	@include paddings($spacer-bottom-only);
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for top (first) and bottom (third) properties
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-top-bottom: breakpoint-pick-top-bottom($spacer);
* => (xs: 10px inherit 12px inherit, md: 20px inherit 20px inherit)
*	@include margins($spacer-top-bottom);
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for right (second) and left (fourth) properties
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-left-right: breakpoint-pick-top-bottom($spacer);
* => (xs: inherit 11px inherit 13px, md: inherit 0 inherit 0)
*	@include margins($spacer-left-right);
*/
/**
* In each $list pair of $breakpoint: $value merges all values skipping 'inherit'
*
* @example
*	$list-a: (xs: 10px inherit 20px inherit, md: 30px inherit);
*	$list-b: (xs: 40px inherit inherit inherit, md: inherit 50px);
*
*	$list-result: breakpointMapMerge($list-a, $list-b);
*	// (xs: 40px inherit 20px inherit, md: 30px 50px);
*/
/**
* Returns deeply nested property from a map
*
* @function mapGetDeep Deep get for sass maps
* @author https://css-tricks.com/snippets/sass/deep-getset-maps/
* @param {Map} $map - Map
* @param {Arglist} $keys - Key chain
*
* @example
*	$paddings: mapGetDeep($grid-containers, default, paddings, xs);
*/
/**
* Mixin for object-fit plugin
*
* @see https://github.com/bfred-it/object-fit-images
* @see components/_background.scss
* @example
*	@include object-fit(contain);
*	@include object-fit(cover, top);
*/
/**
* Split string into a list
*
* @property {string} $string String
* @property {string} $separator Separator
*
* @example
*	$list: str-split("hello+world", "+"); // (hello, world)
*/
/**
* Converts SVG into data url so that this SVG could be used as a
* background image
*
* @example
*	background-image: svgtodataurl("<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100">...</svg>");
*/
/**
* Remove keys from the map
*
* @param {Map} $map - Map from which to remove items
* @param {List} $keys - List of keys which to remove
* @return {Map} - Map without the specified keys
*/
/**
* Качество рендеринга изображений
* В Chrome качество фонового изображения не самое лучшее при использовании background-size
*/
@font-face {
	src: url("../fonts/Manrope/Manrope-Regular.woff2") format("woff2"), url("../fonts/Manrope/Manrope-Regular.woff") format("woff");
	font-family: "Manrope";
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	src: url("../fonts/Manrope/Manrope-Medium.woff2") format("woff2"), url("../fonts/Manrope/Manrope-Medium.woff") format("woff");
	font-family: "Manrope";
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	src: url("../fonts/Manrope/Manrope-SemiBold.woff2") format("woff2"), url("../fonts/Manrope/Manrope-SemiBold.woff") format("woff");
	font-family: "Manrope";
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	src: url("../fonts/Manrope/Manrope-Bold.woff2") format("woff2"), url("../fonts/Manrope/Manrope-Bold.woff") format("woff");
	font-family: "Manrope";
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	src: url("../fonts/Manrope/Manrope-ExtraBold.woff2") format("woff2"), url("../fonts/Manrope/Manrope-ExtraBold.woff") format("woff");
	font-family: "Manrope";
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	/* 1 */
	-webkit-text-size-adjust: 100%;
	/* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	/* 1 */
	height: 0;
	/* 1 */
	overflow: visible;
	/* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	/* 1 */
	font-size: 1em;
	/* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	/* 1 */
	text-decoration: underline;
	/* 2 */
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
	/* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	/* 1 */
	font-size: 1em;
	/* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	/* 1 */
	font-size: 100%;
	/* 1 */
	line-height: 1.15;
	/* 1 */
	margin: 0;
	/* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	/* 1 */
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	/* 1 */
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	/* 1 */
	color: inherit;
	/* 2 */
	display: table;
	/* 1 */
	max-width: 100%;
	/* 1 */
	padding: 0;
	/* 3 */
	white-space: normal;
	/* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	/* 1 */
	padding: 0;
	/* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	/* 1 */
	outline-offset: -2px;
	/* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	/* 1 */
	font: inherit;
	/* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/**
 * Swiper 8.0.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 14, 2022
 */
@font-face {
	font-family: swiper-icons;
	src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
	font-weight: 400;
	font-style: normal;
}

:root {
	--swiper-theme-color: #007aff;
}

.swiper {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-wrapper {
	-webkit-transform: translate3d(0px, 0, 0);
	transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
	-ms-touch-action: pan-y;
	touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
	-ms-touch-action: pan-x;
	touch-action: pan-x;
}

.swiper-slide {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
	visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
	height: auto;
}

.swiper-autoheight .swiper-wrapper {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-transition-property: height, -webkit-transform;
	transition-property: height, -webkit-transform;
	-o-transition-property: transform, height;
	transition-property: transform, height;
	transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
	-webkit-perspective: 1200px;
	perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-wrapper {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
	background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
	background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
	background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
	background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
	background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
	background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
	background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
	display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
	-ms-scroll-snap-type: x mandatory;
	scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
	-ms-scroll-snap-type: y mandatory;
	scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
	content: '';
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-box-ordinal-group: 10000;
	-ms-flex-order: 9999;
	order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
	-webkit-margin-start: var(--swiper-centered-offset-before);
	margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
	height: 100%;
	min-height: 1px;
	width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
	-webkit-margin-before: var(--swiper-centered-offset-before);
	margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
	width: 100%;
	min-width: 1px;
	height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: center center;
}

*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	font-size: 16px;
}

html {
	position: relative;
	min-height: 100vh;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "Manrope", sans-serif;
}

body {
	-webkit-font-smoothing: antialiased;
	-webkit-text-decoration-skip: objects;
	text-decoration-skip: objects;
	text-rendering: optimizeLegibility;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
	font-size: 1.125rem;
	line-height: 1.3;
	font-weight: 400;
	color: #252525;
	background: #f6f9fc;
	min-width: 290px;
}

@media (max-width: 991px) {
	body {
		font-size: 1rem;
	}
}

@media (max-width: 767px) {
	body {
		font-size: 0.875rem;
	}
}

main {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

a,
button {
	outline: none;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	cursor: pointer;
}

a {
	text-decoration: none;
	color: #252525;
}

a:hover {
	color: #24caff;
}

svg {
	display: block;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	fill: none;
}

figure,
picture {
	display: inline-block;
	margin: 0;
	line-height: 0;
}

figure img,
picture img {
	width: 100%;
}

img {
	vertical-align: top;
	max-width: 100%;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

img[draggable="false"] {
	pointer-events: none;
	-webkit-user-drag: none;
}

fieldset {
	margin: 0;
	border: 0;
	padding: 0;
}

ul,
li {
	list-style: none;
	margin: 0;
	padding: 0;
}

b {
	font-weight: 700;
}

video {
	outline: none;
	width: 100%;
	height: 100%;
}

iframe {
	display: block;
}

.js-lazy-load:not(.is-loaded) {
	max-height: 50vh;
}

.container {
	position: relative;
	z-index: 1;
	margin: 0 auto;
	max-width: 1309px;
	padding: 0 20px;
}

.app {
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
	font-weight: 700;
}

h1 {
	font-size: 3.25rem;
}

@media (max-width: 767px) {
	h1 {
		font-size: 1.875rem;
	}
}

h2 {
	font-size: 1.563rem;
}

@media (max-width: 991px) {
	h2 {
		font-size: 1.1875rem;
	}

	h2 svg {
		width: 30px;
	}
}

.js-lazy {
	opacity: 0;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.js-lazy.is-loaded {
	opacity: 1;
}

hr {
	border: 0;
	height: 1px;
	background: rgba(112, 134, 122, 0.35);
}

.button {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	cursor: pointer;
	position: relative;
	z-index: 1;
	background: none;
	border: none;
	font-size: 0.875rem;
	line-height: 1.3;
	font-weight: 600;
	text-transform: uppercase;
	padding: 8px 15px;
	min-width: 202px;
	color: #0f0b5e;
}

.button-block {
	width: 100%;
}

.button-primary {
	background: white;
	border: 1px solid #0F0B5E;
}

.button-primary:hover {
	background: #d3f4ff;
	border-color: #d3f4ff;
}

.button-white {
	background: #FFFFFF;
	border: 1px solid #0F0B5E;
}

.button-white:hover {
	background: #d3f4ff;
	border-color: #d3f4ff;
	color: #0f0b5e;
}

.input,
.textarea {
	background: none;
	border: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 0;
	height: 56px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 0 17px;
	width: 100%;
	outline: none !important;
	font-weight: 400;
	font-size: 1.125rem;
	line-height: 1.3;
	color: #252525;
	-webkit-transition: border-width 0s ease-in-out, border-color 0.3s ease-in-out;
	-o-transition: border-width 0s ease-in-out, border-color 0.3s ease-in-out;
	transition: border-width 0s ease-in-out, border-color 0.3s ease-in-out;
}

@media (max-width: 767px) {
	.input,
	.textarea {
		height: 30px;
		font-size: 0.875rem;
		padding: 0 14px;
	}
}

.input::-webkit-input-placeholder, .textarea::-webkit-input-placeholder {
	color: #252525;
}

.input::-moz-placeholder, .textarea::-moz-placeholder {
	color: #252525;
}

.input:-ms-input-placeholder, .textarea:-ms-input-placeholder {
	color: #252525;
}

.input::-ms-input-placeholder, .textarea::-ms-input-placeholder {
	color: #252525;
}

.input::placeholder,
.textarea::placeholder {
	color: #252525;
}

.input-primary,
.textarea-primary {
	background: #F5F9FC;
	-webkit-box-shadow: inset 0 2px 3px rgba(15, 11, 94, 0.14);
	box-shadow: inset 0 2px 3px rgba(15, 11, 94, 0.14);
}

.input-white,
.textarea-white {
	background: white;
	-webkit-box-shadow: inset 0 2px 3px rgba(15, 11, 94, 0.14);
	box-shadow: inset 0 2px 3px rgba(15, 11, 94, 0.14);
}

.textarea {
	height: 162px;
	padding: 12px;
	resize: none;
}

.textarea--md {
	height: 155px;
	padding-top: 40px;
	resize: none;
}

@media (max-width: 767px) {
	.textarea--md {
		height: 111px;
		padding-top: 35px;
	}
}

.swiper-button {
	width: 62px;
	height: 62px;
	background: #FFFFFF;
	border: 1px solid #B3B3B3;
	border-radius: 11px;
	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;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	cursor: pointer;
}

.swiper-button svg {
	width: 17px;
	height: 14px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.swiper-button:hover {
	border: 1px solid #70867A;
}

.swiper-button:hover svg {
	stroke: #70867A !important;
}

@media (max-width: 767px) {
	.swiper-button {
		width: 50px;
		height: 50px;
	}
}

.swiper-button-disabled {
	opacity: 0.5;
}

.swiper-button-lock {
	display: none;
}

.swiper .swiper-buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.swiper--visible {
	overflow: visible;
}

@media (max-width: 991px) {
	.swiper--mainTeachers .swiper-buttons {
		margin-top: 32px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.swiper--mainTeachers .swiper-button {
	position: absolute;
	top: -117px;
	cursor: pointer;
}

@media (max-width: 991px) {
	.swiper--mainTeachers .swiper-button {
		top: auto;
		position: relative;
		left: auto !important;
		right: auto !important;
		margin: 0 10px;
	}
}

.swiper--mainTeachers .swiper-button-prev {
	left: auto;
	right: 81px;
}

.swiper--mainTeachers .swiper-button-next {
	right: 0;
}

.swiper--teachers {
	overflow: visible;
}

.swiper--survey {
	padding-bottom: 75px;
	margin-bottom: -75px;
}

@media (max-width: 991px) {
	.swiper--survey {
		margin-right: -20px;
		margin-left: -20px;
		padding-right: 20px;
		padding-left: 20px;
		overflow: visible;
		padding-bottom: 0;
		margin-bottom: 0;
	}
}

.swiper--images {
	margin-left: -398px;
	padding-left: 398px;
}

@media (max-width: 767px) {
	.swiper--images {
		margin-left: -20px;
		margin-right: -20px;
		padding-left: 20px;
		padding-right: 20px;
	}
}

.swiper--images .swiper-slide {
	height: 344px;
	border-radius: 29px;
}

@media (max-width: 549px) {
	.swiper--images .swiper-slide {
		height: 269px;
	}
}

.swiper--images .swiper-buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (max-width: 767px) {
	.swiper--images .swiper-buttons {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.swiper--images .swiper-button {
	margin-right: 12px;
}

@media (max-width: 767px) {
	.swiper--images .swiper-button {
		margin: 0 5px;
	}
}

.swiper--reviews {
	padding-right: 30px;
	padding-left: 30px;
	margin-right: -30px;
	margin-left: -30px;
}

.swiper--reviews:before, .swiper--reviews:after {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 30px;
	content: '';
	background: #F3F4F3;
	z-index: 5;
}

.swiper--reviews:before {
	left: 0;
}

.swiper--reviews:after {
	right: 0;
}

@media (max-width: 767px) {
	.swiper--reviews .swiper-buttons {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		margin-top: 20px;
	}
}

.swiper--reviews .swiper-button {
	position: absolute;
	top: 50%;
	z-index: 15;
	margin-top: -31px;
	-webkit-backdrop-filter: blur(22px);
	backdrop-filter: blur(22px);
	background-color: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(123, 115, 104, 0.4);
	border-radius: 11px;
}

@media (max-width: 767px) {
	.swiper--reviews .swiper-button {
		top: auto;
		position: relative;
		margin: 0 10px;
	}
}

.swiper--reviews .swiper-button-prev {
	left: 0;
}

@media (max-width: 767px) {
	.swiper--reviews .swiper-button-prev {
		left: auto;
	}
}

.swiper--reviews .swiper-button-next {
	right: 0;
}

@media (max-width: 767px) {
	.swiper--reviews .swiper-button-next {
		right: auto;
	}
}

.swiper--photos .swiper-slide {
	height: 286px;
	border-radius: 30px;
}

.swiper--photos .swiper-button {
	margin-right: 6px;
	margin-left: 6px;
}

.swiper--photos .swiper-button:first-child {
	margin-left: 0;
}

.swiper--photos .swiper-button:last-child {
	margin-right: 0;
}

.field-radio input {
	visibility: hidden;
	opacity: 0;
	position: absolute;
}

.field-radio input + label {
	padding-left: 39px;
	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;
}

.field-radio input + label:before {
	content: '';
	width: 20px;
	height: 20px;
	background: none;
	border: 1px solid rgba(30, 30, 30, 0.28);
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 2px;
}

.field-radio input + label b {
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 120%;
}

@media (max-width: 767px) {
	.field-radio input + label b {
		font-size: 1.125rem;
	}
}

.field-radio input + label span {
	margin-top: 11px;
	font-size: 1rem;
	line-height: 130%;
	color: #505B55;
}

@media (max-width: 767px) {
	.field-radio input + label span {
		margin-top: 10px;
		font-size: 0.875rem;
	}
}

.field-radio input:checked + label:before {
	border: 6px solid #70867A;
}

.field-radio__price {
	position: absolute;
	right: 18px;
	top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 120%;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

@media (max-width: 767px) {
	.field-radio__price {
		position: relative;
		font-size: 1.125rem;
		right: auto;
		-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;
		margin-top: 15px;
	}
}

.field-radio__price s {
	font-weight: 500;
	font-size: 1rem;
	line-height: 120%;
	letter-spacing: -0.04em;
	-webkit-text-decoration-line: line-through;
	text-decoration-line: line-through;
	color: rgba(30, 30, 30, 0.56);
	margin-top: 5px;
}

@media (max-width: 767px) {
	.field-radio__price s {
		margin-left: 20px;
		font-size: 0.875rem;
	}
}

.field-check {
	position: relative;
}

.field-check + .field-check {
	margin-top: 12px;
}

.field-check input {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	visibility: hidden;
}

.field-check input:checked + label:after {
	opacity: 1;
}

.field-check label {
	padding: 0 0 0 36px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 1.3;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

@media (max-width: 767px) {
	.field-check label {
		font-size: 0.75rem;
		padding-left: 30px;
	}
}

.field-check label:before, .field-check label:after {
	content: '';
	width: 17px;
	height: 17px;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.field-check label:before {
	background: #F5F9FC;
	-webkit-box-shadow: inset 0 2px 3px rgba(15, 11, 94, 0.14);
	box-shadow: inset 0 2px 3px rgba(15, 11, 94, 0.14);
}

.field-check label:after {
	opacity: 0;
	background: url(../images/icons/check.svg) no-repeat center;
	background-size: 65%;
}

.modal {
	display: none;
	width: 788px;
	background: #FFFFFF;
	-webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	border-radius: 26px;
	padding: 50px;
}

@media (max-width: 991px) {
	.modal {
		width: 700px;
	}
}

@media (max-width: 767px) {
	.modal {
		padding: 24px 20px;
		width: 100%;
		border-radius: 16px;
	}
}

.modal__title {
	font-size: 2rem;
	font-weight: 500;
	line-height: 120%;
}

@media (max-width: 991px) {
	.modal__title {
		font-size: 1.688rem;
	}
}

@media (max-width: 767px) {
	.modal__title {
		font-size: 1.375rem;
	}
}

.modal__desc {
	font-weight: 500;
	font-size: 1.125rem;
	line-height: 150%;
	color: #505B55;
	max-width: 537px;
}

.modal__action {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (max-width: 549px) {
	.modal__action {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		width: 100%;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}

.modal__policy {
	font-size: 0.75rem;
	line-height: 135%;
	color: rgba(30, 30, 30, 0.56);
	margin-left: 45px;
	max-width: 334px;
}

@media (max-width: 549px) {
	.modal__policy {
		margin-left: 0;
		margin-top: 15px;
		max-width: none;
	}
}

.modal__policy a {
	font-weight: 600;
	text-decoration: underline;
	color: rgba(30, 30, 30, 0.56);
}

.modal__policy a:hover {
	text-decoration: none;
}

@media (max-width: 549px) {
	.modal__button {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.modal--bottom {
		width: 100%;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		border-radius: 26px 26px 0 0;
	}
}

.modal--calendar {
	width: 1263px;
}

@media (max-width: 1399px) {
	.modal--calendar {
		width: auto;
	}
}

@media (max-width: 1199px) {
	.modal--calendar {
		width: 600px;
	}
}

@media (max-width: 767px) {
	.modal--calendar {
		width: 100%;
	}
}

.modal__datepicker {
	min-height: 532px;
	padding-bottom: 30px;
	padding-right: 48px;
	position: relative;
}

@media (max-width: 1199px) {
	.modal__datepicker {
		padding-right: 0;
	}
}

@media (max-width: 767px) {
	.modal__datepicker {
		min-height: auto;
	}
}

.modal__datepicker:before {
	content: '';
	width: 1px;
	position: absolute;
	right: 0;
	top: -50px;
	bottom: -50px;
	background: #CECECE;
}

@media (max-width: 1199px) {
	.modal__datepicker:before {
		display: none;
		padding-right: 0;
		padding-bottom: 0;
		min-height: auto;
	}
}

.modal__events {
	margin-left: 50px;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

@media (max-width: 1199px) {
	.modal__events {
		margin-left: 0;
	}
}

.modal__tabs {
	display: none;
	width: 100%;
	margin-top: 10px;
}

@media (max-width: 1199px) {
	.modal__tabs {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}

.modal__tab {
	border: 1px solid rgba(112, 134, 122, 0.3);
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	height: 42px;
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 1.2;
	color: #6E6E73;
	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;
	cursor: pointer;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.modal__tab.is-active {
	background: #404349;
	border-color: #404349;
	color: #ffffff;
	cursor: default;
}

.modal__tab:first-child {
	border-radius: 3px 0 0 3px;
	border-right: 0;
}

.modal__tab:last-child {
	border-radius: 0 3px 3px 0;
	border-left: 0;
}

@media (max-width: 1199px) {
	.modal__box {
		display: none;
	}

	.modal__box--visible {
		display: block;
	}
}

@media (max-width: 1199px) {
	.modal #airDatepicker {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.fancybox__backdrop {
	background: rgba(33, 39, 36, 0.7) !important;
}

.carousel__button.is-close {
	top: 30px !important;
	right: 30px !important;
	background: #F4F3F4;
	border-radius: 50%;
	padding: 0;
	margin: 0;
	width: 42px;
	height: 42px;
	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;
}

@media (max-width: 767px) {
	.carousel__button.is-close {
		top: 15px !important;
		right: 15px !important;
	}
}

.carousel__button.is-close svg {
	display: none;
}

.carousel__button.is-close:before {
	content: '';
	width: 10px;
	height: 10px;
	background: url(../images/icons/close.svg) no-repeat center;
	background-size: contain;
}

.icon {
	fill: none;
}

.icon-filter {
	width: 18px;
	height: 18px;
}

.table table {
	width: 100%;
	border: 0;
	border-spacing: 0;
	border-collapse: collapse;
}

.overflow-visible {
	overflow: visible !important;
}

.overflow-hidden {
	overflow: hidden !important;
}

.hidden {
	display: none;
}

.visible {
	display: block;
}

.cl-black {
	color: #252525;
}

.cl-white {
	color: white;
}

.cl-blue {
	color: #0f0b5e;
}

.cl-blue-l {
	color: #24caff;
}

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.flex-wrap {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.flex-column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.flex-column-rev {
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
}

.flex-row {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
}

.flex-row-rev {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.flex-inline {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
}

.justify-start {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.justify-end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.justify-space {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.justify-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.items-start {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.items-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.items-end {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.relative {
	position: relative;
	z-index: 1;
}

.absolute {
	position: absolute;
}

.right-0 {
	right: 0;
}

.top-0 {
	top: 0;
}

.bottom-0 {
	bottom: 0;
}

.picture {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.bg-white {
	background: white;
}

.bg-blue {
	background: #0f0b5e;
}

.bg-image {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

@media (max-width: 767px) {
	.bg-image__form {
		background-position: right center;
	}
}

.mb-0 {
	margin-bottom: 0;
}

.mb-5 {
	margin-bottom: 5px;
}

.mb-10 {
	margin-bottom: 10px;
}

.mb-15 {
	margin-bottom: 15px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mb-25 {
	margin-bottom: 25px;
}

.mb-30 {
	margin-bottom: 30px;
}

.mb-35 {
	margin-bottom: 35px;
}

.mb-40 {
	margin-bottom: 40px;
}

.mb-45 {
	margin-bottom: 45px;
}

.mb-50 {
	margin-bottom: 50px;
}

.mb-55 {
	margin-bottom: 55px;
}

.mb-60 {
	margin-bottom: 60px;
}

.mb-65 {
	margin-bottom: 65px;
}

.mb-70 {
	margin-bottom: 70px;
}

.mb-75 {
	margin-bottom: 75px;
}

.mb-80 {
	margin-bottom: 80px;
}

.mb-85 {
	margin-bottom: 85px;
}

.mb-90 {
	margin-bottom: 90px;
}

.mb-95 {
	margin-bottom: 95px;
}

.mb-100 {
	margin-bottom: 100px;
}

.mt-0 {
	margin-top: 0;
}

.mt-5 {
	margin-top: 5px;
}

.mt-10 {
	margin-top: 10px;
}

.mt-15 {
	margin-top: 15px;
}

.mt-20 {
	margin-top: 20px;
}

.mt-25 {
	margin-top: 25px;
}

.mt-30 {
	margin-top: 30px;
}

.mt-35 {
	margin-top: 35px;
}

.mt-40 {
	margin-top: 40px;
}

.mt-45 {
	margin-top: 45px;
}

.mt-50 {
	margin-top: 50px;
}

.mt-55 {
	margin-top: 55px;
}

.mt-60 {
	margin-top: 60px;
}

.mt-70 {
	margin-top: 70px;
}

.mt-75 {
	margin-top: 75px;
}

.mt-80 {
	margin-top: 80px;
}

.mt-85 {
	margin-top: 85px;
}

.mt-90 {
	margin-top: 90px;
}

.mt-95 {
	margin-top: 95px;
}

.mt-100 {
	margin-top: 100px;
}

.mr-0 {
	margin-right: 0;
}

.mr-5 {
	margin-right: 5px;
}

.mr-10 {
	margin-right: 10px;
}

.mr-12 {
	margin-right: 12px;
}

.mr-15 {
	margin-right: 15px;
}

.mr-20 {
	margin-right: 20px;
}

.mr-25 {
	margin-right: 25px;
}

.mr-30 {
	margin-right: 30px;
}

.mr-35 {
	margin-right: 35px;
}

.mr-40 {
	margin-right: 40px;
}

.mr-45 {
	margin-right: 45px;
}

.mr-50 {
	margin-right: 50px;
}

.mr-55 {
	margin-right: 55px;
}

.mr-60 {
	margin-right: 60px;
}

.mr-70 {
	margin-right: 70px;
}

.mr-75 {
	margin-right: 75px;
}

.mr-80 {
	margin-right: 80px;
}

.mr-85 {
	margin-right: 85px;
}

.mr-90 {
	margin-right: 90px;
}

.mr-95 {
	margin-right: 95px;
}

.mr-100 {
	margin-right: 100px;
}

.ml-0 {
	margin-left: 0;
}

.ml-5 {
	margin-left: 5px;
}

.ml-10 {
	margin-left: 10px;
}

.ml-15 {
	margin-left: 15px;
}

.ml-20 {
	margin-left: 20px;
}

.ml-25 {
	margin-left: 25px;
}

.ml-30 {
	margin-left: 30px;
}

.ml-35 {
	margin-left: 35px;
}

.ml-40 {
	margin-left: 40px;
}

.ml-45 {
	margin-left: 45px;
}

.ml-50 {
	margin-left: 50px;
}

.ml-55 {
	margin-left: 55px;
}

.ml-60 {
	margin-left: 60px;
}

.ml-70 {
	margin-left: 70px;
}

.ml-75 {
	margin-left: 75px;
}

.ml-80 {
	margin-left: 80px;
}

.ml-85 {
	margin-left: 85px;
}

.ml-90 {
	margin-left: 90px;
}

.ml-95 {
	margin-left: 95px;
}

.ml-100 {
	margin-left: 100px;
}

.pt-0 {
	padding-top: 0;
}

.pt-5 {
	padding-top: 5px;
}

.pt-10 {
	padding-top: 10px;
}

.pt-15 {
	padding-top: 15px;
}

.pt-20 {
	padding-top: 20px;
}

.pt-25 {
	padding-top: 25px;
}

.pt-30 {
	padding-top: 30px;
}

.pt-35 {
	padding-top: 35px;
}

.pt-40 {
	padding-top: 40px;
}

.pt-45 {
	padding-top: 45px;
}

.pt-50 {
	padding-top: 50px;
}

.pt-55 {
	padding-top: 55px;
}

.pt-60 {
	padding-top: 60px;
}

.pt-65 {
	padding-top: 65px;
}

.pt-70 {
	padding-top: 70px;
}

.pt-75 {
	padding-top: 75px;
}

.pt-80 {
	padding-top: 80px;
}

.pt-85 {
	padding-top: 85px;
}

.pt-90 {
	padding-top: 90px;
}

.pt-95 {
	padding-top: 95px;
}

.pt-100 {
	padding-top: 100px;
}

.pb-0 {
	padding-bottom: 0;
}

.pb-5 {
	padding-bottom: 5px;
}

.pb-10 {
	padding-bottom: 10px;
}

.pb-15 {
	padding-bottom: 15px;
}

.pb-20 {
	padding-bottom: 20px;
}

.pb-25 {
	padding-bottom: 25px;
}

.pb-30 {
	padding-bottom: 30px;
}

.pb-35 {
	padding-bottom: 35px;
}

.pb-40 {
	padding-bottom: 40px;
}

.pb-45 {
	padding-bottom: 45px;
}

.pb-50 {
	padding-bottom: 50px;
}

.pb-55 {
	padding-bottom: 55px;
}

.pb-60 {
	padding-bottom: 60px;
}

.pb-65 {
	padding-bottom: 65px;
}

.pb-70 {
	padding-bottom: 70px;
}

.pb-75 {
	padding-bottom: 75px;
}

.pb-80 {
	padding-bottom: 80px;
}

.pb-85 {
	padding-bottom: 85px;
}

.pb-90 {
	padding-bottom: 90px;
}

.pb-95 {
	padding-bottom: 95px;
}

.pb-100 {
	padding-bottom: 100px;
}

.pl-0 {
	padding-left: 0;
}

.pl-5 {
	padding-left: 5px;
}

.pl-10 {
	padding-left: 10px;
}

.pl-15 {
	padding-left: 15px;
}

.pl-20 {
	padding-left: 20px;
}

.pl-25 {
	padding-left: 25px;
}

.pl-30 {
	padding-left: 30px;
}

.pl-35 {
	padding-left: 35px;
}

.pl-40 {
	padding-left: 40px;
}

.pl-45 {
	padding-left: 45px;
}

.pl-50 {
	padding-left: 50px;
}

.pl-55 {
	padding-left: 55px;
}

.pl-60 {
	padding-left: 60px;
}

.pl-65 {
	padding-left: 65px;
}

.pl-70 {
	padding-left: 70px;
}

.pl-75 {
	padding-left: 75px;
}

.pl-80 {
	padding-left: 80px;
}

.pl-85 {
	padding-left: 85px;
}

.pl-90 {
	padding-left: 90px;
}

.pl-95 {
	padding-left: 95px;
}

.pl-100 {
	padding-left: 100px;
}

.pr-0 {
	padding-right: 0;
}

.pr-5 {
	padding-right: 5px;
}

.pr-10 {
	padding-right: 10px;
}

.pr-15 {
	padding-right: 15px;
}

.pr-20 {
	padding-right: 20px;
}

.pr-25 {
	padding-right: 25px;
}

.pr-30 {
	padding-right: 30px;
}

.pr-35 {
	padding-right: 35px;
}

.pr-40 {
	padding-right: 40px;
}

.pr-45 {
	padding-right: 45px;
}

.pr-50 {
	padding-right: 50px;
}

.pr-55 {
	padding-right: 55px;
}

.pr-60 {
	padding-right: 60px;
}

.pr-65 {
	padding-right: 65px;
}

.pr-70 {
	padding-right: 70px;
}

.pr-75 {
	padding-right: 75px;
}

.pr-80 {
	padding-right: 80px;
}

.pr-85 {
	padding-right: 85px;
}

.pr-90 {
	padding-right: 90px;
}

.pr-95 {
	padding-right: 95px;
}

.pr-100 {
	padding-right: 100px;
}

.py-0 {
	padding-top: 0;
	padding-bottom: 0;
}

.py-5 {
	padding-top: 5px;
	padding-bottom: 5px;
}

.py-10 {
	padding-top: 10px;
	padding-bottom: 10px;
}

.py-15 {
	padding-top: 15px;
	padding-bottom: 15px;
}

.py-20 {
	padding-top: 20px;
	padding-bottom: 20px;
}

.py-20 {
	padding-top: 25px;
	padding-bottom: 25px;
}

.py-30 {
	padding-top: 30px;
	padding-bottom: 30px;
}

.py-35 {
	padding-top: 35px;
	padding-bottom: 35px;
}

.py-40 {
	padding-top: 40px;
	padding-bottom: 40px;
}

.px-0 {
	padding-left: 0;
	padding-right: 0;
}

.px-5 {
	padding-left: 5px;
	padding-right: 5px;
}

.px-10 {
	padding-left: 10px;
	padding-right: 10px;
}

.px-15 {
	padding-left: 15px;
	padding-right: 15px;
}

.px-20 {
	padding-left: 20px;
	padding-right: 20px;
}

.px-20 {
	padding-left: 25px;
	padding-right: 25px;
}

.px-30 {
	padding-left: 30px;
	padding-right: 30px;
}

.px-35 {
	padding-left: 35px;
	padding-right: 35px;
}

.px-40 {
	padding-left: 40px;
	padding-right: 40px;
}

.px-50 {
	padding-left: 50px;
	padding-right: 50px;
}

.text-upp {
	text-transform: uppercase;
}

.text-right {
	text-align: right;
}

.text-left {
	text-align: left;
}

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

.fs-16 {
	font-size: 1rem;
}

.fs-20 {
	font-size: 1.25rem;
}

.fs-23 {
	font-size: 1.438rem;
}

.fs-25 {
	font-size: 1.563rem;
}

.fs-29 {
	font-size: 1.813rem;
}

.fs-36 {
	font-size: 2.25rem;
}

.fs-52 {
	font-size: 3.25rem;
}

.fs-90 {
	font-size: 5.625rem;
}

.fw-4 {
	font-weight: 400;
}

.fw-5 {
	font-weight: 500;
}

.fw-6 {
	font-weight: 600;
}

.fw-7 {
	font-weight: 700;
}

.fh-1 {
	line-height: 1;
}

.fh-2 {
	line-height: 1.2;
}

.fh-3 {
	line-height: 1.3;
}

.fh-4 {
	line-height: 1.4;
}

.fh-5 {
	line-height: 1.5;
}

.fh-6 {
	line-height: 1.6;
}

.max-w-400 {
	max-width: 400px;
}

.max-w-450 {
	max-width: 450px;
}

.max-w-550 {
	max-width: 550px;
}

.max-w-640 {
	max-width: 640px;
}

.min-h-676 {
	min-height: 676px;
}

.col {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.col-1 {
	width: calc(10%);
	min-width: calc(10%);
}

.col-2 {
	width: calc(20%);
	min-width: calc(20%);
}

.col-3 {
	width: calc(30%);
	min-width: calc(30%);
}

.col-4 {
	width: calc(40%);
	min-width: calc(40%);
}

.col-5 {
	width: calc(50%);
	min-width: calc(50%);
}

.col-6 {
	width: calc(60%);
	min-width: calc(60%);
}

.col-7 {
	width: calc(70%);
	min-width: calc(70%);
}

.col-8 {
	width: calc(80%);
	min-width: calc(80%);
}

.col-9 {
	width: calc(90%);
	min-width: calc(90%);
}

.col-10 {
	width: calc(100%);
	min-width: calc(100%);
}

.opacity-5 {
	opacity: 0.5;
}

.grow-0 {
	-webkit-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
}

.grow-1 {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.title-primary {
	font-size: 1.563rem;
	text-transform: uppercase;
}

@media (max-width: 991px) {
	.title-primary {
		font-size: 1.375rem;
	}
}

@media (max-width: 767px) {
	.title-primary {
		font-size: 1.1875rem;
	}
}

.tabs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -5px;
	margin-left: -5px;
}

.tabs li {
	margin: 10px 5px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

@media (max-width: 991px) {
	.tabs li {
		margin: 5px;
	}
}

.tabs li a {
	background: #FFFFFF;
	border: 1px solid #0F0B5E;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	color: #0f0b5e;
	font-weight: 500;
	padding: 5px 30px;
}

@media (max-width: 767px) {
	.tabs li a {
		padding: 2px 14px;
	}
}

.tabs li a:hover {
	color: white;
	background: #0f0b5e;
}

.tabs li.is-active a {
	color: white;
	background: #0f0b5e;
}

.w-100 {
	width: 100%;
}

.h-712 {
	height: 712px;
}

.link {
	color: #24caff;
	border-bottom: 1px solid rgba(36, 202, 255, 0);
}

.link:hover {
	border-bottom: 1px solid rgba(36, 202, 255, 0.7);
}

.list li {
	padding-left: 30px;
	position: relative;
}

@media (max-width: 767px) {
	.list li {
		padding-left: 20px;
	}
}

.list li:before {
	content: '';
	width: 5px;
	height: 5px;
	position: absolute;
	left: 12px;
	top: 10px;
	background: #252525;
	border-radius: 50%;
}

@media (max-width: 767px) {
	.list li:before {
		width: 3px;
		height: 3px;
		top: 8px;
		left: 5px;
	}
}

.image-main {
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media (max-width: 991px) {
	.image-main {
		height: 100%;
		width: auto;
		max-width: none;
	}
}

.swipers {
	max-width: 400px;
	margin-right: auto;
	margin-left: auto;
}

.swiper-pagination {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	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;
}

.swiper-pagination-lock {
	display: none;
}

.swiper-pagination-bullet {
	background: #D9D9D9;
	opacity: 0.5;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	margin: 0 5px;
}

.swiper-pagination-bullet-active {
	opacity: 1;
}

.swiper-image {
	padding-bottom: 20px;
}

.swiper-image .swiper-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media (max-width: 991px) {
	.swiper-trust {
		padding-bottom: 20px;
	}
}

.swiper-trust .swiper-wrapper {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.swiper-trust .swiper-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.swiper-trust .swiper-slide {
	margin: 0 25px;
}

@media (max-width: 991px) {
	.swiper-trust .swiper-slide img {
		max-width: 70%;
	}
}

@media (max-width: 1199px) {
	.ds_mb-0 {
		margin-bottom: 0;
	}

	.ds_mb-5 {
		margin-bottom: 5px;
	}

	.ds_mb-10 {
		margin-bottom: 10px;
	}

	.ds_mb-15 {
		margin-bottom: 15px;
	}

	.ds_mb-20 {
		margin-bottom: 20px;
	}

	.ds_mb-25 {
		margin-bottom: 25px;
	}

	.ds_mb-30 {
		margin-bottom: 30px;
	}

	.ds_mb-35 {
		margin-bottom: 35px;
	}

	.ds_mb-40 {
		margin-bottom: 40px;
	}

	.ds_mt-0 {
		margin-top: 0;
	}

	.ds_mt-5 {
		margin-top: 5px;
	}

	.ds_mt-10 {
		margin-top: 10px;
	}

	.ds_mt-15 {
		margin-top: 15px;
	}

	.ds_mt-20 {
		margin-top: 20px;
	}

	.ds_mt-25 {
		margin-top: 25px;
	}

	.ds_mt-30 {
		margin-top: 30px;
	}

	.ds_mt-35 {
		margin-top: 35px;
	}

	.ds_mt-40 {
		margin-top: 40px;
	}

	.ds_mr-0 {
		margin-right: 0;
	}

	.ds_mr-5 {
		margin-right: 5px;
	}

	.ds_mr-10 {
		margin-right: 10px;
	}

	.ds_mr-12 {
		margin-right: 12px;
	}

	.ds_mr-15 {
		margin-right: 15px;
	}

	.ds_mr-20 {
		margin-right: 20px;
	}

	.ds_mr-25 {
		margin-right: 25px;
	}

	.ds_mr-30 {
		margin-right: 30px;
	}

	.ds_mr-35 {
		margin-right: 35px;
	}

	.ds_mr-40 {
		margin-right: 40px;
	}

	.ds_mr-50 {
		margin-right: 50px;
	}

	.ds_ml-0 {
		margin-left: 0;
	}

	.ds_ml-5 {
		margin-left: 5px;
	}

	.ds_ml-10 {
		margin-left: 10px;
	}

	.ds_ml-15 {
		margin-left: 15px;
	}

	.ds_ml-20 {
		margin-left: 20px;
	}

	.ds_ml-25 {
		margin-left: 25px;
	}

	.ds_ml-30 {
		margin-left: 30px;
	}

	.ds_ml-35 {
		margin-left: 35px;
	}

	.ds_ml-40 {
		margin-left: 40px;
	}

	.ds_pt-0 {
		padding-top: 0;
	}

	.ds_pt-5 {
		padding-top: 5px;
	}

	.ds_pt-10 {
		padding-top: 10px;
	}

	.ds_pt-15 {
		padding-top: 15px;
	}

	.ds_pt-20 {
		padding-top: 20px;
	}

	.ds_pt-25 {
		padding-top: 25px;
	}

	.ds_pt-30 {
		padding-top: 30px;
	}

	.ds_pt-35 {
		padding-top: 35px;
	}

	.ds_pt-40 {
		padding-top: 40px;
	}

	.ds_pb-0 {
		padding-bottom: 0;
	}

	.ds_pb-5 {
		padding-bottom: 5px;
	}

	.ds_pb-10 {
		padding-bottom: 10px;
	}

	.ds_pb-15 {
		padding-bottom: 15px;
	}

	.ds_pb-20 {
		padding-bottom: 20px;
	}

	.ds_pb-25 {
		padding-bottom: 25px;
	}

	.ds_pb-30 {
		padding-bottom: 30px;
	}

	.ds_pb-35 {
		padding-bottom: 35px;
	}

	.ds_pb-40 {
		padding-bottom: 40px;
	}

	.ds_pb-50 {
		padding-bottom: 50px;
	}

	.ds_pl-0 {
		padding-left: 0;
	}

	.ds_pl-5 {
		padding-left: 5px;
	}

	.ds_pl-10 {
		padding-left: 10px;
	}

	.ds_pl-15 {
		padding-left: 15px;
	}

	.ds_pl-20 {
		padding-left: 20px;
	}

	.ds_pl-25 {
		padding-left: 25px;
	}

	.ds_pl-30 {
		padding-left: 30px;
	}

	.ds_pl-35 {
		padding-left: 35px;
	}

	.ds_pl-40 {
		padding-left: 40px;
	}

	.ds_pr-0 {
		padding-right: 0;
	}

	.ds_pr-5 {
		padding-right: 5px;
	}

	.ds_pr-10 {
		padding-right: 10px;
	}

	.ds_pr-15 {
		padding-right: 15px;
	}

	.ds_pr-20 {
		padding-right: 20px;
	}

	.ds_pr-25 {
		padding-right: 25px;
	}

	.ds_pr-30 {
		padding-right: 30px;
	}

	.ds_pr-35 {
		padding-right: 35px;
	}

	.ds_pr-40 {
		padding-right: 40px;
	}

	.ds_py-0 {
		padding-top: 0;
		padding-bottom: 0;
	}

	.ds_py-5 {
		padding-top: 5px;
		padding-bottom: 5px;
	}

	.ds_py-10 {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.ds_py-15 {
		padding-top: 15px;
		padding-bottom: 15px;
	}

	.ds_py-20 {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.ds_py-20 {
		padding-top: 25px;
		padding-bottom: 25px;
	}

	.ds_py-30 {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.ds_py-35 {
		padding-top: 35px;
		padding-bottom: 35px;
	}

	.ds_py-40 {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.ds_px-0 {
		padding-left: 0;
		padding-right: 0;
	}

	.ds_px-5 {
		padding-left: 5px;
		padding-right: 5px;
	}

	.ds_px-10 {
		padding-left: 10px;
		padding-right: 10px;
	}

	.ds_px-15 {
		padding-left: 15px;
		padding-right: 15px;
	}

	.ds_px-20 {
		padding-left: 20px;
		padding-right: 20px;
	}

	.ds_px-20 {
		padding-left: 25px;
		padding-right: 25px;
	}

	.ds_px-30 {
		padding-left: 30px;
		padding-right: 30px;
	}

	.ds_px-35 {
		padding-left: 35px;
		padding-right: 35px;
	}

	.ds_px-40 {
		padding-left: 40px;
		padding-right: 40px;
	}
}

@media (max-width: 991px) {
	.lp_fs-16 {
		font-size: 1rem;
	}

	.lp_fs-22 {
		font-size: 1.375rem;
	}

	.lp_fs-26 {
		font-size: 1.625rem;
	}

	.lp_fs-40 {
		font-size: 2.5rem;
	}

	.lp_flex {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.lp_flex-wrap {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.lp_flex-column {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.lp_flex-column-rev {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}

	.lp_flex-row {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}

	.lp_flex-row-rev {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}

	.lp_flex-inline {
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
	}

	.lp_justify-start {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}

	.lp_justify-end {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}

	.lp_justify-space {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.lp_justify-center {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.lp_items-start {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.lp_items-center {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.lp_items-end {
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
	}

	.lp_mb-0 {
		margin-bottom: 0;
	}

	.lp_mb-5 {
		margin-bottom: 5px;
	}

	.lp_mb-10 {
		margin-bottom: 10px;
	}

	.lp_mb-15 {
		margin-bottom: 15px;
	}

	.lp_mb-20 {
		margin-bottom: 20px;
	}

	.lp_mb-25 {
		margin-bottom: 25px;
	}

	.lp_mb-30 {
		margin-bottom: 30px;
	}

	.lp_mb-35 {
		margin-bottom: 35px;
	}

	.lp_mb-40 {
		margin-bottom: 40px;
	}

	.lp_mb-50 {
		margin-bottom: 50px;
	}

	.lp_mt-0 {
		margin-top: 0;
	}

	.lp_mt-5 {
		margin-top: 5px;
	}

	.lp_mt-10 {
		margin-top: 10px;
	}

	.lp_mt-15 {
		margin-top: 15px;
	}

	.lp_mt-20 {
		margin-top: 20px;
	}

	.lp_mt-25 {
		margin-top: 25px;
	}

	.lp_mt-30 {
		margin-top: 30px;
	}

	.lp_mt-35 {
		margin-top: 35px;
	}

	.lp_mt-40 {
		margin-top: 40px;
	}

	.lp_mr-0 {
		margin-right: 0;
	}

	.lp_mr-5 {
		margin-right: 5px;
	}

	.lp_mr-10 {
		margin-right: 10px;
	}

	.lp_mr-12 {
		margin-right: 12px;
	}

	.lp_mr-15 {
		margin-right: 15px;
	}

	.lp_mr-20 {
		margin-right: 20px;
	}

	.lp_mr-25 {
		margin-right: 25px;
	}

	.lp_mr-30 {
		margin-right: 30px;
	}

	.lp_mr-35 {
		margin-right: 35px;
	}

	.lp_mr-40 {
		margin-right: 40px;
	}

	.lp_ml-0 {
		margin-left: 0;
	}

	.lp_ml-5 {
		margin-left: 5px;
	}

	.lp_ml-10 {
		margin-left: 10px;
	}

	.lp_ml-15 {
		margin-left: 15px;
	}

	.lp_ml-20 {
		margin-left: 20px;
	}

	.lp_ml-25 {
		margin-left: 25px;
	}

	.lp_ml-30 {
		margin-left: 30px;
	}

	.lp_ml-35 {
		margin-left: 35px;
	}

	.lp_ml-40 {
		margin-left: 40px;
	}

	.lp_pt-0 {
		padding-top: 0;
	}

	.lp_pt-5 {
		padding-top: 5px;
	}

	.lp_pt-10 {
		padding-top: 10px;
	}

	.lp_pt-15 {
		padding-top: 15px;
	}

	.lp_pt-20 {
		padding-top: 20px;
	}

	.lp_pt-25 {
		padding-top: 25px;
	}

	.lp_pt-30 {
		padding-top: 30px;
	}

	.lp_pt-35 {
		padding-top: 35px;
	}

	.lp_pt-40 {
		padding-top: 40px;
	}

	.lp_pb-0 {
		padding-bottom: 0;
	}

	.lp_pb-5 {
		padding-bottom: 5px;
	}

	.lp_pb-10 {
		padding-bottom: 10px;
	}

	.lp_pb-15 {
		padding-bottom: 15px;
	}

	.lp_pb-20 {
		padding-bottom: 20px;
	}

	.lp_pb-25 {
		padding-bottom: 25px;
	}

	.lp_pb-30 {
		padding-bottom: 30px;
	}

	.lp_pb-35 {
		padding-bottom: 35px;
	}

	.lp_pb-40 {
		padding-bottom: 40px;
	}

	.lp_pb-50 {
		padding-bottom: 50px;
	}

	.lp_pl-0 {
		padding-left: 0;
	}

	.lp_pl-5 {
		padding-left: 5px;
	}

	.lp_pl-10 {
		padding-left: 10px;
	}

	.lp_pl-15 {
		padding-left: 15px;
	}

	.lp_pl-20 {
		padding-left: 20px;
	}

	.lp_pl-25 {
		padding-left: 25px;
	}

	.lp_pl-30 {
		padding-left: 30px;
	}

	.lp_pl-35 {
		padding-left: 35px;
	}

	.lp_pl-40 {
		padding-left: 40px;
	}

	.lp_pr-0 {
		padding-right: 0;
	}

	.lp_pr-5 {
		padding-right: 5px;
	}

	.lp_pr-10 {
		padding-right: 10px;
	}

	.lp_pr-15 {
		padding-right: 15px;
	}

	.lp_pr-20 {
		padding-right: 20px;
	}

	.lp_pr-25 {
		padding-right: 25px;
	}

	.lp_pr-30 {
		padding-right: 30px;
	}

	.lp_pr-35 {
		padding-right: 35px;
	}

	.lp_pr-40 {
		padding-right: 40px;
	}

	.lp_py-0 {
		padding-top: 0;
		padding-bottom: 0;
	}

	.lp_py-5 {
		padding-top: 5px;
		padding-bottom: 5px;
	}

	.lp_py-10 {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.lp_py-15 {
		padding-top: 15px;
		padding-bottom: 15px;
	}

	.lp_py-20 {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.lp_py-20 {
		padding-top: 25px;
		padding-bottom: 25px;
	}

	.lp_py-30 {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.lp_py-35 {
		padding-top: 35px;
		padding-bottom: 35px;
	}

	.lp_py-40 {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.lp_px-0 {
		padding-left: 0;
		padding-right: 0;
	}

	.lp_px-5 {
		padding-left: 5px;
		padding-right: 5px;
	}

	.lp_px-10 {
		padding-left: 10px;
		padding-right: 10px;
	}

	.lp_px-15 {
		padding-left: 15px;
		padding-right: 15px;
	}

	.lp_px-20 {
		padding-left: 20px;
		padding-right: 20px;
	}

	.lp_px-20 {
		padding-left: 25px;
		padding-right: 25px;
	}

	.lp_px-30 {
		padding-left: 30px;
		padding-right: 30px;
	}

	.lp_px-35 {
		padding-left: 35px;
		padding-right: 35px;
	}

	.lp_px-40 {
		padding-left: 40px;
		padding-right: 40px;
	}

	.lp_h-350 {
		height: 350px;
	}

	.lp_flex {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.lp_flex-wrap {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.lp_flex-column {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.lp_flex-column-rev {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}

	.lp_flex-row {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}

	.lp_flex-row-rev {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}

	.lp_flex-inline {
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
	}

	.lp_col {
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
	}

	.lp_col-1 {
		width: calc(10%);
		min-width: calc(10%);
	}

	.lp_col-2 {
		width: calc(20%);
		min-width: calc(20%);
	}

	.lp_col-3 {
		width: calc(30%);
		min-width: calc(30%);
	}

	.lp_col-4 {
		width: calc(40%);
		min-width: calc(40%);
	}

	.lp_col-5 {
		width: calc(50%);
		min-width: calc(50%);
	}

	.lp_col-6 {
		width: calc(60%);
		min-width: calc(60%);
	}

	.lp_col-7 {
		width: calc(70%);
		min-width: calc(70%);
	}

	.lp_col-8 {
		width: calc(80%);
		min-width: calc(80%);
	}

	.lp_col-9 {
		width: calc(90%);
		min-width: calc(90%);
	}

	.lp_col-10 {
		width: calc(100%);
		min-width: calc(100%);
	}

	.lp_min-h-550 {
		min-height: 550px;
	}

	.lp_hidden {
		display: none;
	}

	.lp_visible {
		display: block;
	}
}

@media (max-width: 767px) {
	.mb_fs-14 {
		font-size: 0.875rem;
	}

	.mb_fs-16 {
		font-size: 1rem;
	}

	.mb_fs-18 {
		font-size: 1.125rem;
	}

	.mb_fs-19 {
		font-size: 1.1875rem;
	}

	.mb_fs-20 {
		font-size: 1.25rem;
	}

	.mb_fs-30 {
		font-size: 1.875rem;
	}

	.mb_fs-80 {
		font-size: 5rem;
	}

	.mb_fh-1 {
		line-height: 1;
	}

	.mb_fh-2 {
		line-height: 1.2;
	}

	.mb_fh-3 {
		line-height: 1.3;
	}

	.mb_fh-4 {
		line-height: 1.4;
	}

	.mb_fh-5 {
		line-height: 1.5;
	}

	.mb_fh-6 {
		line-height: 1.6;
	}

	.mb_hidden {
		display: none;
	}

	.mb_visible {
		display: block;
	}

	.mb_mb-0 {
		margin-bottom: 0;
	}

	.mb_mb-5 {
		margin-bottom: 5px;
	}

	.mb_mb-10 {
		margin-bottom: 10px;
	}

	.mb_mb-15 {
		margin-bottom: 15px;
	}

	.mb_mb-20 {
		margin-bottom: 20px;
	}

	.mb_mb-25 {
		margin-bottom: 25px;
	}

	.mb_mb-30 {
		margin-bottom: 30px;
	}

	.mb_mb-35 {
		margin-bottom: 35px;
	}

	.mb_mb-40 {
		margin-bottom: 40px;
	}

	.mb_mt-0 {
		margin-top: 0;
	}

	.mb_mt-5 {
		margin-top: 5px;
	}

	.mb_mt-10 {
		margin-top: 10px;
	}

	.mb_mt-15 {
		margin-top: 15px;
	}

	.mb_mt-20 {
		margin-top: 20px;
	}

	.mb_mt-25 {
		margin-top: 25px;
	}

	.mb_mt-30 {
		margin-top: 30px;
	}

	.mb_mt-35 {
		margin-top: 35px;
	}

	.mb_mt-40 {
		margin-top: 40px;
	}

	.mb_mr-0 {
		margin-right: 0;
	}

	.mb_mr-5 {
		margin-right: 5px;
	}

	.mb_mr-10 {
		margin-right: 10px;
	}

	.mb_mr-12 {
		margin-right: 12px;
	}

	.mb_mr-15 {
		margin-right: 15px;
	}

	.mb_mr-20 {
		margin-right: 20px;
	}

	.mb_mr-25 {
		margin-right: 25px;
	}

	.mb_mr-30 {
		margin-right: 30px;
	}

	.mb_mr-35 {
		margin-right: 35px;
	}

	.mb_mr-40 {
		margin-right: 40px;
	}

	.mb_ml-0 {
		margin-left: 0;
	}

	.mb_ml-5 {
		margin-left: 5px;
	}

	.mb_ml-10 {
		margin-left: 10px;
	}

	.mb_ml-15 {
		margin-left: 15px;
	}

	.mb_ml-20 {
		margin-left: 20px;
	}

	.mb_ml-25 {
		margin-left: 25px;
	}

	.mb_ml-30 {
		margin-left: 30px;
	}

	.mb_ml-35 {
		margin-left: 35px;
	}

	.mb_ml-40 {
		margin-left: 40px;
	}

	.mb_pt-0 {
		padding-top: 0;
	}

	.mb_pt-5 {
		padding-top: 5px;
	}

	.mb_pt-10 {
		padding-top: 10px;
	}

	.mb_pt-15 {
		padding-top: 15px;
	}

	.mb_pt-20 {
		padding-top: 20px;
	}

	.mb_pt-25 {
		padding-top: 25px;
	}

	.mb_pt-30 {
		padding-top: 30px;
	}

	.mb_pt-35 {
		padding-top: 35px;
	}

	.mb_pt-40 {
		padding-top: 40px;
	}

	.mb_pb-0 {
		padding-bottom: 0;
	}

	.mb_pb-5 {
		padding-bottom: 5px;
	}

	.mb_pb-10 {
		padding-bottom: 10px;
	}

	.mb_pb-15 {
		padding-bottom: 15px;
	}

	.mb_pb-20 {
		padding-bottom: 20px;
	}

	.mb_pb-25 {
		padding-bottom: 25px;
	}

	.mb_pb-30 {
		padding-bottom: 30px;
	}

	.mb_pb-35 {
		padding-bottom: 35px;
	}

	.mb_pb-40 {
		padding-bottom: 40px;
	}

	.mb_pb-50 {
		padding-bottom: 50px;
	}

	.mb_pl-0 {
		padding-left: 0;
	}

	.mb_pl-5 {
		padding-left: 5px;
	}

	.mb_pl-10 {
		padding-left: 10px;
	}

	.mb_pl-15 {
		padding-left: 15px;
	}

	.mb_pl-20 {
		padding-left: 20px;
	}

	.mb_pl-25 {
		padding-left: 25px;
	}

	.mb_pl-30 {
		padding-left: 30px;
	}

	.mb_pl-35 {
		padding-left: 35px;
	}

	.mb_pl-40 {
		padding-left: 40px;
	}

	.mb_pr-0 {
		padding-right: 0;
	}

	.mb_pr-5 {
		padding-right: 5px;
	}

	.mb_pr-10 {
		padding-right: 10px;
	}

	.mb_pr-15 {
		padding-right: 15px;
	}

	.mb_pr-20 {
		padding-right: 20px;
	}

	.mb_pr-25 {
		padding-right: 25px;
	}

	.mb_pr-30 {
		padding-right: 30px;
	}

	.mb_pr-35 {
		padding-right: 35px;
	}

	.mb_pr-40 {
		padding-right: 40px;
	}

	.mb_py-0 {
		padding-top: 0;
		padding-bottom: 0;
	}

	.mb_py-5 {
		padding-top: 5px;
		padding-bottom: 5px;
	}

	.mb_py-10 {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.mb_py-15 {
		padding-top: 15px;
		padding-bottom: 15px;
	}

	.mb_py-20 {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.mb_py-20 {
		padding-top: 25px;
		padding-bottom: 25px;
	}

	.mb_py-30 {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.mb_py-35 {
		padding-top: 35px;
		padding-bottom: 35px;
	}

	.mb_py-40 {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.mb_px-0 {
		padding-left: 0;
		padding-right: 0;
	}

	.mb_px-5 {
		padding-left: 5px;
		padding-right: 5px;
	}

	.mb_px-10 {
		padding-left: 10px;
		padding-right: 10px;
	}

	.mb_px-15 {
		padding-left: 15px;
		padding-right: 15px;
	}

	.mb_px-20 {
		padding-left: 20px;
		padding-right: 20px;
	}

	.mb_px-20 {
		padding-left: 25px;
		padding-right: 25px;
	}

	.mb_px-30 {
		padding-left: 30px;
		padding-right: 30px;
	}

	.mb_px-35 {
		padding-left: 35px;
		padding-right: 35px;
	}

	.mb_px-40 {
		padding-left: 40px;
		padding-right: 40px;
	}

	.mb_col {
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
	}

	.mb_col-1 {
		width: calc(10%);
		min-width: calc(10%);
	}

	.mb_col-2 {
		width: calc(20%);
		min-width: calc(20%);
	}

	.mb_col-3 {
		width: calc(30%);
		min-width: calc(30%);
	}

	.mb_col-4 {
		width: calc(40%);
		min-width: calc(40%);
	}

	.mb_col-5 {
		width: calc(50%);
		min-width: calc(50%);
	}

	.mb_col-6 {
		width: calc(60%);
		min-width: calc(60%);
	}

	.mb_col-7 {
		width: calc(70%);
		min-width: calc(70%);
	}

	.mb_col-8 {
		width: calc(80%);
		min-width: calc(80%);
	}

	.mb_col-9 {
		width: calc(90%);
		min-width: calc(90%);
	}

	.mb_col-10 {
		width: calc(100%);
		min-width: calc(100%);
	}

	.mb_max-w-none {
		max-width: none;
	}

	.mb_min-w-auto {
		min-width: auto !important;
	}

	.mb_min-h-auto {
		min-height: auto;
	}

	.mb_bg-none {
		background: none;
	}

	.mb_flex {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.mb_flex-wrap {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.mb_flex-column {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.mb_flex-column-rev {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}

	.mb_flex-row {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}

	.mb_flex-row-rev {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}

	.mb_flex-inline {
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
	}

	.mb_justify-start {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}

	.mb_justify-end {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}

	.mb_justify-space {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.mb_justify-center {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.mb_items-start {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.mb_items-center {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.mb_items-end {
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
	}

	.mb_h-235px {
		height: 235px;
	}
}

@media (max-width: 549px) {
	.ms_w-100 {
		width: 100%;
	}
}

.header {
	padding-top: 55px;
	padding-bottom: 55px;
	position: relative;
	z-index: 2;
}

@media (max-width: 991px) {
	.header {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}

@media (max-width: 767px) {
	.header {
		padding-top: 30px;
		padding-bottom: 30px;
		height: 83px;
	}
}

.header a {
	font-size: 0.875rem;
	line-height: 1.35;
	font-weight: 800;
	color: white;
	text-transform: uppercase;
}

@media (max-width: 767px) {
	.header__logo img {
		width: 84px;
	}
}

@media (max-width: 767px) {
	.header__menu {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.header__menu li {
	margin-right: 70px;
}

@media (max-width: 1199px) {
	.header__menu li {
		margin-right: 50px;
	}
}

@media (max-width: 991px) and (min-width: 768px) {
	.header {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.header-inner {
		flex-direction: column;
		align-items: start;
		gap: 30px;
	}

	.header__nav {
		width: 100%;
		justify-content: space-between;
	}

	.header__menu li {
		margin-right: 40px;
	}
}

@media (max-width: 767px) {
	.header__menu li {
		margin-right: 0;
		margin-bottom: 20px;
	}
}

.header__menu a:hover {
	color: #24caff;
}

.header__language-container {
	display: flex;
	align-items: center;
}

.header__language {
	position: relative;
	color: #fff;
	cursor: pointer
}

.header__language-current {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.875rem;
	line-height: 1.35;
	font-weight: 800;
}

.header__language-current svg {
	width: 9px;
	margin-top: 2px;
}

.header__language-list {
	position: absolute;
	left: -15px;
	top: 25px;
	background: #273672;
	display: none
}

.header__language-list a {
	padding: 10px 15px;
	display: block;
	font-size: .75rem;
	text-transform: none;
	white-space: nowrap
}

.header__language.js-active .header__language-list {
	display: block
}

@media (max-width: 767px) {
	.header__language-container {
		display: none;
	}
}

.header__button {
	background: rgba(255, 255, 255, 0.3);
	height: 36px;
	padding: 0 34px;
}

.header__button:hover {
	background: #D3F4FF;
	color: #0f0b5e;
}

@media (max-width: 767px) {
	.header__nav {
		position: fixed;
		left: 0;
		right: 0;
		top: 83px;
		bottom: 0;
		z-index: 10;
		background: #4b5fb8;
		display: none;
		padding: 20px;
	}

	.header__nav.is-open {
		display: block !important;
	}
}

.header.is-fixed {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: 5;
	background: rgba(255, 255, 255, 0.01) !important;
}

.footer {
	padding: 55px 0 50px 0;
}

@media (max-width: 767px) {
	.footer {
		padding-top: 45px;
	}
}

.footer__menu {
	margin-right: 40px;
}

@media (max-width: 767px) {
	.footer__menu {
		margin-right: 0;
	}

	.footer__menu:nth-child(1) {
		grid-area: menu1;
		margin-bottom: 15px;
	}

	.footer__menu:nth-child(2) {
		grid-area: contact;
		margin-bottom: 35px;
	}

	.footer__menu:nth-child(3) {
		grid-area: menu2;
	}
}

.footer__menu li {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.35;
	color: white;
	margin-bottom: 29px;
}

@media (max-width: 991px) {
	.footer__menu li {
		font-size: 1rem;
	}
}

@media (max-width: 767px) {
	.footer__menu li {
		font-size: 0.875rem;
		margin-bottom: 15px;
	}
}

.footer__menu li:last-child {
	margin-bottom: 0;
}

.footer__menu li a {
	color: white;
}

.footer__menu li a:hover {
	color: #24caff;
}

.footer__social {
	margin-right: 134px;
}

@media (max-width: 1199px) {
	.footer__social {
		margin-right: 0;
	}
}

@media (max-width: 767px) {
	.footer__social {
		grid-area: social;
		margin-bottom: 35px;
	}
}

.footer__social li {
	margin-left: 26px;
}

@media (max-width: 767px) {
	.footer__social li:first-child {
		margin-left: 0;
	}
}

@media (max-width: 767px) {
	.footer__row {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		grid-template-areas: 'social' 'contact' 'menu1' 'menu2';
	}

	.footer__menu:nth-child(1) {
		-ms-grid-row: 3;
		-ms-grid-column: 1;
	}

	.footer__menu:nth-child(2) {
		-ms-grid-row: 2;
		-ms-grid-column: 1;
	}

	.footer__menu:nth-child(3) {
		-ms-grid-row: 4;
		-ms-grid-column: 1;
	}

	.footer__social {
		-ms-grid-row: 1;
		-ms-grid-column: 1;
	}
}

.breadcrumbs ul {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.breadcrumbs ul li {
	letter-spacing: 0.05em;
	font-weight: 700;
	font-size: 1.125rem;
	color: #24caff;
}

@media (max-width: 991px) {
	.breadcrumbs ul li {
		font-size: 1rem;
	}
}

@media (max-width: 767px) {
	.breadcrumbs ul li {
		font-size: 0.875rem;
	}
}

.breadcrumbs ul li:after {
	content: '>';
	margin: 0 4px;
}

.breadcrumbs ul li:last-child:after {
	content: '';
}

.breadcrumbs ul li a {
	color: #24caff;
	border-bottom: 1px solid rgba(36, 202, 255, 0);
}

.breadcrumbs ul li a:hover {
	border-bottom: 1px solid rgba(36, 202, 255, 0.7);
}

.service {
	background: #FFFFFF;
	-webkit-box-shadow: 7px 6px 13px rgba(0, 0, 0, 0.05);
	box-shadow: 7px 6px 13px rgba(0, 0, 0, 0.05);
	width: calc(33.3% - 38px);
	min-width: calc(33.3% - 38px);
	margin: 30px 19px;
	padding: 45px 20px 50px 42px;
}

@media (max-width: 1199px) {
	.service {
		width: calc(33.3% - 20px);
		min-width: calc(33.3% - 20px);
		padding-left: 20px;
		margin: 10px;
	}
}

@media (max-width: 991px) {
	.service {
		width: calc(50% - 20px);
		min-width: calc(50% - 20px);
	}
}

@media (max-width: 767px) {
	.service {
		width: calc(100% - 20px);
		min-width: calc(100% - 20px);
		padding: 20px;
		padding-top: 40px;
	}
}

.services {
	margin: -30px -19px;
}

@media (max-width: 1199px) {
	.services {
		margin: -10px;
	}
}

.service__icon {
	height: 66px;
}

@media (max-width: 767px) {
	.service__icon {
		height: 58px;
	}
}

.service__icon img {
	max-height: 66px;
}

@media (max-width: 767px) {
	.service__icon img {
		max-height: 58px;
	}
}

.service__title {
	min-height: 67px;
}

@media (max-width: 767px) {
	.service__title {
		min-height: auto;
	}
}

.case {
	background: #FFFFFF;
	-webkit-box-shadow: 7px 6px 13px rgba(0, 0, 0, 0.05);
	box-shadow: 7px 6px 13px rgba(0, 0, 0, 0.05);
	margin: 45px 16px;
	width: calc(33.3% - 32px);
	min-width: calc(33.3% - 32px);
	padding: 45px 40px 50px 40px;
	position: relative;
	overflow: hidden;
}

@media (max-width: 991px) {
	.case {
		margin: 10px;
		width: calc(50% - 20px);
		min-width: calc(50% - 20px);
	}
}

@media (max-width: 767px) {
	.case {
		width: calc(100% - 20px);
		min-width: calc(100% - 20px);
		padding: 20px;
	}
}

.case:after, .case:before {
	content: '';
	position: absolute;
	border-radius: 50%;
}

.case:before {
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.22)), to(rgba(255, 255, 255, 0)));
	background: -o-linear-gradient(top, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 100%);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 100%);
	-webkit-transform: rotate(-105deg);
	-ms-transform: rotate(-105deg);
	transform: rotate(-105deg);
	left: -95px;
	top: -110px;
	width: 244px;
	height: 244px;
}

.case:after {
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.19)), to(rgba(255, 255, 255, 0)));
	background: -o-linear-gradient(top, rgba(255, 255, 255, 0.19) 0%, rgba(255, 255, 255, 0) 100%);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.19) 0%, rgba(255, 255, 255, 0) 100%);
	-webkit-transform: rotate(-7.8deg);
	-ms-transform: rotate(-7.8deg);
	transform: rotate(-7.8deg);
	top: 206px;
	right: -37px;
	width: 161px;
	height: 161px;
}

.cases {
	margin: -45px -16px;
}

@media (max-width: 991px) {
	.cases {
		margin: -10px;
	}
}

.cases.is-blue {
	margin: -22px;
}

@media (max-width: 1199px) {
	.cases.is-blue {
		margin: -10px;
	}
}

@media (max-width: 767px) {
	.cases.is-blue {
		margin: -8px;
	}
}

.case__image {
	width: 289px;
	height: 179px;
	margin-right: auto;
	margin-left: auto;
	background-repeat: no-repeat;
	padding-top: 9px;
	padding-right: 1px;
	position: relative;
}

@media (max-width: 549px) {
	.case__image {
		width: 250px;
		height: 138px;
		background-size: contain;
		background-position: center;
		padding-top: 5px;
	}
}

.case__image:before {
	content: '';
	width: 88px;
	height: 88px;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.26)), to(rgba(255, 255, 255, 0)));
	background: -o-linear-gradient(top, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0) 100%);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0) 100%);
	-webkit-transform: rotate(-70.51deg);
	-ms-transform: rotate(-70.51deg);
	transform: rotate(-70.51deg);
	position: absolute;
	left: 50%;
	margin-left: 25px;
	top: 130px;
	border-radius: 50%;
}

.case__image img {
	width: 218px;
	height: 140px;
}

@media (max-width: 549px) {
	.case__image img {
		width: 170px;
		height: auto;
	}
}

.case.is-blue {
	background: -o-linear-gradient(240deg, #96B3FF 6.02%, #5D84BD 42.86%, #1F295A 91.68%);
	background: linear-gradient(210deg, #96B3FF 6.02%, #5D84BD 42.86%, #1F295A 91.68%);
	-webkit-backdrop-filter: blur(150px);
	backdrop-filter: blur(150px);
	color: white;
	margin: 22px;
	width: calc(33.3% - 44px);
	min-width: calc(33.3% - 44px);
}

@media (max-width: 1199px) {
	.case.is-blue {
		margin: 10px;
		padding: 20px;
		width: calc(33.3% - 20px);
		min-width: calc(33.3% - 20px);
	}
}

@media (max-width: 991px) {
	.case.is-blue {
		margin: 10px;
		width: calc(50% - 20px);
		min-width: calc(50% - 20px);
	}
}

@media (max-width: 767px) {
	.case.is-blue {
		margin: 8px;
		width: calc(100% - 16px);
		min-width: calc(100% - 16px);
	}
}

.case.is-blue .case__title a {
	color: white;
}

.review {
	background: #FFFFFF;
	-webkit-box-shadow: 7px 6px 13px rgba(0, 0, 0, 0.05);
	box-shadow: 7px 6px 13px rgba(0, 0, 0, 0.05);
	width: calc(33.3% - 34px);
	min-width: calc(33.3% - 34px);
	margin: 0 17px 60px 17px;
	padding: 40px;
	position: relative;
}

@media (max-width: 991px) {
	.review {
		padding: 30px;
		width: calc(50% - 20px);
		min-width: calc(50% - 20px);
		margin: 0 10px 80px 10px;
	}
}

@media (max-width: 767px) {
	.review {
		width: calc(100% - 20px);
		min-width: calc(100% - 20px);
		padding: 35px 25px;
		margin-bottom: 80px;
	}
}

.review:before {
	width: 0;
	height: 0;
	border-top: 60px solid #FFFFFF;
	border-right: 40px solid transparent;
	content: '';
	position: absolute;
	left: 0;
	bottom: -60px;
	background: none;
}

.reviews {
	margin: 0 -17px;
}

@media (max-width: 991px) {
	.reviews {
		margin: 0 -10px;
	}
}

.review__image {
	border-radius: 50%;
	width: 82px;
	min-width: 82px;
}

@media (max-width: 767px) {
	.review__image {
		width: 72px;
		min-width: 72px;
	}
}

.review__text {
	position: relative;
}

.review__text:before {
	content: '“';
	position: absolute;
	left: -7px;
	top: -70px;
	font-weight: 700;
	font-size: 98px;
	line-height: 1;
	color: #0f0b5e;
}

.review__text:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.89)));
	background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.89) 100%);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.89) 100%);
}

.stages {
	list-style: none;
	counter-reset: counter;
}

.stages > li {
	/*min-height: 239px;*/
	padding: 10px 0 45px 100px;
	position: relative;
	counter-increment: counter;
}

@media (max-width: 767px) {
	.stages > li {
		padding-left: 63px;
		padding-top: 0;
		min-height: auto;
		padding-bottom: 30px;
	}
}

.stages > li:before {
	content: counter(counter);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #FFFFFF;
	border: 6px solid #0F0B5E;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	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;
	font-weight: 700;
	font-size: 1.563rem;
	line-height: 1.2;
	letter-spacing: 0.05em;
	color: #0F0B5E;
}

@media (max-width: 767px) {
	.stages > li:before {
		width: 40px;
		height: 40px;
		border: 2px solid #0F0B5E;
		font-size: 1rem;
		font-weight: 600;
	}
}

.stages > li:after {
	width: 4px;
	position: absolute;
	left: 28px;
	top: 0;
	bottom: 0;
	background: #0F0B5E;
	content: '';
}

@media (max-width: 767px) {
	.stages > li:after {
		width: 2px;
		left: 19px;
	}
}

.stages > li:last-child {
	padding-bottom: 0;
	min-height: auto;
}

.stages > li:last-child:after {
	display: none;
}

.stages__title {
	position: relative;
}

.stages__title:before {
	display: none;
	content: '';
	width: 20px;
	height: 11px;
	background: url(../images/icons/arw.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -5px;
}

@media (max-width: 767px) {
	.stages__title {
		min-height: 40px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		padding-right: 40px;
	}

	.stages__title:before {
		display: block;
	}

	.stages__title.is-active:before {
		-webkit-transform: rotate(-180deg);
		-ms-transform: rotate(-180deg);
		transform: rotate(-180deg);
	}
}

@media (max-width: 767px) {
	.stages__text {
		max-height: 0;
		overflow: hidden;
		-webkit-transition: 0.3s;
		-o-transition: 0.3s;
		transition: 0.3s;
	}
}

.faq__item {
	margin-bottom: 58px;
}

@media (max-width: 767px) {
	.faq__item {
		margin-bottom: 25px;
	}

	.faq__item:last-child {
		margin-bottom: 0;
	}
}

.faq__title {
	border: 3px solid #0F0B5E;
	padding: 25px 27px;
	padding-right: 100px;
	background: #ffffff;
	position: relative;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

@media (max-width: 767px) {
	.faq__title {
		padding: 20px 16px;
		padding-right: 55px;
		border: 1px solid #0F0B5E;
	}
}

.faq__title:after {
	content: '';
	width: 37px;
	height: 21px;
	background: url(../images/icons/arw-down.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	right: 56px;
	top: 50%;
	margin-top: -10px;
}

@media (max-width: 767px) {
	.faq__title:after {
		width: 18px;
		height: 9px;
		margin-top: -5px;
		right: 20px;
	}
}

.faq__title.is-active:after {
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.faq__desc {
	max-height: 0;
	overflow: hidden;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.faq__desc p {
	padding: 30px 27px;
}

@media (max-width: 767px) {
	.faq__desc p {
		padding: 20px 16px;
	}
}

.quote {
	background: #FFFFFF;
	-webkit-box-shadow: 7px 6px 13px rgba(0, 0, 0, 0.05);
	box-shadow: 7px 6px 13px rgba(0, 0, 0, 0.05);
	padding: 25px;
	min-width: 518px;
	position: relative;
	margin-bottom: 40px;
}

@media (max-width: 767px) {
	.quote {
		padding: 15px;
	}
}

.quote:before {
	width: 0;
	height: 0;
	border-top: 40px solid #FFFFFF;
	border-left: 50px solid transparent;
	content: '';
	position: absolute;
	right: 0;
	bottom: -40px;
	background: none;
}

.quote__text:before {
	content: '“';
	font-weight: 700;
	font-size: 98px;
	line-height: 1;
	color: #0F0B5E;
	display: block;
	margin-bottom: -30px;
	margin-left: -10px;
}

@media (max-width: 767px) {
	.quote__text:before {
		margin-left: -5px;
	}
}

.info {
	position: relative;
	min-height: 700px;
}

.info__text {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.info__text > div {
	width: 327px;
	position: absolute;
	line-height: 1.5;
}

.info__text > div:before {
	content: '';
	position: absolute;
	background: #0f0b5e;
	height: 4px;
	width: 179px;
	bottom: -27px;
}

.info__text > div:after {
	content: '';
	width: 30px;
	height: 30px;
	background: #FFFFFF;
	border: 6px solid #0F0B5E;
	border-radius: 50%;
	position: absolute;
	bottom: -40px;
}

.info__text > div:first-child {
	left: 0;
	top: 190px;
}

.info__text > div:first-child:before {
	right: -167px;
}

.info__text > div:first-child:after {
	right: 0;
}

.info__text > div:last-child {
	top: -40px;
	right: 0;
}

.info__text > div:last-child:before {
	left: -167px;
}

.info__text > div:last-child:after {
	left: 0;
}

.work-stages {
	position: relative;
	padding: 0 0;
	margin-top: 120px;
	margin-bottom: 50px;
}

@media (max-width: 991px) {
	.work-stages {
		min-height: auto;
		padding: 0;
		margin-top: 30px;
		margin-bottom: 0;
	}
}

.work-stages__circles-lp {
	position: absolute;
	left: 0;
	top: 0;
	width: 130px;
}

.work-stages ol {
	counter-reset: counter;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	z-index: 1;
	padding-left: 15px;
	padding-right: 15px;
	position: absolute;
	left: 0;
	right: 15px;
	top: 0;
	bottom: 0;
}

@media (max-width: 991px) {
	.work-stages ol {
		padding: 0;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		position: relative;
		right: auto;
		left: auto;
		top: auto;
		bottom: auto;
	}
}

.work-stages ol li {
	counter-increment: counter;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 20%;
	min-width: 20%;
	position: relative;
	/*
			&:before {
				content: counter(counter);
				height: 307px;
				width: 100%;
				font-weight: 800;
				font-size: 60px;
				line-height: 82px;
				text-align: center;
				color: #0F0B5E;
				display: flex;
				align-items: center;
				justify-content: center;
				@include laptop {
					display: none;
				}

			}

       */
}

@media (max-width: 991px) {
	.work-stages ol li {
		width: 100%;
		height: 97px;
		padding-left: 133px;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

.work-stages ol li span {
	position: absolute;
	left: -20px;
	right: -20px;
	top: -60px;
	white-space: nowrap;
	text-align: center;
}

@media (max-width: 991px) {
	.work-stages ol li span {
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		text-align: left;
		white-space: normal;
	}

	.work-stages ol li span br {
		display: none;
	}
}

.work-stages ol li:nth-child(2n) span {
	top: auto;
	bottom: -60px;
}

@media (max-width: 991px) {
	.work-stages ol li:nth-child(2n) span {
		top: auto;
		bottom: auto;
	}
}

.contact-form {
	position: relative;
}

.contact-form .field__error {
	color: red;
}

.contact-form .field__error input.input::-webkit-input-placeholder {
	color: red;
}

.contact-form .field__error input.input::-moz-placeholder {
	color: red;
}

.contact-form .field__error input.input:-ms-input-placeholder {
	color: red;
}

.contact-form .field__error input.input::-ms-input-placeholder {
	color: red;
}

.contact-form .field__error input.input::placeholder {
	color: red;
}

.field-check.field__error label a {
	color: red;
}

.contact-form__error {
	color: red;
	margin-top: 10px;
	font-size: 0.875rem;
	padding-left: 17px;
}

@media (max-width: 767px) {
	.contact-form__error {
		margin-top: 5px;
		font-size: 0.75rem;
		padding-left: 14px;
	}
}

.contact-form__error.error-common {
	margin: 20px 0;
	padding: 0;
}

.contact-form .field-check .contact-form__error {
	padding-left: 36px;
}

@media (max-width: 767px) {
	.contact-form .field-check .contact-form__error {
		padding-left: 30px;
	}
}

.contact-form__overlay {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.5);
	z-index: 2;
}

.contact-form__success {
	display: none;
	-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;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 2;
}

.contact-form__success-title {
	text-align: center;
	margin-top: 25px;
	font-weight: 700;
}

a.sporina-cookie-policy-link {
	display: block;
	margin: 0;
}