@charset "UTF-8";
/* 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/Montserrat/Montserrat-Black.woff2") format("woff2"), url("../fonts/Montserrat/Montserrat-Black.woff") format("woff");
  font-family: "Montserrat";
  font-weight: 900;
  font-style: normal; }

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

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

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

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

@font-face {
  src: url("../fonts/Montserrat/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat/Montserrat-Regular.woff") format("woff");
  font-family: "Montserrat";
  font-weight: 400;
  font-style: normal; }

@font-face {
  src: url("../fonts/Montserrat/Montserrat-Italic.woff2") format("woff2"), url("../fonts/Montserrat/Montserrat-Italic.woff") format("woff");
  font-family: "Montserrat";
  font-weight: 400;
  font-style: italic; }

@font-face {
  src: url("../fonts/Montserrat/Montserrat-Light.woff2") format("woff2"), url("../fonts/Montserrat/Montserrat-Light.woff") format("woff");
  font-family: "Montserrat";
  font-weight: 300;
  font-style: normal; }

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

/*! 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 {
  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 {
  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"] {
  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; }

/*! Pushy - v1.4.0 - 2020-12-28
* Pushy is a responsive off-canvas navigation menu using CSS transforms & transitions.
* https://github.com/christophery/pushy/
* by Christopher Yee */
/* Menu Appearance */
.pushy {
  position: fixed;
  width: 200px;
  height: 100%;
  top: 0;
  z-index: 9999;
  background: #191918;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  /* enables momentum scrolling in iOS overflow elements */ }

.pushy a {
  display: block;
  color: #b3b3b1;
  padding: 15px 30px;
  text-decoration: none; }

.pushy a:hover {
  color: #FFF; }

.pushy ul:first-child {
  margin-top: 10px; }

.pushy.pushy-left {
  left: 0; }

.pushy.pushy-right {
  right: 0; }

.pushy-content {
  visibility: hidden; }

/* Menu Movement */
.pushy-left {
  transform: translate3d(-200px, 0, 0); }

.pushy-open-left #container,
.pushy-open-left .push {
  transform: translate3d(200px, 0, 0); }

.pushy-right {
  transform: translate3d(200px, 0, 0); }

.pushy-open-right #container,
.pushy-open-right .push {
  transform: translate3d(-200px, 0, 0); }

.pushy-open-left .pushy,
.pushy-open-right .pushy {
  transform: translate3d(0, 0, 0); }

.pushy-open-left .pushy-content,
.pushy-open-right .pushy-content {
  visibility: visible; }

/* Menu Transitions */
#container,
.pushy,
.push {
  transition: transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99); }

.pushy-content {
  transition: visibility 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99); }

/* Site Overlay */
.site-overlay {
  display: none; }

.pushy-open-left .site-overlay,
.pushy-open-right .site-overlay {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9998;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-animation: fade 500ms;
  animation: fade 500ms; }

@keyframes fade {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes fade {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

/* Submenu Appearance */
.pushy-submenu {
  /* Submenu Buttons */
  /* Submenu Icon */ }

.pushy-submenu > ul {
  padding-left: 15px;
  transition: max-height 0.2s ease-in-out, visibility 0.2s ease-in-out; }

.pushy-submenu > ul .pushy-link {
  transition: opacity 0.2s ease-in-out; }

.pushy-submenu button {
  width: 100%;
  color: #b3b3b1;
  padding: 15px 30px;
  text-align: left;
  background: transparent;
  border: 0; }

.pushy-submenu button:hover {
  color: #FFF; }

.pushy-submenu > a,
.pushy-submenu > button {
  position: relative; }

.pushy-submenu > a::after,
.pushy-submenu > button::after {
  content: '';
  display: block;
  height: 11px;
  width: 8px;
  position: absolute;
  top: 50%;
  right: 15px;
  background: url("../img/arrow.svg") no-repeat;
  transform: translateY(-50%);
  transition: transform 0.2s; }

/* Submenu Movement */
.pushy-submenu-closed > ul {
  max-height: 0;
  overflow: hidden;
  visibility: hidden; }

.pushy-submenu-closed .pushy-link {
  opacity: 0; }

.pushy-submenu-open {
  /* Submenu Icon */ }

.pushy-submenu-open > ul {
  max-height: 1000px;
  visibility: visible; }

.pushy-submenu-open .pushy-link {
  opacity: 1; }

.pushy-submenu-open > a::after,
.pushy-submenu-open > button::after {
  transform: translateY(-50%) rotate(90deg); }

@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") format("woff");
  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;
  /* Fix of Webkit flickering */
  z-index: 1; }

.swiper-vertical > .swiper-wrapper {
  flex-direction: column; }

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

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

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

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

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

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto; }

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

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

/* 3D Effects */
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px; }

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

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  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: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-3d .swiper-slide-shadow-right {
  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: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

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

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */ }
  .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: '';
  flex-shrink: 0;
  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%;
  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%;
  height: var(--swiper-centered-offset-after); }

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

*,
*::before,
*::after {
  box-sizing: inherit; }

html {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  box-sizing: border-box;
  font-family: -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen, ubuntu, cantarell, "Open Sans", "Helvetica Neue", sans-serif; }
  html.has-cursor,
  html.has-cursor * {
    cursor: none !important; }
  html.is-lock-scroll,
  html.is-lock-scroll body {
    overflow: hidden; }

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%;
          text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  font-family: "Montserrat";
  color: #040C11;
  background-color: #EAE8D8; }

main {
  flex: 1; }

p {
  margin: 0; }

a,
button {
  outline: none;
  transition: 0.4s;
  cursor: pointer; }

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

svg {
  display: block;
  flex: 0 0 auto;
  width: 100%;
  height: 100%;
  fill: currentColor; }

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; }

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

iframe {
  display: block; }

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 0;
  padding: 0;
  text-align: center;
  background-color: transparent;
  transition: 0.4s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .btn__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100%;
    color: currentColor;
    transform: translateZ(0); }

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

.container {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 100%;
  max-width: 83.33333vw; }
  @media (min-width: 1460px) {
    .container {
      max-width: 1400px; } }
  @media (min-width: 576px) and (max-width: 991px) {
    .container {
      max-width: 100%;
      padding-left: 2.6178vw;
      padding-right: 2.6178vw; } }
  @media (max-width: 575px) {
    .container {
      max-width: 100%;
      padding-left: 5.52486vmin;
      padding-right: 5.52486vmin; } }

input {
  outline: none; }

.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: var(--vh); }

.is-hidden {
  display: none !important; }

.is-hide {
  opacity: 0; }

@media (max-width: 991px) {
  .for-desktop {
    display: none !important; } }

@media (min-width: 992px) {
  .for-tablet {
    display: none !important; } }

@media (max-width: 575px) {
  .for-tablet {
    display: none !important; } }

@media (min-width: 992px) {
  .for-mobile {
    display: none !important; } }

@media (min-width: 576px) and (max-width: 991px) {
  .for-mobile {
    display: none !important; } }

@media (min-width: 992px) {
  .for-devices {
    display: none !important; } }

.clearfix {
  overflow: auto; }
  .clearfix::after {
    content: "";
    display: table;
    clear: both; }

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0); }

/* stylelint-disable */
.dont-break-out {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto; }

