@charset "UTF-8";
/* ==========================================================================
   Normalize.scss settings
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *  `em` units.
 */
@import url("https://fast.fonts.net/lt/1.css?apiType=css&c=8c6e6a3c-cf6b-4f44-b111-f46bbc9560b2&fontids=1133043");
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active, a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *  Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Improves appearance and consistency in all browsers.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *  and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *  `input` and others.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *  Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 *  Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Corrects text not wrapping in Firefox 3.
 * 4. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* stylelint-disable */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: middle;
  position: relative;
  -webkit-transition: fill 0.15s ease-in-out;
  -o-transition: fill 0.15s ease-in-out;
  transition: fill 0.15s ease-in-out;
}

.icon--arrow_down {
  height: 10px;
  width: 10px;
}

.icon--cross {
  height: 20px;
  width: 21px;
}

.icon--fail {
  height: 69px;
  width: 68px;
}

.icon--gr_logo {
  height: 30px;
  width: 27px;
}

.icon--logo {
  height: 53px;
  width: 44px;
}

.icon--logo_text {
  height: 42px;
  width: 95px;
}

.icon--menu_icon {
  height: 17px;
  width: 20px;
}

.icon--menu_icon_hover {
  height: 17px;
  width: 20px;
}

.icon--ok {
  height: 64px;
  width: 86px;
}

/* stylelint-enable */
@font-face {
  font-family: "Proxima Nova";
  src: url("/media/fonts/proxima_nova/proxima_nova.eot?#iefix");
  src: url("/media/fonts/proxima_nova/proxima_nova.eot?#iefix") format("eot"), url("/media/fonts/proxima_nova/proxima_nova.woff2") format("woff2"), url("/media/fonts/proxima_nova/proxima_nova.woff") format("woff"), url("media/fonts/proxima_nova/proxima_nova.ttf") format("truetype");
}

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

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

@media (min-width: 600px) {
  .slick-list {
    padding-left: 18px;
  }
}

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

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

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

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

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

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

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

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

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

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

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

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

html {
  max-width: 100vw;
  overflow: hidden;
  overflow-y: auto;
}

.main_container {
  overflow: hidden;
}

.ui {
  position: fixed;
  top: 0;
  left: 0;
  background: transparent;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 8px;
  pointer-events: none;
  z-index: 50;
}

@media (min-width: 400px) and (max-width: 599px) {
  .ui {
    padding-bottom: 12px;
  }
}

@media (min-width: 600px) {
  .ui {
    padding-bottom: 12px;
  }
}

@media (min-width: 900px) {
  .ui {
    padding-bottom: 14px;
  }
}

@media (min-width: 1280px) {
  .ui {
    padding-bottom: 16px;
  }
}

.ui_logo_container {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  margin-left: 14px;
  margin-top: 22px;
  pointer-events: all;
}

@media (min-width: 400px) and (max-width: 599px) {
  .ui_logo_container {
    margin-left: 21px;
    margin-top: 18px;
  }
}

@media (min-width: 600px) {
  .ui_logo_container {
    margin-left: 21px;
    margin-top: 18px;
  }
}

@media (min-width: 900px) {
  .ui_logo_container {
    margin-left: 26px;
    margin-top: 26px;
  }
}

@media (min-width: 1280px) {
  .ui_logo_container {
    margin-left: 50px;
    margin-top: 29px;
  }
}

.ui_logo_image {
  display: inline-block;
  width: 33px;
  height: 40px;
  background-image: url(/media/images/common/logo.svg);
  background-size: cover;
}

@media (min-width: 900px) {
  .ui_logo_image {
    width: 44px;
    height: 53px;
  }
}

@media (min-width: 1280px) {
  .ui_logo_image {
    width: 57px;
    height: 68px;
  }
}

.ui_logo_text {
  position: absolute;
  left: 41px;
  top: 10px;
  width: 56px;
  height: 24px;
  color: white;
  fill: white;
}

@media (min-width: 900px) {
  .ui_logo_text {
    left: 54px;
    top: 13px;
    width: 74px;
    height: 32px;
  }
}

@media (min-width: 1280px) {
  .ui_logo_text {
    left: 70px;
    top: 17px;
    width: 95px;
    height: 42px;
  }
}

.ui_logo_text .icon--logo_text {
  width: 100%;
  height: 100%;
}

.ui_menu_button {
  position: relative;
  top: 34px;
  right: 15px;
  width: 20px;
  height: 17px;
  border: none;
  background: none;
  margin: 0;
  padding: 0;
  stroke: white;
  stroke-width: 3;
  z-index: 1;
  pointer-events: all;
}

@media (min-width: 400px) and (max-width: 599px) {
  .ui_menu_button {
    top: 29px;
    right: 22px;
  }
}

@media (min-width: 600px) {
  .ui_menu_button {
    top: 29px;
    right: 22px;
  }
}

@media (min-width: 900px) {
  .ui_menu_button {
    top: 47px;
    right: 27px;
  }
}

@media (min-width: 1280px) {
  .ui_menu_button {
    top: 53px;
    right: 53px;
  }
}

.ui_menu_button .icon--menu_icon {
  display: inline;
}

.ui_menu_button .icon--menu_icon_hover {
  display: none;
}

.ui_menu_button:hover .icon--menu_icon {
  display: none;
}

.ui_menu_button:hover .icon--menu_icon_hover {
  display: inline;
}

.ui_black_stroke {
  stroke: black;
}

.ui_black_text {
  color: black;
}

.spica {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  display: none;
  pointer-events: none;
}

