@charset "UTF-8";
.before, .event-item:not(:last-child)::before, .edcrunch__partners-home::before, .edcrunch__partners-home::after, .video__quote-play__btn::before, .edcrunch__speakers-block__image::before, .edcrunch__speakers-block__image::after, .edcrunch__program-card__block::after, .edcrunch__program-list li::before, .edcrunch__tickets-section::before, .edcrunch__tickets-section::after, .edcrunch__ticket-card-block::before, .edcrunch__ticket-benefit__list li::before, .edcrunch__partner-bn::before, .edcrunch__faq-question::before {
  content: "";
  display: block;
  position: absolute; }

.d-block, .section, .edcrunch__partners-home, .section-two__title, .edcrunch__stats-container, .edcrunch__stat-title, .edcrunch__stat-text, .video__quote-content, .video__quote-placeholder, .video__quote-text, .video__quote-author__name, .video__quote-author__company, .countries__section, .countries__section-title, .countries__section-content, .speakers__section, .edcrunch__title, .edcrunch__title-block, .edcrunch__title-links, .edcrunch__speakers-container, .edcrunch__speakers-block__image, .edcrunch__speakers-image, .edcrunch__speakers-block__info, .edcrunch__speakers-block__name, .edcrunch__speakers-block__text, .edcrunch__section-bn, .edcrunch__bn-block, .edcrunch__program, .edcrunch__program-card__header, .edcrunch__program-badge, .edcrunch__program-title, .edcrunch__program-text, .edcrunch__program-card__center, .edcrunch__program-card__center h4, .edcrunch__program-card__footer, .edcrunch__program-list, .edcrunch__program-list li, .edcrunch__reason-section, .edcrunch__reason-container, .edcrunch__reason-text, .edcrunch__whats-coming__section, .edcrunch__whats-coming__content, .edcrunch__whats-coming__block, .edcrunch__whats-coming__info, .edcrunch__whats-coming__title, .edcrunch__whats-coming__text, .edcrunch__tickets-section, .edcrunch__tickets-content, .edcrunch__ticket-day, .edcrunch__ticket-title, .edcrunch__ticket-description, .edcrunch__ticket-price__label, .edcrunch__ticket-action, .edcrunch__ticket-benefits, .edcrunch__ticket-benefits__title, .edcrunch__ticket-benefit__list, .edcrunch__ticket-benefit__list li, .speakers__section-past, .edcrunch__organizers-section, .edcrunch__organizers-content, .edcrunch__partners-section, .edcrunch__partners-content, .edcrunch__partners-slider, .edcrunch__partners-general, .edcrunch__partner-bn, .edcrunch__bn-block-text, .edcrunch__faq-section, .edcrunch__faq-badge, .edcrunch__faq-title, .edcrunch__social-icons, .edcrunch__faq-list, .edcrunch__faq-item, .edcrunch__faq-question, .edcrunch__gradient-block {
  display: block;
  float: left;
  width: 100%; }

.d-flex, .conference__desc, .event__info, .logo__ai, .edcrunch__home-block, .edcrunch__home-action, .edcrunch__partners, .light__beam-container, .edcrunch__badge, .edcrunch__description, .video__quote-container, .video__quote-author, .countries__slider, .edcrunch__title-label, .speakers__slider, .edcrunch__speakers-slider__btns, .edcrunch__bn-content, .edcrunch__bn-block-title, .edcrunch__bn-block-action, .edcrunch__program-card__content, .edcrunch__program-card__block, .edcrunch__reason-block, .edcrunch__tickets-info, .edcrunch__ticket-card-block, .edcrunch__ticket-info, .edcrunch__ticket-price__list, .edcrunch__ticket-benefit__block, .edcrunch__partners-item, .partners-slider, .edcrunch__social-list, .edcrunch__gradient-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  float: left;
  width: 100%; }

.img-responsive {
  max-width: 100%;
  display: block;
  height: auto; }

/* 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 {
  font-family: 'halvar_breitschriftblack';
  src: url("../fonts/halvar_breitschrift_black-webfont.woff2");
  src: url("../fonts/halvar_breitschrift_black-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/halvar_breitschrift_black-webfont.eot") format("embedded-opentype"), url("../fonts/halvar_breitschrift_black-webfont.woff") format("woff"), url("../fonts/halvar_breitschrift_black-webfont.ttf") format("truetype"), url("../fonts/halvar_breitschrift_black-webfont.svg#halvar_breitschriftblack") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Mont';
  src: url("../fonts/Mont-Black.eot");
  src: local("Mont Black"), local("Mont-Black"), url("../fonts/Mont-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/Mont-Black.woff2") format("woff2"), url("../fonts/Mont-Black.woff") format("woff"), url("../fonts/Mont-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal; }

@font-face {
  font-family: 'Mont';
  src: url("../fonts/Mont-ThinItalic.eot");
  src: local("Mont Thin Italic"), local("Mont-ThinItalic"), url("../fonts/Mont-ThinItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Mont-ThinItalic.woff2") format("woff2"), url("../fonts/Mont-ThinItalic.woff") format("woff"), url("../fonts/Mont-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic; }

@font-face {
  font-family: 'Mont';
  src: url("../fonts/Mont-ExtraLight.eot");
  src: local("Mont ExtraLight"), local("Mont-ExtraLight"), url("../fonts/Mont-ExtraLight.eot?#iefix") format("embedded-opentype"), url("../fonts/Mont-ExtraLight.woff2") format("woff2"), url("../fonts/Mont-ExtraLight.woff") format("woff"), url("../fonts/Mont-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal; }

@font-face {
  font-family: 'Mont';
  src: url("../fonts/Mont-Bold.eot");
  src: local("Mont Bold"), local("Mont-Bold"), url("../fonts/Mont-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Mont-Bold.woff2") format("woff2"), url("../fonts/Mont-Bold.woff") format("woff"), url("../fonts/Mont-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: 'Mont';
  src: url("../fonts/Mont-HeavyItalic.eot");
  src: local("Mont Heavy Italic"), local("Mont-HeavyItalic"), url("../fonts/Mont-HeavyItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Mont-HeavyItalic.woff2") format("woff2"), url("../fonts/Mont-HeavyItalic.woff") format("woff"), url("../fonts/Mont-HeavyItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic; }

@font-face {
  font-family: 'Mont';
  src: url("../fonts/Mont-BlackItalic.eot");
  src: local("Mont Black Italic"), local("Mont-BlackItalic"), url("../fonts/Mont-BlackItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Mont-BlackItalic.woff2") format("woff2"), url("../fonts/Mont-BlackItalic.woff") format("woff"), url("../fonts/Mont-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic; }

@font-face {
  font-family: 'Mont';
  src: url("../fonts/Mont-ExtraLightItalic.eot");
  src: local("Mont ExtraLight Italic"), local("Mont-ExtraLightItalic"), url("../fonts/Mont-ExtraLightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Mont-ExtraLightItalic.woff2") format("woff2"), url("../fonts/Mont-ExtraLightItalic.woff") format("woff"), url("../fonts/Mont-ExtraLightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic; }

@font-face {
  font-family: 'Mont';
  src: url("../fonts/Mont-Heavy.eot");
  src: local("Mont Heavy"), local("Mont-Heavy"), url("../fonts/Mont-Heavy.eot?#iefix") format("embedded-opentype"), url("../fonts/Mont-Heavy.woff2") format("woff2"), url("../fonts/Mont-Heavy.woff") format("woff"), url("../fonts/Mont-Heavy.ttf") format("truetype");
  font-weight: 800;
  font-style: normal; }

@font-face {
  font-family: 'Mont';
  src: url("../fonts/Mont-SemiBold.eot");
  src: local("Mont SemiBold"), local("Mont-SemiBold"), url("../fonts/Mont-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Mont-SemiBold.woff2") format("woff2"), url("../fonts/Mont-SemiBold.woff") format("woff"), url("../fonts/Mont-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal; }

@font-face {
  font-family: 'Mont';
  src: url("../fonts/Mont-RegularItalic.eot");
  src: local("Mont Regular Italic"), local("Mont-RegularItalic"), url("../fonts/Mont-RegularItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Mont-RegularItalic.woff2") format("woff2"), url("../fonts/Mont-RegularItalic.woff") format("woff"), url("../fonts/Mont-RegularItalic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic; }

@font-face {
  font-family: 'Mont';
  src: url("../fonts/Mont-BoldItalic.eot");
  src: local("Mont Bold Italic"), local("Mont-BoldItalic"), url("../fonts/Mont-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Mont-BoldItalic.woff2") format("woff2"), url("../fonts/Mont-BoldItalic.woff") format("woff"), url("../fonts/Mont-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic; }

@font-face {
  font-family: 'Mont';
  src: url("../fonts/Mont-SemiBoldItalic.eot");
  src: local("Mont SemiBold Italic"), local("Mont-SemiBoldItalic"), url("../fonts/Mont-SemiBoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Mont-SemiBoldItalic.woff2") format("woff2"), url("../fonts/Mont-SemiBoldItalic.woff") format("woff"), url("../fonts/Mont-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic; }

@font-face {
  font-family: 'Mont';
  src: url("../fonts/Mont-LightItalic.eot");
  src: local("Mont Light Italic"), local("Mont-LightItalic"), url("../fonts/Mont-LightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Mont-LightItalic.woff2") format("woff2"), url("../fonts/Mont-LightItalic.woff") format("woff"), url("../fonts/Mont-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic; }

@font-face {
  font-family: 'Mont';
  src: url("../fonts/Mont-Thin.eot");
  src: local("Mont Thin"), local("Mont-Thin"), url("../fonts/Mont-Thin.eot?#iefix") format("embedded-opentype"), url("../fonts/Mont-Thin.woff2") format("woff2"), url("../fonts/Mont-Thin.woff") format("woff"), url("../fonts/Mont-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal; }

@font-face {
  font-family: 'Mont';
  src: url("../fonts/Mont-Regular.eot");
  src: local("Mont Regular"), local("Mont-Regular"), url("../fonts/Mont-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Mont-Regular.woff2") format("woff2"), url("../fonts/Mont-Regular.woff") format("woff"), url("../fonts/Mont-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Mont';
  src: url("../fonts/Mont-Light.eot");
  src: local("Mont Light"), local("Mont-Light"), url("../fonts/Mont-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Mont-Light.woff2") format("woff2"), url("../fonts/Mont-Light.woff") format("woff"), url("../fonts/Mont-Light.ttf") format("truetype");
  font-weight: 300;
  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 {
  -webkit-box-sizing: content-box;
     -moz-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;
     -moz-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;
     -moz-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;
     -moz-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; }

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box; }

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

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

a, li, button, input, textarea {
  outline: none !important; }

.clear {
  clear: both; }

html, body {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box; }

html {
  scrollbar-width: thin;
  scrollbar-color: #3C5BFF #161C44; }

html::-webkit-scrollbar-track {
  background: #161C44; }

html::-webkit-scrollbar-thumb {
  background-color: #3C5BFF;
  -webkit-border-radius: 10px;
          border-radius: 10px; }

html::-webkit-scrollbar-thumb:hover {
  background-color: rgba(60, 91, 255, 0.7); }

html {
  position: relative;
  overflow-x: hidden;
  min-height: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Montserrat", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen, ubuntu, cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  scroll-behavior: smooth; }
  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%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  background: #00020f;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  font-family: "Mont", sans-serif; }

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

p {
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 30px; }
  p:last-child {
    margin-bottom: 0; }
  p a {
    color: #547AF8;
    text-decoration: underline; }
    .has-hover p a:not([disabled]):hover {
      text-decoration: none; }

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

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

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin: 0; }

h2, .h2 {
  font-size: 6.25vw;
  line-height: 7.08333vw;
  color: #fff;
  font-weight: 400; }

svg {
  display: block;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
     -moz-box-flex: 0;
      -ms-flex: 0 0 auto;
          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; }

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

.container {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 100%;
  max-width: 100%; }

.site {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  min-height: var(--vh); }

/* stylelint-disable */
/*
* Немедленно переместите любую анимацию в конечную точку, если пользователь установил свое устройство в положение "prefers reduced motion".
* Это может привести к плохим(непреднамеренным) последствиям. Удалите по мере необходимости и напишите свой собственный код для prefers-reduced-motion.
*/
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    -webkit-animation-duration: 0.001s !important;
       -moz-animation-duration: 0.001s !important;
         -o-animation-duration: 0.001s !important;
            animation-duration: 0.001s !important;
    -webkit-animation-delay: 0s !important;
       -moz-animation-delay: 0s !important;
         -o-animation-delay: 0s !important;
            animation-delay: 0s !important;
    -webkit-transition-duration: 0.001s !important;
       -moz-transition-duration: 0.001s !important;
         -o-transition-duration: 0.001s !important;
            transition-duration: 0.001s !important;
    -webkit-transition-delay: 0s !important;
       -moz-transition-delay: 0s !important;
         -o-transition-delay: 0s !important;
            transition-delay: 0s !important; } }

/* stylelint-enable */
.is-hidden {
  display: none !important; }

.is-hide {
  opacity: 0; }

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

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

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

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

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

@media (max-width: 1365px) {
  .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;
     -moz-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto; }

/* stylelint-enable */
.animated {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
       animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
       animation-fill-mode: both; }

.edcrunch__container:not(.is-loaded) .conference__desc-block {
  opacity: 0; }

.header__container:not(.is-loaded) {
  opacity: 0; }

.event__info:not(.is-loaded) .event-item {
  opacity: 0; }

.event__info:not(.is-loaded) .event-item::before {
  opacity: 0; }

.edcrunch__home-action:not(.is-loaded) {
  opacity: 0; }

.logo__ai-block img:not(.is-loaded) {
  opacity: 0; }