/* stylelint-enable */
.pushy {
  background-color: #20638C; }
  @media (min-width: 576px) and (max-width: 991px) {
    .pushy__logo {
      padding: 3.14136vw; } }
  @media (max-width: 575px) {
    .pushy__logo {
      padding: 4.41989vmin 6.62983vmin; } }
  .pushy a {
    color: #fff; }
  .pushy .pushy-submenu-open .pushy__btn svg {
    transform: rotate(90deg); }
  .pushy .pushy-submenu-open ul {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
  .pushy .pushy-content li:first-child a {
    border-top: 1px solid rgba(255, 255, 255, 0.15); }
  .pushy .pushy-content a {
    font-size: 2.09424vw;
    padding: 3.14136vw;
    display: flex;
    align-items: center;
    min-height: 5.2356vw;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-top: none; }
    @media (min-width: 576px) and (max-width: 991px) {
      .pushy .pushy-content a {
        font-size: 2.09424vw;
        padding: 2.09424vw 3.14136vw;
        min-height: 5.2356vw; } }
    @media (max-width: 575px) {
      .pushy .pushy-content a {
        font-size: 4.41989vmin;
        padding: 4.41989vmin 6.62983vmin;
        min-height: 11.04972vmin; } }
  .pushy .pushy-submenu ul a {
    border: none !important; }
  .pushy__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-left: none;
    flex-shrink: 0; }
    .pushy__btn svg {
      color: #fff; }
      @media (min-width: 576px) and (max-width: 991px) {
        .pushy__btn svg {
          width: 3.14136vw;
          height: 3.14136vw; } }
      @media (max-width: 575px) {
        .pushy__btn svg {
          width: 6.62983vmin;
          height: 6.62983vmin; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .pushy__btn {
        width: 6.02094vw; } }
    @media (max-width: 575px) {
      .pushy__btn {
        width: 12.70718vmin; } }
  @media (min-width: 576px) and (max-width: 991px) {
    .pushy {
      width: 52.35602vw; } }
  @media (max-width: 575px) {
    .pushy {
      width: 74.58564vmin; } }

@media (min-width: 576px) and (max-width: 991px) {
  .pushy-left {
    transform: translate3d(-52.35602vw, 0, 0); } }

@media (max-width: 575px) {
  .pushy-left {
    transform: translate3d(-74.58564vmin, 0, 0); } }

.widget {
  position: fixed;
  right: 4%;
  bottom: 10%;
  z-index: 99; }
  .widget__ifopen {
    display: none; }
  .widget.is-active .widget__ifopen {
    display: block; }
  .widget.is-active .widget__ifclose {
    display: none; }
  .widget.is-active .widget__ico {
    visibility: visible;
    opacity: 1;
    transform: scale(1); }
  .widget.is-active .widget__center {
    -webkit-animation: none;
            animation: none; }
  .widget__center {
    width: 3.88889vw;
    height: 3.88889vw;
    border-radius: 50%;
    background-color: #20638C;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-animation: pulse 1.5s infinite;
            animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 rgba(32, 99, 140, 0.5);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.15); }
    .widget__center svg {
      width: 2.22222vw;
      height: 2.22222vw; }
      @media (min-width: 1460px) {
        .widget__center svg {
          width: 32px;
          height: 32px; } }
      @media (min-width: 576px) and (max-width: 991px) {
        .widget__center svg {
          width: 4.18848vw;
          height: 4.18848vw; } }
      @media (max-width: 575px) {
        .widget__center svg {
          width: 8.83978vmin;
          height: 8.83978vmin; } }
    @media (min-width: 1460px) {
      .widget__center {
        width: 56px;
        height: 56px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .widget__center {
        width: 6.28272vw;
        height: 6.28272vw; } }
    @media (max-width: 575px) {
      .widget__center {
        width: 13.25967vmin;
        height: 13.25967vmin; } }
  .widget__ico {
    position: absolute;
    width: 3.88889vw;
    height: 3.88889vw;
    background-color: #fff;
    border-radius: 50%;
    transform-origin: 50% 50%;
    transform: scale(0);
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    justify-content: center; }
    .widget__ico svg {
      width: 2.22222vw;
      height: 2.22222vw; }
      @media (min-width: 1460px) {
        .widget__ico svg {
          width: 32px;
          height: 32px; } }
      @media (min-width: 576px) and (max-width: 991px) {
        .widget__ico svg {
          width: 4.18848vw;
          height: 4.18848vw; } }
      @media (max-width: 575px) {
        .widget__ico svg {
          width: 8.83978vmin;
          height: 8.83978vmin; } }
    .widget__ico--1 {
      right: 110%;
      bottom: 0; }
    .widget__ico--2 {
      right: 45%;
      bottom: 120%; }
    .widget__ico--3 {
      right: 45%;
      top: 110%;
      background-color: #EAE8D8; }
    .widget__ico--phone {
      color: #fff;
      background-color: #20638C;
      border: 1px solid rgba(255, 255, 255, 0.15); }
      .widget__ico--phone:hover {
        background-color: #174662; }
    .widget__ico--whatsapp {
      background-color: #52BD72;
      color: #fff; }
      .widget__ico--whatsapp:hover {
        background-color: #3d9f5a; }
    .widget__ico--telegram {
      background-color: #529ABD;
      color: #fff; }
      .widget__ico--telegram:hover {
        background-color: #3d7f9f; }
    .widget__ico--insta {
      color: #fff;
      background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
    @media (min-width: 1460px) {
      .widget__ico {
        width: 56px;
        height: 56px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .widget__ico {
        width: 7.32984vw;
        height: 7.32984vw; } }
    @media (max-width: 575px) {
      .widget__ico {
        width: 15.46961vmin;
        height: 15.46961vmin; } }

@-webkit-keyframes pulse {
  0% { }
  70% {
    box-shadow: 0 0 0 20px rgba(32, 99, 140, 0); }
  100% {
    box-shadow: 0 0 0 0 rgba(32, 99, 140, 0); } }

::-moz-selection {
  background-color: #174662;
  color: #fff; }

::selection {
  background-color: #174662;
  color: #fff; }

.header {
  font-size: 0.97222vw;
  padding: 1.66667vw 0; }
  @media (max-width: 575px) {
    .header .social__item {
      display: none; } }
  .header__btnmenu {
    border-radius: 50%;
    background-color: #20638C;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: #fff; }
    @media (min-width: 576px) and (max-width: 991px) {
      .header__btnmenu svg {
        width: 3.14136vw;
        height: 3.14136vw; } }
    @media (max-width: 575px) {
      .header__btnmenu svg {
        width: 6.62983vmin;
        height: 6.62983vmin; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .header__btnmenu {
        width: 6.28272vw;
        height: 6.28272vw; } }
    @media (max-width: 575px) {
      .header__btnmenu {
        width: 13.25967vmin;
        height: 13.25967vmin; } }
  .header__container {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  @media (min-width: 576px) and (max-width: 991px) {
    .header__add {
      display: none !important; } }
  @media (max-width: 575px) {
    .header__add {
      display: none !important; } }
  .header__logo {
    width: 12.5vw; }
    @media (min-width: 1460px) {
      .header__logo {
        width: 180px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .header__logo {
        width: 23.56021vw; } }
    @media (max-width: 575px) {
      .header__logo {
        width: 40.88398vmin; } }
  .header__nav {
    font-weight: 500; }
    .header__nav ul {
      display: flex;
      gap: 2.22222vw; }
      .header__nav ul li a:hover {
        color: #20638C; }
      @media (min-width: 1460px) {
        .header__nav ul {
          gap: 32px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .header__nav {
        display: none; } }
    @media (max-width: 575px) {
      .header__nav {
        display: none; } }
  .header__contacts {
    display: flex;
    gap: 2.22222vw; }
    @media (min-width: 1460px) {
      .header__contacts {
        gap: 48px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .header__contacts {
        gap: 4.18848vw; } }
    @media (max-width: 575px) {
      .header__contacts {
        gap: 8.83978vmin; } }
  @media (min-width: 1460px) {
    .header {
      font-size: 16px;
      padding: 24px 0; } }
  @media (min-width: 576px) and (max-width: 991px) {
    .header {
      font-size: 2.09424vw;
      padding: 3.14136vw 0; } }
  @media (max-width: 575px) {
    .header {
      font-size: 4.41989vmin;
      padding: 4.41989vmin 0; } }

.contact {
  gap: 1.11111vw;
  font-size: 0.97222vw;
  line-height: 140%;
  display: inline-flex;
  align-items: center; }
  .contact svg {
    width: 1.66667vw;
    height: 1.66667vw;
    color: #20638C; }
    @media (min-width: 1460px) {
      .contact svg {
        width: 24px;
        height: 24px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .contact svg {
        width: 3.14136vw;
        height: 3.14136vw; } }
    @media (max-width: 575px) {
      .contact svg {
        width: 6.62983vmin;
        height: 6.62983vmin; } }
  @media (min-width: 1460px) {
    .contact {
      gap: 16px;
      font-size: 14px; } }
  @media (min-width: 576px) and (max-width: 991px) {
    .contact {
      gap: 2.09424vw;
      font-size: 1.83246vw; } }
  @media (max-width: 575px) {
    .contact {
      gap: 4.41989vmin;
      font-size: 3.8674vmin; } }
  .contact--phone {
    font-size: 1.38889vw;
    font-weight: 700; }
    @media (min-width: 1460px) {
      .contact--phone {
        font-size: 24px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .contact--phone {
        font-size: 2.6178vw; } }
    @media (max-width: 575px) {
      .contact--phone {
        display: none; } }

.social {
  display: flex;
  gap: 0.41667vw; }
  .social__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.33333vw;
    height: 3.33333vw;
    color: #fff;
    border-radius: 50%; }
    .social__item--tg {
      background-color: #529ABD; }
      .social__item--tg:hover {
        background-color: #3d7f9f; }
    .social__item--whatsapp {
      background-color: #52BD72; }
      .social__item--whatsapp:hover {
        background-color: #3d9f5a; }
    .social__item--insta {
      color: #fff;
      background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
    .social__item svg {
      width: 2.22222vw;
      height: 2.22222vw; }
      @media (min-width: 1460px) {
        .social__item svg {
          width: 32px;
          height: 32px; } }
      @media (min-width: 576px) and (max-width: 991px) {
        .social__item svg {
          width: 3.14136vw;
          height: 3.14136vw; } }
      @media (max-width: 575px) {
        .social__item svg {
          width: 6.62983vmin;
          height: 6.62983vmin; } }
    @media (min-width: 1460px) {
      .social__item {
        width: 48px;
        height: 48px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .social__item {
        width: 6.28272vw;
        height: 6.28272vw; } }
    @media (max-width: 575px) {
      .social__item {
        width: 13.25967vmin;
        height: 13.25967vmin; } }
  @media (min-width: 1460px) {
    .social {
      gap: 10px; } }
  @media (min-width: 576px) and (max-width: 991px) {
    .social {
      gap: 1.3089vw; } }
  @media (max-width: 575px) {
    .social {
      gap: 2.76243vmin; } }

.hero {
  padding: 2.77778vw 0 8.33333vw 0;
  position: relative;
  overflow: hidden;
  z-index: 1; }
  .hero__container {
    display: flex;
    align-items: center;
    margin: 0 -0.83333vw; }
    @media (min-width: 1460px) {
      .hero__container {
        margin: 0 -12px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .hero__container {
        margin: 0;
        display: block; } }
    @media (max-width: 575px) {
      .hero__container {
        margin: 0;
        display: block; } }
  .hero__content, .hero__imageblock {
    margin: 0 0.83333vw;
    flex-basis: calc(50% - 1.66667vw);
    max-width: calc(50% - 1.66667vw); }
    @media (min-width: 1460px) {
      .hero__content, .hero__imageblock {
        margin: 0 12px;
        flex-basis: calc(50% - 24px);
        max-width: calc(50% - 24px); } }
    @media (min-width: 576px) and (max-width: 991px) {
      .hero__content, .hero__imageblock {
        margin: 0;
        max-width: 100%; } }
    @media (max-width: 575px) {
      .hero__content, .hero__imageblock {
        margin: 0;
        max-width: 100%; } }
  .hero__imageblock {
    padding-left: 3.47222vw; }
    @media (min-width: 1460px) {
      .hero__imageblock {
        padding-left: 50px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .hero__imageblock {
        padding-left: 0; } }
    @media (max-width: 575px) {
      .hero__imageblock {
        padding-left: 0; } }
  .hero__timer {
    width: 100%;
    margin-bottom: 2.22222vw; }
    .hero__timer-title {
      margin-bottom: 0.83333vw;
      font-size: 1.11111vw;
      text-transform: uppercase;
      font-family: "Buyan";
      text-align: center; }
      @media (min-width: 1460px) {
        .hero__timer-title {
          margin-bottom: 12px;
          font-size: 16px; } }
      @media (min-width: 576px) and (max-width: 991px) {
        .hero__timer-title {
          margin-bottom: 1.57068vw;
          font-size: 2.09424vw; } }
      @media (max-width: 575px) {
        .hero__timer-title {
          margin-bottom: 0;
          font-size: 3.8674vmin; } }
    @media (max-width: 575px) {
      .hero__timer-wrapper {
        transform: scale(0.5) translateX(-50%);
        transform-origin: 50% 50%;
        width: 200%;
        margin-top: -3.31492vmin; } }
    @media (min-width: 1460px) {
      .hero__timer {
        margin-bottom: 32px;
        font-size: 16px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .hero__timer {
        margin-bottom: 4.18848vw; } }
    @media (max-width: 575px) {
      .hero__timer {
        margin-bottom: 0; } }
  .hero__header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.22222vw;
    justify-content: space-between; }
    @media (min-width: 1460px) {
      .hero__header {
        margin-bottom: 40px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .hero__header {
        display: block;
        margin-bottom: 2.09424vw; } }
    @media (max-width: 575px) {
      .hero__header {
        display: block;
        margin-bottom: 2.76243vmin; } }
  .hero__wrapper {
    position: relative;
    margin-bottom: 0.83333vw; }
    @media (min-width: 1460px) {
      .hero__wrapper {
        margin-bottom: 12px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .hero__wrapper {
        margin-bottom: 0; } }
    @media (max-width: 575px) {
      .hero__wrapper {
        margin-bottom: 0; } }
  @media (min-width: 576px) and (max-width: 991px) {
    .hero__wrap {
      display: flex;
      gap: 2.09424vw; } }
  @media (max-width: 575px) {
    .hero__wrap {
      display: flex;
      gap: 2.76243vmin; } }
  .hero__image {
    border-radius: 0.83333vw;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex; }
    .hero__image:after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 1;
      background: rgba(4, 12, 17, 0.5); }
    .hero__image video {
      height: 22.22222vw;
      width: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
      @media (min-width: 1460px) {
        .hero__image video {
          height: 460px; } }
      @media (min-width: 576px) and (max-width: 991px) {
        .hero__image video {
          height: 47.12042vw; } }
      @media (max-width: 575px) {
        .hero__image video {
          height: 60.77348vmin; } }
    .hero__image img {
      width: 100%; }
    @media (min-width: 1460px) {
      .hero__image {
        border-radius: 12px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .hero__image {
        border-radius: 1.57068vw; } }
    @media (max-width: 575px) {
      .hero__image {
        border-radius: 1.65746vmin; } }
  .hero__date {
    position: absolute;
    bottom: 2.22222vw;
    left: 2.22222vw;
    z-index: 2;
    background-color: #F4D920;
    padding: 1.66667vw;
    border-radius: 0.41667vw;
    font-weight: 600;
    font-size: 1.66667vw;
    line-height: 120%; }
    .hero__date span {
      display: block;
      font-size: 2.5vw; }
      @media (min-width: 1460px) {
        .hero__date span {
          font-size: 36px; } }
      @media (min-width: 576px) and (max-width: 991px) {
        .hero__date span {
          font-size: 2.6178vw; } }
      @media (max-width: 575px) {
        .hero__date span {
          font-size: 5.52486vmin; } }
    @media (min-width: 1460px) {
      .hero__date {
        bottom: 32px;
        left: 32px;
        padding: 24px;
        border-radius: 6px;
        font-size: 24px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .hero__date {
        position: relative;
        bottom: auto;
        left: auto;
        padding: 2.09424vw;
        border-radius: 0.78534vw;
        font-size: 1.57068vw;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 1.04712vw; } }
    @media (max-width: 575px) {
      .hero__date {
        position: relative;
        bottom: auto;
        left: auto;
        padding: 3.31492vmin 4.41989vmin;
        border-radius: 1.65746vmin;
        font-size: 3.31492vmin;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 2.20994vmin; } }
  .hero__heading {
    font-family: "Buyan";
    max-width: 63.68056vw;
    width: 100%;
    font-size: 6.52778vw;
    font-weight: 700;
    line-height: 100%;
    margin-top: 0;
    margin-bottom: 3.33333vw;
    text-align: center; }
    .hero__heading span {
      color: #20638C;
      font-size: 4.86111vw;
      display: block; }
      @media (min-width: 1460px) {
        .hero__heading span {
          font-size: 82px; } }
      @media (min-width: 576px) and (max-width: 991px) {
        .hero__heading span {
          font-size: 10.4712vw; } }
      @media (max-width: 575px) {
        .hero__heading span {
          font-size: 10.22099vmin; } }
    @media (min-width: 1460px) {
      .hero__heading {
        max-width: 1200px;
        font-size: 110px;
        margin-bottom: 48px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .hero__heading {
        max-width: 100%;
        font-size: 13.87435vw;
        margin-bottom: 4.18848vw; } }
    @media (max-width: 575px) {
      .hero__heading {
        max-width: 100%;
        font-size: 13.81215vmin;
        margin-bottom: 8.83978vmin; } }
  .hero__btn {
    height: 5.55556vw;
    font-size: 1.38889vw;
    font-weight: 600;
    width: 100%; }
    @media (min-width: 1460px) {
      .hero__btn {
        height: 80px;
        font-size: 20px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .hero__btn {
        height: 10.4712vw;
        font-size: 2.6178vw;
        margin-bottom: 2.09424vw; } }
    @media (max-width: 575px) {
      .hero__btn {
        height: 22.09945vmin;
        font-size: 4.41989vmin;
        margin-bottom: 2.76243vmin; } }
  .hero__speakers {
    background-color: #F4D920;
    padding: 1.66667vw 2.22222vw;
    border-radius: 0.41667vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.90278vw;
    margin-top: 0.83333vw; }
    .hero__speakers span {
      font-size: 2.77778vw; }
      @media (min-width: 1460px) {
        .hero__speakers span {
          font-size: 40px; } }
      @media (min-width: 576px) and (max-width: 991px) {
        .hero__speakers span {
          font-size: 3.9267vw; } }
      @media (max-width: 575px) {
        .hero__speakers span {
          font-size: 8.28729vmin; } }
    @media (min-width: 1460px) {
      .hero__speakers {
        padding: 24px 32px;
        border-radius: 6px;
        font-size: 13px;
        margin-top: 12px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .hero__speakers {
        background-color: #529ABD;
        padding: 2.09424vw 2.09424vw;
        border-radius: 0.78534vw;
        font-size: 1.43979vw;
        margin-top: 0;
        color: #fff;
        flex-shrink: 0; } }
    @media (max-width: 575px) {
      .hero__speakers {
        background-color: #529ABD;
        padding: 3.31492vmin 4.41989vmin;
        border-radius: 1.65746vmin;
        font-size: 3.03867vmin;
        margin-top: 0;
        color: #fff;
        flex-shrink: 0; } }
  @media (min-width: 1460px) {
    .hero {
      padding: 30px 0 120px 0; } }
  @media (min-width: 576px) and (max-width: 991px) {
    .hero {
      padding: 4.18848vw 0 10.4712vw 0; } }
  @media (max-width: 575px) {
    .hero {
      padding: 8.83978vmin 0 17.67956vmin 0; } }

.marquee {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 8.33333vw;
  font-weight: 500;
  color: #D2CEAC;
  font-family: "Buyan"; }
  .marquee .swiper-wrapper {
    transition-timing-function: linear !important; }
  .marquee .swiper-slide {
    width: auto !important; }
  .marquee__item {
    padding-right: 6.94444vw; }
    @media (min-width: 1460px) {
      .marquee__item {
        padding-right: 100px; } }
  @media (max-width: 991px) {
    .marquee {
      display: none; } }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.41667vw;
  padding: 0 1.66667vw;
  font-size: 1.11111vw;
  height: 5.55556vw;
  font-weight: 600; }
  .btn--blue {
    background-color: #2B8EBE;
    color: #fff; }
    .btn--blue:hover {
      background-color: #20638C; }
  .btn--yellowborder {
    border: 1px solid #F4D920; }
    .btn--yellowborder:hover {
      background-color: #F4D920;
      color: #040C11; }
  @media (min-width: 1460px) {
    .btn {
      border-radius: 6px;
      padding: 0 12px;
      font-size: 16px;
      height: 80px; } }
  @media (min-width: 576px) and (max-width: 991px) {
    .btn {
      border-radius: 0.78534vw;
      padding: 0 1.57068vw;
      font-size: 2.09424vw;
      height: 10.4712vw; } }
  @media (max-width: 575px) {
    .btn {
      border-radius: 1.65746vmin;
      padding: 0 3.31492vmin;
      font-size: 4.41989vmin;
      height: 22.09945vmin; } }

.speakers {
  background-color: #20638C;
  padding: 9.72222vw 0 5.27778vw;
  color: #fff; }
  .speakers .sectionheader {
    border-bottom-color: #3E85B2; }
    .speakers .sectionheader__subheading {
      color: #98C9E8; }
  .speakers__list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.83333vw; }
    @media (min-width: 1460px) {
      .speakers__list {
        margin: 0 -12px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .speakers__list {
        margin: 0 -1.3089vw; } }
    @media (max-width: 575px) {
      .speakers__list {
        margin: 0 -1.38122vmin; } }
  .speakers__item {
    margin: 0 0.83333vw;
    flex-basis: calc(25% - 1.66667vw);
    margin-bottom: 4.44444vw; }
    .speakers__item:last-child {
      margin-right: 0.83333vw;
      margin-left: auto; }
      @media (min-width: 1460px) {
        .speakers__item:last-child {
          margin-right: 12px; } }
      @media (min-width: 576px) and (max-width: 991px) {
        .speakers__item:last-child {
          margin-right: auto;
          margin-left: 1.3089vw; } }
      @media (max-width: 575px) {
        .speakers__item:last-child {
          margin-right: auto;
          margin-left: 2.76243vmin; } }
    @media (min-width: 1460px) {
      .speakers__item {
        margin: 0 12px;
        flex-basis: calc(25% - 24px);
        margin-bottom: 64px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .speakers__item {
        margin: 0 1.3089vw;
        flex-basis: calc(33.33% - 2.6178vw);
        margin-bottom: 6.28272vw; } }
    @media (max-width: 575px) {
      .speakers__item {
        margin: 0 1.38122vmin;
        flex-basis: calc(50% - 2.76243vmin);
        max-width: calc(50% - 2.76243vmin);
        margin-bottom: 13.25967vmin; } }
  @media (min-width: 1460px) {
    .speakers {
      padding: 140px 0 76px; } }
  @media (min-width: 576px) and (max-width: 991px) {
    .speakers {
      padding: 10.4712vw 0 4.18848vw; } }
  @media (max-width: 575px) {
    .speakers {
      padding: 17.67956vmin 0 4.41989vmin; } }

.sectionheader {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 3.33333vw;
  margin-bottom: 3.88889vw;
  border-bottom: 1px solid #040C11; }
  .sectionheader__heading {
    font-weight: 700;
    font-size: 8.33333vw;
    line-height: 77%;
    font-family: "Buyan";
    margin-top: 0;
    margin-bottom: 0; }
    @media (min-width: 1460px) {
      .sectionheader__heading {
        font-size: 120px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .sectionheader__heading {
        font-size: 10.4712vw; } }
    @media (max-width: 575px) {
      .sectionheader__heading {
        font-size: 17.67956vmin;
        line-height: 100%; } }
  .sectionheader__subheading {
    font-size: 1.66667vw;
    font-weight: 500;
    line-height: 110%;
    max-width: 19.30556vw; }
    @media (min-width: 1460px) {
      .sectionheader__subheading {
        font-size: 24px;
        max-width: 278px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .sectionheader__subheading {
        font-size: 2.35602vw;
        max-width: 28.79581vw; } }
    @media (max-width: 575px) {
      .sectionheader__subheading {
        font-size: 4.41989vmin;
        max-width: 100%; }
        .sectionheader__subheading br {
          display: none; } }
  @media (min-width: 1460px) {
    .sectionheader {
      padding-bottom: 48px;
      margin-bottom: 56px; } }
  @media (min-width: 576px) and (max-width: 991px) {
    .sectionheader {
      padding-bottom: 4.18848vw;
      margin-bottom: 5.2356vw; } }
  @media (max-width: 575px) {
    .sectionheader {
      padding-bottom: 8.83978vmin;
      margin-bottom: 8.83978vmin;
      flex-direction: column;
      align-items: flex-start;
      gap: 2.20994vmin; } }

.speaker__name {
  font-size: 2.77778vw;
  line-height: 100%;
  font-weight: 500;
  margin-bottom: 1.66667vw;
  font-family: "Buyan"; }
  @media (min-width: 1460px) {
    .speaker__name {
      font-size: 40px;
      margin-bottom: 24px; } }
  @media (min-width: 576px) and (max-width: 991px) {
    .speaker__name {
      font-size: 5.2356vw;
      margin-bottom: 3.14136vw; } }
  @media (max-width: 575px) {
    .speaker__name {
      font-size: 7.73481vmin;
      margin-bottom: 4.41989vmin; } }

.speaker__image {
  border-radius: 0.83333vw;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 2.22222vw; }
  .speaker__image img {
    width: 100%; }
  @media (min-width: 1460px) {
    .speaker__image {
      border-radius: 12px;
      margin-bottom: 32px; } }
  @media (min-width: 576px) and (max-width: 991px) {
    .speaker__image {
      border-radius: 1.57068vw;
      margin-bottom: 3.14136vw; } }
  @media (max-width: 575px) {
    .speaker__image {
      border-radius: 1.65746vmin;
      margin-bottom: 3.31492vmin; } }

.speaker__subtitle {
  font-size: 1.11111vw;
  line-height: 120%;
  margin-bottom: 0.83333vw; }
  @media (min-width: 1460px) {
    .speaker__subtitle {
      font-size: 16px;
      margin-bottom: 12px; } }
  @media (min-width: 576px) and (max-width: 991px) {
    .speaker__subtitle {
      font-size: 1.83246vw;
      margin-bottom: 1.57068vw; } }
  @media (max-width: 575px) {
    .speaker__subtitle {
      font-size: 3.31492vmin;
      margin-bottom: 3.31492vmin; } }

.speaker__intro {
  font-size: 0.83333vw;
  font-weight: 500;
  color: #98C9E8; }
  .speaker__intro li {
    padding-left: 1.25vw;
    margin-bottom: 0.27778vw;
    position: relative; }
    .speaker__intro li:before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.27778vw;
      width: 0.41667vw;
      height: 0.41667vw;
      border-radius: 50%;
      background-color: #F4D920; }
      @media (min-width: 1460px) {
        .speaker__intro li:before {
          top: 4px;
          width: 6px;
          height: 6px; } }
      @media (min-width: 576px) and (max-width: 991px) {
        .speaker__intro li:before {
          top: 0.52356vw;
          width: 0.78534vw;
          height: 0.78534vw; } }
      @media (max-width: 575px) {
        .speaker__intro li:before {
          display: none; } }
    @media (min-width: 1460px) {
      .speaker__intro li {
        padding-left: 18px;
        margin-bottom: 4px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .speaker__intro li {
        padding-left: 2.35602vw;
        margin-bottom: 0.52356vw; } }
    @media (max-width: 575px) {
      .speaker__intro li {
        padding-left: 0;
        margin-bottom: 0; } }
  @media (min-width: 1460px) {
    .speaker__intro {
      font-size: 12px; } }
  @media (min-width: 576px) and (max-width: 991px) {
    .speaker__intro {
      font-size: 1.3089vw; } }
  @media (max-width: 575px) {
    .speaker__intro {
      font-size: 2.20994vmin; } }

.advantages {
  padding: 9.72222vw 0;
  background-color: #fff; }
  .advantages__header {
    display: flex;
    gap: 1.66667vw;
    margin-bottom: 4.44444vw; }
    @media (min-width: 1460px) {
      .advantages__header {
        gap: 24px;
        margin-bottom: 64px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .advantages__header {
        gap: 2.6178vw;
        margin-bottom: 8.37696vw; } }
    @media (max-width: 575px) {
      .advantages__header {
        gap: 7.45856vmin;
        margin-bottom: 15.46961vmin;
        flex-direction: column;
        align-items: flex-start; } }
  .advantages__logo {
    width: 12.5vw;
    flex-shrink: 0; }
    @media (min-width: 1460px) {
      .advantages__logo {
        width: 180px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .advantages__logo {
        width: 13.74346vw; } }
    @media (max-width: 575px) {
      .advantages__logo {
        width: 21.27072vmin; } }
  .advantages__title {
    font-family: "Buyan";
    font-size: 4.09722vw;
    font-weight: 700;
    line-height: 110%; }
    .advantages__title span {
      display: flex;
      color: #20638C; }
    @media (min-width: 1460px) {
      .advantages__title {
        font-size: 59px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .advantages__title {
        font-size: 5.2356vw; } }
    @media (max-width: 575px) {
      .advantages__title {
        font-size: 7.18232vmin; } }
  .advantages__row {
    display: flex;
    margin: 0 -0.83333vw; }
    @media (min-width: 1460px) {
      .advantages__row {
        margin: 0 -12px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .advantages__row {
        display: block;
        margin: 0; } }
    @media (max-width: 575px) {
      .advantages__row {
        display: block;
        margin: 0; } }
  .advantages__col {
    margin: 0 0.83333vw; }
    .advantages__col--33 {
      flex-basis: calc(33.33% - 1.66667vw); }
      @media (min-width: 1460px) {
        .advantages__col--33 {
          flex-basis: calc(33.33% - 24px); } }
    @media (min-width: 1460px) {
      .advantages__col {
        margin: 0 12px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .advantages__col {
        margin: 0;
        margin-bottom: 5.2356vw; } }
    @media (max-width: 575px) {
      .advantages__col {
        margin: 0;
        margin-bottom: 11.04972vmin; } }
  @media (min-width: 1460px) {
    .advantages {
      padding: 140px 0; } }
  @media (min-width: 576px) and (max-width: 991px) {
    .advantages {
      padding: 10.4712vw 0 5.2356vw; } }
  @media (max-width: 575px) {
    .advantages {
      padding: 17.67956vmin 0 6.62983vmin; } }

.advant {
  font-size: 1.11111vw;
  line-height: 140%;
  position: relative;
  padding-top: 7.43056vw; }
  .advant:before {
    content: "";
    background: url(../images/deco.png) no-repeat left top;
    background-size: 5.34722vw;
    width: 5.34722vw;
    height: 5.34722vw;
    display: inline-flex;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: rotate 10s linear infinite;
            animation: rotate 10s linear infinite; }
    @media (min-width: 1460px) {
      .advant:before {
        background-size: 77px;
        width: 77px;
        height: 77px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .advant:before {
        background-size: 7.32984vw;
        width: 7.32984vw;
        height: 7.32984vw;
        position: relative;
        left: auto;
        top: auto;
        position: relative;
        flex-shrink: 0; } }
    @media (max-width: 575px) {
      .advant:before {
        background-size: 15.46961vmin;
        width: 15.46961vmin;
        height: 15.46961vmin;
        position: relative;
        left: auto;
        top: auto;
        position: relative;
        flex-shrink: 0; } }
  .advant--2:before {
    -webkit-animation: rotate-reverse 10s linear infinite !important;
            animation: rotate-reverse 10s linear infinite !important; }
  @media (min-width: 1460px) {
    .advant {
      padding-top: 104px;
      font-size: 16px; } }
  @media (min-width: 576px) and (max-width: 991px) {
    .advant {
      padding-top: 0;
      font-size: 1.83246vw;
      display: flex;
      gap: 2.6178vw; } }
  @media (max-width: 575px) {
    .advant {
      padding-top: 0;
      font-size: 3.8674vmin;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 2.6178vw; } }

@-webkit-keyframes rotate {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@keyframes rotate {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@-webkit-keyframes rotate-reverse {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(-360deg); } }

@keyframes rotate-reverse {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(-360deg); } }

.for-whom {
  padding: 9.72222vw 0; }
  .for-whom__item {
    margin-bottom: 0.41667vw; }
    .for-whom__item:last-child {
      margin-bottom: 0; }
    @media (min-width: 1460px) {
      .for-whom__item {
        margin-bottom: 6px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .for-whom__item {
        margin-bottom: 0.78534vw; } }
    @media (max-width: 575px) {
      .for-whom__item {
        margin-bottom: 1.65746vmin; } }
  @media (min-width: 1460px) {
    .for-whom {
      padding: 140px 0; } }
  @media (min-width: 576px) and (max-width: 991px) {
    .for-whom {
      padding: 10.4712vw 0; } }
  @media (max-width: 575px) {
    .for-whom {
      padding: 17.67956vmin 0; } }

.fw-card {
  border-radius: 0.83333vw;
  background-color: #fff;
  display: flex;
  padding: 4.44444vw 3.33333vw;
  gap: 2.22222vw;
  transition: all .3s ease-out; }
  .fw-card__btn {
    white-space: nowrap;
    width: 15.27778vw;
    flex-shrink: 0;
    height: 3.61111vw;
    font-weight: 500;
    font-size: 0.97222vw;
    margin-left: auto;
    margin-right: 0; }
    @media (min-width: 1460px) {
      .fw-card__btn {
        width: 220px;
        height: 52px;
        font-size: 14px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .fw-card__btn {
        width: 28.79581vw;
        height: 6.80628vw;
        font-size: 1.83246vw; } }
    @media (max-width: 575px) {
      .fw-card__btn {
        height: 14.36464vmin;
        font-size: 3.8674vmin;
        width: 100%; } }
  .fw-card__title {
    width: 23.26389vw;
    flex-shrink: 0;
    font-size: 1.80556vw;
    font-weight: 500;
    line-height: 120%;
    display: flex;
    gap: 1.66667vw; }
    .fw-card__title svg {
      width: 3.33333vw;
      height: 3.33333vw;
      color: #20638C;
      transition: all .3s ease-out; }
      @media (min-width: 1460px) {
        .fw-card__title svg {
          width: 48px;
          height: 48px; } }
      @media (min-width: 576px) and (max-width: 991px) {
        .fw-card__title svg {
          width: 4.18848vw;
          height: 4.18848vw; } }
      @media (max-width: 575px) {
        .fw-card__title svg {
          width: 8.83978vmin;
          height: 8.83978vmin; } }
    @media (min-width: 1460px) {
      .fw-card__title {
        width: 335px;
        font-size: 26px;
        gap: 24px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .fw-card__title {
        width: 100%;
        font-size: 2.6178vw;
        gap: 2.09424vw;
        max-width: 45.81152vw; } }
    @media (max-width: 575px) {
      .fw-card__title {
        width: 100%;
        font-size: 5.52486vmin;
        gap: 4.41989vmin;
        max-width: 100%;
        flex-direction: column;
        align-items: flex-start; } }
  .fw-card__intro {
    flex-grow: 1;
    font-size: 1.11111vw;
    line-height: 140%;
    color: #223E50;
    transition: all .3s ease-out; }
    @media (min-width: 1460px) {
      .fw-card__intro {
        font-size: 16px;
        max-width: 500px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .fw-card__intro {
        font-size: 1.83246vw;
        max-width: 100%; } }
    @media (max-width: 575px) {
      .fw-card__intro {
        font-size: 3.8674vmin;
        max-width: 100%; } }
  .fw-card:hover {
    color: #fff;
    background-color: #20638C; }
    .fw-card:hover .fw-card__title svg {
      color: #F4D920;
      transform: rotate(-45deg); }
    .fw-card:hover .fw-card__intro {
      color: #fff; }
    .fw-card:hover .fw-card__btn {
      background-color: #F4D920;
      color: #040C11; }
      .fw-card:hover .fw-card__btn:hover {
        background-color: #040C11;
        color: #fff; }
  @media (min-width: 1460px) {
    .fw-card {
      border-radius: 12px;
      padding: 64px 48px;
      gap: 32px; } }
  @media (min-width: 576px) and (max-width: 991px) {
    .fw-card {
      flex-direction: column;
      align-items: flex-start;
      border-radius: 1.57068vw;
      padding: 3.14136vw;
      gap: 4.18848vw; } }
  @media (max-width: 575px) {
    .fw-card {
      flex-direction: column;
      align-items: flex-start;
      border-radius: 3.31492vmin;
      padding: 6.62983vmin;
      gap: 6.62983vmin; } }

.values {
  padding: 9.72222vw 0;
  background-color: #fff; }
  .values__cards {
    display: flex;
    margin: 0 -0.83333vw; }
    @media (min-width: 1460px) {
      .values__cards {
        margin: 0 -12px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .values__cards {
        margin: 0 -1.3089vw;
        flex-wrap: wrap; } }
    @media (max-width: 575px) {
      .values__cards {
        margin: 0;
        display: block; } }
  .values__card {
    margin: 0 0.83333vw;
    flex-basis: calc(33.33% - 1.66667vw);
    max-width: calc(33.33% - 1.66667vw); }
    @media (min-width: 1460px) {
      .values__card {
        margin: 0 12px;
        flex-basis: calc(33.33% - 24px);
        max-width: calc(33.33% - 24px); } }
    @media (min-width: 576px) and (max-width: 991px) {
      .values__card {
        margin: 0 1.3089vw;
        flex-basis: calc(50% - 2.6178vw);
        max-width: calc(50% - 2.6178vw);
        margin-bottom: 2.6178vw; }
        .values__card:last-child {
          flex-basis: calc(100% - 2.6178vw);
          max-width: calc(100% - 2.6178vw); } }
    @media (max-width: 575px) {
      .values__card {
        margin: 0;
        max-width: 100%;
        margin-bottom: 1.65746vmin; } }
  @media (min-width: 1460px) {
    .values {
      padding: 140px 0; } }
  @media (min-width: 576px) and (max-width: 991px) {
    .values {
      padding: 10.4712vw 0; } }
  @media (max-width: 575px) {
    .values {
      padding: 17.67956vmin 0; } }

.v-card {
  background-color: #20638C;
  min-height: 26.66667vw;
  border-radius: 0.83333vw;
  padding: 2.22222vw;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between; }
  .v-card__ico {
    color: #F4D920; }
    .v-card__ico svg {
      width: 3.33333vw;
      height: 3.33333vw; }
      @media (min-width: 1460px) {
        .v-card__ico svg {
          width: 48px;
          height: 48px; } }
      @media (min-width: 576px) and (max-width: 991px) {
        .v-card__ico svg {
          width: 6.28272vw;
          height: 6.28272vw; } }
      @media (max-width: 575px) {
        .v-card__ico svg {
          width: 6.62983vmin;
          height: 6.62983vmin;
          margin-left: -1.10497vmin; } }
    @media (max-width: 575px) {
      .v-card__ico {
        margin-bottom: 11.04972vmin; } }
  .v-card__title {
    font-size: 2.08333vw;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 1.66667vw; }
    @media (min-width: 1460px) {
      .v-card__title {
        font-size: 30px;
        margin-bottom: 24px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .v-card__title {
        font-size: 2.6178vw;
        margin-bottom: 3.14136vw; } }
    @media (max-width: 575px) {
      .v-card__title {
        font-size: 5.52486vmin;
        margin-bottom: 6.62983vmin; } }
  .v-card__intro {
    font-size: 1.11111vw;
    line-height: 140%; }
    @media (min-width: 1460px) {
      .v-card__intro {
        font-size: 16px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .v-card__intro {
        font-size: 1.83246vw; }
        .v-card__intro:last-child {
          max-width: 49.73822vw; } }
    @media (max-width: 575px) {
      .v-card__intro {
        font-size: 3.8674vmin; }
        .v-card__intro:last-child {
          max-width: 100%; } }
  .v-card:nth-child(2) {
    background-color: #529ABD; }
  .v-card:nth-child(3) {
    background-color: #EAE8D8;
    color: #040C11; }
    .v-card:nth-child(3) .v-card__ico svg {
      color: #20638C; }
  @media (min-width: 1460px) {
    .v-card {
      min-height: 384px;
      border-radius: 12px;
      padding: 32px; } }
  @media (min-width: 576px) and (max-width: 991px) {
    .v-card {
      min-height: 43.4555vw;
      border-radius: 1.57068vw;
      padding: 4.18848vw; } }
  @media (max-width: 575px) {
    .v-card {
      min-height: auto;
      border-radius: 1.65746vmin;
      padding: 6.62983vmin; } }

.program {
  padding: 9.72222vw 0; }
  .program__intro {
    font-size: 1.66667vw;
    line-height: 120%;
    font-weight: 500;
    margin-bottom: 2.43056vw; }
    @media (min-width: 1460px) {
      .program__intro {
        font-size: 24px;
        margin-bottom: 35px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .program__intro {
        font-size: 2.6178vw;
        margin-bottom: 3.14136vw; } }
    @media (max-width: 575px) {
      .program__intro {
        font-size: 4.97238vmin;
        margin-bottom: 6.62983vmin; } }
  .program__list {
    display: flex;
    flex-direction: column;
    gap: 0.41667vw; }
    .program__list li {
      position: relative;
      padding: 2.22222vw 1.66667vw;
      background-color: #fff;
      font-size: 1.66667vw;
      font-weight: 500;
      line-height: 120%;
      border-radius: 0.41667vw;
      display: flex;
      align-items: center;
      gap: 1.66667vw;
      transition: all .3s ease-out; }
      .program__list li:before {
        content: "";
        display: inline-block;
        flex-shrink: 0;
        background-color: #F4D920;
        width: 0.69444vw;
        height: 0.69444vw;
        border-radius: 50%; }
        @media (min-width: 1460px) {
          .program__list li:before {
            width: 10px;
            height: 10px; } }
        @media (min-width: 576px) and (max-width: 991px) {
          .program__list li:before {
            width: 1.3089vw;
            height: 1.3089vw; } }
        @media (max-width: 575px) {
          .program__list li:before {
            width: 2.76243vmin;
            height: 2.76243vmin; } }
      .program__list li:hover {
        transform: translateX(1.66667vw); }
        @media (min-width: 1460px) {
          .program__list li:hover {
            transform: translateX(24px); } }
        @media (min-width: 576px) and (max-width: 991px) {
          .program__list li:hover {
            transform: none; } }
        @media (max-width: 575px) {
          .program__list li:hover {
            transform: none; } }
      @media (min-width: 1460px) {
        .program__list li {
          padding: 32px 24px;
          font-size: 24px;
          border-radius: 6px;
          gap: 24px; } }
      @media (min-width: 576px) and (max-width: 991px) {
        .program__list li {
          padding: 3.14136vw 2.09424vw;
          font-size: 2.35602vw;
          border-radius: 0.78534vw;
          gap: 3.14136vw; } }
      @media (max-width: 575px) {
        .program__list li {
          padding: 6.62983vmin 4.41989vmin;
          font-size: 4.41989vmin;
          border-radius: 1.65746vmin;
          gap: 6.62983vmin; } }
    @media (min-width: 1460px) {
      .program__list {
        gap: 6px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .program__list {
        gap: 0.78534vw; } }
    @media (max-width: 575px) {
      .program__list {
        gap: 1.65746vmin; } }
  @media (min-width: 576px) and (max-width: 991px) {
    .program .sectionheader__subheading {
      width: 18.32461vw; } }
  @media (min-width: 1460px) {
    .program {
      padding: 140px 0; } }
  @media (min-width: 576px) and (max-width: 991px) {
    .program {
      padding: 10.4712vw 0; } }
  @media (max-width: 575px) {
    .program {
      padding: 17.67956vmin 0; } }

.feedback {
  padding: 9.72222vw 0;
  background-color: #20638C;
  color: #fff; }
  .feedback__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2.91667vw;
    margin-bottom: 2.22222vw; }
    @media (min-width: 1460px) {
      .feedback__header {
        gap: 42px;
        margin-bottom: 32px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .feedback__header {
        gap: 5.49738vw;
        margin-bottom: 4.18848vw;
        flex-direction: column;
        align-items: flex-start; } }
    @media (max-width: 575px) {
      .feedback__header {
        gap: 6.62983vmin;
        margin-bottom: 4.41989vmin;
        flex-direction: column;
        align-items: flex-start; } }
  .feedback__heading {
    margin: 0;
    font-size: 3.26389vw;
    font-weight: 500;
    line-height: 100%; }
    @media (min-width: 1460px) {
      .feedback__heading {
        font-size: 47px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .feedback__heading {
        font-size: 4.18848vw; } }
    @media (max-width: 575px) {
      .feedback__heading {
        font-size: 6.62983vmin; } }
  .feedback__price {
    flex-shrink: 0;
    white-space: nowrap;
    font-weight: 500;
    font-size: 1.66667vw;
    border-radius: 0.41667vw;
    padding: 1.11111vw 1.66667vw;
    line-height: 100%;
    background-color: #F4D920;
    color: #040C11; }
    @media (min-width: 1460px) {
      .feedback__price {
        font-size: 24px;
        border-radius: 6px;
        padding: 16px 24px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .feedback__price {
        font-size: 3.14136vw;
        border-radius: 0.78534vw;
        padding: 2.09424vw 3.14136vw; } }
    @media (max-width: 575px) {
      .feedback__price {
        font-size: 5.52486vmin;
        border-radius: 1.65746vmin;
        padding: 4.41989vmin 6.62983vmin;
        width: 100%;
        text-align: center; } }
  .feedback__btn {
    font-size: 1.38889vw;
    display: flex; }
    @media (min-width: 1460px) {
      .feedback__btn {
        font-size: 20px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .feedback__btn {
        font-size: 2.6178vw; } }
    @media (max-width: 575px) {
      .feedback__btn {
        font-size: 4.97238vmin;
        height: 17.67956vmin; } }
  @media (min-width: 1460px) {
    .feedback {
      padding: 140px 0; } }
  @media (min-width: 576px) and (max-width: 991px) {
    .feedback {
      padding: 10.4712vw 0; } }
  @media (max-width: 575px) {
    .feedback {
      padding: 17.67956vmin 0; } }

.footer {
  padding-top: 9.72222vw;
  padding-bottom: 3.47222vw; }
  .footer__contacts {
    display: flex;
    justify-content: space-between;
    gap: 2.22222vw;
    margin-bottom: 3.47222vw; }
    @media (min-width: 1460px) {
      .footer__contacts {
        gap: 32px;
        margin-bottom: 50px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .footer__contacts {
        gap: 4.18848vw;
        margin-bottom: 6.5445vw;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start; } }
    @media (max-width: 575px) {
      .footer__contacts {
        gap: 6.62983vmin;
        margin-bottom: 13.81215vmin;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start; } }
  .footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media (min-width: 576px) and (max-width: 991px) {
      .footer__bottom {
        flex-wrap: wrap;
        align-items: flex-start; } }
    @media (max-width: 575px) {
      .footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 6.62983vmin; } }
  .footer__logo {
    width: 12.5vw; }
    @media (min-width: 1460px) {
      .footer__logo {
        width: 180px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .footer__logo {
        width: 23.56021vw;
        order: 1; } }
    @media (max-width: 575px) {
      .footer__logo {
        width: 40.88398vmin;
        order: 1; } }
  .footer__nav {
    display: flex;
    gap: 2.22222vw;
    font-size: 0.97222vw; }
    .footer__nav a:hover {
      color: #20638C; }
    @media (min-width: 1460px) {
      .footer__nav {
        gap: 32px;
        font-size: 14px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .footer__nav {
        gap: 4.18848vw;
        font-size: 1.83246vw;
        order: 2; } }
    @media (max-width: 575px) {
      .footer__nav {
        gap: 8.83978vmin;
        font-size: 3.8674vmin;
        order: 2; } }
  .footer__map {
    height: 31.25vw;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 0.83333vw;
    margin-bottom: 3.47222vw; }
    @media (min-width: 1460px) {
      .footer__map {
        height: 450px;
        border-radius: 12px;
        margin-bottom: 50px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .footer__map {
        height: 41.88482vw;
        border-radius: 1.57068vw;
        margin-bottom: 4.18848vw; } }
    @media (max-width: 575px) {
      .footer__map {
        height: 71.8232vmin;
        border-radius: 1.65746vmin;
        margin-bottom: 8.83978vmin; } }
  .footer__copyright {
    font-size: 0.69444vw;
    line-height: 120%;
    text-align: right; }
    .footer__copyright p {
      margin-bottom: 0.5em; }
    @media (min-width: 1460px) {
      .footer__copyright {
        font-size: 10px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .footer__copyright {
        font-size: 1.3089vw;
        flex-basis: 100%;
        order: 3; } }
    @media (max-width: 575px) {
      .footer__copyright {
        font-size: 2.76243vmin;
        flex-basis: 100%;
        order: 3;
        text-align: left; } }
  @media (min-width: 1460px) {
    .footer {
      padding-top: 140px;
      padding-bottom: 50px; } }
  @media (min-width: 576px) and (max-width: 991px) {
    .footer {
      padding-top: 10.4712vw;
      padding-bottom: 4.18848vw; } }
  @media (max-width: 575px) {
    .footer {
      padding-top: 22.09945vmin;
      padding-bottom: 8.83978vmin; } }

.contacts {
  display: flex;
  align-items: center;
  gap: 0.83333vw; }
  .contacts a:hover {
    color: #20638C; }
  .contacts svg {
    color: #20638C;
    width: 1.66667vw;
    height: 1.66667vw; }
    @media (min-width: 1460px) {
      .contacts svg {
        width: 24px;
        height: 24px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .contacts svg {
        width: 3.14136vw;
        height: 3.14136vw; } }
    @media (max-width: 575px) {
      .contacts svg {
        width: 6.62983vmin;
        height: 6.62983vmin; } }
  .contacts--phone {
    font-size: 1.38889vw;
    font-weight: 600; }
    @media (min-width: 1460px) {
      .contacts--phone {
        font-size: 20px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .contacts--phone {
        font-size: 2.6178vw; } }
    @media (max-width: 575px) {
      .contacts--phone {
        font-size: 5.52486vmin; } }
  @media (min-width: 1460px) {
    .contacts {
      gap: 12px; } }
  @media (min-width: 576px) and (max-width: 991px) {
    .contacts {
      gap: 1.57068vw; } }
  @media (max-width: 575px) {
    .contacts {
      gap: 3.31492vmin; } }

.ymaps-2-1-79-map-copyrights-promo,
.ymaps-2-1-79-copyright__content,
.ymaps-2-1-79-listbox {
  display: none !important; }

@media (max-width: 991px) {
  .char {
    opacity: 1 !important;
    color: #040C11 !important; }
  .speakers .char {
    color: #fff !important; }
  .speaker,
  .fw-card,
  .v-card {
    transform: none !important;
    opacity: 1 !important; } }

.partners {
  padding-bottom: 9.72222vw; }
  .partners__wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.83333vw; }
    .partners__wrapper--spacebetween {
      justify-content: space-between; }
    @media (min-width: 1460px) {
      .partners__wrapper {
        margin: 0 -12px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .partners__wrapper {
        margin: 0 -1.04712vw; } }
    @media (max-width: 575px) {
      .partners__wrapper {
        margin: 0 -0.65445vw; } }
  .partners__item {
    margin: 0 0.83333vw;
    flex-basis: calc(25% - 1.66667vw);
    margin-bottom: 1.66667vw; }
    @media (min-width: 1460px) {
      .partners__item {
        margin: 0 12px;
        flex-basis: calc(25% - 24px);
        margin-bottom: 24px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .partners__item {
        margin: 0 1.04712vw;
        flex-basis: calc(33.33% - 2.09424vw);
        margin-bottom: 2.09424vw; } }
    @media (max-width: 575px) {
      .partners__item {
        margin: 0 1.38122vmin;
        flex-basis: calc(50% - 2.76243vmin);
        margin-bottom: 2.76243vmin; } }
  @media (min-width: 1460px) {
    .partners {
      padding-bottom: 140px; } }
  @media (min-width: 576px) and (max-width: 991px) {
    .partners {
      padding-bottom: 10.4712vw; } }
  @media (max-width: 575px) {
    .partners {
      padding-bottom: 17.67956vmin; } }
  .partners--whitebg {
    background-color: #fff;
    padding-top: 9.72222vw;
    margin-bottom: 9.72222vw; }
    @media (min-width: 1460px) {
      .partners--whitebg {
        padding-top: 140px;
        margin-bottom: 140px; } }
    @media (min-width: 576px) and (max-width: 991px) {
      .partners--whitebg {
        padding-top: 10.4712vw;
        margin-bottom: 10.4712vw; } }
    @media (max-width: 575px) {
      .partners--whitebg {
        padding-top: 17.67956vmin;
        margin-bottom: 17.67956vmin; } }

.partner {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  height: 12.63889vw;
  padding: 1.66667vw; }
  .partner img {
    max-height: 100%; }
  @media (min-width: 1460px) {
    .partner {
      height: 182px;
      padding: 24px; } }
  @media (min-width: 576px) and (max-width: 991px) {
    .partner {
      height: 23.82199vw;
      padding: 3.14136vw; } }
  @media (max-width: 575px) {
    .partner {
      height: 27.62431vmin;
      padding: 6.62983vmin; } }

/*# sourceMappingURL=main.css.map */