@media (min-width: 900px) {
  .spica {
    display: block;
    background-image: url(/media/images/900/kolos_900.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
  }
}

@media (min-width: 1280px) {
  .spica {
    background-image: url(/media/images/1280/kolos_1280.png);
  }
}

.header {
  position: fixed;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100vh;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
  background-image: url(../images/320/head_bg_320.jpg);
  background-repeat: no-repeat;
  background-position-x: 50%;
  background-position-y: 0;
  background-size: cover;
  -webkit-mask-image: url(/media/images/common/mask.svg);
          mask-image: url(/media/images/common/mask.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.header .header__background_gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(26.75%, #000000), color-stop(75.25%, rgba(0, 0, 0, 0)));
  background: -o-linear-gradient(bottom, #000000 26.75%, rgba(0, 0, 0, 0) 75.25%);
  background: linear-gradient(360deg, #000000 26.75%, rgba(0, 0, 0, 0) 75.25%);
  opacity: .4;
  z-index: 0;
}

@media (min-width: 400px) and (max-width: 599px) {
  .header {
    background-image: url(../images/600/head_bg_600.jpg);
  }
}

@media (min-width: 600px) {
  .header {
    background-image: url(../images/600/head_bg_600.jpg);
  }
}

@media (min-width: 900px) {
  .header {
    background-image: url(../images/900/head_bg_900.jpg);
  }
}

@media (min-width: 1280px) {
  .header {
    background-image: url(../images/1280/head_bg_1280.jpg);
  }
}

.header_animation {
  position: fixed;
}

.header__main {
  font-family: Roboto Slab, serif;
  font-weight: bold;
  font-size: 32px;
  line-height: 38px;
  text-align: center;
  color: white;
  max-width: 295px;
  margin-bottom: 10px;
  margin-top: 13px;
  z-index: 1;
}

@media (min-width: 400px) and (max-width: 599px) {
  .header__main {
    max-width: 500px;
    font-size: 42px;
    line-height: 41px;
    margin-bottom: 5px;
    margin-top: 55px;
  }
}

@media (min-width: 600px) {
  .header__main {
    max-width: 500px;
    font-size: 42px;
    line-height: 41px;
    margin-bottom: 5px;
    margin-top: 55px;
  }
}

@media (min-width: 900px) {
  .header__main {
    max-width: 700px;
    font-size: 70px;
    line-height: 72px;
    margin-bottom: 3px;
    margin-top: 80px;
  }
}

@media (min-width: 1280px) {
  .header__main {
    max-width: 1000px;
    font-size: 80px;
    margin-bottom: 20px;
    margin-top: 114px;
  }
}

.header__main__mobile_only {
  z-index: 1;
  display: inline;
}

@media (min-width: 400px) and (max-width: 599px) {
  .header__main__mobile_only {
    display: none;
  }
}

@media (min-width: 600px) {
  .header__main__mobile_only {
    display: none;
  }
}

.header__sub {
  z-index: 1;
  max-width: 276px;
  margin-bottom: 15px;
  color: white;
  text-align: center;
  font-family: Proxima Nova, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 32px;
}

@media (min-width: 400px) and (max-width: 599px) {
  .header__sub {
    max-width: inherit;
    margin-bottom: 26px;
    line-height: 34px;
  }
}

@media (min-width: 600px) {
  .header__sub {
    max-width: inherit;
    margin-bottom: 26px;
    line-height: 34px;
  }
}

@media (min-width: 900px) {
  .header__sub {
    margin-bottom: 29px;
    font-size: 22px;
  }
}

@media (min-width: 1280px) {
  .header__sub {
    margin-bottom: 59px;
  }
}

.header__button {
  z-index: 1;
  width: 214px;
  height: 50px;
  pointer-events: all;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  background: -o-linear-gradient(195.36deg, #80dc71 8.34%, #9fe943 94.29%);
  background: linear-gradient(254.64deg, #80dc71 8.34%, #9fe943 94.29%);
  -webkit-box-shadow: 0 4px 60px rgba(189, 251, 57, 0.3);
          box-shadow: 0 4px 60px rgba(189, 251, 57, 0.3);
  border-radius: 100px;
  margin-bottom: 17px;
  cursor: pointer;
}

@media (min-width: 400px) and (max-width: 599px) {
  .header__button {
    margin-bottom: 0;
  }
}

.header__button:hover {
  background: -o-linear-gradient(344.64deg, #80dc71 8.34%, #9fe943 94.29%);
  background: linear-gradient(-254.64deg, #80dc71 8.34%, #9fe943 94.29%);
}

.header__button__text {
  margin-top: 5px;
  display: inline-block;
  font-family: Proxima Nova, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
}

.down_arrow {
  display: inline-block;
  margin-left: 2px;
  width: 9.41px;
  height: 9.41px;
}

.icon--arrow_down {
  fill: white;
}

.no_pointer_events {
  pointer-events: none;
}

.about {
  background: #f6f6f6;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-padding-before: 40px;
          padding-block-start: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100vh;
  position: relative;
}

@media (min-width: 400px) and (max-width: 599px) {
  .about {
    -webkit-padding-before: none;
            padding-block-start: none;
    height: inherit;
  }
}

@media (min-width: 600px) {
  .about {
    -webkit-padding-before: 70px;
            padding-block-start: 70px;
  }
}

@media (min-width: 600px) and (max-height: 750px) {
  .about {
    height: inherit;
  }
}

@media (min-width: 900px) {
  .about {
    height: 100vh;
    -webkit-padding-before: 136px;
            padding-block-start: 136px;
  }
}

@media (min-width: 1280px) {
  .about {
    -webkit-padding-before: 204px;
            padding-block-start: 204px;
  }
}

@media (min-width: 900px) {
  .about_background_image {
    background-image: url(/media/images/900/kolos_900.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
  }
}

@media (min-width: 1280px) {
  .about_background_image {
    background-image: url(/media/images/1280/kolos_1280.png);
  }
}

.about__first,
.about__second,
.about__third {
  font-family: Proxima Nova, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  margin: 0;
}

@media (min-width: 600px) {
  .about__first,
  .about__second,
  .about__third {
    font-size: 18px;
    line-height: 35px;
  }
}

@media (min-width: 900px) {
  .about__first,
  .about__second,
  .about__third {
    font-size: 22px;
    line-height: 40px;
  }
}

.about__first {
  max-width: 250px;
  font-weight: bold;
  margin-bottom: 20px;
}

@media (min-width: 600px) {
  .about__first {
    margin-bottom: 33px;
    max-width: 350px;
    letter-spacing: .2px;
  }
}

@media (min-width: 900px) {
  .about__first {
    letter-spacing: .2px;
    margin-bottom: 32px;
    max-width: 420px;
  }
}

@media (min-width: 1280px) {
  .about__first {
    letter-spacing: .1px;
    margin-top: 13px;
    margin-bottom: 36px;
    max-width: inherit;
  }
}

.about__second {
  max-width: 280px;
  margin-bottom: 18px;
}

@media (min-width: 600px) {
  .about__second {
    margin-bottom: 28px;
    max-width: 560px;
  }
}

@media (min-width: 900px) {
  .about__second {
    margin-bottom: 30px;
    max-width: 700px;
  }
}

@media (min-width: 1280px) {
  .about__second {
    margin-bottom: 36px;
    max-width: 920px;
  }
}

.about__third {
  max-width: 275px;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 34px;
  color: #00000080;
}

@media (min-width: 600px) {
  .about__third {
    font-size: 18px;
    line-height: 35px;
    margin-bottom: 35px;
    max-width: 550px;
  }
}

@media (min-width: 900px) {
  .about__third {
    font-size: 22px;
    line-height: 40px;
    margin-bottom: 46px;
    max-width: 700px;
  }
}

@media (min-width: 1280px) {
  .about__third {
    font-size: 22px;
    margin-bottom: 76px;
    max-width: 880px;
  }
}

.about__button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  min-height: 50px;
  background: white;
  border-radius: 50%;
  margin-bottom: 24px;
  border: none;
  color: black;
}

@media (min-width: 600px) {
  .about__button {
    margin-bottom: 44px;
  }
}

@media (min-width: 900px) {
  .about__button {
    margin-bottom: 78px;
  }
}

@media (min-width: 1280px) {
  .about__button {
    margin-bottom: 120px;
  }
}

.about__button .icon--arrow_down {
  fill: black;
}

.about__button:hover {
  background: black;
}

.about__button:hover .icon--arrow_down {
  fill: white;
}

.exp {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.exp__header {
  font-family: Roboto Slab, serif;
  font-style: normal;
  font-weight: bold;
  font-size: 32px;
  line-height: 38px;
  text-align: center;
  margin-top: 66px;
  margin-bottom: 32px;
}

@media (min-width: 600px) {
  .exp__header {
    line-height: 32px;
    margin-top: 97px;
    margin-bottom: 22px;
  }
}

@media (min-width: 900px) {
  .exp__header {
    font-size: 48px;
    line-height: 48px;
    margin-top: 124px;
    margin-bottom: 33px;
  }
}

@media (min-width: 1280px) {
  .exp__header {
    font-size: 64px;
    line-height: 68px;
    margin-top: 135px;
    margin-bottom: 31px;
  }
}

.exp__intro {
  font-family: Proxima Nova, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 32px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 30px;
  max-width: 260px;
}

@media (min-width: 600px) {
  .exp__intro {
    font-size: 18px;
    margin-bottom: 41px;
    max-width: 580px;
  }
}

@media (min-width: 900px) {
  .exp__intro {
    font-size: 22px;
    line-height: 40px;
    margin-bottom: 72px;
    max-width: 690px;
  }
}

@media (min-width: 1280px) {
  .exp__intro {
    margin-bottom: 57px;
    max-width: 900px;
  }
}

.exp__icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 50px;
  margin-bottom: 80px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 600px) {
  .exp__icons {
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 30px;
    margin-bottom: 105px;
  }
}

@media (min-width: 900px) {
  .exp__icons {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 60px;
    margin-bottom: 81px;
  }
}

@media (min-width: 1280px) {
  .exp__icons {
    grid-column-gap: 45px;
    grid-row-gap: 46px;
    margin-bottom: 152px;
  }
}

.exp_icon {
  border: none;
  background: none;
  margin: none;
  padding: none;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  text-align: center;
  -webkit-transform: scale(0.7);
      -ms-transform: scale(0.7);
          transform: scale(0.7);
}

@media (min-width: 600px) {
  .exp_icon {
    -webkit-transform: scale(0.86);
        -ms-transform: scale(0.86);
            transform: scale(0.86);
  }
}

@media (min-width: 900px) {
  .exp_icon {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
}

@media (min-width: 1280px) {
  .exp_icon {
    -webkit-transform: scale(0.967);
        -ms-transform: scale(0.967);
            transform: scale(0.967);
  }
}

.exp_icon_dark {
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
}

.exp__hr {
  width: 164px;
  height: 1px;
  border: none;
  opacity: .1;
  background: black;
  margin-bottom: 58px;
}

@media (min-width: 400px) and (max-width: 599px) {
  .exp__hr {
    width: 400px;
    margin-bottom: 70px;
  }
}

@media (min-width: 600px) {
  .exp__hr {
    width: 558px;
    margin-bottom: 70px;
  }
}

@media (min-width: 900px) {
  .exp__hr {
    width: 848px;
    margin-bottom: 100px;
  }
}

@media (min-width: 1280px) {
  .exp__hr {
    width: 1094px;
    margin-bottom: 131px;
  }
}

.tooltip {
  pointer-events: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: absolute;
  width: 100%;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 4;
}

@media (min-width: 400px) and (max-width: 599px) {
  .tooltip {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 400px;
  }
}

@media (min-width: 600px) {
  .tooltip {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 511px;
  }
}

@media (min-width: 900px) {
  .tooltip {
    width: 592px;
  }
}

.tooltip__body {
  width: 100%;
  height: 300vh;
  background: #222228;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

@media (min-width: 400px) and (max-width: 599px) {
  .tooltip__body {
    border-radius: 8px;
    width: 400px;
    height: inherit;
  }
}

@media (min-width: 600px) {
  .tooltip__body {
    border-radius: 8px;
    width: 511px;
    height: 256px;
  }
}

@media (min-width: 900px) {
  .tooltip__body {
    width: 592px;
    height: 256px;
  }
}

.tooltip__edge_top,
.tooltip__edge_bottom {
  content: '';
  width: 0;
  height: 0;
  position: relative;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  background: none;
  border-top: 10px solid #222228;
  border-left: 29px solid transparent;
  border-right: 29px solid transparent;
  align-self: center;
  z-index: 5;
}

.tooltip__edge_top {
  border-top: none;
  border-bottom: 10px solid #222228;
}

.tooltip__pointer_top,
.tooltip__pointer_bottom {
  content: '';
  position: relative;
  display: block;
  height: 40px;
  width: 40px;
  background: #222228;
  top: 32px;
  left: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  border-radius: 8px;
  z-index: -1;
}

.tooltip__pointer_bottom {
  top: -32px;
}

.tooltip__cross {
  pointer-events: visible;
  position: absolute;
  right: 12px;
  top: 62px;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  opacity: .5;
  stroke: white;
  stroke-width: 3px;
}

@media (min-width: 400px) and (max-width: 599px) {
  .tooltip__cross {
    right: 18px;
  }
}

@media (min-width: 600px) {
  .tooltip__cross {
    right: 18px;
  }
}

@media (min-width: 900px) {
  .tooltip__cross {
    right: 28px;
    top: 69px;
  }
}

@media (min-width: 1280px) {
  .tooltip__cross {
    display: none;
  }
}

@media (min-width: 400px) and (max-width: 599px) {
  .cross_upside_down {
    top: 13px;
  }
}

@media (min-width: 600px) {
  .cross_upside_down {
    top: 13px;
  }
}

@media (min-width: 900px) {
  .cross_upside_down {
    top: 20px;
  }
}

@media (min-width: 1280px) {
  .cross_upside_down {
    display: none;
  }
}

.tooltip__header {
  font-family: Roboto Slab, serif;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 29px;
  color: white;
  margin-left: 13px;
  margin-top: 23px;
  margin-bottom: 16px;
  max-width: 200px;
}

@media (min-width: 400px) and (max-width: 599px) {
  .tooltip__header {
    line-height: 24px;
    margin-left: 38px;
    margin-top: 33px;
    margin-bottom: 23px;
    max-width: 500px;
  }
}

@media (min-width: 600px) {
  .tooltip__header {
    line-height: 24px;
    margin-left: 38px;
    margin-top: 33px;
    margin-bottom: 23px;
    max-width: 500px;
  }
}

@media (min-width: 1280px) {
  .tooltip__header {
    margin-left: 40px;
    margin-top: 34px;
  }
}

.tooltip__abstract {
  font-family: Proxima Nova, Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 22px;
  color: white;
  margin-left: 13px;
  margin-right: 13px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  margin-bottom: 22px;
}

@media (min-width: 400px) and (max-width: 599px) {
  .tooltip__abstract {
    margin-left: 38px;
    margin-right: 38px;
    max-width: 450px;
    width: 324px;
    height: 44px;
    margin-bottom: 14px;
  }
}

@media (min-width: 600px) {
  .tooltip__abstract {
    margin-left: 38px;
    margin-right: 38px;
    max-width: 450px;
    width: 435px;
    height: 44px;
    margin-bottom: 14px;
  }
}

@media (min-width: 900px) {
  .tooltip__abstract {
    max-width: 520px;
    width: 450px;
    height: 44px;
  }
}

@media (min-width: 1280px) {
  .tooltip__abstract {
    max-width: 520px;
    width: 516px;
    height: 44px;
  }
}

.tooltip__text {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #2ac873;
  border-radius: 8px;
  font-family: Proxima Nova, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: white;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  padding: 13px;
  padding-top: 8px;
  padding-bottom: 14px;
  margin-left: 14px;
  margin-right: 14px;
  margin-bottom: 19px;
}

@media (min-width: 400px) and (max-width: 599px) {
  .tooltip__text {
    margin-left: 26px;
    margin-right: 26px;
    padding-bottom: 10px;
    margin-bottom: 28px;
    width: 348px;
    height: 90px;
  }
}

@media (min-width: 600px) {
  .tooltip__text {
    margin-left: 26px;
    margin-right: 26px;
    padding-bottom: 10px;
    margin-bottom: 28px;
    width: 459px;
    height: 90px;
  }
}

@media (min-width: 900px) {
  .tooltip__text {
    width: 536px;
    height: 66px;
  }
}

@media (min-width: 1280px) {
  .tooltip__text {
    margin-left: 28px;
    margin-right: 28px;
    width: 536px;
    height: 66px;
  }
}

.tooltip_hide {
  display: none;
  visibility: visible;
  opacity: 0;
  -webkit-animation: fade-out 135ms linear;
          animation: fade-out 135ms linear;
}

.tooltip_show {
  display: inherit;
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-animation: fade-in 135ms linear;
          animation: fade-in 135ms linear;
  z-index: 100;
}

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

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

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

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

@media (min-width: 600px) {
  .exp_last_icon {
    grid-column-start: 3;
    grid-column-end: 4;
  }
}

@media (min-width: 900px) {
  .exp_last_icon {
    grid-column-start: inherit;
    grid-column-end: inherit;
  }
}

.exp_hide {
  display: none;
}

.reviews {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url(/media/images/320/reviews_bg_320.jpg);
  background-repeat: no-repeat;
  background-position-x: 50%;
  background-position-y: bottom;
  background-size: contain;
  -webkit-clip-path: ellipse(215% 70% at 50% 26.5%);
          clip-path: ellipse(215% 70% at 50% 26.5%);
  padding-bottom: 225px;
  z-index: 2;
}

@media (min-width: 400px) and (max-width: 599px) {
  .reviews {
    padding-bottom: 354px;
  }
}

@media (min-width: 600px) {
  .reviews {
    background-image: url(/media/images/600/reviews_bg_600.jpg);
    padding-bottom: 296px;
    -webkit-clip-path: ellipse(112% 70% at 50% 24.5%);
            clip-path: ellipse(112% 70% at 50% 24.5%);
  }
}

@media (min-width: 700px) {
  .reviews {
    padding-bottom: 460px;
    margin-bottom: -126px;
  }
}

@media (min-width: 900px) {
  .reviews {
    background-image: url(/media/images/900/reviews_bg_900.jpg);
    padding-bottom: 460px;
    -webkit-transition: height 250ms ease-in-out;
    -o-transition: height 250ms ease-in-out;
    transition: height 250ms ease-in-out;
    -webkit-clip-path: ellipse(117% 70% at 50% 23.5%);
            clip-path: ellipse(117% 70% at 50% 23.5%);
  }
}

@media (min-width: 1280px) {
  .reviews {
    background-image: url(/media/images/1280/reviews_bg_1280.jpg);
    padding-bottom: 558px;
    -webkit-transition: height 250ms ease-in-out;
    -o-transition: height 250ms ease-in-out;
    transition: height 250ms ease-in-out;
    -webkit-clip-path: ellipse(132% 70% at 55.2% 23.3%);
            clip-path: ellipse(132% 70% at 55.2% 23.3%);
  }
}

.reviews:after {
  content: '';
  display: none;
  bottom: 80px;
  position: absolute;
  z-index: 5;
  width: 155%;
  height: 150%;
  background: none;
  border-radius: 45.2% 37% / 23% 29%;
  -webkit-box-shadow: 0 0 0 70px #222228;
          box-shadow: 0 0 0 70px #222228;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

@media (min-width: 1280px) {
  .reviews:after {
    display: block;
  }
}

@media (min-width: 900px) {
  .reviews_big {
    -webkit-clip-path: ellipse(132% 70.1% at 49.8% 24.3%);
            clip-path: ellipse(132% 70.1% at 49.8% 24.3%);
  }
}

@media (min-width: 1280px) {
  .reviews_big {
    -webkit-clip-path: ellipse(151% 70.1% at 54.5% 25.6%);
            clip-path: ellipse(151% 70.1% at 54.5% 25.6%);
  }
}

.reviews_big:after {
  display: block;
  content: '';
  bottom: 72px;
  position: absolute;
  z-index: 5;
  width: 208%;
  height: 152%;
  background: none;
  border-radius: 52.2% 39% / 24% 29%;
  -webkit-box-shadow: 0 0 0 70px #222228;
          box-shadow: 0 0 0 70px #222228;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.reviews__header {
  font-family: Roboto Slab, serif;
  font-style: normal;
  font-weight: bold;
  font-size: 32px;
  line-height: 38px;
  text-align: center;
  margin: 0;
  padding: 0;
  margin-bottom: 31px;
}

@media (min-width: 400px) and (max-width: 599px) {
  .reviews__header {
    line-height: 32px;
    margin-bottom: 21px;
  }
}

@media (min-width: 600px) {
  .reviews__header {
    line-height: 32px;
    margin-bottom: 21px;
  }
}

@media (min-width: 900px) {
  .reviews__header {
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 32px;
  }
}

@media (min-width: 1280px) {
  .reviews__header {
    font-size: 64px;
    line-height: 68px;
    margin-bottom: 31px;
  }
}

.reviews__intro {
  display: none;
  font-family: Proxima Nova, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 32px;
  text-align: center;
  max-width: 264px;
  margin: 0;
  padding: 0;
  margin-bottom: 52px;
}

@media (min-width: 400px) and (max-width: 599px) {
  .reviews__intro {
    display: none;
  }
}

@media (min-width: 600px) {
  .reviews__intro {
    display: block;
    font-size: 18px;
    max-width: 570px;
    margin-bottom: 57px;
  }
}

@media (min-width: 900px) {
  .reviews__intro {
    display: block;
    font-size: 22px;
    line-height: 40px;
    max-width: 848px;
    margin-bottom: 65px;
  }
}

@media (min-width: 1280px) {
  .reviews__intro {
    display: block;
    max-width: 1000px;
    margin-bottom: 65px;
  }
}

.reviews__intro_mobile {
  display: block;
}

@media (min-width: 600px) {
  .reviews__intro_mobile {
    display: none;
  }
}

.reviews__carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

@media (min-width: 900px) {
  .reviews__carousel {
    width: 90%;
    display: grid;
    grid-template-columns: 33% 33%;
    -webkit-column-gap: 20%;
       -moz-column-gap: 20%;
            column-gap: 20%;
    overflow: visible;
  }
}

@media (min-width: 1280px) {
  .reviews__carousel {
    width: 87.5%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    -webkit-column-gap: inherit;
       -moz-column-gap: inherit;
            column-gap: inherit;
    overflow: visible;
  }
}

.reviews__carousel_container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 292px;
}

@media (min-width: 600px) {
  .reviews__carousel_container {
    min-height: 150px;
  }
}

@media (min-width: 900px) {
  .reviews__carousel_container {
    position: inherit;
    height: unset;
    max-height: 286px;
    overflow: hidden;
    margin-bottom: 30px;
    -webkit-transition: max-height 240ms ease-in-out;
    -o-transition: max-height 240ms ease-in-out;
    transition: max-height 240ms ease-in-out;
  }
}

@media (min-width: 1280px) {
  .reviews__carousel_container {
    max-height: 290px;
    margin-bottom: 77px;
  }
}

@media (min-width: 900px) {
  .reviews__carousel_big_container {
    max-height: 645px;
  }
}

.reviews__carousel__card__container {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: top;
  -webkit-justify-content: top;
      -ms-flex-pack: top;
          justify-content: top;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 158px;
}

@media (min-width: 600px) {
  .reviews__carousel__card__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: inherit;
    margin-right: 30px;
  }
}

@media (min-width: 900px) {
  .reviews__carousel__card__container {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 53px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: 0;
  }
}

@media (min-width: 1280px) {
  .reviews__carousel__card__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: top;
    -webkit-justify-content: top;
        -ms-flex-pack: top;
            justify-content: top;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    white-space: nowrap;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

@media (min-width: 1280px) {
  .reviews__carousel__card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.slick-track > .reviews__carousel__card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 900px) {
  .slick-track > .reviews__carousel__card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.semitransparent {
  position: absolute;
  content: '';
  pointer-events: none;
  width: 40%;
  height: 125px;
  right: 0;
  background: -webkit-gradient(linear, right top, left top, color-stop(10%, white), to(rgba(255, 255, 255, 0)));
  background: -o-linear-gradient(right, white 10%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to left, white 10%, rgba(255, 255, 255, 0) 100%);
  z-index: 10;
  display: none;
}

@media (min-width: 600px) {
  .semitransparent {
    display: block;
  }
}

@media (min-width: 900px) {
  .semitransparent {
    display: none;
  }
}

.card_image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin-bottom: 28px;
}

@media (min-width: 600px) {
  .card_image {
    width: 125px;
    height: 125px;
    margin-bottom: 35px;
  }
}

@media (min-width: 900px) {
  .card_image {
    width: 97px;
    height: 97px;
    margin-bottom: 35px;
    margin: 0;
  }
}

@media (min-width: 1280px) {
  .card_image {
    width: 140px;
    height: 140px;
    margin-bottom: 30px;
  }
}

.card_annotation {
  display: none;
  margin: 0;
  padding: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: top;
  -webkit-justify-content: top;
      -ms-flex-pack: top;
          justify-content: top;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 6;
  overflow: hidden;
}

@media (min-width: 600px) {
  .card_annotation {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-left: 20px;
    padding-top: 10px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media (min-width: 900px) {
  .card_annotation {
    margin-left: 27px;
    padding: 0;
  }
}

@media (min-width: 1280px) {
  .card_annotation {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: top;
    -webkit-justify-content: top;
        -ms-flex-pack: top;
            justify-content: top;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.slick-current > .reviews__carousel__card__container > .card_annotation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.annotation_company {
  margin: 0;
  padding: 0;
  font-family: Proxima Nova, Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  text-align: center;
  margin-bottom: 6px;
}

@media (min-width: 600px) {
  .annotation_company {
    margin-bottom: 6px;
  }
}

@media (min-width: 900px) {
  .annotation_company {
    margin-bottom: 3px;
  }
}

@media (min-width: 1280px) {
  .annotation_company {
    margin-bottom: 6px;
  }
}

.annotation_position {
  margin: 0;
  padding: 0;
  font-family: Proxima Nova, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  margin-bottom: 12px;
  max-width: 190px;
  white-space: normal;
}

@media (min-width: 600px) {
  .annotation_position {
    text-align: left;
    max-width: 270px;
    margin-bottom: 27px;
  }
}

@media (min-width: 900px) {
  .annotation_position {
    text-align: left;
    margin-bottom: 12px;
    height: 36px;
  }
}

@media (min-width: 1280px) {
  .annotation_position {
    text-align: center;
    margin-bottom: 12px;
    height: 36px;
  }
}

.annotation_name {
  margin: 0;
  padding: 0;
  font-family: Proxima Nova, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: rgba(0, 0, 0, 0.5);
}

.reviews__show_more {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 192px;
  height: 50px;
  background: #f2f2f2;
  z-index: 6;
  font-family: Proxima Nova, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 28px;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-top: 4px;
  border: none;
  border-radius: 100px;
}

@media (max-width: 599px) {
  .reviews__show_more {
    display: none;
  }
}

@media (min-width: 400px) and (max-width: 599px) {
  .reviews__show_more {
    display: none;
  }
}

@media (min-width: 600px) {
  .reviews__show_more {
    display: none;
  }
}

@media (min-width: 900px) {
  .reviews__show_more {
    display: block;
  }
}

.reviews__show_more:hover {
  color: white;
  background: -o-linear-gradient(193.85deg, #80dc71 8.34%, #9fe943 94.29%);
  background: linear-gradient(256.15deg, #80dc71 8.34%, #9fe943 94.29%);
  -webkit-box-shadow: 0 4px 60px rgba(189, 251, 57, 0.3);
          box-shadow: 0 4px 60px rgba(189, 251, 57, 0.3);
}

.reviews__show_more_hide {
  display: none;
}

.team {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -45px;
  margin-bottom: 0;
  padding-top: 48px;
  padding-bottom: 101px;
  background: #222228;
  -webkit-clip-path: ellipse(196% 70% at 50% 26.5%);
          clip-path: ellipse(196% 70% at 50% 26.5%);
  -webkit-transition: height 250ms ease-in-out;
  -o-transition: height 250ms ease-in-out;
  transition: height 250ms ease-in-out;
}

@media (min-width: 400px) and (max-width: 599px) {
  .team {
    margin-top: -90px;
    padding-top: 92px;
    padding-bottom: 130px;
    -webkit-clip-path: ellipse(180% 70% at 50% 26.5%);
            clip-path: ellipse(180% 70% at 50% 26.5%);
  }
}

@media (min-width: 600px) {
  .team {
    margin-top: -105px;
    padding-top: 108px;
    padding-bottom: 130px;
    -webkit-clip-path: ellipse(180% 70% at 50% 26.5%);
            clip-path: ellipse(180% 70% at 50% 26.5%);
  }
}

@media (min-width: 900px) {
  .team {
    margin-top: -150px;
    padding-top: 170px;
    padding-bottom: 125px;
    -webkit-clip-path: ellipse(165% 70% at 50% 26.5%);
            clip-path: ellipse(165% 70% at 50% 26.5%);
  }
}

@media (min-width: 1280px) {
  .team {
    margin-top: -170px;
    padding-top: 165px;
    -webkit-clip-path: ellipse(113.1% 71.5% at 47.6% 23.3%);
            clip-path: ellipse(113.1% 71.5% at 47.6% 23.3%);
    margin-bottom: -30px;
    padding-bottom: 183px;
  }
}

.team_large {
  padding-bottom: 106px;
  margin-bottom: -16px;
  -webkit-clip-path: ellipse(237% 70% at 50% 26.5%);
          clip-path: ellipse(237% 70% at 50% 26.5%);
}

@media (min-width: 400px) and (max-width: 599px) {
  .team_large {
    padding-bottom: 106px;
    margin-bottom: -22px;
    -webkit-clip-path: ellipse(251% 70% at 50% 26.5%);
            clip-path: ellipse(251% 70% at 50% 26.5%);
  }
}

@media (min-width: 600px) {
  .team_large {
    padding-bottom: 106px;
    margin-bottom: -22px;
    -webkit-clip-path: ellipse(251% 70% at 50% 26.5%);
            clip-path: ellipse(251% 70% at 50% 26.5%);
  }
}

@media (min-width: 900px) {
  .team_large {
    padding-bottom: 161px;
    margin-bottom: -28px;
    -webkit-clip-path: ellipse(226% 70% at 50% 26.5%);
            clip-path: ellipse(226% 70% at 50% 26.5%);
  }
}

@media (min-width: 1280px) {
  .team_large {
    padding-bottom: 162px;
    margin-bottom: -66px;
    -webkit-clip-path: ellipse(161% 70% at 50% 25.5%);
            clip-path: ellipse(161% 70% at 50% 25.5%);
  }
}

.team:after {
  display: none;
  content: '';
  bottom: -61px;
  position: absolute;
  z-index: 5;
  width: 168%;
  height: 150%;
  -webkit-transform: rotate(14.2deg);
      -ms-transform: rotate(14.2deg);
          transform: rotate(14.2deg);
  background: none;
  border-radius: 88% 18.6% / 60.6% 11%;
  -webkit-box-shadow: 0 0 0 120px white;
          box-shadow: 0 0 0 120px white;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  pointer-events: none;
}

@media (min-width: 1280px) {
  .team:after {
    display: block;
  }
}

@media (min-width: 1400px) {
  .team:after {
    display: block;
    width: 137%;
    height: 155%;
    border-radius: 99% 2.6% / 67.6% 11%;
    bottom: -96px;
    -webkit-transform: rotate(18.8deg);
        -ms-transform: rotate(18.8deg);
            transform: rotate(18.8deg);
  }
}

.team_large:after {
  display: none;
}

.team__header {
  font-family: Roboto Slab, serif;
  font-style: normal;
  font-weight: bold;
  font-size: 32px;
  line-height: 32px;
  text-align: center;
  color: white;
  margin: 0;
  margin-top: 31px;
  margin-bottom: 13px;
  padding: 0;
}

@media (min-width: 400px) and (max-width: 599px) {
  .team__header {
    margin-bottom: 3px;
  }
}

@media (min-width: 600px) {
  .team__header {
    margin-bottom: 3px;
  }
}

@media (min-width: 900px) {
  .team__header {
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 12px;
  }
}

@media (min-width: 1280px) {
  .team__header {
    font-size: 64px;
    line-height: 68px;
    margin-bottom: 26px;
  }
}

.team__intro {
  font-family: Proxima Nova, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 32px;
  text-align: center;
  max-width: 290px;
  margin-bottom: 63px;
  color: white;
}

@media (min-width: 400px) and (max-width: 599px) {
  .team__intro {
    font-size: 18px;
    line-height: 177.36%;
    max-width: 550px;
  }
}

@media (min-width: 600px) {
  .team__intro {
    font-size: 18px;
    line-height: 177.36%;
    max-width: 550px;
  }
}

@media (min-width: 900px) {
  .team__intro {
    font-size: 22px;
    line-height: 40px;
    max-width: 830px;
    margin-bottom: 68px;
  }
}

@media (min-width: 1280px) {
  .team__intro {
    max-width: 960px;
    margin-bottom: 53px;
  }
}

.team__people {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 26px;
  max-width: 348px;
}

@media (min-width: 400px) and (max-width: 599px) {
  .team__people {
    margin-bottom: 57px;
    max-width: 580px;
  }
}

@media (min-width: 600px) {
  .team__people {
    margin-bottom: 57px;
    max-width: 580px;
  }
}

@media (min-width: 900px) {
  .team__people {
    margin-bottom: 55px;
    max-width: inherit;
  }
}

@media (min-width: 1280px) {
  .team__people {
    margin-bottom: 60px;
  }
}

.team__people__img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: -10px;
  margin-top: -15px;
  -webkit-box-shadow: 0 10px 150px rgba(255, 255, 255, 0.2);
          box-shadow: 0 10px 150px rgba(255, 255, 255, 0.2);
}

@media (min-width: 400px) and (max-width: 599px) {
  .team__people__img {
    width: 129px;
    height: 129px;
    margin-right: -12px;
    margin-top: -24px;
  }
}

@media (min-width: 600px) {
  .team__people__img {
    width: 129px;
    height: 129px;
    margin-right: -12px;
    margin-top: -24px;
  }
}

@media (min-width: 900px) {
  .team__people__img {
    width: 135px;
    height: 135px;
    margin-right: -18px;
    margin-top: inherit;
  }
}

@media (min-width: 1280px) {
  .team__people__img {
    width: 174px;
    height: 174px;
    margin-right: -22px;
  }
}

.team__key_people {
  width: 292px;
  height: 81px;
  border: none;
  margin: 0;
  padding: 0 40px;
  font-family: Proxima Nova, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 22px;
  font-weight: bold;
  color: white;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: -o-linear-gradient(193.03deg, #80dc71 8.34%, #9fe943 94.29%);
  background: linear-gradient(256.97deg, #80dc71 8.34%, #9fe943 94.29%);
  -webkit-box-shadow: 0 4px 60px rgba(189, 251, 57, 0.3);
          box-shadow: 0 4px 60px rgba(189, 251, 57, 0.3);
  border-radius: 100px;
}

@media (min-width: 400px) and (max-width: 599px) {
  .team__key_people {
    padding: 0;
    width: 304px;
    height: 50px;
    background: -o-linear-gradient(201.32deg, #80dc71 8.34%, #9fe943 94.29%);
    background: linear-gradient(248.68deg, #80dc71 8.34%, #9fe943 94.29%);
  }
}

@media (min-width: 600px) {
  .team__key_people {
    padding: 0;
    width: 304px;
    height: 50px;
    background: -o-linear-gradient(201.32deg, #80dc71 8.34%, #9fe943 94.29%);
    background: linear-gradient(248.68deg, #80dc71 8.34%, #9fe943 94.29%);
  }
}

@media (min-width: 1280px) {
  .team__key_people {
    z-index: 6;
  }
}

.team__key_people_hide {
  display: none;
}

.team__leaders {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 250ms ease-in-out;
  -o-transition: max-height 250ms ease-in-out;
  transition: max-height 250ms ease-in-out;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.team__leaders_large {
  max-height: 25000px;
}

.team__leaders__header {
  font-family: Roboto Slab, serif;
  font-size: 30px;
  line-height: 38px;
  text-align: center;
  color: white;
}

@media (min-width: 400px) and (max-width: 599px) {
  .team__leaders__header {
    font-size: 32px;
    line-height: 32px;
    max-width: 400px;
    margin-bottom: 33px;
  }
}

@media (min-width: 600px) {
  .team__leaders__header {
    font-size: 32px;
    line-height: 32px;
    max-width: 400px;
    margin-bottom: 33px;
  }
}

@media (min-width: 900px) {
  .team__leaders__header {
    font-size: 48px;
    line-height: 48px;
    max-width: 600px;
    margin-bottom: 45px;
  }
}

@media (min-width: 1280px) {
  .team__leaders__header {
    padding-top: 12px;
    font-size: 48px;
    line-height: 51px;
    text-align: left;
    margin-left: 437px;
    margin-top: 38px;
    margin-bottom: 39px;
  }
}

.team__leaders__links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: -5px;
  margin-bottom: 19px;
  width: 100;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1280px) {
  .team__leaders__links {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-right: -353px;
  }
}

.team__leaders__link {
  font-family: Proxima Nova, Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  line-height: 24px;
  text-align: center;
  color: white;
  background: none;
  width: 133px;
  margin: 0;
  padding: 0;
  padding-bottom: 9px;
  border: none;
  border-bottom: 3px solid #ffffff63;
}

@media (min-width: 400px) and (max-width: 599px) {
  .team__leaders__link {
    font-size: 16px;
    width: 183px;
    padding-bottom: 10px;
  }
}

@media (min-width: 600px) {
  .team__leaders__link {
    font-size: 16px;
    width: 183px;
    padding-bottom: 10px;
  }
}

@media (min-width: 900px) {
  .team__leaders__link {
    font-size: 22px;
    line-height: 24px;
    width: 269px;
    padding-bottom: 24px;
  }
}

.link_active {
  border-bottom: 3px solid #2ac873;
}

.team__leaders__leader {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 400px) and (max-width: 599px) {
  .team__leaders__leader {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding-top: 6px;
  }
}

@media (min-width: 600px) {
  .team__leaders__leader {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding-top: 6px;
  }
}

@media (min-width: 900px) {
  .team__leaders__leader {
    padding-top: 28px;
  }
}

@media (min-width: 1280px) {
  .team__leaders__leader {
    margin-top: -5px;
    padding-top: 0;
  }
}

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

.leader__photo {
  opacity: .8;
  width: 69px;
  height: 107px;
  margin-bottom: 10px;
}

@media (min-width: 400px) and (max-width: 599px) {
  .leader__photo {
    width: 179px;
    height: 279px;
    margin: 0;
    margin-left: -17px;
    margin-right: 44px;
  }
}

@media (min-width: 600px) {
  .leader__photo {
    width: 179px;
    height: 279px;
    margin: 0;
    margin-left: -17px;
    margin-right: 44px;
  }
}

@media (min-width: 900px) {
  .leader__photo {
    margin-left: -27px;
    margin-right: 54px;
  }
}

@media (min-width: 1280px) {
  .leader__photo {
    width: 346px;
    height: 539px;
    margin: 0;
    position: relative;
    top: -253px;
    left: -69px;
  }
}

.leader__data {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 400px) and (max-width: 599px) {
  .leader__data {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 33px;
  }
}

@media (min-width: 600px) {
  .leader__data {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 33px;
  }
}

@media (min-width: 1280px) {
  .leader__data {
    padding-top: 32px;
    margin-left: 47px;
  }
}

.leader__name {
  font-family: Proxima Nova, Helvetica, Arial, sans-serif;
  font-size: 22px;
  line-height: 24px;
  text-align: center;
  color: white;
  margin: 0;
  padding: 0;
  margin-bottom: 4px;
}

@media (min-width: 400px) and (max-width: 599px) {
  .leader__name {
    margin-bottom: 2px;
  }
}

@media (min-width: 600px) {
  .leader__name {
    margin-bottom: 2px;
  }
}

@media (min-width: 900px) {
  .leader__name {
    font-family: Roboto Slab, serif;
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 9px;
  }
}

.leader__position {
  font-family: Proxima Nova, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  color: white;
  opacity: .5;
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
}

@media (min-width: 900px) {
  .leader__position {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}

@media (min-width: 1280px) {
  .leader__position {
    margin-bottom: 35px;
  }
}

.leader__intro {
  font-family: Proxima Nova, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: white;
  margin: 0;
  padding: 0;
  max-width: 300px;
}

@media (min-width: 400px) and (max-width: 599px) {
  .leader__intro {
    text-align: left;
    max-width: 280px;
  }
}

@media (min-width: 600px) {
  .leader__intro {
    text-align: left;
    max-width: 280px;
  }
}

@media (min-width: 900px) {
  .leader__intro {
    max-width: 411px;
  }
}

@media (min-width: 1280px) {
  .leader__intro {
    font-weight: bold;
    font-size: 22px;
    line-height: 32px;
    max-width: 560px;
    letter-spacing: .285px;
  }
}

.leader__work {
  display: none;
}

@media (min-width: 400px) and (max-width: 599px) {
  .leader__work {
    display: block;
    width: 100%;
    padding: 0 21px;
    padding-top: 32px;
  }
}

@media (min-width: 600px) {
  .leader__work {
    display: block;
    width: 100%;
    padding: 0 21px;
    padding-top: 32px;
  }
}

@media (min-width: 1280px) {
  .leader__work {
    margin-top: -222px;
    padding: 0 96px;
    max-width: 1200px;
  }
}

.leader__work__header {
  font-family: Proxima Nova, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: white;
  margin-bottom: 12px;
}

@media (min-width: 900px) {
  .leader__work__header {
    font-size: 22px;
    margin-bottom: 25px;
    letter-spacing: .056px;
  }
}

@media (min-width: 1280px) {
  .leader__work__header {
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 25px;
  }
}

.leader__work__text {
  font-family: Proxima Nova, Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 18px;
  color: white;
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-column-width: 260px;
     -moz-column-width: 260px;
          column-width: 260px;
}

@media (min-width: 600px) and (max-width: 899px) {
  .leader__work__text {
    -webkit-column-gap: 35px;
       -moz-column-gap: 35px;
            column-gap: 35px;
  }
}

@media (min-width: 900px) {
  .leader__work__text {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
    -webkit-column-gap: 35px;
       -moz-column-gap: 35px;
            column-gap: 35px;
    -webkit-column-width: 180px;
       -moz-column-width: 180px;
            column-width: 180px;
  }
}

.leader__work__text__p {
  margin: 0;
  padding: 0;
  margin-bottom: 14px;
  -webkit-column-break-inside: avoid;
     page-break-inside: avoid;
          break-inside: avoid;
}

button:focus {
  outline: 0;
}

.contacts {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1280px) {
  .contacts {
    overflow: visible;
  }
}

.contacts__data {
  width: 100%;
  background: white;
  height: 200px;
  margin-bottom: 39px;
}

@media (min-width: 400px) and (max-width: 599px) {
  .contacts__data {
    height: 363px;
    margin-bottom: -16px;
  }
}

@media (min-width: 600px) {
  .contacts__data {
    height: 363px;
    margin-bottom: -16px;
  }
}

@media (min-width: 900px) {
  .contacts__data {
    height: 426px;
  }
}

.contacts__header {
  font-family: 'Roboto Slab', serif;
  font-style: normal;
  font-weight: bold;
  font-size: 32px;
  line-height: 32px;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 65px;
}

@media (max-width: 599px) {
  .contacts__header {
    display: none;
  }
}

@media (min-width: 400px) and (max-width: 599px) {
  .contacts__header {
    display: none;
  }
}

@media (min-width: 900px) {
  .contacts__header {
    font-size: 48px;
    line-height: 64px;
    margin-top: 44px;
    margin-bottom: 59px;
  }
}

@media (min-width: 1280px) {
  .contacts__header {
    display: block;
    max-width: 250px;
    text-align: left;
    font-size: 64px;
    margin-top: 112px;
    margin-left: 92px;
    margin-bottom: 60px;
  }
}

.contacts__data__mobile {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.contacts__data__mobile .fn {
  width: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

@media (min-width: 600px) {
  .contacts__data__mobile {
    display: none;
  }
}

@media (min-width: 900px) {
  .contacts__data__mobile {
    display: none;
  }
}

@media (min-width: 1280px) {
  .contacts__data__mobile {
    display: none;
  }
}

.contacts__data__mobile__buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-bottom: 19px;
  margin-top: -12px;
}

.contacts__data_all {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

@media (max-width: 599px) {
  .contacts__data_all {
    display: none;
  }
}

@media (min-width: 400px) and (max-width: 599px) {
  .contacts__data_all {
    display: none;
  }
}

@media (min-width: 1280px) {
  .contacts__data_all {
    -webkit-box-pack: left;
    -webkit-justify-content: left;
        -ms-flex-pack: left;
            justify-content: left;
    padding-left: 92px;
  }
}

.city_button {
  color: #2ac873;
  display: block;
  margin: 0 15px;
  padding: 0;
  background: none;
  font-family: Proxima Nova, Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 22px;
  white-space: nowrap;
  border: none;
  border-bottom: 1px dashed #2ac873;
}

.city_button:hover {
  color: #20a75f;
  border-bottom: 1px dashed #20a75f;
}

.city_button_active,
.city_button_active:hover {
  color: black;
  border-bottom: 1px solid white;
  cursor: default;
}

.info_button,
.info_button_active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 269px;
  height: 180px;
  border: none;
  background: white;
  border-radius: 34px;
  -webkit-box-shadow: 0 44px 64px rgba(0, 0, 0, 0.05);
          box-shadow: 0 44px 64px rgba(0, 0, 0, 0.05);
  margin: 0 11px;
}

.info_button .fn,
.info_button_active .fn {
  width: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

@media (min-width: 1280px) {
  .info_button,
  .info_button_active {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 0;
    width: 276px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.info_button_active {
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: default;
}

.info_button__text {
  display: inline-block;
  font-family: Proxima Nova, Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: bold;
  line-height: 24px;
  margin-bottom: 13px;
  cursor: pointer;
  color: #2ac873;
  border-bottom: #2ac873 1px dashed;
}

@media (min-width: 900px) {
  .info_button__text {
    margin-bottom: 14px;
  }
}

.info_button__text:hover {
  color: #20a75f;
  border-bottom: #20a75f 1px dashed;
}

.info_button__text_active,
.info_button__text_active:hover {
  color: black;
  border-bottom: white 1px solid;
}

.info_button__addr {
  font-family: Proxima Nova, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 30px;
  opacity: .6;
  margin: 0;
  padding: 0;
  padding-bottom: 2px;
}

.info_button__phone,
.info_button__email {
  font-family: Proxima Nova, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  color: black;
  border: none;
}

.info_button__email {
  color: #2ac873;
}

.info_button__email:hover {
  color: #20a75f;
}

.info_button__phone:hover {
  color: black;
}

.contacts__data__mobile__address,
.contacts__data__mobile__email,
.contacts__data__mobile__phone {
  margin: 0;
  padding: 0;
  display: block;
  border: none;
  font-family: Proxima Nova, Helvetica, Arial, sans-serif;
  font-size: 16px;
  text-decoration: none;
  color: black;
}

.contacts__data__mobile__address {
  display: none;
  line-height: 26px;
  opacity: .6;
  margin-bottom: 5px;
}

.address_active {
  display: block;
}

.contacts__data__mobile__phone,
.contacts__data__mobile__email {
  line-height: 24px;
}

.contacts__data__mobile__email:hover {
  color: #20a75f;
}

.contacts__data__mobile__phone:hover {
  color: black;
}

.contacts__map {
  height: 386px;
  width: 131%;
  margin-top: -37px;
  border-radius: 100% 100% 100% 100% / 54% 54% 54% 54%;
  position: relative;
}

@media (min-width: 400px) and (max-width: 599px) {
  .contacts__map {
    height: 403px;
    width: 123%;
    margin-top: -47px;
    border-radius: 100% 100% 100% 100% / 20% 20% 48% 48%;
  }
}

@media (min-width: 600px) {
  .contacts__map {
    height: 403px;
    width: 123%;
    margin-top: -47px;
    border-radius: 100% 100% 100% 100% / 20% 20% 48% 48%;
  }
}

@media (min-width: 900px) {
  .contacts__map {
    height: 440px;
    width: 181%;
    margin-top: -21px;
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;
    border-bottom-left-radius: 95%;
    border-bottom-right-radius: 95%;
  }
}

@media (min-width: 1280px) {
  .contacts__map {
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 556px;
    border-top-left-radius: 100% 114%;
    border-top-right-radius: 0%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    width: 73%;
    height: 890px;
    margin-top: -26px;
  }
}

.contacts__button {
  width: 234px;
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  border: none;
  background: -o-linear-gradient(196.72deg, #80dc71 8.34%, #9fe943 94.29%);
  background: linear-gradient(253.28deg, #80dc71 8.34%, #9fe943 94.29%);
  -webkit-box-shadow: 0 4px 60px rgba(189, 251, 57, 0.3);
          box-shadow: 0 4px 60px rgba(189, 251, 57, 0.3);
  border-radius: 100px;
  z-index: 1;
  margin-top: -122px;
  margin-bottom: 134px;
}

@media (min-width: 400px) and (max-width: 599px) {
  .contacts__button {
    margin-top: -103px;
    margin-bottom: 109px;
  }
}

@media (min-width: 600px) {
  .contacts__button {
    margin-top: -103px;
    margin-bottom: 109px;
  }
}

@media (min-width: 900px) {
  .contacts__button {
    margin-top: -128px;
    margin-bottom: 123px;
  }
}

@media (min-width: 1280px) {
  .contacts__button {
    position: static;
    margin-top: 65px;
    margin-bottom: 105px;
    margin-left: 91px;
    -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
            align-self: flex-start;
  }
}

.contacts__button:hover {
  background: -o-linear-gradient(343.28deg, #80dc71 8.34%, #9fe943 94.29%);
  background: linear-gradient(-253.28deg, #80dc71 8.34%, #9fe943 94.29%);
}

.contacts__button__text {
  margin-top: 5px;
  display: inline-block;
  font-family: Proxima Nova, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
}

.contacts__rabbit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: Proxima Nova, Helvetica, Arial, sans-serif;
  text-decoration: none;
  text-align: center;
  margin-bottom: 47px;
  color: black;
  border: none;
}

@media (min-width: 400px) and (max-width: 599px) {
  .contacts__rabbit {
    margin-bottom: 67px;
  }
}

@media (min-width: 600px) {
  .contacts__rabbit {
    margin-bottom: 67px;
  }
}

@media (min-width: 900px) {
  .contacts__rabbit {
    margin-bottom: 72px;
  }
}

@media (min-width: 1280px) {
  .contacts__rabbit {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    position: relative;
    left: 10px;
    bottom: 3px;
    -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
            align-self: flex-start;
    margin-left: 80px;
    margin-bottom: 160px;
    margin-top: 0;
  }
}

.contacts__rabbit .contacts__rabbit_logo {
  width: 27px;
  height: 30px;
  background-image: url(../images/common/gr_logo.svg);
  background-size: cover;
}

@media (min-width: 400px) and (max-width: 599px) {
  .contacts__rabbit .contacts__rabbit_logo {
    margin-bottom: 11px;
  }
}

@media (min-width: 600px) {
  .contacts__rabbit .contacts__rabbit_logo {
    margin-bottom: 11px;
  }
}

@media (min-width: 1280px) {
  .contacts__rabbit .contacts__rabbit_logo {
    width: 30px;
    height: 33px;
    margin-right: 17px;
  }
}

.contacts__rabbit .contacts__rabbit_text {
  font-size: 14px;
  line-height: 16px;
  max-width: 88px;
}

.contacts__rabbit .contacts__rabbit_text:hover {
  color: black;
}

@media (min-width: 1280px) {
  .contacts__rabbit .contacts__rabbit_text {
    font-size: 16px;
    line-height: 18px;
    text-align: left;
  }
}

.popup {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: scroll;
  overflow-x: hidden;
}

.popup__form,
.popup__message_sent {
  margin-top: 22px;
  margin-bottom: 22px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 292px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 20px;
  padding-bottom: 23px;
  background: white;
  border-radius: 20px;
}

@media (min-width: 600px) {
  .popup__form,
  .popup__message_sent {
    margin-top: 85px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 20px;
    width: 548px;
    padding: 47px;
    padding-top: 38px;
    padding-bottom: 37px;
  }
}

@media (min-width: 900px) {
  .popup__form,
  .popup__message_sent {
    margin-top: 127px;
    width: 704px;
    padding: 72px;
    padding-top: 38px;
    padding-bottom: 57px;
  }
}

@media (min-width: 1280px) {
  .popup__form,
  .popup__message_sent {
    margin-top: 125px;
    width: 1095px;
    padding: 43px;
    padding-top: 66px;
    padding-bottom: 75px;
    grid-template-columns: 258px 258px 350px;
    grid-column-gap: 21px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.popup__message_sent {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 600px) {
  .popup__message_sent {
    margin-top: 85px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 548px;
    padding: 47px;
    padding-top: 38px;
    padding-bottom: 37px;
  }
}

@media (min-width: 900px) {
  .popup__message_sent {
    margin-top: 127px;
    width: 704px;
    padding: 72px;
    padding-top: 38px;
    padding-bottom: 57px;
  }
}

@media (min-width: 1280px) {
  .popup__message_sent {
    margin-top: 125px;
    width: 1095px;
    padding: 43px;
    padding-top: 165px;
    padding-bottom: 75px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.popup__form__header {
  font-family: Roboto Slab, serif;
  font-size: 24px;
  font-weight: bold;
  line-height: 29px;
  letter-spacing: .277px;
  font-weight: inherit;
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  margin: 0;
  margin-bottom: 25px;
}

@media (min-width: 600px) {
  .popup__form__header {
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 39px;
  }
}

@media (min-width: 900px) {
  .popup__form__header {
    font-weight: bold;
  }
}

@media (min-width: 1280px) {
  .popup__form__header {
    margin-bottom: 10px;
    margin-left: 1px;
    font-size: 48px;
    font-weight: bold;
    line-height: 58px;
    grid-column-start: 1;
    grid-column-end: 4;
  }
}

.popup__form__cross,
.popup__message_sent__cross {
  position: absolute;
  width: 15px;
  height: 14px;
  right: 20px;
  top: 24px;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  stroke: black;
  stroke-width: 3px;
  opacity: .5;
}

@media (min-width: 600px) {
  .popup__form__cross,
  .popup__message_sent__cross {
    width: 19px;
    height: 17px;
    top: 30px;
    right: 30px;
  }
}

@media (min-width: 900px) {
  .popup__form__cross,
  .popup__message_sent__cross {
    width: 21px;
    height: 19px;
    top: 30px;
    right: 30px;
  }
}

@media (min-width: 1280px) {
  .popup__form__cross,
  .popup__message_sent__cross {
    top: 37px;
    right: 40px;
  }
}

.popup__form__cross:hover {
  opacity: 1;
}

.popup__form__cross .icon--cross {
  width: 15px;
  height: 14px;
}

@media (min-width: 600px) {
  .popup__form__cross .icon--cross {
    width: 19px;
    height: 17px;
  }
}

@media (min-width: 900px) {
  .popup__form__cross .icon--cross {
    width: 21px;
    height: 19px;
  }
}

.popup__form__input,
.popup__form__textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Proxima Nova, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 17px;
  padding-left: 17px;
  padding-right: 17px;
  padding-top: 9px;
  background: #f6f6f6;
  border-radius: 4px;
  border: none;
  margin-bottom: 16px;
}

@media (min-width: 600px) {
  .popup__form__input,
  .popup__form__textarea {
    margin-bottom: 0;
  }
}

@media (min-width: 1280px) {
  .popup__form__input,
  .popup__form__textarea {
    font-size: 20px;
    line-height: 20px;
    padding-top: 5px;
    width: 258px;
  }
}

.popup__form__input:focus,
.popup__form__textarea:focus {
  outline: none;
  background: #eae9e9;
}

.popup__form__input:valid,
.popup__form__textarea:valid {
  color: black;
}

.invalid {
  color: #b85757;
  background: #f0dada;
  -webkit-animation-name: invalidation;
          animation-name: invalidation;
  -webkit-animation-iteration-count: 3;
          animation-iteration-count: 3;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  -webkit-animation-duration: 125ms;
          animation-duration: 125ms;
}

@-webkit-keyframes invalidation {
  0% {
    margin-left: 0;
    margin-right: 0;
  }
  50% {
    margin-left: -5px;
    margin-right: -5px;
  }
  100% {
    margin-left: 0;
    margin-right: 0;
  }
}

@keyframes invalidation {
  0% {
    margin-left: 0;
    margin-right: 0;
  }
  50% {
    margin-left: -5px;
    margin-right: -5px;
  }
  100% {
    margin-left: 0;
    margin-right: 0;
  }
}

.popup__form__input {
  height: 47px;
}

@media (min-width: 600px) {
  .popup__form__input {
    height: 57px;
  }
}

.popup__form__input__wrapper {
  position: relative;
}

.popup__form__input__wrapper .popup__form__input {
  width: 100%;
  letter-spacing: 0.7px;
}

.popup__form__textarea {
  height: 172px;
  padding-top: 13px;
  padding-bottom: 8px;
  margin-bottom: 29px;
  resize: none;
}

@media (min-width: 600px) {
  .popup__form__textarea {
    height: 212px;
  }
}

.popup__form__button {
  text-align: center;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  width: 252px;
  height: 70px;
  border: none;
  background: -o-linear-gradient(193.01deg, #80dc71 8.34%, #9fe943 94.29%);
  background: linear-gradient(256.99deg, #80dc71 8.34%, #9fe943 94.29%);
  -webkit-box-shadow: 0 4px 60px rgba(189, 251, 57, 0.3);
          box-shadow: 0 4px 60px rgba(189, 251, 57, 0.3);
  border-radius: 100px;
  font-family: Proxima Nova, Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  line-height: 21px;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 26px;
}

@media (min-width: 600px) {
  .popup__form__button {
    justify-self: center;
    width: 350px;
    padding-top: 4px;
    margin-bottom: 10px;
    background: -o-linear-gradient(197.79deg, #80dc71 8.34%, #9fe943 94.29%);
    background: linear-gradient(252.21deg, #80dc71 8.34%, #9fe943 94.29%);
  }
}

@media (min-width: 900px) {
  .popup__form__button {
    background: -o-linear-gradient(197.79deg, #80dc71 8.34%, #9fe943 94.29%);
    background: linear-gradient(252.21deg, #80dc71 8.34%, #9fe943 94.29%);
  }
}

.popup__form__button:hover {
  background: -o-linear-gradient(346.99deg, #80dc71 8.34%, #9fe943 94.29%);
  background: linear-gradient(-256.99deg, #80dc71 8.34%, #9fe943 94.29%);
}

@media (min-width: 600px) {
  .popup__form__button:hover {
    background: -o-linear-gradient(342.21deg, #80dc71 8.34%, #9fe943 94.29%);
    background: linear-gradient(-252.21deg, #80dc71 8.34%, #9fe943 94.29%);
  }
}

.popup__form__agreement {
  font-family: Source Sans Pro, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 25px;
  text-align: center;
  color: #7a7a7a;
  opacity: .5;
  margin: 0;
}

@media (min-width: 600px) {
  .popup__form__agreement {
    margin-left: -5px;
    margin-right: -5px;
    justify-self: center;
  }
}

@media (min-width: 900px) {
  .popup__form__agreement {
    max-width: 500px;
    justify-self: center;
  }
}

@media (min-width: 1280px) {
  .popup__form__agreement {
    text-align: left;
    justify-self: left;
    max-width: 450px;
  }
}

.popup__form__link {
  color: #7a7a7a;
}

.popup__form__link:hover {
  color: #2ac873;
}

.popup__form__double {
  grid-column-start: 1;
  grid-column-end: 3;
}

@media (min-width: 1280px) {
  .popup__form__textarea.popup__form__double {
    width: 350px;
    padding: 20px;
    grid-column-start: 3;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 6;
  }
}

@media (min-width: 1280px) {
  .popup__form__button.popup__form__double {
    margin-top: 20px;
    margin-bottom: 0;
    grid-column-start: 3;
    grid-column-end: 3;
    grid-row-start: 5;
    grid-row-end: 5;
  }
}

.popup_hidden {
  display: none;
}

.error {
  position: absolute;
  bottom: 4px;
  left: 2px;
  font-family: Proxima Nova, Helvetica, Arial, sans-serif;
  font-size: 12px;
  background: transparent;
  color: red;
}

@media (min-width: 600px) {
  .error {
    bottom: -15px;
  }
}

.popup__message_sent__cross .icon--cross {
  width: 13px;
  height: 12px;
}

@media (min-width: 600px) {
  .popup__message_sent__cross .icon--cross {
    width: 19px;
    height: 17px;
  }
}

@media (min-width: 600px) {
  .popup__message_sent__cross .icon--cross {
    width: 19px;
    height: 17px;
  }
}

.popup__message_sent__icon {
  width: 48px;
  height: 35px;
  margin-bottom: 28px;
}

@media (min-width: 400px) and (max-width: 599px) {
  .popup__message_sent__icon {
    width: 82px;
    height: 59px;
    margin-bottom: 42px;
  }
}

@media (min-width: 600px) {
  .popup__message_sent__icon {
    width: 82px;
    height: 59px;
    margin-bottom: 42px;
  }
}

.popup__message_sent__icon.fail {
  margin-top: 40px;
  margin-bottom: 40px;
  width: 69px;
  height: 68px;
}

@media (min-width: 400px) and (max-width: 599px) {
  .popup__message_sent__icon.fail {
    margin-top: 40px;
    margin-bottom: 42px;
  }
}

@media (min-width: 600px) {
  .popup__message_sent__icon.fail {
    margin-top: 40px;
    margin-bottom: 42px;
  }
}

@media (min-width: 1280px) {
  .popup__message_sent__icon.fail {
    margin-top: -11px;
  }
}

.icon--ok {
  width: 48px;
  height: 35px;
}

@media (min-width: 400px) and (max-width: 599px) {
  .icon--ok {
    width: 82px;
    height: 59px;
  }
}

@media (min-width: 600px) {
  .icon--ok {
    width: 82px;
    height: 59px;
  }
}

.icon--fail {
  width: 69px;
  height: 68px;
}

.popup__message_sent__header {
  font-family: Roboto Slab, serif;
  font-style: normal;
  font-weight: bold;
  letter-spacing: .277px;
  color: black;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: .277px;
  margin-bottom: 28px;
}

@media (min-width: 600px) {
  .popup__message_sent__header {
    font-size: 44px;
    line-height: 63px;
    margin-bottom: 20px;
  }
}

@media (min-width: 900px) {
  .popup__message_sent__header {
    font-size: 48px;
    line-height: 63px;
    margin-bottom: 20px;
  }
}

.popup__message_sent__text {
  font-family: Proxima Nova, Helvetica, Arial, sans-serif;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: rgba(0, 0, 0, 0.5);
}

@media (min-width: 600px) {
  .popup__message_sent__text {
    font-size: 22px;
    line-height: 36px;
    margin-bottom: 89px;
  }
}

.popup__message_sent__text.fail {
  margin-bottom: 20px;
}

@media (min-width: 600px) {
  .popup__message_sent__text.fail {
    margin-bottom: 52px;
  }
}

/* Main menu */
.popup__main_menu {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100vh;
  min-height: -webkit-fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
  background: white;
  padding-top: 40px;
}

@media (min-width: 400px) and (max-width: 599px) {
  .popup__main_menu {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 270px;
    -webkit-align-self: flex-end;
        -ms-flex-item-align: end;
            align-self: flex-end;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 112px;
    padding-left: 16px;
  }
}

@media (min-width: 600px) {
  .popup__main_menu {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 270px;
    -webkit-align-self: flex-end;
        -ms-flex-item-align: end;
            align-self: flex-end;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 112px;
    padding-left: 16px;
  }
}

@media (min-width: 900px) {
  .popup__main_menu {
    width: 356px;
    padding-top: 124px;
    padding-left: 20px;
  }
}

@media (min-width: 1280px) {
  .popup__main_menu {
    width: 383px;
    padding-top: 171px;
    padding-left: 41px;
  }
}

.popup__main_menu__logo_container {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  width: 97px;
  height: 40px;
  position: absolute;
  top: 23px;
  left: 14px;
}

@media (min-width: 400px) and (max-width: 599px) {
  .popup__main_menu__logo_container {
    top: 18px;
    left: 47px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media (min-width: 600px) {
  .popup__main_menu__logo_container {
    top: 18px;
    left: 47px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media (min-width: 900px) {
  .popup__main_menu__logo_container {
    top: 35px;
    left: 54px;
  }
}

@media (min-width: 1280px) {
  .popup__main_menu__logo_container {
    top: 39px;
    left: 77px;
  }
}

.popup__main_menu__logo_image {
  display: inline-block;
  width: 33px;
  height: 40px;
  background-image: url(/media/images/common/logo.svg);
  background-size: cover;
}

@media (min-width: 400px) and (max-width: 599px) {
  .popup__main_menu__logo_image {
    display: none;
  }
}

@media (min-width: 600px) {
  .popup__main_menu__logo_image {
    display: none;
  }
}

.popup__main_menu__logo_text {
  position: absolute;
  left: 41px;
  top: 10px;
  color: black;
  fill: black;
}

@media (min-width: 400px) and (max-width: 599px) {
  .popup__main_menu__logo_text {
    position: relative;
    left: 0;
    top: 0;
  }
}

@media (min-width: 600px) {
  .popup__main_menu__logo_text {
    position: relative;
    left: 0;
    top: 0;
  }
}

.popup__main_menu__logo_text .icon--logo_text {
  width: 56px;
  height: 24px;
}

@media (min-width: 400px) and (max-width: 599px) {
  .popup__main_menu__logo_text .icon--logo_text {
    width: 103px;
    height: 45px;
  }
}

@media (min-width: 600px) {
  .popup__main_menu__logo_text .icon--logo_text {
    width: 103px;
    height: 45px;
  }
}

.popup__main_menu__menu_item {
  font-family: Proxima Nova, Helvetica, Arial, sans-serif;
  font-size: 21px;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
  color: black;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 200px;
  height: 53px;
  padding-top: 13px;
  padding-bottom: 16px;
  border-radius: 34px;
  margin-bottom: 7px;
}

@media (min-width: 400px) and (max-width: 599px) {
  .popup__main_menu__menu_item {
    width: 226px;
    text-align: left;
    padding-left: 34px;
  }
}

@media (min-width: 600px) {
  .popup__main_menu__menu_item {
    width: 226px;
    text-align: left;
    padding-left: 34px;
  }
}

@media (min-width: 900px) {
  .popup__main_menu__menu_item {
    width: 268px;
    font-size: 24px;
  }
}

.popup__main_menu__menu_item:hover {
  color: #2ac873;
  -webkit-box-shadow: 0 0 54px rgba(0, 0, 0, 0.07);
          box-shadow: 0 0 54px rgba(0, 0, 0, 0.07);
}

.popup__main_menu__cross {
  position: absolute;
  width: 19px;
  height: 17px;
  right: 15px;
  top: 35px;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  stroke: black;
  stroke-width: 3px;
}

@media (min-width: 400px) and (max-width: 599px) {
  .popup__main_menu__cross {
    right: 21px;
    top: 31px;
  }
}

@media (min-width: 600px) {
  .popup__main_menu__cross {
    right: 21px;
    top: 31px;
  }
}

@media (min-width: 900px) {
  .popup__main_menu__cross {
    right: 27px;
    top: 50px;
  }
}

@media (min-width: 1280px) {
  .popup__main_menu__cross {
    right: 54px;
    top: 50px;
  }
}

.popup__main_menu__cross:hover {
  stroke: #2ac873;
}

.popup__main_menu__cross .icon--cross {
  width: 19px;
  height: 17px;
}

.popup__main_menu__button {
  width: 234px;
  height: 50px;
  margin-top: 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  border: none;
  background: -o-linear-gradient(196.72deg, #80dc71 8.34%, #9fe943 94.29%);
  background: linear-gradient(253.28deg, #80dc71 8.34%, #9fe943 94.29%);
  -webkit-box-shadow: 0 4px 60px rgba(189, 251, 57, 0.3);
          box-shadow: 0 4px 60px rgba(189, 251, 57, 0.3);
  border-radius: 100px;
}

@media (min-width: 400px) and (max-width: 599px) {
  .popup__main_menu__button {
    display: none;
  }
}

@media (min-width: 600px) {
  .popup__main_menu__button {
    display: none;
  }
}

@media (min-width: 900px) {
  .popup__main_menu__button {
    display: block;
    margin-top: 30px;
    margin-left: 33px;
  }
}

@media (min-width: 1280px) {
  .popup__main_menu__button {
    display: block;
    margin-top: 42px;
    margin-left: 34px;
  }
}

.popup__main_menu__button:hover {
  background: -o-linear-gradient(343.28deg, #80dc71 8.34%, #9fe943 94.29%);
  background: linear-gradient(-253.28deg, #80dc71 8.34%, #9fe943 94.29%);
}

.contacts__button__text {
  margin-top: 5px;
  display: inline-block;
  font-family: Proxima Nova, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
}

/*# sourceMappingURL=styles.min.css.map */