.mission__text:not(.is-animated) {
  opacity: 0; }

.edcrunch__partners-title:not(.is-animated) {
  opacity: 0; }

.edcrunch__partners-home:not(.is-animated) {
  opacity: 0; }

.planet__img-left img:not(.is-loaded) {
  opacity: 0; }

.planet__img-center img:not(.is-loaded) {
  opacity: 0; }

.planet__img-right img:not(.is-loaded) {
  opacity: 0; }

.planet__img-left img.is-loaded {
  -webkit-animation: fade-in-left 1.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s backwards;
     -moz-animation: fade-in-left 1.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s backwards;
       -o-animation: fade-in-left 1.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s backwards;
          animation: fade-in-left 1.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s backwards; }

.planet__img-right img.is-loaded {
  -webkit-animation: fade-in-right 1.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s backwards;
     -moz-animation: fade-in-right 1.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s backwards;
       -o-animation: fade-in-right 1.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s backwards;
          animation: fade-in-right 1.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s backwards; }

.planet__img-center img.is-loaded {
  -webkit-animation: fade-in 1.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.2s backwards;
     -moz-animation: fade-in 1.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.2s backwards;
       -o-animation: fade-in 1.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.2s backwards;
          animation: fade-in 1.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.2s backwards; }

.header__container.is-loaded {
  -webkit-animation: fade-in 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.2s backwards;
     -moz-animation: fade-in 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.2s backwards;
       -o-animation: fade-in 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.2s backwards;
          animation: fade-in 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.2s backwards; }

.conference__desc.is-loaded .conference__desc-block {
  -webkit-animation: fade-in-bottom 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.25s backwards;
     -moz-animation: fade-in-bottom 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.25s backwards;
       -o-animation: fade-in-bottom 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.25s backwards;
          animation: fade-in-bottom 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.25s backwards; }

.event__info.is-loaded .event-item:nth-child(1) {
  -webkit-animation: fade-in-bottom 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.75s backwards;
     -moz-animation: fade-in-bottom 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.75s backwards;
       -o-animation: fade-in-bottom 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.75s backwards;
          animation: fade-in-bottom 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.75s backwards; }

.event__info:not(.is-loaded) .event-item:nth-child(1)::before {
  -webkit-animation: fade-in-bottom 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.78s backwards;
     -moz-animation: fade-in-bottom 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.78s backwards;
       -o-animation: fade-in-bottom 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.78s backwards;
          animation: fade-in-bottom 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.78s backwards; }

.event__info.is-loaded .event-item:nth-child(2) {
  -webkit-animation: fade-in-bottom 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.85s backwards;
     -moz-animation: fade-in-bottom 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.85s backwards;
       -o-animation: fade-in-bottom 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.85s backwards;
          animation: fade-in-bottom 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.85s backwards; }

.event__info.is-loaded .event-item:nth-child(2)::before {
  -webkit-animation: fade-in-bottom 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.88s backwards;
     -moz-animation: fade-in-bottom 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.88s backwards;
       -o-animation: fade-in-bottom 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.88s backwards;
          animation: fade-in-bottom 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.88s backwards; }

.event__info.is-loaded .event-item:nth-child(3) {
  -webkit-animation: fade-in-bottom 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.95s backwards;
     -moz-animation: fade-in-bottom 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.95s backwards;
       -o-animation: fade-in-bottom 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.95s backwards;
          animation: fade-in-bottom 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.95s backwards; }

.logo__ai-block img.is-loaded {
  -webkit-animation: fade-in-bottom 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 1.05s backwards;
     -moz-animation: fade-in-bottom 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 1.05s backwards;
       -o-animation: fade-in-bottom 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 1.05s backwards;
          animation: fade-in-bottom 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 1.05s backwards; }

.edcrunch__home-action.is-loaded {
  -webkit-animation: fade-in-bottom 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 1.15s backwards;
     -moz-animation: fade-in-bottom 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 1.15s backwards;
       -o-animation: fade-in-bottom 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 1.15s backwards;
          animation: fade-in-bottom 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 1.15s backwards; }

.edcrunch__partners-title.is-animated {
  -webkit-animation: fade-in-bottom 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 1.25s backwards;
     -moz-animation: fade-in-bottom 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 1.25s backwards;
       -o-animation: fade-in-bottom 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 1.25s backwards;
          animation: fade-in-bottom 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 1.25s backwards; }

.edcrunch__partners-home.is-animated {
  -webkit-animation: fade-in-bottom 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 1.35s backwards;
     -moz-animation: fade-in-bottom 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 1.35s backwards;
       -o-animation: fade-in-bottom 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 1.35s backwards;
          animation: fade-in-bottom 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 1.35s backwards; }

.fade-in-bottom {
  -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  -moz-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    -o-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
       animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both; }

.fade-in {
  -webkit-animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  -moz-animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    -o-animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
       animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both; }

.bounce-left {
  -webkit-animation: bounce-left 0.8s both;
  -moz-animation: bounce-left 0.8s both;
    -o-animation: bounce-left 0.8s both;
       animation: bounce-left 0.8s both; }

.fade-in-left {
  -webkit-animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
     -moz-animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
       -o-animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
          animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both; }

.fade-in-top {
  -webkit-animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
     -moz-animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
       -o-animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
          animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both; }

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

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

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

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

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
         transform: translate3d(0, 100%, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
         transform: none; } }

@-o-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
       transform: none; } }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
         transform: translate3d(0, 100%, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
      -o-transform: none;
         transform: none; } }

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

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

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

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

@-webkit-keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

@-moz-keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
         transform: translateY(-50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
         transform: translateY(0);
    opacity: 1; } }

@-o-keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    -o-transform: translateY(-50px);
       transform: translateY(-50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
       transform: translateY(0);
    opacity: 1; } }

@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
      -o-transform: translateY(-50px);
         transform: translateY(-50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
      -o-transform: translateY(0);
         transform: translateY(0);
    opacity: 1; } }

@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

@-moz-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
         transform: translateY(50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
         transform: translateY(0);
    opacity: 1; } }

@-o-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    -o-transform: translateY(50px);
       transform: translateY(50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
       transform: translateY(0);
    opacity: 1; } }

@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
      -o-transform: translateY(50px);
         transform: translateY(50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
      -o-transform: translateY(0);
         transform: translateY(0);
    opacity: 1; } }

@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1; }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; } }

@-moz-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
         transform: scale(0);
    opacity: 1; }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
         transform: scale(1);
    opacity: 1; } }

@-o-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    -o-transform: scale(0);
       transform: scale(0);
    opacity: 1; }
  100% {
    -webkit-transform: scale(1);
    -o-transform: scale(1);
       transform: scale(1);
    opacity: 1; } }

@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
      -o-transform: scale(0);
         transform: scale(0);
    opacity: 1; }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
      -o-transform: scale(1);
         transform: scale(1);
    opacity: 1; } }

@-webkit-keyframes bounce-left {
  0% {
    -webkit-transform: translateX(-48px);
    transform: translateX(-48px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1; }
  24% {
    opacity: 1; }
  40% {
    -webkit-transform: translateX(-26px);
    transform: translateX(-26px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  65% {
    -webkit-transform: translateX(-13px);
    transform: translateX(-13px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  82% {
    -webkit-transform: translateX(-6.5px);
    transform: translateX(-6.5px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  93% {
    -webkit-transform: translateX(-4px);
    transform: translateX(-4px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  25%,
  55%,
  75%,
  87%,
  98% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1; } }

@-moz-keyframes bounce-left {
  0% {
    -webkit-transform: translateX(-48px);
    -moz-transform: translateX(-48px);
         transform: translateX(-48px);
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
         animation-timing-function: ease-in;
    opacity: 1; }
  24% {
    opacity: 1; }
  40% {
    -webkit-transform: translateX(-26px);
    -moz-transform: translateX(-26px);
         transform: translateX(-26px);
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
         animation-timing-function: ease-in; }
  65% {
    -webkit-transform: translateX(-13px);
    -moz-transform: translateX(-13px);
         transform: translateX(-13px);
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
         animation-timing-function: ease-in; }
  82% {
    -webkit-transform: translateX(-6.5px);
    -moz-transform: translateX(-6.5px);
         transform: translateX(-6.5px);
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
         animation-timing-function: ease-in; }
  93% {
    -webkit-transform: translateX(-4px);
    -moz-transform: translateX(-4px);
         transform: translateX(-4px);
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
         animation-timing-function: ease-in; }
  25%,
  55%,
  75%,
  87%,
  98% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
         transform: translateX(0px);
    -webkit-animation-timing-function: ease-out;
    -moz-animation-timing-function: ease-out;
         animation-timing-function: ease-out; }
  100% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
         transform: translateX(0px);
    -webkit-animation-timing-function: ease-out;
    -moz-animation-timing-function: ease-out;
         animation-timing-function: ease-out;
    opacity: 1; } }

@-o-keyframes bounce-left {
  0% {
    -webkit-transform: translateX(-48px);
    -o-transform: translateX(-48px);
       transform: translateX(-48px);
    -webkit-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
       animation-timing-function: ease-in;
    opacity: 1; }
  24% {
    opacity: 1; }
  40% {
    -webkit-transform: translateX(-26px);
    -o-transform: translateX(-26px);
       transform: translateX(-26px);
    -webkit-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
       animation-timing-function: ease-in; }
  65% {
    -webkit-transform: translateX(-13px);
    -o-transform: translateX(-13px);
       transform: translateX(-13px);
    -webkit-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
       animation-timing-function: ease-in; }
  82% {
    -webkit-transform: translateX(-6.5px);
    -o-transform: translateX(-6.5px);
       transform: translateX(-6.5px);
    -webkit-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
       animation-timing-function: ease-in; }
  93% {
    -webkit-transform: translateX(-4px);
    -o-transform: translateX(-4px);
       transform: translateX(-4px);
    -webkit-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
       animation-timing-function: ease-in; }
  25%,
  55%,
  75%,
  87%,
  98% {
    -webkit-transform: translateX(0px);
    -o-transform: translateX(0px);
       transform: translateX(0px);
    -webkit-animation-timing-function: ease-out;
    -o-animation-timing-function: ease-out;
       animation-timing-function: ease-out; }
  100% {
    -webkit-transform: translateX(0px);
    -o-transform: translateX(0px);
       transform: translateX(0px);
    -webkit-animation-timing-function: ease-out;
    -o-animation-timing-function: ease-out;
       animation-timing-function: ease-out;
    opacity: 1; } }

@keyframes bounce-left {
  0% {
    -webkit-transform: translateX(-48px);
    -moz-transform: translateX(-48px);
      -o-transform: translateX(-48px);
         transform: translateX(-48px);
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
      -o-animation-timing-function: ease-in;
         animation-timing-function: ease-in;
    opacity: 1; }
  24% {
    opacity: 1; }
  40% {
    -webkit-transform: translateX(-26px);
    -moz-transform: translateX(-26px);
      -o-transform: translateX(-26px);
         transform: translateX(-26px);
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
      -o-animation-timing-function: ease-in;
         animation-timing-function: ease-in; }
  65% {
    -webkit-transform: translateX(-13px);
    -moz-transform: translateX(-13px);
      -o-transform: translateX(-13px);
         transform: translateX(-13px);
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
      -o-animation-timing-function: ease-in;
         animation-timing-function: ease-in; }
  82% {
    -webkit-transform: translateX(-6.5px);
    -moz-transform: translateX(-6.5px);
      -o-transform: translateX(-6.5px);
         transform: translateX(-6.5px);
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
      -o-animation-timing-function: ease-in;
         animation-timing-function: ease-in; }
  93% {
    -webkit-transform: translateX(-4px);
    -moz-transform: translateX(-4px);
      -o-transform: translateX(-4px);
         transform: translateX(-4px);
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
      -o-animation-timing-function: ease-in;
         animation-timing-function: ease-in; }
  25%,
  55%,
  75%,
  87%,
  98% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
      -o-transform: translateX(0px);
         transform: translateX(0px);
    -webkit-animation-timing-function: ease-out;
    -moz-animation-timing-function: ease-out;
      -o-animation-timing-function: ease-out;
         animation-timing-function: ease-out; }
  100% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
      -o-transform: translateX(0px);
         transform: translateX(0px);
    -webkit-animation-timing-function: ease-out;
    -moz-animation-timing-function: ease-out;
      -o-animation-timing-function: ease-out;
         animation-timing-function: ease-out;
    opacity: 1; } }

@-webkit-keyframes kenburns-top {
  0% {
    -webkit-transform: scale(1.25) translateY(-15px);
    transform: scale(1.25) translateY(-15px);
    -webkit-transform-origin: 50% 16%;
    transform-origin: 50% 16%; }
  100% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -webkit-transform-origin: top;
    transform-origin: top; } }

@-moz-keyframes kenburns-top {
  0% {
    -webkit-transform: scale(1.25) translateY(-15px);
    -moz-transform: scale(1.25) translateY(-15px);
         transform: scale(1.25) translateY(-15px);
    -webkit-transform-origin: 50% 16%;
    -moz-transform-origin: 50% 16%;
         transform-origin: 50% 16%; }
  100% {
    -webkit-transform: scale(1) translateY(0);
    -moz-transform: scale(1) translateY(0);
         transform: scale(1) translateY(0);
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
         transform-origin: top; } }

@-o-keyframes kenburns-top {
  0% {
    -webkit-transform: scale(1.25) translateY(-15px);
    -o-transform: scale(1.25) translateY(-15px);
       transform: scale(1.25) translateY(-15px);
    -webkit-transform-origin: 50% 16%;
    -o-transform-origin: 50% 16%;
       transform-origin: 50% 16%; }
  100% {
    -webkit-transform: scale(1) translateY(0);
    -o-transform: scale(1) translateY(0);
       transform: scale(1) translateY(0);
    -webkit-transform-origin: top;
    -o-transform-origin: top;
       transform-origin: top; } }

@keyframes kenburns-top {
  0% {
    -webkit-transform: scale(1.25) translateY(-15px);
    -moz-transform: scale(1.25) translateY(-15px);
      -o-transform: scale(1.25) translateY(-15px);
         transform: scale(1.25) translateY(-15px);
    -webkit-transform-origin: 50% 16%;
    -moz-transform-origin: 50% 16%;
      -o-transform-origin: 50% 16%;
         transform-origin: 50% 16%; }
  100% {
    -webkit-transform: scale(1) translateY(0);
    -moz-transform: scale(1) translateY(0);
      -o-transform: scale(1) translateY(0);
         transform: scale(1) translateY(0);
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
      -o-transform-origin: top;
         transform-origin: top; } }

@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
      -o-transform: translateY(50px);
         transform: translateY(50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
      -o-transform: translateY(0);
         transform: translateY(0);
    opacity: 1; } }

@-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

@-moz-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
         transform: translateX(50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
         transform: translateX(0);
    opacity: 1; } }

@-o-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    -o-transform: translateX(50px);
       transform: translateX(50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
       transform: translateX(0);
    opacity: 1; } }

