/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    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);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[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;
}
/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, height .2s ease-in-out;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}
/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
/* Document
       ========================================================================== */
/**
     * 1. Change the default font family in all browsers (opinionated).
     * 2. Correct the line height in all browsers.
     * 3. Prevent adjustments of font size after orientation changes in
     *    IE on Windows Phone and in iOS.
     */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
}

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

/**
     * Add the correct display in IE 9-.
     */
article,
aside,
footer,
header,
nav,
section {
  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
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
figcaption,
figure {
  display: block;
}

/**
     * Add the correct margin in IE 8.
     */
figure {
  margin: 1em 40px;
}

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

/**
     * Add the correct display in IE.
     */
main {
  display: block;
}

/**
     * 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 */
}

/* Links
       ========================================================================== */
/**
     * 1. Remove the gray background on active links in IE 10.
     * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
     */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
     * Remove the outline on focused links when they are also active or hovered
     * in all browsers (opinionated).
     */
a:active,
a:hover {
  outline-width: 0;
}

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

/**
     * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
     */
b,
strong {
  font-weight: inherit;
}

/**
     * 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 style in Android 4.3-.
     */
dfn {
  font-style: italic;
}

/**
     * Add the correct background and color in IE 9-.
     */
mark {
  background-color: #ff0;
  color: #000;
}

/**
     * 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
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
audio,
video {
  display: inline-block;
}

/**
     * Add the correct display in iOS 4-7.
     */
audio:not([controls]) {
  display: none;
  height: 0;
}

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

/**
     * Hide the overflow in IE.
     */
svg:not(:root) {
  overflow: hidden;
}

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

/**
     * Show the overflow in IE.
     */
button {
  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;
}

/**
     * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
     *    controls in Android 4.
     * 2. Correct the inability to style clickable types in iOS and Safari.
     */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  /**
       * Remove the inner border and padding in Firefox.
       */
  /**
       * Restore the focus styles unset by the previous rule.
       */
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
     * Show the overflow in Edge.
     */
input {
  overflow: visible;
}

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

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

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

[type="search"]::-webkit-search-cancel-button, [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 */
}

/**
     * Change the border, margin, and padding in all browsers (opinionated).
     */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

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

/**
     * 1. Add the correct display in IE 9-.
     * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
     */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

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

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

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

/*
     * Add the correct display in IE 9-.
     */
menu {
  display: block;
}

/* Scripting
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
canvas {
  display: inline-block;
}

/**
     * Add the correct display in IE.
     */
template {
  display: none;
}

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

@font-face {
  font-family: "KasperskySansText-Regular";
  font-style: 400;
  font-weight: normal;
  src: url("../fonts/kaspersky/KasperskySansText-Regular.eot?") format("eot"), url("../fonts/kaspersky/KasperskySansText-Regular.woff") format("woff"), url("../fonts/kaspersky/KasperskySansText-Regular.ttf") format("truetype"), url('../fonts/kaspersky/KasperskySansText-Regular.svg#str-replace("KasperskySansText-Regular", " ", "_")') format("svg");
}

@font-face {
  font-family: "KasperskySansText-Light";
  font-style: 300;
  font-weight: normal;
  src: url("../fonts/kaspersky/KasperskySans-Light.eot?") format("eot"), url("../fonts/kaspersky/KasperskySans-Light.woff") format("woff"), url("../fonts/kaspersky/KasperskySans-Light.ttf") format("truetype"), url('../fonts/kaspersky/KasperskySans-Light.svg#str-replace("KasperskySansText-Light", " ", "_")') format("svg");
}

@font-face {
  font-family: "KasperskySansText-Medium";
  font-style: 500;
  font-weight: normal;
  src: url("../fonts/kaspersky/KasperskySansText-Medium.eot?") format("eot"), url("../fonts/kaspersky/KasperskySansText-Medium.woff") format("woff"), url("../fonts/kaspersky/KasperskySansText-Medium.ttf") format("truetype"), url('../fonts/kaspersky/KasperskySansText-Medium.svg#str-replace("KasperskySansText-Medium", " ", "_")') format("svg");
}

@font-face {
  font-family: "KasperskySansText-Bold";
  font-style: 700;
  font-weight: normal;
  src: url("../fonts/kaspersky/KasperskySansText-Bold.eot?") format("eot"), url("../fonts/kaspersky/KasperskySansText-Bold.woff") format("woff"), url("../fonts/kaspersky/KasperskySansText-Bold.ttf") format("truetype"), url('../fonts/kaspersky/KasperskySansText-Bold.svg#str-replace("KasperskySansText-Bold", " ", "_")') format("svg");
}

* {
  margin: 0;
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

html {
  scroll-behavior: smooth;
}

h1 {
  font-family: "KasperskySansText-Medium";
  font-size: 24px;
  line-height: 27px;
  margin: 0;
}

p {
  font-family: "KasperskySansText-Regular";
  font-size: 16px;
  line-height: 26px;
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

ul li {
  font-family: "KasperskySansText-Medium";
  font-size: 16px;
  line-height: 26px;
  color: #fff;
}

input,
textarea {
  border-radius: 0;
  -webkit-appearance: none;
}

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

a.primary-btn {
  width: auto;
  min-width: 160px;
  padding: 0 20px;
  height: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  -webkit-animation: sheen-back 1.5s forwards;
          animation: sheen-back 1.5s forwards;
}

a.primary-btn.disabled {
  background: #cfcfcf;
  pointer-events: none;
}

a.primary-btn.disabled span {
  color: #a0a0a0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

a.primary-btn.disabled svg {
  display: none;
}

a.primary-btn:hover span {
  color: #0044ff;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

a.primary-btn:hover span:before {
  -webkit-animation: sheen 1.2s forwards;
          animation: sheen 1.2s forwards;
}

a.primary-btn:hover svg {
  opacity: 1;
  visibility: visible;
  -webkit-animation: show-hide 0.4s 0.15s linear infinite alternate;
          animation: show-hide 0.4s 0.15s linear infinite alternate;
}

a.primary-btn span {
  font-family: "KasperskySansText-Bold";
  font-size: 15px;
  color: #3163eb;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a.primary-btn span:before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(229, 172, 142, 0)), color-stop(50%, rgba(255, 255, 255, 0.5)), to(rgba(229, 172, 142, 0)));
  background: linear-gradient(to bottom, rgba(229, 172, 142, 0), rgba(255, 255, 255, 0.5) 50%, rgba(229, 172, 142, 0));
  -webkit-transform: rotateZ(60deg) translate(-5em, 7.5em);
          transform: rotateZ(60deg) translate(-5em, 7.5em);
}

a.primary-btn svg {
  width: 15px;
  height: 16px;
  margin-left: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s 0.25s ease-in-out;
  transition: all 0.3s 0.25s ease-in-out;
}

@media (max-width: 739px) {
  a.primary-btn {
    width: 100% !important;
  }
}

a:active {
  color: #3163eb;
}

a.second-btn {
  min-width: 160px;
  width: auto;
  padding: 0 20px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.6);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 100px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a.second-btn span {
  font-family: "KasperskySansText-Medium";
  font-size: 15px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.6);
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

a.second-btn img {
  width: 15px;
  height: 16px;
  margin-left: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s 0.25s ease-in-out;
  transition: all 0.3s 0.25s ease-in-out;
}

a.second-btn:hover {
  border-color: #fff;
}

a.second-btn:hover span {
  color: #ffffff;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

a.second-btn:hover img {
  opacity: 1;
  visibility: visible;
  -webkit-animation: show-hide 0.4s 0.15s linear infinite alternate;
          animation: show-hide 0.4s 0.15s linear infinite alternate;
}

@media (max-width: 739px) {
  a.second-btn {
    width: 100% !important;
  }
}

a.default-btn {
  width: auto;
  padding: 0 20px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  border: 2px solid #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 100px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a.default-btn span {
  font-family: "KasperskySansText-Medium";
  font-size: 15px;
  line-height: 18px;
  color: #fff;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

a.default-btn svg,
a.default-btn img {
  width: 15px;
  height: 16px;
  margin-left: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s 0.25s ease-in-out;
  transition: all 0.3s 0.25s ease-in-out;
}

a.default-btn:hover {
  border-color: #fff;
}

a.default-btn:hover span {
  color: #ffffff;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

a.default-btn:hover svg,
a.default-btn:hover img {
  opacity: 1;
  visibility: visible;
  -webkit-animation: show-hide 0.4s 0.15s linear infinite alternate;
          animation: show-hide 0.4s 0.15s linear infinite alternate;
}

@media (max-width: 739px) {
  a.default-btn {
    width: 100% !important;
  }
}

.stop-scrolling {
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

.breadcrumbs {
  margin-bottom: 36px;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}

.breadcrumbs.show {
  opacity: 1;
}

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

.breadcrumbs ul li a {
  font-family: "KasperskySansText-Medium";
  font-size: 15px;
  line-height: 18px;
  color: #3163eb;
}

.breadcrumbs ul li span {
  font-family: "KasperskySansText-Medium";
  font-size: 15px;
  line-height: 18px;
  color: #fff;
  padding-left: 5px;
}

.matches-text {
  font-size: 20px;
  color: white;
  text-align: left;
  line-height: 25px;
  margin: 10px 0px;
  display: none;
}

.matches-text.visible-t {
  display: block;
}

.animate-block {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.animate-block.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.hideTriger {
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 0;
}

.hidden-message {
  font-family: "KasperskySansText-Medium";
  font-size: 36px;
  line-height: 40px;
  text-align: center;
  color: #ffffff;
  padding: 3em 0;
}

.event-wrapper .hidden-message {
  padding: 0.4em 0;
}

.not-supported-message {
  font-family: "KasperskySansText-Medium";
  font-size: 36px;
  line-height: 40px;
  text-align: center;
  color: #ffffff;
  padding: 1em 0;
}

.pagination-block {
  width: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

.pagination-block__prev, .pagination-block__next {
  font-family: "KasperskySansText-Medium";
  font-size: 16px;
  line-height: 28px;
  color: #3163eb;
}

.pagination-block__prev {
  margin-right: 12px;
}

.pagination-block__next {
  margin-left: 12px;
}

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

.pagination-block ul li {
  width: 33px;
  height: 33px;
  border: 1px solid rgba(170, 196, 253, 0.3);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: 8px;
}

.pagination-block ul li:nth-of-type(4) {
  width: 12px;
  border: none;
  padding-top: 3px;
}

.pagination-block ul li:last-of-type {
  margin-right: 0;
}

.pagination-block ul li a {
  width: 33px;
  height: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "KasperskySansText-Medium";
  line-height: 28px;
  font-size: 16px;
  color: #aac4fd;
  border: 1px solid rgba(170, 196, 253, 0.3);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.pagination-block ul li a.active {
  color: #ffffff;
  background: #3163eb;
  border: 1px solid #3163eb;
}

.pagination-block ul li span {
  font-family: "KasperskySansText-Medium";
  line-height: 28px;
  font-size: 16px;
  color: rgba(170, 196, 253, 0.7);
}

.pagination-block ul li:hover a {
  color: #ffffff;
  background: #3163eb;
  border: 1px solid #3163eb;
}

._no-active {
  pointer-events: none;
}

.cover-section {
  background-position: bottom center !important;
  min-height: 555px !important;
}

@media (max-width: 739px) {
  .cover-section {
    min-height: 340px !important;
  }
}

.section.video-screen._new .main-screen__place__btn {
  opacity: 1;
  margin: 40px 10px 0;
}

.section.video-screen._new .main-screen__place__btn .desktop {
  display: block;
}

.section.video-screen._new .main-screen__place__btn .mobile {
  display: none;
}

@media (max-width: 739px) {
  .section.video-screen._new .main-screen__place__btn {
    margin-top: 60px;
  }
  .section.video-screen._new .main-screen__place__btn .desktop {
    display: none;
  }
  .section.video-screen._new .main-screen__place__btn .mobile {
    display: block;
  }
}

.section.video-screen._new .primary-btn {
  width: auto;
}

@media (max-width: 739px) {
  .section.video-screen._new .primary-btn {
    padding: 10px 20px;
  }
}

@media (max-width: 739px) {
  .speakers-guide__title br {
    display: none;
  }
}

.flex-center {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.form-btn {
  margin-top: 15px;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-btn span {
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
}

.form-btn svg {
  width: 12px;
  height: 12px;
  color: #ffffff;
  margin-left: 10px;
}

.form-btn path {
  fill: #fff;
}

.program-committee {
  padding-top: 90px;
  padding-bottom: 90px;
}

@media (max-width: 1200px) {
  .program-committee {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 739px) {
  .program-committee {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(31, 31, 33, 0.8);
}

@media (max-width: 1200px) {
  .header {
    background: none;
  }
}

.header--main-page {
  opacity: 0;
  -webkit-transition: opacity 0.6s 0.3s ease-in-out, background 0.3s ease-in-out;
  transition: opacity 0.6s 0.3s ease-in-out, background 0.3s ease-in-out;
}

.header--main-page.show {
  opacity: 1;
}

.header--main-page.dark {
  background: rgba(31, 31, 33, 0.8);
}

.header .events__back {
  display: none;
}

.header .events__back a {
  font-family: "KasperskySansText-Medium";
  font-size: 15px;
  line-height: 18px;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  padding-left: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.header .events__back a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  width: 15px;
  height: 16px;
  background: url("/images/icons/header-left-arrow.svg");
  background-size: cover;
  background-repeat: no-repeat;
}

.header .events__back a:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  bottom: -1px;
  left: 24px;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}

.header .events__back a:hover::after {
  width: calc(100% - 24px);
}

.header .events__block {
  display: none;
}

.header .events__block p {
  font-family: "KasperskySansText-Medium";
  font-size: 15px;
  line-height: 18px;
  color: #ffffff;
  margin-right: 30px;
}

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

.header .events__list li {
  margin-right: 15px;
}

.header .events__list li a {
  font-family: "KasperskySansText-Medium";
  font-size: 15px;
  line-height: 18px;
  color: #ffffff;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}

.header .events__list li a:hover {
  color: #0044ff;
}

.header .events__list li.active-event a {
  color: #0044ff;
}

.header .events__list li:last-of-type {
  margin-right: 0px;
}

.header.events .header__menu ul {
  display: none;
}

.header.events.parked .header__menu .events__block {
  padding-left: 0px;
}

.header.events.parked .events__container {
  display: none;
}

.header.events.parked .header__menu .events__block ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header.events .header__menu {
  width: calc(100% - 290px);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header.events .header__social {
  margin-right: 51px;
}

.header.events .events__container {
  display: block;
  height: auto;
  padding: 18px 0px 29px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

.header.events .events__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 240px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.header.events.parked .events__container {
  display: none;
}

.header.program .container:nth-of-type(2) {
  display: none;
}

.header .container {
  width: 1150px;
  height: 74px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.header__logo {
  width: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "KasperskySansText-Medium";
  font-size: 30px;
  line-height: 35px;
  color: #f5f5f5;
  margin-right: 100px;
}

.header__logo img {
  width: 100%;
}

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

.header__menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 60px;
}

.header__menu ul li {
  margin-right: 26px;
  position: relative;
}

.header__menu ul li:last-of-type {
  margin-right: 0;
}

.header__menu ul li:hover a:after {
  width: 100%;
}

.header__menu ul li:hover ul.mobile-submenu {
  opacity: 1;
  pointer-events: all;
}

.header__menu ul li a {
  font-family: "KasperskySansText-Medium";
  font-size: 15px;
  line-height: 18px;
  color: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 11;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.header__menu ul li a:hover {
  color: #10c36d;
}

.header__menu ul li a:hover:after {
  color: #10c36d;
}

.header__menu ul li a.active {
  color: #10c36d;
}

.header__menu ul li a.active:after {
  color: #10c36d;
}

.header__menu ul li a[href="/speakers"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.header__menu ul li a[href="/speakers"]::after {
  margin-left: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  content: "CFP";
  font-family: "KasperskySansText-Medium";
  width: 25px;
  height: 25px;
  font-style: normal;
  font-weight: 700;
  font-size: 9px;
  line-height: 11px;
  border-radius: 50%;
  color: #000000;
  background: #d6d8d7;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

@media (max-width: 1200px) {
  .header__menu ul li a[href="/speakers"]::after {
    background: #fff;
    font-size: 10px;
    color: #000;
  }
}

.header__menu ul li a[href="/speakers"].active::after {
  color: #10c36d;
}

.header__menu ul li a[href="/speakers"]:hover::after {
  color: #10c36d;
}

.header__menu ul li ul.mobile-submenu {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 100vh;
  position: absolute;
  padding-top: 66px;
  padding-bottom: 22px;
  top: 0;
  opacity: 0;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0;
  z-index: 10;
}

@media (min-width: 1160px) {
  .header__menu ul li ul.mobile-submenu::before {
    border-top: 1px solid #3c3c3c;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
    width: 200vw;
    height: 60px;
    background: rgba(31, 31, 33, 0.8);
    content: "";
    display: block;
  }
}

.header__menu ul li ul.mobile-submenu li a {
  font-family: "KasperskySansText-Medium";
  font-size: 15px;
  line-height: 18px;
  color: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.header__menu ul li ul.mobile-submenu li a:hover {
  color: #10c36d;
}

.header__menu ul li ul.mobile-submenu li a.active {
  color: #10c36d;
}

.header__menu ul li ul.mobile-submenu:hover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__social {
  width: 142px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 75px;
}

.header__social__item {
  display: block;
  width: 20px;
  opacity: 0.6;
}

.header__social__item img {
  width: 100%;
}

.header__social__item:hover {
  opacity: 1;
}

.header__social__item--g-plus {
  width: 17px;
}

.header__social__item--g-plus img {
  width: 17px;
}

.header__social__item--linked-in {
  width: 15px;
}

.header__social__item--linked-in img {
  width: 15px;
}

.header__social__item--tw img {
  width: 20px;
}

.header__social__item--youtube img {
  width: 20px;
}

.header__social__item--inst img {
  width: 18px;
}

.header__social__item--fb {
  width: 16px;
}

.header__social__item--fb img {
  width: 16px;
}

.header__search {
  width: 16px;
  height: 16px;
  margin-left: 5px;
  display: block;
}

.header__search img {
  width: 16px;
}

.header__hamburger {
  display: none;
}

@media (max-width: 1200px) {
  .header__item {
    width: 100%;
  }
  .header__item:not(:last-child) {
    border-bottom: 1px solid #3c3c3c;
    padding-bottom: 20px;
  }
}

.footer {
  width: 100%;
  height: 314px;
  padding-top: 50px;
  padding-bottom: 22px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #1f1f21;
}

.footer.events .footer__item__menu {
  display: none;
}

.footer.events .footer__item__menu--event {
  display: block;
}

.footer.events .footer__item__menu--event a {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.footer.events .footer__item__menu--event a:hover,
.footer.events .footer__item__menu--event li.active-event a {
  color: #04f;
}

.footer.events.parked .footer__item__menu {
  display: block;
}

.footer .container {
  width: 1150px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__item {
  width: 60%;
}

.footer__item--mobile {
  display: none;
}

.footer__item--links {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__item__title {
  margin-bottom: 25px;
}

.footer__item__title span {
  font-family: "KasperskySansText-Medium";
  font-size: 13px;
  line-height: 21px;
  color: #fff;
  letter-spacing: 0.09em;
}

.footer__item__title h2 {
  font-family: "KasperskySansText-Medium";
  font-size: 16px;
  line-height: 27px;
  color: #fff;
  margin: 0;
  letter-spacing: 0.07em;
}

.footer__item__social {
  width: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 65px;
}

.footer__item__social__item {
  width: 20px;
  margin-right: 20px;
}

.footer__item__social__item:last-of-type {
  margin-right: 0;
}

.footer__item__social__item img {
  width: 20px;
}

.footer__item__social__item--fb img, .footer__item__social__item--linked-in img {
  width: 18px;
}

.footer__item__logo {
  max-width: 155px;
  margin-bottom: 5px;
}

.footer__item__logo a {
  display: block;
}

.footer__item__logo img {
  width: 100%;
}

.footer__item__copy p {
  font-family: "KasperskySansText-Medium";
  font-size: 12px;
  letter-spacing: 0.025em;
  line-height: 24px;
  color: #ffffff;
  opacity: 0.5;
  margin: 0;
}

.footer__item__menu {
  width: 180px;
  margin-right: 10px;
}

.footer__item__menu--event {
  display: none;
}

.footer__item__menu:before {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background: #3163eb;
  margin-top: 5px;
  margin-bottom: 15px;
}

.footer__item__menu:last-of-type {
  margin-right: 0;
}

.footer__item__menu li {
  margin-bottom: 10px;
}

.footer__item__menu li a {
  font-family: "KasperskySansText-Medium";
  font-size: 15px;
  line-height: 18px;
  color: #ffffff;
}

.panel-accept {
  width: 100%;
  height: 90px;
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  z-index: 100;
}

.panel-accept.hide {
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

.panel-accept .container {
  width: 950px;
  height: 90px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.panel-accept__text {
  width: 754px;
  margin-right: 60px;
}

.panel-accept__text p {
  font-family: 'KasperskySansText-Regular';
  line-height: 16px;
  font-size: 11px;
  color: #FFFFFF;
  margin: 0;
}

.panel-accept__text a {
  color: #fff;
  text-decoration: underline;
}

.panel-accept .btn-primary-arrow {
  fill: #0012ff;
}

#overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  background-color: #050505;
  opacity: .8;
  z-index: 250;
}

.popup {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: none;
  z-index: 300;
}

.popup--gallery {
  position: fixed;
}

.search-popup {
  width: 100%;
  height: 100%;
}

.search-popup .container {
  width: 754px;
  height: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.search-popup__close {
  position: fixed;
  top: 30px;
  right: 66px;
  width: 24px;
  height: 24px;
}

.search-popup__close img {
  width: 100%;
}

.search-popup form {
  width: 100%;
}

.search-popup__field {
  width: 100%;
  position: relative;
  margin-bottom: 45px;
}

.search-popup__field input {
  width: 100%;
  font-family: 'KasperskySansText-Medium';
  font-size: 50px;
  line-height: 52px;
  color: #FFFFFF;
  border: none;
  background: transparent;
  outline: none;
  padding: 0 60px 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.search-popup__field input::-webkit-input-placeholder {
  color: #fff;
}

.search-popup__field input::-moz-placeholder {
  color: #fff;
}

.search-popup__field input:-ms-input-placeholder {
  color: #fff;
}

.search-popup__field input:-moz-placeholder {
  color: #fff;
}

.search-popup__field a {
  display: block;
  width: 32px;
  position: absolute;
  right: 0;
  bottom: 25px;
}

.search-popup__field img {
  width: 100%;
}

.search-popup input[type="submit"] {
  width: 250px;
  height: 40px;
  background: #fff;
  border-radius: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  border: none;
  font-family: 'KasperskySansText-Medium';
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #3163EB;
  display: none;
}

.speaker-popup {
  background-color: #181818;
}

.speaker-popup .container {
  width: 1150px;
  margin: 0 auto;
  position: relative;
}

.speaker-popup__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
}

.speaker-popup__inner--image {
  position: relative;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  width: 471px;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.speaker-popup__inner--image img {
  display: block;
  width: 100%;
  height: auto;
}

.speaker-popup__inner--image.sUp {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.speaker-popup__inner--text {
  width: calc(100% - 521px);
  margin-left: 50px;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.speaker-popup__inner--text.sUp {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.speaker-popup__inner--name {
  margin-bottom: 5px;
}

.speaker-popup__inner--name p {
  font-family: 'KasperskySansText-Medium';
  font-size: 25px;
  line-height: 28px;
  color: #FFFFFF;
}

.speaker-popup__inner--company {
  margin-bottom: 10px;
}

.speaker-popup__inner--company p {
  font-family: 'KasperskySansText-Regular';
  font-size: 15px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.6);
}

.speaker-popup__inner--tlink {
  margin-bottom: 30px;
}

.speaker-popup__inner--tlink.hide {
  display: none;
}

.speaker-popup__inner--tlink a {
  color: #3163eb;
  text-decoration: none;
}

.speaker-popup__inner--tlink p {
  position: relative;
  font-size: 15px;
  line-height: 20px;
  color: #FFFFFF;
  padding-left: 23px;
}

.speaker-popup__inner--tlink p:before {
  content: '';
  display: block;
  width: 15px;
  height: 12px;
  position: absolute;
  left: 0px;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  background: url("/../images/icons/social/tw-icon.svg");
  background-size: cover;
}

.speaker-popup__inner--description p {
  font-size: 16px;
  line-height: 26px;
  font-family: 'KasperskySansText-Regular';
  color: #FFFFFF;
}

.popup__close {
  z-index: 350;
  right: 0px;
  top: 20%;
  position: absolute;
  width: 20px;
  height: 20px;
}

.popup__close img {
  width: 100%;
}

.thanks-popup {
  background-color: #181818;
  z-index: 400;
}

.thanks-popup .container {
  width: 1150px;
  margin: 0 auto;
  position: relative;
}

.thanks-popup__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100vh;
}

.thanks-popup__inner--text {
  position: relative;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
}

.thanks-popup__inner--text h3 {
  font-family: 'KasperskySansText-Medium';
  font-size: 50px;
  line-height: 60px;
  color: #FFFFFF;
  margin-bottom: 15px;
  text-align: center;
}

.thanks-popup__inner--text p {
  font-family: 'KasperskySansText-Medium';
  font-size: 15px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.thanks-popup__inner--text.sUp {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.thanks-popup__inner--btn {
  margin-top: 30px;
  position: relative;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
}

.thanks-popup__inner--btn.sUp {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.thanks-popup__close {
  width: 250px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 100px;
  font-family: 'KasperskySansText-Medium';
  font-size: 15px;
  color: #0044FF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0px auto;
  cursor: pointer;
  outline: none;
  border: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  overflow: hidden;
  -webkit-animation: sheen-back 1.5s forwards;
          animation: sheen-back 1.5s forwards;
}

.thanks-popup__close span {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  overflow: hidden;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.thanks-popup__close span:before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(229, 172, 142, 0)), color-stop(50%, rgba(255, 255, 255, 0.5)), to(rgba(229, 172, 142, 0)));
  background: linear-gradient(to bottom, rgba(229, 172, 142, 0), rgba(255, 255, 255, 0.5) 50%, rgba(229, 172, 142, 0));
  -webkit-transform: rotateZ(60deg) translate(-5em, 7.5em);
          transform: rotateZ(60deg) translate(-5em, 7.5em);
}

.thanks-popup__close svg {
  width: 15px;
  height: 16px;
  margin-left: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s .25s ease-in-out;
  transition: all .3s .25s ease-in-out;
}

.thanks-popup__close .btn-primary-arrow {
  fill: #0012ff;
}

.thanks-popup__close:hover span {
  color: #0044FF;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.thanks-popup__close:hover span:before {
  -webkit-animation: sheen 1.2s forwards;
          animation: sheen 1.2s forwards;
}

.thanks-popup__close:hover svg {
  opacity: 1;
  visibility: visible;
  -webkit-animation: show-hide .4s .15s linear infinite alternate;
          animation: show-hide .4s .15s linear infinite alternate;
}

.training-popup {
  background-color: #181818;
}

.training-popup .popup__close {
  top: 70px;
  right: 10%;
  -webkit-transform: translate(-10%, 0%);
          transform: translate(-10%, 0%);
}

.training-popup .container {
  width: 1150px;
  margin: 0 auto;
  position: relative;
}

.training-popup__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100vh;
}

.training-popup__form {
  width: 754px;
  background: linear-gradient(195.53deg, #0044FF -0.65%, #784BF8 95.62%);
  border-radius: 4px;
  padding: 25px 26px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.training-popup__form h3 {
  font-family: 'KasperskySansText-Medium';
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 25px;
  color: #FFFFFF;
}

.training-popup__form .form-fields__item p.field-explanation {
  font-family: 'KasperskySansText-Medium';
  font-size: 11px;
  line-height: 14px;
  color: #FFFFFF;
  margin-top: 4px;
}

.training-popup__form input[type="submit"] {
  text-align: center;
}

.training-popup__form.sUp {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.gallery {
  width: 950px;
  margin-top: 78px;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.gallery__close {
  position: fixed;
  top: -50px;
  right: -92px;
  width: 20px;
  height: 20px;
}

.gallery__close img {
  width: 100%;
}

.gallery__slider {
  width: 950px;
}

.gallery__slider__item {
  width: 100%;
  outline: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.gallery__slider__item__img {
  width: 100%;
  height: 72vh;
  max-height: 562px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  margin-bottom: 24px;
}

.gallery__slider__item__info {
  width: 100%;
  position: relative;
}

.gallery__slider__item__info p {
  width: calc(100% - 268px);
  font-family: 'KasperskySansText-Medium';
  font-size: 14px;
  line-height: 21px;
  color: rgba(255, 255, 255, 0.6);
}

.gallery__slider__item .media-photos__share {
  left: initial;
  bottom: initial;
  right: 0;
  top: -3px;
}

.gallery__slider__item .media-photos__share p {
  color: #fff;
  width: initial;
}

.gallery__slider .slick-slide {
  height: initial;
}

.gallery__slider .slick-arrow {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #3163EB;
  background: transparent;
  color: transparent;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  opacity: 1;
  -webkit-transition: opacity .6s .5s ease-in-out, background .3s ease-in-out, border .3s ease-in-out;
  transition: opacity .6s .5s ease-in-out, background .3s ease-in-out, border .3s ease-in-out;
}

.gallery__slider .slick-arrow:before, .gallery__slider .slick-arrow:after {
  content: '';
  width: 21px;
  height: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-repeat: no-repeat;
}

.gallery__slider .slick-arrow.slick-prev {
  left: -122px;
}

.gallery__slider .slick-arrow.slick-prev:before {
  background-image: url("/../images/icons/arrow-left-blue.svg");
}

.gallery__slider .slick-arrow.slick-prev:after {
  background-image: url("/../images/icons/arrow-left.svg");
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out;
}

.gallery__slider .slick-arrow.slick-next {
  right: -122px;
}

.gallery__slider .slick-arrow.slick-next:before {
  left: 54%;
  background-image: url("/../images/icons/arrow-right-blue.svg");
}

.gallery__slider .slick-arrow.slick-next:after {
  left: 54%;
  background-image: url("/../images/icons/arrow-right.svg");
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out;
}

.gallery__slider .slick-arrow:hover {
  border: 2px solid #fff;
  background: #fff;
}

.gallery__slider .slick-arrow:hover.slick-next:after, .gallery__slider .slick-arrow:hover.slick-prev:after {
  opacity: 0;
}

.form-video {
  width: 1150px;
  top: 50%;
  left: 50%;
  bottom: auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.form-video__close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
}

.form-video__close img {
  width: 100%;
}

.form-video__content {
  width: 100%;
  padding-top: 46px;
  padding-bottom: 42px;
  background: linear-gradient(191.47deg, #0044FF -1.53%, #784BF8 95.59%);
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.form-video__form {
  width: 560px;
  margin: 0 auto;
}

.form-video__form h3 {
  width: 100%;
  font-family: 'KasperskySansText-Medium';
  font-size: 20px;
  line-height: 32px;
  color: #FFFFFF;
  text-align: center;
  margin: 0;
  margin-bottom: 30px;
}

.form-video__form .mktoForm {
  width: 100% !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.form-video__form .mktoForm input[type="text"],
.form-video__form .mktoForm input[type="email"],
.form-video__form .mktoForm input[type="number"] {
  background: 0 0;
  border: none;
  outline: 0;
  font-family: 'KasperskySansText-Medium';
  font-size: 15px;
  color: #fff;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.form-video__form .mktoForm input[type="text"]::-webkit-input-placeholder,
.form-video__form .mktoForm input[type="email"]::-webkit-input-placeholder,
.form-video__form .mktoForm input[type="number"]::-webkit-input-placeholder {
  color: #fff;
}

.form-video__form .mktoForm input[type="text"] ::-moz-placeholder,
.form-video__form .mktoForm input[type="email"] ::-moz-placeholder,
.form-video__form .mktoForm input[type="number"] ::-moz-placeholder {
  color: #fff;
}

.form-video__form .mktoForm input[type="text"]:-ms-input-placeholder,
.form-video__form .mktoForm input[type="email"]:-ms-input-placeholder,
.form-video__form .mktoForm input[type="number"]:-ms-input-placeholder {
  color: #fff;
}

.form-video__form .mktoForm input[type="text"]:-moz-placeholder,
.form-video__form .mktoForm input[type="email"]:-moz-placeholder,
.form-video__form .mktoForm input[type="number"]:-moz-placeholder {
  color: #fff;
}

@-webkit-keyframes autofill {
  to {
    color: #fff;
    background: transparent;
  }
}

.form-video__form .mktoForm input:-webkit-autofill {
  -webkit-animation-name: autofill;
  -webkit-animation-fill-mode: both;
}

.form-video__form .mktoForm input[type=number]::-webkit-inner-spin-button,
.form-video__form .mktoForm input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-video__form .mktoForm input[type="checkbox"] {
  -webkit-appearance: checkbox;
}

.form-video__form .mktoForm button[type="submit"] {
  width: 160px;
  height: 40px;
  display: block;
  background: #fff;
  color: #3163eb;
  border-radius: 100px;
  border: 0;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  font-family: 'KasperskySansText-Bold';
  font-size: 15px;
  outline: none;
}

.form-video__form .mktoForm select {
  width: 100% !important;
  background: transparent;
  border: none;
  outline: 0;
  font-family: 'KasperskySansText-Medium';
  font-size: 15px;
  color: #fff;
  padding: 0 !important;
  padding-bottom: 14px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.form-video__form .mktoForm select option {
  color: #000;
}

.form-video__form .mktoForm select {
  border-radius: 0;
}

.form-video__form .mktoFormRow {
  width: 47%;
  margin-bottom: 20px;
}

.form-video__form .mktoFormRow:nth-of-type(8), .form-video__form .mktoFormRow:nth-of-type(9), .form-video__form .mktoFormRow:nth-of-type(10), .form-video__form .mktoFormRow:nth-of-type(11) {
  display: none;
}

.form-video__form .mktoFormRow:nth-of-type(12) {
  width: 100%;
  margin-bottom: 20px;
}

.form-video__form .mktoFormRow:nth-of-type(12) .mktoFormCol {
  width: calc(100% - 56px) !important;
}

.form-video__form .mktoFormRow:nth-of-type(12) .mktoFieldDescriptor {
  width: 42px !important;
}

.form-video__form .mktoFieldWrap {
  width: 100%;
}

.form-video__form .mktoOffset,
.form-video__form .mktoGutter {
  display: none;
}

.form-video__form .mktoRequiredField label.mktoLabel {
  display: none;
  font-family: 'KasperskySansText-Medium';
  font-size: 15px;
  line-height: 18px;
  color: #FFFFFF;
}

.form-video__form .mktoHtmlText {
  width: 100% !important;
}

.form-video__form .mktoHtmlText p {
  font-family: 'KasperskySansText-Medium';
  font-size: 11px;
  line-height: 16px;
  color: #FFFFFF;
}

.form-video__form .mktoButtonRow {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-video__form .mktoButtonRow .mktoButtonWrap {
  margin: 0 auto !important;
}

.form-fields {
  width: 100%;
}

.form-fields__item {
  width: 100%;
  position: relative;
  margin-bottom: 24px;
}

.form-fields__item--checkbox-group {
  margin-bottom: 30px;
  margin-top: 30px;
}

.form-fields__item--checkbox-group .form-fields .checkbox-block input[type="checkbox"] ~ span {
  top: 0;
}

.form-fields__item--checkbox-group .error {
  font-family: "KasperskySansText-Medium";
  font-size: 11px !important;
  line-height: 13px !important;
  color: #ed2993;
  position: absolute;
  left: 0 !important;
  bottom: -18px !important;
}

.form-fields__item--before-recaprtcha {
  margin-bottom: 60px;
}

.form-fields__item--agree {
  margin-bottom: 40px;
}

.form-fields__item:last-of-type {
  margin-bottom: 0;
}

.form-fields__item label.error {
  font-family: "KasperskySansText-Medium";
  font-size: 11px;
  line-height: 13px;
  color: #ed2993;
  position: absolute;
  left: 0;
  bottom: -18px;
}

.form-fields__recapthca {
  width: 100%;
  margin-bottom: 45px;
  position: relative;
}

.form-fields__recapthca span.recaptcha-error {
  font-family: "KasperskySansText-Medium";
  font-size: 11px;
  line-height: 13px;
  color: #ed2993;
  position: absolute;
  left: 0;
  bottom: -18px;
}

.form-fields input[type="text"] {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: "KasperskySansText-Medium";
  font-size: 15px;
  color: #ffffff;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.form-fields input[type="text"]::-webkit-input-placeholder {
  color: #fff;
}

.form-fields input[type="text"]::-moz-placeholder {
  color: #fff;
}

.form-fields input[type="text"]:-ms-input-placeholder {
  color: #fff;
}

.form-fields input[type="text"]:-moz-placeholder {
  color: #fff;
}

.form-fields input[type="submit"] {
  width: 100%;
  height: 40px;
  display: block;
  text-align: center;
  background: #fff;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  -webkit-animation: sheen-back 1.5s forwards;
          animation: sheen-back 1.5s forwards;
  border: none;
  outline: none;
  font-family: "KasperskySansText-Bold";
  font-size: 15px;
  color: #3163eb;
  cursor: pointer;
}

.form-fields input[type="submit"]:hover {
  color: #0044ff;
}

.form-fields .checkbox-block {
  margin-top: 10px;
}

.form-fields .checkbox-block label {
  font-family: "KasperskySansText-Medium";
  font-size: 15px;
  color: #fff;
}

.form-fields .checkbox-block span {
  top: 9px;
  position: relative;
}

.form-fields .checkbox-block input[type="checkbox"] ~ span {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #fff;
  outline: none;
  margin: 6px;
  margin-left: 0;
  margin-right: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
}

.form-fields .checkbox-block input[type="checkbox"]:checked ~ span {
  border: 1px solid #fff;
}

.form-fields .checkbox-block input[type="checkbox"]:checked ~ span:before {
  content: "";
  display: block;
  width: 4px;
  height: 8px;
  border: 0 solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotateZ(45deg);
  margin: 0 4px;
  pointer-events: none;
}

.form-fields .checkbox-block--agree label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.form-fields .checkbox-block--agree label.error {
  font-family: "KasperskySansText-Medium";
  font-size: 11px;
  line-height: 13px;
  color: #ed2993;
  position: absolute;
  left: 0;
  bottom: -18px;
}

.form-fields .checkbox-block--agree span {
  margin: 0;
  margin-right: 16px;
}

.form-fields .checkbox-block--agree p {
  font-family: "KasperskySansText-Medium";
  font-size: 13px;
  line-height: 19px;
}

.form-fields .checkbox-block--agree p a {
  color: #10c36d;
}

.form-fields .checkbox-block--agree input[type="checkbox"] ~ span {
  min-width: 16px;
  margin: 0;
  margin-right: 16px;
}

.form-fields textarea {
  width: 100%;
  background: transparent;
  outline: none;
  border: none;
  border-bottom: 1px solid #fff;
  font-family: "KasperskySansText-Medium";
  font-size: 15px;
  line-height: 18px;
  color: #fff;
  resize: none;
}

.form-fields textarea::-webkit-input-placeholder {
  color: #fff;
}

.form-fields textarea::-moz-placeholder {
  color: #fff;
}

.form-fields textarea:-ms-input-placeholder {
  color: #fff;
}

.form-fields textarea:-moz-placeholder {
  color: #fff;
}

.preloader {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.74);
  display: none;
}

.preloader__load {
  width: 90px;
  height: 90px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.preloader__load img {
  width: 100%;
}

body.operabr .picture .about-screen__placement,
body.operabr .video-screen .about-screen__placement,
body.operabr .contacts-info__form,
body.operabr .theme--blue .theme__placement,
body.operabr .training-popup__form,
body.operabr .location-hotel__placement,
body.operabr .speakers-guide__inner--form,
body.operabr .participants-main__form {
  background: #04f;
}

body.operabr .theme--orange .theme__placement {
  background: #FFAD31;
}

body.operabr .popup {
  position: absolute;
  max-height: 100%;
}

@-webkit-keyframes arrow-down {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  50% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  75% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes arrow-down {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  50% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  75% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

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

@keyframes show-hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes sheen {
  100% {
    -webkit-transform: rotateZ(60deg) translate(1em, -9em);
            transform: rotateZ(60deg) translate(1em, -9em);
  }
}

@keyframes sheen {
  100% {
    -webkit-transform: rotateZ(60deg) translate(1em, -9em);
            transform: rotateZ(60deg) translate(1em, -9em);
  }
}

@-webkit-keyframes typing {
  0% {
    width: 0;
  }
}

@keyframes typing {
  0% {
    width: 0;
  }
}

.main-wrapper {
  width: 100%;
  background-color: #fff;
  position: relative;
  background: #050505;
}

.main-screen {
  width: 100%;
  height: 790px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.main-screen.show-blocks .main-screen__title,
.main-screen.show-blocks .main-screen__timer__item,
.main-screen.show-blocks .main-screen__place,
.main-screen.show-blocks .main-screen__place__btn,
.main-screen.show-blocks .main-screen__sponsors,
.main-screen.show-blocks .main-screen__down {
  opacity: 1;
}

.main-screen .container {
  width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 4;
}

.main-screen__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 790px;
  background-image: url("/images/index/main-section.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 1;
}

.main-screen__bg-mobile {
  display: none;
}

.main-screen__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  min-height: 790px;
  height: 790px;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  overflow: hidden;
  z-index: 2;
}

.main-screen__video:after {
  content: "";
  width: 100%;
  height: 790px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  background-color: rgba(0, 0, 0, 0.4);
}

.main-screen__video video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 3;
  overflow: hidden;
}

.main-screen__title {
  margin-bottom: 50px;
  opacity: 0;
  -webkit-transition: opacity 0.8s 1s ease-in-out;
  transition: opacity 0.8s 1s ease-in-out;
}

.main-screen__title h1 {
  font-family: "KasperskySansText-Medium";
  font-size: 40px;
  line-height: 43px;
  text-align: center;
  color: #ffffff;
  letter-spacing: 1px;
  margin: 0;
  margin-top: 20px;
}

.main-screen__title span {
  display: block;
  font-family: "KasperskySansText-Medium";
  font-size: 24px;
  line-height: 27px;
  text-align: center;
  color: #ffffff;
  margin: 0 auto;
}

.main-screen__timer {
  width: 760px;
  margin: 0 auto;
  margin-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main-screen__timer__item {
  width: 140px;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
}

.main-screen__timer__item:nth-of-type(1) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.main-screen__timer__item:nth-of-type(2) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.main-screen__timer__item:nth-of-type(3) {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}

.main-screen__timer__item:nth-of-type(4) {
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}

.main-screen__timer__item.show {
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}

.main-screen__timer .time {
  width: 140px;
  height: 140px;
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.main-screen__timer .time__down {
  width: 140px;
  height: 140px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.main-screen__timer .time__up {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.main-screen__timer .time .progress-passive {
  width: 140px;
  height: 140px;
}

.main-screen__timer .time .progress-passive__circle {
  stroke: #fff;
}

.main-screen__timer .time .progress-ring {
  width: 140px;
  height: 140px;
}

.main-screen__timer .time .progress-ring.other {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.main-screen__timer .time .progress-ring__circle {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}

.main-screen__timer .time .progress-ring__circle.active {
  -webkit-transition: stroke-dashoffset 2.5s ease-in-out;
  transition: stroke-dashoffset 2.5s ease-in-out;
}

.main-screen__timer .time .progress-ring__circle.active-seconds {
  -webkit-transition: stroke-dashoffset 1s ease-in-out;
  transition: stroke-dashoffset 1s ease-in-out;
}

.main-screen__timer .time__number {
  width: 80px;
  position: absolute;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main-screen__timer .time__number span {
  font-family: "KasperskySansText-Medium";
  font-size: 40px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 5px;
  display: block;
}

.main-screen__timer .time__number span.types {
  font-family: "KasperskySansText-Regular";
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 0;
}

.main-screen__place {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  -webkit-transition: opacity 0.8s 1.6s ease-in-out;
  transition: opacity 0.8s 1.6s ease-in-out;
}

.main-screen__place__line {
  width: 64px;
  height: 3px;
  margin: 0 auto;
  margin-bottom: 12px;
}

.main-screen__place p {
  font-family: "KasperskySansText-Medium";
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
}

.main-screen__place span {
  font-family: "KasperskySansText-Regular";
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
}

.main-screen__place__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  opacity: 0;
  -webkit-transition: opacity 0.8s 3s ease-in-out;
  transition: opacity 0.8s 3s ease-in-out;
}

.main-screen__place__btn a:not(:last-child) {
  margin-bottom: 15px;
}

.main-screen__sponsors {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transition: opacity 0.8s 3.2s ease-in-out;
  transition: opacity 0.8s 3.2s ease-in-out;
}

.main-screen__sponsors__item {
  width: 90px;
}

.main-screen__sponsors__item:not(:last-of-type) {
  margin-right: 30px;
}

.main-screen__sponsors__item img {
  width: 100%;
}

.main-screen__down {
  position: absolute;
  left: 49.4%;
  bottom: 52px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: opacity 0.6s 3.5s ease-in-out;
  transition: opacity 0.6s 3.5s ease-in-out;
  display: none;
}

.main-screen__down.animated-arrow {
  -webkit-animation: arrow-down 2s linear infinite alternate;
          animation: arrow-down 2s linear infinite alternate;
}

.main-screen__down img {
  width: 22px;
  height: 34px;
}

.sponsors-screen {
  width: 100%;
  background: #1f1f21;
  padding-top: 120px;
  padding-bottom: 120px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.sponsors-screen .container {
  width: 1150px;
  margin: 0 auto;
}

.sponsors-screen .container-company {
  width: 950px;
  margin: 0 auto;
  position: relative;
}

.sponsors-screen__title {
  margin-bottom: 40px;
}

.sponsors-screen__title p {
  color: transparent;
}

.sponsors-screen__title span {
  font-family: "KasperskySansText-Medium";
  font-size: 24px;
  line-height: 27px;
  color: #ffffff;
}

.sponsors-screen__company {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sponsors-screen__company--big .sponsors-screen__company__item {
  width: 30%;
  margin-bottom: 25px;
}

.sponsors-screen__company--small .sponsors-screen__company__item img {
  max-height: 40px;
  width: 100px;
}

.sponsors-screen__company__item {
  width: 20%;
  margin-bottom: 60px;
}

.sponsors-screen__company__item img {
  width: auto;
  max-width: 100%;
  max-height: 90px;
}

.sponsors-screen__info p {
  width: 760px;
  font-family: "KasperskySansText-Regular";
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  margin: 0;
  margin-bottom: 24px;
}

.sponsors-screen__info a.primary-btn {
  width: 244px;
  font-family: "KasperskySansText-Regular";
  font-size: 18px;
  line-height: 26px;
}

.sponsors-screen__line {
  width: 0;
  height: 3px;
  margin-bottom: 40px;
  -webkit-transition: width 0.4s ease-in-out;
  transition: width 0.4s ease-in-out;
}

.sponsors-screen__line:nth-of-type(2) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.sponsors-screen__line:nth-of-type(4) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.sponsors-screen__line:nth-of-type(6) {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}

.sponsors-screen__line.show {
  width: 64px;
}

.festival-screen {
  background: #1f1f21;
  padding-top: 0;
  padding-bottom: 100px;
}

.festival-screen .festival-container {
  width: 950px;
  margin: 0 auto;
}

.festival-screen .festival-block {
  width: 100%;
  min-height: 270px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background: linear-gradient(0deg, #000000, #000000), linear-gradient(62.73deg, #cf540f 4.42%, #862a01 100.32%), #ffb800;
  padding-top: 38px;
  padding-bottom: 32px;
  border-radius: 9px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.festival-screen .festival-block__decor {
  position: absolute;
  top: 19px;
  z-index: 5;
}

.festival-screen .festival-block__decor span {
  display: block;
  width: 20px;
  height: 14px;
  background-color: #fff;
}

.festival-screen .festival-block__decor span:not(:last-of-type) {
  margin-bottom: 30px;
}

.festival-screen .festival-block__decor._left {
  left: 17px;
}

.festival-screen .festival-block__decor._right {
  right: 17px;
}

.festival-screen .festival-block__title {
  margin-bottom: 10px;
}

.festival-screen .festival-block__title p {
  font-family: "KasperskySansText-Medium";
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.22em;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.festival-screen .festival-block__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 22px;
}

.festival-screen .festival-block__img img {
  display: block;
}

.festival-screen .festival-block__img img:nth-of-type(1) {
  width: 202px;
  margin-bottom: 12px;
}

.festival-screen .festival-block__img img:nth-of-type(2) {
  width: 128px;
}

.festival-screen .festival-block__btn a.primary-btn:hover span {
  color: #272727;
}

.festival-screen .festival-block__btn a.primary-btn span {
  color: #272727;
}

.festival-screen .festival-block__btn a.primary-btn .btn-primary-arrow {
  fill: #272727;
}

.opportunities-screen {
  width: 100%;
  background: #050505;
  padding-top: 120px;
  padding-bottom: 120px;
}

.opportunities-screen .container {
  width: 1150px;
  margin: 0 auto;
}

.opportunities-screen__title {
  margin-bottom: 48px;
}

.opportunities-screen__title p,
.opportunities-screen__title h2 {
  color: transparent;
}

.opportunities-screen__title span {
  font-family: "KasperskySansText-Medium";
  font-size: 24px;
  line-height: 27px;
  color: #ffffff;
}

.opportunities-screen__package {
  width: 950px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 0 auto;
}

.opportunities-screen__package__item {
  width: 460px;
}

.opportunities-screen .package {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 32px 32px 40px 32px;
  background: #1f1f1f;
  border-radius: 9px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.opportunities-screen .package__title {
  width: 100%;
  margin-bottom: 24px;
}

.opportunities-screen .package__title h4 {
  font-family: "KasperskySansText-Bold";
  font-size: 36px;
  line-height: 40px;
  color: #fff;
  margin: 0;
}

.opportunities-screen .package__title h4.title-color {
  color: #3163eb;
}

.opportunities-screen .package__desc {
  width: 100%;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(116, 101, 95, 0.2);
}

.opportunities-screen .package__desc ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.opportunities-screen .package__desc ul li:not(:last-of-type) {
  margin-bottom: 24px;
}

.opportunities-screen .package__desc ul li img {
  width: 18px;
  margin-top: 4px;
  margin-right: 12px;
}

.opportunities-screen .package__desc ul li span {
  font-family: "KasperskySansText-Regular";
  color: #666666;
}

.opportunities-screen .package__desc ul li p {
  width: calc(100% - 32px);
  font-family: "KasperskySansText-Medium";
  font-size: 18px;
  line-height: 24px;
  color: #fff;
  margin: 0;
}

.opportunities-screen .package__desc ul li p > span {
  font-family: "KasperskySansText-Regular";
  padding-left: 6px;
  color: #999;
}

.opportunities-screen .package__desc ul li p.desc-color {
  color: #3163eb;
}

.opportunities-screen .package__desc ul li p.desc-color span {
  color: #3163eb;
}

.opportunities-screen .package__price-list {
  width: 100%;
  margin-bottom: 40px;
}

.opportunities-screen .package__price-list p {
  font-family: "KasperskySansText-Bold";
  font-size: 18px;
  line-height: 32px;
  color: #fff;
  margin: 0;
}

.opportunities-screen .package__price-list p:not(:last-of-type) {
  margin-bottom: 24px;
}

.opportunities-screen .package__price-list p span.cost {
  font-size: 28px;
}

.opportunities-screen .package__price-list p span.ends {
  font-family: "KasperskySansText-Regular";
}

.opportunities-screen .package__price-list p.price-color {
  color: #3163eb;
}

.opportunities-screen .package__btn {
  margin-top: auto;
}

.opportunities-screen .package__btn a {
  width: 100%;
}

.video-screen,
.picture,
.startup__placement {
  width: 100%;
  background: #1f1f21;
  padding-top: 120px;
  padding-bottom: 75px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.video-screen._new,
.picture._new,
.startup__placement._new {
  padding-top: 0;
  padding-bottom: 20px;
  background-color: transparent;
  -webkit-transform: translateY(-48px);
          transform: translateY(-48px);
  position: relative;
  z-index: 10;
}

.video-screen .container,
.picture .container,
.startup__placement .container {
  width: 1150px;
  margin: 0 auto;
}

.video-screen .about-screen__placement,
.picture .about-screen__placement,
.startup__placement .about-screen__placement {
  width: 100%;
  border-radius: 9px;
  padding-top: 100px;
  padding-bottom: 90px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}

.video-screen .about-screen__placement:after,
.picture .about-screen__placement:after,
.startup__placement .about-screen__placement:after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("/../images/index/dots.png");
  background-size: contain;
  background-position: center center;
  position: absolute;
  top: 25px;
  left: 25px;
  z-index: 10;
}

.video-screen .about-screen__placement__place,
.picture .about-screen__placement__place,
.startup__placement .about-screen__placement__place {
  width: 240px;
  position: relative;
  opacity: 0;
  -webkit-transition: opacity 0.5s 0.6s ease-in-out;
  transition: opacity 0.5s 0.6s ease-in-out;
}

.video-screen .about-screen__placement__place.show,
.picture .about-screen__placement__place.show,
.startup__placement .about-screen__placement__place.show {
  opacity: 1;
}

.video-screen .about-screen__placement__place:after,
.picture .about-screen__placement__place:after,
.startup__placement .about-screen__placement__place:after {
  content: "";
  width: 216px;
  height: 154px;
  background: rgba(255, 255, 255, 0.14);
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: -1;
}

.video-screen .about-screen__placement__place__line,
.picture .about-screen__placement__place__line,
.startup__placement .about-screen__placement__place__line {
  width: 64px;
  height: 3px;
  background: #fff;
  margin-bottom: 20px;
}

.video-screen .about-screen__placement__place p,
.picture .about-screen__placement__place p,
.startup__placement .about-screen__placement__place p {
  font-family: "KasperskySansText-Medium";
  font-size: 24px;
  line-height: 35px;
  color: #ffffff;
  margin-bottom: 20px;
}

.video-screen .about-screen__placement__place p.date,
.picture .about-screen__placement__place p.date,
.startup__placement .about-screen__placement__place p.date {
  font-family: "KasperskySansText-Regular";
  font-size: 18px;
}

.video-screen .about-screen__placement__place p.date span,
.picture .about-screen__placement__place p.date span,
.startup__placement .about-screen__placement__place p.date span {
  font-family: "KasperskySansText-Regular";
}

.video-screen .about-screen__placement__place span,
.picture .about-screen__placement__place span,
.startup__placement .about-screen__placement__place span {
  font-family: "KasperskySansText-Medium";
  color: #ffffff;
}

.video-screen .about-screen__placement__about,
.picture .about-screen__placement__about,
.startup__placement .about-screen__placement__about {
  width: 650px;
}

.video-screen .about-screen__placement__about__text,
.picture .about-screen__placement__about__text,
.startup__placement .about-screen__placement__about__text {
  margin-bottom: 40px;
  opacity: 0;
  -webkit-transition: opacity 0.5s 0.6s ease-in-out;
  transition: opacity 0.5s 0.6s ease-in-out;
}

.video-screen .about-screen__placement__about__text.show,
.picture .about-screen__placement__about__text.show,
.startup__placement .about-screen__placement__about__text.show {
  opacity: 1;
}

.video-screen .about-screen__placement__about__text p,
.picture .about-screen__placement__about__text p,
.startup__placement .about-screen__placement__about__text p {
  font-family: "KasperskySansText-Regular";
  font-size: 24px;
  line-height: 34px;
  color: #ffffff;
}

.video-screen .about-screen__placement__about__text strong,
.video-screen .about-screen__placement__about__text span,
.picture .about-screen__placement__about__text strong,
.picture .about-screen__placement__about__text span,
.startup__placement .about-screen__placement__about__text strong,
.startup__placement .about-screen__placement__about__text span {
  color: #aac4fd;
  font-weight: initial;
}

.video-screen .about-screen__placement__about__btn,
.picture .about-screen__placement__about__btn,
.startup__placement .about-screen__placement__about__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.video-screen .about-screen__placement__about__btn__item,
.picture .about-screen__placement__about__btn__item,
.startup__placement .about-screen__placement__about__btn__item {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.video-screen .about-screen__placement__about__btn__item:first-of-type,
.picture .about-screen__placement__about__btn__item:first-of-type,
.startup__placement .about-screen__placement__about__btn__item:first-of-type {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
  margin-right: 20px;
}

.video-screen .about-screen__placement__about__btn__item:last-of-type,
.picture .about-screen__placement__about__btn__item:last-of-type,
.startup__placement .about-screen__placement__about__btn__item:last-of-type {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.video-screen .about-screen__placement__about__btn__item.show,
.picture .about-screen__placement__about__btn__item.show,
.startup__placement .about-screen__placement__about__btn__item.show {
  opacity: 1;
}

.video-screen .about-screen__placement .container,
.picture .about-screen__placement .container,
.startup__placement .about-screen__placement .container {
  width: 950px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 20;
}

.video-screen__slider,
.picture__slider,
.startup__placement__slider {
  width: 950px;
  margin: 0 auto;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  -webkit-transition: -webkit-transform 0.35s ease-in-out;
  transition: -webkit-transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
}

.video-screen__slider__item,
.picture__slider__item,
.startup__placement__slider__item {
  width: 100%;
  height: 572px;
  position: relative;
}

.video-screen__slider__post,
.picture__slider__post,
.startup__placement__slider__post {
  width: 100%;
  height: 100%;
  background-image: url("../images/index/preview-video.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 5;
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.video-screen__slider__post.hide,
.picture__slider__post.hide,
.startup__placement__slider__post.hide {
  visibility: hidden;
  opacity: 0;
}

.video-screen__slider__post:after,
.picture__slider__post:after,
.startup__placement__slider__post:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.35)), to(rgba(0, 0, 0, 0.35)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35));
  z-index: 10;
}

.video-screen__slider__post h3,
.picture__slider__post h3,
.startup__placement__slider__post h3 {
  position: absolute;
  top: 30px;
  left: 30px;
  font-family: "KasperskySansText-Medium";
  font-size: 24px;
  line-height: 27px;
  color: #ffffff;
  margin: 0;
  margin-right: 30px;
  z-index: 20;
}

.video-screen__slider__post a,
.picture__slider__post a,
.startup__placement__slider__post a {
  width: 97px;
  height: 97px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: hidden;
  z-index: 20;
  outline: none;
}

.video-screen__slider__post a:after,
.picture__slider__post a:after,
.startup__placement__slider__post a:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 27px solid #171717;
  position: absolute;
  top: 50%;
  left: 54%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.video-screen__slider__video,
.picture__slider__video,
.startup__placement__slider__video {
  width: 100%;
  height: 572px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.video-screen__slider .slick-arrow,
.picture__slider .slick-arrow,
.startup__placement__slider .slick-arrow {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #3163eb;
  background: transparent;
  color: transparent;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  opacity: 0;
  -webkit-transition: opacity 0.6s 0.5s ease-in-out, background 0.3s ease-in-out, border 0.3s ease-in-out;
  transition: opacity 0.6s 0.5s ease-in-out, background 0.3s ease-in-out, border 0.3s ease-in-out;
}

.video-screen__slider .slick-arrow.show,
.picture__slider .slick-arrow.show,
.startup__placement__slider .slick-arrow.show {
  opacity: 1;
}

.video-screen__slider .slick-arrow:before, .video-screen__slider .slick-arrow:after,
.picture__slider .slick-arrow:before,
.picture__slider .slick-arrow:after,
.startup__placement__slider .slick-arrow:before,
.startup__placement__slider .slick-arrow:after {
  content: "";
  width: 21px;
  height: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-repeat: no-repeat;
}

.video-screen__slider .slick-arrow.slick-prev,
.picture__slider .slick-arrow.slick-prev,
.startup__placement__slider .slick-arrow.slick-prev {
  left: -122px;
}

.video-screen__slider .slick-arrow.slick-prev:before,
.picture__slider .slick-arrow.slick-prev:before,
.startup__placement__slider .slick-arrow.slick-prev:before {
  background-image: url("/../images/icons/arrow-left-blue.svg");
}

.video-screen__slider .slick-arrow.slick-prev:after,
.picture__slider .slick-arrow.slick-prev:after,
.startup__placement__slider .slick-arrow.slick-prev:after {
  background-image: url("/../images/icons/arrow-left.svg");
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.video-screen__slider .slick-arrow.slick-next,
.picture__slider .slick-arrow.slick-next,
.startup__placement__slider .slick-arrow.slick-next {
  right: -122px;
}

.video-screen__slider .slick-arrow.slick-next:before,
.picture__slider .slick-arrow.slick-next:before,
.startup__placement__slider .slick-arrow.slick-next:before {
  left: 54%;
  background-image: url("/../images/icons/arrow-right-blue.svg");
}

.video-screen__slider .slick-arrow.slick-next:after,
.picture__slider .slick-arrow.slick-next:after,
.startup__placement__slider .slick-arrow.slick-next:after {
  left: 54%;
  background-image: url("/../images/icons/arrow-right.svg");
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.video-screen__slider .slick-arrow:hover,
.picture__slider .slick-arrow:hover,
.startup__placement__slider .slick-arrow:hover {
  border: 2px solid #fff;
  background: #fff;
}

.video-screen__slider .slick-arrow:hover.slick-next:after, .video-screen__slider .slick-arrow:hover.slick-prev:after,
.picture__slider .slick-arrow:hover.slick-next:after,
.picture__slider .slick-arrow:hover.slick-prev:after,
.startup__placement__slider .slick-arrow:hover.slick-next:after,
.startup__placement__slider .slick-arrow:hover.slick-prev:after {
  opacity: 0;
}

.video-screen__slider ul.slick-dots,
.picture__slider ul.slick-dots,
.startup__placement__slider ul.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  left: 50%;
  bottom: -40px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.video-screen__slider ul.slick-dots li,
.picture__slider ul.slick-dots li,
.startup__placement__slider ul.slick-dots li {
  width: 8px;
  height: 8px;
  margin-right: 14px;
}

.video-screen__slider ul.slick-dots li:last-of-type,
.picture__slider ul.slick-dots li:last-of-type,
.startup__placement__slider ul.slick-dots li:last-of-type {
  margin-right: 0;
}

.video-screen__slider ul.slick-dots li.slick-active button:after,
.picture__slider ul.slick-dots li.slick-active button:after,
.startup__placement__slider ul.slick-dots li.slick-active button:after {
  background: #fff;
  opacity: 1;
}

.video-screen__slider ul.slick-dots li button,
.picture__slider ul.slick-dots li button,
.startup__placement__slider ul.slick-dots li button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  color: transparent;
  border: 0;
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.video-screen__slider ul.slick-dots li button:after,
.picture__slider ul.slick-dots li button:after,
.startup__placement__slider ul.slick-dots li button:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
  border: 1px solid #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.life-screen {
  width: 100%;
  background: #010101;
  padding-top: 110px;
  padding-bottom: 120px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.life-screen .container {
  width: 1150px;
  margin: 0 auto;
}

.life-screen__title {
  margin-bottom: 50px;
}

.life-screen__title p,
.life-screen__title h2 {
  color: transparent;
}

.life-screen__title span {
  font-family: "KasperskySansText-Medium";
  font-size: 24px;
  line-height: 27px;
  color: #ffffff;
}

.life-screen__title span.typed-cursor {
  color: #3163eb;
}

.life-screen__blocks {
  width: 100%;
  min-height: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
  position: relative;
}

.life-screen__blocks._hide-preloader:after, .life-screen__blocks._hide-preloader:before {
  opacity: 0;
  visibility: hidden;
}

.life-screen__blocks:before {
  content: "";
  width: 100%;
  height: 350px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.8);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.life-screen__blocks:after {
  content: "";
  width: 100px;
  height: 100px;
  background-image: url("../images/icons/loading.gif");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 30;
}

.life-screen__blocks__item {
  width: calc(25% - 15px);
  height: 350px;
  background: #1f1f1f;
  padding: 24px;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: 30px;
  margin-bottom: 30px;
  position: relative;
}

.life-screen__blocks__item .msg-item__image {
  display: none;
}

.life-screen__blocks__item .action-retweet {
  z-index: 30;
}

.life-screen__blocks__item .action-retweet span {
  position: absolute;
  top: -32px;
  right: 3px;
  background: #784bf8;
  font-family: "KasperskySansText-Medium";
  font-size: 14px;
  color: #fff;
  padding: 4px;
  border-radius: 5px;
  text-align: center;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.life-screen__blocks__item .action-retweet span:after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: -4px;
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-left-width: 10px;
  border-right-width: 1px;
  border-top: 6px solid #784bf8;
}

.life-screen__blocks__item .action-retweet:hover span {
  opacity: 1;
}

.life-screen__blocks__item .action-reply {
  z-index: 30;
}

.life-screen__blocks__item .action-reply span {
  position: absolute;
  top: -32px;
  right: 0px;
  background: #784bf8;
  font-family: "KasperskySansText-Medium";
  font-size: 14px;
  color: #fff;
  padding: 4px;
  border-radius: 5px;
  text-align: center;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.life-screen__blocks__item .action-reply span:after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: -4px;
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-left-width: 10px;
  border-right-width: 1px;
  border-top: 6px solid #784bf8;
}

.life-screen__blocks__item .action-reply:hover span {
  opacity: 1;
}

.life-screen__blocks__item:nth-of-type(6n + 1) {
  width: calc(50% - 30px);
}

.life-screen__blocks__item:nth-of-type(6n + 1) .msg-item__image {
  display: block;
}

.life-screen__blocks__item:nth-of-type(6n + 1) .msg-item__image img {
  display: block;
  width: 100%;
}

.life-screen__blocks__item:nth-of-type(6n + 2) {
  background: linear-gradient(207.66deg, #0044ff -1.53%, #784bf8 95.59%);
}

.life-screen__blocks__item:nth-of-type(6n + 2) .msg-item__text a,
.life-screen__blocks__item:nth-of-type(6n + 2) .msg-item__tag a {
  color: #aac4fd;
}

.life-screen__blocks__item:nth-of-type(6n + 3) {
  margin-right: 0;
}

.life-screen__blocks__item:nth-of-type(6n + 4) {
  height: 350px;
  background: linear-gradient(207.66deg, #0044ff -1.53%, #784bf8 95.59%);
}

.life-screen__blocks__item:nth-of-type(6n + 4) .msg-item__text a,
.life-screen__blocks__item:nth-of-type(6n + 4) .msg-item__tag a {
  color: #aac4fd;
}

.life-screen__blocks__item:nth-of-type(6n + 5) {
  height: 350px;
  width: calc(50% - 30px);
}

.life-screen__blocks__item:nth-of-type(6n + 6) {
  height: 350px;
  margin-right: 0;
}

.life-screen__blocks__item .msg-item {
  position: relative;
}

.life-screen__blocks__item .msg-item__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 20px;
}

.life-screen__blocks__item .msg-item__author__img {
  width: 32px;
  height: 32px;
  margin-right: 12px;
  border-radius: 50%;
  overflow: hidden;
}

.life-screen__blocks__item .msg-item__author__img img {
  width: 100%;
}

.life-screen__blocks__item .msg-item__author__name p {
  font-family: "KasperskySansText-Medium";
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
}

.life-screen__blocks__item .msg-item__text p {
  font-family: "KasperskySansText-Regular";
  font-size: 16px;
  line-height: 28px;
  color: #ffffff;
  margin: 0;
}

.life-screen__blocks__item .msg-item__text a {
  color: #3163eb;
}

.life-screen__blocks__item .msg-item__text a span {
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.life-screen__blocks__item .msg-item__tag {
  margin-bottom: 16px;
}

.life-screen__blocks__item .msg-item__tag a {
  font-family: "KasperskySansText-Regular";
  font-size: 16px;
  line-height: 28px;
  color: #3163eb;
}

.life-screen__blocks__item .msg-item__image {
  width: 100%;
}

.life-screen__blocks__item .msg-item__date-time {
  position: absolute;
  left: 24px;
  bottom: 24px;
}

.life-screen__blocks__item .msg-item__date-time span {
  font-family: "KasperskySansText-Regular";
  font-size: 13px;
  line-height: 16px;
  color: #ffffff;
  opacity: 0.7;
}

.life-screen__blocks__item .msg-item__msg {
  width: 16px;
  position: absolute;
  right: 56px;
  bottom: 24px;
}

.life-screen__blocks__item .msg-item__msg img {
  width: 100%;
}

.life-screen__blocks__item .msg-item__reply {
  width: 14px;
  position: absolute;
  right: 24px;
  bottom: 24px;
}

.life-screen__blocks__item .msg-item__reply img {
  width: 100%;
}

.life-screen__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-height: 700px) {
  .main-screen {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 110px;
  }
  .main-screen__down {
    bottom: 20px;
  }
}

@media (max-height: 680px) {
  .main-screen__down {
    display: none;
  }
}

.location-wrapper {
  width: 100%;
  background: #010101;
}

.location-wrapper .container {
  width: 1150px;
  margin: 0 auto;
}

.location-main {
  width: 100%;
  min-height: 554px;
  height: 100%;
  padding-top: 170px;
  padding-bottom: 80px;
  background-image: url("/images/location/location-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.location-main__title {
  margin-bottom: 16px;
}

.location-main__title h1 {
  color: transparent;
}

.location-main__title span {
  font-family: "KasperskySansText-Medium";
  line-height: 52px;
  font-size: 50px;
  color: #ffffff;
}

.location-main__title span.typed-cursor {
  color: #3163eb;
}

.location-main__text {
  width: 600px;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.location-main__text p {
  font-family: "KasperskySansText-Medium";
  font-size: 20px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.location-main__text a,
.location-main__text span,
.location-main__text strong {
  color: #aac4fd;
  font-weight: initial;
}

.location-hotel {
  width: 100%;
  background-color: #010101;
}

.location-hotel__placement {
  width: 100%;
  background: linear-gradient(69.3deg, #a347ff 4.42%, #0022ff 100.32%), #0044ff;
  border-radius: 9px;
  padding-top: 100px;
  padding-bottom: 90px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
}

.location-hotel__placement:after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("/../images/index/dots.png");
  background-size: contain;
  background-position: center center;
  position: absolute;
  top: 25px;
  left: 25px;
  z-index: 10;
}

.location-hotel__placement__place {
  width: 240px;
  position: relative;
  opacity: 0;
  -webkit-transition: opacity 0.5s 0.6s ease-in-out;
  transition: opacity 0.5s 0.6s ease-in-out;
}

.location-hotel__placement__place.show {
  opacity: 1;
}

.location-hotel__placement__place:after {
  content: "";
  width: 216px;
  height: 154px;
  background: rgba(255, 255, 255, 0.14);
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: -1;
}

.location-hotel__placement__place__line {
  width: 64px;
  height: 3px;
  background: #fff;
  margin-bottom: 20px;
}

.location-hotel__placement__place p {
  font-family: "KasperskySansText-Regular";
  font-size: 18px;
  line-height: 35px;
  color: #ffffff;
  margin-bottom: 20px;
}

.location-hotel__placement__place p:first-of-type {
  font-family: "KasperskySansText-Medium";
  font-size: 24px;
}

.location-hotel__placement__place span,
.location-hotel__placement__place strong {
  font-family: "KasperskySansText-Medium";
  color: #ffffff;
  font-weight: initial;
}

.location-hotel__placement__about {
  width: 650px;
}

.location-hotel__placement__about__text {
  margin-bottom: 40px;
  opacity: 0;
  -webkit-transition: opacity 0.5s 0.6s ease-in-out;
  transition: opacity 0.5s 0.6s ease-in-out;
}

.location-hotel__placement__about__text.show {
  opacity: 1;
}

.location-hotel__placement__about__text p {
  font-family: "KasperskySansText-Regular";
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
  margin-bottom: 10px;
}

.location-hotel__placement__about__text a {
  font-size: 18px;
  line-height: 28px;
  color: #aac4fd;
}

.location-hotel__placement__about__text span,
.location-hotel__placement__about__text strong {
  color: #aac4fd;
  font-weight: initial;
}

.location-hotel__placement__about__text__for-link p {
  font-size: 18px;
  line-height: 28px;
  margin: 0;
}

.location-hotel__placement .container {
  width: 950px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 20;
}

.location-hotel .picture__slider {
  -webkit-transform: translateY(-120px);
          transform: translateY(-120px);
}

.location-venue {
  width: 100%;
  background: #010101;
  padding-top: 100px;
}

.location-venue__title {
  margin-bottom: 15px;
}

.location-venue__title span {
  font-family: "KasperskySansText-Medium";
  font-size: 24px;
  line-height: 28px;
  color: #ffffff;
}

.location-venue__title span.typed-benefits {
  color: #3163eb;
}

.location-venue__about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.location-venue__about__icon {
  width: 12px;
  height: 16px;
  margin-right: 10px;
}

.location-venue__about__icon img {
  width: 100%;
  max-width: 100%;
}

.location-venue__about__text {
  width: 560px;
  margin-bottom: 35px;
}

.location-venue__about__text p {
  font-family: "KasperskySansText-Regular";
  font-size: 18px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 auto;
}

.location-venue__about__text a {
  color: #3163eb;
}

.location-venue__map {
  width: 100%;
  height: 454px;
}

.location-travel {
  width: 100%;
  background: #010101;
  padding-top: 110px;
  padding-bottom: 120px;
}

.location-travel__title {
  margin-bottom: 15px;
}

.location-travel__title span {
  font-family: "KasperskySansText-Medium";
  font-size: 24px;
  line-height: 28px;
  color: #ffffff;
}

.location-travel__title span.typed-cursor {
  color: #3163eb;
}

.location-travel__about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.location-travel__about__description {
  width: 362px;
  margin-right: 30px;
  padding-top: 30px;
}

.location-travel__about__description p {
  font-family: "KasperskySansText-Medium";
  line-height: 28px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  margin-bottom: 15px;
}

.location-travel__about__description p:last-of-type {
  margin-bottom: 0;
}

.location-travel__about__sales {
  width: 656px;
}

.sales-card__item {
  width: 100%;
  min-height: 220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background-color: #1f1f1f;
  padding: 40px 28px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 30px;
}

.sales-card__item:last-of-type {
  margin-bottom: 0;
}

.sales-card__logo {
  width: 130px;
  margin-right: 22px;
}

.sales-card__logo img {
  width: 100%;
  max-width: 130px;
  max-height: 90px;
  margin: 0 auto;
}

.sales-card__content {
  width: 446px;
}

.sales-card__title {
  margin-bottom: 20px;
}

.sales-card__title h4 {
  font-family: "KasperskySansText-Medium";
  font-size: 20px;
  line-height: 27px;
  color: #ffffff;
  margin: 0;
}

.sales-card p {
  font-family: "KasperskySansText-Regular";
  font-size: 18px;
  line-height: 32px;
  color: #d8d8d8;
  margin: 0;
  margin-bottom: 10px;
}

.sales-card p:last-of-type {
  margin-bottom: 0;
}

.sales-card a {
  font-family: "KasperskySansText-Regular";
  font-size: 18px;
  line-height: 32px;
  color: #3163eb;
}

.sales-card span,
.sales-card strong {
  font-family: "KasperskySansText-Medium";
  font-size: 18px;
  line-height: 32px;
  color: #fff;
  font-weight: initial;
}

.contacts-wrapper {
  width: 100%;
  background: #010101;
}

.contacts-wrapper .container {
  width: 1150px;
  margin: 0 auto;
}

.contacts-main {
  width: 100%;
  height: 600px;
  padding-top: 164px;
  background-image: url("/images/contacts/contacts-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.contacts-main__title {
  margin-bottom: 16px;
}

.contacts-main__title h1 {
  color: transparent;
}

.contacts-main__title span {
  font-family: 'KasperskySansText-Medium';
  line-height: 52px;
  font-size: 50px;
  color: #FFFFFF;
}

.contacts-main__title span.typed-cursor {
  color: #3163EB;
}

.contacts-main__text {
  width: 600px;
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
}

.contacts-main__text p {
  font-family: 'KasperskySansText-Regular';
  font-size: 18px;
  line-height: 29px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.contacts-main__text a, .contacts-main__text span, .contacts-main__text strong {
  color: #AAC4FD;
  font-weight: initial;
}

.contacts-info {
  width: 100%;
  -webkit-transform: translateY(-110px);
          transform: translateY(-110px);
}

.contacts-info .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.contacts-info__questions {
  width: 656px;
}

.contacts-info__form {
  width: 460px;
  background: linear-gradient(207.01deg, #0044FF -1.53%, #784BF8 95.59%);
  border-radius: 4px;
  padding: 42px 58px 68px 42px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  -webkit-transition-delay: .65s;
          transition-delay: .65s;
}

.contacts-info__form.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.contacts-info__form h3 {
  font-family: 'KasperskySansText-Medium';
  font-size: 20px;
  line-height: 27px;
  color: #FFFFFF;
  margin: 0;
  margin-bottom: 40px;
}

.contact-person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contact-person__item {
  width: 100%;
  background-color: #1F1F1F;
  padding: 40px 28px 30px 28px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 30px;
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.contact-person__item:first-of-type {
  -webkit-transition-delay: .65s;
          transition-delay: .65s;
}

.contact-person__item.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.contact-person__text {
  margin-top: 20px;
}

.contact-person__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.contact-person__contacts__item {
  width: 50%;
}

.contact-person__contacts__item img {
  margin-right: 13px;
}

.contact-person__contacts__item img.email {
  width: 16px;
  height: 11px;
}

.contact-person__contacts__item img.mobile {
  width: 10px;
  height: 16px;
}

.contact-person__contacts__item span {
  margin-left: 23px;
}

.contact-person h3 {
  font-family: 'KasperskySansText-Medium';
  font-size: 20px;
  line-height: 27px;
  color: #FFFFFF;
  margin: 0;
  margin-bottom: 10px;
}

.contact-person p {
  font-family: 'KasperskySansText-Regular';
  font-size: 18px;
  line-height: 29px;
  color: #D8D8D8;
  margin: 0;
  margin-bottom: 8px;
}

.contact-person p:last-of-type {
  margin-bottom: 0;
}

.contact-person a {
  font-family: 'KasperskySansText-Regular';
  font-size: 18px;
  line-height: 29px;
  color: #3163EB;
}

.contact-person span {
  display: block;
  font-family: 'KasperskySansText-Regular';
  font-size: 11px;
  line-height: 13px;
  color: #D8D8D8;
}

.program-wrapper {
  width: 100%;
  background: #010101;
}

.program-wrapper .container {
  width: 1150px;
  margin: 0 auto;
}

.program-main {
  width: 100%;
  min-height: 600px;
  padding-top: 170px;
  padding-bottom: 90px;
  background-image: url("/images/program/program-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.program-main__title {
  margin-bottom: 16px;
}

.program-main__title h1 {
  color: transparent;
}

.program-main__title span {
  font-family: "KasperskySansText-Medium";
  font-size: 46px;
  line-height: 52px;
  color: #ffffff;
}

.program-main__title span.typed-cursor {
  color: #3163eb;
}

.program-main__text {
  width: 600px;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.program-main__text p {
  font-family: "KasperskySansText-Medium";
  font-size: 20px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.program-main__text a,
.program-main__text span,
.program-main__text strong {
  color: #aac4fd;
  font-weight: initial;
}

.programs {
  padding-bottom: 120px;
  padding-top: 50px;
  background-color: #1f1f21;
}

.programs .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.programs__up-container {
  margin-top: 80px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.programs__up-container .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.programs .tooltip-btn {
  position: relative;
}

.programs__filter-tooltip {
  max-width: 282px;
  width: 100%;
  padding: 14px 20px;
  background: #ffffff;
  border-radius: 4px;
  font-family: "KasperskySansText-Medium";
  font-weight: 500;
  line-height: 20px;
  font-size: 15px;
  color: #3163eb;
  text-align: left;
  position: absolute;
  left: 50%;
  top: -104px;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 100;
}

.programs__filter-tooltip:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -15px;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-left-width: 15px;
  border-right-width: 15px;
  border-top: 15px solid #fff;
}

.programs__touch-btn {
  display: none;
  position: absolute;
  right: 0;
}

.programs__touch-btn__item {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  margin-right: 20px;
}

.programs__touch-btn__item.active-icon .program-filter-check {
  fill: #0044ff;
}

.programs__touch-btn__item.active-icon .program-check {
  stroke: #0044ff;
}

.programs__touch-btn__item.active-icon .program-check--color {
  fill: #0044ff;
}

.programs__touch-btn__item:last-of-type {
  margin-right: 0;
}

.programs__touch-btn__item .program-filter-check {
  fill: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.programs__touch-btn__item .program-check {
  stroke: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.programs__touch-btn__item .program-check--color {
  fill: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.programs__title {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.programs__title span {
  font-family: "KasperskySansText-Medium";
  font-size: 24px;
  line-height: 28px;
  color: #ffffff;
}

.programs__title span.typed-cursor {
  color: #3163eb;
}

.programs__filters {
  position: sticky;
  top: 100px;
  width: 264px;
  background: #1f1f21;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.programs__filter {
  width: 100%;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.programs__filter p {
  font-family: "KasperskySansText-Medium";
  font-size: 16px;
  line-height: 28px;
  color: #ffffff;
  margin: 0;
  margin-bottom: 10px;
}

.programs__filter__close {
  position: absolute;
  top: 30px;
  left: 4%;
  display: none;
}

.programs__filter__close img {
  width: 24px;
  height: 24px;
}

.programs__filter__panel ul {
  margin-bottom: 25px;
}

.programs__filter__panel ul li {
  margin-bottom: 15px;
}

.programs__filter__panel ul li:last-of-type {
  margin-bottom: 0;
}

.programs__filter__panel ul li a {
  font-family: "KasperskySansText-Medium";
  line-height: 28px;
  font-size: 16px;
  color: rgba(224, 224, 224, 0.6);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  padding-left: 24px;
  display: block;
}

.programs__filter__panel ul li a.active {
  color: #fff;
}

.programs__filter__panel ul li a.active:before {
  height: 12px;
}

.programs__filter__panel ul li a:before {
  content: "";
  width: 12px;
  height: 3px;
  background-color: #3163eb;
  position: absolute;
  top: 12px;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.programs__filter__panel ul li a:hover {
  color: #fff;
}

.programs__filter__panel ul li a:hover:before {
  height: 12px;
}

.programs__filter__panel .all-topics {
  display: table;
  font-family: "KasperskySansText-Medium";
  font-size: 15px;
  line-height: 18px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 40px;
}

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

.programs__filter__btn.hidden {
  display: none !important;
}

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

.programs__filter__btn__item {
  width: 100%;
  margin-bottom: 20px;
}

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

.programs__filter__btn__item a {
  width: 100%;
}

.programs__content {
  width: calc(100% - 314px);
}

.programs__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  -webkit-transition-delay: 0.55s;
          transition-delay: 0.55s;
}

.programs__search input {
  width: 656px;
  background: transparent;
  border: none;
  outline: 0;
  font-family: "KasperskySansText-Medium";
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding-left: 35px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.programs__search input::-webkit-input-placeholder {
  color: #fff;
}

.programs__search input::-moz-placeholder {
  color: #fff;
}

.programs__search input:-ms-input-placeholder {
  color: #fff;
}

.programs__search input:-moz-placeholder {
  color: #fff;
}

.programs__search svg {
  position: absolute;
  top: 8px;
  left: 0;
}

.programs__search .arrow-search {
  fill: #04f;
}

.programs__search__btn {
  display: none;
}

.program-events {
  padding-top: 110px;
  padding-bottom: 120px;
}

.program-events__title {
  margin-bottom: 10px;
}

.program-events__title span {
  font-family: "KasperskySansText-Medium";
  font-size: 24px;
  line-height: 28px;
  color: #ffffff;
}

.program-events__title span.typed-cursor {
  color: #3163eb;
}

.program-events__text {
  margin-bottom: 56px;
}

.program-events__text p {
  font-family: "KasperskySansText-Medium";
  line-height: 18px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.events-card {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.events-card h3 {
  font-family: "KasperskySansText-Medium";
  font-size: 20px;
  line-height: 23px;
  color: #ffffff;
  margin: 0;
}

.events-card p {
  font-family: "KasperskySansText-Medium";
  font-size: 18px;
  line-height: 26px;
  color: #d8d8d8;
  margin: 0;
  margin-bottom: 10px;
}

.events-card__item {
  width: calc(50% - 15px);
  min-height: 252px;
  background: #1f1f1f;
  border-radius: 4px;
  padding: 40px 28px 36px 28px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: 30px;
  margin-bottom: 30px;
}

.events-card__item:nth-of-type(2n) {
  margin-right: 0;
}

.events-card__item:nth-of-type(1) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.events-card__item:nth-of-type(2) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.events-card__item:nth-of-type(3) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.events-card__item:nth-of-type(4) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.events-card__item:nth-of-type(5) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.events-card__item:nth-of-type(6) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.events-card__item:nth-of-type(7) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.events-card__item:nth-of-type(8) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.events-card__item:nth-of-type(9) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.events-card__item:nth-of-type(10) {
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

.events-card__item:nth-of-type(11) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.events-card__title {
  margin-bottom: 20px;
}

.events-card__text {
  margin-bottom: 15px;
}

.events-card__info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.events-card__info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.events-card__info__item:nth-of-type(1) {
  width: 200px;
}

.events-card__info__item:nth-of-type(1) img {
  width: 14px;
  height: 14px;
}

.events-card__info__item:nth-of-type(2) {
  width: 260px;
}

.events-card__info__item:nth-of-type(2) img {
  width: 10px;
  height: 14px;
}

.events-card__info__item p {
  font-family: "KasperskySansText-Medium";
  font-size: 15px;
  line-height: 23px;
  color: #3163eb;
  margin: 0;
}

.events-card__info__item img {
  margin-right: 13px;
}

.events-card__info__item span {
  font-family: "KasperskySansText-Medium";
  font-size: 15px;
  line-height: 23px;
  color: #3163eb;
}

.events-card__info__item.ie-cross {
  display: block;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
}

.events-card__info__item.ie-cross:nth-of-type(1), .events-card__info__item.ie-cross:nth-of-type(2) {
  width: 100%;
}

.events-card__info__item.ie-cross:nth-of-type(1) {
  margin-bottom: 15px;
}

.events-card__info__item.ie-cross p {
  padding-left: 30px;
}

.events-card__info__item.ie-cross p br {
  display: none;
}

.events-card__info__item.ie-cross img {
  position: absolute;
  left: 0;
  top: 48%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}

.events-card__info.ie-cross {
  display: block;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.schedule {
  width: 100%;
}

.schedule__day {
  margin-bottom: 8px;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.schedule__day:nth-of-type(1) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.schedule__day:nth-of-type(2) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.schedule__day:nth-of-type(3) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.schedule__day:nth-of-type(4) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.schedule__day:nth-of-type(5) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.schedule__day:nth-of-type(6) {
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

.schedule__day.open .schedule__title:after {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}

.schedule__title {
  width: 100%;
  height: 100px;
  background: #0044ff;
  border-radius: 4px;
  cursor: pointer;
  padding: 26px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.schedule__title span {
  display: block;
  font-family: "KasperskySansText-Medium";
  font-size: 20px;
  line-height: 23px;
  color: #ffffff;
  margin: 0;
}

.schedule__title span.day {
  margin-bottom: 5px;
}

.schedule__title span.date {
  font-family: "KasperskySansText-Medium";
  font-size: 15px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.6);
}

.schedule__subtitle {
  width: 100%;
  min-height: 100px;
  background: linear-gradient(38.69deg, rgba(163, 71, 255, 0.7) 4.42%, rgba(0, 34, 255, 0.7) 100.32%), #0044ff;
  border-radius: 4px;
  padding: 26px 30px;
  margin-top: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.schedule__subtitle p {
  font-family: "KasperskySansText-Medium";
  font-size: 20px;
  line-height: 23px;
  color: #fff;
  margin: 0;
  margin-bottom: 5px;
}

.schedule__subtitle span {
  color: #aac4fd;
}

.schedule__subtitle span.name {
  font-family: "KasperskySansText-Medium";
  font-size: 15px;
  line-height: 28px;
  color: #fff;
}

.schedule__subtitle strong {
  font-weight: initial;
  color: #f44336;
}

.schedule__item {
  width: 100%;
  padding: 20px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid rgba(178, 198, 255, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.schedule__item.hide {
  display: none;
}

.schedule__item.select .schedule__item__check {
  background: #0044ff;
  border-color: #0044ff;
}

.schedule__item.select .schedule__item__check:after {
  opacity: 1;
}

.schedule__item__time {
  width: 110px;
  margin-right: 46px;
}

.schedule__item__time span {
  font-family: "KasperskySansText-Medium";
  font-size: 16px;
  line-height: 28px;
  color: #aac4fd;
}

.schedule__item__title {
  width: 568px;
  margin-right: 50px;
}

.schedule__item__title p {
  font-family: "KasperskySansText-Medium";
  font-size: 16px;
  line-height: 28px;
  color: #fff;
  margin: 0;
}

.schedule__item__title span {
  font-family: "KasperskySansText-Regular";
  font-size: 15px;
  line-height: 28px;
  color: #ffffff;
}

.schedule__item__title strong {
  font-weight: initial;
  color: #0044ff;
}

.schedule__item__check {
  width: 16px;
  height: 16px;
  border: 1px solid #aac4fd;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.schedule__item__check:after {
  content: "";
  display: block;
  width: 3px;
  height: 7px;
  border: 0 solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotateZ(45deg);
  margin: 0 4px;
  position: absolute;
  top: 1px;
  left: 1px;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.schedule__content {
  display: none;
}

.schedule__subcontent .schedule__item:last-of-type {
  border-bottom: none;
}

@media print and (min-width: 320px) {
  * {
    margin: 0;
    padding: 0;
  }
  .header {
    display: none;
  }
  .footer {
    display: none;
  }
  body {
    font-family: Verdana;
    font-size: 18px;
    line-height: 22px;
    margin: 1cm;
    color: #000;
  }
  p {
    margin: 0;
  }
  .program-wrapper {
    width: 100%;
    background: #fff;
  }
  .program-wrapper .container {
    width: 90vw;
    margin: 0 auto;
  }
  .program-main {
    display: none;
  }
  .programs {
    width: 100%;
    background-color: #fff;
  }
  .programs__up-container {
    display: none;
  }
  .programs__touch-btn {
    display: none;
  }
  .programs__touch-btn__item {
    display: none !important;
  }
  .programs__title {
    display: none;
  }
  .programs__filters {
    display: none;
  }
  .programs__filter {
    display: none;
  }
  .programs__content {
    width: 100%;
  }
  .programs__search {
    display: none;
  }
  .program-events {
    display: none;
  }
  .schedule {
    width: 100%;
  }
  .schedule__day {
    display: none;
  }
  .schedule__day.selected-day {
    display: block;
    padding: 10px;
    margin-bottom: 8px;
    page-break-before: always;
  }
  .schedule__title {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 0;
    cursor: default;
    padding: 10px;
    border: 1px solid #000;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .schedule__title:after {
    display: none;
  }
  .schedule__title span {
    display: block;
    font-family: Verdana;
    font-size: 18px;
    line-height: 20px;
    color: #000;
    margin: 0;
  }
  .schedule__title span.day {
    margin-bottom: 5px;
  }
  .schedule__title span.date {
    font-family: Verdana;
    font-size: 15px;
    line-height: 17px;
    color: #000;
  }
  .schedule__subtitle {
    display: none;
  }
  .schedule__subtitle.selected-session {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    background: #fff;
    border-radius: 0;
    padding: 10px;
    margin-top: 2px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: 1px solid #000;
  }
  .schedule__subtitle.selected-session p {
    font-family: Verdana;
    font-size: 17px;
    line-height: 19px;
    color: #000;
    margin: 0;
    margin-bottom: 5px;
  }
  .schedule__subtitle.selected-session span {
    display: initial !important;
    font-family: Verdana;
    font-size: 17px;
    line-height: 19px;
    color: #000;
  }
  .schedule__subtitle.selected-session span.name {
    font-family: Verdana;
    font-size: 15px;
    line-height: 17px;
    color: #000;
  }
  .schedule__subtitle.selected-session strong {
    font-family: Verdana;
    font-size: 15px;
    line-height: 17px;
    font-weight: initial;
    color: #000;
  }
  .schedule__item {
    display: none;
  }
  .schedule__item.select {
    padding: 10px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    border-bottom: 1px solid #000;
  }
  .schedule__item.select:last-of-type {
    border-bottom: none;
  }
  .schedule__item.select .schedule__item__check {
    display: none;
  }
  .schedule__item__time {
    width: 120px !important;
    margin-right: 10px !important;
  }
  .schedule__item__time span {
    display: initial !important;
    font-family: Verdana;
    font-size: 14px;
    line-height: 16px;
    color: #000;
  }
  .schedule__item__title {
    width: 75% !important;
  }
  .schedule__item__title p {
    font-family: Verdana;
    font-size: 14px;
    line-height: 16px;
    color: #000;
    margin: 0;
  }
  .schedule__item__title span {
    display: block;
    font-family: Verdana;
    font-size: 14px;
    line-height: 16px;
    color: #000;
  }
  .schedule__item__title strong {
    font-weight: initial;
    font-family: Verdana;
    font-size: 14px;
    line-height: 16px;
    color: #000;
  }
  .schedule__item__check {
    display: none;
  }
  .schedule__content {
    display: none;
  }
  .panel-accept {
    display: none;
  }
  .unplugged-main {
    display: none;
  }
  .unplugged-about {
    display: none;
  }
  .workshop-block {
    display: none;
  }
}

.about-wrapper {
  width: 100%;
  background: #010101;
}

.about-wrapper .container {
  width: 1150px;
  margin: 0 auto;
}

.about-main {
  width: 100%;
  padding-top: 170px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.about-main__bg {
  width: 100%;
  height: 654px;
  background: -webkit-gradient(linear, left bottom, left top, from(#000000), color-stop(5.35%, rgba(9, 13, 23, 0))), url("/images/about/about-bg.jpg");
  background: linear-gradient(0deg, #000000 0%, rgba(9, 13, 23, 0) 5.35%), url("/images/about/about-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 0;
}

.about-main__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 113px;
}

.about-main__title {
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.about-main__title h1 {
  color: transparent;
}

.about-main__title span {
  font-family: 'KasperskySansText-Medium';
  line-height: 52px;
  font-size: 50px;
  color: #FFFFFF;
}

.about-main__title span.typed-cursor {
  color: #3163EB;
}

.about-main__text {
  width: calc(100% - 489px);
  margin-right: 31px;
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
}

.about-main__text p {
  font-family: 'KasperskySansText-Regular';
  font-size: 18px;
  line-height: 29px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0px 0px 32px;
}

.about-main__text strong {
  color: #AAC4FD;
  font-weight: initial;
}

.about-main__themes {
  width: 458px;
  background: #1F1F1F;
  border-radius: 4px;
  padding: 40px 29px 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: -36px;
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
}

.about-main__themes li {
  display: block;
  margin-bottom: 25px;
  font-family: 'KasperskySansText-Medium';
  line-height: 23px;
  font-size: 20px;
  color: #FFFFFF;
  text-decoration: none;
}

.about-main__themes li p,
.about-main__themes li h2,
.about-main__themes li h3,
.about-main__themes li h4,
.about-main__themes li h5,
.about-main__themes li h6,
.about-main__themes li span,
.about-main__themes li a {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.about-main__themes li:last-child {
  margin-bottom: 0px;
}

.about-main__themes p {
  font-family: 'KasperskySansText-Regular';
  line-height: 26px;
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.about-main__themes p:last-child {
  margin-bottom: 0px;
}

.search-wrapper {
  width: 100%;
  background: #010101;
}

.search-wrapper .container {
  width: 1150px;
  margin: 0px auto;
}

.search-main {
  width: 100%;
  height: 340px;
  background: #1f1f21;
  padding-top: 170px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.search-main__title {
  margin-bottom: 16px;
}

.search-main__title h1 {
  color: transparent;
}

.search-main__title h1 span {
  color: transparent;
}

.search-main__title span {
  font-family: 'KasperskySansText-Medium';
  line-height: 52px;
  font-size: 50px;
  color: #FFFFFF;
}

.search-main__title span span {
  color: #C4C4C4;
  margin-right: 15px;
}

.search-main__title span.typed-cursor {
  color: #3163EB;
}

.search-results {
  padding-top: 50px;
  padding-bottom: 120px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.search-results__massage {
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
}

.search-results__massage p {
  font-family: 'KasperskySansText-Medium';
  font-size: 16px;
  line-height: 28px;
  color: rgba(244, 244, 244, 0.7);
}

.search-results__no-matches {
  margin-bottom: 140px;
}

.search-results__list {
  width: 768px;
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
  margin-top: 33px;
}

.search-results__list .post-preview {
  width: 100%;
  border-bottom: 1px solid #3C3C3C;
  margin-bottom: 28px;
}

.search-results__list .post-preview a {
  text-decoration: none;
}

.search-results__list .post-preview__content {
  padding-bottom: 19px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.search-results__list .post-preview__content h2 {
  font-family: 'KasperskySansText-Medium';
  font-size: 20px;
  line-height: 28px;
  color: #3163EB;
  margin-bottom: 10px;
  position: relative;
}

.search-results__list .post-preview__content p {
  font-family: 'KasperskySansText-Medium';
  font-size: 16px;
  line-height: 28px;
  color: #DADADA;
}

.search-results__list .post-preview__breadcrumbs {
  margin-bottom: 30px;
}

.search-results__list .post-preview__breadcrumbs li {
  font-family: 'KasperskySansText-Medium';
  font-size: 15px;
  color: #FFFFFF;
  display: inline-block;
}

.search-results__list .post-preview__breadcrumbs a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.search-results__list .post-preview__breadcrumbs a:hover {
  color: #3163EB;
}

.search-results__list .post-preview__breadcrumbs span {
  color: inherit;
}

.search-results__list .post-preview:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}

.search-results .pagination__block {
  max-width: 305px;
  width: 100%;
  margin: 57px auto 0px;
}

.search-results .pagination__block--previous {
  margin-right: 8px;
}

.search-results .pagination__block--next {
  margin-left: 8px;
}

.search-results .pagination__block--previous, .search-results .pagination__block--next {
  border: none;
  color: #3163EB;
  position: relative;
}

.search-results .pagination__block--previous:before, .search-results .pagination__block--next:before {
  content: '';
  display: block;
  position: absolute;
  left: 0px;
  bottom: -1px;
  width: 0px;
  height: 2px;
  background-color: #3163EB;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}

.search-results .pagination__block--previous:hover, .search-results .pagination__block--next:hover {
  border: none;
  color: #3163EB;
  background: transparent;
}

.search-results .pagination__block--previous:hover::before, .search-results .pagination__block--next:hover::before {
  width: 100%;
}

.search-results .pagination__block li {
  display: inline-block;
  margin-right: 8px;
  width: 33px;
  height: 33px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.search-results .pagination__block li a {
  display: block;
  width: 100%;
  height: 100%;
  font-family: 'KasperskySansText-Medium';
  font-size: 16px;
  line-height: 33px;
  color: #FFFFFF;
  text-align: center;
  text-decoration: none;
  border: 1px solid rgba(170, 196, 253, 0.3);
  background: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.search-results .pagination__block li a:hover {
  background: #3163EB;
  border-color: #3163EB;
}

.search-results .pagination__block li span {
  display: block;
  width: 100%;
  height: 100%;
  font-family: 'KasperskySansText-Medium';
  font-size: 16px;
  line-height: 33px;
  color: rgba(170, 196, 253, 0.7);
  background: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}

.search-results .pagination__block li.pagination-dots {
  width: 15px;
}

.search-results .pagination__block li:last-of-type {
  margin-right: 0px;
}

.search-results .pagination__block li.is-active-page a {
  background: #3163EB;
  border-color: #3163EB;
}

.participants-wrapper {
  width: 100%;
  background: #010101;
}

.participants-wrapper .container {
  width: 1150px;
  margin: 0 auto;
}

.participants-main {
  width: 100%;
  padding-top: 170px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.participants-main__bg {
  width: 100%;
  height: 654px;
  background: -webkit-gradient(linear, left bottom, left top, from(#000000), color-stop(5.35%, rgba(9, 13, 23, 0))), url("/images/participants/participants-bg.jpg");
  background: linear-gradient(0deg, #000000 0%, rgba(9, 13, 23, 0) 5.35%), url("/images/participants/participants-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 0;
}

.participants-main__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 113px;
}

.participants-main__inner--subtitle {
  margin-bottom: 25px;
  height: 30px;
}

.participants-main__inner--subtitle h3 {
  color: transparent;
}

.participants-main__inner--subtitle span {
  font-family: 'KasperskySansText-Medium';
  line-height: 30px;
  font-size: 24px;
  color: #FFFFFF;
}

.participants-main__inner--subtitle span.typed-cursor {
  color: #3163EB;
}

.participants-main__title {
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.participants-main__title h1 {
  color: transparent;
}

.participants-main__title h1 span {
  color: transparent;
}

.participants-main__title span {
  font-family: 'KasperskySansText-Medium';
  line-height: 52px;
  font-size: 50px;
  color: #FFFFFF;
}

.participants-main__title span.typed-cursor {
  color: #3163EB;
}

.participants-main__text {
  width: calc(100% - 490px);
  margin-right: 30px;
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
}

.participants-main__text p {
  font-family: 'KasperskySansText-Regular';
  font-size: 18px;
  line-height: 29px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0px 0px 32px;
}

.participants-main__form {
  width: 460px;
  background: linear-gradient(204.76deg, #0044FF -0.65%, #784BF8 95.62%);
  border-radius: 4px;
  padding: 25px 26px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: -25px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  -webkit-transition-delay: .65s;
          transition-delay: .65s;
}

.participants-main__form h3 {
  font-family: 'KasperskySansText-Medium';
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 25px;
  color: #FFFFFF;
}

.participants-main__form .form-fields__item p.field-explanation {
  font-family: 'KasperskySansText-Medium';
  font-size: 11px;
  line-height: 14px;
  color: #FFFFFF;
  margin-top: 4px;
}

.speakers-wrapper {
  width: 100%;
  background: #010101;
}

.speakers-wrapper .container {
  width: 1150px;
  margin: 0 auto;
}

.speakers-main {
  width: 100%;
  padding-top: 200px;
  padding-bottom: 140px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.speakers-main__bg {
  width: 100%;
  height: 654px;
  background: url("/images/speakers/speakers-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 0;
}

.speakers-main__title {
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.speakers-main__title h1 {
  color: transparent;
}

.speakers-main__title span {
  font-family: "KasperskySansText-Medium";
  line-height: 52px;
  font-size: 50px;
  color: #ffffff;
}

.speakers-main__title span.typed-cursor {
  color: #3163eb;
}

.speakers-main__text {
  width: 600px;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.speakers-main__text p {
  font-family: "KasperskySansText-Medium";
  font-size: 20px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  position: relative;
  z-index: 1;
}

.speakers-main__text ul {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
  margin-bottom: 32px;
}

.speakers-main__text ul li {
  font-family: "KasperskySansText-Regular";
  color: #ffffff;
  padding-left: 15px;
  position: relative;
  margin-bottom: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 20px;
  line-height: 32px;
}

.speakers-main__text ul li p {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.speakers-main__text ul li:before {
  content: "";
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #3163eb;
  left: 0px;
  top: 11px;
}

.speakers-main__text ul li ul {
  padding: 0;
  margin: 0;
  padding-left: 15px;
  list-style-type: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.speakers-main__text ul li ul li {
  padding-left: 15px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.speakers-main__text ul li ul li:before {
  content: "";
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #3163eb;
  left: 0px;
  top: 10px;
}

.speakers-main__text ul li ul li:last-child {
  margin-bottom: 0px;
}

.speakers-main__text--btn {
  margin-top: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.speakers-main__text a.primary-btn {
  width: 246px;
}

.speakers-main__text .btn-primary-arrow {
  fill: #0012ff;
}

.speakers-list {
  position: relative;
  z-index: 2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.speakers-list__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.speakers-list__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: calc(100% / 4 - 25px);
  margin-right: 30px;
  margin-bottom: 30px;
  border-radius: 4px;
  overflow: hidden;
}

.speakers-list__card--avatar {
  width: 100%;
  height: 169px;
  aspect-ratio: 1 / 1;
  height: auto !important;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.speakers-list__card:nth-child(4n) {
  margin-right: 0px;
}

.speakers-list__inner {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  padding: 20px 30px 34px;
  background-color: #1f1f1f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.speakers-list__inner--name {
  margin-bottom: 5px;
}

.speakers-list__inner--name p {
  font-family: "KasperskySansText-Medium";
  font-size: 20px;
  line-height: 22px;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.speakers-list__inner--company {
  margin-bottom: 15px;
}

.speakers-list__inner--company p {
  font-family: "KasperskySansText-Regular";
  font-size: 15px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.speakers-list__inner--tlink {
  margin-bottom: 32px;
}

.speakers-list__inner--tlink a {
  color: #3163eb;
  text-decoration: none;
}

.speakers-list__inner--tlink p {
  position: relative;
  font-size: 15px;
  line-height: 20px;
  color: #ffffff;
  padding-left: 23px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.speakers-list__inner--tlink p:before {
  content: "";
  display: block;
  width: 15px;
  height: 12px;
  position: absolute;
  left: 0px;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  background: url("/../images/icons/social/tw-icon.svg");
  background-size: cover;
}

.speakers-list__inner--description {
  max-height: 170px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

.speakers-list__inner--description p {
  font-size: 14px;
  line-height: 21px;
  font-family: "KasperskySansText-Regular";
  color: #ffffff;
}

.speakers-list__inner--description-full {
  display: none;
}

.speakers-list__inner--btn {
  margin-top: auto;
}

.speakers-list__inner--btn button {
  font-family: "KasperskySansText-Medium";
  font-size: 15px;
  height: 28px;
  color: #ffffff;
  background: transparent;
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
}

.speakers-list__inner--btn button:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 4px;
  left: 0px;
  width: 0px;
  height: 2px;
  background-color: #ffffff;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}

.speakers-list__inner--btn button:hover::before {
  width: 100%;
}

.speakers-guide {
  padding-top: 0;
  padding-bottom: 120px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.speakers-guide__title h2 {
  font-family: "KasperskySansText-Medium";
  font-size: 50px;
  line-height: 52px;
  color: #ffffff;
  margin-bottom: 28px;
}

.speakers-guide__title p {
  font-family: "KasperskySansText-Medium";
  font-size: 20px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

@media (max-width: 1160px) {
  .speakers-guide__title br {
    display: none;
  }
}

.speakers-guide__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.speakers-guide__inner--subheding p {
  font-family: "KasperskySansText-Medium";
  font-size: 20px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.speakers-guide__inner--text {
  width: calc(100% - 550px);
  margin-right: 90px;
}

.speakers-guide__inner--text h3 {
  font-family: "KasperskySansText-Medium";
  font-size: 24px;
  line-height: 28px;
  color: #ffffff;
  margin-bottom: 15px;
}

.speakers-guide__inner ul {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
  margin-bottom: 32px;
}

.speakers-guide__inner ul li {
  font-family: "KasperskySansText-Regular";
  color: #ffffff;
  padding-left: 15px;
  position: relative;
  margin-bottom: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  line-height: 28px;
}

.speakers-guide__inner ul li p {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.speakers-guide__inner ul li:before {
  content: "";
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #3163eb;
  left: 0px;
  top: 11px;
}

.speakers-guide__inner ul li ul {
  padding: 0;
  margin: 0;
  padding-left: 15px;
  list-style-type: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.speakers-guide__inner ul li ul li {
  padding-left: 15px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.speakers-guide__inner ul li ul li:before {
  content: "";
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #3163eb;
  left: 0px;
  top: 10px;
}

.speakers-guide__inner ul li ul li:last-child {
  margin-bottom: 0px;
}

.speakers-guide__inner--instructions {
  width: 510px;
}

.speakers-guide__inner--instructions p {
  font-family: "KasperskySansText-Medium";
  font-size: 16px;
  line-height: 28px;
  color: #ffffff;
  margin-bottom: 30px;
}

.speakers-guide__inner--instructions p a {
  text-decoration: none;
  position: relative;
  color: #3163eb;
}

.speakers-guide__inner--instructions p a:before {
  content: "";
  display: inline;
  position: absolute;
  left: 0px;
  bottom: -2px;
  height: 2px;
  width: 0px;
  background-color: #3163eb;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}

.speakers-guide__inner--instructions p a:hover::before {
  width: 100%;
}

.speakers-guide__inner--instructions p span {
  color: #aac4fd;
}

.speakers-guide__inner--instructions p:last-child {
  margin-bottom: 0px;
}

.speakers-guide__inner--form {
  width: 460px;
  background: linear-gradient(207.65deg, #0044ff -0.65%, #784bf8 95.62%);
  border-radius: 4px;
  padding: 27px 26px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.65s;
          transition-delay: 0.65s;
  overflow: hidden;
}

.speakers-guide__inner--form .save-btn {
  display: block;
  width: 100%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 100px;
  outline: none;
  font-family: "KasperskySansText-Medium";
  font-size: 15px;
  color: #ffffff;
  background: transparent;
  height: 40px;
  line-height: 36px;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
}

.speakers-guide__inner--form .save-btn:hover {
  border-color: white;
  background: white;
  color: #3163eb;
}

.speakers-guide__inner--form .form-fields__item--before-title {
  padding-bottom: 32px;
}

.speakers-guide__inner--form .form-fields__item--before-title label.error {
  bottom: 14px;
}

.speakers-guide__inner--form .form-fields__item--before-title:after {
  content: "";
  display: block;
  position: absolute;
  left: -25px;
  width: 130%;
  height: 2px;
  bottom: 0px;
  background-color: rgba(255, 255, 255, 0.2);
}

.speakers-guide__inner--form .form-fields__item--upload {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.speakers-guide__inner--form .form-fields__item--upload input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.speakers-guide__inner--form .form-fields__item--upload .upload-file {
  position: relative;
  width: auto;
  height: 40px;
  display: inline-block;
  margin-right: 30px;
  vertical-align: top;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.speakers-guide__inner--form .form-fields__item--upload .upload-file span {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  height: 40px;
  overflow: hidden;
  position: relative;
  border-radius: 100px;
  background-color: #ffffff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  cursor: pointer;
  z-index: 10;
  font-family: "KasperskySansText-Bold";
  color: #3163eb;
  font-size: 15px;
  line-height: 40px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.speakers-guide__inner--form .form-fields__item--upload p.file-info {
  font-family: "KasperskySansText-Medium";
  font-size: 15px;
  line-height: 21px;
  color: #ffffff;
}

.training-wrapper {
  width: 100%;
  background: #010101;
  padding-bottom: 1px;
}

.training-wrapper .container {
  width: 1150px;
  margin: 0 auto;
}

.training-main {
  width: 100%;
  height: auto;
  padding-top: 170px;
  padding-bottom: 120px;
  background-image: url("/images/training/training-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.training-main__title {
  margin-bottom: 16px;
}

.training-main__title h1 {
  color: transparent;
}

.training-main__title span {
  font-family: "KasperskySansText-Medium";
  line-height: 52px;
  font-size: 50px;
  color: #ffffff;
}

.training-main__title span.typed-cursor {
  color: #3163eb;
}

.training-main__text {
  width: 570px;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.training-main__text p {
  font-family: "KasperskySansText-Regular";
  font-size: 18px;
  line-height: 29px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.training-main__text a,
.training-main__text span,
.training-main__text strong {
  color: #3163eb;
  font-weight: initial;
}

.training-list {
  background: #1f1f21;
  padding-bottom: 125px;
  padding-top: 65px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.training-list__title {
  margin-bottom: 53px;
}

.training-list__title h2 {
  color: transparent;
}

.training-list__title span {
  font-family: "KasperskySansText-Medium";
  line-height: 30px;
  font-size: 24px;
  color: #ffffff;
}

.training-list__title span.typed-cursor {
  color: #3163eb;
}

.training-list__block--inner {
  margin-bottom: 8px;
}

.training-list__block--inner:last-child {
  margin-bottom: 0px;
}

.training-list__block--inner:last-child .training-list__block--content {
  padding: 30px 0 0 5px;
}

.training-list__block--title {
  background: #0044ff;
  border-radius: 9px;
  padding: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
}

.training-list__block--title:after {
  content: "";
  width: 20px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 24px;
  background-image: url(../images/icons/schedule-arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.training-list__block--title.opened:after {
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
}

.training-list__block--headline {
  width: calc(100% - 245px);
}

.training-list__block--headline p {
  font-size: 20px;
  font-weight: 600;
  font-family: "KasperskySansText-Medium";
  color: #ffffff;
  line-height: 24px;
}

.training-list__block--headline span {
  font-size: 16px;
  font-weight: 400;
  font-family: "KasperskySansText-Regular";
  color: #adf083;
  line-height: 24px;
}

.training-list__block--btn {
  padding-right: 45px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.training-list__block--btn a {
  display: block;
  width: 166px;
  height: 40px;
  border-radius: 100px;
  background: #ffffff;
  outline: none;
  border: none;
  cursor: pointer;
  font-family: "KasperskySansText-Bold";
  font-size: 15px;
  color: #3163eb;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  -webkit-animation: sheen-back 1.5s forwards;
          animation: sheen-back 1.5s forwards;
}

.training-list__block--btn a span {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.training-list__block--btn a span:before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(229, 172, 142, 0)), color-stop(50%, rgba(255, 255, 255, 0.5)), to(rgba(229, 172, 142, 0)));
  background: linear-gradient(to bottom, rgba(229, 172, 142, 0), rgba(255, 255, 255, 0.5) 50%, rgba(229, 172, 142, 0));
  -webkit-transform: rotateZ(60deg) translate(-5em, 7.5em);
          transform: rotateZ(60deg) translate(-5em, 7.5em);
}

.training-list__block--btn a svg {
  width: 15px;
  height: 16px;
  margin-left: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s 0.25s ease-in-out;
  transition: all 0.3s 0.25s ease-in-out;
}

.training-list__block--btn a .btn-primary-arrow {
  fill: #0012ff;
}

.training-list__block--btn a:hover span {
  color: #0044ff;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.training-list__block--btn a:hover span:before {
  -webkit-animation: sheen 1.2s forwards;
          animation: sheen 1.2s forwards;
}

.training-list__block--btn a:hover svg {
  opacity: 1;
  visibility: visible;
  -webkit-animation: show-hide 0.4s 0.15s linear infinite alternate;
          animation: show-hide 0.4s 0.15s linear infinite alternate;
}

.training-list__block--content {
  padding: 30px 0 50px 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.training-list__block--info {
  width: 235px;
  margin-right: 15px;
}

.training-list__block--trainers {
  margin-bottom: 17px;
}

.training-list__block--trainers h3 {
  margin-bottom: 25px;
  font-family: "KasperskySansText-Medium";
  color: #f8f8f8 !important;
  font-weight: 300;
  font-size: 15px;
  line-height: 28px;
}

.training-list__block--trainers-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.training-list__block--trainers-item:not(:last-child) {
  margin-bottom: 20px;
}

.training-list__block--trainers-item h4 {
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: #10c36d;
  margin-bottom: 6px;
}

.training-list__block--trainers-item p {
  font-weight: 300;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.6);
}

.training-list__block--trainers-item span {
  font-weight: 500;
  font-size: 12px;
  line-height: 28px;
  color: #ffffff;
}

.training-list__block--trainers-avatar {
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #51e282;
  margin-right: 12px;
  width: 48px;
  height: 48px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48px;
          flex: 0 0 48px;
  background-image: url("../images/logo.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.training-list__block--trainers-avatar img {
  overflow: hidden;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.training-list__block--price {
  margin-bottom: 17px;
}

.training-list__block--price h3 {
  font-size: 15px;
  line-height: 18px;
  margin-bottom: 10px;
  font-family: "KasperskySansText-Medium";
  color: #aac4fd;
}

.training-list__block--price p {
  font-family: "KasperskySansText-Medium";
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
}

.training-list__block--list {
  margin-top: 28px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  display: grid;
  grid-row-gap: 10px;
  grid-column-gap: 48px;
  grid-auto-flow: row;
  grid-template-columns: repeat(4, auto);
}

@media (max-width: 1160px) {
  .training-list__block--list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.training-list__block--list p {
  font-weight: 300;
}

.training-list__block--list h2 {
  color: #10c36d;
  font-style: normal;
  font-weight: 600;
  font-size: 21px;
  line-height: 22px;
}

@media (max-width: 739px) {
  .training-list__block--list h2 {
    font-size: 18px;
  }
}

.training-list__block--topics {
  width: calc(100% - 290px);
  color: #ffffff;
}

.training-list__block--topics p,
.training-list__block--topics h4,
.training-list__block--topics h5,
.training-list__block--topics h6 {
  margin-bottom: 8px;
  position: relative;
  font-family: "KasperskySansText-Light";
  font-size: 16px;
  line-height: 20px;
}

.training-list__block--topics h3 {
  font-family: "KasperskySansText-Regular";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  margin: 16px 0;
}

.training-list__block--topics a {
  text-decoration: none;
  position: relative;
  font-family: "KasperskySansText-Light";
  font-size: 16px;
  line-height: 27px;
  color: #10c36d;
}

.training-list__block--topics ul {
  padding: 0;
  margin: 0;
  padding-left: 12px;
  list-style-type: none;
}

.training-list__block--topics ul li {
  padding-left: 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 8px;
  position: relative;
  font-family: "KasperskySansText-Regular";
  font-size: 14px;
  line-height: 27px;
}

.training-list__block--topics ul li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 11px;
  width: 8px;
  height: 8px;
  background-color: #3163eb;
  border-radius: 50%;
}

.training-list__block--topics ul li ul {
  list-style-type: none;
}

.training-list__block--topics ul li ul li {
  padding-left: 15px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.training-list__block--topics ul li ul li:before {
  content: "";
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #3163eb;
  left: 0px;
  top: 10px;
}

.training-list__block--topics ul li ul li:last-child {
  margin-bottom: 0px;
}

.training-list__block--topics ul p {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.training-list__block--topics ul li:last-child {
  margin-bottom: 0px;
}

.media-wrapper,
.videos-wrapper {
  width: 100%;
  background: #010101;
}

.media-wrapper .container,
.videos-wrapper .container {
  width: 1150px;
  margin: 0 auto;
}

.media-main {
  width: 100%;
  height: 660px;
  padding-top: 164px;
  background-image: url("/images/media/media-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.media-main__title {
  margin-bottom: 16px;
}

.media-main__title h1 {
  color: transparent;
}

.media-main__title span {
  font-family: 'KasperskySansText-Medium';
  line-height: 52px;
  font-size: 50px;
  color: #FFFFFF;
}

.media-main__title span.typed-cursor {
  color: #3163EB;
}

.media-main__text {
  width: 600px;
  margin-bottom: 40px;
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
}

.media-main__text p {
  font-family: 'KasperskySansText-Regular';
  font-size: 18px;
  line-height: 29px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.media-main__text a,
.media-main__text span,
.media-main__text strong {
  color: #AAC4FD;
  font-weight: initial;
}

.media-content {
  width: 100%;
  -webkit-transform: translateY(-180px);
          transform: translateY(-180px);
}

.media-content__touch-btn {
  display: none;
  position: absolute;
  right: 0;
}

.media-content__touch-btn__item {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  margin-right: 20px;
}

.media-content__touch-btn__item.active-icon .program-filter-check {
  fill: #0044FF;
}

.media-content__touch-btn__item.active-icon .program-check {
  stroke: #0044FF;
}

.media-content__touch-btn__item.active-icon .program-check--color {
  fill: #0044FF;
}

.media-content__touch-btn__item:last-of-type {
  margin-right: 0;
}

.media-content__touch-btn__item .program-filter-check {
  fill: #fff;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.media-content__touch-btn__item .program-check {
  stroke: #fff;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.media-content__touch-btn__item .program-check--color {
  fill: #fff;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.media-content__submenu {
  margin-bottom: 36px;
  -webkit-transition-delay: .55s;
          transition-delay: .55s;
}

.media-content__search {
  margin-bottom: 48px;
  -webkit-transition-delay: .65s;
          transition-delay: .65s;
}

.media-content__search__close {
  position: absolute;
  top: 32px;
  left: 4%;
  display: none;
}

.media-content__search__close img {
  width: 16px;
  height: 16px;
}

.media-content__search-mob {
  display: none;
}

.media-content__screen {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.media-content__screen .container {
  margin-bottom: 30px;
}

.media-content__screen a.primary-btn {
  margin: 0 auto;
}

.media-content__screen a.primary-btn.hide {
  opacity: 0;
  visibility: hidden;
}

.media-content__more {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px;
  margin-bottom: 30px;
  background: linear-gradient(69.3deg, #a347ff 4.42%, #02f 100.32%), #04f;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 9px;
  position: relative;
}

.media-content__more:nth-of-type(2) {
  margin-top: 30px;
}

.media-content__more:after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: url(/../images/index/dots.png);
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

.media-content__more__text {
  width: calc(100% - 300px);
  margin-right: 100px;
}

.media-content__more__text p {
  font-family: 'KasperskySansText-Regular';
  font-size: 18px;
  line-height: 26px;
  color: #FFFFFF;
  margin: 0;
}

.media-content__more__text p:first-of-type {
  font-family: 'KasperskySansText-Medium';
  font-size: 20px;
  line-height: 23px;
  margin-bottom: 10px;
}

.media-content__more__text p::last-of-type {
  margin-bottom: 0;
}

.media-content__more__btn {
  width: 165px;
}

.media-content__more__btn a.primary-btn {
  position: relative;
  z-index: 10;
}

.media-submenu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: 'KasperskySansText-Medium';
  font-size: 15px;
  line-height: 18px;
}

.media-submenu ul li:not(:last-of-type) {
  margin-right: 30px;
}

.media-submenu ul li a {
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 16px;
  padding-right: 16px;
  background-color: transparent;
  color: #fff;
  border-radius: 4px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.media-submenu ul li a.active {
  background-color: #0044FF;
}

.media-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
}

.media-search input {
  width: 656px;
  background: transparent;
  border: none;
  outline: 0;
  font-family: 'KasperskySansText-Medium';
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding-left: 35px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.media-search input::-webkit-input-placeholder {
  color: #fff;
}

.media-search input::-moz-placeholder {
  color: #fff;
}

.media-search input:-ms-input-placeholder {
  color: #fff;
}

.media-search input:-moz-placeholder {
  color: #fff;
}

.media-search svg {
  position: absolute;
  top: 8px;
  left: 0;
}

.media-search .arrow-search {
  fill: #04f;
}

.media-search__btn {
  display: none;
}

.media-coverage,
.media-blog {
  width: 100%;
}

.media-coverage__item,
.media-blog__item {
  width: 100%;
  display: block;
  padding: 22px 150px 20px 30px;
  background: #1F1F1F;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.media-coverage__item:not(:last-of-type),
.media-blog__item:not(:last-of-type) {
  margin-bottom: 10px;
}

.media-coverage h3,
.media-blog h3 {
  font-family: 'KasperskySansText-Medium';
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  margin: 0;
  margin-bottom: 8px;
}

.media-coverage p,
.media-blog p {
  font-family: 'KasperskySansText-Medium';
  font-size: 15px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.media-coverage__title a,
.media-blog__title a {
  display: table;
}

.media-coverage__logo,
.media-blog__logo {
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.media-coverage__logo img,
.media-blog__logo img {
  max-width: 90px;
}

.media-blog__logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.media-blog__logo img {
  width: 100%;
  max-width: 100%;
}

.media-video,
.media-photos,
.hidden-video {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.media-video__item,
.media-photos__item,
.hidden-video__item {
  width: calc(50% - 15px);
  height: 435px;
  background: #1F1F1F;
  border-radius: 4px;
  margin-bottom: 30px;
  position: relative;
}

.media-video__item:nth-last-of-type(1), .media-video__item:nth-last-of-type(2),
.media-photos__item:nth-last-of-type(1),
.media-photos__item:nth-last-of-type(2),
.hidden-video__item:nth-last-of-type(1),
.hidden-video__item:nth-last-of-type(2) {
  margin-bottom: 0;
}

.media-video__video,
.media-photos__video,
.hidden-video__video {
  width: 100%;
  height: 256px;
  position: relative;
  margin-bottom: 20px;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
}

.media-video__video__preview,
.media-photos__video__preview,
.hidden-video__video__preview {
  width: 100%;
  height: 256px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px 4px 0 0;
  position: relative;
  z-index: 10;
  visibility: visible;
  opacity: 1;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.media-video__video__preview.hide,
.media-photos__video__preview.hide,
.hidden-video__video__preview.hide {
  visibility: hidden;
  opacity: 0;
}

.media-video__video__preview a,
.media-photos__video__preview a,
.hidden-video__video__preview a {
  width: 64px;
  height: 64px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: hidden;
  z-index: 20;
  outline: 0;
}

.media-video__video__preview a:after,
.media-photos__video__preview a:after,
.hidden-video__video__preview a:after {
  content: '';
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 18px solid #0044FF;
  position: absolute;
  top: 50%;
  left: 54%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.media-video__video__block,
.media-photos__video__block,
.hidden-video__video__block {
  width: 100%;
  height: 256px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

.media-video__video__block iframe,
.media-photos__video__block iframe,
.hidden-video__video__block iframe {
  width: 100%;
}

.media-video__img,
.media-photos__img,
.hidden-video__img {
  width: 100%;
  height: 256px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  cursor: pointer;
}

.media-video__img img,
.media-photos__img img,
.hidden-video__img img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px 4px 0 0;
}

.media-video__info,
.media-photos__info,
.hidden-video__info {
  padding-left: 30px;
  padding-right: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.media-video__info__title,
.media-photos__info__title,
.hidden-video__info__title {
  margin-bottom: 10px;
}

.media-video__info h3,
.media-photos__info h3,
.hidden-video__info h3 {
  font-family: 'KasperskySansText-Medium';
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  margin: 0;
}

.media-video__info h3 strong,
.media-photos__info h3 strong,
.hidden-video__info h3 strong {
  color: #3163EB;
}

.media-video__info p,
.media-photos__info p,
.hidden-video__info p {
  font-family: 'KasperskySansText-Medium';
  font-size: 14px;
  line-height: 21px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.media-video__share,
.media-photos__share,
.hidden-video__share {
  position: absolute;
  left: 30px;
  bottom: 14px;
}

.media-video__share__text,
.media-photos__share__text,
.hidden-video__share__text {
  margin-right: 16px;
  display: inline-block;
}

.media-video__share__text p,
.media-photos__share__text p,
.hidden-video__share__text p {
  font-family: 'KasperskySansText-Medium';
  font-size: 15px;
  line-height: 28px;
  color: #FFFFFF;
  margin: 0;
}

.media-video__share__item,
.media-photos__share__item,
.hidden-video__share__item {
  display: inline-block;
  vertical-align: text-bottom;
}

.media-video__share__item a,
.media-photos__share__item a,
.hidden-video__share__item a {
  width: 20px;
  display: block;
}

.media-video__share__item img,
.media-photos__share__item img,
.hidden-video__share__item img {
  width: 100%;
}

.media-video__share__item--fb a,
.media-photos__share__item--fb a,
.hidden-video__share__item--fb a {
  width: 18px;
}

.media-video__share__item:not(:last-of-type),
.media-photos__share__item:not(:last-of-type),
.hidden-video__share__item:not(:last-of-type) {
  margin-right: 20px;
}

.media-photos__item {
  height: 376px;
}

.media-subscrible {
  width: 1150px;
  padding-top: 45px;
  padding-bottom: 50px;
  margin: 0 auto;
  background: linear-gradient(186.71deg, #0044FF -1.53%, #784BF8 95.59%);
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: none;
}

.media-subscrible .container {
  width: 376px;
  margin: 0 auto;
}

.media-subscrible h3 {
  font-family: 'KasperskySansText-Medium';
  line-height: 32px;
  font-size: 20px;
  color: #FFFFFF;
  margin: 0;
  margin-bottom: 20px;
}

.media-subscrible span.error-checkbox {
  font-family: KasperskySansText-Medium;
  font-size: 11px;
  line-height: 13px;
  color: #ed2993;
  position: absolute;
  bottom: -15px;
}

.media-video p {
  color: rgba(255, 255, 255, 0.8);
}

.media-video__info__description p {
  height: 65px;
  overflow: hidden;
}

.media-video__info__description a {
  color: #3163eb;
}

.sponsorship-wrapper {
  width: 100%;
  background: #010101;
}

.sponsorship-wrapper .container {
  width: 1150px;
  margin: 0 auto;
}

.sponsorship-main {
  width: 100%;
  padding-top: 120px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.sponsorship-main .breadcrumbs {
  margin-bottom: 40px;
}

.sponsorship-main__bg {
  width: 100%;
  height: 580px;
  background: url("/images/sponsorship/sponsorship-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 0;
}

.sponsorship__text {
  position: relative;
  z-index: 5;
  padding-bottom: 60px;
}

.sponsorship__text--title {
  margin-bottom: 33px;
}

.sponsorship__text--title h1 {
  color: transparent;
}

.sponsorship__text--title span {
  font-family: 'KasperskySansText-Medium';
  line-height: 52px;
  font-size: 50px;
  color: #FFFFFF;
}

.sponsorship__text--title span.typed-cursor {
  color: #3163EB;
}

.sponsorship__text--content {
  max-width: 656px;
  width: 100%;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  margin-bottom: 80px;
}

.sponsorship__text--content p {
  font-family: 'KasperskySansText-Medium';
  font-size: 20px;
  line-height: 32px;
  color: #FFFFFF;
  margin-bottom: 40px;
}

.sponsorship__text--content p span {
  color: #3163eb;
}

.sponsorship__text--content p a {
  color: #3163eb;
  text-decoration: none;
  position: relative;
}

.sponsorship__text--content p a:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background-color: #3163eb;
  -webkit-transition: width 0.4s ease-out;
  transition: width 0.4s ease-out;
}

.sponsorship__text--content p a:hover::before {
  width: 102%;
}

.sponsorship__text--content p:last-of-type {
  margin-bottom: 0px;
}

.sponsorship__card {
  width: 656px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sponsorship__card__item {
  width: 100%;
  background-color: #1F1F1F;
  padding: 40px 28px 30px 28px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 30px;
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.sponsorship__card__text {
  margin-top: 20px;
  margin-bottom: 10px;
}

.sponsorship__card__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.sponsorship__card__contacts__item {
  width: 50%;
}

.sponsorship__card__contacts__item span {
  margin-left: 26px;
}

.sponsorship__card__contacts__item img {
  margin-right: 10px;
}

.sponsorship__card h3 {
  font-family: 'KasperskySansText-Medium';
  font-size: 20px;
  line-height: 27px;
  color: #FFFFFF;
  margin: 0;
  margin-bottom: 10px;
}

.sponsorship__card p {
  font-family: 'KasperskySansText-Medium';
  font-size: 18px;
  line-height: 32px;
  color: #D8D8D8;
  margin: 0;
  margin-bottom: 8px;
}

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

.sponsorship__card a {
  font-family: 'KasperskySansText-Medium';
  font-size: 18px;
  line-height: 32px;
  color: #3163EB;
}

.sponsorship__card span {
  display: block;
  font-family: 'KasperskySansText-Medium';
  font-size: 11px;
  line-height: 13px;
  color: #D8D8D8;
}

.archive-wrapper {
  width: 100%;
  background: #010101;
}

.archive-wrapper .container {
  width: 1150px;
  margin: 0 auto;
}

.archive-main {
  width: 100%;
  padding-top: 180px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.archive-main .breadcrumbs {
  margin-bottom: 80px;
}

.archive-main__bg {
  width: 100%;
  height: 654px;
  background: url("/images/archive/archive-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 0;
}

.archive-main__title {
  margin-bottom: 20px;
  position: relative;
}

.archive-main__title h1 {
  color: transparent;
}

.archive-main__title span {
  font-family: "KasperskySansText-Medium";
  line-height: 52px;
  font-size: 50px;
  color: #ffffff;
}

.archive-main__title span.typed-cursor {
  color: #3163eb;
}

.archive-main__text {
  position: relative;
  z-index: 2;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  max-width: 660px;
  width: 100%;
}

.archive-main__text p {
  font-family: "KasperskySansText-Regular";
  font-size: 20px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.8);
}

.archive-list {
  padding-top: 80px;
  padding-bottom: 100px;
  position: relative;
  z-index: 2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.archive-list .hidden-data {
  display: none;
}

.archive-list__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.archive-list__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.archive-list__btn a {
  margin: 0px auto;
  cursor: pointer;
}

.archive-list__btn .btn-primary-arrow {
  fill: #0012ff;
}

.archive-list__event {
  width: calc(100% / 2 - 15px);
  margin-right: 30px;
  margin-bottom: 56px;
}

.archive-list__event--thumbnail {
  width: 100%;
  height: 257px;
  background-size: cover;
  background-position: center center;
}

.archive-list__event--inner {
  background-color: #1f1f1f;
  padding: 24px 29px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.archive-list__event--name {
  margin-bottom: 15px;
}

.archive-list__event--name p {
  font-family: "KasperskySansText-Medium";
  font-size: 20px;
  line-height: 24px;
  color: #ffffff;
}

.archive-list__event--date {
  margin-bottom: 15px;
}

.archive-list__event--date p {
  font-family: "KasperskySansText-Regular";
  font-size: 15px;
  line-height: 18px;
  color: #a5a5a5;
}

.archive-list__event--date p span {
  font-family: "KasperskySansText-Medium";
  color: #ffffff;
}

.archive-list__event--place {
  margin-bottom: 15px;
}

.archive-list__event--place p {
  font-family: "KasperskySansText-Regular";
  font-size: 15px;
  line-height: 18px;
  color: #a5a5a5;
}

.archive-list__event--place p span {
  font-family: "KasperskySansText-Medium";
  color: #ffffff;
}

.archive-list__event--link a {
  text-decoration: none;
  font-family: "KasperskySansText-Medium";
  font-size: 15px;
  line-height: 20px;
  color: #3163eb;
  position: relative;
}

.archive-list__event--link a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #3163eb;
  -webkit-transition: width 0.4s ease-out;
  transition: width 0.4s ease-out;
}

.archive-list__event--link a:hover::before {
  width: 101%;
}

.archive-list__event:nth-child(even) {
  margin-right: 0px;
}

.parked-wrapper {
  width: 100%;
  background: #010101;
}

.parked-wrapper .container {
  width: 1150px;
  margin: 0 auto;
  position: relative;
}

.parked-main {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-image: url("/images/index/main-section.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.parked-main__title {
  margin-bottom: 50px;
  opacity: 0;
  -webkit-transition: opacity .8s 1s ease-in-out;
  transition: opacity .8s 1s ease-in-out;
}

.parked-main__title h1 {
  font-family: 'KasperskySansText-Medium';
  font-size: 40px;
  line-height: 43px;
  text-align: center;
  color: #FFFFFF;
  letter-spacing: 1px;
  margin: 0;
  margin-top: 20px;
}

.parked-main__title span {
  display: block;
  font-family: 'KasperskySansText-Medium';
  font-size: 24px;
  line-height: 27px;
  text-align: center;
  color: #FFFFFF;
  margin: 0 auto;
}

.event-wrapper {
  width: 100%;
  background: #010101;
}

.event-wrapper .container {
  width: 1150px;
  margin: 0 auto;
  position: relative;
}

.event-wrapper .theme__placement {
  background: linear-gradient(69.3deg, #a347ff 4.42%, #02f 100.32%), #04f;
}

.event-wrapper .slick-slide {
  height: auto;
}

.event-wrapper .programs__touch-btn {
  display: none;
}

.event-wrapper .sponsors-screen {
  background: #1f1f21;
  padding-top: 75px;
  padding-bottom: 20px;
}

.event-wrapper .sponsors-screen__title h2 {
  color: transparent;
}

.event-wrapper .speakers {
  padding-bottom: 90px;
  padding-top: 115px;
}

.event-wrapper .programs {
  background: #1f1f21;
}

.event-wrapper .programs__title h2 {
  color: transparent;
}

.event-wrapper .programs__title span {
  font-family: "KasperskySansText-Medium";
  font-size: 24px;
  line-height: 27px;
  color: #ffffff;
}

.event-wrapper .programs__title span.typed-cursor {
  color: #3163eb;
}

.event-wrapper .programs.fixed .programs__up-container {
  background: #010101;
}

.event-wrapper .speakers__title {
  margin-bottom: 48px;
}

.event-wrapper .speakers__title span {
  font-family: "KasperskySansText-Medium";
  font-size: 24px;
  line-height: 27px;
  color: #ffffff;
}

.event-wrapper .speakers__title span.typed-cursor {
  color: #3163eb;
}

.event-wrapper .speakers__text {
  margin-bottom: 64px;
  max-width: 600px;
  width: 100%;
}

.event-wrapper .speakers__text p {
  font-family: "KasperskySansText-Medium";
  font-size: 20px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.8);
}

.event-wrapper .archive-list {
  padding-top: 120px;
  padding-bottom: 0px;
}

.event-wrapper .contact {
  padding-top: 120px;
  padding-bottom: 93px;
}

.event-wrapper .sponsors-screen__title span {
  font-family: "KasperskySansText-Medium";
  font-size: 24px;
  line-height: 27px;
  color: #ffffff;
}

.event-wrapper .sponsors-screen__title span.typed-cursor {
  color: #3163eb;
}

.event-wrapper .sponsors-screen__line {
  background: #3163eb;
}

.event-wrapper .media-block {
  padding-top: 120px;
  padding-bottom: 120px;
}

.event-wrapper .media-block a.primary-btn {
  margin-top: 30px;
}

.event-wrapper .media-block .media__title {
  margin-bottom: 41px;
}

.event-wrapper .media-block .media__title span {
  font-family: "KasperskySansText-Medium";
  font-size: 24px;
  line-height: 27px;
  color: #ffffff;
}

.event-wrapper .media-block .media__title span.typed-cursor {
  color: #3163eb;
}

.event-wrapper .media-block .media__title p {
  font-family: "KasperskySansText-Medium";
  font-size: 20px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 48px;
}

.event-wrapper .media-block .media__description {
  margin-bottom: 40px;
  max-width: 656px;
  width: 100%;
}

.event-wrapper .media-block .media__description p {
  font-family: "KasperskySansText-Medium";
  font-size: 20px;
  line-height: 32px;
  color: #ffffff;
}

.event-wrapper .archive-list__title {
  margin-bottom: 48px;
}

.event-wrapper .archive-list__title h2 {
  font-family: "KasperskySansText-Medium";
  font-size: 30px;
  line-height: 35px;
  color: #ffffff;
}

.event-wrapper .archive-list__text {
  margin-bottom: 80px;
}

.event-wrapper .archive-list__text p {
  font-family: "KasperskySansText-Medium";
  font-size: 20px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.8);
}

.event-main {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  background: url("/images/index/main-section.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.event-main.show-blocks .event-main__title,
.event-main.show-blocks .event-main__place,
.event-main.show-blocks .event-main__down {
  opacity: 1;
}

.event-main .event-main__title,
.event-main .event-main__place {
  opacity: 0;
  -webkit-transition: opacity 0.8s 1s ease-in-out;
  transition: opacity 0.8s 1s ease-in-out;
}

.event-main__title {
  margin-bottom: 50px;
}

.event-main__title h1 {
  font-family: "KasperskySansText-Medium";
  font-size: 40px;
  line-height: 43px;
  text-align: center;
  color: #ffffff;
  letter-spacing: 1px;
  margin: 0;
  margin-top: 20px;
}

.event-main__title span {
  display: block;
  font-family: "KasperskySansText-Medium";
  font-size: 24px;
  line-height: 27px;
  text-align: center;
  color: #ffffff;
  margin: 0 auto;
}

.event-main__place {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.event-main__place__line {
  width: 64px;
  height: 3px;
  margin: 0 auto;
  margin-bottom: 12px;
}

.event-main__place p {
  font-family: "KasperskySansText-Medium";
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
}

.event-main__place span {
  font-family: "KasperskySansText-Regular";
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
}

.event-main__down {
  position: absolute;
  left: 49.4%;
  bottom: 52px;
  opacity: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: opacity 0.6s 3.5s ease-in-out;
  transition: opacity 0.6s 3.5s ease-in-out;
}

.event-main__down.animated-arrow {
  -webkit-animation: arrow-down 2s linear infinite alternate;
          animation: arrow-down 2s linear infinite alternate;
}

.event-main__down img {
  width: 22px;
  height: 34px;
}

.event-main__down .scroll-down {
  stroke: #3163eb;
}

.about-sas {
  padding-top: 115px;
}

.about-sas__title {
  margin-bottom: 48px;
}

.about-sas__title span {
  font-family: "KasperskySansText-Medium";
  font-size: 24px;
  line-height: 27px;
  color: #ffffff;
}

.about-sas__title span.typed-cursor {
  color: #3163eb;
}

.travel {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #1f1f21;
}

.travel__title {
  margin-bottom: 18px;
}

.travel__title h2 {
  color: transparent;
}

.travel__title span {
  font-family: "KasperskySansText-Medium";
  font-size: 24px;
  line-height: 27px;
  color: #ffffff;
}

.travel__title span.typed-cursor {
  color: #3163eb;
}

.travel__content {
  max-width: 595px;
  width: 100%;
}

.travel__content p {
  font-family: "KasperskySansText-Medium";
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 35px;
  position: relative;
  padding-left: 21px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.travel__content p:before {
  content: "";
  display: block;
  width: 12px;
  height: 16px;
  background: url("/images/icons/location-icon.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  left: 0px;
  top: 4px;
}

.travel__map {
  width: 100%;
  height: 487px;
}

.code-wrapper {
  width: 100%;
  background: #010101;
}

.code-wrapper .container {
  width: 1150px;
  margin: 0 auto;
}

.code-main {
  width: 100%;
  padding-top: 180px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding-bottom: 20px;
}

.code-main .breadcrumbs {
  margin-bottom: 32px;
}

.code-main__title {
  margin-bottom: 20px;
  position: relative;
}

.code-main__title h1 {
  color: transparent;
}

.code-main__title span {
  font-family: 'KasperskySansText-Medium';
  line-height: 52px;
  font-size: 50px;
  color: #FFFFFF;
}

.code-main__title span.typed-cursor {
  color: #3163EB;
}

.code-main__text {
  position: relative;
  z-index: 2;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  max-width: 660px;
  width: 100%;
}

.code-main__text p {
  font-family: 'KasperskySansText-Regular';
  font-size: 18px;
  line-height: 29px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.code-main__text p:last-of-type {
  margin-bottom: 0;
}

.code-text__list {
  padding-bottom: 120px;
  padding-top: 40px;
}

.code-text__list--block, .code-text__list--remark {
  max-width: 660px;
  width: 100%;
}

.code-text__list--title {
  margin-bottom: 20px;
}

.code-text__list--title h2 {
  color: transparent;
}

.code-text__list--title span {
  font-family: 'KasperskySansText-Medium';
  line-height: 28px;
  font-size: 24px;
  color: #FFFFFF;
}

.code-text__list--title span.typed-cursor {
  color: #3163EB;
}

.code-text__list--text {
  margin-bottom: 50px;
  -webkit-transition-delay: .4s;
          transition-delay: .4s;
}

.code-text__list--text p {
  font-family: 'KasperskySansText-Medium';
  font-size: 18px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.code-text__list--text p:last-of-type {
  margin-bottom: 0;
}

.code-text__list--remark {
  background-color: #1F1F1F;
  padding: 40px 28px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
  font-family: 'KasperskySansText-Medium';
  font-size: 18px;
  line-height: 26px;
  color: #FFFFFF;
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
}

.code-text__list--remark p {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

.code-text__list a {
  color: #3163eb;
}

.not-found-wrapper {
  width: 100%;
}

.not-found-wrapper .container {
  width: 1150px;
  margin: 0 auto;
  position: relative;
}

.not-found-main {
  background: url("/images/404/404-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.not-found-main__text h1 {
  font-family: 'KasperskySansText-Medium';
  line-height: 86px;
  font-size: 80px;
  text-align: center;
  color: #FFFFFF;
}

.not-found-main__text p {
  font-family: 'KasperskySansText-Medium';
  line-height: 36px;
  font-size: 18px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 50px;
}

.not-found-main__text a {
  margin: 0px auto;
}

.unplugged-wrapper {
  width: 100%;
  background: #010101;
}

.unplugged-wrapper .container {
  width: 1150px;
  margin: 0 auto;
}

.unplugged-main {
  width: 100%;
  min-height: 554px;
  height: 100%;
  padding-top: 164px;
  padding-bottom: 170px;
  background-image: url("/images/unplugged/unplugged-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.unplugged-main__title {
  margin-bottom: 16px;
}

.unplugged-main__title h1 {
  color: transparent;
}

.unplugged-main__title span {
  font-family: 'KasperskySansText-Medium';
  line-height: 52px;
  font-size: 50px;
  color: #FFFFFF;
}

.unplugged-main__title span.typed-cursor {
  color: #3163EB;
}

.unplugged-main__text {
  width: 600px;
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
}

.unplugged-main__text p {
  font-family: 'KasperskySansText-Regular';
  font-size: 20px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.unplugged-main__text a,
.unplugged-main__text span,
.unplugged-main__text strong {
  color: #AAC4FD;
  font-weight: initial;
}

.unplugged-about {
  width: 100%;
  background-color: #1F1F21;
}

.unplugged-about__placement {
  width: 100%;
  background: linear-gradient(69.3deg, #A347FF 4.42%, #0022FF 100.32%), #0044FF;
  border-radius: 9px;
  padding-top: 100px;
  padding-bottom: 90px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
}

.unplugged-about__placement:after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("/../images/index/dots.png");
  background-size: contain;
  background-position: center center;
  position: absolute;
  top: 25px;
  left: 25px;
  z-index: 10;
}

.unplugged-about__placement__place {
  width: 240px;
  position: relative;
  opacity: 0;
  -webkit-transition: opacity .5s .6s ease-in-out;
  transition: opacity .5s .6s ease-in-out;
}

.unplugged-about__placement__place.show {
  opacity: 1;
}

.unplugged-about__placement__place:after {
  content: '';
  width: 216px;
  height: 154px;
  background: rgba(255, 255, 255, 0.14);
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: -1;
}

.unplugged-about__placement__place__line {
  width: 64px;
  height: 3px;
  background: #fff;
  margin-bottom: 20px;
}

.unplugged-about__placement__place p {
  font-family: 'KasperskySansText-Regular';
  font-size: 18px;
  line-height: 35px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.unplugged-about__placement__place p:first-of-type {
  font-family: 'KasperskySansText-Medium';
  font-size: 24px;
}

.unplugged-about__placement__place span,
.unplugged-about__placement__place strong {
  font-family: 'KasperskySansText-Medium';
  color: #FFFFFF;
  font-weight: initial;
}

.unplugged-about__placement__about {
  width: 650px;
}

.unplugged-about__placement__about__text {
  margin-bottom: 40px;
  opacity: 0;
  -webkit-transition: opacity .5s .6s ease-in-out;
  transition: opacity .5s .6s ease-in-out;
}

.unplugged-about__placement__about__text.show {
  opacity: 1;
}

.unplugged-about__placement__about__text p {
  font-family: 'KasperskySansText-Regular';
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.unplugged-about__placement__about__text p:first-of-type {
  font-size: 20px;
  line-height: 30px;
}

.unplugged-about__placement__about__text a {
  font-size: 18px;
  line-height: 28px;
  color: #aac4fd;
}

.unplugged-about__placement__about__text span,
.unplugged-about__placement__about__text strong {
  color: #AAC4FD;
  font-weight: initial;
}

.unplugged-about__placement__about__text__for-link p {
  font-size: 18px;
  line-height: 28px;
  margin: 0;
}

.unplugged-about__placement .container {
  width: 950px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 20;
}

.unplugged-about .picture__slider {
  -webkit-transform: translateY(-120px);
          transform: translateY(-120px);
}

.workshop-block {
  width: 100%;
  padding-top: 115px;
  padding-bottom: 180px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.workshop-block__title {
  margin-bottom: 50px;
}

.workshop-block__title span {
  font-family: 'KasperskySansText-Medium';
  font-size: 24px;
  line-height: 28px;
  color: #FFFFFF;
}

.workshop-block__title span.typed-cursor {
  color: #3163EB;
}

.workshop-block__content {
  width: 100%;
}

.workshop {
  width: 100%;
}

.workshop:not(:last-of-type) {
  margin-bottom: 8px;
}

.workshop__title {
  width: 100%;
  padding: 25px 60px 22px 30px;
  background-color: #0044FF;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
}

.workshop__title.opened:after {
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
}

.workshop__title:after {
  content: '';
  width: 20px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 30px;
  background-image: url(../images/icons/schedule-arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.workshop__title h3 {
  font-family: 'KasperskySansText-Bold';
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  margin: 0;
}

.workshop__title p {
  font-family: 'KasperskySansText-Medium';
  font-size: 15px;
  line-height: 25px;
  color: #fff;
  margin: 0;
}

.workshop__title span {
  color: #99B4FF;
}

.workshop__content {
  display: none;
}

.workshop__content__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 25px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.workshop__content__trainers {
  width: 280px;
  margin-right: 30px;
}

.workshop__content__description {
  width: calc(100% - 280px);
}

.workshop__content__description h4 {
  font-family: 'KasperskySansText-Regular';
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 10px;
}

.workshop__content__description p {
  font-family: 'KasperskySansText-Regular';
  font-size: 16px;
  line-height: 28px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.workshop__content__description ul {
  padding: 0;
  margin: 0;
  margin-bottom: 30px;
}

.workshop__content__description ul li {
  padding-left: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 8px;
  position: relative;
  font-family: 'KasperskySansText-Regular';
  font-size: 17px;
  line-height: 27px;
  color: #FFFFFF;
}

.workshop__content__description ul li:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 11px;
  width: 4px;
  height: 4px;
  background-color: #3163EB;
  border-radius: 50%;
}

.workshop__content__description ul li ul {
  list-style-type: none;
}

.workshop__content__description ul li ul li {
  padding-left: 15px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.workshop__content__description ul li ul li:before {
  content: '';
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #3163EB;
  left: 0;
  top: 10px;
}

.workshop__content__description ul li ul li:last-child {
  margin-bottom: 0;
}

.workshop__content__description ul p {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  margin-bottom: 10px;
}

.workshop__content__description ul li:last-child {
  margin-bottom: 0;
}

.trainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.trainer h4 {
  font-family: 'KasperskySansText-Medium';
  font-size: 15px;
  line-height: 28px;
  color: #AAC4FD;
  margin: 0;
  margin-bottom: 15px;
}

.trainer__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.trainer__item:not(:last-of-type) {
  margin-bottom: 25px;
}

.trainer__avatar {
  width: 54px;
  height: 54px;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid #3163EB;
  margin-right: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.trainer__avatar img {
  width: 54px;
}

.trainer__about {
  width: calc(100% - 80px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.trainer__name {
  margin-bottom: 5px;
}

.trainer__name span {
  font-family: 'KasperskySansText-Medium';
  font-size: 18px;
  color: #FFFFFF;
}

.trainer__desc {
  margin-bottom: 5px;
}

.trainer__desc p {
  font-family: 'KasperskySansText-Regular';
  font-size: 12px;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.trainer__company span {
  font-family: 'KasperskySansText-Medium';
  font-size: 12px;
  line-height: 18px;
  color: #FFFFFF;
}

.startup .container {
  width: 1150px;
  margin: 0 auto;
}

.startup__main {
  width: 100%;
  min-height: 554px;
  height: 100%;
  padding-top: 170px;
  padding-bottom: 80px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.startup__main__title {
  margin-bottom: 16px;
}

.startup__main__title h1 {
  color: transparent;
}

.startup__main__title span {
  font-family: 'KasperskySansText-Medium';
  font-size: 46px;
  line-height: 52px;
  color: #FFFFFF;
}

.startup__main__title span.typed-cursor {
  color: #3163EB;
}

.startup__main__text {
  width: 660px;
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
}

.startup__main__text p {
  font-family: 'KasperskySansText-Medium';
  font-size: 20px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.startup__main__text a,
.startup__main__text span,
.startup__main__text strong {
  color: #AAC4FD;
  font-weight: initial;
}

.startup__placement {
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  background: #1f1f21;
}

.startup__placement .about-screen__placement {
  -webkit-transform: translateY(-70px);
          transform: translateY(-70px);
}

.startup__placement .about-screen__placement__place:after {
  height: 318px;
}

.startup__placement .about-screen__placement__logo {
  width: 211px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.startup__placement .about-screen__placement__logo img {
  width: 100%;
}

.startup__placement .about-screen__placement__about__text h3 {
  font-family: 'KasperskySansText-Bold';
  font-size: 24px;
  line-height: 34px;
  color: #fff;
  margin: 0;
  margin-bottom: 16px;
}

.startup__placement .about-screen__placement__about__text p {
  font-family: 'KasperskySansText-Medium';
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  margin-bottom: 16px;
}

.startup__placement .about-screen__placement__about__text p:first-of-type {
  font-size: 24px;
  line-height: 34px;
}

.startup__benefits {
  padding-top: 60px;
  padding-bottom: 118px;
  background: #1f1f21;
}

.startup__benefits__title {
  margin-bottom: 60px;
}

.startup__benefits__title h3 {
  opacity: 0;
}

.startup__benefits__title span {
  font-family: 'KasperskySansText-Medium';
  font-size: 24px;
  line-height: 28px;
  color: #FFFFFF;
}

.startup__benefits__title span.typed-cursor {
  color: #3163EB;
}

.startup__benefits__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.startup__benefits__steps__item {
  width: 200px;
}

.startup__benefits__steps__item:nth-of-type(1) {
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
}

.startup__benefits__steps__item:nth-of-type(2) {
  -webkit-transition-delay: .2s;
          transition-delay: .2s;
}

.startup__benefits__steps__item:nth-of-type(3) {
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
}

.startup__benefits__steps__item:nth-of-type(4) {
  -webkit-transition-delay: .4s;
          transition-delay: .4s;
}

.startup__benefits__steps__item:nth-of-type(5) {
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
}

.startup__benefits__steps__item:not(:last-of-type) {
  margin-right: 36px;
}

.startup__benefits__steps__number {
  width: 100%;
}

.startup__benefits__steps__number span {
  font-family: 'KasperskySansText-Bold';
  font-size: 96px;
  line-height: 114px;
  color: #CB680C;
}

.startup__benefits__steps__text {
  width: 100%;
}

.startup__benefits__steps__text p {
  font-family: 'KasperskySansText-Regular';
  font-size: 24px;
  line-height: 28px;
  color: #fff;
  margin: 0;
}

.startup__benefits__steps__text strong {
  font-family: 'KasperskySansText-Medium';
}

.startup__showcase {
  padding-top: 60px;
  padding-bottom: 118px;
  background: #000;
}

.startup__showcase .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.startup__showcase__format {
  width: 594px;
  margin-right: 82px;
}

.startup__showcase__criteria {
  width: 458px;
  padding: 30px 28px;
  background: #1F1F1F;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.startup__showcase__panel {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 28px 25px 28px;
  margin-top: 120px;
  background: linear-gradient(37.53deg, #CF540F 4.42%, #862A01 100.32%), #FFB800;
  border-radius: 9px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.startup__showcase__panel:after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("/../images/index/dots.png");
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.startup__showcase__panel__text {
  width: 400px;
  color: #fff;
  position: relative;
  z-index: 20;
}

.startup__showcase__panel__text p {
  font-family: 'KasperskySansText-Regular';
  font-size: 18px;
  line-height: 26px;
  margin: 0;
}

.startup__showcase__panel__text p:first-of-type {
  font-family: 'KasperskySansText-Medium';
  font-size: 20px;
  line-height: 23px;
  margin-bottom: 10px;
}

.startup__showcase__panel__btn {
  position: relative;
  z-index: 20;
}

.startup__showcase .showcase-format {
  color: #fff;
}

.startup__showcase .showcase-format__title {
  padding-top: 30px;
  margin-bottom: 16px;
}

.startup__showcase .showcase-format__title span {
  font-family: 'KasperskySansText-Medium';
  font-size: 24px;
  line-height: 28px;
  margin: 0;
}

.startup__showcase .showcase-format__text {
  margin-bottom: 60px;
}

.startup__showcase .showcase-format__text p {
  font-family: 'KasperskySansText-Medium';
  font-size: 20px;
  line-height: 28px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.startup__showcase .showcase-format__desc:not(:last-of-type) {
  margin-bottom: 60px;
}

.startup__showcase .showcase-format__desc__title {
  margin-bottom: 50px;
  position: relative;
}

.startup__showcase .showcase-format__desc__title span {
  display: block;
  font-family: 'KasperskySansText-Bold';
  font-size: 36px;
  line-height: 42px;
}

.startup__showcase .showcase-format__desc__title:after {
  content: '';
  width: 58px;
  height: 3px;
  background-color: #C45C10;
  position: absolute;
  left: 0;
  bottom: -20px;
}

.startup__showcase .showcase-format__desc__content {
  width: 340px;
}

.startup__showcase .showcase-format__desc__content p {
  font-family: 'KasperskySansText-Regular';
  font-size: 15px;
  line-height: 22px;
}

.startup__showcase .showcase-format__desc__content ul li {
  font-family: 'KasperskySansText-Regular';
  font-size: 15px;
  line-height: 28px;
  padding-left: 18px;
  position: relative;
}

.startup__showcase .showcase-format__desc__content ul li:before {
  content: '';
  width: 10px;
  height: 10px;
  background-color: #CB680C;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
}

.startup__showcase .showcase-criteria {
  color: #fff;
}

.startup__showcase .showcase-criteria__title {
  margin-bottom: 12px;
}

.startup__showcase .showcase-criteria__title span {
  font-family: 'KasperskySansText-Medium';
  font-size: 24px;
  line-height: 28px;
  margin: 0;
}

.startup__showcase .showcase-criteria__content p {
  font-family: 'KasperskySansText-Medium';
  font-size: 20px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.startup__showcase .showcase-criteria__content__item {
  margin-top: 50px;
  position: relative;
}

.startup__showcase .showcase-criteria__content__item:after {
  content: '';
  width: 58px;
  height: 3px;
  background-color: #C45C10;
  position: absolute;
  top: -18px;
  left: 0;
}

.startup__showcase .showcase-criteria__content__item p {
  font-family: 'KasperskySansText-Medium';
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  margin: 0;
}

.plug {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100vh;
  background-image: url("/images/plug.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.plug svg {
  width: 70%;
}

@media screen and (orientation: landscape) and (max-width: 767px) {
  .plug svg {
    width: 40%;
  }
}

@media (min-width: 740px) and (max-width: 1160px) {
  a.primary-btn:hover span {
    color: #3163EB;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  a.primary-btn:hover span:before {
    -webkit-animation: initial;
            animation: initial;
  }
  a.primary-btn:hover svg {
    opacity: 0;
    visibility: hidden;
    -webkit-animation: initial;
            animation: initial;
  }
  .hidden-message, .not-supported-message {
    font-size: 30px;
    line-height: 34px;
  }
  a.second-btn:hover {
    border: 2px solid rgba(255, 255, 255, 0.6);
  }
  a.second-btn:hover span {
    color: #FFFFFF;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  a.second-btn:hover img {
    opacity: 0;
    visibility: hidden;
    -webkit-animation: initial;
            animation: initial;
  }
}

@media (min-width: 740px) and (max-width: 899px) {
  .header {
    width: 100%;
    height: 80px;
  }
  .header--main-page {
    opacity: 0;
    -webkit-transition: opacity 0.6s 0.3s ease-in-out, background 0.3s ease-in-out;
    transition: opacity 0.6s 0.3s ease-in-out, background 0.3s ease-in-out;
  }
  .header--main-page.show {
    opacity: 1;
  }
  .header--main-page.dark {
    background: rgba(31, 31, 33, 0.8) !important;
  }
  .header.events .container:last-child {
    display: none;
  }
  .header.events .events__back {
    margin-top: 15px;
  }
  .header.events .header__menu {
    width: 100vw;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .header.events .header__social {
    margin: 0px auto;
  }
  .header.events .header__menu .events__block {
    padding: 0px;
    margin-top: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .header.events .header__menu .events__block p {
    margin: 0px 0px 20px;
  }
  .header.events .header__menu .events__block ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .header.events .header__menu .events__block ul li {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 30px;
  }
  .header .container {
    width: 92%;
    height: 80px;
    position: relative;
  }
  .header.program .header__search, .header.media .header__search, .header.unplugged .header__search {
    display: none;
  }
  .header__logo {
    display: none;
  }
  .header__menu {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 120;
    background-color: #0e0e0e;
    padding: 80px 4%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
  }
  .header__menu.show-menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header__menu ul {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-right: 0;
  }
  .header__menu ul li {
    margin-right: 0;
  }
  .header__menu ul li:not(:last-of-type) {
    margin-bottom: 30px;
  }
  .header__menu ul li:hover a:after {
    width: 0;
  }
  .header__menu ul li:hover ul.mobile-submenu {
    display: block;
    opacity: 1;
  }
  .header__menu ul li:hover ul.mobile-submenu::before {
    display: none;
  }
  .header__menu ul li a {
    display: table;
    font-size: 18px;
  }
  .header__menu ul li a:hover:after {
    width: 0;
  }
  .header__menu ul li ul.mobile-submenu {
    width: 100%;
    height: auto;
    position: relative;
    top: auto;
    opacity: 1;
    display: block;
    padding-top: 20px;
    padding-left: 30px;
  }
  .header__menu ul li ul.mobile-submenu li:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .header__menu ul li ul.mobile-submenu li a {
    display: table;
    font-size: 16px;
  }
  .header__menu ul li ul.mobile-submenu li a:hover:after {
    width: 0;
  }
  .header__menu ul li ul.mobile-submenu:hover {
    display: block;
  }
  .header__social {
    width: 180px;
    height: 22px;
    position: absolute;
    left: 50%;
    bottom: 60px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin: 0;
    z-index: 150;
  }
  .header__social__item {
    display: inline-block;
    width: 20px;
    margin-right: 20px;
    opacity: 1;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }
  .header__social__item:last-of-type {
    margin-right: 0;
  }
  .header__social__item img {
    width: 100%;
  }
  .header__social__item:hover {
    opacity: 1;
  }
  .header__social__item--g-plus {
    width: 22px;
  }
  .header__social__item--g-plus img {
    width: 22px;
  }
  .header__social__item--linked-in {
    width: 18px;
  }
  .header__social__item--linked-in img {
    width: 18px;
  }
  .header__social__item--tw img {
    width: 22px;
  }
  .header__social__item--youtube img {
    width: 22px;
  }
  .header__social__item--fb {
    width: 18px;
  }
  .header__social__item--fb img {
    width: 18px;
  }
  .header__search {
    width: 24px;
    height: 24px;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 100;
  }
  .header__search img {
    width: 24px;
  }
  .header__hamburger {
    width: 24px;
    height: 18px;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    z-index: 150;
  }
  .header__hamburger.open span {
    left: -2px;
  }
  .header__hamburger.open span:nth-child(1) {
    top: 18px;
    width: 0;
    left: 50%;
  }
  .header__hamburger.open span:nth-child(2) {
    width: 29px;
    height: 3px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .header__hamburger.open span:nth-child(3) {
    width: 29px;
    height: 3px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .header__hamburger.open span:nth-child(4) {
    top: 18px;
    width: 0;
    left: 50%;
  }
  .header__hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }
  .header__hamburger span:nth-child(1) {
    top: 0;
  }
  .header__hamburger span:nth-child(2), .header__hamburger span:nth-child(3) {
    top: 8px;
  }
  .header__hamburger span:nth-child(4) {
    top: 16px;
  }
}

@media (min-width: 900px) and (max-width: 1160px) {
  .header {
    width: 100%;
    height: 80px;
  }
  .header--main-page {
    opacity: 0;
    -webkit-transition: opacity 0.6s 0.3s ease-in-out, background 0.3s ease-in-out;
    transition: opacity 0.6s 0.3s ease-in-out, background 0.3s ease-in-out;
  }
  .header--main-page.show {
    opacity: 1;
  }
  .header--main-page.dark {
    background: rgba(31, 31, 33, 0.8) !important;
  }
  .header.program .header__search, .header.media .header__search, .header.unplugged .header__search {
    display: none;
  }
  .header.events .container:last-child {
    display: none;
  }
  .header.events .header__menu {
    width: 100vw;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .header.events .header__social {
    margin: 0px auto;
  }
  .header.events .header__menu .events__block {
    padding: 0px;
    margin-top: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .header.events .header__menu .events__block p {
    margin: 0px 0px 20px;
  }
  .header.events .header__menu .events__block ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .header.events .header__menu .events__block ul li {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 30px;
  }
  .header .container {
    width: 92%;
    height: 80px;
    position: relative;
  }
  .header__logo {
    display: none;
  }
  .header__menu {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 120;
    background-color: #0e0e0e;
    padding: 80px 4%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
  }
  .header__menu.show-menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header__menu ul {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-right: 0;
  }
  .header__menu ul li {
    margin-right: 0;
  }
  .header__menu ul li:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .header__menu ul li:hover a:after {
    width: 0;
  }
  .header__menu ul li:hover ul.mobile-submenu {
    display: block;
  }
  .header__menu ul li a {
    display: table;
  }
  .header__menu ul li a:hover:after {
    width: 0;
  }
  .header__menu ul li ul.mobile-submenu {
    width: 100%;
    height: auto;
    position: relative;
    top: auto;
    opacity: 1;
    display: block;
    padding-top: 20px;
    padding-left: 30px;
  }
  .header__menu ul li ul.mobile-submenu::before {
    display: none;
  }
  .header__menu ul li ul.mobile-submenu li:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .header__menu ul li ul.mobile-submenu li a {
    display: table;
  }
  .header__menu ul li ul.mobile-submenu li a:hover:after {
    width: 0;
  }
  .header__menu ul li ul.mobile-submenu:hover {
    display: block;
  }
  .header__social {
    width: 180px;
    height: 22px;
    position: absolute;
    left: 50%;
    bottom: 60px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin: 0;
    z-index: 150;
  }
  .header__social__item {
    display: inline-block;
    width: 20px;
    margin-right: 20px;
    opacity: 1;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }
  .header__social__item:last-of-type {
    margin-right: 0;
  }
  .header__social__item img {
    width: 100%;
  }
  .header__social__item:hover {
    opacity: 1;
  }
  .header__social__item--g-plus {
    width: 22px;
  }
  .header__social__item--g-plus img {
    width: 22px;
  }
  .header__social__item--linked-in {
    width: 18px;
  }
  .header__social__item--linked-in img {
    width: 18px;
  }
  .header__social__item--tw img {
    width: 22px;
  }
  .header__social__item--youtube img {
    width: 22px;
  }
  .header__social__item--fb {
    width: 18px;
  }
  .header__social__item--fb img {
    width: 18px;
  }
  .header__search {
    width: 24px;
    height: 24px;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 100;
  }
  .header__search img {
    width: 24px;
  }
  .header__hamburger {
    width: 24px;
    height: 18px;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    z-index: 150;
  }
  .header__hamburger.open span {
    left: -2px;
  }
  .header__hamburger.open span:nth-child(1) {
    top: 18px;
    width: 0;
    left: 50%;
  }
  .header__hamburger.open span:nth-child(2) {
    width: 29px;
    height: 3px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .header__hamburger.open span:nth-child(3) {
    width: 29px;
    height: 3px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .header__hamburger.open span:nth-child(4) {
    top: 18px;
    width: 0;
    left: 50%;
  }
  .header__hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }
  .header__hamburger span:nth-child(1) {
    top: 0;
  }
  .header__hamburger span:nth-child(2), .header__hamburger span:nth-child(3) {
    top: 7px;
  }
  .header__hamburger span:nth-child(4) {
    top: 14px;
  }
}

@media (min-width: 740px) and (max-width: 899px) {
  .footer {
    height: 320px;
  }
  .footer .container {
    width: 92%;
  }
  .footer__item--links {
    width: 44%;
  }
  .footer__item__title {
    margin-bottom: 30px;
  }
  .footer__item__menu {
    width: 144px;
    margin-right: 10px;
  }
}

@media (min-width: 900px) and (max-width: 1160px) {
  .footer {
    height: 320px;
  }
  .footer .container {
    width: 92%;
  }
  .footer__item--links {
    width: 44%;
  }
  .footer__item__title {
    margin-bottom: 30px;
  }
  .footer__item__menu {
    width: 180px;
    margin-right: 10px;
  }
}

@media (min-width: 740px) and (max-width: 1160px) {
  .panel-accept .container {
    width: 92%;
  }
}

@media (min-width: 740px) and (max-width: 899px) {
  .search-popup .container {
    width: 590px;
  }
  .search-popup__close {
    top: 28px;
    left: 4%;
  }
  .search-popup__field {
    position: relative;
  }
  .search-popup__field input {
    font-size: 35px;
    line-height: 37px;
    padding-right: 50px;
    padding-bottom: 20px;
  }
  .search-popup__field a {
    width: 28px;
    bottom: 22px;
  }
  .speaker-popup {
    max-height: 100%;
    height: 100%;
    overflow: scroll;
  }
  .speaker-popup .container {
    width: 90%;
  }
  .speaker-popup__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 130px;
    padding-bottom: 100px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 100%;
  }
  .speaker-popup__inner--image {
    max-width: 715px;
    width: 100%;
    margin: 0px auto 32px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 420px;
  }
  .speaker-popup__inner--text {
    width: 100%;
    margin: 0px auto;
  }
  .popup__close {
    top: 72px;
  }
  .gallery {
    width: 580px;
    margin-top: 100px;
  }
  .gallery__close {
    top: -72px;
    right: -58px;
  }
  .gallery__slider {
    width: 580px;
  }
  .gallery__slider__item__img {
    height: 354px;
    max-height: 354px;
    margin-bottom: 20px;
  }
  .gallery__slider__item__info p {
    width: 100%;
  }
  .gallery__slider__item__info .media-photos__share {
    position: relative;
    right: initial;
    top: initial;
    margin-top: 10px;
  }
  .gallery__slider .slick-arrow.slick-prev {
    left: -84px;
  }
  .gallery__slider .slick-arrow.slick-next {
    right: -84px;
  }
  .gallery__slider .slick-arrow:hover {
    border: 2px solid #3163EB;
    background: transparent;
  }
  .gallery__slider .slick-arrow:hover.slick-next:after, .gallery__slider .slick-arrow:hover.slick-prev:after {
    opacity: initial;
  }
  .form-video {
    width: 740px;
  }
  .form-video__form {
    width: 640px;
  }
  .form-video__form .mktoFormRow {
    width: 45%;
  }
}

@media (min-width: 900px) and (max-width: 1160px) {
  .search-popup .container {
    width: 590px;
  }
  .search-popup__close {
    top: 28px;
    left: 4%;
  }
  .search-popup__field {
    position: relative;
  }
  .search-popup__field input {
    font-size: 35px;
    line-height: 37px;
    padding-right: 50px;
    padding-bottom: 20px;
  }
  .search-popup__field a {
    width: 28px;
    bottom: 22px;
  }
  .speaker-popup {
    max-height: 100%;
    height: 100%;
    overflow: scroll;
  }
  .speaker-popup .container {
    width: 90%;
  }
  .speaker-popup__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 130px;
    padding-bottom: 100px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 100%;
  }
  .speaker-popup__inner--image {
    max-width: 715px;
    width: 100%;
    margin: 0px auto 32px;
    height: 420px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .speaker-popup__inner--text {
    width: 100%;
    margin: 0px auto;
  }
  .popup__close {
    top: 72px;
  }
  .training-popup {
    max-height: 100%;
    height: 100%;
    overflow: scroll;
  }
  .training-popup__inner {
    padding-top: 90px;
    padding-bottom: 100px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 100%;
    min-height: 0px;
  }
  .training-popup .container {
    width: 90%;
  }
  .training-popup .popup__close {
    right: 30px;
    top: 30px;
  }
  .gallery {
    width: 720px;
    margin-top: 80px;
  }
  .gallery__close {
    top: -52px;
    right: -106px;
  }
  .gallery__slider {
    width: 720px;
  }
  .gallery__slider__item__img {
    height: 60vh;
    max-height: 460px;
  }
  .gallery__slider .slick-arrow:hover {
    border: 2px solid #3163EB;
    background: transparent;
  }
  .gallery__slider .slick-arrow:hover.slick-next:after, .gallery__slider .slick-arrow:hover.slick-prev:after {
    opacity: initial;
  }
  .form-video {
    width: 800px;
  }
  .form-video__form {
    width: 640px;
  }
  .form-video__form .mktoFormRow {
    width: 45%;
  }
}

@media (min-width: 740px) and (max-width: 1160px) {
  .thanks-popup .container {
    width: 90%;
  }
}

@media (min-width: 600px) and (max-width: 899px) {
  .training-popup {
    max-height: 100%;
    height: 100%;
    overflow: scroll;
  }
  .training-popup__inner {
    padding-top: 90px;
    padding-bottom: 100px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: auto;
  }
  .training-popup__form {
    width: 100%;
  }
  .training-popup .container {
    width: 90%;
  }
  .training-popup .popup__close {
    right: 30px;
    top: 30px;
  }
}

@media (min-width: 740px) and (max-width: 899px) {
  .form-fields__item--before-recaprtcha {
    margin-bottom: 45px;
  }
}

@media (min-width: 900px) and (max-width: 1160px) {
  .form-fields__item--before-recaprtcha {
    margin-bottom: 45px;
  }
}

@media (min-width: 740px) and (max-width: 899px) {
  .main-screen {
    height: 700px;
  }
  .main-screen .container {
    width: 560px;
  }
  .main-screen__video {
    display: none;
  }
  .main-screen__title h1 {
    font-family: 'KasperskySansText-Medium';
    font-size: 40px;
    line-height: 43px;
    text-align: center;
    color: #FFFFFF;
    letter-spacing: 1px;
  }
  .main-screen__title span {
    display: block;
    font-family: 'KasperskySansText-Medium';
    font-size: 24px;
    line-height: 27px;
    text-align: center;
    color: #FFFFFF;
    margin: 0 auto;
  }
  .main-screen__timer {
    width: 560px;
    margin-bottom: 45px;
  }
  .main-screen__timer__item {
    width: 140px;
    opacity: 0;
    -webkit-transition: opacity .6s ease-in-out;
    transition: opacity .6s ease-in-out;
  }
  .main-screen__timer__item:nth-of-type(1) {
    -webkit-transition-delay: .6s;
            transition-delay: .6s;
  }
  .main-screen__timer__item:nth-of-type(2) {
    -webkit-transition-delay: 1s;
            transition-delay: 1s;
  }
  .main-screen__timer__item:nth-of-type(3) {
    -webkit-transition-delay: 1.4s;
            transition-delay: 1.4s;
  }
  .main-screen__timer__item:nth-of-type(4) {
    -webkit-transition-delay: 1.8s;
            transition-delay: 1.8s;
  }
  .main-screen__timer__item.show {
    -webkit-transition: opacity .4s ease-in-out;
    transition: opacity .4s ease-in-out;
  }
  .main-screen__timer .time {
    width: 106px;
    height: 106px;
  }
  .main-screen__timer .time__down {
    width: 106px;
    height: 106px;
  }
  .main-screen__timer .time .progress-passive {
    width: 106px;
    height: 106px;
  }
  .main-screen__timer .time .progress-ring {
    width: 106px;
    height: 106px;
  }
  .main-screen__timer .time__number {
    width: 68px;
  }
  .main-screen__timer .time__number span {
    font-size: 30px;
    margin-bottom: 3px;
  }
  .main-screen__timer .time__number span.types {
    font-size: 11px;
    line-height: 14px;
    margin-bottom: 0;
  }
  .main-screen__place {
    margin-bottom: 30px;
  }
  .main-screen__place p {
    font-size: 14px;
    line-height: 24px;
  }
  .main-screen__place span {
    font-size: 14px;
    line-height: 24px;
  }
  .sponsors-screen {
    padding-top: 60px;
  }
  .sponsors-screen .container {
    width: 92%;
  }
  .sponsors-screen .container-company {
    width: 580px;
  }
  .sponsors-screen__title {
    margin-bottom: 30px;
  }
  .sponsors-screen__company--big .sponsors-screen__company__item {
    max-width: 136px;
    margin-right: 40px;
  }
  .sponsors-screen__company--big .sponsors-screen__company__item:nth-of-type(5n) {
    margin-right: 40px;
  }
  .sponsors-screen__company__item {
    max-width: 100px;
    margin-bottom: 50px;
    margin-right: 12px;
  }
  .sponsors-screen__company__item:nth-of-type(5n) {
    margin-right: 0;
  }
  .sponsors-screen__company__item img {
    width: 100%;
  }
  .sponsors-screen__info p {
    width: 100%;
  }
  .festival-screen {
    padding-top: 0;
    padding-bottom: 60px;
  }
  .festival-screen .festival-container {
    width: 92%;
  }
  .festival-screen .festival-block__btn a.primary-btn:hover span {
    color: #272727;
  }
  .opportunities-screen {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .opportunities-screen .container {
    width: 92%;
  }
  .opportunities-screen__title {
    margin-bottom: 30px;
  }
  .opportunities-screen__package {
    width: 92%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .opportunities-screen__package__item {
    width: 100%;
    max-width: 460px;
  }
  .opportunities-screen__package__item:first-of-type {
    margin-bottom: 24px;
  }
  .video-screen, .picture {
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .video-screen .container, .picture .container {
    width: 92%;
  }
  .video-screen .about-screen__placement, .picture .about-screen__placement {
    height: 100%;
    padding-top: 55px;
  }
  .video-screen .about-screen__placement:after, .picture .about-screen__placement:after {
    top: 30px;
    left: 45px;
  }
  .video-screen .about-screen__placement__place, .picture .about-screen__placement__place {
    width: 156px;
    margin-right: 40px;
    position: relative;
    opacity: 0;
    -webkit-transition: opacity .5s .6s ease-in-out;
    transition: opacity .5s .6s ease-in-out;
  }
  .video-screen .about-screen__placement__place.show, .picture .about-screen__placement__place.show {
    opacity: 1;
  }
  .video-screen .about-screen__placement__place:after, .picture .about-screen__placement__place:after {
    width: 124px;
    height: 114px;
    top: 18px;
    left: 24px;
  }
  .video-screen .about-screen__placement__place p, .picture .about-screen__placement__place p {
    font-size: 18px;
    line-height: 29px;
    margin-bottom: 25px;
  }
  .video-screen .about-screen__placement__place p.date, .picture .about-screen__placement__place p.date {
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 0;
  }
  .video-screen .about-screen__placement__about, .picture .about-screen__placement__about {
    width: 420px;
  }
  .video-screen .about-screen__placement__about__text, .picture .about-screen__placement__about__text {
    margin-bottom: 40px;
    opacity: 0;
    -webkit-transition: opacity .5s .6s ease-in-out;
    transition: opacity .5s .6s ease-in-out;
  }
  .video-screen .about-screen__placement__about__text.show, .picture .about-screen__placement__about__text.show {
    opacity: 1;
  }
  .video-screen .about-screen__placement__about__text p, .picture .about-screen__placement__about__text p {
    font-size: 24px;
    line-height: 35px;
    margin: 0;
  }
  .video-screen .about-screen__placement__about__text span, .picture .about-screen__placement__about__text span {
    color: #aac4fd;
  }
  .video-screen .about-screen__placement__about__btn, .picture .about-screen__placement__about__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .video-screen .about-screen__placement__about__btn__item, .picture .about-screen__placement__about__btn__item {
    opacity: 0;
    -webkit-transition: opacity .5s ease-in-out;
    transition: opacity .5s ease-in-out;
  }
  .video-screen .about-screen__placement__about__btn__item:first-of-type, .picture .about-screen__placement__about__btn__item:first-of-type {
    -webkit-transition-delay: .8s;
            transition-delay: .8s;
    margin-right: 20px;
  }
  .video-screen .about-screen__placement__about__btn__item:last-of-type, .picture .about-screen__placement__about__btn__item:last-of-type {
    -webkit-transition-delay: .9s;
            transition-delay: .9s;
  }
  .video-screen .about-screen__placement__about__btn__item.show, .picture .about-screen__placement__about__btn__item.show {
    opacity: 1;
  }
  .video-screen .about-screen__placement .container, .picture .about-screen__placement .container {
    width: 580px;
  }
  .video-screen__slider, .picture__slider {
    width: 580px;
  }
  .video-screen__slider__item, .picture__slider__item {
    height: 354px;
    overflow: hidden;
  }
  .video-screen__slider__post h3, .picture__slider__post h3 {
    top: 20px;
    left: 20px;
    font-size: 18px;
    line-height: 21px;
    margin-right: 20px;
  }
  .video-screen__slider__post a, .picture__slider__post a {
    width: 60px;
    height: 60px;
  }
  .video-screen__slider__post a:after, .picture__slider__post a:after {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 18px solid #171717;
    left: 55%;
  }
  .video-screen__slider__video, .picture__slider__video {
    height: 354px;
    display: block;
  }
  .video-screen__slider__video iframe, .picture__slider__video iframe {
    width: 100%;
    height: 354px;
  }
  .video-screen__slider .slick-arrow.slick-prev, .picture__slider .slick-arrow.slick-prev {
    left: -84px;
  }
  .video-screen__slider .slick-arrow.slick-next, .picture__slider .slick-arrow.slick-next {
    right: -84px;
  }
  .video-screen__slider .slick-arrow:hover, .picture__slider .slick-arrow:hover {
    border: 2px solid #3163eb;
    background: transparent;
  }
  .video-screen__slider .slick-arrow:hover.slick-next:after, .video-screen__slider .slick-arrow:hover.slick-prev:after, .picture__slider .slick-arrow:hover.slick-next:after, .picture__slider .slick-arrow:hover.slick-prev:after {
    opacity: initial;
  }
  .life-screen {
    padding-top: 80px;
    padding-bottom: 90px;
  }
  .life-screen .container {
    width: 92%;
    margin: 0 auto;
  }
  .life-screen__blocks {
    margin-bottom: 24px;
  }
  .life-screen__blocks__item {
    width: calc(50% - 15px);
    height: 280px;
    margin-right: 30px;
    margin-bottom: 24px;
  }
  .life-screen__blocks__item .msg-item__image {
    display: none;
  }
  .life-screen__blocks__item:nth-of-type(3n+1) {
    width: calc(50% - 15px);
    height: 280px;
  }
  .life-screen__blocks__item:nth-of-type(3n+1) .msg-item__image {
    display: block;
  }
  .life-screen__blocks__item:nth-of-type(3n+2) {
    width: calc(50% - 15px);
    height: 280px;
    margin-right: 0;
  }
  .life-screen__blocks__item:nth-of-type(3n+3) {
    width: 100%;
    height: 280px;
    margin-right: 0;
  }
  .life-screen__blocks__item:nth-of-type(3n+4) {
    width: calc(50% - 15px);
    height: 280px;
  }
  .life-screen__blocks__item:nth-of-type(3n+5) {
    width: calc(50% - 15px);
    height: 280px;
    margin-right: 0;
  }
  .life-screen__blocks__item:nth-of-type(3n+6) {
    width: 100%;
    height: 280px;
    margin-right: 0;
  }
  .life-screen__blocks__item .msg-item {
    position: relative;
  }
  .life-screen__blocks__item .msg-item__author {
    margin-bottom: 16px;
  }
  .life-screen__blocks__item .msg-item__author__name p {
    line-height: 15px;
  }
  .life-screen__blocks__item .msg-item__image {
    height: 180px;
  }
  .theme--blue .picture__slider__post a:after, .theme--blue .video-screen__slider__post a:after {
    border-left: 18px solid #04f !important;
  }
}

@media (min-width: 900px) and (max-width: 1160px) {
  .main-screen {
    height: 700px;
  }
  .main-screen .container {
    width: 560px;
  }
  .main-screen__bg {
    height: 700px;
  }
  .main-screen__video {
    display: none;
  }
  .main-screen__title h1 {
    font-family: 'KasperskySansText-Medium';
    font-size: 40px;
    line-height: 43px;
    text-align: center;
    color: #FFFFFF;
    letter-spacing: 1px;
  }
  .main-screen__title span {
    display: block;
    font-family: 'KasperskySansText-Medium';
    font-size: 24px;
    line-height: 27px;
    text-align: center;
    color: #FFFFFF;
    margin: 0 auto;
  }
  .main-screen__timer {
    width: 560px;
    margin-bottom: 45px;
  }
  .main-screen__timer__item {
    width: 140px;
    opacity: 0;
    -webkit-transition: opacity .6s ease-in-out;
    transition: opacity .6s ease-in-out;
  }
  .main-screen__timer__item:nth-of-type(1) {
    -webkit-transition-delay: .6s;
            transition-delay: .6s;
  }
  .main-screen__timer__item:nth-of-type(2) {
    -webkit-transition-delay: 1s;
            transition-delay: 1s;
  }
  .main-screen__timer__item:nth-of-type(3) {
    -webkit-transition-delay: 1.4s;
            transition-delay: 1.4s;
  }
  .main-screen__timer__item:nth-of-type(4) {
    -webkit-transition-delay: 1.8s;
            transition-delay: 1.8s;
  }
  .main-screen__timer__item.show {
    -webkit-transition: opacity .4s ease-in-out;
    transition: opacity .4s ease-in-out;
  }
  .main-screen__timer .time {
    width: 106px;
    height: 106px;
  }
  .main-screen__timer .time__down {
    width: 106px;
    height: 106px;
  }
  .main-screen__timer .time .progress-ring {
    width: 106px;
    height: 106px;
  }
  .main-screen__timer .time__number {
    width: 68px;
  }
  .main-screen__timer .time__number span {
    font-size: 30px;
    margin-bottom: 3px;
  }
  .main-screen__timer .time__number span.types {
    font-size: 11px;
    line-height: 14px;
    margin-bottom: 0;
  }
  .main-screen__place {
    margin-bottom: 30px;
  }
  .main-screen__place p {
    font-size: 14px;
    line-height: 24px;
  }
  .main-screen__place span {
    font-size: 14px;
    line-height: 24px;
  }
  .sponsors-screen {
    padding-top: 100px;
  }
  .sponsors-screen .container {
    width: 92%;
  }
  .sponsors-screen .container-company {
    width: 78%;
  }
  .sponsors-screen__title {
    margin-bottom: 30px;
  }
  .sponsors-screen__company--big .sponsors-screen__company__item {
    max-width: 150px;
    margin-right: 50px;
  }
  .sponsors-screen__company--big .sponsors-screen__company__item:nth-of-type(5n) {
    margin-right: 50px;
  }
  .sponsors-screen__company__item {
    max-width: 116px;
    margin-bottom: 50px;
    margin-right: 13px;
  }
  .sponsors-screen__company__item:nth-of-type(5n) {
    margin-right: 0;
  }
  .sponsors-screen__company__item img {
    width: 100%;
  }
  .sponsors-screen__info p {
    width: 100%;
  }
  .festival-screen {
    padding-top: 0;
    padding-bottom: 80px;
  }
  .festival-screen .festival-block__btn a.primary-btn:hover span {
    color: #272727;
  }
  .opportunities-screen {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .opportunities-screen .container {
    width: 950px;
  }
  .video-screen, .picture {
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .video-screen._new .container, .picture._new .container {
    width: 950px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .video-screen._new .about-screen__placement__about, .picture._new .about-screen__placement__about {
    width: 650px;
  }
  .video-screen .container, .picture .container {
    width: 92%;
  }
  .video-screen .about-screen__placement, .picture .about-screen__placement {
    height: 100%;
    padding-top: 55px;
  }
  .video-screen .about-screen__placement:after, .picture .about-screen__placement:after {
    top: 30px;
    left: 45px;
  }
  .video-screen .about-screen__placement__place, .picture .about-screen__placement__place {
    width: 156px;
    margin-right: 40px;
    position: relative;
    opacity: 0;
    -webkit-transition: opacity .5s .6s ease-in-out;
    transition: opacity .5s .6s ease-in-out;
  }
  .video-screen .about-screen__placement__place.show, .picture .about-screen__placement__place.show {
    opacity: 1;
  }
  .video-screen .about-screen__placement__place:after, .picture .about-screen__placement__place:after {
    width: 124px;
    height: 114px;
    top: 18px;
    left: 24px;
  }
  .video-screen .about-screen__placement__place p, .picture .about-screen__placement__place p {
    font-size: 18px;
    line-height: 29px;
    margin-bottom: 25px;
  }
  .video-screen .about-screen__placement__place p.date, .picture .about-screen__placement__place p.date {
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 0;
  }
  .video-screen .about-screen__placement__about, .picture .about-screen__placement__about {
    width: 420px;
  }
  .video-screen .about-screen__placement__about__text, .picture .about-screen__placement__about__text {
    margin-bottom: 40px;
    opacity: 0;
    -webkit-transition: opacity .5s .6s ease-in-out;
    transition: opacity .5s .6s ease-in-out;
  }
  .video-screen .about-screen__placement__about__text.show, .picture .about-screen__placement__about__text.show {
    opacity: 1;
  }
  .video-screen .about-screen__placement__about__text p, .picture .about-screen__placement__about__text p {
    font-size: 24px;
    line-height: 35px;
    margin: 0;
  }
  .video-screen .about-screen__placement__about__text span, .picture .about-screen__placement__about__text span {
    color: #aac4fd;
  }
  .video-screen .about-screen__placement__about__btn, .picture .about-screen__placement__about__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .video-screen .about-screen__placement__about__btn__item, .picture .about-screen__placement__about__btn__item {
    opacity: 0;
    -webkit-transition: opacity .5s ease-in-out;
    transition: opacity .5s ease-in-out;
  }
  .video-screen .about-screen__placement__about__btn__item:first-of-type, .picture .about-screen__placement__about__btn__item:first-of-type {
    -webkit-transition-delay: .8s;
            transition-delay: .8s;
    margin-right: 20px;
  }
  .video-screen .about-screen__placement__about__btn__item:last-of-type, .picture .about-screen__placement__about__btn__item:last-of-type {
    -webkit-transition-delay: .9s;
            transition-delay: .9s;
  }
  .video-screen .about-screen__placement__about__btn__item.show, .picture .about-screen__placement__about__btn__item.show {
    opacity: 1;
  }
  .video-screen .about-screen__placement .container, .picture .about-screen__placement .container {
    width: 78%;
  }
  .video-screen__slider, .picture__slider {
    width: 78%;
  }
  .video-screen__slider__item, .picture__slider__item {
    height: 400px;
    overflow: hidden;
  }
  .video-screen__slider__post h3, .picture__slider__post h3 {
    top: 20px;
    left: 20px;
    font-size: 18px;
    line-height: 21px;
    margin-right: 20px;
  }
  .video-screen__slider__post a, .picture__slider__post a {
    width: 60px;
    height: 60px;
  }
  .video-screen__slider__post a:after, .picture__slider__post a:after {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 18px solid #171717;
    left: 55%;
  }
  .video-screen__slider__video, .picture__slider__video {
    height: 400px;
    display: block;
  }
  .video-screen__slider__video iframe, .picture__slider__video iframe {
    width: 100%;
    height: 400px;
  }
  .video-screen__slider .slick-arrow.slick-prev, .picture__slider .slick-arrow.slick-prev {
    left: -112px;
  }
  .video-screen__slider .slick-arrow.slick-next, .picture__slider .slick-arrow.slick-next {
    right: -112px;
  }
  .video-screen__slider .slick-arrow:hover, .picture__slider .slick-arrow:hover {
    border: 2px solid #3163eb;
    background: transparent;
  }
  .video-screen__slider .slick-arrow:hover.slick-next:after, .video-screen__slider .slick-arrow:hover.slick-prev:after, .picture__slider .slick-arrow:hover.slick-next:after, .picture__slider .slick-arrow:hover.slick-prev:after {
    opacity: initial;
  }
  .life-screen {
    padding-top: 80px;
    padding-bottom: 90px;
  }
  .life-screen .container {
    width: 92%;
    margin: 0 auto;
  }
  .life-screen__blocks {
    margin-bottom: 24px;
  }
  .life-screen__blocks__item {
    width: calc(50% - 15px);
    height: 280px;
    margin-right: 30px;
    margin-bottom: 24px;
  }
  .life-screen__blocks__item .msg-item__image {
    display: none;
  }
  .life-screen__blocks__item:nth-of-type(3n+1) {
    width: calc(50% - 15px);
    height: 280px;
  }
  .life-screen__blocks__item:nth-of-type(3n+1) .msg-item__image {
    display: block;
  }
  .life-screen__blocks__item:nth-of-type(3n+2) {
    width: calc(50% - 15px);
    height: 280px;
    margin-right: 0;
  }
  .life-screen__blocks__item:nth-of-type(3n+3) {
    width: 100%;
    height: 280px;
    margin-right: 0;
  }
  .life-screen__blocks__item:nth-of-type(3n+4) {
    width: calc(50% - 15px);
    height: 280px;
  }
  .life-screen__blocks__item:nth-of-type(3n+5) {
    width: calc(50% - 15px);
    height: 280px;
    margin-right: 0;
  }
  .life-screen__blocks__item:nth-of-type(3n+6) {
    width: 100%;
    height: 280px;
    margin-right: 0;
  }
  .life-screen__blocks__item .msg-item {
    position: relative;
  }
  .life-screen__blocks__item .msg-item__author {
    margin-bottom: 16px;
  }
  .life-screen__blocks__item .msg-item__author__name p {
    line-height: 15px;
  }
  .life-screen__blocks__item .msg-item__image {
    height: 180px;
  }
  .theme--blue .picture__slider__post a:after, .theme--blue .video-screen__slider__post a:after {
    border-left: 18px solid #04f !important;
  }
}

@media (min-width: 740px) and (max-width: 899px) {
  .location-wrapper .container {
    width: 90%;
  }
  .location-main {
    min-height: 482px;
    padding-top: 140px;
  }
  .location-main__title span {
    font-size: 46px;
  }
  .location-main__text {
    width: 600px;
    -webkit-transition-delay: .5s;
            transition-delay: .5s;
  }
  .location-main__text p {
    font-size: 18px;
    line-height: 30px;
  }
  .location-hotel__placement {
    padding-top: 56px;
    padding-bottom: 60px;
  }
  .location-hotel__placement__place {
    width: 140px;
    margin-right: 50px;
  }
  .location-hotel__placement__place:after {
    width: 124px;
    height: 170px;
    top: 14px;
  }
  .location-hotel__placement__place p {
    font-size: 18px;
    line-height: 35px;
    margin-bottom: 10px;
  }
  .location-hotel__placement__place p.date {
    font-size: 14px;
    line-height: 20px;
  }
  .location-hotel__placement__about {
    width: 408px;
  }
  .location-hotel__placement__about__text p {
    font-size: 18px;
    line-height: 28px;
  }
  .location-hotel__placement__about__text p.small {
    font-size: 16px;
    line-height: 26px;
  }
  .location-hotel__placement__about__text a {
    font-size: 16px;
    line-height: 26px;
  }
  .location-hotel__placement .container {
    width: 90%;
  }
  .location-hotel .picture__slider {
    -webkit-transform: translateY(-120px);
            transform: translateY(-120px);
  }
  .location-venue {
    padding-top: 80px;
  }
  .location-travel {
    padding-top: 80px;
    padding-bottom: 130px;
  }
  .location-travel__about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .location-travel__about__description {
    width: 100%;
    margin-right: 0;
    padding-top: 0;
    margin-bottom: 40px;
  }
  .location-travel__about__description p {
    font-family: 'KasperskySansText-Medium';
    line-height: 28px;
    font-size: 18px;
  }
  .location-travel__about__sales {
    width: 100%;
  }
  .sales-card__item {
    width: 100%;
    min-height: 160px;
    padding: 20px 24px;
    margin-bottom: 20px;
  }
  .sales-card__item:last-of-type {
    margin-bottom: 0;
  }
  .sales-card__title h4 {
    font-size: 18px;
  }
  .sales-card p, .sales-card span, .sales-card a {
    font-size: 16px;
    line-height: 26px;
  }
}

@media (min-width: 900px) and (max-width: 1160px) {
  .location-wrapper .container {
    width: 90%;
  }
  .location-main {
    min-height: 482px;
    padding-top: 140px;
  }
  .location-main__title span {
    font-size: 46px;
  }
  .location-main__text {
    width: 600px;
    -webkit-transition-delay: .5s;
            transition-delay: .5s;
  }
  .location-main__text p {
    font-size: 18px;
    line-height: 30px;
  }
  .location-hotel__placement {
    padding-top: 56px;
    padding-bottom: 60px;
  }
  .location-hotel__placement__place {
    width: 180px;
    margin-right: 50px;
  }
  .location-hotel__placement__place:after {
    width: 170px;
    height: 170px;
    top: 14px;
  }
  .location-hotel__placement__place p {
    font-size: 18px;
    line-height: 35px;
    margin-bottom: 10px;
  }
  .location-hotel__placement__place p.date {
    font-size: 14px;
    line-height: 20px;
  }
  .location-hotel__placement__about {
    width: 520px;
  }
  .location-hotel__placement__about__text p {
    font-size: 18px;
    line-height: 28px;
  }
  .location-hotel__placement__about__text p.small {
    font-size: 16px;
    line-height: 26px;
  }
  .location-hotel__placement__about__text a {
    font-size: 16px;
    line-height: 26px;
  }
  .location-hotel__placement__about__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .location-hotel__placement__about__btn__item {
    opacity: 0;
    -webkit-transition: opacity .5s ease-in-out;
    transition: opacity .5s ease-in-out;
  }
  .location-hotel__placement__about__btn__item:first-of-type {
    -webkit-transition-delay: .8s;
            transition-delay: .8s;
    margin-right: 20px;
  }
  .location-hotel__placement__about__btn__item:last-of-type {
    -webkit-transition-delay: .9s;
            transition-delay: .9s;
  }
  .location-hotel__placement__about__btn__item.show {
    opacity: 1;
  }
  .location-hotel__placement .container {
    width: 90%;
  }
  .location-hotel .picture__slider {
    -webkit-transform: translateY(-120px);
            transform: translateY(-120px);
  }
  .location-venue {
    padding-top: 80px;
  }
  .location-travel {
    padding-top: 80px;
    padding-bottom: 130px;
  }
  .location-travel__about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .location-travel__about__description {
    width: 100%;
    margin-right: 0;
    padding-top: 0;
    margin-bottom: 40px;
  }
  .location-travel__about__description p {
    font-family: 'KasperskySansText-Medium';
    line-height: 28px;
    font-size: 18px;
  }
  .location-travel__about__sales {
    width: 100%;
  }
  .sales-card__item {
    width: 100%;
    max-width: 680px;
    min-height: 160px;
    padding: 20px 24px;
    margin-bottom: 20px;
  }
  .sales-card__item:last-of-type {
    margin-bottom: 0;
  }
  .sales-card__title h4 {
    font-size: 18px;
  }
  .sales-card p, .sales-card span, .sales-card a {
    font-size: 16px;
    line-height: 26px;
  }
}

@media (min-width: 740px) and (max-width: 899px) {
  .contacts-wrapper {
    width: 100%;
  }
  .contacts-wrapper .container {
    width: 90%;
  }
  .contacts-main {
    height: 500px;
    padding-top: 140px;
  }
  .contacts-main__title span {
    font-size: 46px;
  }
  .contacts-main__text p {
    font-size: 18px;
    line-height: 30px;
  }
  .contacts-info {
    width: 100%;
    -webkit-transform: translateY(-86px);
            transform: translateY(-86px);
  }
  .contacts-info .container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .contacts-info__questions {
    width: 590px;
  }
  .contacts-info__form {
    width: 100%;
    border-radius: 0;
    padding: 42px 25px 68px 25px;
  }
  .contacts-info__form h3 {
    font-size: 18px;
  }
  .contact-person h3 {
    font-size: 18px;
    margin: 0;
  }
  .contact-person p {
    font-size: 16px;
    line-height: 26px;
  }
  .contact-person a {
    font-size: 16px;
    line-height: 26px;
  }
  .contact-person__item {
    padding: 20px 24px 16px;
    margin-bottom: 20px;
  }
  .contact-person__item:nth-of-type(1) {
    -webkit-transition-delay: .65s;
            transition-delay: .65s;
  }
  .contact-person__item:nth-of-type(2) {
    -webkit-transition-delay: .75s;
            transition-delay: .75s;
  }
  .contact-person__item:nth-of-type(3) {
    -webkit-transition-delay: .85s;
            transition-delay: .85s;
  }
  .contact-person__text {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .contact-person__text:last-of-type {
    margin-top: 40px;
    margin-bottom: 60px;
  }
  .contact-person__text p {
    font-size: 18px;
  }
}

@media (min-width: 900px) and (max-width: 1160px) {
  .contacts-wrapper {
    width: 100%;
  }
  .contacts-wrapper .container {
    width: 90%;
  }
  .contacts-main {
    height: 500px;
    padding-top: 140px;
  }
  .contacts-main__title span {
    font-size: 46px;
  }
  .contacts-main__text p {
    font-size: 18px;
    line-height: 30px;
  }
  .contacts-info {
    width: 100%;
    -webkit-transform: translateY(-86px);
            transform: translateY(-86px);
  }
  .contacts-info .container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .contacts-info__questions {
    width: 590px;
  }
  .contacts-info__form {
    width: 100%;
    max-width: 590px;
    border-radius: 0;
    padding: 42px 25px 68px 25px;
  }
  .contacts-info__form h3 {
    font-size: 18px;
  }
  .contact-person h3 {
    font-size: 18px;
    margin: 0;
  }
  .contact-person p {
    font-size: 16px;
    line-height: 26px;
  }
  .contact-person a {
    font-size: 16px;
    line-height: 26px;
  }
  .contact-person__item {
    padding: 20px 24px 16px;
    margin-bottom: 20px;
  }
  .contact-person__item:nth-of-type(1) {
    -webkit-transition-delay: .65s;
            transition-delay: .65s;
  }
  .contact-person__item:nth-of-type(2) {
    -webkit-transition-delay: .75s;
            transition-delay: .75s;
  }
  .contact-person__item:nth-of-type(3) {
    -webkit-transition-delay: .85s;
            transition-delay: .85s;
  }
  .contact-person__text {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .contact-person__text:last-of-type {
    margin-top: 40px;
    margin-bottom: 60px;
  }
  .contact-person__text p {
    font-size: 18px;
  }
}

@media (min-width: 740px) and (max-width: 1160px) {
  .about-wrapper .container {
    width: 90%;
  }
  .about-main {
    padding-top: 140px;
  }
  .about-main__bg {
    height: 542px;
  }
  .about-main__title span {
    font-size: 46px;
  }
  .about-main__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 90px;
  }
  .about-main__text {
    width: 600px;
    -webkit-transition-delay: .5s;
            transition-delay: .5s;
    margin-bottom: 40px;
  }
  .about-main__text p {
    font-size: 16px;
    line-height: 26px;
  }
  .about-main__text p:first-of-type {
    font-size: 18px;
    line-height: 30px;
  }
  .about-main__themes {
    width: 100%;
    padding: 22px 22px 22px;
    margin-top: 0px;
  }
  .about-main__themes li {
    display: inline-block;
    width: 47%;
    font-size: 18px;
  }
  .about-main__themes li:nth-child(odd) {
    margin-right: 5%;
  }
}

@media (min-width: 740px) and (max-width: 1160px) {
  .program-wrapper .container {
    width: 92%;
  }
  .program-main {
    width: 100%;
    min-height: 420px;
    padding-top: 140px;
  }
  .program-main__text p {
    font-size: 18px;
    line-height: 30px;
  }
  .programs {
    padding-bottom: 90px;
  }
  .programs .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .programs.fixed .programs__content {
    margin: 0px auto;
    padding-top: 0px;
  }
  .programs__filter-tooltip {
    top: 80px;
  }
  .programs__filter-tooltip:after {
    bottom: 68px;
    -webkit-transform: translate(-50%, 0%) rotate(-180deg);
            transform: translate(-50%, 0%) rotate(-180deg);
  }
  .programs__touch-btn {
    display: block;
    position: fixed;
    top: 28px;
    right: 4%;
    z-index: 110;
  }
  .programs__touch-btn__item {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    margin-right: 20px;
  }
  .programs__touch-btn__item:last-of-type {
    margin-right: 0;
  }
  .programs__touch-btn__item .program-filter-check {
    fill: #fff;
  }
  .programs__touch-btn__item .program-check {
    stroke: #fff;
  }
  .programs__touch-btn__item .program-check--color {
    fill: #fff;
  }
  .programs__up-container {
    padding-top: 80px;
    padding-bottom: 36px;
  }
  .programs__up-container .container {
    width: 100%;
  }
  .programs__filter {
    width: 100%;
    /* height: 400px; */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #0E0E0E;
    z-index: 101;
    padding: 75px 5% 80px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition-delay: initial;
            transition-delay: initial;
    display: none;
  }
  .programs__filter__close {
    top: 28px;
    display: block;
  }
  .programs__filter p {
    font-size: 16px;
    line-height: 26px;
  }
  .programs__filter__panel {
    height: calc(100vh - 140px);
    overflow-y: scroll;
  }
  .programs__filter__panel ul {
    margin-bottom: 25px;
  }
  .programs__filter__panel ul li {
    margin-bottom: 15px;
    padding-top: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid #3C3C3C;
  }
  .programs__filter__panel ul li:last-of-type {
    margin-bottom: 0;
    border-bottom: none;
  }
  .programs__filter__panel ul li a {
    line-height: 28px;
    font-size: 16px;
  }
  .programs__filter__panel ul li a:hover {
    color: rgba(224, 224, 224, 0.6);
  }
  .programs__filter__panel ul li a:hover:before {
    height: 3px;
  }
  .programs__filter__panel ul li a.active {
    color: #fff;
  }
  .programs__filter__panel ul li a.active:before {
    height: 12px;
  }
  .programs__filter__panel .all-topics {
    margin-bottom: 0;
  }
  .programs__filter__btn {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    opacity: 1;
    visibility: visible;
    background: #0E0E0E;
    padding: 86px 0 60px;
    z-index: 103;
    display: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .programs__filter__btn__item {
    width: 282px;
    margin: 0;
    margin-right: 30px;
  }
  .programs__filter__btn__item:last-of-type {
    margin-bottom: 0;
    margin-right: 0;
  }
  .programs__filter__btn__item a {
    width: 100%;
  }
  .programs__content {
    width: 100%;
  }
  .programs__search {
    width: 100%;
    /* height: 400px; */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #0E0E0E;
    z-index: 102;
    padding: 80px 5% 60px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: none;
    -webkit-transition-delay: initial;
            transition-delay: initial;
  }
  .programs__search input {
    width: 590px;
    display: block;
    padding-left: 0;
    margin: 0 auto;
    padding-right: 40px;
  }
  .programs__search svg {
    display: none;
  }
  .programs__search__btn {
    width: 16px;
    height: 16px;
    display: block;
    position: absolute;
    right: calc((100% - 604px) / 2);
    top: 75px;
    padding: 10px;
  }
  .programs__search__btn svg.tablet-icon {
    display: block;
    top: initial;
    left: initial;
    position: relative;
  }
  .program-events {
    padding-top: 80px;
    padding-bottom: 90px;
  }
  .program-events__text {
    margin-bottom: 40px;
  }
  .events-card {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .events-card h3 {
    font-size: 18px;
    line-height: 23px;
  }
  .events-card p {
    font-size: 16px;
    line-height: 21px;
  }
  .events-card__item {
    width: 590px;
    min-height: 180px;
    padding: 25px 24px;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .events-card__title {
    margin-bottom: 10px;
  }
  .events-card__text {
    margin-bottom: 12px;
  }
  .events-card__info {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .events-card__info__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .events-card__info__item p {
    font-size: 15px;
    line-height: 18px;
  }
  .events-card__info__item span {
    font-size: 15px;
    line-height: 18px;
  }
  .schedule {
    width: 100%;
  }
  .schedule__title {
    padding: 24px;
  }
  .schedule__title:after {
    right: 28px;
  }
  .schedule__title span {
    font-size: 18px;
  }
  .schedule__title span.day {
    margin-bottom: 5px;
  }
  .schedule__title span.date {
    line-height: 19px;
  }
  .schedule__subtitle {
    padding: 24px;
  }
  .schedule__subtitle p {
    font-size: 16px;
    line-height: 19px;
  }
  .schedule__subtitle span.name {
    font-size: 15px;
    line-height: 19px;
  }
  .schedule__item {
    padding: 18px 24px;
  }
  .schedule__item__time {
    width: 90px;
    margin-right: 15px;
  }
  .schedule__item__time span {
    font-size: 14px;
    line-height: 18px;
  }
  .schedule__item__title {
    width: calc(100% - 145px);
    margin-right: 24px;
  }
  .schedule__item__title p {
    font-size: 14px;
    line-height: 18px;
  }
  .schedule__item__title span {
    font-size: 14px;
    line-height: 18px;
  }
  .schedule__content {
    display: none;
  }
  .theme--blue .programs__touch-btn__item.active-icon .program-check {
    stroke: #04f;
  }
  .theme--blue .programs__touch-btn__item.active-icon .program-filter-check {
    stroke: #04f;
    fill: #04f;
  }
  .theme--blue .phone-search-icon {
    fill: #04f;
  }
  .theme--orange .programs__touch-btn__item.active-icon .program-check {
    stroke: #FFAD31;
  }
  .theme--orange .programs__touch-btn__item.active-icon .program-filter-check {
    stroke: #FFAD31;
    fill: #ffad31;
  }
  .theme--orange .phone-search-icon {
    fill: #ffad31;
  }
}

@media (min-width: 740px) and (max-width: 1200px) {
  .search-wrapper .container {
    width: 90%;
  }
  .search-main {
    padding-top: 140px;
  }
  .search-main__title span {
    font-size: 46px;
  }
  .search-main__title span span {
    display: none;
  }
  .search-results {
    padding-bottom: 90px;
  }
  .search-results__list {
    max-width: 770px;
    width: 100%;
  }
}

@media (min-width: 740px) and (max-width: 1200px) {
  .participants-wrapper .container {
    width: 90%;
  }
  .participants-main {
    padding-top: 140px;
  }
  .participants-main__bg {
    height: 542px;
  }
  .participants-main__title span {
    font-size: 46px;
  }
  .participants-main__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 90px;
  }
  .participants-main__text {
    width: 600px;
    -webkit-transition-delay: .5s;
            transition-delay: .5s;
    margin-bottom: 40px;
  }
  .participants-main__text p {
    font-size: 16px;
    line-height: 26px;
  }
  .participants-main__text p:nth-of-type(1) {
    font-size: 18px;
    line-height: 30px;
  }
  .participants-main__text p:nth-of-type(2) {
    font-size: 18px;
    line-height: 30px;
  }
  .participants-main__form {
    max-width: 690px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (min-width: 850px) and (max-width: 1200px) {
  .speakers-wrapper .container {
    width: 90%;
  }
  .speakers-main {
    padding-top: 140px;
    padding-bottom: 100px;
  }
  .speakers-main__bg {
    height: 542px;
  }
  .speakers-main__title span {
    font-size: 46px;
  }
  .speakers-main__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 90px;
  }
  .speakers-main__text {
    width: 100%;
    -webkit-transition-delay: .5s;
            transition-delay: .5s;
    margin-bottom: 0px;
  }
  .speakers-main__text p {
    font-size: 18px;
    line-height: 30px;
  }
  .speakers-list__card {
    width: calc(100%/3 - 35px);
    margin-right: 50px;
  }
  .speakers-list__card:nth-child(4n) {
    margin-right: 50px;
  }
  .speakers-list__card:nth-child(3n) {
    margin-right: 0px;
  }
  .speakers-guide {
    padding-bottom: 90px;
  }
  .speakers-guide__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .speakers-guide__inner--instructions {
    width: 100%;
  }
  .speakers-guide__inner--text {
    width: 100%;
    margin: 0px auto;
  }
  .speakers-guide__inner--form {
    margin: 50px auto 0px;
  }
}

@media (min-width: 740px) and (max-width: 850px) {
  .speakers-wrapper .container {
    width: 90%;
  }
  .speakers-main {
    padding-top: 140px;
    padding-bottom: 100px;
  }
  .speakers-main__bg {
    height: 542px;
  }
  .speakers-main__title span {
    font-size: 46px;
  }
  .speakers-main__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 90px;
  }
  .speakers-main__text {
    width: 100%;
    -webkit-transition-delay: .5s;
            transition-delay: .5s;
    margin-bottom: 0px;
  }
  .speakers-main__text p {
    font-size: 18px;
    line-height: 30px;
  }
  .speakers-list__card {
    width: calc(100%/2 - 20px);
    margin-right: 40px;
  }
  .speakers-list__card--avatar {
    height: 250px;
  }
  .speakers-list__card:nth-child(4n) {
    margin-right: 0px;
  }
  .speakers-list__card:nth-child(3n) {
    margin-right: 40px;
  }
  .speakers-list__card:nth-child(2n) {
    margin-right: 0px;
  }
  .speakers-guide {
    padding-bottom: 90px;
  }
  .speakers-guide__title h2 {
    font-size: 46px;
    line-height: 55px;
    margin-bottom: 5px;
  }
  .speakers-guide__title p {
    font-size: 18px;
    line-height: 32px;
  }
  .speakers-guide__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .speakers-guide__inner--instructions {
    width: 100%;
  }
  .speakers-guide__inner--instructions p {
    font-size: 15px;
    line-height: 20px;
  }
  .speakers-guide__inner--text {
    width: 100%;
    margin: 0px auto;
  }
  .speakers-guide__inner--form {
    margin: 50px auto 0px;
    width: 100%;
  }
  .speakers-guide__inner ul li {
    margin-bottom: 0px;
  }
}

@media (min-width: 740px) and (max-width: 1160px) {
  .training-wrapper .container {
    width: 90%;
  }
  .training-list__block--headline p .training-main {
    padding-top: 140px;
    padding-bottom: 60px;
    height: auto;
  }
  .training-list__block--headline p .training-main__title span {
    font-size: 46px;
  }
  .training-list__block--headline p .training-main__text {
    margin-bottom: 0px;
  }
  .training-list__block--headline p .training-main__text p {
    font-size: 18px;
    line-height: 30px;
  }
  .training-list {
    padding-top: 75px;
    padding-bottom: 86px;
  }
  .training-list__block--headline p {
    font-size: 18px;
  }
  .training-list__block--inner:last-child .training-list__block--content {
    border-bottom: none;
  }
}

@media (min-width: 740px) and (max-width: 1160px) {
  .media-wrapper {
    padding-bottom: 90px;
  }
  .media-wrapper .container {
    width: 92%;
  }
  .media-main {
    height: 520px;
    padding-top: 120px;
  }
  .media-main__title span {
    font-size: 46px;
  }
  .media-main__text {
    margin-bottom: 30px;
  }
  .media-main__text p {
    font-size: 18px;
    line-height: 30px;
  }
  .media-content {
    width: 100%;
    -webkit-transform: initial;
            transform: initial;
    position: relative;
    top: -140px;
  }
  .media-content__touch-btn {
    display: block;
    position: fixed;
    top: 28px;
    right: 4%;
    z-index: 110;
  }
  .media-content__touch-btn__item {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    margin-right: 20px;
  }
  .media-content__touch-btn__item:last-of-type {
    margin-right: 0;
  }
  .media-content__touch-btn__item .program-filter-check {
    fill: #fff;
  }
  .media-content__touch-btn__item .program-check {
    stroke: #fff;
  }
  .media-content__touch-btn__item .program-check--color {
    fill: #fff;
  }
  .media-content__submenu {
    margin-bottom: 30px;
  }
  .media-content__search {
    display: none;
  }
  .media-content__search__close {
    position: absolute;
    top: 28px;
    left: 4%;
    display: block;
  }
  .media-content__search__close img {
    width: 24px;
    height: 24px;
  }
  .media-content__search-mob {
    margin-bottom: 48px;
    position: absolute;
  }
  .media-content__search-mob.show {
    -webkit-transform: initial;
            transform: initial;
  }
  .media-content__search-mob .media-content__search__close {
    position: absolute;
    top: 28px;
    left: 4%;
    display: block;
  }
  .media-content__search-mob .media-content__search__close img {
    width: 24px;
    height: 24px;
  }
  .media-content__search-mob__close {
    position: absolute;
    top: 28px;
    left: 4%;
    display: block;
  }
  .media-content__search-mob__close img {
    width: 24px;
    height: 24px;
  }
  .media-content__screen .container {
    width: 100%;
    -webkit-transform: initial;
            transform: initial;
  }
  .media-search {
    width: 100%;
    /* height: 400px; */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #0E0E0E;
    z-index: 102;
    padding: 85px 5% 65px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: block;
    -webkit-transition-delay: initial;
            transition-delay: initial;
  }
  .media-search input {
    width: 590px;
    display: block;
    padding-left: 0;
    margin: 0 auto;
    padding-right: 44px;
  }
  .media-search svg {
    display: none;
  }
  .media-search__btn {
    width: 16px;
    height: 16px;
    display: block;
    position: absolute;
    right: calc((100% - 604px)/ 2);
    top: 75px;
    padding: 10px;
  }
  .media-search__btn svg.tablet-icon {
    display: block;
    top: initial;
    left: initial;
    position: relative;
  }
  .media-coverage__item,
  .media-blog__item {
    padding: 22px 130px 20px 24px;
  }
  .media-coverage h3,
  .media-blog h3 {
    font-size: 18px;
    line-height: 21px;
  }
  .media-coverage__logo,
  .media-blog__logo {
    right: 24px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .media-coverage__logo img,
  .media-blog__logo img {
    max-width: 120px;
  }
  .media-video__item,
  .media-photos__item,
  .hidden-video__item {
    width: 100%;
    height: 502px;
    margin-bottom: 20px;
  }
  .media-video__item:nth-last-of-type(2),
  .media-photos__item:nth-last-of-type(2),
  .hidden-video__item:nth-last-of-type(2) {
    margin-bottom: 20px;
  }
  .media-video__video,
  .media-photos__video,
  .hidden-video__video {
    height: 328px;
    margin-bottom: 20px;
  }
  .media-video__video__preview,
  .media-photos__video__preview,
  .hidden-video__video__preview {
    height: 328px;
  }
  .media-video__video__block,
  .media-photos__video__block,
  .hidden-video__video__block {
    height: 328px;
  }
  .media-video__video__block iframe,
  .media-photos__video__block iframe,
  .hidden-video__video__block iframe {
    height: 328px;
  }
  .media-video__img,
  .media-photos__img,
  .hidden-video__img {
    height: 328px;
  }
  .media-video__info,
  .media-photos__info,
  .hidden-video__info {
    padding-left: 22px;
    padding-right: 22px;
  }
  .media-video__info__title,
  .media-photos__info__title,
  .hidden-video__info__title {
    margin-bottom: 12px;
  }
  .media-video__share,
  .media-photos__share,
  .hidden-video__share {
    left: 22px;
  }
  .media-photos__item {
    height: 446px;
  }
  .media-subscrible {
    width: 90%;
    padding-top: 50px;
  }
  .media-subscrible .container {
    width: 376px;
  }
  .media-subscrible h3 {
    line-height: 23px;
    font-size: 20px;
    margin-bottom: 40px;
  }
  .media-subscrible span.error-checkbox {
    font-family: 'KasperskySansText-Medium';
    font-size: 11px;
    line-height: 13px;
    color: #ed2993;
    position: absolute;
    bottom: -15px;
  }
}

@media (min-width: 900px) and (max-width: 1160px) {
  .media-content__more__text {
    width: calc(100% - 240px);
    margin-right: 60px;
  }
  .media-video__item,
  .media-photos__item,
  .hidden-video__item {
    width: calc(50% - 15px);
    height: 432px;
    margin-bottom: 30px;
  }
  .media-video__item:nth-last-of-type(2),
  .media-photos__item:nth-last-of-type(2),
  .hidden-video__item:nth-last-of-type(2) {
    margin-bottom: 0;
  }
  .media-video__video,
  .media-photos__video,
  .hidden-video__video {
    height: 258px;
    margin-bottom: 20px;
  }
  .media-video__video__preview,
  .media-photos__video__preview,
  .hidden-video__video__preview {
    height: 258px;
  }
  .media-video__video__block,
  .media-photos__video__block,
  .hidden-video__video__block {
    height: 258px;
  }
  .media-video__video__block iframe,
  .media-photos__video__block iframe,
  .hidden-video__video__block iframe {
    height: 258px;
  }
  .media-video__img,
  .media-photos__img,
  .hidden-video__img {
    height: 244px;
  }
  .media-video__info,
  .media-photos__info,
  .hidden-video__info {
    padding-left: 22px;
    padding-right: 22px;
  }
  .media-video__info__title,
  .media-photos__info__title,
  .hidden-video__info__title {
    margin-bottom: 12px;
  }
  .media-video__share,
  .media-photos__share,
  .hidden-video__share {
    left: 22px;
  }
  .media-photos__item {
    height: 376px;
  }
}

@media (min-width: 740px) and (max-width: 1200px) {
  .sponsorship-wrapper .container {
    width: 90%;
  }
  .sponsorship__text--content p a:before {
    display: none;
  }
}

@media (min-width: 740px) and (max-width: 1200px) {
  .archive-wrapper .container {
    width: 90%;
  }
}

@media (min-width: 740px) and (max-width: 1200px) {
  .parked-wrapper .container {
    width: 90%;
  }
  .parked-main__title h1 {
    font-family: 'KasperskySansText-Medium';
    font-size: 40px;
    line-height: 43px;
    text-align: center;
    color: #FFFFFF;
    letter-spacing: 1px;
  }
  .parked-main__title span {
    display: block;
    font-family: 'KasperskySansText-Medium';
    font-size: 24px;
    line-height: 27px;
    text-align: center;
    color: #FFFFFF;
    margin: 0 auto;
  }
}

@media (min-width: 740px) and (max-width: 1200px) {
  .event-wrapper .container {
    width: 90%;
  }
  .event-wrapper .container .container {
    width: 100%;
  }
  .event-wrapper .media {
    padding-top: 80px;
  }
  .event-wrapper .event-main__down.animated-arrow {
    display: none;
  }
  .event-wrapper .video-screen .container {
    width: 78%;
  }
  .event-main {
    padding-top: 160px;
    height: initial;
  }
  .about-sas__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-sas__text {
    width: 100%;
    margin: 0px auto 40px;
  }
  .about-sas__list {
    width: 100%;
    margin: 0px auto;
  }
  .speakers__title {
    margin-bottom: 30px;
  }
  .speakers__text {
    margin-bottom: 40px;
  }
  .travel {
    padding-top: 80px;
  }
}

@media (min-width: 740px) and (max-width: 1160px) {
  .code-wrapper .container {
    width: 90%;
  }
  .code-main {
    padding-top: 100px;
  }
  .code-main__title span {
    font-size: 46px;
  }
  .code-main__text {
    -webkit-transition-delay: .5s;
            transition-delay: .5s;
  }
  .code-main__text p {
    font-size: 16px;
    line-height: 26px;
  }
}

.code-text__list {
  padding-bottom: 90px;
}

.code-text__list--text p {
  font-size: 16px;
  line-height: 26px;
}

@media (min-width: 740px) and (max-width: 1200px) {
  .not-found-wrapper .container {
    width: 90%;
  }
  .not-found-main {
    height: auto;
    min-height: 560px;
  }
  .not-found-main__text h1 {
    font-size: 64px;
    line-height: 68px;
  }
  .not-found-main__text p {
    font-size: 16px;
    line-height: 23px;
  }
}

@media (min-width: 740px) and (max-width: 1160px) {
  .unplugged-wrapper .container {
    width: 90%;
  }
  .unplugged-wrapper .programs__up-container {
    padding-top: 30px;
  }
  .unplugged-wrapper .programs__up-container .container {
    width: 100%;
  }
  .unplugged-main {
    min-height: 490px;
    padding-top: 140px;
    padding-bottom: 160px;
  }
  .unplugged-main__title span {
    font-size: 46px;
    line-height: 52px;
  }
  .unplugged-main__text p {
    font-size: 18px;
    line-height: 30px;
  }
  .unplugged-about__placement {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .unplugged-about__placement__place {
    width: 220px;
  }
  .unplugged-about__placement__place:after {
    width: 140px;
    height: 120px;
  }
  .unplugged-about__placement__place p {
    font-size: 16px;
    line-height: 24px;
  }
  .unplugged-about__placement__place p:first-of-type {
    font-size: 20px;
    line-height: 29px;
  }
  .unplugged-about__placement__about {
    width: calc(100% - 160px);
  }
  .unplugged-about__placement .container {
    width: 90%;
  }
  .workshop-block {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .workshop-block__title {
    margin-bottom: 25px;
  }
  .workshop__content {
    display: none;
  }
  .workshop__content__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 25px 30px;
  }
  .workshop__content__trainers {
    width: 100%;
    margin-right: 0;
  }
  .workshop__content__description {
    width: 100%;
  }
  .trainer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 30px;
  }
  .trainer h4 {
    width: 100%;
  }
  .trainer__item {
    width: calc(50% - 20px);
  }
  .trainer__item:not(:last-of-type) {
    margin-bottom: 20px;
  }
}

@media (min-width: 900px) and (max-width: 1160px) {
  .startup .container {
    width: 90%;
  }
  .startup__main {
    padding-top: 136px;
  }
  .startup__main__text {
    width: 420px;
  }
  .startup__main__text p {
    font-size: 18px;
    line-height: 30px;
  }
  .startup__placement .about-screen__placement {
    padding-top: 56px;
    padding-bottom: 60px;
  }
  .startup__placement .about-screen__placement .container {
    width: 90%;
  }
  .startup__placement .about-screen__placement__place:after {
    width: 124px;
    height: 160px;
  }
  .startup__placement .about-screen__placement__place p {
    font-size: 18px;
    line-height: 35px;
    margin-bottom: 14px;
  }
  .startup__placement .about-screen__placement__place p.date {
    font-size: 14px;
  }
  .startup__placement .about-screen__placement__place__line {
    margin-bottom: 14px;
  }
  .startup__placement .about-screen__placement__logo {
    width: 120px;
    bottom: auto;
    top: 140px;
  }
  .startup__placement .about-screen__placement__about__text p {
    font-size: 16px;
    line-height: 23px;
  }
  .startup__placement .about-screen__placement__about__text p:first-of-type {
    font-size: 20px;
    line-height: 29px;
  }
  .startup__benefits {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .startup__benefits__steps__item {
    width: 190px;
  }
  .startup__benefits__steps__item:not(:last-of-type) {
    margin-right: 36px;
  }
  .startup__benefits__steps__number span {
    font-size: 72px;
    line-height: 84px;
  }
  .startup__benefits__steps__text p {
    font-size: 20px;
    line-height: 23px;
  }
  .startup__showcase {
    padding-top: 80px;
    padding-bottom: 114px;
  }
  .startup__showcase__format {
    width: 600px;
    margin-right: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .startup__showcase__criteria {
    width: 600px;
    margin-bottom: 60px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .startup__showcase__panel {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 100px;
  }
  .startup__showcase__panel__text p {
    font-size: 20px;
    line-height: 23px;
  }
  .startup__showcase__panel__text p:first-of-type {
    font-size: 18px;
    line-height: 26px;
  }
  .startup__showcase .showcase-format {
    color: #fff;
  }
  .startup__showcase .showcase-format__title {
    padding-top: 30px;
    margin-bottom: 16px;
  }
  .startup__showcase .showcase-format__title span {
    font-family: 'KasperskySansText-Medium';
    font-size: 24px;
    line-height: 28px;
    margin: 0;
  }
  .startup__showcase .showcase-format__text {
    margin-bottom: 50px;
  }
  .startup__showcase .showcase-format__text p {
    font-size: 18px;
    line-height: 21px;
  }
  .startup__showcase .showcase-format__desc:not(:last-of-type) {
    margin-bottom: 60px;
  }
  .startup__showcase .showcase-format__desc__title {
    margin-bottom: 40px;
    position: relative;
  }
  .startup__showcase .showcase-format__desc__title span {
    font-size: 24px;
    line-height: 28px;
  }
  .startup__showcase .showcase-criteria__content p {
    font-size: 18px;
    line-height: 24px;
  }
  .startup__showcase .showcase-criteria__content__item p {
    font-size: 18px;
    line-height: 21px;
  }
}

@media (min-width: 740px) and (max-width: 899px) {
  .startup .container {
    width: 90%;
  }
  .startup__main {
    min-height: 554px;
    padding-top: 136px;
    padding-bottom: 80px;
  }
  .startup__main__title {
    width: 420px;
  }
  .startup__main__text {
    width: 420px;
  }
  .startup__main__text p {
    font-size: 18px;
    line-height: 30px;
  }
  .startup__placement {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    background: #1f1f21;
  }
  .startup__placement .about-screen__placement {
    padding-top: 56px;
    padding-bottom: 60px;
  }
  .startup__placement .about-screen__placement .container {
    width: 90%;
  }
  .startup__placement .about-screen__placement__place:after {
    width: 124px;
    height: 160px;
  }
  .startup__placement .about-screen__placement__place p {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .startup__placement .about-screen__placement__place__line {
    margin-bottom: 12px;
  }
  .startup__placement .about-screen__placement__logo {
    width: 120px;
    top: 140px;
    bottom: auto;
  }
  .startup__placement .about-screen__placement__about__text p {
    font-size: 16px;
    line-height: 23px;
  }
  .startup__placement .about-screen__placement__about__text p:first-of-type {
    font-size: 20px;
    line-height: 29px;
  }
  .startup__benefits {
    padding-top: 10px;
    padding-bottom: 40px;
  }
  .startup__benefits__steps {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .startup__benefits__steps__item {
    width: 190px;
    margin-bottom: 40px;
  }
  .startup__benefits__steps__item:not(:last-of-type) {
    margin-right: 50px;
  }
  .startup__benefits__steps__item:nth-of-type(3) {
    margin-right: 0;
  }
  .startup__benefits__steps__number span {
    font-size: 72px;
    line-height: 84px;
  }
  .startup__benefits__steps__text p {
    font-size: 20px;
    line-height: 23px;
  }
  .startup__showcase {
    padding-top: 80px;
    padding-bottom: 114px;
  }
  .startup__showcase__format {
    width: 100%;
    margin-right: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .startup__showcase__criteria {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .startup__showcase__panel {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 80px;
  }
  .startup__showcase .showcase-format {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .startup__showcase .showcase-format__title {
    width: 100%;
  }
  .startup__showcase .showcase-format__text {
    width: 100%;
    margin-bottom: 24px;
  }
  .startup__showcase .showcase-format__text p {
    font-size: 18px;
    line-height: 21px;
  }
  .startup__showcase .showcase-format__desc {
    width: calc(50% - 30px);
  }
  .startup__showcase .showcase-format__desc:not(:last-of-type) {
    margin-bottom: 0;
  }
  .startup__showcase .showcase-format__desc__title {
    margin-bottom: 30px;
  }
  .startup__showcase .showcase-format__desc__title span {
    font-size: 24px;
    line-height: 28px;
  }
  .startup__showcase .showcase-format__desc__title:after {
    bottom: -20px;
  }
  .startup__showcase .showcase-format__desc__content {
    width: 100%;
  }
  .startup__showcase .showcase-format__desc__content p {
    font-size: 14px;
    line-height: 21px;
  }
  .startup__showcase .showcase-format__desc__content ul li {
    font-size: 14px;
    line-height: 21px;
    padding-left: 12px;
  }
  .startup__showcase .showcase-format__desc__content ul li:before {
    width: 4px;
    height: 4px;
    top: 10px;
  }
  .startup__showcase .showcase-criteria {
    width: 100%;
    margin-bottom: 60px;
  }
  .startup__showcase .showcase-criteria__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .startup__showcase .showcase-criteria__content p {
    font-size: 18px;
    line-height: 24px;
  }
  .startup__showcase .showcase-criteria__content__item {
    width: 300px;
  }
  .startup__showcase .showcase-criteria__content__item:nth-of-type(odd) {
    margin-right: 30px;
  }
  .startup__showcase .showcase-criteria__content__item p {
    font-size: 18px;
    line-height: 21px;
  }
}

@media (min-width: 320px) and (max-width: 739px) {
  a.primary-btn:hover span {
    color: #3163EB;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  a.primary-btn:hover span:before {
    -webkit-animation: initial;
            animation: initial;
  }
  a.primary-btn:hover svg,
  a.primary-btn:hover img {
    opacity: 0;
    visibility: hidden;
    -webkit-animation: initial;
            animation: initial;
  }
  .hidden-message {
    font-size: 30px;
    line-height: 34px;
  }
  a.second-btn:hover {
    border: 2px solid rgba(255, 255, 255, 0.6);
  }
  a.second-btn:hover span {
    color: #FFFFFF;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  a.second-btn:hover img {
    opacity: 0;
    visibility: hidden;
    -webkit-animation: initial;
            animation: initial;
  }
  input[type="color"],
  input[type="date"],
  input[type="datetime"],
  input[type="datetime-local"],
  input[type="email"],
  input[type="month"],
  input[type="number"],
  input[type="password"],
  input[type="search"],
  input[type="tel"],
  input[type="text"],
  input[type="time"],
  input[type="url"],
  input[type="week"],
  select:focus,
  textarea {
    font-size: 16px;
  }
}

@media (min-width: 320px) and (max-width: 739px) {
  .footer {
    height: auto;
    padding-bottom: 22px;
  }
  .footer .container {
    width: 90%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__item {
    width: 100%;
  }
  .footer__item--links {
    width: 100%;
    margin-bottom: 45px;
  }
  .footer__item--mobile {
    display: block;
  }
  .footer__item__title h2 {
    letter-spacing: 0.5px;
  }
  .footer__item__social {
    width: 180px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: 50px;
  }
  .footer__item__social__item {
    width: 22px;
    margin-right: 20px;
  }
  .footer__item__social__item:last-of-type {
    margin-right: 0;
  }
  .footer__item__social__item img {
    width: 22px;
  }
  .footer__item__logo {
    display: none;
  }
  .footer__item__copy {
    display: none;
  }
  .footer__item__menu li {
    margin-bottom: 12px;
  }
  .footer__item__menu li a {
    font-size: 14px;
    line-height: 17px;
  }
  .footer__item__mobile-logo {
    max-width: 140px;
  }
  .footer__item__mobile-logo img {
    width: 100%;
  }
  .footer__item__mobile-copy p {
    font-family: 'KasperskySansText-Medium';
    font-size: 13px;
    line-height: 24px;
    color: #FFFFFF;
    opacity: 0.5;
    margin: 0;
  }
}

@media (min-width: 320px) and (max-width: 739px) {
  .header {
    width: 100%;
    height: 60px;
  }
  .header--main-page {
    opacity: 0;
    -webkit-transition: opacity 0.6s 0.3s ease-in-out, background 0.3s ease-in-out;
    transition: opacity 0.6s 0.3s ease-in-out, background 0.3s ease-in-out;
  }
  .header--main-page.show {
    opacity: 1;
  }
  .header--main-page.dark {
    background: rgba(31, 31, 33, 0.8) !important;
  }
  .header.events .container:last-child {
    display: none;
  }
  .header.events .events__back {
    margin-top: 15px;
  }
  .header.events .header__menu {
    width: 100vw;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .header.events .header__social {
    margin: 0px auto;
  }
  .header.events .header__menu .events__block {
    padding: 0px;
    margin-top: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .header.events .header__menu .events__block p {
    margin: 0px 0px 20px;
  }
  .header.events .header__menu .events__block ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .header.events .header__menu .events__block ul li {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 20px;
  }
  .header.program .header__search, .header.media .header__search, .header.unplugged .header__search {
    display: none;
  }
  .header .container {
    width: 90%;
    height: 60px;
    position: relative;
  }
  .header__logo {
    display: none;
  }
  .header__menu {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 120;
    background-color: #0e0e0e;
    padding: 60px 5%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    overflow: scroll;
  }
  .header__menu.show-menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header__menu:before {
    content: "";
    width: 100%;
    height: 60px;
    background-color: #0e0e0e;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 130;
  }
  .header__menu ul {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-right: 0;
  }
  .header__menu ul li {
    margin-right: 0;
  }
  .header__menu ul li:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .header__menu ul li:hover a:after {
    width: 0;
  }
  .header__menu ul li:hover ul.mobile-submenu {
    display: block;
  }
  .header__menu ul li a {
    display: table;
    font-size: 16px;
  }
  .header__menu ul li a:hover:after {
    width: 0;
  }
  .header__menu ul li ul.mobile-submenu {
    width: 100%;
    height: auto;
    position: relative;
    top: auto;
    opacity: 1;
    display: block;
    padding-top: 20px;
    padding-left: 30px;
  }
  .header__menu ul li ul.mobile-submenu::before {
    display: none;
  }
  .header__menu ul li ul.mobile-submenu li:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .header__menu ul li ul.mobile-submenu li a {
    display: table;
    font-size: 15px;
  }
  .header__menu ul li ul.mobile-submenu li a:hover:after {
    width: 0;
  }
  .header__menu ul li ul.mobile-submenu:hover {
    display: block;
  }
  .header__social {
    width: 180px;
    height: 22px;
    margin: 0 auto;
    margin-top: 40px;
  }
  .header__social__item {
    display: inline-block;
    width: 20px;
    margin-right: 20px;
    opacity: 1;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }
  .header__social__item:last-of-type {
    margin-right: 0;
  }
  .header__social__item img {
    width: 100%;
  }
  .header__social__item:hover {
    opacity: 1;
  }
  .header__social__item--g-plus {
    width: 22px;
  }
  .header__social__item--g-plus img {
    width: 22px;
  }
  .header__social__item--linked-in {
    width: 18px;
  }
  .header__social__item--linked-in img {
    width: 18px;
  }
  .header__social__item--tw img {
    width: 22px;
  }
  .header__social__item--youtube img {
    width: 22px;
  }
  .header__social__item--fb {
    width: 18px;
  }
  .header__social__item--fb img {
    width: 18px;
  }
  .header__search {
    width: 24px;
    height: 24px;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 100;
  }
  .header__search img {
    width: 24px;
  }
  .header__hamburger {
    width: 24px;
    height: 18px;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    z-index: 150;
  }
  .header__hamburger.open span {
    left: -2px;
  }
  .header__hamburger.open span:nth-child(1) {
    top: 18px;
    width: 0;
    left: 50%;
  }
  .header__hamburger.open span:nth-child(2) {
    width: 29px;
    height: 3px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .header__hamburger.open span:nth-child(3) {
    width: 29px;
    height: 3px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .header__hamburger.open span:nth-child(4) {
    top: 18px;
    width: 0;
    left: 50%;
  }
  .header__hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }
  .header__hamburger span:nth-child(1) {
    top: 0;
  }
  .header__hamburger span:nth-child(2), .header__hamburger span:nth-child(3) {
    top: 8px;
  }
  .header__hamburger span:nth-child(4) {
    top: 16px;
  }
}

@media (min-width: 320px) and (max-width: 739px) {
  .panel-accept {
    height: 140px;
  }
  .panel-accept.hide {
    -webkit-transform: translateY(140px);
            transform: translateY(140px);
  }
  .panel-accept .container {
    width: 90%;
    height: 140px;
    margin: 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .panel-accept__text {
    width: 100%;
    margin-right: 0;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .panel-accept__text p {
    line-height: 15px;
    font-size: 10px;
  }
  .panel-accept__btn a {
    width: 250px;
  }
}

@media (min-width: 320px) and (max-width: 739px) {
  .search-popup .container {
    width: 90%;
  }
  .search-popup__close {
    top: 18px;
    left: 5%;
  }
  .search-popup__field {
    width: 100%;
    position: relative;
  }
  .search-popup__field input {
    font-size: 16px;
    line-height: 16px;
    padding: 0 40px 12px 0;
  }
  .search-popup__field a {
    width: 22px;
    bottom: 12px;
  }
  .search-popup__field img {
    width: 100%;
  }
  .search-popup input[type="submit"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
  }
  .speaker-popup {
    max-height: 100%;
    height: 100%;
    overflow: scroll;
  }
  .speaker-popup .container {
    width: 90%;
  }
  .speaker-popup__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 100px;
    padding-bottom: 90px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 100%;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .speaker-popup__inner--image {
    max-width: 715px;
    width: 100%;
    margin: 0px auto 32px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .speaker-popup__inner--name, .speaker-popup__inner--company, .speaker-popup__inner--tlink {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .speaker-popup__inner--text {
    width: 100%;
    margin: 0px auto;
  }
  .speaker-popup__inner--description p {
    line-height: 23px;
  }
  .popup__close {
    top: 40px;
  }
  .thanks-popup .container {
    width: 90%;
  }
  .thanks-popup__inner--text h3 {
    font-size: 40px;
    line-height: 44px;
    margin-bottom: 20px;
  }
  .thanks-popup__inner--text p br {
    display: none;
  }
  .gallery {
    width: 100%;
    margin-top: 72px;
    left: initial;
    -webkit-transform: initial;
            transform: initial;
  }
  .gallery__close {
    top: 20px;
    left: 5%;
    right: initial;
  }
  .gallery__slider {
    width: 100%;
  }
  .gallery__slider__item__img {
    height: 350px;
    max-height: 350px;
    margin-bottom: 24px;
  }
  .gallery__slider__item__info p {
    display: none;
  }
  .gallery__slider__item .media-photos__share {
    left: 50%;
    bottom: 50px;
    right: initial;
    top: initial;
    position: absolute;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .gallery__slider__item .media-photos__share__text {
    display: none;
  }
  .gallery__slider__item .media-photos__share p {
    display: none;
  }
  .gallery__slider .slick-arrow {
    width: 42px;
    height: 42px;
    border-radius: initial;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    -webkit-transition: initial;
    transition: initial;
    z-index: 1;
    border: none !important;
  }
  .gallery__slider .slick-arrow:before {
    display: none;
  }
  .gallery__slider .slick-arrow.slick-prev {
    left: 0;
  }
  .gallery__slider .slick-arrow.slick-next {
    right: 0;
  }
  .gallery__slider .slick-arrow:hover {
    border: none;
    background: rgba(0, 0, 0, 0.8);
  }
  .gallery__slider .slick-arrow:hover.slick-next:after, .gallery__slider .slick-arrow:hover.slick-prev:after {
    opacity: 1;
  }
  .form-video {
    width: 100%;
    max-height: 90vh;
    overflow-y: scroll;
  }
  .form-video__content {
    width: 100%;
    padding-top: 60px;
    padding-bottom: 30px;
    border-radius: 0;
  }
  .form-video__form {
    width: 90%;
  }
  .form-video__form h3 {
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 20px;
  }
  .form-video__form .mktoForm {
    padding: 0;
  }
  .form-video__form .mktoForm input[type="text"],
  .form-video__form .mktoForm input[type="email"],
  .form-video__form .mktoForm input[type="number"] {
    padding-bottom: 12px;
  }
  .form-video__form .mktoFormRow {
    width: 100%;
    margin-bottom: 25px;
  }
  .form-video__form .mktoFormRow:nth-of-type(12) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .form-video__form .mktoFormRow:nth-of-type(12) .mktoFormCol {
    width: calc(100% - 44px) !important;
  }
  .form-video__form .mktoFormRow:nth-of-type(12) .mktoFieldDescriptor {
    width: 42px !important;
  }
  .theme--blue.search-popup input[type=submit] {
    color: #3163eb;
  }
  .theme--orange.search-popup input[type=submit] {
    color: #FFBA54;
  }
}

@media (min-width: 320px) and (max-width: 600px) {
  .training-popup {
    max-height: 100%;
    height: 100%;
    overflow: scroll;
  }
  .training-popup__inner {
    padding-top: 90px;
    padding-bottom: 100px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .training-popup__form {
    width: 100%;
    border-radius: 0px;
    padding: 26px 15px;
  }
  .training-popup .container {
    width: 100%;
  }
  .training-popup .popup__close {
    right: 25px;
    top: 25px;
  }
  .speaker-popup__inner--image {
    height: 300px;
  }
}

@media (min-width: 320px) and (max-width: 739px) {
  .form-fields {
    width: 100%;
  }
  .form-fields__item--before-recaprtcha {
    margin-bottom: 30px;
  }
  .form-fields__recapthca {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    margin-bottom: 30px;
    position: absolute;
    left: -5%;
    bottom: 60px;
  }
  input[type="submit"] {
    margin-top: 120px;
  }
}

@media (min-width: 320px) and (max-width: 739px) {
  .main-screen {
    height: 510px;
    padding-top: 60px;
  }
  .main-screen .container {
    width: 90%;
  }
  .main-screen__bg {
    display: none;
  }
  .main-screen__bg-mobile {
    width: 100%;
    height: 510px;
    display: block;
    background-image: url("/images/index/main-section.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .main-screen__video {
    display: none;
  }
  .main-screen__title {
    margin-bottom: 40px;
  }
  .main-screen__title h1 {
    font-size: 24px;
    line-height: 27px;
    letter-spacing: 0.5px;
    margin-top: 10px;
  }
  .main-screen__title span {
    font-size: 18px;
    line-height: 21px;
  }
  .main-screen__timer {
    width: 290px;
    margin-bottom: 40px;
  }
  .main-screen__timer__item {
    width: 58px;
  }
  .main-screen__timer .time {
    width: 58px;
    height: 58px;
  }
  .main-screen__timer .time .progress-passive {
    width: 58px;
    height: 58px;
  }
  .main-screen__timer .time .progress-ring {
    width: 58px;
    height: 58px;
  }
  .main-screen__timer .time__number {
    width: 44px;
  }
  .main-screen__timer .time__number span {
    font-size: 18px;
    margin-bottom: 0;
  }
  .main-screen__timer .time__number span.types {
    font-size: 9px;
    line-height: 12px;
  }
  .main-screen__place {
    margin-bottom: 40px;
  }
  .main-screen__place p {
    font-size: 14px;
    line-height: 24px;
  }
  .main-screen__place span {
    font-size: 14px;
    line-height: 24px;
  }
  .main-screen__place__btn a {
    width: 250px;
  }
  .main-screen__sponsors__item:not(:last-of-type) {
    margin-right: 10px;
  }
  .main-screen__down {
    display: none;
  }
  .sponsors-screen {
    padding-top: 56px;
    padding-bottom: 20px;
    background: #1f1f21;
  }
  .sponsors-screen .container {
    width: 90%;
  }
  .sponsors-screen .container-company {
    width: 90%;
  }
  .sponsors-screen__title {
    margin-bottom: 30px;
  }
  .sponsors-screen__title span {
    font-size: 18px;
    line-height: 21px;
  }
  .sponsors-screen__company {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .sponsors-screen__company--big .sponsors-screen__company__item {
    width: calc(50% - 14px);
    margin-bottom: 25px;
    margin-right: 28px;
  }
  .sponsors-screen__company--big .sponsors-screen__company__item:nth-of-type(2n) {
    margin-right: 0;
  }
  .sponsors-screen__company__item {
    width: 30%;
    margin-bottom: 25px;
    margin-right: 8px;
  }
  .sponsors-screen__company__item img {
    width: 100%;
  }
  .sponsors-screen__line {
    margin-bottom: 25px;
  }
  .sponsors-screen__info {
    margin-bottom: 40px;
  }
  .sponsors-screen__info p {
    width: 100%;
  }
  .festival-screen {
    padding-top: 60px;
    padding-bottom: 0;
  }
  .festival-screen .festival-container {
    width: 100%;
    margin: 0;
  }
  .festival-screen .festival-block {
    min-height: auto;
    padding-top: 32px;
    border-radius: 0;
  }
  .festival-screen .festival-block__decor {
    display: none;
  }
  .festival-screen .festival-block__title {
    width: 250px;
    margin-bottom: 16px;
  }
  .festival-screen .festival-block__title p {
    font-size: 16px;
    line-height: 21px;
  }
  .festival-screen .festival-block__img {
    margin-bottom: 46px;
  }
  .festival-screen .festival-block__img img:nth-of-type(1) {
    width: 210px;
    margin-bottom: 40px;
  }
  .festival-screen .festival-block__img img:nth-of-type(2) {
    width: 190px;
  }
  .festival-screen .festival-block__btn {
    width: 250px;
    margin: 0 auto;
  }
  .festival-screen .festival-block__btn a.primary-btn {
    width: 100%;
  }
  .opportunities-screen {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .opportunities-screen .container {
    width: 90%;
  }
  .opportunities-screen__title {
    margin-bottom: 30px;
  }
  .opportunities-screen__title span {
    font-size: 18px;
    line-height: 21px;
  }
  .opportunities-screen__package {
    width: 90%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .opportunities-screen__package__item {
    width: 100%;
  }
  .opportunities-screen__package__item:first-of-type {
    margin-bottom: 24px;
  }
  .opportunities-screen .package {
    padding: 24px 16px 32px 16px;
  }
  .opportunities-screen .package__title h4 {
    font-size: 21px;
    line-height: 24px;
  }
  .opportunities-screen .package__desc ul li img {
    width: 16px;
  }
  .opportunities-screen .package__desc ul li p {
    width: calc(100% - 28px);
    font-size: 16px;
    line-height: 20px;
  }
  .opportunities-screen .package__desc ul li p > span {
    display: block;
    padding-left: 0;
  }
  .opportunities-screen .package__price-list {
    margin-bottom: 32px;
  }
  .opportunities-screen .package__price-list p span {
    font-size: 16px;
  }
  .opportunities-screen .package__price-list p span:first-of-type {
    display: block;
  }
  .video-screen, .picture {
    padding-top: 0;
    padding-bottom: 60px;
  }
  .video-screen._new, .picture._new {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    padding-bottom: 80px;
  }
  .video-screen .container, .picture .container {
    width: 100%;
    margin: 0;
  }
  .video-screen .about-screen__placement, .picture .about-screen__placement {
    width: 100%;
    height: auto;
    border-radius: 0;
    padding-top: 56px;
    padding-bottom: 45px;
  }
  .video-screen .about-screen__placement:after, .picture .about-screen__placement:after {
    width: 300%;
    top: 10px;
    left: 10px;
  }
  .video-screen .about-screen__placement__place, .picture .about-screen__placement__place {
    width: 100%;
    margin-bottom: 75px;
  }
  .video-screen .about-screen__placement__place:after, .picture .about-screen__placement__place:after {
    width: 110px;
    height: 110px;
    top: 15px;
    left: 10px;
  }
  .video-screen .about-screen__placement__place__line, .picture .about-screen__placement__place__line {
    margin-bottom: 18px;
  }
  .video-screen .about-screen__placement__place p, .picture .about-screen__placement__place p {
    font-size: 18px;
    line-height: 29px;
    margin-bottom: 18px;
  }
  .video-screen .about-screen__placement__place p.date, .picture .about-screen__placement__place p.date {
    font-size: 14px;
    line-height: 25px;
  }
  .video-screen .about-screen__placement__about, .picture .about-screen__placement__about {
    width: 100%;
  }
  .video-screen .about-screen__placement__about__text p, .picture .about-screen__placement__about__text p {
    font-size: 24px;
    line-height: 35px;
  }
  .video-screen .about-screen__placement__about__btn, .picture .about-screen__placement__about__btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .video-screen .about-screen__placement__about__btn__item:first-of-type, .picture .about-screen__placement__about__btn__item:first-of-type {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .video-screen .about-screen__placement__about__btn__item a, .picture .about-screen__placement__about__btn__item a {
    width: 250px;
  }
  .video-screen .about-screen__placement .container, .picture .about-screen__placement .container {
    width: 90%;
    margin: 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .video-screen__slider, .picture__slider {
    width: 100%;
    margin: 0;
    -webkit-transform: initial;
            transform: initial;
  }
  .video-screen__slider__item, .picture__slider__item {
    height: 334px;
    overflow: hidden;
  }
  .video-screen__slider__post h3, .picture__slider__post h3 {
    top: 25px;
    left: 5%;
    font-size: 18px;
    line-height: 21px;
    margin-right: 5%;
  }
  .video-screen__slider__post a, .picture__slider__post a {
    width: 62px;
    height: 62px;
  }
  .video-screen__slider__post a:after, .picture__slider__post a:after {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 20px solid #171717;
  }
  .video-screen__slider__video, .picture__slider__video {
    height: 334px;
    display: block;
  }
  .video-screen__slider__video iframe, .picture__slider__video iframe {
    width: 100%;
    height: 334px;
  }
  .video-screen__slider .slick-arrow, .picture__slider .slick-arrow {
    width: 42px;
    height: 42px;
    border-radius: initial;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    -webkit-transition: initial;
    transition: initial;
    z-index: 1;
    border: none !important;
  }
  .video-screen__slider .slick-arrow:before, .picture__slider .slick-arrow:before {
    display: none;
  }
  .video-screen__slider .slick-arrow.slick-prev, .picture__slider .slick-arrow.slick-prev {
    left: 0;
  }
  .video-screen__slider .slick-arrow.slick-next, .picture__slider .slick-arrow.slick-next {
    right: 0;
  }
  .video-screen__slider .slick-arrow:hover, .picture__slider .slick-arrow:hover {
    border: none;
    background: rgba(0, 0, 0, 0.8);
  }
  .video-screen__slider .slick-arrow:hover.slick-next:after, .video-screen__slider .slick-arrow:hover.slick-prev:after, .picture__slider .slick-arrow:hover.slick-next:after, .picture__slider .slick-arrow:hover.slick-prev:after {
    opacity: 1;
  }
  .video-screen__slider ul.slick-dots, .picture__slider ul.slick-dots {
    bottom: -38px;
  }
  .life-screen {
    padding-top: 56px;
    padding-bottom: 60px;
  }
  .life-screen .container {
    width: 90%;
  }
  .life-screen__title {
    margin-bottom: 40px;
  }
  .life-screen__title span {
    font-size: 18px;
    line-height: 21px;
  }
  .life-screen__blocks {
    margin-bottom: 25px;
  }
  .life-screen__blocks__item {
    width: 100%;
    height: 304px;
    background: #1F1F1F;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .life-screen__blocks__item .msg-item__image {
    display: none;
  }
  .life-screen__blocks__item:nth-of-type(1n) {
    width: 100%;
    margin-right: 0;
  }
  .life-screen__blocks__item:nth-of-type(1n) .msg-item__image {
    display: none;
  }
  .life-screen__blocks__item:nth-of-type(2n) {
    width: 100%;
    margin-right: 0;
    background: linear-gradient(207.66deg, #04f -1.53%, #784bf8 95.59%);
  }
  .life-screen__blocks__item:nth-of-type(2n) .msg-item__text a {
    color: #aac4fd;
  }
  .life-screen__blocks__item:nth-of-type(2n) .msg-item__image {
    display: none;
  }
  .life-screen__blocks__item:nth-of-type(2n) .msg-item__tag a {
    color: #aac4fd;
  }
  .life-screen__blocks__item .msg-item__author {
    margin-bottom: 16px;
  }
  .life-screen__blocks__item .msg-item__image {
    display: none;
  }
  .life-screen__blocks__item .msg-item__msg {
    bottom: 20px;
  }
  .life-screen__blocks__item .msg-item__reply {
    bottom: 18px;
  }
  .life-screen__more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .theme--blue .picture__slider__post a:after, .theme--blue .video-screen__slider__post a:after {
    border-left: 20px solid #04f !important;
  }
}

@media (min-width: 320px) and (max-width: 739px) {
  .location-wrapper .container {
    width: 90%;
  }
  .location-main {
    width: 100%;
    min-height: 440px;
    padding-top: 100px;
    padding-bottom: 50px;
    background-position: center center;
  }
  .location-main__title span {
    line-height: 40px;
    font-size: 38px;
  }
  .location-main__text {
    width: 100%;
  }
  .location-main__text p {
    font-size: 18px;
    line-height: 30px;
  }
  .location-hotel {
    padding-bottom: 60px;
  }
  .location-hotel .container {
    width: 100%;
  }
  .location-hotel__placement {
    border-radius: 0;
    padding-top: 56px;
    padding-bottom: 45px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .location-hotel__placement:after {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url("/../images/index/dots.png");
    background-size: contain;
    background-position: center center;
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 10;
  }
  .location-hotel__placement__place {
    width: 170px;
    margin-bottom: 30px;
  }
  .location-hotel__placement__place:after {
    width: 110px;
    height: 120px;
    top: 13px;
    left: 10px;
  }
  .location-hotel__placement__place p {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 10px;
  }
  .location-hotel__placement__place p.date {
    font-size: 14px;
  }
  .location-hotel__placement__about {
    width: 100%;
  }
  .location-hotel__placement__about__text {
    margin-bottom: 0;
  }
  .location-hotel__placement__about__text p {
    font-family: 'KasperskySansText-Medium';
    font-size: 16px;
    line-height: 26px;
    color: #FFFFFF;
    margin-bottom: 10px;
  }
  .location-hotel__placement__about__text p.small {
    font-size: 14px;
  }
  .location-hotel__placement__about__text a {
    font-size: 14px;
  }
  .location-hotel__placement .container {
    width: 90%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .location-hotel .picture__slider {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .location-venue {
    padding-top: 50px;
  }
  .location-venue__title {
    margin-bottom: 18px;
  }
  .location-venue__about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .location-venue__about__text {
    width: 100%;
  }
  .location-venue__about__text p {
    font-size: 16px;
    line-height: 26px;
  }
  .location-venue__map {
    height: 320px;
  }
  .location-travel {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .location-travel__title {
    margin-bottom: 18px;
  }
  .location-travel__about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .location-travel__about__description {
    width: 100%;
    margin-right: 0;
    padding-top: 0;
    margin-bottom: 40px;
  }
  .location-travel__about__description p {
    line-height: 26px;
    font-size: 16px;
  }
  .location-travel__about__sales {
    width: 100%;
  }
  .sales-card__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: 260px;
    padding: 25px;
    margin-bottom: 20px;
  }
  .sales-card__logo {
    margin-bottom: 30px;
  }
  .sales-card__content {
    width: 100%;
  }
  .sales-card__title {
    margin-bottom: 18px;
  }
  .sales-card__title h4 {
    font-size: 18px;
    line-height: 25px;
  }
  .sales-card p {
    font-size: 16px;
    line-height: 26px;
  }
  .sales-card a {
    font-size: 16px;
    line-height: 26px;
  }
  .sales-card span {
    font-size: 16px;
    line-height: 26px;
  }
}

@media (min-width: 320px) and (max-width: 739px) {
  .contacts-wrapper .container {
    width: 90%;
  }
  .contacts-main {
    height: 560px;
    padding-top: 140px;
    background-position: center center;
  }
  .contacts-main__title {
    margin-bottom: 16px;
  }
  .contacts-main__title span {
    line-height: 44px;
    font-size: 38px;
  }
  .contacts-main__text {
    width: 100%;
  }
  .contacts-main__text p {
    font-size: 18px;
    line-height: 30px;
  }
  .contacts-info {
    width: 100%;
    -webkit-transform: translateY(-70px);
            transform: translateY(-70px);
  }
  .contacts-info .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contacts-info__questions {
    width: 100%;
  }
  .contacts-info__form {
    width: 111%;
    border-radius: 0;
    padding: 20px 5% 30px 5%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transform: translateY(0) translateX(-5%);
            transform: translateY(0) translateX(-5%);
  }
  .contacts-info__form.show {
    -webkit-transform: translateY(0) translateX(-5%);
            transform: translateY(0) translateX(-5%);
  }
  .contacts-info__form h3 {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 15px;
  }
  .contact-person__item {
    width: 100%;
    padding: 25px 24px 20px 24px;
    margin-bottom: 20px;
  }
  .contact-person__text {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .contact-person__text:last-of-type {
    margin-bottom: 40px;
  }
  .contact-person__contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact-person__contacts__item {
    width: 100%;
    margin-bottom: 10px;
  }
  .contact-person__contacts__item:last-of-type {
    margin-bottom: 0;
  }
  .contact-person h3 {
    font-size: 18px;
    line-height: 25px;
  }
  .contact-person p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 10px;
  }
  .contact-person a {
    font-size: 16px;
    line-height: 26px;
  }
}

@media (min-width: 320px) and (max-width: 739px) {
  .about-wrapper .container {
    width: 90%;
  }
  .about-main {
    width: 100%;
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .about-main__bg {
    height: 340px;
    background-position: center center;
  }
  .about-main__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 5px;
  }
  .about-main__title span {
    line-height: 40px;
    font-size: 38px;
  }
  .about-main__text {
    width: 100%;
    margin: 0px auto 25px;
  }
  .about-main__text p {
    font-size: 16px;
    line-height: 26px;
  }
  .about-main__text p:first-of-type {
    font-size: 18px;
    line-height: 30px;
  }
  .about-main__themes {
    width: 100%;
    padding: 25px 23px 25px;
    margin-top: 0px;
  }
  .about-main__themes li {
    font-size: 18px;
  }
}

@media (min-width: 320px) and (max-width: 739px) {
  .program-wrapper .container {
    width: 90%;
  }
  .program-main {
    min-height: 420px;
    padding-top: 100px;
    padding-bottom: 60px;
    background-position: center center;
  }
  .program-main__title span {
    font-size: 38px;
    line-height: 44px;
  }
  .program-main__text {
    width: 100%;
  }
  .program-main__text p {
    font-size: 18px;
    line-height: 29px;
  }
  .programs {
    padding-bottom: 60px;
  }
  .programs .container {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .programs__filter-tooltip {
    top: 75px;
  }
  .programs__filter-tooltip:after {
    bottom: 68px;
    -webkit-transform: translate(-50%, 0%) rotate(-180deg);
            transform: translate(-50%, 0%) rotate(-180deg);
  }
  .programs__touch-btn {
    display: block;
    position: fixed;
    top: 16px;
    right: 5%;
    z-index: 110;
  }
  .programs__touch-btn__item {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    margin-right: 25px;
  }
  .programs__touch-btn__item:last-of-type {
    margin-right: 0;
  }
  .programs__touch-btn__item .program-filter-check {
    fill: #fff;
  }
  .programs__touch-btn__item .program-check {
    stroke: #fff;
  }
  .programs__touch-btn__item .program-check--color {
    fill: #fff;
  }
  .programs__up-container {
    padding-top: 50px;
    padding-bottom: 36px;
  }
  .programs__title {
    width: 90%;
    margin: 0 auto;
  }
  .programs__filter {
    width: 100%;
    /* height: 400px; */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #0E0E0E;
    z-index: 101;
    padding: 65px 5% 85px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition-delay: initial;
            transition-delay: initial;
    display: none;
  }
  .programs__filter__close {
    top: 18px;
    left: 5%;
    display: block;
  }
  .programs__filter p {
    font-size: 16px;
    line-height: 26px;
  }
  .programs__filter__panel {
    height: calc(100vh - 140px);
    overflow-y: scroll;
  }
  .programs__filter__panel ul {
    margin-bottom: 25px;
  }
  .programs__filter__panel ul li {
    margin-bottom: 15px;
    padding-top: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid #3C3C3C;
  }
  .programs__filter__panel ul li:last-of-type {
    margin-bottom: 0;
    border-bottom: none;
  }
  .programs__filter__panel ul li a {
    line-height: 28px;
    font-size: 16px;
  }
  .programs__filter__panel ul li a:hover {
    color: rgba(224, 224, 224, 0.6);
  }
  .programs__filter__panel ul li a:hover:before {
    height: 3px;
  }
  .programs__filter__panel ul li a.active {
    color: #fff;
  }
  .programs__filter__panel ul li a.active:before {
    height: 12px;
  }
  .programs__filter__panel .all-topics {
    margin-bottom: 0;
  }
  .programs__filter__btn {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    opacity: 1;
    visibility: visible;
    background: #0E0E0E;
    padding: 86px 0 50px;
    z-index: 103;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .programs__filter__btn__item {
    max-width: 90%;
    margin: 0;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .programs__filter__btn__item:last-of-type {
    margin-bottom: 0;
  }
  .programs__filter__btn__item a {
    width: 100%;
  }
  .programs__content {
    width: 100%;
  }
  .programs__search {
    width: 100%;
    /* height: 400px; */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #0E0E0E;
    z-index: 102;
    padding: 85px 5% 65px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: none;
    -webkit-transition-delay: initial;
            transition-delay: initial;
  }
  .programs__search input {
    width: 100%;
    display: block;
    padding-left: 0;
    margin: 0 auto;
    padding-right: 44px;
  }
  .programs__search svg {
    display: none;
  }
  .programs__search__btn {
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    right: 5%;
    top: 75px;
    padding: 0;
  }
  .programs__search__btn svg.phone-icon {
    display: block;
    top: initial;
    left: initial;
    position: relative;
  }
  .program-events {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .program-events__text {
    margin-bottom: 45px;
  }
  .events-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .events-card h3 {
    font-size: 18px;
  }
  .events-card p {
    font-size: 16px;
    line-height: 23px;
  }
  .events-card__item {
    width: 100%;
    padding: 25px 24px;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .events-card__title {
    margin-bottom: 14px;
  }
  .events-card__text {
    margin-bottom: 20px;
  }
  .events-card__info {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .events-card__info__item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .events-card__info__item:nth-of-type(1) {
    width: 100%;
    margin-bottom: 10px;
  }
  .events-card__info__item:nth-of-type(1) p {
    font-size: 16px;
    line-height: 19px;
  }
  .events-card__info__item:nth-of-type(2) {
    width: 100%;
  }
  .events-card__info__item:nth-of-type(2) img {
    margin-left: 2px;
    margin-right: 15px;
  }
  .events-card__info__item p {
    font-size: 15px;
    line-height: 18px;
  }
  .events-card__info__item span {
    font-size: 15px;
    line-height: 18px;
  }
  .schedule {
    width: 100%;
  }
  .schedule__title {
    border-radius: 0;
    padding: 24px 5%;
  }
  .schedule__title:after {
    right: 5%;
  }
  .schedule__title span {
    font-size: 18px;
    line-height: 22px;
  }
  .schedule__subtitle {
    height: auto;
    border-radius: 0;
    padding: 22px 5% 26px;
  }
  .schedule__subtitle p {
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 10px;
  }
  .schedule__subtitle span {
    display: block;
  }
  .schedule__subtitle span.name {
    font-size: 15px;
    line-height: 17px;
  }
  .schedule__item {
    width: 100%;
    padding: 20px 5%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
  }
  .schedule__item__time {
    width: 100px;
    margin-right: 0;
    margin-bottom: 8px;
  }
  .schedule__item__time span {
    font-size: 14px;
    line-height: 16px;
  }
  .schedule__item__title {
    width: calc(100% - 32px);
    margin-right: 0;
  }
  .schedule__item__title p {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 5px;
  }
  .schedule__item__title span {
    font-size: 14px;
    line-height: 16px;
  }
  .schedule__item__check {
    position: absolute;
    right: 5%;
    top: 20px;
  }
  .schedule__content {
    display: none;
  }
  .theme--blue .programs__touch-btn__item.active-icon .program-check {
    stroke: #04f;
  }
  .theme--blue .programs__touch-btn__item.active-icon .program-filter-check {
    stroke: #04f;
    fill: #04f;
  }
  .theme--blue .phone-search-icon {
    fill: #04f;
  }
  .theme--orange .programs__touch-btn__item.active-icon .program-check {
    stroke: #FFAD31;
  }
  .theme--orange .programs__touch-btn__item.active-icon .program-filter-check {
    stroke: #FFAD31;
    fill: #ffad31;
  }
  .theme--orange .phone-search-icon {
    fill: #ffad31;
  }
}

@media (min-width: 320px) and (max-width: 739px) {
  .search-wrapper .container {
    width: 90%;
  }
  .search-main {
    width: 100%;
    padding-top: 100px;
    padding-bottom: 50px;
    height: 224px;
  }
  .search-main__title span {
    line-height: 40px;
    font-size: 38px;
  }
  .search-main__title span span {
    display: none;
  }
  .search-results {
    padding-bottom: 60px;
  }
  .search-results__list {
    max-width: 770px;
    width: 100%;
  }
  .search-results__list .post-preview {
    margin-bottom: 50px;
  }
  .search-results__list .post-preview__breadcrumbs {
    margin-bottom: 50px;
  }
}

@media (min-width: 320px) and (max-width: 739px) {
  .participants-wrapper .container {
    width: 100%;
  }
  .participants-main {
    width: 100%;
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .participants-main__bg {
    height: 340px;
    background-position: center center;
  }
  .participants-main__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 5px;
  }
  .participants-main__inner--subtitle {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .participants-main__title {
    padding-right: 15px;
    padding-left: 15px;
  }
  .participants-main__title span {
    line-height: 40px;
    font-size: 38px;
  }
  .participants-main .breadcrumbs {
    padding-right: 15px;
    padding-left: 15px;
  }
  .participants-main__text {
    width: 100%;
    margin: 0 auto 15px;
    padding-left: 15px;
    padding-right: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .participants-main__text p {
    font-size: 16px;
    line-height: 26px;
  }
  .participants-main__text p:nth-of-type(1) {
    font-size: 18px;
    line-height: 30px;
  }
  .participants-main__text p:nth-of-type(2) {
    font-size: 18px;
    line-height: 30px;
  }
  .participants-main__form {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 25px 5% 30px;
    border-radius: 0;
  }
  .participants-main__form h3 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 35px;
  }
}

@media (min-width: 480px) and (max-width: 739px) {
  .speakers-wrapper .container {
    width: 100%;
  }
  .speakers-main {
    width: 100%;
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .speakers-main__bg {
    height: 542px;
    background-position: center center;
  }
  .speakers-main__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 5px;
  }
  .speakers-main__inner--subtitle {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .speakers-main__title {
    padding-right: 15px;
    padding-left: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 28px;
  }
  .speakers-main__title span {
    line-height: 40px;
    font-size: 38px;
  }
  .speakers-main .breadcrumbs {
    padding-right: 15px;
    padding-left: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 20px;
  }
  .speakers-main__text {
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .speakers-main__text p {
    font-size: 16px;
    line-height: 26px;
  }
  .speakers-main__text--btn a.primary-btn:hover span {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  .speakers-list {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 60px;
  }
  .speakers-list__card {
    width: 100%;
    margin: 0px auto 30px;
  }
  .speakers-list__card--avatar {
    height: 360px;
  }
  .speakers-list__card:nth-child(4n) {
    margin: 0px auto 30px;
  }
  .speakers-list__card:nth-child(3n) {
    margin: 0px auto 30px;
  }
  .speakers-list__card:nth-child(2n) {
    margin: 0px auto 30px;
  }
  .speakers-guide {
    padding-bottom: 90px;
    padding-top: 39px;
  }
  .speakers-guide__title {
    padding-left: 15px;
    padding-right: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .speakers-guide__title h2 {
    font-size: 38px;
    line-height: 42px;
    margin-bottom: 5px;
  }
  .speakers-guide__title p {
    font-size: 18px;
    line-height: 29px;
  }
  .speakers-guide__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .speakers-guide__inner--instructions {
    width: 100%;
  }
  .speakers-guide__inner--instructions p {
    font-size: 14px;
    line-height: 20px;
    font-family: 'KasperskySansText-Regular';
  }
  .speakers-guide__inner--text {
    width: 100%;
    margin: 0px auto;
    padding-left: 15px;
    padding-right: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .speakers-guide__inner--text h3 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .speakers-guide__inner--form {
    margin: 50px auto 0px;
    border-radius: 0px;
  }
  .speakers-guide__inner--form .form-fields__item--upload {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .speakers-guide__inner--form .form-fields input[type=submit] {
    margin-top: 0px;
  }
  .speakers-guide__inner ul {
    margin-bottom: 50px;
  }
  .speakers-guide__inner ul li {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 24px;
  }
  .speakers-guide__inner ul li:before {
    top: 9px;
  }
  .speakers-guide__inner ul li ul li:before {
    top: 8px;
  }
}

@media (min-width: 320px) and (max-width: 479px) {
  .speakers-wrapper .container {
    width: 100%;
  }
  .speakers-main {
    width: 100%;
    padding-top: 60px;
    padding-bottom: 50px;
  }
  .speakers-main__bg {
    height: 642px;
    background-position: center center;
  }
  .speakers-main__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 5px;
  }
  .speakers-main__inner--subtitle {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .speakers-main__title {
    padding-right: 15px;
    padding-left: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 30px;
    margin-top: 40px;
  }
  .speakers-main__title span {
    line-height: 40px;
    font-size: 38px;
    height: 86px;
  }
  .speakers-main .breadcrumbs {
    padding-right: 15px;
    padding-left: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 45px;
  }
  .speakers-main__text {
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .speakers-main__text p {
    font-size: 16px;
    line-height: 26px;
  }
  .speakers-main__text--btn {
    margin-top: 45px;
  }
  .speakers-main__text--btn a.primary-btn:hover span {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  .speakers-main__text a.primary-btn {
    margin: 0px auto;
  }
  .speakers-list {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
  }
  .speakers-list__card {
    width: 100%;
    margin: 0px auto 20px;
  }
  .speakers-list__card--avatar {
    height: 250px;
  }
  .speakers-list__card:nth-child(4n) {
    margin: 0px auto 30px;
  }
  .speakers-list__card:nth-child(3n) {
    margin: 0px auto 30px;
  }
  .speakers-list__card:nth-child(2n) {
    margin: 0px auto 30px;
  }
  .speakers-list__card:last-child {
    margin-bottom: 0px;
  }
  .speakers-guide {
    padding-bottom: 60px;
    padding-top: 60px;
  }
  .speakers-guide__title {
    padding-left: 15px;
    padding-right: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .speakers-guide__title h2 {
    font-size: 38px;
    line-height: 42px;
    margin-bottom: 30px;
  }
  .speakers-guide__title p {
    font-size: 18px;
    line-height: 29px;
    margin-bottom: 45px;
  }
  .speakers-guide__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .speakers-guide__inner ul li ul {
    padding-left: 5px;
  }
  .speakers-guide__inner--instructions {
    width: 100%;
  }
  .speakers-guide__inner--instructions p {
    font-size: 14px;
    line-height: 20px;
    font-family: 'KasperskySansText-Regular';
  }
  .speakers-guide__inner--text {
    width: 100%;
    margin: 0px auto;
    padding-left: 15px;
    padding-right: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .speakers-guide__inner--text h3 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  .speakers-guide__inner--form {
    margin: 45px auto 0px;
    width: 100%;
    border-radius: 0px;
    padding: 23px 15px 30px;
  }
  .speakers-guide__inner--form .form-fields__item--upload {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-bottom: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .speakers-guide__inner--form .form-fields__item--upload .upload-file {
    margin: 0px auto 18px;
  }
  .speakers-guide__inner--form .form-fields__item--upload .upload-file label.error {
    width: 100%;
    text-align: center;
    bottom: -17px;
  }
  .speakers-guide__inner--form .form-fields__item--upload p.file-info {
    text-align: center;
    margin: 0px auto;
  }
  .speakers-guide__inner--form .form-fields input[type=submit] {
    margin-top: 0px;
  }
  .speakers-guide__inner ul {
    margin-bottom: 30px;
  }
  .speakers-guide__inner ul li {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 24px;
  }
  .speakers-guide__inner ul li:before {
    top: 9px;
  }
  .speakers-guide__inner ul li ul li:before {
    top: 8px;
  }
}

@media (min-width: 320px) and (max-width: 415px) {
  .speakers-main__title {
    min-height: 86px;
  }
}

@media (min-width: 550px) and (max-width: 739px) {
  .training-wrapper .container {
    width: 90%;
  }
  .training-main {
    padding-top: 140px;
    padding-bottom: 60px;
    height: auto;
    background-position: center center;
  }
  .training-main__title span {
    font-size: 46px;
  }
  .training-main__text {
    width: 100%;
  }
  .training-main__text p {
    font-size: 18px;
    line-height: 30px;
  }
  .training-list {
    padding-top: 75px;
    padding-bottom: 86px;
  }
  .training-list__block--info {
    width: 135px;
    margin-right: 29px;
  }
  .training-list__block--title {
    padding: 19px;
  }
  .training-list__block--topics {
    width: calc(100% - 164px);
  }
  .training-list__block--topics ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
  }
  .training-list__block--topics ul li {
    font-size: 16px;
    line-height: 27px;
  }
  .training-list__block--inner:last-child .training-list__block--content {
    border-bottom: none;
  }
  .training-list__block--trainers h3 {
    font-size: 14px;
    line-height: 18px;
  }
  .training-list__block--trainers p {
    font-size: 15px;
    line-height: 22px;
  }
  .training-list__block--price {
    margin-bottom: 17px;
  }
  .training-list__block--price h3 {
    font-size: 14px;
    line-height: 18px;
  }
  .training-list__block--price p {
    font-size: 15px;
    line-height: 22px;
  }
  .training-list__block--btn {
    padding-right: 40px;
    margin-left: 10px;
  }
  .training-list__block--btn button {
    width: 154px;
  }
}

@media (min-width: 320px) and (max-width: 549px) {
  .training-wrapper .container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .training-main {
    padding-top: 93px;
    padding-bottom: 60px;
    height: auto;
    background-position: center center;
  }
  .training-main__title span {
    font-size: 46px;
  }
  .training-main__text {
    width: 100%;
  }
  .training-main__text p {
    font-size: 18px;
    line-height: 30px;
  }
  .training-list {
    padding-top: 50px;
    padding-bottom: 86px;
  }
  .training-list .container {
    width: 100%;
    padding: 0px;
  }
  .training-list__title {
    padding-left: 15px;
    padding-right: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 37px;
  }
  .training-list__block--info {
    width: 100%;
    margin: 0px auto;
  }
  .training-list__block--title {
    padding: 27px 15px;
    border-radius: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .training-list__block--title:after {
    top: 45px;
    -webkit-transform: translateY(0%) rotate(180deg);
            transform: translateY(0%) rotate(180deg);
  }
  .training-list__block--headline {
    margin-bottom: 25px;
    padding-right: 40px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
  }
  .training-list__block--headline p {
    font-size: 18px;
    line-height: 22px;
  }
  .training-list__block--topics {
    width: 100%;
  }
  .training-list__block--topics p,
  .training-list__block--topics h4,
  .training-list__block--topics h5,
  .training-list__block--topics h6,
  .training-list__block--topics a {
    font-size: 14px;
    line-height: 24px;
  }
  .training-list__block--topics ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
  }
  .training-list__block--topics ul li {
    font-size: 14px;
    line-height: 24px;
  }
  .training-list__block--topics ul li:before {
    top: 6px;
  }
  .training-list__block--topics ul li ul li:before {
    top: 6px;
  }
  .training-list__block--content {
    padding: 15px 15px 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .training-list__block--inner:last-child .training-list__block--content {
    border-bottom: none;
    padding: 15px 15px 0px;
  }
  .training-list__block--trainers h3 {
    font-size: 14px;
    line-height: 18px;
  }
  .training-list__block--trainers p {
    font-size: 15px;
    line-height: 25px;
  }
  .training-list__block--price {
    margin-bottom: 17px;
  }
  .training-list__block--price h3 {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0px;
  }
  .training-list__block--price p {
    font-size: 15px;
    line-height: 25px;
  }
  .training-list__block--btn {
    padding-right: 0px;
    margin: 0px auto;
  }
  .training-list__block--btn a {
    width: 154px;
  }
}

@media (min-width: 320px) and (max-width: 739px) {
  .sponsorship-wrapper .container {
    width: 90%;
  }
  .sponsorship-main {
    padding-top: 100px;
  }
  .sponsorship-main__bg {
    height: 320px;
    background-position: center center;
  }
  .sponsorship-main .breadcrumbs {
    margin-bottom: 40px;
  }
  .sponsorship__text {
    padding-bottom: 60px;
  }
  .sponsorship__text--title {
    min-height: 112px;
    width: 270px;
    margin-bottom: 16px;
  }
  .sponsorship__text--title span {
    font-size: 38px;
    line-height: 52px;
  }
  .sponsorship__text--content {
    width: 100%;
    max-width: 100%;
    margin-bottom: 60px;
  }
  .sponsorship__text--content p {
    font-size: 18px;
    line-height: 29px;
  }
  .sponsorship__text--content p a:before {
    display: none;
  }
  .sponsorship__card {
    width: 100%;
  }
  .sponsorship__card__item {
    width: 100%;
  }
  .sponsorship__card__contacts {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .sponsorship__card__contacts__item {
    width: 100%;
  }
  .sponsorship__card__contacts__item:first-of-type {
    margin-bottom: 10px;
  }
  .sponsorship__card__contacts__item:last-of-type span {
    margin-left: 32px;
  }
  .sponsorship__card__contacts__item:last-of-type img {
    margin-left: 3px;
    margin-right: 8px;
  }
  .sponsorship__card__contacts__item:last-of-type a {
    margin-left: 5px;
  }
  .sponsorship__card h3 {
    font-size: 18px;
    line-height: 32px;
  }
  .sponsorship__card p {
    font-size: 16px;
    line-height: 26px;
  }
}

@media (min-width: 320px) and (max-width: 739px) {
  .media-wrapper {
    padding-bottom: 60px;
  }
  .media-wrapper .container {
    width: 90%;
  }
  .media-main {
    height: 360px;
    padding-top: 100px;
    background-position: center center;
  }
  .media-main__title span {
    font-size: 38px;
  }
  .media-main__text {
    width: 100%;
    margin-bottom: 40px;
    -webkit-transition-delay: .5s;
            transition-delay: .5s;
  }
  .media-main__text p {
    font-size: 18px;
    line-height: 29px;
  }
  .media-content {
    -webkit-transform: initial;
            transform: initial;
  }
  .media-content .container {
    width: 100%;
  }
  .media-content__touch-btn {
    display: block;
    position: fixed;
    top: 16px;
    right: 5%;
    z-index: 110;
  }
  .media-content__touch-btn__item {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    margin-right: 20px;
  }
  .media-content__touch-btn__item:last-of-type {
    margin-right: 0;
  }
  .media-content__touch-btn__item .program-filter-check {
    fill: #fff;
  }
  .media-content__touch-btn__item .program-check {
    stroke: #fff;
  }
  .media-content__touch-btn__item .program-check--color {
    fill: #fff;
  }
  .media-content__submenu {
    margin-bottom: 40px;
  }
  .media-content__search {
    display: none;
    margin-bottom: 48px;
    position: absolute;
  }
  .media-content__search.show {
    -webkit-transform: initial;
            transform: initial;
  }
  .media-content__search__close {
    top: 18px;
    left: 5%;
    display: block;
  }
  .media-content__search__close img {
    width: 24px;
    height: 24px;
  }
  .media-content__screen {
    padding-bottom: 60px;
  }
  .media-content__screen .container {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .media-content__screen__item .media-content__more {
    width: 111%;
    -webkit-transform: translateX(-5%);
            transform: translateX(-5%);
    margin-bottom: 10px;
  }
  .media-content__more {
    border-radius: 0;
    margin-bottom: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .media-content__more__text {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .media-content__more__btn {
    margin: 0 auto;
  }
  .media-submenu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .media-submenu ul li:not(:last-of-type) {
    margin-right: 0;
  }
  .media-submenu ul li a {
    height: 40px;
    padding-left: 5%;
    padding-right: 5%;
    border-radius: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .media-search {
    width: 100%;
    /* height: 400px; */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #0E0E0E;
    z-index: 102;
    padding: 85px 5% 65px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: block;
    -webkit-transition-delay: initial;
            transition-delay: initial;
  }
  .media-search input {
    width: 100%;
    display: block;
    padding-left: 0;
    margin: 0 auto;
    padding-right: 44px;
  }
  .media-search svg {
    display: none;
  }
  .media-search__btn {
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    right: 5%;
    top: 75px;
    padding: 0;
  }
  .media-search__btn svg.tablet-icon {
    display: none;
  }
  .media-search__btn svg.phone-icon {
    display: block;
    position: relative;
    top: 0;
    left: initial;
  }
  .media-coverage__item,
  .media-blog__item {
    padding: 25px 24px;
  }
  .media-coverage__item:not(:last-of-type),
  .media-blog__item:not(:last-of-type) {
    margin-bottom: 8px;
  }
  .media-coverage h3,
  .media-blog h3 {
    font-size: 18px;
    line-height: 21px;
  }
  .media-coverage p,
  .media-blog p {
    font-size: 14px;
    line-height: 26px;
  }
  .media-coverage__title,
  .media-blog__title {
    margin-bottom: 40px;
  }
  .media-coverage__logo,
  .media-blog__logo {
    display: none;
  }
  .media-blog__logo {
    display: none;
  }
  .media-video,
  .media-photos,
  .hidden-video {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .media-video__item,
  .media-photos__item,
  .hidden-video__item {
    width: 100%;
    height: 370px;
    margin-bottom: 20px;
  }
  .media-video__item:nth-last-of-type(2),
  .media-photos__item:nth-last-of-type(2),
  .hidden-video__item:nth-last-of-type(2) {
    margin-bottom: 20px;
  }
  .media-video__video,
  .media-photos__video,
  .hidden-video__video {
    height: 134px;
    margin-bottom: 22px;
  }
  .media-video__video__preview,
  .media-photos__video__preview,
  .hidden-video__video__preview {
    height: 134px;
  }
  .media-video__video__preview a,
  .media-photos__video__preview a,
  .hidden-video__video__preview a {
    width: 48px;
    height: 48px;
  }
  .media-video__video__preview a:after,
  .media-photos__video__preview a:after,
  .hidden-video__video__preview a:after {
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 14px solid #0044FF;
  }
  .media-video__video__block,
  .media-photos__video__block,
  .hidden-video__video__block {
    height: 134px;
  }
  .media-video__video__block iframe,
  .media-photos__video__block iframe,
  .hidden-video__video__block iframe {
    height: 134px;
  }
  .media-video__img,
  .media-photos__img,
  .hidden-video__img {
    height: 134px;
  }
  .media-video__info,
  .media-photos__info,
  .hidden-video__info {
    padding-left: 6%;
    padding-right: 6%;
  }
  .media-video__info__title,
  .media-photos__info__title,
  .hidden-video__info__title {
    margin-bottom: 12px;
  }
  .media-video__info h3,
  .media-photos__info h3,
  .hidden-video__info h3 {
    font-size: 18px;
    line-height: 21px;
  }
  .media-video__share,
  .media-photos__share,
  .hidden-video__share {
    left: 6%;
    bottom: 10px;
  }
  .media-video__share__text,
  .media-photos__share__text,
  .hidden-video__share__text {
    margin-right: 24px;
  }
  .hidden-video {
    width: 90%;
    margin: 0 auto;
  }
  .hidden-video__item {
    height: 100%;
  }
  .hidden-video .hidden-video__info {
    padding-bottom: 20px;
  }
  .media-photos__item {
    height: 296px;
  }
  .media-subscrible {
    width: 100%;
    padding-top: 26px;
    padding-bottom: 30px;
    border-radius: 0;
  }
  .media-subscrible .container {
    width: 90%;
  }
  .media-subscrible h3 {
    line-height: 23px;
    font-size: 20px;
  }
  .media-subscrible form {
    position: relative;
  }
  .media-subscrible .form-fields__recapthca {
    position: relative;
    left: initial;
    bottom: initial;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .media-subscrible input[type=submit] {
    width: 240px;
    margin: 0 auto;
  }
  .media-subscrible .form-fields .checkbox-block label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .media-subscrible .form-fields .checkbox-block input[type=checkbox] + span {
    min-width: 16px;
  }
  .media-subscrible .form-fields .checkbox-block span {
    top: 0;
  }
}

@media (min-width: 380px) and (max-width: 739px) {
  .archive-wrapper .container {
    width: 90%;
  }
  .archive-main {
    padding-top: 90px;
  }
  .archive-main .breadcrumbs {
    margin-bottom: 40px;
  }
  .archive-main__bg {
    height: 614px;
    background-position: center center;
  }
  .archive-main__title {
    margin-bottom: 20px;
  }
  .archive-main__title span {
    font-size: 40px;
    line-height: 52px;
  }
  .archive-main__text {
    max-width: 100%;
  }
  .archive-main__text p {
    font-size: 20px;
    line-height: 32px;
  }
  .archive-list {
    padding-bottom: 90px;
  }
  .archive-list__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .archive-list__event {
    width: 100%;
    margin: 0px auto 45px;
  }
  .archive-list__event--inner {
    padding: 23px 22px;
  }
  .archive-list__event--thumbnail {
    height: 328px;
  }
  .archive-list__event:nth-child(even) {
    margin: 0px auto 45px;
  }
  .archive-list__btn a {
    width: 260px;
  }
}

@media (min-width: 320px) and (max-width: 379px) {
  .archive-wrapper .container {
    width: 90%;
  }
  .archive-main {
    padding-top: 90px;
  }
  .archive-main .breadcrumbs {
    margin-bottom: 40px;
  }
  .archive-main__bg {
    height: 614px;
    background-position: center center;
  }
  .archive-main__title {
    margin-bottom: 20px;
    min-height: 112px;
  }
  .archive-main__title span {
    font-size: 38px;
    line-height: 44px;
  }
  .archive-main__text {
    max-width: 100%;
  }
  .archive-main__text p {
    font-size: 20px;
    line-height: 32px;
  }
  .archive-list {
    padding-bottom: 60px;
  }
  .archive-list__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .archive-list__event {
    width: 100%;
    margin: 0px auto 45px;
  }
  .archive-list__event--inner {
    padding: 23px 22px;
  }
  .archive-list__event--thumbnail {
    height: 134px;
  }
  .archive-list__event--name {
    margin-bottom: 32px;
  }
  .archive-list__event--place {
    margin-bottom: 59px;
  }
  .archive-list__event:nth-child(even) {
    margint: 0px auto 45px;
  }
  .archive-list__btn a {
    width: 260px;
  }
}

@media (min-width: 320px) and (max-width: 739px) {
  .parked-wrapper .container {
    width: 90%;
  }
  .parked-main__title {
    margin-bottom: 40px;
  }
  .parked-main__title h1 {
    font-size: 24px;
    line-height: 27px;
    letter-spacing: 0.5px;
    margin-top: 10px;
  }
  .parked-main__title span {
    font-size: 18px;
    line-height: 21px;
  }
}

@media (min-width: 320px) and (max-width: 739px) {
  .event-wrapper .container {
    width: 90%;
  }
  .event-wrapper .container .container {
    width: 100%;
  }
  .event-wrapper .video-screen .container {
    margin: 0px auto;
    width: 100%;
  }
  .event-wrapper .event-main__down.animated-arrow {
    display: none;
  }
  .event-wrapper .about-screen__placement {
    padding-left: 15px;
    padding-right: 15px;
  }
  .event-wrapper .media-content__screen .container {
    width: 100%;
  }
  .event-wrapper .about-main__inner {
    margin-bottom: 35px;
  }
  .event-wrapper .speakers {
    padding-top: 60px;
  }
  .event-wrapper .travel {
    padding-bottom: 0px;
  }
  .event-wrapper .media-block {
    padding-top: 60px;
    padding-bottom: 0px;
  }
  .event-wrapper .media-block .media {
    padding-top: 50px;
  }
  .event-wrapper .media-block .media__title {
    margin-bottom: 30px;
  }
  .event-wrapper .media-block .media__title p {
    margin-top: 20px;
    font-size: 17px;
    line-height: 22px;
  }
  .event-wrapper .media-block .media__description p {
    font-size: 17px;
    line-height: 22px;
  }
  .event-wrapper .archive-list {
    padding-top: 30px;
  }
  .event-wrapper .archive-list__title {
    margin-bottom: 30px;
  }
  .event-wrapper .archive-list__title h2 {
    font-size: 24px;
    line-height: 28px;
  }
  .event-wrapper .archive-list__text {
    margin-bottom: 40px;
  }
  .event-wrapper .archive-list__text p {
    font-size: 17px;
    line-height: 22px;
  }
  .event-wrapper .programs__title {
    width: 100%;
  }
  .event-wrapper .life-screen__title span {
    font-size: 24px;
    line-height: 27px;
  }
  .event-wrapper .speakers__title {
    margin-bottom: 20px;
  }
  .event-wrapper .speakers__text {
    margin-bottom: 35px;
  }
  .event-wrapper .speakers__text p {
    font-size: 17px;
    line-height: 22px;
  }
  .event-main {
    padding-top: 90px;
    padding-bottom: 90px;
    height: initial;
    background-position: center center;
  }
  .event-main__events {
    display: none;
  }
  .about-sas {
    padding-top: 60px;
  }
  .about-sas__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-sas__text {
    width: 100%;
    margin: 0px auto 25px;
  }
  .about-sas__text p {
    font-size: 17px;
    line-height: 21px;
    margin-bottom: 25px;
  }
  .about-sas__list {
    width: 100%;
    margin: 0px auto;
  }
  .about-sas__list li {
    margin-bottom: 10px;
  }
  .about-sas__list a {
    font-size: 17px;
    line-height: 21px;
  }
  .about-sas__title {
    margin-bottom: 30px;
  }
  .travel {
    padding-top: 25px;
  }
  .travel__title {
    margin-bottom: 30px;
  }
  .travel__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .travel__text {
    width: 100%;
    margin: 0px auto 25px;
  }
  .travel__text p {
    font-size: 17px;
    line-height: 24px;
  }
  .travel__text p:last-child {
    margin-bottom: 0px;
  }
  .travel__text:last-child {
    margin: 0px auto 35px;
  }
  .event__video--ifr {
    height: 360px;
  }
  .event__video--ifr iframe {
    height: 100%;
  }
  .event__video__item {
    height: 360px;
  }
}

@media (min-width: 320px) and (max-width: 460px) {
  .event-main__logo img {
    width: 100%;
  }
  .event__video--ifr {
    height: 290px;
  }
  .event__video--ifr iframe {
    height: 100%;
  }
  .event__video__item {
    height: 290px;
  }
}

@media (min-width: 320px) and (max-width: 739px) {
  .code-wrapper .container {
    width: 90%;
  }
  .code-main {
    width: 100%;
    padding-top: 90px;
    background-position: center center;
  }
  .code-main__title span {
    line-height: 40px;
    font-size: 38px;
  }
  .code-main__text {
    width: 100%;
    margin: 0px auto 25px;
  }
  .code-main__text p {
    font-size: 16px;
    line-height: 26px;
  }
}

.code-text__list {
  padding-bottom: 60px;
}

.code-text__list--text {
  margin-bottom: 35px;
}

.code-text__list--text p {
  font-size: 16px;
  line-height: 26px;
}

.code-text__list--remark {
  padding: 30px 20px;
  font-size: 16px;
  line-height: 26px;
}

@media (min-width: 320px) and (max-width: 360px) {
  .code-main__title {
    min-height: 86px;
  }
}

@media (min-width: 320px) and (max-width: 739px) {
  .not-found-wrapper .container {
    width: 90%;
  }
  .not-found-main {
    height: auto;
    min-height: 560px;
    background-position: center center;
  }
  .not-found-main__title {
    margin-bottom: 40px;
  }
  .not-found-main__title h1 {
    font-size: 24px;
    line-height: 27px;
    letter-spacing: 0.5px;
    margin-top: 10px;
  }
  .not-found-main__title span {
    font-size: 18px;
    line-height: 21px;
  }
}

@media (min-width: 320px) and (max-width: 739px) {
  .unplugged-wrapper .container {
    width: 90%;
  }
  .unplugged-wrapper .programs .container {
    width: 100%;
  }
  .unplugged-wrapper .programs__title {
    width: 100%;
    padding-left: 5%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .unplugged-main {
    min-height: initial;
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .unplugged-main__title {
    margin-bottom: 20px;
  }
  .unplugged-main__title span {
    font-size: 38px;
    line-height: 44px;
    color: #FFFFFF;
  }
  .unplugged-main__text {
    width: 100%;
  }
  .unplugged-main__text p {
    font-size: 18px;
    line-height: 30px;
  }
  .unplugged-about .container {
    width: 100%;
  }
  .unplugged-about__placement {
    padding-top: 55px;
    padding-bottom: 45px;
    border-radius: initial;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .unplugged-about__placement:after {
    background-size: cover;
    top: 0;
    left: 0;
  }
  .unplugged-about__placement__place {
    width: 100%;
    margin-bottom: 60px;
  }
  .unplugged-about__placement__place:after {
    width: 110px;
    height: 110px;
  }
  .unplugged-about__placement__place p {
    font-size: 14px;
  }
  .unplugged-about__placement__place p:first-of-type {
    font-size: 18px;
  }
  .unplugged-about__placement__about {
    width: 100%;
  }
  .unplugged-about__placement__about__text p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
  }
  .unplugged-about__placement__about__text a {
    font-size: 16px;
    line-height: 19px;
  }
  .unplugged-about__placement__about__text__for-link p {
    font-size: 16px;
    line-height: 19px;
    margin: 0;
  }
  .unplugged-about__placement .about-screen__placement__about__btn__item a {
    margin: 0 auto;
  }
  .unplugged-about__placement .container {
    width: 90%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .workshop-block {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .workshop-block .container {
    width: 100%;
  }
  .workshop-block__title {
    margin-bottom: 40px;
    padding-left: 5%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .workshop {
    width: 100%;
  }
  .workshop:not(:last-of-type) {
    margin-bottom: 8px;
  }
  .workshop__title {
    width: 100%;
    padding: 25px 30px 25px 5%;
    border-radius: initial;
  }
  .workshop__title:after {
    right: 5%;
  }
  .workshop__title h3 {
    font-family: 'KasperskySansText-Medium';
    margin-bottom: 15px;
  }
  .workshop__content {
    display: none;
  }
  .workshop__content__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 25px 5%;
  }
  .workshop__content__trainers {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .workshop__content__description {
    width: 100%;
  }
  .workshop__content__description p {
    font-size: 14px;
    line-height: 21px;
  }
  .workshop__content__description ul p {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 6px;
  }
}

@media (min-width: 320px) and (max-width: 739px) {
  .startup .container {
    width: 90%;
  }
  .startup__main {
    min-height: 368px;
    height: auto;
    padding-top: 100px;
  }
  .startup__main__title {
    margin-bottom: 18px;
  }
  .startup__main__title span {
    font-size: 38px;
    line-height: 44px;
  }
  .startup__main__text {
    width: 100%;
  }
  .startup__main__text p {
    font-size: 18px;
    line-height: 29px;
  }
  .startup__placement .container {
    width: 100%;
  }
  .startup__placement .about-screen__placement {
    padding-top: 60px;
    padding-bottom: 60px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    border-radius: 0;
  }
  .startup__placement .about-screen__placement .container {
    width: 90%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .startup__placement .about-screen__placement__place {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .startup__placement .about-screen__placement__place p {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .startup__placement .about-screen__placement__place p.date {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .startup__placement .about-screen__placement__place:after {
    width: 110px;
    height: 130px;
  }
  .startup__placement .about-screen__placement__place__line {
    margin-bottom: 10px;
  }
  .startup__placement .about-screen__placement__logo {
    width: 120px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    position: relative;
    left: auto;
    bottom: auto;
  }
  .startup__placement .about-screen__placement__logo img {
    width: 100%;
  }
  .startup__placement .about-screen__placement__about {
    margin-top: 40px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .startup__placement .about-screen__placement__about__text h3 {
    width: 240px;
    font-size: 24px;
    line-height: 28px;
  }
  .startup__placement .about-screen__placement__about__text p {
    font-family: 'KasperskySansText-Medium';
    font-size: 16px;
    line-height: 23px;
    margin: 0;
    margin-bottom: 16px;
  }
  .startup__placement .about-screen__placement__about__text p:first-of-type {
    font-size: 20px;
    line-height: 29px;
  }
  .startup__placement .about-screen__placement__about__btn__item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .startup__placement .about-screen__placement__about__btn__item:first-of-type {
    margin-right: 0;
  }
  .startup__placement .about-screen__placement__about__btn a {
    width: 250px;
  }
  .startup__benefits {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .startup__benefits__title {
    margin-bottom: 48px;
  }
  .startup__benefits__steps {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .startup__benefits__steps__item {
    width: 100%;
  }
  .startup__benefits__steps__item:not(:last-of-type) {
    margin-right: 0;
    margin-bottom: 24px;
  }
  .startup__benefits__steps__number {
    width: 100%;
  }
  .startup__benefits__steps__number span {
    font-size: 72px;
    line-height: 85px;
  }
  .startup__benefits__steps__text {
    width: 100%;
    max-width: 290px;
  }
  .startup__benefits__steps__text p {
    font-size: 20px;
    line-height: 23px;
  }
  .startup__showcase {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .startup__showcase__format {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .startup__showcase__criteria {
    width: 100%;
    padding: 30px 24px;
    margin-bottom: 60px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .startup__showcase__panel {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 40px 20px;
    margin-top: 0;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .startup__showcase__panel__text {
    width: 100%;
    margin-bottom: 30px;
  }
  .startup__showcase__panel__text p {
    text-align: center;
  }
  .startup__showcase__panel__text p:first-of-type {
    margin-bottom: 20px;
  }
  .startup__showcase__panel__btn a {
    width: 240px;
  }
  .startup__showcase .showcase-format {
    color: #fff;
  }
  .startup__showcase .showcase-format__title {
    padding-top: 0;
  }
  .startup__showcase .showcase-format__text {
    margin-bottom: 30px;
  }
  .startup__showcase .showcase-format__text p {
    font-size: 15px;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.6);
  }
  .startup__showcase .showcase-format__desc:not(:last-of-type) {
    margin-bottom: 30px;
  }
  .startup__showcase .showcase-format__desc__title {
    margin-bottom: 30px;
  }
  .startup__showcase .showcase-format__desc__title span {
    font-size: 24px;
    line-height: 28px;
  }
  .startup__showcase .showcase-format__desc__title:after {
    bottom: -14px;
  }
  .startup__showcase .showcase-format__desc__content {
    width: 100%;
  }
  .startup__showcase .showcase-format__desc__content p {
    font-size: 14px;
    line-height: 21px;
  }
  .startup__showcase .showcase-format__desc__content ul li {
    font-size: 14px;
    line-height: 21px;
    padding-left: 12px;
  }
  .startup__showcase .showcase-format__desc__content ul li:before {
    width: 4px;
    height: 4px;
    top: 9px;
  }
  .startup__showcase .showcase-criteria__title {
    margin-bottom: 16px;
  }
  .startup__showcase .showcase-criteria__content p {
    font-size: 18px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.6);
  }
  .startup__showcase .showcase-criteria__content__item {
    margin-top: 45px;
  }
  .startup__showcase .showcase-criteria__content__item:after {
    top: -14px;
  }
  .startup__showcase .showcase-criteria__content__item p {
    font-size: 18px;
    line-height: 21px;
    color: #fff;
  }
}

@media (min-width: 320px) and (max-width: 377px) {
  .startup__main__title {
    height: 88px;
  }
}

.theme--orange .breadcrumbs ul li a {
  color: #FFBA54;
}

.theme--orange a.primary-btn {
  background: #ffffff;
}

.theme--orange a.primary-btn span {
  color: #FFBA54;
}

.theme--orange a.primary-btn:hover span {
  color: #FFAD31;
}

.theme--blue .breadcrumbs ul li a {
  color: #3163eb;
}

.theme--blue a.primary-btn {
  background: #fff;
}

.theme--blue a.primary-btn span {
  color: #3163eb;
}

.theme--blue a.primary-btn:hover span {
  color: #04f;
}

.theme--fire-orange .breadcrumbs ul li a {
  color: #CB680C;
}

.theme--fire-orange a.primary-btn {
  background: #fff;
}

.theme--fire-orange a.primary-btn span {
  color: #CB680C;
}

.theme--fire-orange a.primary-btn:hover span {
  color: #C45C10;
}

.theme--fire-orange .form-fields__item label.error {
  color: #000;
}

.theme--green .breadcrumbs ul li a {
  color: #51E282;
}

.theme--green a.primary-btn {
  background: #fff;
}

.theme--green a.primary-btn span {
  color: #51E282;
}

.theme--green a.primary-btn:hover span {
  color: #10C36D;
}

.theme--green .form-fields__item label.error {
  color: #FF8266;
}

.theme--gray-yellow .breadcrumbs ul li a {
  color: #F5BC38;
}

.theme--gray-yellow a.primary-btn {
  background: #fff;
}

.theme--gray-yellow a.primary-btn span {
  color: #F5BC38;
}

.theme--gray-yellow a.primary-btn:hover span {
  color: #E5A30D;
}

.theme--gray-yellow .form-fields__item label.error {
  color: #FF8266;
}

.header.theme--orange .header__menu ul li a.active span {
  color: #FF9900;
}

.header.theme--orange .mobile-submenu li a.active span {
  color: #FF9900;
}

.header.theme--orange .events__list li.active-event a {
  color: #FFAD31;
}

.header.theme--orange .events__list li a:hover {
  color: #FF9900;
}

.header.theme--blue .header__menu ul li a.active span {
  color: #0022FF;
}

.header.theme--blue .mobile-submenu li a.active span {
  color: #0022FF;
}

.header.theme--blue .events__list li.active-event a {
  color: #0044FF;
}

.header.theme--blue .events__list li a:hover {
  color: #FF9900;
}

.header.theme--fire-orange .header__menu ul li a.active span {
  color: #B5542B;
}

.header.theme--fire-orange .mobile-submenu li a.active span {
  color: #B5542B;
}

.header.theme--fire-orange .events__list li.active-event a {
  color: #C45C10;
}

.header.theme--fire-orange .events__list li a:hover {
  color: #B5542B;
}

.header.theme--green .header__menu ul li a.active span {
  color: #34AD73;
}

.header.theme--green .mobile-submenu li a.active span {
  color: #34AD73;
}

.header.theme--green .events__list li.active-event a {
  color: #10C36D;
}

.header.theme--green .events__list li a:hover {
  color: #34AD73;
}

.header.theme--gray-yellow .header__menu ul li a.active span {
  color: #C99E3F;
}

.header.theme--gray-yellow .mobile-submenu li a.active span {
  color: #C99E3F;
}

.header.theme--gray-yellow .events__list li.active-event a {
  color: #E5A30D;
}

.header.theme--gray-yellow .events__list li a:hover {
  color: #C99E3F;
}

.header.submenu.theme--orange .header__menu ul li a.active span {
  color: #FF9900;
}

.header.submenu.theme--orange .mobile-submenu li a.active span {
  color: #FF9900;
}

.header.submenu.theme--blue .header__menu ul li a.active span {
  color: #0022FF;
}

.header.submenu.theme--blue .mobile-submenu li a.active span {
  color: #0022FF;
}

.header.submenu.theme--fire-orange .header__menu ul li a.active span {
  color: #B5542B;
}

.header.submenu.theme--fire-orange .mobile-submenu li a.active span {
  color: #B5542B;
}

.header.submenu.theme--green .header__menu ul li a.active span {
  color: #34AD73;
}

.header.submenu.theme--green .mobile-submenu li a.active span {
  color: #34AD73;
}

.header.submenu.theme--gray-yellow .header__menu ul li a.active span {
  color: #C99E3F;
}

.header.submenu.theme--gray-yellow .mobile-submenu li a.active span {
  color: #C99E3F;
}

@media screen and (min-width: 320px) and (max-width: 1160px) {
  .header.submenu.theme--orange .header__menu ul li a.active span, .header.submenu.theme--blue .header__menu ul li a.active span, .header.submenu.theme--fire-orange .header__menu ul li a.active span, .header.submenu.theme--green .header__menu ul li a.active span, .header.submenu.theme--gray-yellow .header__menu ul li a.active span {
    color: #fff;
  }
  .header.submenu.theme--orange .mobile-submenu li a.active span, .header.submenu.theme--blue .mobile-submenu li a.active span, .header.submenu.theme--fire-orange .mobile-submenu li a.active span, .header.submenu.theme--green .mobile-submenu li a.active span, .header.submenu.theme--gray-yellow .mobile-submenu li a.active span {
    color: #fff;
  }
}

.theme--orange .footer__item__menu:before {
  background: #FFBA54;
}

.theme--orange.events .footer__item__menu--event a:hover,
.theme--orange .footer.events .footer__item__menu--event li.active-event a {
  color: #FFAD31;
}

.theme--blue .footer__item__menu:before {
  background: #3163EB;
}

.theme--blue.events .footer__item__menu--event a:hover,
.theme--blue .footer.events .footer__item__menu--event li.active-event a {
  color: #04f;
}

.theme--fire-orange .footer__item__menu:before {
  background: #CB680C;
}

.theme--fire-orange.events .footer__item__menu--event a:hover,
.theme--fire-orange .footer.events .footer__item__menu--event li.active-event a {
  color: #B5542B;
}

.theme--green .footer__item__menu:before {
  background: #51E282;
}

.theme--green.events .footer__item__menu--event a:hover,
.theme--green .footer.events .footer__item__menu--event li.active-event a {
  color: #34AD73;
}

.theme--gray-yellow .footer__item__menu:before {
  background: #F5BC38;
}

.theme--gray-yellow.events .footer__item__menu--event a:hover,
.theme--gray-yellow .footer.events .footer__item__menu--event li.active-event a {
  color: #C99E3F;
}

.footer.events.theme--orange .footer__item__menu--event a:hover,
.footer.events.theme--orange .footer__item__menu--event li.active-event a {
  color: #FFAD31;
}

.footer.events.theme--blue .footer__item__menu--event a:hover,
.footer.events.theme--blue .footer__item__menu--event li.active-event a {
  color: #04f;
}

.footer.events.theme--fire-orange .footer__item__menu--event a:hover,
.footer.events.theme--fire-orange .footer__item__menu--event li.active-event a {
  color: #B5542B;
}

.footer.events.theme--green .footer__item__menu--event a:hover,
.footer.events.theme--green .footer__item__menu--event li.active-event a {
  color: #34AD73;
}

.footer.events.theme--gray-yellow .footer__item__menu--event a:hover,
.footer.events.theme--gray-yellow .footer__item__menu--event li.active-event a {
  color: #C99E3F;
}

.theme--orange .form-fields input[type="submit"] {
  color: #FFBA54;
}

.theme--orange .form-fields input[type="submit"]:hover {
  color: #FFAD31;
}

.theme--blue .form-fields input[type="submit"] {
  color: #3163EB;
}

.theme--blue .form-fields input[type="submit"]:hover {
  color: #0044FF;
}

.theme--fire-orange .form-fields input[type="submit"] {
  color: #CB680C;
}

.theme--fire-orange .form-fields input[type="submit"]:hover {
  color: #C45C10;
}

.theme--green .form-fields input[type="submit"] {
  color: #51E282;
}

.theme--green .form-fields input[type="submit"]:hover {
  color: #10C36D;
}

.theme--gray-yellow .form-fields input[type="submit"] {
  color: #F5BC38;
}

.theme--gray-yellow .form-fields input[type="submit"]:hover {
  color: #E5A30D;
}

.theme--orange .speaker-popup__inner--tlink a,
.theme--orange .thanks-popup__close {
  color: #ffba54;
}

.theme--orange .thanks-popup__close:hover span {
  color: #ffad31;
}

.theme--orange .training-popup__form {
  background: linear-gradient(195.53deg, #ffd706 -0.65%, #ffa944 95.62%);
}

.theme--orange .gallery__slider .slick-arrow {
  border-color: #ffba54;
}

.theme--blue .speaker-popup__inner--tlink a,
.theme--blue .thanks-popup__close {
  color: #3163eb;
}

.theme--blue .thanks-popup__close:hover span {
  color: #04f;
}

.theme--blue .training-popup__form {
  background: linear-gradient(195.53deg, #04f -0.65%, #784bf8 95.62%);
}

.theme--blue .gallery__slider .slick-arrow {
  border-color: #3163eb;
}

.theme--fire-orange .speaker-popup__inner--tlink a,
.theme--fire-orange .thanks-popup__close {
  color: #cb680c;
}

.theme--fire-orange .thanks-popup__close:hover span {
  color: #b5542b;
}

.theme--fire-orange .training-popup__form {
  background: linear-gradient(195.53deg, #cf540f -0.65%, #862a01 95.62%);
}

.theme--fire-orange .gallery__slider .slick-arrow {
  border-color: #cb680c;
}

.theme--green .speaker-popup__inner--tlink a,
.theme--green .thanks-popup__close {
  color: #51e282;
}

.theme--green .thanks-popup__close:hover span {
  color: #34ad73;
}

.theme--green .training-popup__form {
  background: linear-gradient(0deg, #1d1d1b, #1d1d1b), linear-gradient(80.45deg, #8fd22f 0.23%, #4cae48 25.23%, #018764 98.76%), linear-gradient(80.36deg, #115026 2.19%, #337e05 38.4%, #a9da1f 98.76%);
  border-radius: 8px;
}

.theme--green .gallery__slider .slick-arrow {
  border-color: #51e282;
}

.theme--gray-yellow .speaker-popup__inner--tlink a,
.theme--gray-yellow .thanks-popup__close {
  color: #f5bc38;
}

.theme--gray-yellow .thanks-popup__close:hover span {
  color: #c99e3f;
}

.theme--gray-yellow .training-popup__form {
  background: linear-gradient(195.53deg, #9e9e9e -0.65%, #4e4d4e 95.62%);
}

.theme--gray-yellow .gallery__slider .slick-arrow {
  border-color: #f5bc38;
}

.theme--orange .theme__time-color {
  stroke: #ffad31;
}

.theme--orange .theme__line {
  background: #ffba54;
}

.theme--orange .typed-cursor {
  color: #ffba54;
}

.theme--orange .theme__placement {
  background: linear-gradient(69.3deg, #fde6aa 4.42%, #ff9900 100.32%), #ffad31;
}

.theme--orange .picture .about-screen__placement__about__text span,
.theme--orange .video-screen .about-screen__placement__about__text span {
  color: #fde6aa;
}

.theme--orange .picture .about-screen__placement__about__text a,
.theme--orange .startup__placement .about-screen__placement__about__text a,
.theme--orange .video-screen .about-screen__placement__about__text a {
  color: #fde6aa;
}

.theme--orange .picture__slider__post a:after,
.theme--orange .video-screen__slider__post a:after {
  border-left: 27px solid #ffad31;
}

@media (min-width: 740px) and (max-width: 1200px) {
  .theme--orange .picture__slider__post a:after,
  .theme--orange .video-screen__slider__post a:after {
    border-left: 18px solid #ffad31;
  }
}

@media (min-width: 320px) and (max-width: 739px) {
  .theme--orange .picture__slider__post a:after,
  .theme--orange .video-screen__slider__post a:after {
    border-left: 18px solid #ffad31;
  }
}

.theme--orange .picture__slider .slick-arrow,
.theme--orange .video-screen__slider .slick-arrow {
  border: 2px solid #ffba54;
}

.theme--orange .picture__slider__post a,
.theme--orange .video-screen__slider__post a {
  background: #1f1f21;
}

.theme--orange .life-screen__title span.typed-cursor,
.theme--orange .about-main__title span.typed-cursor {
  color: #ffba54;
}

.theme--orange .life-screen__blocks__item:nth-of-type(6n + 2) {
  background: linear-gradient(207.66deg, #ffad31 -1.53%, #fde6aa 95.59%);
}

.theme--orange .life-screen__blocks__item:nth-of-type(6n + 4) {
  background: linear-gradient(207.66deg, #ffad31 -1.53%, #fde6aa 95.59%);
}

.theme--orange .life-screen__blocks__item:nth-of-type(2n) {
  background: linear-gradient(207.66deg, #ffad31 -1.53%, #fde6aa 95.59%);
}

.theme--orange .life-screen__blocks__item .msg-item__text a,
.theme--orange .life-screen__blocks__item .msg-item__tag a {
  color: #ffba54;
}

.theme--orange .life-screen__blocks__item:nth-of-type(6n + 2) .msg-item__tag a,
.theme--orange .life-screen__blocks__item:nth-of-type(6n + 2) .msg-item__text a {
  color: #fde6aa;
}

.theme--orange .life-screen__blocks__item:nth-of-type(6n + 4) .msg-item__tag a,
.theme--orange .life-screen__blocks__item:nth-of-type(6n + 4) .msg-item__text a {
  color: #fde6aa;
}

.theme--orange .scroll-down {
  stroke: #ffba54;
}

.theme--orange .btn-primary-arrow {
  fill: #ff9900;
}

.theme--orange .picture__slider .slick-arrow.slick-prev:before,
.theme--orange .video-screen__slider .slick-arrow.slick-prev:before {
  background-image: url(/../images/icons/arrow-left-orange.svg);
}

.theme--orange .picture__slider .slick-arrow.slick-next:before,
.theme--orange .video-screen__slider .slick-arrow.slick-next:before {
  background-image: url(/../images/icons/arrow-right-orange.svg);
}

.theme--orange .opportunities-screen .package__title h4.title-color,
.theme--orange .opportunities-screen .package__desc ul li p.desc-color,
.theme--orange .opportunities-screen .package__desc ul li p.desc-color span,
.theme--orange .opportunities-screen .package__price-list p.price-color {
  color: #ffba54;
}

.theme--blue .theme__time-color {
  stroke: #04f;
}

.theme--blue .theme__line {
  background: #3163eb;
}

.theme--blue .typed-cursor {
  color: #3163eb;
}

.theme--blue .theme__placement {
  background: linear-gradient(69.3deg, #a347ff 4.42%, #02f 100.32%), #04f;
}

.theme--blue .picture .about-screen__placement__about__text span,
.theme--blue .video-screen .about-screen__placement__about__text span {
  color: #aac4fd;
}

.theme--blue .picture .about-screen__placement__about__text a,
.theme--blue .startup__placement .about-screen__placement__about__text a,
.theme--blue .video-screen .about-screen__placement__about__text a {
  color: #aac4fd;
}

.theme--blue .picture__slider__post a:after,
.theme--blue .video-screen__slider__post a:after {
  border-left: 27px solid #0044ff;
}

.theme--blue .picture__slider .slick-arrow,
.theme--blue .video-screen__slider .slick-arrow {
  border: 2px solid #3163eb;
}

.theme--blue .picture__slider__post a,
.theme--blue .video-screen__slider__post a {
  background: #fff;
}

.theme--blue .life-screen__title span.typed-cursor,
.theme--blue .about-main__title span.typed-cursor {
  color: #3163eb;
}

.theme--blue .life-screen__blocks__item:nth-of-type(6n + 2) {
  background: linear-gradient(207.66deg, #04f -1.53%, #784bf8 95.59%);
}

.theme--blue .life-screen__blocks__item:nth-of-type(6n + 4) {
  background: linear-gradient(207.66deg, #04f -1.53%, #784bf8 95.59%);
}

.theme--blue .life-screen__blocks__item:nth-of-type(2n) {
  background: linear-gradient(207.66deg, #04f -1.53%, #784bf8 95.59%);
}

.theme--blue .life-screen__blocks__item .msg-item__text a,
.theme--blue .life-screen__blocks__item .msg-item__tag a {
  color: #3163eb;
}

.theme--blue .life-screen__blocks__item:nth-of-type(6n + 2) .msg-item__tag a,
.theme--blue .life-screen__blocks__item:nth-of-type(6n + 2) .msg-item__text a {
  color: #aac4fd;
}

.theme--blue .life-screen__blocks__item:nth-of-type(6n + 4) .msg-item__tag a,
.theme--blue .life-screen__blocks__item:nth-of-type(6n + 4) .msg-item__text a {
  color: #aac4fd;
}

.theme--blue a.primary-btn {
  background: #fff;
}

.theme--blue a.primary-btn span {
  color: #3163eb;
}

.theme--blue a.primary-btn:hover span {
  color: #04f;
}

.theme--blue .scroll-down {
  stroke: #3163eb;
}

.theme--blue .btn-primary-arrow {
  fill: #0012ff;
}

.theme--blue .picture__slider .slick-arrow.slick-prev:before,
.theme--blue .video-screen__slider .slick-arrow.slick-prev:before {
  background-image: url(/../images/icons/arrow-left-blue.svg);
}

.theme--blue .picture__slider .slick-arrow.slick-next:before,
.theme--blue .video-screen__slider .slick-arrow.slick-next:before {
  background-image: url(/../images/icons/arrow-right-blue.svg);
}

.theme--blue .opportunities-screen .package__title h4.title-color,
.theme--blue .opportunities-screen .package__desc ul li p.desc-color,
.theme--blue .opportunities-screen .package__desc ul li p.desc-color span,
.theme--blue .opportunities-screen .package__price-list p.price-color {
  color: #3163eb;
}

.theme--fire-orange .theme__time-color {
  stroke: #b5542b;
}

.theme--fire-orange .theme__line {
  background: #cb680c;
}

.theme--fire-orange .typed-cursor {
  color: #cb680c;
}

.theme--fire-orange .theme__placement {
  background: linear-gradient(69.3deg, #cf540f 4.42%, #862a01 100.32%);
}

.theme--fire-orange .picture .about-screen__placement__about__text span,
.theme--fire-orange .video-screen .about-screen__placement__about__text span {
  color: #fde1aa;
}

.theme--fire-orange .picture .about-screen__placement__about__text a,
.theme--fire-orange .startup__placement .about-screen__placement__about__text a,
.theme--fire-orange .video-screen .about-screen__placement__about__text a {
  color: #fde1aa;
}

.theme--fire-orange .picture__slider__post a:after,
.theme--fire-orange .video-screen__slider__post a:after {
  border-left: 27px solid #b5542b;
}

.theme--fire-orange .picture__slider .slick-arrow,
.theme--fire-orange .video-screen__slider .slick-arrow {
  border: 2px solid #cb680c;
}

.theme--fire-orange .picture__slider__post a,
.theme--fire-orange .video-screen__slider__post a {
  background: #fff;
}

.theme--fire-orange .life-screen__title span.typed-cursor,
.theme--fire-orange .about-main__title span.typed-cursor {
  color: #cb680c;
}

.theme--fire-orange .life-screen__blocks__item:nth-of-type(6n + 2) {
  background: linear-gradient(207.66deg, #cf540f -1.53%, #862a01 95.59%);
}

.theme--fire-orange .life-screen__blocks__item:nth-of-type(6n + 4) {
  background: linear-gradient(207.66deg, #cf540f -1.53%, #862a01 95.59%);
}

.theme--fire-orange .life-screen__blocks__item:nth-of-type(2n) {
  background: linear-gradient(207.66deg, #cf540f -1.53%, #862a01 95.59%);
}

.theme--fire-orange .life-screen__blocks__item .msg-item__text a,
.theme--fire-orange .life-screen__blocks__item .msg-item__tag a {
  color: #cb680c;
}

.theme--fire-orange .life-screen__blocks__item:nth-of-type(6n + 2) .msg-item__tag a,
.theme--fire-orange .life-screen__blocks__item:nth-of-type(6n + 2) .msg-item__text a {
  color: #fde1aa;
}

.theme--fire-orange .life-screen__blocks__item:nth-of-type(6n + 4) .msg-item__tag a,
.theme--fire-orange .life-screen__blocks__item:nth-of-type(6n + 4) .msg-item__text a {
  color: #fde1aa;
}

.theme--fire-orange a.primary-btn {
  background: #fff;
}

.theme--fire-orange a.primary-btn span {
  color: #cb680c;
}

.theme--fire-orange a.primary-btn:hover span {
  color: #b5542b;
}

.theme--fire-orange .scroll-down {
  stroke: #cb680c;
}

.theme--fire-orange .btn-primary-arrow {
  fill: #b5542b;
}

.theme--fire-orange .picture__slider .slick-arrow.slick-prev:before,
.theme--fire-orange .video-screen__slider .slick-arrow.slick-prev:before {
  background-image: url(/../images/icons/arrow-left-fire.svg);
}

.theme--fire-orange .picture__slider .slick-arrow.slick-next:before,
.theme--fire-orange .video-screen__slider .slick-arrow.slick-next:before {
  background-image: url(/../images/icons/arrow-right-fire.svg);
}

.theme--fire-orange .opportunities-screen .package__title h4.title-color,
.theme--fire-orange .opportunities-screen .package__desc ul li p.desc-color,
.theme--fire-orange .opportunities-screen .package__desc ul li p.desc-color span,
.theme--fire-orange .opportunities-screen .package__price-list p.price-color {
  color: #cb680c;
}

.theme--green .theme__time-color {
  stroke: #34ad73;
}

.theme--green .theme__line {
  background: #51e282;
}

.theme--green .typed-cursor {
  color: #51e282;
}

.theme--green .theme__placement {
  background: linear-gradient(0deg, #1d1d1b, #1d1d1b), linear-gradient(80.45deg, #8fd22f 0.23%, #4cae48 25.23%, #018764 98.76%), linear-gradient(80.36deg, #115026 2.19%, #337e05 38.4%, #a9da1f 98.76%);
}

.theme--green .picture .about-screen__placement__about__text span,
.theme--green .video-screen .about-screen__placement__about__text span {
  color: #adf083;
}

.theme--green .picture .about-screen__placement__about__text a,
.theme--green .startup__placement .about-screen__placement__about__text a,
.theme--green .video-screen .about-screen__placement__about__text a {
  color: #adf083;
}

.theme--green .picture__slider__post a:after,
.theme--green .video-screen__slider__post a:after {
  border-left: 27px solid #34ad73;
}

.theme--green .picture__slider .slick-arrow,
.theme--green .video-screen__slider .slick-arrow {
  border: 2px solid #51e282;
}

.theme--green .picture__slider__post a,
.theme--green .video-screen__slider__post a {
  background: #fff;
}

.theme--green .life-screen__title span.typed-cursor,
.theme--green .about-main__title span.typed-cursor {
  color: #51e282;
}

.theme--green .life-screen__blocks__item:nth-of-type(6n + 2) {
  background: linear-gradient(207.66deg, #8fd22f -1.53%, #018764 95.59%);
}

.theme--green .life-screen__blocks__item:nth-of-type(6n + 4) {
  background: linear-gradient(207.66deg, #8fd22f -1.53%, #018764 95.59%);
}

.theme--green .life-screen__blocks__item:nth-of-type(2n) {
  background: linear-gradient(207.66deg, #8fd22f -1.53%, #018764 95.59%);
}

.theme--green .life-screen__blocks__item .msg-item__text a,
.theme--green .life-screen__blocks__item .msg-item__tag a {
  color: #51e282;
}

.theme--green .life-screen__blocks__item:nth-of-type(6n + 2) .msg-item__tag a,
.theme--green .life-screen__blocks__item:nth-of-type(6n + 2) .msg-item__text a {
  color: #adf083;
}

.theme--green .life-screen__blocks__item:nth-of-type(6n + 4) .msg-item__tag a,
.theme--green .life-screen__blocks__item:nth-of-type(6n + 4) .msg-item__text a {
  color: #adf083;
}

.theme--green a.primary-btn {
  background: #fff;
}

.theme--green a.primary-btn span {
  color: #51e282;
}

.theme--green a.primary-btn:hover span {
  color: #34ad73;
}

.theme--green .scroll-down {
  stroke: #51e282;
}

.theme--green .btn-primary-arrow {
  fill: #34ad73;
}

.theme--green .picture__slider .slick-arrow.slick-prev:before,
.theme--green .video-screen__slider .slick-arrow.slick-prev:before {
  background-image: url(/../images/icons/arrow-left-green.svg);
}

.theme--green .picture__slider .slick-arrow.slick-next:before,
.theme--green .video-screen__slider .slick-arrow.slick-next:before {
  background-image: url(/../images/icons/arrow-right-green.svg);
}

.theme--green .opportunities-screen .package__title h4.title-color,
.theme--green .opportunities-screen .package__desc ul li p.desc-color,
.theme--green .opportunities-screen .package__desc ul li p.desc-color span,
.theme--green .opportunities-screen .package__price-list p.price-color {
  color: #51e282;
}

.theme--gray-yellow .theme__time-color {
  stroke: #c99e3f;
}

.theme--gray-yellow .theme__line {
  background: #f5bc38;
}

.theme--gray-yellow .typed-cursor {
  color: #f5bc38;
}

.theme--gray-yellow .theme__placement {
  background: linear-gradient(69.3deg, #9e9e9e 4.42%, #4e4d4e 100.32%);
}

.theme--gray-yellow .picture .about-screen__placement__about__text span,
.theme--gray-yellow .video-screen .about-screen__placement__about__text span {
  color: #f6ce3e;
}

.theme--gray-yellow .picture .about-screen__placement__about__text a,
.theme--gray-yellow .startup__placement .about-screen__placement__about__text a,
.theme--gray-yellow .video-screen .about-screen__placement__about__text a {
  color: #f6ce3e;
}

.theme--gray-yellow .picture__slider__post a:after,
.theme--gray-yellow .video-screen__slider__post a:after {
  border-left: 27px solid #c99e3f;
}

.theme--gray-yellow .picture__slider .slick-arrow,
.theme--gray-yellow .video-screen__slider .slick-arrow {
  border: 2px solid #f5bc38;
}

.theme--gray-yellow .picture__slider__post a,
.theme--gray-yellow .video-screen__slider__post a {
  background: #fff;
}

.theme--gray-yellow .life-screen__title span.typed-cursor,
.theme--gray-yellow .about-main__title span.typed-cursor {
  color: #f5bc38;
}

.theme--gray-yellow .life-screen__blocks__item:nth-of-type(6n + 2) {
  background: linear-gradient(207.66deg, #9e9e9e -1.53%, #4e4d4e 95.59%);
}

.theme--gray-yellow .life-screen__blocks__item:nth-of-type(6n + 4) {
  background: linear-gradient(207.66deg, #9e9e9e -1.53%, #4e4d4e 95.59%);
}

.theme--gray-yellow .life-screen__blocks__item:nth-of-type(2n) {
  background: linear-gradient(207.66deg, #9e9e9e -1.53%, #4e4d4e 95.59%);
}

.theme--gray-yellow .life-screen__blocks__item .msg-item__text a,
.theme--gray-yellow .life-screen__blocks__item .msg-item__tag a {
  color: #f5bc38;
}

.theme--gray-yellow .life-screen__blocks__item:nth-of-type(6n + 2) .msg-item__tag a,
.theme--gray-yellow .life-screen__blocks__item:nth-of-type(6n + 2) .msg-item__text a {
  color: #f6ce3e;
}

.theme--gray-yellow .life-screen__blocks__item:nth-of-type(6n + 4) .msg-item__tag a,
.theme--gray-yellow .life-screen__blocks__item:nth-of-type(6n + 4) .msg-item__text a {
  color: #f6ce3e;
}

.theme--gray-yellow a.primary-btn {
  background: #fff;
}

.theme--gray-yellow a.primary-btn span {
  color: #f5bc38;
}

.theme--gray-yellow a.primary-btn:hover span {
  color: #c99e3f;
}

.theme--gray-yellow .scroll-down {
  stroke: #f5bc38;
}

.theme--gray-yellow .btn-primary-arrow {
  fill: #c99e3f;
}

.theme--gray-yellow .picture__slider .slick-arrow.slick-prev:before,
.theme--gray-yellow .video-screen__slider .slick-arrow.slick-prev:before {
  background-image: url(/../images/icons/arrow-left.svg);
}

.theme--gray-yellow .picture__slider .slick-arrow.slick-next:before,
.theme--gray-yellow .video-screen__slider .slick-arrow.slick-next:before {
  background-image: url(/../images/icons/arrow-right.svg);
}

.theme--gray-yellow .opportunities-screen .package__title h4.title-color,
.theme--gray-yellow .opportunities-screen .package__desc ul li p.desc-color,
.theme--gray-yellow .opportunities-screen .package__desc ul li p.desc-color span,
.theme--gray-yellow .opportunities-screen .package__price-list p.price-color {
  color: #f5bc38;
}

.theme--orange .about-main__text a,
.theme--orange .about-main__themes a {
  color: #FFBA54;
}

.theme--blue .about-main__text a,
.theme--blue .about-main__themes a {
  color: #3163eb;
}

.theme--fire-orange .about-main__text a,
.theme--fire-orange .about-main__themes a {
  color: #CB680C;
}

.theme--green .about-main__text a,
.theme--green .about-main__themes a {
  color: #51E282;
}

.theme--gray-yellow .about-main__text a,
.theme--gray-yellow .about-main__themes a {
  color: #F5BC38;
}

.theme--orange .location-main__title span.typed-cursor,
.theme--orange .location-venue__title span.typed-cursor,
.theme--orange .location-travel__title span.typed-cursor {
  color: #ffba54;
}

.theme--orange .location-hotel__placement__about__text a {
  color: #FDE6AA;
}

.theme--orange .location-venue__about__text a {
  color: #FFBA54;
}

.theme--orange .sales-card a {
  color: #FFBA54;
}

.theme--blue .location-main__title span.typed-cursor,
.theme--blue .location-venue__title span.typed-cursor,
.theme--blue .location-travel__title span.typed-cursor {
  color: #3163eb;
}

.theme--blue .location-venue__about__text a {
  color: #3163eb;
}

.theme--blue .sales-card a {
  color: #3163eb;
}

.theme--fire-orange .location-main__title span.typed-cursor,
.theme--fire-orange .location-venue__title span.typed-cursor,
.theme--fire-orange .location-travel__title span.typed-cursor {
  color: #CB680C;
}

.theme--fire-orange .location-hotel__placement__about__text a {
  color: #FDE1AA;
}

.theme--fire-orange .location-venue__about__text a {
  color: #CB680C;
}

.theme--fire-orange .sales-card a {
  color: #CB680C;
}

.theme--green .location-main__title span.typed-cursor,
.theme--green .location-venue__title span.typed-cursor,
.theme--green .location-travel__title span.typed-cursor {
  color: #51E282;
}

.theme--green .location-hotel__placement__about__text a {
  color: #ADF083;
}

.theme--green .location-venue__about__text a {
  color: #51E282;
}

.theme--green .sales-card a {
  color: #51E282;
}

.theme--gray-yellow .location-main__title span.typed-cursor,
.theme--gray-yellow .location-venue__title span.typed-cursor,
.theme--gray-yellow .location-travel__title span.typed-cursor {
  color: #F5BC38;
}

.theme--gray-yellow .location-hotel__placement__about__text a {
  color: #F6CE3E;
}

.theme--gray-yellow .location-venue__about__text a {
  color: #F5BC38;
}

.theme--gray-yellow .sales-card a {
  color: #F5BC38;
}

.theme--orange .contacts-main__title span.typed-cursor {
  color: #ffba54;
}

.theme--orange .contact-person a {
  color: #ffba54;
}

.theme--orange .contacts-info__form {
  background: linear-gradient(207.01deg, #ffd706 -1.53%, #ffa944 95.59%);
}

.theme--blue .contacts-main__title span.typed-cursor {
  color: #3163eb;
}

.theme--blue .contact-person a {
  color: #3163eb;
}

.theme--blue .contacts-info__form {
  background: linear-gradient(207.01deg, #04f -1.53%, #784bf8 95.59%);
}

.theme--fire-orange .contacts-main__title span.typed-cursor {
  color: #cb680c;
}

.theme--fire-orange .contact-person a {
  color: #cb680c;
}

.theme--fire-orange .contacts-info__form {
  background: linear-gradient(207.01deg, #cf540f -1.53%, #862a01 95.59%);
}

.theme--green .contacts-main__title span.typed-cursor {
  color: #51e282;
}

.theme--green .contact-person a {
  color: #51e282;
}

.theme--green .contacts-info__form {
  background: linear-gradient(0deg, #1d1d1b, #1d1d1b), linear-gradient(80.45deg, #8fd22f 0.23%, #4cae48 25.23%, #018764 98.76%), linear-gradient(80.36deg, #115026 2.19%, #337e05 38.4%, #a9da1f 98.76%);
  border-radius: 8px;
}

.theme--gray-yellow .contacts-main__title span.typed-cursor {
  color: #f5bc38;
}

.theme--gray-yellow .contact-person a {
  color: #f5bc38;
}

.theme--gray-yellow .contacts-info__form {
  background: linear-gradient(207.01deg, #9e9e9e -1.53%, #4e4d4e 95.59%);
}

.theme--orange .code-main__title span.typed-cursor,
.theme--orange .code-text__list--title span.typed-cursor,
.theme--orange .code-text__list a {
  color: #FFBA54;
}

.theme--blue .code-main__title span.typed-cursor,
.theme--blue .code-text__list--title span.typed-cursor,
.theme--blue .code-text__list a {
  color: #3163eb;
}

.theme--fire-orange .code-main__title span.typed-cursor,
.theme--fire-orange .code-text__list--title span.typed-cursor,
.theme--fire-orange .code-text__list a {
  color: #CB680C;
}

.theme--green .code-main__title span.typed-cursor,
.theme--green .code-text__list--title span.typed-cursor,
.theme--green .code-text__list a {
  color: #51E282;
}

.theme--gray-yellow .code-main__title span.typed-cursor,
.theme--gray-yellow .code-text__list--title span.typed-cursor,
.theme--gray-yellow .code-text__list a {
  color: #F5BC38;
}

.theme--orange .media-main__text a,
.theme--orange .media-main__text span,
.theme--orange .media-main__text strong {
  color: #FFBA54;
}

.theme--orange .media-main__title span.typed-cursor {
  color: #FFBA54;
}

.theme--orange .media-submenu ul li a.active {
  background-color: #FFAD31;
}

.theme--orange .media-search .arrow-search {
  fill: #FFAD31;
}

.theme--orange .media-photos__info h3 strong,
.theme--orange .media-video__info h3 strong,
.theme--orange .media-video__info__description a {
  color: #FFBA54;
}

.theme--orange .hidden-video__video__preview a:after,
.theme--orange .media-photos__video__preview a:after,
.theme--orange .media-video__video__preview a:after {
  border-left: 18px solid #FFAD31;
}

.theme--orange .media-content__touch-btn__item.active-icon .program-filter-check {
  fill: #FFAD31;
}

.theme--orange .media-video__info h3 > a {
  color: #FF9900;
}

.theme--orange .media-content__more {
  background: linear-gradient(191.47deg, #FFD706 -1.53%, #FFA944 95.59%);
}

.theme--orange .form-video__content {
  background: linear-gradient(191.47deg, #FFD706 -1.53%, #FFA944 95.59%);
}

.theme--orange .form-video__form .mktoForm button[type=submit] {
  color: #FFBA54;
}

.theme--blue .media-main__text a,
.theme--blue .media-main__text span,
.theme--blue .media-main__text strong {
  color: #3163eb;
}

.theme--blue .media-main__title span.typed-cursor {
  color: #3163eb;
}

.theme--blue .media-submenu ul li a.active {
  background-color: #04f;
}

.theme--blue .media-search .arrow-search {
  fill: #04f;
}

.theme--blue .media-photos__info h3 strong,
.theme--blue .media-video__info h3 strong,
.theme--blue .media-video__info__description a {
  color: #3163eb;
}

.theme--blue .hidden-video__video__preview a:after,
.theme--blue .media-photos__video__preview a:after,
.theme--blue .media-video__video__preview a:after {
  border-left: 18px solid #04f;
}

.theme--blue .media-content__touch-btn__item.active-icon .program-filter-check {
  fill: #04f;
}

.theme--blue .media-video__info h3 > a {
  color: #04f;
}

.theme--fire-orange .media-main__text a,
.theme--fire-orange .media-main__text span,
.theme--fire-orange .media-main__text strong {
  color: #CB680C;
}

.theme--fire-orange .media-main__title span.typed-cursor {
  color: #CB680C;
}

.theme--fire-orange .media-submenu ul li a.active {
  background-color: #B5542B;
}

.theme--fire-orange .media-search .arrow-search {
  fill: #B5542B;
}

.theme--fire-orange .media-photos__info h3 strong,
.theme--fire-orange .media-video__info h3 strong,
.theme--fire-orange .media-video__info__description a {
  color: #CB680C;
}

.theme--fire-orange .media-video__info h3 > a {
  color: #B5542B;
}

.theme--fire-orange .hidden-video__video__preview a:after,
.theme--fire-orange .media-photos__video__preview a:after,
.theme--fire-orange .media-video__video__preview a:after {
  border-left: 18px solid #B5542B;
}

.theme--fire-orange .media-content__touch-btn__item.active-icon .program-filter-check {
  fill: #B5542B;
}

.theme--fire-orange .media-content__more {
  background: linear-gradient(191.47deg, #CF540F -1.53%, #862A01 95.59%);
}

.theme--fire-orange .form-video__content {
  background: linear-gradient(191.47deg, #CF540F -1.53%, #862A01 95.59%);
}

.theme--fire-orange .form-video__form .mktoForm button[type=submit] {
  color: #CB680C;
}

.theme--green .media-main__text a,
.theme--green .media-main__text span,
.theme--green .media-main__text strong {
  color: #51E282;
}

.theme--green .media-main__title span.typed-cursor {
  color: #51E282;
}

.theme--green .media-submenu ul li a.active {
  background-color: #34AD73;
}

.theme--green .media-search .arrow-search {
  fill: #34AD73;
}

.theme--green .media-photos__info h3 strong,
.theme--green .media-video__info h3 strong,
.theme--green .media-video__info__description a {
  color: #51E282;
}

.theme--green .media-video__info h3 > a {
  color: #34AD73;
}

.theme--green .hidden-video__video__preview a:after,
.theme--green .media-photos__video__preview a:after,
.theme--green .media-video__video__preview a:after {
  border-left: 18px solid #34AD73;
}

.theme--green .media-content__touch-btn__item.active-icon .program-filter-check {
  fill: #34AD73;
}

.theme--green .media-content__more {
  background: linear-gradient(191.47deg, #8FD22F -1.53%, #018764 95.59%);
}

.theme--green .form-video__content {
  background: linear-gradient(191.47deg, #8FD22F -1.53%, #018764 95.59%);
}

.theme--green .form-video__form .mktoForm button[type=submit] {
  color: #51E282;
}

.theme--gray-yellow .media-main__text a,
.theme--gray-yellow .media-main__text span,
.theme--gray-yellow .media-main__text strong {
  color: #F5BC38;
}

.theme--gray-yellow .media-main__title span.typed-cursor {
  color: #F5BC38;
}

.theme--gray-yellow .media-submenu ul li a.active {
  background-color: #C99E3F;
}

.theme--gray-yellow .media-search .arrow-search {
  fill: #C99E3F;
}

.theme--gray-yellow .media-photos__info h3 strong,
.theme--gray-yellow .media-video__info h3 strong,
.theme--gray-yellow .media-video__info__description a {
  color: #F5BC38;
}

.theme--gray-yellow .media-video__info h3 > a {
  color: #C99E3F;
}

.theme--gray-yellow .hidden-video__video__preview a:after,
.theme--gray-yellow .media-photos__video__preview a:after,
.theme--gray-yellow .media-video__video__preview a:after {
  border-left: 18px solid #C99E3F;
}

.theme--gray-yellow .media-content__touch-btn__item.active-icon .program-filter-check {
  fill: #C99E3F;
}

.theme--gray-yellow .media-content__more {
  background: linear-gradient(191.47deg, #9E9E9E -1.53%, #4E4D4E 95.59%);
}

.theme--gray-yellow .form-video__content {
  background: linear-gradient(191.47deg, #9E9E9E -1.53%, #4E4D4E 95.59%);
}

.theme--gray-yellow .form-video__form .mktoForm button[type=submit] {
  color: #F5BC38;
}

.theme--orange .program-main__title span.typed-cursor,
.theme--orange .programs__title span.typed-cursor,
.theme--orange .program-events__title span.typed-cursor,
.theme--orange .events-card__info__item p {
  color: #ffba54;
}

.theme--orange .programs__search .arrow-search {
  fill: #ffad31;
}

.theme--orange .programs__filter__panel ul li a:before {
  background-color: #ffba54;
}

.theme--orange .schedule__title {
  background: #ffad31;
}

.theme--orange .schedule__subtitle {
  background: linear-gradient(38.69deg, rgba(255, 215, 6, 0.7) 4.42%, rgba(255, 153, 0, 0.7) 100.32%), #ffad31;
}

.theme--orange .schedule__subtitle span,
.theme--orange .schedule__item__time span {
  color: #fde6aa;
}

.theme--orange .schedule__subtitle span.name,
.theme--orange .schedule__item__time span.name {
  color: #fff;
}

.theme--orange .schedule__item__check {
  border: 1px solid #fde6aa;
}

.theme--orange .schedule__item.select .schedule__item__check {
  background: #ffad31;
  border-color: #ffad31;
}

.theme--orange .programs__filter__btn a.primary-btn {
  border: 2px solid #ffad31;
}

.theme--blue .program-main__title span.typed-cursor,
.theme--blue .programs__title span.typed-cursor,
.theme--blue .program-events__title span.typed-cursor,
.theme--blue .events-card__info__item p {
  color: #3163eb;
}

.theme--blue .programs__search .arrow-search {
  fill: #04f;
}

.theme--blue .programs__filter__panel ul li a:before {
  background-color: #3163eb;
}

.theme--blue .schedule__title {
  background: #04f;
}

.theme--blue .schedule__subtitle {
  background: linear-gradient(38.69deg, rgba(163, 71, 255, 0.7) 4.42%, rgba(0, 34, 255, 0.7) 100.32%), #04f;
}

.theme--blue .schedule__subtitle span,
.theme--blue .schedule__item__time span {
  color: #aac4fd;
}

.theme--blue .schedule__subtitle span.name,
.theme--blue .schedule__item__time span.name {
  color: #fff;
}

.theme--blue .schedule__item.select .schedule__item__check {
  background: #04f;
  border-color: #04f;
}

.theme--blue .schedule__item__check {
  border: 1px solid #aac4fd;
}

.theme--fire-orange .program-main__title span.typed-cursor,
.theme--fire-orange .programs__title span.typed-cursor,
.theme--fire-orange .program-events__title span.typed-cursor,
.theme--fire-orange .events-card__info__item p {
  color: #cb680c;
}

.theme--fire-orange .programs__search .arrow-search {
  fill: #b5542b;
}

.theme--fire-orange .programs__filter__panel ul li a:before {
  background-color: #cb680c;
}

.theme--fire-orange .schedule__title {
  background: #b5542b;
}

.theme--fire-orange .schedule__subtitle {
  background: linear-gradient(38.69deg, #cf540f 4.42%, #862a01 100.32%);
}

.theme--fire-orange .schedule__subtitle span,
.theme--fire-orange .schedule__item__time span {
  color: #fde1aa;
}

.theme--fire-orange .schedule__subtitle span.name,
.theme--fire-orange .schedule__item__time span.name {
  color: #fff;
}

.theme--fire-orange .schedule__item.select .schedule__item__check {
  background: #b5542b;
  border-color: #b5542b;
}

.theme--fire-orange .schedule__item__check {
  border: 1px solid #fde1aa;
}

.theme--green .program-main__title span.typed-cursor,
.theme--green .programs__title span.typed-cursor,
.theme--green .program-events__title span.typed-cursor,
.theme--green .events-card__info__item p {
  color: #51e282;
}

.theme--green .program-main__text a {
  color: #51e282;
}

.theme--green .programs__search .arrow-search {
  fill: #34ad73;
}

.theme--green .programs__filter__panel ul li a:before {
  background-color: #51e282;
}

.theme--green .schedule__title {
  background: #34ad73;
}

.theme--green .schedule__subtitle {
  background: linear-gradient(38.69deg, #8fd22f 4.42%, #018764 100.32%);
}

.theme--green .schedule__subtitle span,
.theme--green .schedule__item__time span {
  color: #adf083;
}

.theme--green .schedule__subtitle span.name,
.theme--green .schedule__item__time span.name {
  color: #fff;
}

.theme--green .schedule__item.select .schedule__item__check {
  background: #34ad73;
  border-color: #34ad73;
}

.theme--green .schedule__item__check {
  border: 1px solid #adf083;
}

.theme--gray-yellow .program-main__title span.typed-cursor,
.theme--gray-yellow .programs__title span.typed-cursor,
.theme--gray-yellow .program-events__title span.typed-cursor,
.theme--gray-yellow .events-card__info__item p {
  color: #f5bc38;
}

.theme--gray-yellow .programs__search .arrow-search {
  fill: #c99e3f;
}

.theme--gray-yellow .programs__filter__panel ul li a:before {
  background-color: #f5bc38;
}

.theme--gray-yellow .schedule__title {
  background: #c99e3f;
}

.theme--gray-yellow .schedule__subtitle {
  background: linear-gradient(38.69deg, #9e9e9e 4.42%, #4e4d4e 100.32%);
}

.theme--gray-yellow .schedule__subtitle span,
.theme--gray-yellow .schedule__item__time span {
  color: #f6ce3e;
}

.theme--gray-yellow .schedule__subtitle span.name,
.theme--gray-yellow .schedule__item__time span.name {
  color: #fff;
}

.theme--gray-yellow .schedule__item.select .schedule__item__check {
  background: #c99e3f;
  border-color: #c99e3f;
}

.theme--gray-yellow .schedule__item__check {
  border: 1px solid #f6ce3e;
}

.theme--orange .participants-main__title span.typed-cursor,
.theme--orange .participants-main__inner--subtitle span.typed-cursor {
  color: #ffba54;
}

.theme--orange .participants-main__form {
  background: linear-gradient(204.76deg, #ffd706 -0.65%, #ffa944 95.62%);
}

.theme--blue .participants-main__title span.typed-cursor,
.theme--blue .participants-main__inner--subtitle span.typed-cursor {
  color: #3163eb;
}

.theme--blue .participants-main__form {
  background: linear-gradient(204.76deg, #04f -0.65%, #784bf8 95.62%);
}

.theme--fire-orange .participants-main__title span.typed-cursor,
.theme--fire-orange .participants-main__inner--subtitle span.typed-cursor {
  color: #cb680c;
}

.theme--fire-orange .participants-main__form {
  background: linear-gradient(204.76deg, #cf540f -0.65%, #862a01 95.62%);
}

.theme--green .participants-main__title span.typed-cursor,
.theme--green .participants-main__inner--subtitle span.typed-cursor {
  color: #51e282;
}

.theme--green .participants-main__form {
  background: linear-gradient(0deg, #1d1d1b, #1d1d1b), linear-gradient(80.45deg, #8fd22f 0.23%, #4cae48 25.23%, #018764 98.76%), linear-gradient(80.36deg, #115026 2.19%, #337e05 38.4%, #a9da1f 98.76%);
  border-radius: 8px;
}

.theme--gray-yellow .participants-main__title span.typed-cursor,
.theme--gray-yellow .participants-main__inner--subtitle span.typed-cursor {
  color: #f5bc38;
}

.theme--gray-yellow .participants-main__form {
  background: linear-gradient(204.76deg, #9e9e9e -0.65%, #4e4d4e 95.62%);
}

.theme--orange .sponsorship__text--title span.typed-cursor,
.theme--orange .sponsorship__text--content p a,
.theme--orange .sponsorship__card a {
  color: #FFBA54;
}

.theme--orange .sponsorship__text--content p a:before {
  background-color: #FFBA54;
}

.theme--blue .sponsorship__text--title span.typed-cursor,
.theme--blue .sponsorship__text--content p a,
.theme--blue .sponsorship__card a {
  color: #3163eb;
}

.theme--blue .sponsorship__text--content p a:before {
  color: #3163eb;
}

.theme--fire-orange .sponsorship__text--title span.typed-cursor,
.theme--fire-orange .sponsorship__text--content p a,
.theme--fire-orange .sponsorship__card a {
  color: #CB680C;
}

.theme--fire-orange .sponsorship__text--content p a:before {
  color: #CB680C;
}

.theme--green .sponsorship__text--title span.typed-cursor,
.theme--green .sponsorship__text--content p a,
.theme--green .sponsorship__card a {
  color: #51E282;
}

.theme--green .sponsorship__text--content p a:before {
  color: #51E282;
}

.theme--gray-yellow .sponsorship__text--title span.typed-cursor,
.theme--gray-yellow .sponsorship__text--content p a,
.theme--gray-yellow .sponsorship__card a {
  color: #F5BC38;
}

.theme--gray-yellow .sponsorship__text--content p a:before {
  color: #F5BC38;
}

.theme--orange .speakers-main__title span.typed-cursor,
.theme--orange .speakers-list__inner--tlink a,
.theme--orange .speakers-guide__inner--instructions p a,
.theme--orange .speakers-guide__inner--form
.form-fields__item--upload
.upload-file
span,
.theme--orange .speakers-guide__inner--form .save-btn:hover {
  color: #ffba54;
}

.theme--orange .speakers-guide__inner--instructions p span {
  color: #fde6aa;
}

.theme--orange .speakers-guide__inner--instructions p a:before {
  background-color: #ffba54;
}

.theme--orange .speakers-guide__inner--form {
  background: linear-gradient(207.65deg, #ffd706 -0.65%, #ffa944 95.62%);
}

.theme--orange .speakers-guide__inner ul li:before {
  background-color: #ffba54;
}

.theme--orange .speakers-guide__inner ul li ul li:before {
  border-color: #ffba54;
  background-color: transparent;
}

.theme--orange .speakers-list__inner a {
  color: #ffba54;
}

.theme--blue .speakers-main__title span.typed-cursor,
.theme--blue .speakers-list__inner--tlink a,
.theme--blue .speakers-guide__inner--instructions p a,
.theme--blue .speakers-guide__inner--form
.form-fields__item--upload
.upload-file
span,
.theme--blue .speakers-guide__inner--form .save-btn:hover {
  color: #3163eb;
}

.theme--blue .speakers-guide__inner--instructions p span {
  color: #aac4fd;
}

.theme--blue .speakers-guide__inner--instructions p a:before {
  background-color: #3163eb;
}

.theme--blue .speakers-guide__inner--form {
  background: linear-gradient(207.65deg, #04f -0.65%, #784bf8 95.62%);
}

.theme--blue .speakers-guide__inner ul li:before {
  background-color: #3163eb;
}

.theme--blue .speakers-guide__inner ul li ul li:before {
  border-color: #3163eb;
  background-color: transparent;
}

.theme--blue .speakers-list__inner a {
  color: #3163eb;
}

.theme--fire-orange .speakers-main__title span.typed-cursor,
.theme--fire-orange .speakers-list__inner--tlink a,
.theme--fire-orange .speakers-guide__inner--instructions p a,
.theme--fire-orange .speakers-guide__inner--form
.form-fields__item--upload
.upload-file
span,
.theme--fire-orange .speakers-guide__inner--form .save-btn:hover {
  color: #cb680c;
}

.theme--fire-orange .speakers-guide__inner--instructions p span {
  color: #fde1aa;
}

.theme--fire-orange .speakers-guide__inner--instructions p a:before {
  background-color: #cb680c;
}

.theme--fire-orange .speakers-guide__inner--form {
  background: linear-gradient(207.65deg, #cf540f -0.65%, #862a01 95.62%);
}

.theme--fire-orange .speakers-guide__inner ul li:before {
  background-color: #cb680c;
}

.theme--fire-orange .speakers-guide__inner ul li ul li:before {
  border-color: #cb680c;
  background-color: transparent;
}

.theme--fire-orange .speakers-list__inner a {
  color: #cb680c;
}

.theme--green .speakers-main__title span.typed-cursor,
.theme--green .speakers-list__inner--tlink a,
.theme--green .speakers-guide__inner--instructions p a,
.theme--green .speakers-guide__inner--form
.form-fields__item--upload
.upload-file
span,
.theme--green .speakers-guide__inner--form .save-btn:hover {
  color: #51e282;
}

.theme--green .speakers-guide__inner--instructions p span {
  color: #adf083;
}

.theme--green .speakers-guide__inner--instructions p a:before {
  background-color: #51e282;
}

.theme--green .speakers-guide__inner--form {
  background: linear-gradient(0deg, #1d1d1b, #1d1d1b), linear-gradient(80.45deg, #8fd22f 0.23%, #4cae48 25.23%, #018764 98.76%), linear-gradient(80.36deg, #115026 2.19%, #337e05 38.4%, #a9da1f 98.76%);
  border-radius: 8px;
}

.theme--green .speakers-guide__inner ul li:before {
  background-color: #51e282;
}

.theme--green .speakers-guide__inner ul li ul li:before {
  border-color: #51e282;
  background-color: transparent;
}

.theme--green .speakers-list__inner a {
  color: #51e282;
}

.theme--gray-yellow .speakers-main__title span.typed-cursor,
.theme--gray-yellow .speakers-list__inner--tlink a,
.theme--gray-yellow .speakers-guide__inner--instructions p a,
.theme--gray-yellow .speakers-guide__inner--form
.form-fields__item--upload
.upload-file
span,
.theme--gray-yellow .speakers-guide__inner--form .save-btn:hover {
  color: #f5bc38;
}

.theme--gray-yellow .speakers-guide__inner--instructions p span {
  color: #f6ce3e;
}

.theme--gray-yellow .speakers-guide__inner--instructions p a:before {
  background-color: #f5bc38;
}

.theme--gray-yellow .speakers-guide__inner--form {
  background: linear-gradient(207.65deg, #9e9e9e -0.65%, #4e4d4e 95.62%);
}

.theme--gray-yellow .speakers-guide__inner ul li:before {
  background-color: #f5bc38;
}

.theme--gray-yellow .speakers-guide__inner ul li ul li:before {
  border-color: #f5bc38;
  background-color: transparent;
}

.theme--gray-yellow .speakers-list__inner a {
  color: #f5bc38;
}

.theme--orange .training-main__text a,
.theme--orange .training-main__text span,
.theme--orange .training-main__text strong,
.theme--orange .training-main__title span.typed-cursor,
.theme--orange .training-list__title span.typed-cursor {
  color: #FFBA54;
}

.theme--orange .training-list__block--title {
  background: #FFAD31;
}

.theme--orange .training-list__block--trainers h3,
.theme--orange .training-list__block--price h3 {
  color: #FDE6AA;
}

.theme--orange .training-list__block--topics ul li:before {
  background-color: #FFBA54;
}

.theme--orange .training-list__block--btn a {
  color: #FFBA54;
}

.theme--orange .training-list__block--btn a:hover span {
  color: #FFAD31;
}

.theme--orange .training-list__block--btn a .btn-primary-arrow {
  fill: #FF9900;
}

.theme--blue .training-main__text a,
.theme--blue .training-main__text span,
.theme--blue .training-main__text strong,
.theme--blue .training-main__title span.typed-cursor,
.theme--blue .training-list__title span.typed-cursor {
  color: #3163eb;
}

.theme--blue .training-list__block--title {
  background: #0044FF;
}

.theme--blue .training-list__block--trainers h3,
.theme--blue .training-list__block--price h3 {
  color: #aac4fd;
}

.theme--blue .training-list__block--topics ul li:before {
  background-color: #3163EB;
}

.theme--blue .training-list__block--btn a {
  color: #3163eb;
}

.theme--blue .training-list__block--btn a:hover span {
  color: #04f;
}

.theme--blue .training-list__block--btn a .btn-primary-arrow {
  fill: #0012ff;
}

.theme--fire-orange .training-main__text a,
.theme--fire-orange .training-main__text span,
.theme--fire-orange .training-main__text strong,
.theme--fire-orange .training-main__title span.typed-cursor,
.theme--fire-orange .training-list__title span.typed-cursor {
  color: #CB680C;
}

.theme--fire-orange .training-list__block--title {
  background: #B5542B;
}

.theme--fire-orange .training-list__block--trainers h3,
.theme--fire-orange .training-list__block--price h3 {
  color: #FDE1AA;
}

.theme--fire-orange .training-list__block--topics ul li:before {
  background-color: #CB680C;
}

.theme--fire-orange .training-list__block--btn a {
  color: #CB680C;
}

.theme--fire-orange .training-list__block--btn a:hover span {
  color: #B5542B;
}

.theme--fire-orange .training-list__block--btn a .btn-primary-arrow {
  fill: #B5542B;
}

.theme--green .training-main__text a,
.theme--green .training-main__text span,
.theme--green .training-main__text strong,
.theme--green .training-main__title span.typed-cursor,
.theme--green .training-list__title span.typed-cursor {
  color: #51E282;
}

.theme--green .training-list__block--title {
  background: #34AD73;
}

.theme--green .training-list__block--trainers h3,
.theme--green .training-list__block--price h3 {
  color: #ADF083;
}

.theme--green .training-list__block--topics ul li:before {
  background-color: #51E282;
}

.theme--green .training-list__block--btn a {
  color: #51E282;
}

.theme--green .training-list__block--btn a:hover span {
  color: #34AD73;
}

.theme--green .training-list__block--btn a .btn-primary-arrow {
  fill: #34AD73;
}

.theme--gray-yellow .training-main__text a,
.theme--gray-yellow .training-main__text span,
.theme--gray-yellow .training-main__text strong,
.theme--gray-yellow .training-main__title span.typed-cursor,
.theme--gray-yellow .training-list__title span.typed-cursor {
  color: #F5BC38;
}

.theme--gray-yellow .training-list__block--title {
  background: #C99E3F;
}

.theme--gray-yellow .training-list__block--trainers h3,
.theme--gray-yellow .training-list__block--price h3 {
  color: #F6CE3E;
}

.theme--gray-yellow .training-list__block--topics ul li:before {
  background-color: #F5BC38;
}

.theme--gray-yellow .training-list__block--btn a {
  color: #F5BC38;
}

.theme--gray-yellow .training-list__block--btn a:hover span {
  color: #C99E3F;
}

.theme--gray-yellow .training-list__block--btn a .btn-primary-arrow {
  fill: #C99E3F;
}

.theme--orange .archive-main__title span.typed-cursor,
.theme--orange .archive-list__event--link a {
  color: #FFBA54;
}

.theme--orange .archive-list__event--link a:before {
  background-color: #FFBA54;
}

.theme--blue .archive-main__title span.typed-cursor,
.theme--blue .archive-list__event--link a {
  color: #3163eb;
}

.theme--blue .archive-list__event--link a:before {
  background-color: #3163eb;
}

.theme--fire-orange .archive-main__title span.typed-cursor,
.theme--fire-orange .archive-list__event--link a {
  color: #CB680C;
}

.theme--fire-orange .archive-list__event--link a:before {
  background-color: #CB680C;
}

.theme--green .archive-main__title span.typed-cursor,
.theme--green .archive-list__event--link a {
  color: #51E282;
}

.theme--green .archive-list__event--link a:before {
  background-color: #51E282;
}

.theme--gray-yellow .archive-main__title span.typed-cursor,
.theme--gray-yellow .archive-list__event--link a {
  color: #F5BC38;
}

.theme--gray-yellow .archive-list__event--link a:before {
  background-color: #F5BC38;
}

.event-wrapper.theme--orange .sponsors-screen__title span.typed-cursor,
.event-wrapper.theme--orange .about-sas__title span.typed-cursor,
.event-wrapper.theme--orange .speakers__title span.typed-cursor,
.event-wrapper.theme--orange .travel__title span.typed-cursor,
.event-wrapper.theme--orange .media-block .media__title span.typed-cursor,
.event-wrapper.theme--orange .travel__content p a {
  color: #FFBA54;
}

.event-wrapper.theme--orange .picture .about-screen__placement__about__text span,
.event-wrapper.theme--orange .picture .about-screen__placement__about__text strong,
.event-wrapper.theme--orange .video-screen .about-screen__placement__about__text span,
.event-wrapper.theme--orange .video-screen .about-screen__placement__about__text strong {
  color: #FDE6AA;
}

.event-wrapper.theme--orange .media-photos__info__title h1 a,
.event-wrapper.theme--orange .media-video__info__title h1 a {
  color: #fff;
}

.event-wrapper.theme--blue .sponsors-screen__title span.typed-cursor,
.event-wrapper.theme--blue .about-sas__title span.typed-cursor,
.event-wrapper.theme--blue .speakers__title span.typed-cursor,
.event-wrapper.theme--blue .travel__title span.typed-cursor,
.event-wrapper.theme--blue .travel__content p a {
  color: #3163eb;
}

.event-wrapper.theme--blue .picture .about-screen__placement__about__text span,
.event-wrapper.theme--blue .picture .about-screen__placement__about__text strong,
.event-wrapper.theme--blue .video-screen .about-screen__placement__about__text span,
.event-wrapper.theme--blue .video-screen .about-screen__placement__about__text strong {
  color: #AAC4FD;
}

.event-wrapper.theme--blue .media-photos__info__title h1 a,
.event-wrapper.theme--blue .media-video__info__title h1 a {
  color: #fff;
}

.event-wrapper.theme--fire-orange .sponsors-screen__title span.typed-cursor,
.event-wrapper.theme--fire-orange .about-sas__title span.typed-cursor,
.event-wrapper.theme--fire-orange .speakers__title span.typed-cursor,
.event-wrapper.theme--fire-orange .travel__title span.typed-cursor,
.event-wrapper.theme--fire-orange .travel__content p a {
  color: #CB680C;
}

.event-wrapper.theme--fire-orange .picture .about-screen__placement__about__text span,
.event-wrapper.theme--fire-orange .picture .about-screen__placement__about__text strong,
.event-wrapper.theme--fire-orange .video-screen .about-screen__placement__about__text span,
.event-wrapper.theme--fire-orange .video-screen .about-screen__placement__about__text strong {
  color: #FDE1AA;
}

.event-wrapper.theme--fire-orange .media-photos__info__title h1 a,
.event-wrapper.theme--fire-orange .media-video__info__title h1 a {
  color: #fff;
}

.event-wrapper.theme--green .sponsors-screen__title span.typed-cursor,
.event-wrapper.theme--green .about-sas__title span.typed-cursor,
.event-wrapper.theme--green .speakers__title span.typed-cursor,
.event-wrapper.theme--green .travel__title span.typed-cursor,
.event-wrapper.theme--green .travel__content p a {
  color: #51E282;
}

.event-wrapper.theme--green .picture .about-screen__placement__about__text span,
.event-wrapper.theme--green .picture .about-screen__placement__about__text strong,
.event-wrapper.theme--green .video-screen .about-screen__placement__about__text span,
.event-wrapper.theme--green .video-screen .about-screen__placement__about__text strong {
  color: #ADF083;
}

.event-wrapper.theme--green .media-photos__info__title h1 a,
.event-wrapper.theme--green .media-video__info__title h1 a {
  color: #fff;
}

.event-wrapper.theme--gray-yellow .sponsors-screen__title span.typed-cursor,
.event-wrapper.theme--gray-yellow .about-sas__title span.typed-cursor,
.event-wrapper.theme--gray-yellow .speakers__title span.typed-cursor,
.event-wrapper.theme--gray-yellow .travel__title span.typed-cursor,
.event-wrapper.theme--gray-yellow .travel__content p a {
  color: #F5BC38;
}

.event-wrapper.theme--gray-yellow .picture .about-screen__placement__about__text span,
.event-wrapper.theme--gray-yellow .picture .about-screen__placement__about__text strong,
.event-wrapper.theme--gray-yellow .video-screen .about-screen__placement__about__text span,
.event-wrapper.theme--gray-yellow .video-screen .about-screen__placement__about__text strong {
  color: #F6CE3E;
}

.event-wrapper.theme--gray-yellow .media-photos__info__title h1 a,
.event-wrapper.theme--gray-yellow .media-video__info__title h1 a {
  color: #fff;
}

.theme--orange .search-main__title span.typed-cursor,
.theme--orange .search-results__list .post-preview a,
.theme--orange .search-results__list .post-preview__breadcrumbs a:hover {
  color: #FFBA54;
}

.theme--orange .search-results__list .post-preview a:hover {
  color: #FF9900;
}

.theme--orange .search-results .pagination__block li.is-active-page a,
.theme--orange .search-results .pagination__block li a:hover {
  background: #FFBA54;
  border-color: #FFBA54;
}

.theme--orange .search-results .pagination__block--next,
.theme--orange .search-results .pagination__block--previous {
  color: #FFBA54;
}

.theme--orange .search-results .pagination__block--next:before,
.theme--orange .search-results .pagination__block--previous:before {
  background-color: #FFBA54;
}

.theme--blue .search-main__title span.typed-cursor,
.theme--blue .search-results__list .post-preview a,
.theme--blue .search-results__list .post-preview__breadcrumbs a:hover {
  color: #3163eb;
}

.theme--blue .search-results__list .post-preview a:hover {
  color: #0022FF;
}

.theme--blue .search-results .pagination__block li.is-active-page a,
.theme--blue .search-results .pagination__block li a:hover {
  background: #3163eb;
  border-color: #3163eb;
}

.theme--blue .search-results .pagination__block--next,
.theme--blue .search-results .pagination__block--previous {
  color: #3163eb;
}

.theme--blue .search-results .pagination__block--next:before,
.theme--blue .search-results .pagination__block--previous:before {
  background-color: #3163eb;
}

.theme--fire-orange .search-main__title span.typed-cursor,
.theme--fire-orange .search-results__list .post-preview a,
.theme--fire-orange .search-results__list .post-preview__breadcrumbs a:hover {
  color: #B5542B;
}

.theme--fire-orange .search-results__list .post-preview a:hover {
  color: #B5542B;
}

.theme--fire-orange .search-results .pagination__block li.is-active-page a,
.theme--fire-orange .search-results .pagination__block li a:hover {
  background: #CB680C;
  border-color: #CB680C;
}

.theme--fire-orange .search-results .pagination__block--next,
.theme--fire-orange .search-results .pagination__block--previous {
  color: #CB680C;
}

.theme--fire-orange .search-results .pagination__block--next:before,
.theme--fire-orange .search-results .pagination__block--previous:before {
  background-color: #CB680C;
}

.theme--green .search-main__title span.typed-cursor,
.theme--green .search-results__list .post-preview a,
.theme--green .search-results__list .post-preview__breadcrumbs a:hover {
  color: #34AD73;
}

.theme--green .search-results__list .post-preview a:hover {
  color: #34AD73;
}

.theme--green .search-results .pagination__block li.is-active-page a,
.theme--green .search-results .pagination__block li a:hover {
  background: #51E282;
  border-color: #51E282;
}

.theme--green .search-results .pagination__block--next,
.theme--green .search-results .pagination__block--previous {
  color: #51E282;
}

.theme--green .search-results .pagination__block--next:before,
.theme--green .search-results .pagination__block--previous:before {
  background-color: #51E282;
}

.theme--gray-yellow .search-main__title span.typed-cursor,
.theme--gray-yellow .search-results__list .post-preview a,
.theme--gray-yellow .search-results__list .post-preview__breadcrumbs a:hover {
  color: #C99E3F;
}

.theme--gray-yellow .search-results__list .post-preview a:hover {
  color: #C99E3F;
}

.theme--gray-yellow .search-results .pagination__block li.is-active-page a,
.theme--gray-yellow .search-results .pagination__block li a:hover {
  background: #F5BC38;
  border-color: #F5BC38;
}

.theme--gray-yellow .search-results .pagination__block--next,
.theme--gray-yellow .search-results .pagination__block--previous {
  color: #F5BC38;
}

.theme--gray-yellow .search-results .pagination__block--next:before,
.theme--gray-yellow .search-results .pagination__block--previous:before {
  background-color: #F5BC38;
}

.theme--orange a.primary-btn span {
  color: #FFBA54;
}

.theme--orange a.primary-btn:hover span {
  color: #FFAD31;
}

.theme--orange .btn-primary-arrow {
  fill: #FFAD31;
}

.theme--blue a.primary-btn span {
  color: #3163eb;
}

.theme--blue a.primary-btn:hover span {
  color: #04f;
}

.theme--blue .btn-primary-arrow {
  fill: #0012ff;
}

.theme--fire-orange a.primary-btn span {
  color: #CB680C;
}

.theme--fire-orange a.primary-btn:hover span {
  color: #C45C10;
}

.theme--fire-orange .btn-primary-arrow {
  fill: #B5542B;
}

.theme--green a.primary-btn span {
  color: #51E282;
}

.theme--green a.primary-btn:hover span {
  color: #10C36D;
}

.theme--green .btn-primary-arrow {
  fill: #34AD73;
}

.theme--gray-yellow a.primary-btn span {
  color: #F5BC38;
}

.theme--gray-yellow a.primary-btn:hover span {
  color: #E5A30D;
}

.theme--gray-yellow .btn-primary-arrow {
  fill: #C99E3F;
}

.theme--orange .unplugged-main__text a,
.theme--orange .unplugged-main__text span,
.theme--orange .unplugged-main__title span.typed-cursor,
.theme--orange .unplugged-main__title span.typed-cursor {
  color: #FFBA54;
}

.theme--orange .unplugged-main__text strong {
  color: #FFA944;
}

.theme--orange .workshop-block__title span.typed-cursor {
  color: #ffba54;
}

.theme--orange .workshop__title {
  background-color: #FFAD31;
}

.theme--orange .workshop__title span {
  color: #fff;
}

.theme--orange .trainer h4 {
  color: #FDE6AA;
}

.theme--orange .trainer__avatar {
  border: 2px solid #FFBA54;
}

.theme--orange .workshop__content__description ul li:before {
  background-color: #FFBA54;
}

.theme--blue .unplugged-main__text a,
.theme--blue .unplugged-main__text span,
.theme--blue .unplugged-main__title span.typed-cursor,
.theme--blue .unplugged-main__title span.typed-cursor {
  color: #3163eb;
}

.theme--blue .unplugged-main__text strong {
  color: #99b4ff;
}

.theme--blue .workshop-block__title span.typed-cursor {
  color: #3163eb;
}

.theme--blue .workshop__title {
  background-color: #04f;
}

.theme--blue .workshop__title span {
  color: #99b4ff;
}

.theme--blue .trainer h4 {
  color: #aac4fd;
}

.theme--blue .trainer__avatar {
  border: 2px solid #3163eb;
}

.theme--blue .workshop__content__description ul li:before {
  background-color: #3163eb;
}

.theme--fire-orange .unplugged-main__text a,
.theme--fire-orange .unplugged-main__text span,
.theme--fire-orange .unplugged-main__title span.typed-cursor,
.theme--fire-orange .unplugged-main__title span.typed-cursor {
  color: #CB680C;
}

.theme--fire-orange .unplugged-main__text strong {
  color: #FDE1AA;
}

.theme--fire-orange .workshop-block__title span.typed-cursor {
  color: #CB680C;
}

.theme--fire-orange .workshop__title {
  background-color: #B5542B;
}

.theme--fire-orange .workshop__title span {
  color: #FDE1AA;
}

.theme--fire-orange .trainer h4 {
  color: #FDE1AA;
}

.theme--fire-orange .trainer__avatar {
  border: 2px solid #CB680C;
}

.theme--fire-orange .workshop__content__description ul li:before {
  background-color: #CB680C;
}

.theme--green .unplugged-main__text a,
.theme--green .unplugged-main__text span,
.theme--green .unplugged-main__title span.typed-cursor,
.theme--green .unplugged-main__title span.typed-cursor {
  color: #51E282;
}

.theme--green .unplugged-main__text strong {
  color: #ADF083;
}

.theme--green .workshop-block__title span.typed-cursor {
  color: #51E282;
}

.theme--green .workshop__title {
  background-color: #34AD73;
}

.theme--green .workshop__title span {
  color: #ADF083;
}

.theme--green .trainer h4 {
  color: #ADF083;
}

.theme--green .trainer__avatar {
  border: 2px solid #51E282;
}

.theme--green .workshop__content__description ul li:before {
  background-color: #51E282;
}

.theme--gray-yellow .unplugged-main__text a,
.theme--gray-yellow .unplugged-main__text span,
.theme--gray-yellow .unplugged-main__title span.typed-cursor,
.theme--gray-yellow .unplugged-main__title span.typed-cursor {
  color: #F5BC38;
}

.theme--gray-yellow .unplugged-main__text strong {
  color: #F6CE3E;
}

.theme--gray-yellow .workshop-block__title span.typed-cursor {
  color: #F5BC38;
}

.theme--gray-yellow .workshop__title {
  background-color: #C99E3F;
}

.theme--gray-yellow .workshop__title span {
  color: #F6CE3E;
}

.theme--gray-yellow .trainer h4 {
  color: #F6CE3E;
}

.theme--gray-yellow .trainer__avatar {
  border: 2px solid #F5BC38;
}

.theme--gray-yellow .workshop__content__description ul li:before {
  background-color: #F5BC38;
}

.theme--orange .startup__main__text a,
.theme--orange .startup__main__text span,
.theme--orange .startup__main__text strong {
  color: #ffba54;
}

.theme--orange .startup__benefits__steps__number span {
  color: #ffba54;
}

.theme--orange .startup__showcase .showcase-format__desc__title:after {
  background-color: #ffad31;
}

.theme--orange .startup__showcase .showcase-criteria__content__item:after {
  background-color: #ffad31;
}

.theme--orange .startup__benefits__title span.typed-cursor {
  color: #ffba54;
}

.theme--orange .startup__main__title span.typed-cursor {
  color: #ffba54;
}

.theme--orange .startup__showcase__panel {
  background: linear-gradient(69.3deg, #fde6aa 4.42%, #f90 100.32%), #ffad31;
}

.theme--orange .startup__showcase .showcase-format__desc__content ul li:before {
  background-color: #ffba54;
}

.theme--blue .startup__main__text a,
.theme--blue .startup__main__text span,
.theme--blue .startup__main__text strong {
  color: #3163eb;
}

.theme--blue .startup__benefits__steps__number span {
  color: #3163eb;
}

.theme--blue .startup__showcase .showcase-format__desc__title:after {
  background-color: #0044ff;
}

.theme--blue .startup__showcase .showcase-criteria__content__item:after {
  background-color: #0044ff;
}

.theme--blue .startup__benefits__title span.typed-cursor {
  color: #3163eb;
}

.theme--blue .startup__main__title span.typed-cursor {
  color: #3163eb;
}

.theme--blue .startup__showcase__panel {
  background: linear-gradient(69.3deg, #a347ff 4.42%, #02f 100.32%), #04f;
}

.theme--blue .startup__showcase .showcase-format__desc__content ul li:before {
  background-color: #3163eb;
}

.theme--fire-orange .startup__main__text a,
.theme--fire-orange .startup__main__text span,
.theme--fire-orange .startup__main__text strong {
  color: #cb680c;
}

.theme--fire-orange .startup__benefits__steps__number span {
  color: #cb680c;
}

.theme--fire-orange .startup__showcase .showcase-format__desc__title:after {
  background-color: #c45c10;
}

.theme--fire-orange .startup__showcase .showcase-criteria__content__item:after {
  background-color: #c45c10;
}

.theme--fire-orange .startup__benefits__title span.typed-cursor {
  color: #cb680c;
}

.theme--fire-orange .startup__main__title span.typed-cursor {
  color: #cb680c;
}

.theme--fire-orange .startup__showcase__panel {
  background: linear-gradient(69.3deg, #cf540f 4.42%, #862a01 100.32%);
}

.theme--fire-orange .startup__showcase .showcase-format__desc__content ul li:before {
  background-color: #cb680c;
}

.theme--green .startup__main__text a,
.theme--green .startup__main__text span,
.theme--green .startup__main__text strong {
  color: #51e282;
}

.theme--green .startup__benefits__steps__number span {
  color: #51e282;
}

.theme--green .startup__showcase .showcase-format__desc__title:after {
  background-color: #10c36d;
}

.theme--green .startup__showcase .showcase-criteria__content__item:after {
  background-color: #10c36d;
}

.theme--green .startup__benefits__title span.typed-cursor {
  color: #51e282;
}

.theme--green .startup__main__title span.typed-cursor {
  color: #51e282;
}

.theme--green .startup__showcase__panel {
  background: linear-gradient(0deg, #1d1d1b, #1d1d1b), linear-gradient(80.45deg, #8fd22f 0.23%, #4cae48 25.23%, #018764 98.76%), linear-gradient(80.36deg, #115026 2.19%, #337e05 38.4%, #a9da1f 98.76%);
}

.theme--green .startup__showcase .showcase-format__desc__content ul li:before {
  background-color: #51e282;
}

.theme--gray-yellow .startup__main__text a,
.theme--gray-yellow .startup__main__text span,
.theme--gray-yellow .startup__main__text strong {
  color: #f5bc38;
}

.theme--gray-yellow .startup__benefits__steps__number span {
  color: #f5bc38;
}

.theme--gray-yellow .startup__showcase .showcase-format__desc__title:after {
  background-color: #e5a30d;
}

.theme--gray-yellow .startup__showcase .showcase-criteria__content__item:after {
  background-color: #e5a30d;
}

.theme--gray-yellow .startup__benefits__title span.typed-cursor {
  color: #f5bc38;
}

.theme--gray-yellow .startup__main__title span.typed-cursor {
  color: #f5bc38;
}

.theme--gray-yellow .startup__showcase__panel {
  background: linear-gradient(69.3deg, #9e9e9e 4.42%, #4e4d4e 100.32%);
}

.theme--gray-yellow .startup__showcase .showcase-format__desc__content ul li:before {
  background-color: #f5bc38;
}