@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
      -o-transform: translateX(50px);
         transform: translateX(50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
      -o-transform: translateX(0);
         transform: translateX(0);
    opacity: 1; } }

@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

@-moz-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    -moz-transform: translateX(-50px);
         transform: translateX(-50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
         transform: translateX(0);
    opacity: 1; } }

@-o-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    -o-transform: translateX(-50px);
       transform: translateX(-50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
       transform: translateX(0);
    opacity: 1; } }

@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    -moz-transform: translateX(-50px);
      -o-transform: translateX(-50px);
         transform: translateX(-50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
      -o-transform: translateX(0);
         transform: translateX(0);
    opacity: 1; } }

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@-moz-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -moz-transform: scale3d(0.3, 0.3, 0.3);
         transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@-o-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -moz-transform: scale3d(0.3, 0.3, 0.3);
         transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@-moz-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
         transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
         transform: translate3d(0, 0, 0); } }

@-o-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
         transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
         transform: translate3d(0, 0, 0); } }

@media (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    -moz-animation: unset !important;
      -o-animation: unset !important;
         animation: unset !important;
    -webkit-transition: none !important;
    -o-transition: none !important;
    -moz-transition: none !important;
    transition: none !important;
    opacity: 1; } }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../images/ajax-loader.gif") center center no-repeat; }

/* Icons */
@font-face {
  font-family: "slick";
  src: url("../fonts/slick.eot");
  src: url("../fonts/slick.eot?#iefix") format("embedded-opentype"), url("../fonts/slick.woff") format("woff"), url("../fonts/slick.ttf") format("truetype"), url("../fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal; }

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
       transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }
  .slick-prev:before,
  .slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px; }
  .slick-prev:before {
    content: "←"; }
    [dir="rtl"] .slick-prev:before {
      content: "→"; }

.slick-next {
  right: -25px; }
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto; }
  .slick-next:before {
    content: "→"; }
    [dir="rtl"] .slick-next:before {
      content: "←"; }

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 1; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "•";
        width: 20px;
        height: 20px;
        font-family: "slick";
        font-size: 6px;
        line-height: 20px;
        text-align: center;
        color: black;
        opacity: 0.25;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: black;
      opacity: 0.75; }

.v2023 .footer-contacts__email,
.v2023 .header-menu__link {
  font-family: "Inter", sans-serif !important; }

.v2023 .footer-contacts__email {
  border-bottom-color: #1148f9 !important;
  color: #1148f9 !important; }
  .v2023 .footer-contacts__email:hover {
    border-bottom: 1px solid transparent !important; }

.v2023 .footer__rights a {
  color: #1148f9 !important; }

.v2023 .header__logo {
  max-width: 86px; }
  @media screen and (max-width: 992px) {
    .v2023 .header__logo {
      width: 86px; } }

@media screen and (max-width: 992px) {
  .v2023 .header__container {
    padding-top: 14px;
    padding-bottom: 13px; } }

@media screen and (max-width: 992px) {
  .v2023 .footer__logo {
    width: 86px; } }

.home-page {
  background: #00020f !important; }

.container-home {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1; }
  @media (max-width: 1365px) {
    .container-home {
      padding-left: 15px;
      padding-right: 15px; } }

.section-one {
  padding-top: 209px; }
  @media screen and (max-width: 1279px) {
    .section-one {
      padding-top: 170px; } }
  @media (max-width: 1023px) {
    .section-one {
      padding-top: 140px; } }
  @media (max-width: 767px) {
    .section-one {
      padding-top: 120px; } }

.planet__container {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 818px;
  right: 0;
  right: 0;
  overflow: visible;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 0; }

.planet__img-center {
  width: 100%;
  padding-top: 65px;
  max-width: 1584px;
  margin: 0 auto; }
  @media (max-width: 1023px) {
    .planet__img-center {
      padding-top: 50px; } }
  @media (max-width: 767px) {
    .planet__img-center {
      padding-top: 60px; } }
  .planet__img-center img {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-border-radius: inherit;
       -moz-border-radius: inherit;
            border-radius: inherit;
    -o-object-position: center center;
       object-position: center center;
    -o-object-fit: contain;
       object-fit: contain; }

.planet__img-left {
  will-change: transform;
  opacity: 1;
  -webkit-transform: none;
     -moz-transform: none;
      -ms-transform: none;
       -o-transform: none;
          transform: none;
  -webkit-box-flex: 0;
  -webkit-flex: none;
     -moz-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 664px;
  height: 618px;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  -webkit-mask: -webkit-gradient(linear, left top, right top, from(#000), to(#0000));
  -webkit-mask: -webkit-linear-gradient(left, #000 0% 91.8919%, #0000 100%);
  mask: -webkit-gradient(linear, left top, right top, from(#000), to(#0000));
  mask: linear-gradient(90deg, #000 0% 91.8919%, #0000 100%); }
  .planet__img-left img {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-border-radius: inherit;
       -moz-border-radius: inherit;
            border-radius: inherit;
    -o-object-position: center center;
       object-position: center center;
    -o-object-fit: cover;
       object-fit: cover; }
  @media screen and (max-width: 1279px) {
    .planet__img-left {
      top: -100px;
      left: -100px; } }
  @media (max-width: 1023px) {
    .planet__img-left {
      top: -120px;
      left: -120px; } }
  @media (max-width: 767px) {
    .planet__img-left {
      width: -webkit-calc(664px - 50%);
      width: -moz-calc(664px - 50%);
      width: calc(664px - 50%);
      height: -webkit-calc(618px - 50%);
      height: -moz-calc(618px - 50%);
      height: calc(618px - 50%);
      top: 0;
      left: -50%; } }

.planet__img-right {
  will-change: transform;
  opacity: 1;
  -webkit-transform: none;
     -moz-transform: none;
      -ms-transform: none;
       -o-transform: none;
          transform: none;
  z-index: 3;
  -webkit-box-flex: 0;
  -webkit-flex: none;
     -moz-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 664px;
  height: 601px;
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
  -webkit-mask: -webkit-gradient(linear, right top, left top, from(#000), to(#0000));
  -webkit-mask: -webkit-linear-gradient(right, #000 0% 91.8919%, #0000 100%);
  mask: -webkit-gradient(linear, right top, left top, from(#000), to(#0000));
  mask: linear-gradient(270deg, #000 0% 91.8919%, #0000 100%); }
  .planet__img-right img {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-border-radius: inherit;
       -moz-border-radius: inherit;
            border-radius: inherit;
    -o-object-position: center center;
       object-position: center center;
    -o-object-fit: cover;
       object-fit: cover; }
  @media screen and (max-width: 1279px) {
    .planet__img-right {
      top: -100px;
      right: -100px; } }
  @media (max-width: 1023px) {
    .planet__img-right {
      top: -120px;
      right: -120px; } }
  @media (max-width: 767px) {
    .planet__img-right {
      width: -webkit-calc(664px - 50%);
      width: -moz-calc(664px - 50%);
      width: calc(664px - 50%);
      height: -webkit-calc(601px - 50%);
      height: -moz-calc(601px - 50%);
      height: calc(601px - 50%);
      top: 0;
      right: -50%; } }

#starsCanvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  height: 270px;
  width: 100%; }

.conference__desc {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 40px;
  margin-top: 60px;
  margin-bottom: 40px; }
  @media screen and (max-width: 1439px) {
    .conference__desc {
      margin-top: 40px; } }
  @media (max-width: 1023px) {
    .conference__desc {
      margin-top: 20px;
      margin-bottom: 32px; } }
  @media (max-width: 767px) {
    .conference__desc {
      padding: 0 25px; } }

.conference__desc-block {
  max-width: 682px;
  width: 100%;
  display: block;
  text-align: center;
  padding: 13px 32px 15px;
  border: 2px solid #3563F8;
  -webkit-box-shadow: 0px 4px 40px 0px rgba(53, 99, 248, 0.6) inset;
     -moz-box-shadow: 0px 4px 40px 0px rgba(53, 99, 248, 0.6) inset;
          box-shadow: 0px 4px 40px 0px rgba(53, 99, 248, 0.6) inset;
  -webkit-border-radius: 100px;
     -moz-border-radius: 100px;
          border-radius: 100px; }
  .conference__desc-block p {
    margin: 0;
    font: 600 20px/28px "Mont", sans-serif;
    letter-spacing: -1%;
    color: #CCD7FF; }
  @media screen and (max-width: 1279px) {
    .conference__desc-block {
      max-width: 560px; } }
  @media (max-width: 1023px) {
    .conference__desc-block {
      max-width: 400px; }
      .conference__desc-block p {
        font-size: 12px;
        line-height: 20px; } }

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

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

.event-item {
  font: 400 24px/30px "Mont", sans-serif;
  letter-spacing: -0.72px;
  color: #fff;
  white-space: nowrap;
  position: relative; }
  .event-item:not(:last-child) {
    padding-right: 130px; }
    .event-item:not(:last-child)::before {
      width: 64px;
      height: 1px;
      background: rgba(255, 255, 255, 0.5);
      top: 50%;
      margin-top: -0.5px;
      right: 33px; }
    @media (max-width: 1023px) {
      .event-item:not(:last-child) {
        padding-right: 25px; }
        .event-item:not(:last-child)::before {
          width: 9px;
          right: 8px; } }
  @media (max-width: 1023px) {
    .event-item {
      font-size: 12px;
      line-height: 22px;
      letter-spacing: -1px; } }

.logo__ai {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 71px 0 67px; }
  @media (max-width: 1023px) {
    .logo__ai {
      margin: 32px 0; } }

.logo__ai-block {
  max-width: 361px; }
  @media (max-width: 1023px) {
    .logo__ai-block {
      height: auto;
      width: 135px; } }

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

.edcrunch__home-action {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 56px; }
  .edcrunch__home-action .btn__style-blue {
    padding: 0 70px; }
    @media (max-width: 1023px) {
      .edcrunch__home-action .btn__style-blue {
        padding: 0 40px; } }
  @media (max-width: 1023px) {
    .edcrunch__home-action {
      -webkit-box-ordinal-group: 3;
      -webkit-order: 2;
         -moz-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2;
      margin: 32px 0 0; } }

.btn__style-blue {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
  border: 0;
  font: 400 18px/18px "Mont", sans-serif;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#4C75FF), to(#1A4FFF));
  background: -webkit-linear-gradient(top, #4C75FF 0%, #1A4FFF 100%);
  background: -moz-linear-gradient(top, #4C75FF 0%, #1A4FFF 100%);
  background: -o-linear-gradient(top, #4C75FF 0%, #1A4FFF 100%);
  background: linear-gradient(180deg, #4C75FF 0%, #1A4FFF 100%);
  -webkit-transition: background 0.25s;
  -o-transition: background 0.25s;
  -moz-transition: background 0.25s;
  transition: background 0.25s;
  height: 55px;
  -webkit-border-radius: 100px;
     -moz-border-radius: 100px;
          border-radius: 100px; }
  .has-hover .btn__style-blue:not([disabled]):hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#1A4FFF), to(#4C75FF));
    background: -webkit-linear-gradient(top, #1A4FFF 0%, #4C75FF 100%);
    background: -moz-linear-gradient(top, #1A4FFF 0%, #4C75FF 100%);
    background: -o-linear-gradient(top, #1A4FFF 0%, #4C75FF 100%);
    background: linear-gradient(180deg, #1A4FFF 0%, #4C75FF 100%); }
  @media (max-width: 1023px) {
    .btn__style-blue {
      height: 42px;
      font-size: 14px;
      line-height: 14px; } }

.edcrunch__partners {
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media (max-width: 1023px) {
    .edcrunch__partners {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
         -moz-box-orient: vertical;
         -moz-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.edcrunch__partners-title {
  font: 600 22px/22px "Mont", sans-serif;
  white-space: nowrap;
  padding-right: 80px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  color: #fff; }
  @media (max-width: 1023px) {
    .edcrunch__partners-title {
      padding-right: 0;
      margin-bottom: 16px;
      font-size: 12px;
      line-height: 22px; } }

.edcrunch__partners-home {
  overflow: hidden;
  max-width: 470px;
  position: relative; }
  .edcrunch__partners-home::before {
    width: 60px;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(#00020f), to(rgba(125, 185, 232, 0)));
    background: -webkit-linear-gradient(left, #00020f 0%, rgba(125, 185, 232, 0) 100%);
    background: -moz-linear-gradient(left, #00020f 0%, rgba(125, 185, 232, 0) 100%);
    background: -o-linear-gradient(left, #00020f 0%, rgba(125, 185, 232, 0) 100%);
    background: linear-gradient(to right, #00020f 0%, rgba(125, 185, 232, 0) 100%);
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    z-index: 3; }
  .edcrunch__partners-home::after {
    width: 60px;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(125, 185, 232, 0)), to(#00020f));
    background: -webkit-linear-gradient(left, rgba(125, 185, 232, 0) 0%, #00020f 100%);
    background: -moz-linear-gradient(left, rgba(125, 185, 232, 0) 0%, #00020f 100%);
    background: -o-linear-gradient(left, rgba(125, 185, 232, 0) 0%, #00020f 100%);
    background: linear-gradient(to right, rgba(125, 185, 232, 0) 0%, #00020f 100%);
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    z-index: 3; }

.edcrunch__partners-block {
  min-width: 1px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; }

.edcrunch__partners-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .edcrunch__partners-list.slick-initialized .edcrunch__partner-item {
    margin-right: 40px; }
    @media (max-width: 1023px) {
      .edcrunch__partners-list.slick-initialized .edcrunch__partner-item {
        margin-right: 24px; } }

.edcrunch__partner-item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
     -moz-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto; }
  .edcrunch__partner-item:not(:last-child) {
    margin-right: 40px; }
    @media (max-width: 1023px) {
      .edcrunch__partner-item:not(:last-child) {
        margin-right: 24px; } }

@media (max-width: 1023px) {
  .edcrunch__partner-logo-1 {
    width: 73px; } }

@media (max-width: 1023px) {
  .edcrunch__partner-logo-2 {
    width: 66px; } }

@media (max-width: 1023px) {
  .edcrunch__partner-logo-3 {
    width: 55px; } }

.section-two {
  margin: 120px 0 0; }
  @media (max-width: 1023px) {
    .section-two {
      margin-top: 56px; } }
  .section-two h2 {
    font: 40px/48px "Mont", sans-serif;
    color: #ACACAC;
    letter-spacing: -2px;
    text-align: center;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
       -moz-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    margin: 0; }
    .section-two h2 .is-white {
      color: #fff; }
    .section-two h2 .is-blue {
      color: #fff;
      background: -webkit-linear-gradient(359.93deg, #547AF8 38.42%, #1148F9 71.69%);
      background: -moz-linear-gradient(359.93deg, #547AF8 38.42%, #1148F9 71.69%);
      background: -o-linear-gradient(359.93deg, #547AF8 38.42%, #1148F9 71.69%);
      background: linear-gradient(90.07deg, #547AF8 38.42%, #1148F9 71.69%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent; }
    .section-two h2 .is-block {
      display: block; }
      @media (max-width: 767px) {
        .section-two h2 .is-block {
          display: inline; } }
    .section-two h2 .is-weight {
      font-weight: 600; }
    @media screen and (max-width: 1279px) {
      .section-two h2 {
        font-size: 36px; } }
    @media (max-width: 1023px) {
      .section-two h2 {
        font-size: 24px;
        line-height: 28.8px; } }
  .section-two .edcrunch__badge {
    margin-top: -259px;
    position: relative;
    z-index: 2; }
    @media (max-width: 1023px) {
      .section-two .edcrunch__badge {
        margin-top: -50px; } }

.section-two__title {
  position: relative;
  overflow: hidden;
  -webkit-transition: height 0.4s ease;
  -o-transition: height 0.4s ease;
  -moz-transition: height 0.4s ease;
  transition: height 0.4s ease; }

.edc__title {
  position: absolute;
  inset: 0;
  opacity: 0;
  -webkit-transform: translateY(40px);
     -moz-transform: translateY(40px);
      -ms-transform: translateY(40px);
       -o-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  -o-transition: opacity 0.6s ease, -o-transform 0.6s ease;
  -moz-transition: transform 0.6s ease, opacity 0.6s ease, -moz-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease, -webkit-transform 0.6s ease, -moz-transform 0.6s ease, -o-transform 0.6s ease; }
  .edc__title.is-active {
    opacity: 1;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
        -ms-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
    z-index: 2; }

.light__beam-container {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  height: 683px; }
  @media (max-width: 1023px) {
    .light__beam-container {
      height: 370px; } }
  @media (max-width: 767px) {
    .light__beam-container {
      height: 270px; } }

.scalepro-image {
  z-index: 0;
  width: 100%;
  position: relative; }
  @media (max-width: 767px) {
    .scalepro-image {
      max-height: 100%;
      width: auto; } }

.scalepro-image-block {
  -webkit-transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg);
     -moz-transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg);
          transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg);
  opacity: 1;
  -webkit-transform-style: preserve-3d;
     -moz-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  max-width: 1005px;
  width: 100%; }
  @media (max-width: 1023px) {
    .scalepro-image-block {
      max-width: 738px; } }

.scalepro-line {
  -webkit-transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg);
     -moz-transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg);
          transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg);
  -webkit-transform-style: preserve-3d;
     -moz-transform-style: preserve-3d;
          transform-style: preserve-3d;
  width: 130px;
  height: 370px; }

.scalepro-dot {
  -webkit-transform: translate3d(0, 0%, 0);
     -moz-transform: translate3d(0, 0%, 0);
          transform: translate3d(0, 0%, 0);
  -webkit-animation: fallingDot 15s linear infinite;
     -moz-animation: fallingDot 15s linear infinite;
       -o-animation: fallingDot 15s linear infinite;
          animation: fallingDot 15s linear infinite;
  -webkit-transform-style: preserve-3d;
     -moz-transform-style: preserve-3d;
          transform-style: preserve-3d;
  will-change: transform;
  width: 100%;
  height: 385px; }

@-webkit-keyframes fallingDot {
  0% {
    -webkit-transform: translate3d(0, 0%, 0);
            transform: translate3d(0, 0%, 0); }
  100% {
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0); } }

@-moz-keyframes fallingDot {
  0% {
    -moz-transform: translate3d(0, 0%, 0);
         transform: translate3d(0, 0%, 0); }
  100% {
    -moz-transform: translate3d(0, 100%, 0);
         transform: translate3d(0, 100%, 0); } }

@-o-keyframes fallingDot {
  0% {
    transform: translate3d(0, 0%, 0); }
  100% {
    transform: translate3d(0, 100%, 0); } }

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

.scalepro-lines {
  top: 20px;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 115px;
  height: 360px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  overflow: hidden; }
  @media (max-width: 1023px) {
    .scalepro-lines {
      height: 260px;
      top: 50px;
      width: 100px; } }
  @media (max-width: 767px) {
    .scalepro-lines {
      height: 170px;
      top: 0;
      width: 50px; } }

.scalepro-dotted {
  top: 70px;
  z-index: 2;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100px;
  height: 310px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  overflow: hidden; }
  @media (max-width: 1023px) {
    .scalepro-dotted {
      height: 245px;
      top: 50px;
      width: 71px; } }
  @media (max-width: 767px) {
    .scalepro-dotted {
      width: 40px;
      height: 122px;
      top: 30px; } }

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

.edcrunch__badge-block {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0px 0px 21px 0px rgba(115, 80, 255, 0.2) inset;
     -moz-box-shadow: 0px 0px 21px 0px rgba(115, 80, 255, 0.2) inset;
          box-shadow: 0px 0px 21px 0px rgba(115, 80, 255, 0.2) inset;
  font-family: "Mont", sans-serif;
  font-weight: 600;
  letter-spacing: -1.5%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 16px;
  white-space: nowrap;
  -webkit-border-radius: 99px;
     -moz-border-radius: 99px;
          border-radius: 99px; }
  .edcrunch__badge-block.is-time {
    height: 59px;
    font-size: 32px; }
    @media (max-width: 1023px) {
      .edcrunch__badge-block.is-time {
        height: 40px;
        font-size: 20px; } }

.edcrunch__description {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: -177px; }
  .edcrunch__description h3 {
    color: #fff;
    font: 600 32px/51.2px "Montserrat", sans-serif;
    margin: 0;
    text-align: center;
    max-width: 800px; }
  @media (max-width: 1023px) {
    .edcrunch__description {
      margin-top: 3px;
      padding: 0 30px;
      margin-bottom: 17px; }
      .edcrunch__description h3 {
        font-size: 16px;
        line-height: 22.4px; } }

.edcrunch__stats-container {
  margin-bottom: 73px; }
  @media (max-width: 1023px) {
    .edcrunch__stats-container {
      margin-bottom: 48px; } }

.edcrunch__stats-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -8px;
  margin-right: -8px; }
  @media screen and (max-width: 1279px) {
    .edcrunch__stats-list {
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap; } }
  @media (max-width: 767px) {
    .edcrunch__stats-list {
      margin-left: 0;
      margin-right: 0; } }

.edcrunch__stats-item {
  padding-left: 8px;
  padding-right: 8px;
  width: 25%; }
  @media screen and (max-width: 1279px) {
    .edcrunch__stats-item {
      width: 50%;
      margin: 8px 0; } }
  @media (max-width: 767px) {
    .edcrunch__stats-item {
      width: 100%;
      padding-left: 0;
      padding-right: 0; } }

.edcrunch__stats-block {
  height: 174px;
  -moz-background-size: contain;
       background-size: contain;
  text-align: center;
  width: 100%;
  padding: 45px 10px 10px; }
  @media screen and (min-width: 1024px) {
    .edcrunch__stats-block {
      background: url("../images/stat-card-bg.svg") no-repeat center; } }
  @media (max-width: 1023px) {
    .edcrunch__stats-block {
      height: 140px;
      padding-top: 30px;
      background: url("../images/stat-card-bg-mob.svg") no-repeat center; } }

.edcrunch__stat-title {
  margin-bottom: 3px;
  font: 600 40px/40px "Montserrat", sans-serif;
  color: #fff; }
  .edcrunch__stat-title span {
    white-space: nowrap;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease; }
  @media (max-width: 1023px) {
    .edcrunch__stat-title {
      font-size: 32px;
      line-height: 32px;
      margin-bottom: 8px; } }

.edcrunch__stat-text {
  font: 500 16px/24px "Montserrat", sans-serif;
  color: #A7ADBE; }
  @media (max-width: 1023px) {
    .edcrunch__stat-text {
      font-size: 14px;
      line-height: 24px; } }

.video__quote-container {
  margin-bottom: 98px;
  position: relative;
  z-index: 3; }
  @media (max-width: 1023px) {
    .video__quote-container {
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      margin-bottom: 56px; } }

.video__quote-left {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 57%; }
  @media screen and (max-width: 1279px) {
    .video__quote-left {
      width: 50%; } }
  @media (max-width: 1023px) {
    .video__quote-left {
      width: 100%; } }

.video__quote-right {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 1px;
  padding-left: 63px; }
  @media screen and (max-width: 1279px) {
    .video__quote-right {
      padding-left: 20px; } }
  @media (max-width: 1023px) {
    .video__quote-right {
      width: 100%;
      margin-top: 48px;
      padding-left: 0; } }

.video__quote-content {
  position: relative;
  background: #0A0C1E;
  -webkit-border-radius: 17px;
     -moz-border-radius: 17px;
          border-radius: 17px;
  border: 1px solid #131839;
  padding: 5px; }

.video__quote-placeholder {
  overflow: hidden;
  position: relative;
  -webkit-border-radius: 14px;
     -moz-border-radius: 14px;
          border-radius: 14px;
  overflow: hidden;
  padding-bottom: 50.694%;
  position: relative; }
  .video__quote-placeholder img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    -webkit-border-radius: 14px;
       -moz-border-radius: 14px;
            border-radius: 14px; }

.video__quote-play {
  -webkit-border-radius: 14px;
     -moz-border-radius: 14px;
          border-radius: 14px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 5;
  background: rgba(0, 0, 0, 0.4);
  font: 400 16px/16px "Mont", sans-serif;
  color: #000529; }
  .has-hover .video__quote-play:not([disabled]):hover .video__quote-play__btn {
    -webkit-transform: scale(1.05);
       -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
         -o-transform: scale(1.05);
            transform: scale(1.05); }
  @media (max-width: 1023px) {
    .video__quote-play {
      font-size: 14px;
      line-height: 14px; } }

.video__quote-play__btn {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 40px;
  background: #fff;
  -webkit-border-radius: 40px;
     -moz-border-radius: 40px;
          border-radius: 40px;
  padding: 0 24px 0 54px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative; }
  .video__quote-play__btn::before {
    background: url("../images/icons/svg/icon-play-blue.svg") no-repeat;
    width: 23px;
    height: 23px;
    left: 24px;
    top: 50%;
    margin-top: -11px; }
  @media (max-width: 1023px) {
    .video__quote-play__btn {
      height: 38px;
      padding-left: 52px; }
      .video__quote-play__btn::before {
        width: 20px;
        height: 20px;
        margin-top: -10px; } }

.video__quote-text {
  padding-right: 50px; }
  .video__quote-text p {
    font: 400 18px/28.8px "Montserrat", sans-serif;
    color: #fff; }
    .video__quote-text p:last-child {
      margin-bottom: 0; }
  @media (max-width: 1023px) {
    .video__quote-text {
      padding-right: 0; }
      .video__quote-text p {
        font-size: 14px;
        line-height: 22.4px; } }

.video__quote-author {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: -46px; }
  @media (max-width: 1023px) {
    .video__quote-author {
      margin-top: -16px; } }

.video__quote-author__info {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 1px;
  color: #fff; }

.video__quote-author__name {
  font: 600 22px/30px "Montserrat", sans-serif;
  margin-bottom: 4px; }
  @media (max-width: 1023px) {
    .video__quote-author__name {
      font-size: 16px;
      line-height: 24px;
      margin-bottom: 0; } }

.video__quote-author__company {
  font: 400 16px/16px "Montserrat", sans-serif;
  padding-bottom: 1px; }
  @media (max-width: 1023px) {
    .video__quote-author__company {
      font-size: 12px;
      line-height: 20px; } }

.video__quote-author__image {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0; }
  @media (max-width: 1023px) {
    .video__quote-author__image {
      width: 153px; } }

.countries__section {
  margin-bottom: 120px;
  position: relative;
  z-index: 3; }
  @media (max-width: 1023px) {
    .countries__section {
      margin-bottom: 56px; } }

.countries__section-title {
  text-align: center;
  margin-bottom: 42px;
  font: 600 26px/34px "Mont", sans-serif; }
  @media (max-width: 1023px) {
    .countries__section-title {
      font-size: 22px;
      line-height: 30px;
      margin-bottom: 24px; } }

.countries__section-content {
  overflow: hidden; }

.countries__slider .slick-active .countries__slide-block {
  opacity: 0.6; }

.countries__slider .slick-active.slick-center .countries__slide-block {
  opacity: 1; }

.countries__slide {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0; }

.countries__slide-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0.4;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.25s;
  -o-transition: opacity 0.25s;
  -moz-transition: opacity 0.25s;
  transition: opacity 0.25s;
  margin-right: 24px; }
  .has-hover .countries__slide-block:not([disabled]):hover {
    opacity: 1; }

.countries__slide-icon {
  width: 43px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0; }
  @media (max-width: 1023px) {
    .countries__slide-icon {
      width: 34px; } }

.countries__slide-text {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 1px;
  color: #fff;
  white-space: nowrap;
  padding-left: 12px;
  font: 400 16px/16px "Mont", sans-serif;
  letter-spacing: -1px; }
  @media (max-width: 1023px) {
    .countries__slide-text {
      font-size: 14px;
      line-height: 14px; } }

.speakers__section {
  position: relative;
  margin-bottom: 121px; }
  @media (max-width: 1023px) {
    .speakers__section {
      margin-bottom: 56px; } }

.speakers__section-bg {
  position: absolute;
  left: 0;
  top: -480px;
  z-index: 1;
  width: 100%;
  height: 1327px;
  background: url("../images/bg-speakers.svg") no-repeat center; }
  @media (max-width: 1365px) {
    .speakers__section-bg {
      width: -webkit-calc(100% + 30px);
      width: -moz-calc(100% + 30px);
      width: calc(100% + 30px);
      left: -15px; } }
  @media (max-width: 1023px) {
    .speakers__section-bg {
      -moz-background-size: contain !important;
           background-size: contain !important;
      height: 500px;
      top: -240px; } }

.edcrunch__title {
  margin-bottom: 56px;
  position: relative;
  z-index: 3; }
  .edcrunch__title.is-small h2 {
    font-size: 32px;
    line-height: 51.2px;
    font-weight: 600; }
    @media (max-width: 1023px) {
      .edcrunch__title.is-small h2 {
        font-size: 20px;
        line-height: 28px; } }
  @media (max-width: 1023px) {
    .edcrunch__title {
      margin-bottom: 25px; } }

.edcrunch__title-label {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 18px; }
  @media (max-width: 1023px) {
    .edcrunch__title-label {
      margin-bottom: 16px; } }

.edcrunch__title-label__block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0px 0px 21px 0px rgba(115, 80, 255, 0.2) inset;
     -moz-box-shadow: 0px 0px 21px 0px rgba(115, 80, 255, 0.2) inset;
          box-shadow: 0px 0px 21px 0px rgba(115, 80, 255, 0.2) inset;
  white-space: nowrap;
  height: 40px;
  padding: 0 16px;
  font: 600 20px/20px "Mont", sans-serif;
  letter-spacing: -1.5px;
  color: #fff;
  -webkit-border-radius: 99px;
     -moz-border-radius: 99px;
          border-radius: 99px; }
  @media (max-width: 1023px) {
    .edcrunch__title-label__block {
      font-size: 16px;
      line-height: 16px;
      height: 34px; } }

.edcrunch__title-block {
  text-align: center; }
  .edcrunch__title-block h2 {
    margin: 0;
    font: 500 40px/48px "Montserrat", sans-serif;
    color: #fff; }
    @media (max-width: 1023px) {
      .edcrunch__title-block h2 {
        font-size: 26px;
        line-height: 34px;
        letter-spacing: -1px; } }
  @media (max-width: 767px) {
    .edcrunch__title-block h2 br {
      display: none; } }

.edcrunch__title-links {
  text-align: center;
  margin-top: 26px; }
  .edcrunch__title-links a {
    color: #547AF8;
    font: 400 20px/28px "Mont", sans-serif; }
    .has-hover .edcrunch__title-links a:not([disabled]):hover {
      color: #fff; }
  @media (max-width: 1023px) {
    .edcrunch__title-links {
      margin-top: 24px; }
      .edcrunch__title-links a {
        font-size: 18px;
        line-height: 26px; } }

.edcrunch__speakers-container {
  position: relative;
  z-index: 3; }

.speakers__slider {
  margin-top: 0 !important; }
  .speakers__slider .slick-arrow {
    opacity: 0 !important;
    visibility: hidden !important; }
  .speakers__slider .slick-list {
    padding: 56px 0 37px; }
    @media (max-width: 1023px) {
      .speakers__slider .slick-list {
        padding: 25px 0 30px; } }
  .speakers__slider .slick-slide {
    padding: 0 8px;
    -webkit-transition: -webkit-transform 0.35s ease;
    transition: -webkit-transform 0.35s ease;
    -o-transition: -o-transform 0.35s ease;
    -moz-transition: transform 0.35s ease, -moz-transform 0.35s ease;
    transition: transform 0.35s ease;
    transition: transform 0.35s ease, -webkit-transform 0.35s ease, -moz-transform 0.35s ease, -o-transform 0.35s ease;
    will-change: transform; }
    .speakers__slider .slick-slide > div {
      -webkit-transition: -webkit-transform 0.35s ease;
      transition: -webkit-transform 0.35s ease;
      -o-transition: -o-transform 0.35s ease;
      -moz-transition: transform 0.35s ease, -moz-transform 0.35s ease;
      transition: transform 0.35s ease;
      transition: transform 0.35s ease, -webkit-transform 0.35s ease, -moz-transform 0.35s ease, -o-transform 0.35s ease;
      position: relative; }
    .has-hover .speakers__slider .slick-slide:not([disabled]):hover > div {
      -webkit-transform: scale(1.084) translateY(-5px);
         -moz-transform: scale(1.084) translateY(-5px);
          -ms-transform: scale(1.084) translateY(-5px);
           -o-transform: scale(1.084) translateY(-5px);
              transform: scale(1.084) translateY(-5px);
      z-index: 2; }
    .has-hover .speakers__slider .slick-slide:not([disabled]):hover .edcrunch__speakers-block__image::before, .has-hover .speakers__slider .slick-slide:not([disabled]):hover .edcrunch__speakers-block__image::after {
      opacity: 1;
      visibility: visible; }

.edcrunch__speakers-block {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 251px !important; }
  @media (max-width: 1023px) {
    .edcrunch__speakers-block {
      width: 220px !important; } }

.edcrunch__speakers-block__image {
  position: relative;
  margin-bottom: 17px; }
  .edcrunch__speakers-block__image::before {
    width: -webkit-calc(100% + 8px);
    width: -moz-calc(100% + 8px);
    width: calc(100% + 8px);
    height: -webkit-calc(100% + 8px);
    height: -moz-calc(100% + 8px);
    height: calc(100% + 8px);
    left: -4px;
    top: -4px;
    background: -webkit-linear-gradient(292.15deg, #E7D8FF 0%, rgba(134, 58, 255, 0) 49.26%);
    background: -moz-linear-gradient(292.15deg, #E7D8FF 0%, rgba(134, 58, 255, 0) 49.26%);
    background: -o-linear-gradient(292.15deg, #E7D8FF 0%, rgba(134, 58, 255, 0) 49.26%);
    background: linear-gradient(157.85deg, #E7D8FF 0%, rgba(134, 58, 255, 0) 49.26%);
    -webkit-border-radius: 30px;
       -moz-border-radius: 30px;
            border-radius: 30px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    transition: all 0.35s ease; }
  .edcrunch__speakers-block__image::after {
    width: -webkit-calc(100% + 8px);
    width: -moz-calc(100% + 8px);
    width: calc(100% + 8px);
    height: -webkit-calc(100% + 8px);
    height: -moz-calc(100% + 8px);
    height: calc(100% + 8px);
    left: -4px;
    top: -4px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    -webkit-border-radius: 30px;
       -moz-border-radius: 30px;
            border-radius: 30px;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    transition: all 0.35s ease; }

.edcrunch__speakers-image {
  position: relative;
  overflow: hidden;
  padding-bottom: 112.351%;
  -webkit-border-radius: 20px;
     -moz-border-radius: 20px;
          border-radius: 20px;
  z-index: 3; }
  .edcrunch__speakers-image img {
    -webkit-border-radius: 20px;
       -moz-border-radius: 20px;
            border-radius: 20px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center; }
  @media screen and (max-width: 1279px) {
    .edcrunch__speakers-image {
      padding-bottom: 118.351%; } }

.edcrunch__speakers-block__name {
  margin-bottom: 8px;
  font: 600 24px/32px "Montserrat", sans-serif;
  color: #fff; }
  @media (max-width: 1023px) {
    .edcrunch__speakers-block__name {
      font-size: 18px;
      line-height: 26px;
      margin-bottom: 4px; } }

.edcrunch__speakers-block__text {
  color: #fff;
  font: 400 16px/24px "Montserrat", sans-serif; }
  @media (max-width: 1023px) {
    .edcrunch__speakers-block__text {
      font-size: 12px;
      line-height: 20px; } }

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

.edcrunch__speakers-btn {
  font: 400 20px/28px "Mont", sans-serif;
  white-space: nowrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #fff; }
  .edcrunch__speakers-btn.is-prev .is-arrow {
    margin-right: 12px; }
    @media (max-width: 1023px) {
      .edcrunch__speakers-btn.is-prev .is-arrow {
        margin-right: 10px; } }
  .edcrunch__speakers-btn.is-next .is-arrow {
    margin-left: 12px; }
    @media (max-width: 1023px) {
      .edcrunch__speakers-btn.is-next .is-arrow {
        margin-left: 10px; } }
  @media (max-width: 1023px) {
    .edcrunch__speakers-btn {
      font-size: 16px;
      line-height: 24px; } }

.edcrunch__section-bn {
  position: relative;
  z-index: 3; }

.edcrunch__bn-content {
  height: 455px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative; }
  @media (max-width: 1023px) {
    .edcrunch__bn-content {
      height: 250px; } }

.edcrunch__bn-block {
  position: relative;
  z-index: 3; }

.edcrunch__bn-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-border-radius: 24px;
     -moz-border-radius: 24px;
          border-radius: 24px;
  left: 0;
  top: 0;
  bottom: 0; }
  .edcrunch__bn-bg img {
    -webkit-border-radius: 24px;
       -moz-border-radius: 24px;
            border-radius: 24px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center; }

.edcrunch__bn-block-title {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 56px; }
  .edcrunch__bn-block-title h3 {
    margin: 0;
    font: 500 32px/48px "Montserrat", sans-serif;
    color: #fff;
    max-width: 670px;
    text-align: center; }
  @media (max-width: 1023px) {
    .edcrunch__bn-block-title {
      margin-bottom: 24px; }
      .edcrunch__bn-block-title h3 {
        font-size: 18px;
        line-height: 26px; } }
  @media (max-width: 767px) {
    .edcrunch__bn-block-title {
      padding-left: 30px;
      padding-right: 30px; } }

.edcrunch__bn-block-action {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .edcrunch__bn-block-action .btn__style-blue {
    padding: 0 70px; }

.section-four {
  margin-top: 120px; }
  @media (max-width: 1023px) {
    .section-four {
      margin-top: 56px; } }

@media (max-width: 1023px) {
  .edcrunch__program {
    margin-top: 7px; } }

.edcrunch__program-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -16px;
  margin-right: -16px; }
  @media (max-width: 1365px) {
    .edcrunch__program-row {
      margin-left: -15px;
      margin-right: -15px; } }
  @media (max-width: 1023px) {
    .edcrunch__program-row {
      margin-left: 0;
      margin-right: 0;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      width: 100%;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
         -moz-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; } }

.edcrunch__program-card {
  padding-left: 16px;
  padding-right: 16px;
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex; }
  @media (max-width: 1365px) {
    .edcrunch__program-card {
      padding-left: 15px;
      padding-right: 15px; } }
  @media (max-width: 1023px) {
    .edcrunch__program-card {
      width: 100%;
      padding-left: 0;
      padding-right: 0;
      max-width: 460px; }
      .edcrunch__program-card:not(:last-child) {
        margin-bottom: 18px; } }
  @media (max-width: 1023px) and (max-width: 767px) {
    .edcrunch__program-card {
      max-width: 460px; } }
  .edcrunch__program-card.day1 .edcrunch__program-badge__block {
    background: #3563F8; }
  .edcrunch__program-card.day1 .edcrunch__program-list li::before {
    background: url("../images/icons/svg/icon-star-1.svg") no-repeat; }
  .edcrunch__program-card.day1 .edcrunch__program-card__bg {
    background: url("../images/bg-program.svg") no-repeat top; }
  .edcrunch__program-card.day2 .edcrunch__program-badge__block {
    background: #863AFF; }
  .edcrunch__program-card.day2 .edcrunch__program-list li::before {
    background: url("../images/icons/svg/icon-star-2.svg") no-repeat; }
  .edcrunch__program-card.day2 .edcrunch__program-card__bg {
    background: url("../images/bg-program-2.svg") no-repeat top; }

.edcrunch__program-card__content {
  position: relative; }

.edcrunch__program-card__bg {
  -moz-background-size: cover !important;
       background-size: cover !important;
  -webkit-border-radius: 16px;
     -moz-border-radius: 16px;
          border-radius: 16px;
  display: block;
  width: -webkit-calc(100% + 32px);
  width: -moz-calc(100% + 32px);
  width: calc(100% + 32px);
  left: -16px;
  top: -20px;
  position: absolute;
  z-index: 1;
  height: 84%; }
  @media (max-width: 1365px) {
    .edcrunch__program-card__bg {
      -moz-background-size: contain !important;
           background-size: contain !important;
      width: -webkit-calc(100% + 30px);
      width: -moz-calc(100% + 30px);
      width: calc(100% + 30px);
      left: -15px; } }
  @media screen and (max-width: 1279px) {
    .edcrunch__program-card__bg {
      top: -14px; } }
  @media (max-width: 1023px) {
    .edcrunch__program-card__bg {
      -moz-background-size: contain !important;
           background-size: contain !important;
      width: -webkit-calc(100% + 28px);
      width: -moz-calc(100% + 28px);
      width: calc(100% + 28px);
      left: -15px;
      top: -14px; } }
  @media screen and (max-width: 427px) {
    .edcrunch__program-card__bg {
      width: -webkit-calc(100% + 22px);
      width: -moz-calc(100% + 22px);
      width: calc(100% + 22px);
      left: -12px;
      top: -12px; } }

.edcrunch__program-card__block {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #030014;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 16px;
     -moz-border-radius: 16px;
          border-radius: 16px;
  padding: 32px 31px 31px;
  position: relative; }
  .edcrunch__program-card__block::after {
    background: url("../images/program-after.svg") no-repeat;
    width: 412px;
    height: 618px;
    top: 0;
    left: 0;
    -webkit-border-radius: 16px 0 0;
       -moz-border-radius: 16px 0 0;
            border-radius: 16px 0 0; }
  @media (max-width: 1023px) {
    .edcrunch__program-card__block {
      overflow: hidden; } }
  @media (max-width: 767px) {
    .edcrunch__program-card__block {
      -webkit-border-radius: 16px 8px 16px 16px;
         -moz-border-radius: 16px 8px 16px 16px;
              border-radius: 16px 8px 16px 16px; } }

.edcrunch__program-card__header {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 3; }
  @media (max-width: 1023px) {
    .edcrunch__program-card__header {
      padding-bottom: 16px; } }

.edcrunch__program-badge__block {
  color: #fff;
  -webkit-border-radius: 99px;
     -moz-border-radius: 99px;
          border-radius: 99px;
  height: 32px;
  padding: 0 16px;
  font: 600 14px/14px "Mont", sans-serif;
  letter-spacing: -1.5px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 16px; }
  @media (max-width: 1023px) {
    .edcrunch__program-badge__block {
      font-size: 12px;
      line-height: 12px;
      height: 24px; } }

.edcrunch__program-title {
  margin-bottom: 8px; }
  .edcrunch__program-title h3 {
    margin: 0;
    color: #fff;
    font: 600 28px/36px "Montserrat", sans-serif; }
  @media (max-width: 1023px) {
    .edcrunch__program-title h3 {
      font-size: 22px;
      line-height: 30px; } }

.edcrunch__program-text p {
  margin: 0;
  color: #fff;
  font: 400 16px/24px "Montserrat", sans-serif; }

@media (max-width: 1023px) {
  .edcrunch__program-text p {
    font-size: 14px;
    line-height: 22px; } }

.edcrunch__program-card__center {
  padding-top: 24px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  z-index: 3; }
  .edcrunch__program-card__center h4 {
    color: #fff;
    font: 600 24px/40px "Montserrat", sans-serif;
    margin-bottom: 24px; }
  @media (max-width: 1023px) {
    .edcrunch__program-card__center {
      padding-top: 16px; }
      .edcrunch__program-card__center h4 {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 16px; } }

.edcrunch__program-card__footer {
  padding-top: 52px;
  position: relative;
  z-index: 3; }
  @media (max-width: 1023px) {
    .edcrunch__program-card__footer {
      padding-top: 32px; } }

.edcrunch__program-list li {
  position: relative;
  color: #fff;
  font: 400 16px/25.6px "Mont", sans-serif;
  padding-left: 40px; }
  .edcrunch__program-list li::before {
    left: 0;
    top: 50%;
    margin-top: -14px;
    width: 28px;
    height: 28px; }
  .edcrunch__program-list li:not(:last-child) {
    margin-bottom: 24px; }

@media (max-width: 1023px) {
  .edcrunch__program-list li {
    font-size: 14px;
    line-height: 19.6px; }
    .edcrunch__program-list li:not(:last-child) {
      margin-bottom: 16px; } }

.section-five {
  padding-top: 120px;
  position: relative; }
  @media (max-width: 1023px) {
    .section-five {
      padding-top: 56px; } }

.edcrunch__reason-section {
  position: relative;
  z-index: 4; }
  .edcrunch__reason-section .edcrunch__title {
    margin-bottom: 30px; }

.edcrunch__reason-bg {
  width: 100%;
  height: 532px;
  position: absolute;
  left: 0;
  top: 70px; }
  @media screen and (min-width: 768px) {
    .edcrunch__reason-bg {
      background: url("../images/bg-reason.webp") no-repeat center; } }
  @media (max-width: 767px) {
    .edcrunch__reason-bg {
      background: url("../images/bg-reason-mob.webp") no-repeat center;
      top: -90px; } }

.edcrunch__reason-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  @media (max-width: 1023px) {
    .edcrunch__reason-row {
      margin-left: -8px;
      margin-right: -8px; } }
  @media (max-width: 767px) {
    .edcrunch__reason-row {
      margin-left: 0;
      margin-right: 0; } }

.edcrunch__reason-card {
  width: 33.33333333333333%;
  padding-left: 12px;
  padding-right: 12px;
  margin: 16px 0; }
  @media (max-width: 1023px) {
    .edcrunch__reason-card {
      width: 50%;
      margin: 8px 0;
      padding-left: 8px;
      padding-right: 8px; } }
  @media (max-width: 767px) {
    .edcrunch__reason-card {
      width: 100%;
      padding-left: 0;
      padding-right: 0; } }

.edcrunch__reason-block {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 31px 10px 10px;
  background: rgba(84, 122, 248, 0.1);
  height: 292px;
  -webkit-border-radius: 16px;
     -moz-border-radius: 16px;
          border-radius: 16px;
  position: relative;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) inset;
     -moz-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) inset;
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) inset; }
  @media (max-width: 1023px) {
    .edcrunch__reason-block {
      height: 224px;
      padding: 25px 10px 10px; } }

.edcrunch__reason-icon {
  margin-bottom: 32px;
  height: 80px; }
  @media (max-width: 1023px) {
    .edcrunch__reason-icon {
      height: 64px;
      margin-bottom: 24px; } }

.edcrunch__reason-text {
  padding: 0 50px; }
  .edcrunch__reason-text p {
    color: #fff;
    font: 400 18px/25.2px "Mont", sans-serif;
    letter-spacing: -0.5px;
    text-align: center;
    margin: 0; }
  @media screen and (max-width: 1279px) {
    .edcrunch__reason-text {
      padding: 0 20px; } }
  @media (max-width: 1023px) {
    .edcrunch__reason-text {
      padding: 0; }
      .edcrunch__reason-text p {
        font-size: 16px;
        line-height: 22.4px; } }

.edcrunch__whats-coming__section {
  padding-top: 100px;
  position: relative;
  z-index: 3; }
  @media (max-width: 1023px) {
    .edcrunch__whats-coming__section {
      padding-top: 56px; } }

.edcrunch__whats-coming__content {
  margin-top: 4px;
  position: relative;
  z-index: 3; }

.edcrunch__whats-coming__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -12px;
  margin-right: -12px; }
  @media (max-width: 1023px) {
    .edcrunch__whats-coming__row {
      margin-left: -8px;
      margin-right: -8px; } }
  @media (max-width: 767px) {
    .edcrunch__whats-coming__row {
      margin-left: 0;
      margin-right: 0;
      width: 100%;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap; } }

.edcrunch__whats-coming__col {
  padding-left: 12px;
  padding-right: 12px;
  width: 33.33333333333333%; }
  @media (max-width: 1023px) {
    .edcrunch__whats-coming__col {
      padding-left: 8px;
      padding-right: 8px; } }
  @media (max-width: 767px) {
    .edcrunch__whats-coming__col {
      width: 100%;
      padding-left: 0;
      padding-right: 0; }
      .edcrunch__whats-coming__col:not(:last-child) {
        margin-bottom: 40px; } }

.edcrunch__whats-coming__img {
  overflow: hidden;
  position: relative;
  -webkit-border-radius: 16px;
     -moz-border-radius: 16px;
          border-radius: 16px;
  padding-bottom: 104.951%;
  margin-bottom: 25px; }
  .edcrunch__whats-coming__img img {
    -webkit-border-radius: 16px;
       -moz-border-radius: 16px;
            border-radius: 16px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center; }
  @media (max-width: 1023px) {
    .edcrunch__whats-coming__img {
      margin-bottom: 16px; } }
  @media (max-width: 767px) {
    .edcrunch__whats-coming__img {
      padding-bottom: 102%; } }

.edcrunch__whats-coming__title {
  margin-bottom: 8px; }
  .edcrunch__whats-coming__title h5 {
    font: 700 22px/22px "Mont", sans-serif;
    letter-spacing: -1px;
    margin: 0;
    color: #fff; }
  @media (max-width: 1023px) {
    .edcrunch__whats-coming__title {
      font-size: 20px;
      line-height: 20px; } }

.edcrunch__whats-coming__text p {
  font: 400 16px/24px "Mont", sans-serif;
  letter-spacing: -1px;
  margin: 0;
  color: #fff; }

.edcrunch__whats-coming-bg {
  position: absolute;
  left: 0;
  top: -180px;
  z-index: 1;
  width: 100%;
  height: 1327px;
  background: url("../images/bg-speakers.svg") no-repeat center; }
  @media (max-width: 1023px) {
    .edcrunch__whats-coming-bg {
      -moz-background-size: contain !important;
           background-size: contain !important;
      height: 550px;
      top: -110px; } }

.edcrunch__tickets-section {
  padding-top: 121px;
  position: relative; }
  .edcrunch__tickets-section .edcrunch__title {
    margin-bottom: 43px; }
  .edcrunch__tickets-section::before {
    z-index: 1;
    background: url("../images/bg-speakers.svg") no-repeat;
    width: 1440px;
    height: 1327px;
    top: -150px;
    right: -webkit-calc(50% - 1150px);
    right: -moz-calc(50% - 1150px);
    right: calc(50% - 1150px); }
  .edcrunch__tickets-section::after {
    z-index: 1;
    background: url("../images/bg-speakers.svg") no-repeat;
    width: 1440px;
    height: 1327px;
    top: 600px;
    left: -webkit-calc(50% - 1250px);
    left: -moz-calc(50% - 1250px);
    left: calc(50% - 1250px); }
  .edcrunch__tickets-section .container-home {
    z-index: 3; }
  @media (max-width: 1023px) {
    .edcrunch__tickets-section {
      padding-top: 56px; }
      .edcrunch__tickets-section .edcrunch__title {
        margin-bottom: 24px; }
      .edcrunch__tickets-section::before {
        width: 100%;
        height: 550px;
        top: -130px;
        right: 0;
        background-position: center !important;
        -moz-background-size: contain;
             background-size: contain; } }

.edcrunch__tickets-info {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media (max-width: 1023px) {
    .edcrunch__tickets-info {
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap; } }

.edcrunch__tickets-info__left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media (max-width: 1023px) {
    .edcrunch__tickets-info__left {
      width: 100%;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-box-ordinal-group: 3;
      -webkit-order: 2;
         -moz-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2; } }

.edcrunch__tickets-label {
  white-space: nowrap;
  font: 400 14px/14px "Mont", sans-serif;
  color: #fff; }
  @media (max-width: 1023px) {
    .edcrunch__tickets-label {
      text-align: center;
      width: 100%;
      line-height: 22px;
      margin-bottom: 16px; } }

.edcrunch__tickets-currency {
  padding-left: 16px; }
  @media (max-width: 1023px) {
    .edcrunch__tickets-currency {
      padding-left: 0;
      width: 100%; } }

.edcrunch__tickets-currency__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 218px;
  -webkit-box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.04);
     -moz-box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.04);
  border: 1px solid #3C5BFF;
  overflow: hidden;
  -webkit-border-radius: 8px;
     -moz-border-radius: 8px;
          border-radius: 8px; }
  .edcrunch__tickets-currency__list li {
    position: relative;
    width: 33.33333333333333%;
    height: 32px; }
    .edcrunch__tickets-currency__list li:not(:last-child) {
      border-right: 1px solid #3C5BFF; }
    .edcrunch__tickets-currency__list li input {
      position: absolute;
      opacity: 0;
      visibility: hidden;
      width: 100%;
      height: 100%; }
      .edcrunch__tickets-currency__list li input:checked + label {
        background: #3C5BFF; }
    .edcrunch__tickets-currency__list li label {
      background: #000733;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      height: 100%;
      -webkit-box-align: center;
      -webkit-align-items: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
         -moz-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-transition: background 0.25s;
      -o-transition: background 0.25s;
      -moz-transition: background 0.25s;
      transition: background 0.25s;
      font: 400 14px/14px "Mont", sans-serif;
      color: #fff;
      cursor: pointer; }
  @media (max-width: 1023px) {
    .edcrunch__tickets-currency__list {
      width: 100%; } }

.edcrunch__tickets-info__right a {
  white-space: nowrap;
  font: 20px/20px "Mont", sans-serif;
  color: #fff;
  text-decoration: none; }
  .has-hover .edcrunch__tickets-info__right a:not([disabled]):hover {
    color: #547AF8; }

@media (max-width: 1023px) {
  .edcrunch__tickets-info__right {
    width: 100%;
    text-align: center;
    margin-bottom: 24px; }
    .edcrunch__tickets-info__right a {
      line-height: 26px;
      font-size: 18px; } }

.edcrunch__tickets-content {
  margin-top: 27px; }

.edcrunch__tickets-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px; }
  @media screen and (max-width: 1279px) {
    .edcrunch__tickets-row {
      -webkit-box-pack: center;
      -webkit-justify-content: center;
         -moz-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; } }
  @media (max-width: 1023px) {
    .edcrunch__tickets-row {
      margin-left: 0;
      margin-right: 0; } }

.edcrunch__ticket-card {
  width: 33.33333333333333%;
  margin: 12px 0;
  padding-left: 12px;
  padding-right: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex; }
  @media screen and (max-width: 1279px) {
    .edcrunch__ticket-card {
      width: 50%; } }
  @media (max-width: 1023px) {
    .edcrunch__ticket-card {
      width: 100%;
      padding-left: 0;
      padding-right: 0; } }
  .edcrunch__ticket-card.day1 .edcrunch__ticket-card-block {
    background: -webkit-gradient(linear, left top, right top, from(rgba(53, 99, 248, 0)), to(rgba(53, 99, 248, 0.2))), -webkit-gradient(linear, left bottom, left top, from(rgba(53, 99, 248, 0.15)), to(rgba(53, 99, 248, 0.15))), -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0.05)));
    background: -webkit-linear-gradient(left, rgba(53, 99, 248, 0) 0%, rgba(53, 99, 248, 0.2) 100%), -webkit-linear-gradient(bottom, rgba(53, 99, 248, 0.15), rgba(53, 99, 248, 0.15)), -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05));
    background: -moz-linear-gradient(left, rgba(53, 99, 248, 0) 0%, rgba(53, 99, 248, 0.2) 100%), -moz-linear-gradient(bottom, rgba(53, 99, 248, 0.15), rgba(53, 99, 248, 0.15)), -moz-linear-gradient(bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05));
    background: -o-linear-gradient(left, rgba(53, 99, 248, 0) 0%, rgba(53, 99, 248, 0.2) 100%), -o-linear-gradient(bottom, rgba(53, 99, 248, 0.15), rgba(53, 99, 248, 0.15)), -o-linear-gradient(bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05));
    background: linear-gradient(90deg, rgba(53, 99, 248, 0) 0%, rgba(53, 99, 248, 0.2) 100%), linear-gradient(0deg, rgba(53, 99, 248, 0.15), rgba(53, 99, 248, 0.15)), linear-gradient(0deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05)); }
    .edcrunch__ticket-card.day1 .edcrunch__ticket-card-block::before {
      background: url("../images/icons/svg/ticket-line-1.svg") no-repeat center; }
  .edcrunch__ticket-card.day1 .edcrunch__ticket-day {
    color: #547AF8; }
  .edcrunch__ticket-card.day2 .edcrunch__ticket-day {
    color: #A570EA; }
  .edcrunch__ticket-card.day2 .edcrunch__ticket-card-block {
    background: -webkit-gradient(linear, left top, right top, from(rgba(129, 73, 202, 0)), to(rgba(129, 73, 202, 0.2))), -webkit-gradient(linear, left bottom, left top, from(rgba(129, 73, 202, 0.15)), to(rgba(129, 73, 202, 0.15))), -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0.05)));
    background: -webkit-linear-gradient(left, rgba(129, 73, 202, 0) 0%, rgba(129, 73, 202, 0.2) 100%), -webkit-linear-gradient(bottom, rgba(129, 73, 202, 0.15), rgba(129, 73, 202, 0.15)), -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05));
    background: -moz-linear-gradient(left, rgba(129, 73, 202, 0) 0%, rgba(129, 73, 202, 0.2) 100%), -moz-linear-gradient(bottom, rgba(129, 73, 202, 0.15), rgba(129, 73, 202, 0.15)), -moz-linear-gradient(bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05));
    background: -o-linear-gradient(left, rgba(129, 73, 202, 0) 0%, rgba(129, 73, 202, 0.2) 100%), -o-linear-gradient(bottom, rgba(129, 73, 202, 0.15), rgba(129, 73, 202, 0.15)), -o-linear-gradient(bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05));
    background: linear-gradient(90deg, rgba(129, 73, 202, 0) 0%, rgba(129, 73, 202, 0.2) 100%), linear-gradient(0deg, rgba(129, 73, 202, 0.15), rgba(129, 73, 202, 0.15)), linear-gradient(0deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05)); }
    .edcrunch__ticket-card.day2 .edcrunch__ticket-card-block::before {
      background: url("../images/icons/svg/ticket-line-2.svg") no-repeat center; }
  .edcrunch__ticket-card.both-days .edcrunch__ticket-day span {
    background: -webkit-gradient(linear, left bottom, left top, from(#16DBFF), to(#16DBFF)), -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.2)), to(rgba(255, 255, 255, 0.2)));
    background: -webkit-linear-gradient(bottom, #16DBFF, #16DBFF), -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
    background: -moz-linear-gradient(bottom, #16DBFF, #16DBFF), -moz-linear-gradient(bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
    background: -o-linear-gradient(bottom, #16DBFF, #16DBFF), -o-linear-gradient(bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
    background: linear-gradient(0deg, #16DBFF, #16DBFF), linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block; }
  .edcrunch__ticket-card.both-days .edcrunch__ticket-card-block {
    background: -webkit-gradient(linear, left top, right top, from(rgba(4, 170, 200, 0.4)), to(rgba(76, 117, 255, 0.4))), -webkit-gradient(linear, left bottom, left top, from(rgba(4, 170, 200, 0.2)), to(rgba(4, 170, 200, 0.2))), -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0.05)));
    background: -webkit-linear-gradient(left, rgba(4, 170, 200, 0.4) 0%, rgba(76, 117, 255, 0.4) 100%), -webkit-linear-gradient(bottom, rgba(4, 170, 200, 0.2), rgba(4, 170, 200, 0.2)), -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05));
    background: -moz-linear-gradient(left, rgba(4, 170, 200, 0.4) 0%, rgba(76, 117, 255, 0.4) 100%), -moz-linear-gradient(bottom, rgba(4, 170, 200, 0.2), rgba(4, 170, 200, 0.2)), -moz-linear-gradient(bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05));
    background: -o-linear-gradient(left, rgba(4, 170, 200, 0.4) 0%, rgba(76, 117, 255, 0.4) 100%), -o-linear-gradient(bottom, rgba(4, 170, 200, 0.2), rgba(4, 170, 200, 0.2)), -o-linear-gradient(bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05));
    background: linear-gradient(90deg, rgba(4, 170, 200, 0.4) 0%, rgba(76, 117, 255, 0.4) 100%), linear-gradient(0deg, rgba(4, 170, 200, 0.2), rgba(4, 170, 200, 0.2)), linear-gradient(0deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05)); }
    .edcrunch__ticket-card.both-days .edcrunch__ticket-card-block::before {
      background: url("../images/icons/svg/ticket-line-3.svg") no-repeat center; }
  @media screen and (max-width: 1279px) {
    .edcrunch__ticket-card.both-days {
      margin-left: 50px;
      margin-right: 50px; } }
  @media (max-width: 1023px) {
    .edcrunch__ticket-card.both-days {
      margin-left: 0;
      margin-right: 0; } }
  .edcrunch__ticket-card.vip {
    width: 50%; }
    @media (max-width: 1023px) {
      .edcrunch__ticket-card.vip {
        width: 100%; } }
    .edcrunch__ticket-card.vip .edcrunch__ticket-day {
      color: #FFD964; }
    .edcrunch__ticket-card.vip .edcrunch__ticket-card-block {
      background: -webkit-gradient(linear, left top, right top, from(rgba(0, 7, 51, 0.2)), to(rgba(255, 217, 100, 0.2))), -webkit-gradient(linear, left bottom, left top, from(rgba(255, 217, 100, 0.15)), to(rgba(255, 217, 100, 0.15))), -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0.05)));
      background: -webkit-linear-gradient(left, rgba(0, 7, 51, 0.2) 0%, rgba(255, 217, 100, 0.2) 100%), -webkit-linear-gradient(bottom, rgba(255, 217, 100, 0.15), rgba(255, 217, 100, 0.15)), -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05));
      background: -moz-linear-gradient(left, rgba(0, 7, 51, 0.2) 0%, rgba(255, 217, 100, 0.2) 100%), -moz-linear-gradient(bottom, rgba(255, 217, 100, 0.15), rgba(255, 217, 100, 0.15)), -moz-linear-gradient(bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05));
      background: -o-linear-gradient(left, rgba(0, 7, 51, 0.2) 0%, rgba(255, 217, 100, 0.2) 100%), -o-linear-gradient(bottom, rgba(255, 217, 100, 0.15), rgba(255, 217, 100, 0.15)), -o-linear-gradient(bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05));
      background: linear-gradient(90deg, rgba(0, 7, 51, 0.2) 0%, rgba(255, 217, 100, 0.2) 100%), linear-gradient(0deg, rgba(255, 217, 100, 0.15), rgba(255, 217, 100, 0.15)), linear-gradient(0deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05)); }
      .edcrunch__ticket-card.vip .edcrunch__ticket-card-block::before {
        background: url("../images/icons/svg/ticket-line-4.svg") no-repeat center; }
    .edcrunch__ticket-card.vip .edcrunch__ticket-info {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
         -moz-box-orient: horizontal;
         -moz-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-align: center;
      -webkit-align-items: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-bottom: 24px; }
      @media (max-width: 1023px) {
        .edcrunch__ticket-card.vip .edcrunch__ticket-info {
          margin-bottom: 16px; } }
    .edcrunch__ticket-card.vip .edcrunch__ticket-title {
      width: auto;
      margin-bottom: 0;
      padding-right: 17px; }
    .edcrunch__ticket-card.vip .edcrunch__ticket-top {
      -webkit-box-flex: inherit;
      -webkit-flex: inherit;
         -moz-box-flex: inherit;
          -ms-flex: inherit;
              flex: inherit; }
    .edcrunch__ticket-card.vip .edcrunch__ticket-benefits {
      -webkit-box-flex: 1;
      -webkit-flex: 1;
         -moz-box-flex: 1;
          -ms-flex: 1;
              flex: 1; }
    .edcrunch__ticket-card.vip .edcrunch__ticket-benefit__list:first-child {
      padding-right: 20px; }
      @media (max-width: 1023px) {
        .edcrunch__ticket-card.vip .edcrunch__ticket-benefit__list:first-child {
          padding-right: 0;
          margin-bottom: 8px; } }
      .edcrunch__ticket-card.vip .edcrunch__ticket-benefit__list:first-child li:first-child, .edcrunch__ticket-card.vip .edcrunch__ticket-benefit__list:first-child li:nth-child(2), .edcrunch__ticket-card.vip .edcrunch__ticket-benefit__list:first-child li:nth-child(3) {
        color: #FFD964; }
        .edcrunch__ticket-card.vip .edcrunch__ticket-benefit__list:first-child li:first-child::before, .edcrunch__ticket-card.vip .edcrunch__ticket-benefit__list:first-child li:nth-child(2)::before, .edcrunch__ticket-card.vip .edcrunch__ticket-benefit__list:first-child li:nth-child(3)::before {
          background: url("../images/icons/svg/icon-check-yellow.svg") no-repeat; }
    .edcrunch__ticket-card.vip .edcrunch__ticket-description {
      height: auto; }
  .edcrunch__ticket-card.live {
    width: 50%; }
    @media (max-width: 1023px) {
      .edcrunch__ticket-card.live {
        width: 100%; } }
    .edcrunch__ticket-card.live .edcrunch__ticket-description {
      height: auto; }
    .edcrunch__ticket-card.live .edcrunch__ticket-day {
      color: #23C840; }
    .edcrunch__ticket-card.live .edcrunch__ticket-card-block {
      background: -webkit-gradient(linear, left top, right top, from(rgba(48, 198, 224, 0)), to(rgba(35, 200, 64, 0.2))), -webkit-gradient(linear, left bottom, left top, from(rgba(35, 200, 64, 0.2)), to(rgba(35, 200, 64, 0.2))), -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0.05)));
      background: -webkit-linear-gradient(left, rgba(48, 198, 224, 0) 0%, rgba(35, 200, 64, 0.2) 100%), -webkit-linear-gradient(bottom, rgba(35, 200, 64, 0.2), rgba(35, 200, 64, 0.2)), -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05));
      background: -moz-linear-gradient(left, rgba(48, 198, 224, 0) 0%, rgba(35, 200, 64, 0.2) 100%), -moz-linear-gradient(bottom, rgba(35, 200, 64, 0.2), rgba(35, 200, 64, 0.2)), -moz-linear-gradient(bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05));
      background: -o-linear-gradient(left, rgba(48, 198, 224, 0) 0%, rgba(35, 200, 64, 0.2) 100%), -o-linear-gradient(bottom, rgba(35, 200, 64, 0.2), rgba(35, 200, 64, 0.2)), -o-linear-gradient(bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05));
      background: linear-gradient(90deg, rgba(48, 198, 224, 0) 0%, rgba(35, 200, 64, 0.2) 100%), linear-gradient(0deg, rgba(35, 200, 64, 0.2), rgba(35, 200, 64, 0.2)), linear-gradient(0deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05)); }
      .edcrunch__ticket-card.live .edcrunch__ticket-card-block::before {
        background: url("../images/icons/svg/ticket-line-5.svg") no-repeat center; }
    .edcrunch__ticket-card.live .edcrunch__ticket-info {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
         -moz-box-orient: horizontal;
         -moz-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-align: center;
      -webkit-align-items: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-bottom: 24px; }
      @media (max-width: 1023px) {
        .edcrunch__ticket-card.live .edcrunch__ticket-info {
          margin-bottom: 16px; } }
    .edcrunch__ticket-card.live .edcrunch__ticket-title {
      margin-bottom: 0; }
    .edcrunch__ticket-card.live .edcrunch__ticket-top {
      -webkit-box-flex: inherit;
      -webkit-flex: inherit;
         -moz-box-flex: inherit;
          -ms-flex: inherit;
              flex: inherit; }
    .edcrunch__ticket-card.live .edcrunch__ticket-benefits {
      -webkit-box-flex: 1;
      -webkit-flex: 1;
         -moz-box-flex: 1;
          -ms-flex: 1;
              flex: 1; }

.edcrunch__ticket-card-block {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  padding: 32px 39px 23px;
  -webkit-border-radius: 16px;
     -moz-border-radius: 16px;
          border-radius: 16px;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) inset;
     -moz-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) inset;
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) inset;
  border: 1px solid rgba(255, 255, 255, 0.15); }
  .edcrunch__ticket-card-block::before {
    top: 0;
    width: 100%;
    height: 15px;
    left: 0; }
  @media (max-width: 1023px) {
    .edcrunch__ticket-card-block {
      padding-left: 30px;
      padding-right: 30px; } }

.edcrunch__ticket-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 40px; }
  @media (max-width: 1023px) {
    .edcrunch__ticket-top {
      margin-bottom: 32px; } }

.edcrunch__ticket-day {
  font: 600 26px/32px "Mont", sans-serif;
  margin-bottom: 24px; }
  @media (max-width: 1023px) {
    .edcrunch__ticket-day {
      margin-bottom: 16px;
      font-size: 20px;
      line-height: 28px; } }

.edcrunch__ticket-info {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 3px; }
  @media (max-width: 1023px) {
    .edcrunch__ticket-info {
      margin-bottom: 16px; } }

.edcrunch__ticket-title {
  font: 600 24px/28px "Mont", sans-serif;
  margin-bottom: 16px;
  color: #fff; }
  @media (max-width: 1023px) {
    .edcrunch__ticket-title {
      font-size: 18px;
      line-height: 26px;
      margin-bottom: 8px; } }

.edcrunch__ticket-description {
  height: 88px;
  overflow: hidden; }
  .edcrunch__ticket-description p {
    color: #fff;
    margin: 0;
    font: 400 14px/22px "Mont", sans-serif;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden; }
  @media (max-width: 1023px) {
    .edcrunch__ticket-description {
      height: auto; } }

.edcrunch__ticket-price__label {
  margin-bottom: 16px; }

.edcrunch__ticket-price__label-block {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;
  -webkit-border-radius: 40px;
     -moz-border-radius: 40px;
          border-radius: 40px;
  height: 26px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font: 600 12px/12px "Mont", sans-serif;
  color: #fff;
  padding: 0 8px; }

.edcrunch__ticket-price__list {
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px; }
  .edcrunch__ticket-price__list li {
    white-space: nowrap; }
    .edcrunch__ticket-price__list li.is-price__real {
      margin-right: 24px;
      color: #fff;
      font: 400 36px/44px "Mont", sans-serif; }
      @media (max-width: 1023px) {
        .edcrunch__ticket-price__list li.is-price__real {
          font-size: 32px;
          line-height: 40px; } }
    .edcrunch__ticket-price__list li.is-price__old {
      color: #979797;
      font: 400 24px/44px "Mont", sans-serif;
      text-decoration: line-through; }
      @media (max-width: 1023px) {
        .edcrunch__ticket-price__list li.is-price__old {
          font-size: 20px;
          line-height: 40px; } }

.edcrunch__ticket-benefits__title {
  margin-bottom: 16px;
  color: #fff;
  font: 600 18px/24px "Mont", sans-serif; }
  @media (max-width: 1023px) {
    .edcrunch__ticket-benefits__title {
      font-size: 16px;
      margin-bottom: 8px; } }

.edcrunch__ticket-benefit__list li {
  padding-left: 32px;
  color: rgba(255, 255, 255, 0.8);
  font: 400 14px/22px "Mont", sans-serif;
  position: relative; }
  .edcrunch__ticket-benefit__list li:not(:last-child) {
    margin-bottom: 16px; }
    @media (max-width: 1023px) {
      .edcrunch__ticket-benefit__list li:not(:last-child) {
        margin-bottom: 8px; } }
  .edcrunch__ticket-benefit__list li::before {
    width: 16px;
    height: 16px;
    background: url("../images/icons/svg/icon-check-white.svg") no-repeat;
    top: 50%;
    margin-top: -8px;
    left: 0; }
  .edcrunch__ticket-benefit__list li span {
    color: #fff;
    font-weight: 500; }

@media (max-width: 1023px) {
  .edcrunch__ticket-benefit__block {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }

.speakers__section-past {
  padding-top: 107px; }
  .speakers__section-past .speakers__section-bg {
    top: -230px; }
  @media screen and (min-width: 1024px) {
    .speakers__section-past .speakers__section {
      margin-bottom: 90px; } }

.edcrunch__organizers-section .edcrunch__title {
  margin-bottom: 24px; }

.edcrunch__organizers-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -30px; }
  @media screen and (max-width: 1279px) {
    .edcrunch__organizers-row {
      margin: 0; } }

.edcrunch__organizers-col {
  padding: 0 30px; }
  @media screen and (max-width: 1279px) {
    .edcrunch__organizers-col {
      padding: 0 20px; } }

.edcrunch__organizers-block {
  opacity: 0.6; }

.edcrunch__partners-section {
  margin-top: 120px;
  position: relative;
  z-index: 3; }
  @media (max-width: 1023px) {
    .edcrunch__partners-section {
      margin-top: 56px; } }

.edcrunch__partners-content {
  margin-bottom: 114px; }
  .edcrunch__partners-content .edcrunch__title {
    margin-bottom: 43px; }
  @media (max-width: 1023px) {
    .edcrunch__partners-content {
      margin-bottom: 56px; }
      .edcrunch__partners-content .edcrunch__title {
        margin-bottom: 24px; } }

.edcrunch__partners-item {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }

.edcrunch__partners-slider {
  overflow: hidden; }

.edcrunch__partners-slide {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0; }

.partners-slider {
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .partners-slider:not(.slick-initialized) {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .partners-slider:not(.slick-initialized) .edcrunch__partners-slide:last-child {
      margin-right: 0; }
    @media (max-width: 767px) {
      .partners-slider:not(.slick-initialized) .edcrunch__partners-slide {
        margin-right: 0; } }
  @media (max-width: 767px) {
    .partners-slider .edcrunch__partners-slide {
      width: 50%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
         -moz-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      padding: 0 5px; } }

.edcrunch__partners-slide {
  margin-right: 140px; }
  @media (max-width: 1023px) {
    .edcrunch__partners-slide {
      margin-right: 70px; } }

.edcrunch__partners-general {
  margin-bottom: 118px; }
  .edcrunch__partners-general .edcrunch__title {
    margin-bottom: 49px; }
  @media (max-width: 1023px) {
    .edcrunch__partners-general {
      margin-bottom: 56px; }
      .edcrunch__partners-general .edcrunch__title {
        margin-bottom: 24px; } }

.edcrunch__partner-bn {
  position: relative;
  margin-bottom: 120px; }
  .edcrunch__partner-bn::before {
    z-index: 1;
    background: url("../images/bg-speakers.svg") no-repeat;
    width: 1440px;
    height: 1327px;
    top: -400px;
    right: -webkit-calc(50% - 1300px);
    right: -moz-calc(50% - 1300px);
    right: calc(50% - 1300px); }
  @media (max-width: 1023px) {
    .edcrunch__partner-bn {
      margin-bottom: 56px; }
      .edcrunch__partner-bn::before {
        width: 100%;
        height: 550px;
        top: 100px;
        right: 0;
        -moz-background-size: contain !important;
             background-size: contain !important;
        background-position: center !important; } }

.edcrunch__bn-block-text {
  text-align: center;
  margin-bottom: 49px; }
  .edcrunch__bn-block-text p {
    font: 400 18px/27px "Mont", sans-serif;
    letter-spacing: -0.5px;
    text-align: center;
    margin: 0;
    color: #818089; }
    .edcrunch__bn-block-text p a {
      font-weight: 600; }
  @media (max-width: 1023px) {
    .edcrunch__bn-block-text {
      margin-bottom: 16px; } }
  @media (max-width: 767px) {
    .edcrunch__bn-block-text p br {
      display: none; } }

.edcrunch__bn-content.is-partner .btn__style-blue {
  padding-left: 22px;
  padding-right: 22px; }

.edcrunch__bn-content.is-partner .edcrunch__bn-block-title {
  margin-bottom: 14px; }

@media (max-width: 1023px) {
  .edcrunch__bn-content.is-partner {
    height: auto;
    padding: 64px 24px; }
    .edcrunch__bn-content.is-partner .edcrunch__bn-block-title h3 {
      font-size: 26px;
      line-height: 34px; } }

.edcrunch__section-bn {
  position: relative;
  z-index: 3; }

.edcrunch__faq-section {
  margin-bottom: 22px; }
  @media (max-width: 1023px) {
    .edcrunch__faq-section {
      margin-bottom: 39px; } }

.edcrunch__faq-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -25px;
  margin-right: -25px; }
  @media (max-width: 1365px) {
    .edcrunch__faq-container {
      margin-left: -15px;
      margin-right: -15px; } }
  @media (max-width: 1023px) {
    .edcrunch__faq-container {
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      width: 100%;
      margin-left: 0;
      margin-right: 0; } }

.edcrunch__faq-left, .edcrunch__faq-right {
  width: 50%;
  padding-left: 25px;
  padding-right: 25px; }
  @media (max-width: 1365px) {
    .edcrunch__faq-left, .edcrunch__faq-right {
      padding-left: 15px;
      padding-right: 15px; } }
  @media (max-width: 1023px) {
    .edcrunch__faq-left, .edcrunch__faq-right {
      width: 100%;
      padding-left: 0;
      padding-right: 0; } }

@media (max-width: 1023px) {
  .edcrunch__faq-left {
    margin-bottom: 48px; } }

.edcrunch__faq-badge {
  margin-bottom: 40px; }
  .edcrunch__faq-badge .edcrunch__title-label__block {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex; }
  @media (max-width: 1023px) {
    .edcrunch__faq-badge {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
         -moz-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-bottom: 32px; } }

.edcrunch__faq-title {
  color: #fff;
  font: 600 40px/64px "Montserrat", sans-serif;
  margin-bottom: 40px; }
  @media (max-width: 1023px) {
    .edcrunch__faq-title {
      font-size: 26px;
      line-height: 34px;
      margin-bottom: 32px;
      text-align: center; } }

.edcrunch__social-list li a {
  width: 56px;
  height: 56px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  background: #161C44;
  -webkit-border-radius: 13px;
     -moz-border-radius: 13px;
          border-radius: 13px; }
  .has-hover .edcrunch__social-list li a:not([disabled]):hover {
    background: #547AF8; }

.edcrunch__social-list li:not(:last-child) {
  margin-right: 24px; }

@media (max-width: 1023px) {
  .edcrunch__social-list {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .edcrunch__social-list li a {
      width: 64px;
      height: 64px; } }

.edcrunch__faq-item {
  border: 1px solid rgba(84, 122, 248, 0.4);
  -webkit-border-radius: 16px;
     -moz-border-radius: 16px;
          border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  padding-bottom: 8px; }
  .edcrunch__faq-item:not(:last-child) {
    margin-bottom: 16px; }
  .edcrunch__faq-item.is-active .edcrunch__faq-question::before {
    -webkit-transform: rotate(180deg);
       -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg); }
  .edcrunch__faq-item.is-active .edcrunch__faq-answer {
    display: block; }

.edcrunch__faq-question {
  padding: 22px 90px 16px 24px;
  font: 400 16px/24px "Mont", sans-serif;
  color: #EDEDED;
  position: relative;
  min-height: 86px;
  cursor: pointer; }
  .edcrunch__faq-question::before {
    background: url("../images/icons/svg/icon-plus-grey.svg") no-repeat;
    width: 46px;
    height: 46px;
    right: 15px;
    top: 24px;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    -moz-transition: all 0.25s;
    transition: all 0.25s;
    -webkit-transform: rotate(45deg);
       -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
         -o-transform: rotate(45deg);
            transform: rotate(45deg); }

.edcrunch__faq-answer {
  float: left;
  width: 100%;
  display: none;
  color: rgba(255, 255, 255, 0.8);
  font: 400 14px/22px "Mont", sans-serif;
  margin-bottom: 16px;
  padding-left: 24px;
  padding-right: 24px; }

.edcrunch__gradient-section {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  overflow: hidden; }
  .edcrunch__gradient-section img {
    height: auto;
    display: block;
    max-width: 100%;
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    opacity: 0;
    -webkit-transition: opacity 0.4s ease, -webkit-clip-path 1.2s ease;
    transition: opacity 0.4s ease, -webkit-clip-path 1.2s ease;
    -o-transition: clip-path 1.2s ease, opacity 0.4s ease;
    -moz-transition: clip-path 1.2s ease, opacity 0.4s ease;
    transition: clip-path 1.2s ease, opacity 0.4s ease;
    transition: clip-path 1.2s ease, opacity 0.4s ease, -webkit-clip-path 1.2s ease; }
  .edcrunch__gradient-section.is-animated img {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1; }

.edcrunch__gradient-block {
  position: relative;
  overflow: hidden;
  padding-bottom: 6%; }
  .edcrunch__gradient-block img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center; }
