@charset "UTF-8";
/**
 * Swiper 4.2.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 1, 2018
 */

@media all and (max-width:1299px) {
  #team .c-member__on-demand p {
    font-size: 12px;
  }
}

.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

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

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

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

.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

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

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

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

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

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

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

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

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

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

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

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

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

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

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}

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

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

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

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  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;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

@keyframes pulse {
  from {
    transform: scale(1, 1);
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: scale(1.5, 1.5);
  }
}
@keyframes spinner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes snake {
  0% {
    transform: scale(1, 0);
  }
  50% {
    transform: scale(1, 1);
  }
  51% {
    transform: scale(1, 1);
  }
  70% {
    opacity: 0;
  }
  90% {
    opacity: 0;
    transform: scale(1, 0);
  }
  100% {
    opacity: 0;
    transform: scale(1, 0);
  }
}
@keyframes hide-down {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(100%);
  }
}
@font-face {
  font-family: "avenir-bold";
  src: url("fonts/AvenirNextCyr-Bold.woff") format("woff"), url("fonts/AvenirNextCyr-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "avenir-regular";
  src: url("fonts/AvenirNextCyr-Regular.woff") format("woff"), url("fonts/AvenirNextCyr-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "avenir-light";
  src: url("fonts/AvenirNextCyr-Light.woff") format("woff"), url("fonts/AvenirNextCyr-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "avenir-demi";
  src: url("fonts/AvenirNextCyr-Demi.woff") format("woff"), url("fonts/AvenirNextCyr-Demi.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
*:not(li):not(ol):not(ul), *:before, *:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*:not(li):not(ol):not(ul):before, *:not(li):not(ol):not(ul):after, *:before:before, *:before:after, *:after:before, *:after:after {
  content: "";
  box-sizing: border-box;
  display: none;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}
a:focus, a:active {
  outline: none;
  text-decoration: none;
}

body.is-freezed {
  overflow: hidden;
  height: 100%;
}

html,
body {
  font: normal normal normal 16px/1.2 "avenir-demi", Arial, sans-serif;
}

ul, ol {
  list-style: none;
}

button, [role=button] {
  cursor: pointer;
  user-select: none;
  border: none;
  border-radius: 0;
  background: none;
  -webkit-appearance: none;
}
button:active, button:focus, [role=button]:active, [role=button]:focus {
  outline: none;
}

input {
  background-color: transparent;
}
input:focus, input:active {
  outline: none;
}

textarea {
  resize: none;
}

input, textarea, select, button {
  -webkit-appearance: none;
  -moz-appearance: none;
}

picture, section, article, time {
  display: block;
}

select {
  -webkit-appearance: none;
  border-radius: 0;
  border: none;
  background: transparent;
}
select:focus, select:active {
  outline: none;
}
select::-ms-expand {
  display: none;
}

img {
  border: none;
}

input:-moz-ui-invalid:not(output),
textarea:-moz-ui-invalid:not(output) {
  box-shadow: none;
}

.a-color-attention {
  color: #EF5355;
}

.a-color-brand {
  color: #212848;
}

.a-color-dark {
  color: #000000;
}

.a-color-grey {
  color: #4C4C4E;
}

.a-color-text-dark {
  color: #4C4C4E;
}

.a-color-text-light {
  color: #FFFFFF;
}

.a-color-text-mute {
  color: #A4AAB3;
}

.a-text-h1 {
  font: 600 66px "avenir-bold";
  line-height: 1;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .a-text-h1 {
    font-size: 36px;
  }
}

.a-text-h2 {
  font: 600 50px "avenir-bold";
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .a-text-h2 {
    font-size: 30px;
  }
}
@media all and (min-width: 768px) and (max-width: 1023px) {
  .a-text-h2 {
    font-size: 42px;
  }
}

.a-text-h2-small {
  font: 600 50px "avenir-bold";
  font-size: 46px;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .a-text-h2-small {
    font-size: 30px;
  }
}
@media all and (min-width: 768px) and (max-width: 1199px) {
  .a-text-h2-small {
    font-size: 30px;
  }
}

.a-text-h3 {
  font: 600 22px "avenir-bold";
  line-height: 1.25;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .a-text-h3 {
    font-size: 16px;
  }
}

.a-text-h3-large {
  font: 600 22px "avenir-bold";
  line-height: 1.25;
  font-size: 36px;
}

.a-text-h4 {
  font: 500 16px "avenir-demi";
}

.a-text-lead {
  font: 400 16px "avenir-regular";
  line-height: 1.5;
}

.a-text-paragraph {
  font: 400 14px "avenir-regular";
  line-height: 1.5;
}

.a-text-small {
  font: 600 12px "avenir-bold";
}

.a-text-caption {
  font: 400 12px "avenir-regular";
}

.a-text-label {
  font: 600 10px "avenir-bold";
}

.a-text-note {
  font: 400 10px "avenir-regular";
}

[class^=a-text-] a, [class*=" a-text-"] a {
  color: #212848;
  font-weight: bold;
  border-bottom: 1px solid currentColor;
  display: inline-block;
}
@media all and (min-width: 1024px) {
  [class^=a-text-] a:hover, [class*=" a-text-"] a:hover {
    color: #EF5355;
  }
}
[class^=a-text-] sub, [class*=" a-text-"] sub {
  vertical-align: baseline;
}

.a-text-nowrap {
  white-space: nowrap;
}

@font-face {
  font-family: "promprylad-iconfont";
  src: url("fonts/promprylad-iconfont.eot?3rxkl8");
  src: url("fonts/promprylad-iconfont.eot?3rxkl8#iefix") format("embedded-opentype"), url("fonts/promprylad-iconfont.ttf?3rxkl8") format("truetype"), url("fonts/promprylad-iconfont.woff?3rxkl8") format("woff"), url("fonts/promprylad-iconfont.svg?3rxkl8#promprylad-iconfont") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=a-icon-], [class*=a-icon-] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "promprylad-iconfont" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 100%;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
[class^=a-icon-]:before, [class*=a-icon-]:before {
  display: block;
  color: inherit;
}

.a-icon-instagram:before {
  content: "";
}

.a-icon-telegram:before {
  content: "";
}

.a-icon-phone:before {
  content: "";
}

.a-icon-arrow-left:before {
  content: "";
}

.a-icon-arrow-down:before {
  content: "";
}

.a-icon-arrow-right:before {
  content: "";
}

.a-icon-arrow-up:before {
  content: "";
}

.a-icon-evenlope:before {
  content: "";
}

.a-icon-eye:before {
  content: "";
}

.a-icon-facebook:before {
  content: "";
}

.a-icon-linkedin:before {
  content: "";
}

.a-icon-pin:before {
  content: "";
}

.a-icon-play:before {
  content: "";
}

.a-icon-youtube:before {
  content: "";
}

.a-icon-twitter:before {
  content: "";
}

.a-icon-pencil:before {
  content: "";
}

.a-icon-download:before {
  content: "";
}

.a-icon-close:before {
  content: "";
}

.a-icon-burger:before {
  content: "";
}

.a-icon-check:before {
  content: "";
}


[class^=a-grid-], [class*=a-grid-] {
  display: flex;
  flex-direction: column;
}
@supports (display: grid) {
  [class^=a-grid-], [class*=a-grid-] {
    display: grid;
    flex-direction: row;
  }
}

.a-grid-content {
  padding-left: 160px;
  padding-right: 100px;
}
@supports (display: grid) {
  .a-grid-content {
    grid-auto-rows: auto;
    grid-template-columns: 130px repeat(10, 1fr) 130px;
    grid-column-gap: 30px;
    padding-left: 0;
    padding-right: 0;
  }
  @media all and (min-width: 300px) and (max-width: 767px) {
    .a-grid-content {
      display: flex;
      flex-direction: column;
    }
  }
  @media all and (min-width: 768px) and (max-width: 1023px) {
    .a-grid-content {
      grid-template-columns: 15px repeat(10, 1fr) 15px;
    }
  }
  @media all and (min-width: 1024px) and (max-width: 1199px) {
    .a-grid-content {
      grid-template-columns: 20px repeat(10, 1fr) 20px;
    }
  }
}

.a-grid-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@supports (display: grid) {
  .a-grid-row {
    display: grid;
    grid-auto-rows: auto;
    grid-template-columns: repeat(10, 1fr) 130px;
    grid-column-gap: 30px;
  }
  @media all and (min-width: 300px) and (max-width: 767px) {
    .a-grid-row {
      display: flex;
      flex-direction: column;
    }
  }
  @media all and (min-width: 768px) and (max-width: 1023px) {
    .a-grid-row {
      grid-template-columns: repeat(10, 1fr) 48px;
    }
  }
  @media all and (min-width: 1024px) and (max-width: 1199px) {
    .a-grid-row {
      grid-template-columns: repeat(10, 1fr) 20px;
    }
  }
}

.a-grid-free {
  display: flex !important;
}

.a-pull-left {
  margin-right: auto;
}

@media all and (min-width: 768px) {
  .a-hide-more-mobile {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden;
  }
}

@media all and (min-width: 1024px) {
  .a-hide-more-tablet {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden;
  }
}

@media all and (min-width: 300px) and (max-width: 767px) {
  .a-hide-mobile {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden;
  }
}

@media all and (min-width: 300px) and (max-width: 1023px) {
  .a-hide-across-mobile-tablet {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden;
  }
}

@media all and (min-width: 1024px) {
  .a-hover-attention:hover {
    color: #EF5355 !important;
  }
}

.m-layout {
  width: 100%;
  height: auto;
}
.is-freezed .m-layout {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.m-layout.is-room-shown {
  height: 100vh;
  overflow: hidden;
}

.m-header {
  width: 100%;
  height: 95px;
  border-bottom: 1px solid transparent;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  padding: 0 60px;
  display: flex;
  visibility: hidden;
}
.m-header.m-header--inside {
  z-index: 9999;
}
.m-header.is-preparing {
  opacity: 0;
}
@media all and (min-width: 1024px) {
  .m-header {
    transition: opacity 0.3s, transform 0.3s;
  }
}
.m-header.is-ready {
  visibility: visible;
}
@media all and (min-width: 1024px) {
  .m-header.is-ready {
    transition: background-color 0.3s, transform 0.3s;
  }
}
@media all and (min-width: 1024px) {
  .m-header.is-footer-reached {
    transform: translateY(-200px);
  }
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-header {
    padding: 0 24px;
  }
}
@media all and (min-width: 300px) and (max-width: 1023px) {
  .m-header {
    height: 76px;
  }
}
.m-header__navigation {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
}
@media all and (min-width: 300px) and (max-width: 1023px) {
  .m-header--index .m-header__navigation {
    justify-content: space-between;
  }
}
.m-header__actions {
  width: auto;
  flex: none;
  display: flex;
  align-items: center;
}
.m-header__actions > * {
  margin-left: 10px;
}
.m-header.is-header-active {
  background-color: #FFFFFF;
  border-bottom-color: rgba(151, 151, 151, 0.25);
}
.m-header.is-header-active .c-lang-selector__item {
  color: #212848;
}
.m-header.is-header-active .c-social__item {
  background-color: transparent;
  border-color: #212848;
  color: #212848;
}
@media all and (min-width: 1024px) {
  .m-header.is-header-active .c-social__item:hover {
    background-color: #212848;
    border-color: #212848;
    color: #FFFFFF;
  }
}
.m-header.is-header-active .a-color-text-light {
  color: #212848;
}
.m-header.is-header-active .c-button {
  background-color: #212848;
  color: #FFFFFF;
}

.m-main {
  width: 100%;
  height: auto;
  min-height: calc(100vh - 100px);
  position: relative;
}
.m-main__section {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
}
.m-main__section.m-main__section--application {
  background-color: #212848;
  min-height: 100vh;
  overflow: hidden;
}
.m-main__section.m-main__section--feedback {
  min-height: 100vh;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #FFFFFF;
  background-position: top right;
  background-image: url(img/feedback_background.png);
}

#breadcrumbs a,
.entry-title a,
.m-main .m-content-view__widget a {
	color: #EF5355;
}

.m-main .m-content-view__widget .entry-summary a {
	color: #404040;
}

.m-main a:hover {
	text-decoration:underline;
}

.m-main .m-content-view__widget .c-member__nav a{
	color:#fff;
}

.m-main .m-content-view__widget .c-member__nav a:hover{
	color:#EF5355;
}

@media all and (min-width: 768px) {
  .m-main__section.m-main__section--partners {
    padding-top: 20px;
    padding-bottom: 120px;
  }
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-main__section.m-main__section--partners {
    min-height: 600px;
    padding-top: 40px;
  }
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-main__section {
    padding-left: 24px;
    padding-right: 24px;
  }
  .m-main__section.m-main__section--feedback {
    padding-left: 0;
    padding-right: 0;
    min-height: 10px;
    background-size: cover;
    background-position: center;
  }
  .m-main__section.m-main__section--application {
    min-height: 10px;
  }
  .m-main__section.m-main__section--why .c-button {
    margin: 0 auto;
  }
}
.m-main__content {
  display: block;
  width: 100%;
  height: auto;
  max-width: 1680px;
  position: relative;
  z-index: 5;
  margin: 0 auto;
}
.m-main__content.m-main__content--centered {
  margin-left: auto;
  margin-right: auto;
}
.m-main__hero {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.m-main__hero--brand-mask:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  background-color: rgba(33, 40, 72, 0.8);
  mix-blend-mode: multiply;
}
.m-main .m-main__section--about .m-main__hero {
  overflow: hidden;
}
.m-main .m-main__section--about .c-picture {
  height: 800px;
}
.m-main .m-main__section--about .c-picture img {
  object-position: right -23vw top -100px;
}
@media all and (min-width: 1024px) and (max-width: 1199px) {
  .m-main .m-main__section--about .c-picture {
    height: 700px;
  }
}
@media all and (min-width: 768px) and (max-width: 1023px) {
  .m-main .m-main__section--about .c-picture {
    height: 600px;
  }
  .m-main .m-main__section--about .c-picture img {
    object-position: right -33vw top 50%;
  }
}
.no-objectfit .m-main .m-main__section--about .m-main__hero .c-picture, .no-object-fit .m-main .m-main__section--about .m-main__hero .c-picture {
  width: 1000px;
  height: auto;
  margin-left: auto;
  margin-right: -23vw;
  margin-top: -100px;
}
.no-objectfit .m-main .m-main__section--about .m-main__hero .c-picture img, .no-object-fit .m-main .m-main__section--about .m-main__hero .c-picture img {
  width: 100%;
  height: auto;
}
@media all and (min-width: 1600px) {
  .m-main .m-main__section--about .c-picture {
    height: 100%;
  }
  .m-main .m-main__section--about .c-picture img {
    object-position: right 0 top 0;
  }
}
.m-main .m-main__section--why .c-picture {
  height: 192px;
  overflow: hidden;
}
.m-main .m-main__section--why .m-content-view__title {
  padding-bottom: 0;
}
.m-main .m-main__section--why .c-button {
  margin-top: 60px;
}
.m-main .m-main__section--why .a-grid-free {
  align-items: flex-start;
}
.no-cssgrid .m-main .m-main__section--why .m-content-view__illustrated {
  width: calc(100% + 100px);
  justify-content: space-between;
  padding-bottom: 100px;
}
.no-cssgrid .m-main .m-main__section--why .m-content-view__illustrated .m-content-view__title {
  width: 50%;
}
.no-cssgrid .m-main .m-main__section--why .m-content-view__illustrated .c-picture {
  width: 40%;
  overflow: hidden;
}
.no-cssgrid .m-main .m-main__section--why .m-content-view__illustrated .c-picture img {
  height: 100%;
  width: auto;
}
@supports (display: grid) {
  .m-main .m-main__section--why .c-picture {
    grid-column: 7/-1;
  }
  .m-main .m-main__section--why .a-grid-content {
    grid-row-gap: 90px;
  }
}
@media all and (min-width: 768px) and (max-width: 1023px) {
  .m-main .m-main__section--why .a-grid-content {
    grid-row-gap: 40px;
  }
  .m-main .m-main__section--why .c-picture img {
    object-fit: cover;
    object-position: 0 0;
  }
}
.m-main .m-main__section--plan {
  padding-top: 10px;
}
.m-main .m-main__section--plan .m-main__hero {
  position: relative;
}
.m-main .m-main__section--plan .m-main__content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.m-main .m-main__section--plan .m-main__content [class^=a-text-], .m-main .m-main__section--plan .m-main__content [class*=" a-text-"] {
  pointer-events: auto;
}
.m-main .m-main__section--plan .m-main__content .c-button {
  pointer-events: auto;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-main .m-main__section--plan {
    height: 530px;
    padding-top: 80px;
  }
}
@media all and (min-width: 768px) and (max-width: 1023px) {
  .m-main .m-main__section--plan {
    padding-top: 40px;
  }
}
@media all and (min-width: 1024px) and (max-width: 1199px) {
  .m-main .m-main__section--plan {
    padding-top: 40px;
  }
}
.no-objectfit .m-main .m-main__section--overflow, .no-object-fit .m-main .m-main__section--overflow {
  overflow: hidden;
}

.m-footer {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 0 45px;
  border-top: 9px solid #EF5355;
  background-color: #000000;
}
.m-footer__copy {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 0 40px;
}
.m-footer__logo {
  width: auto;
  height: 15px;
  display: block;
}
@media all and (min-width: 1024px) {
  .m-footer__logo {
    transition: opacity 0.3s;
  }
  .m-footer__logo:hover {
    opacity: 0.85;
  }
}
.m-footer__logo-image {
  height: 15px;
  width: auto;
  display: block;
}
@media all and (min-width: 300px) and (max-width: 1023px) {
  .m-footer__copy {
    padding: 40px 0;
  }
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-footer {
    padding: 0 24px;
  }
}
@media all and (min-width: 768px) and (max-width: 1023px) {
  .m-footer {
    padding: 0 35px;
  }
}

.m-prefooter {
  width: 100%;
  display: flex;
  align-items: stretch;
  background-color: #212848;
  height: 100vh;
  min-height: 600px;
  max-height: 700px;
}
.m-prefooter__aside {
  width: 342px;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 45px 40px 30px;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-prefooter__aside {
    width: 100%;
    padding-left: 8%;
    padding-right: 8%;
  }
}
@media all and (min-width: 768px) and (max-width: 1023px) {
  .m-prefooter__aside {
    width: 300px;
    padding: 60px 30px 55px;
  }
}
.m-prefooter__main {
  width: calc(100% - 342px);
  flex: none;
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
}
.m-prefooter__main .c-button {
  position: absolute;
  right: 45px;
  top: 40px;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-prefooter__main {
    width: 100%;
    height: 450px;
  }
  .m-prefooter__main .c-button {
    right: auto;
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    bottom: 35px;
  }
}
@media all and (min-width: 768px) and (max-width: 1023px) {
  .m-prefooter__main {
    width: calc(100% - 300px);
  }
}
.m-prefooter__map {
  width: 100%;
  height: 100%;
  display: block;
}
.m-prefooter__map-embed {
  width: 100%;
  height: 100%;
  display: block;
}
.m-prefooter .c-logo {
  margin-bottom: 40px;
}
.m-prefooter .c-complex-block {
	margin-top: 40px;
	color: #fff;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.m-prefooter .c-complex-block p {
 margin-top: 5px;
}

.m-prefooter .c-complex-link + .c-complex-link {
  margin-top: 10px;
}

.m-prefooter .c-complex-block .c-complex-link {
	flex-direction:row;
	justify-content: center;
}

.m-prefooter .c-complex-block .c-complex-link [class^=a-icon-], 
.m-prefooter .c-complex-block .c-complex-link [class*=" a-icon-"] {
	flex-direction:row;
	justify-content: center;
	margin: 0 10px 0 0;
}

.m-prefooter .c-social {
  margin-top: 20px;
}
.m-prefooter .c-social .c-social__item:not(:last-child) {
  margin-right: 30px;
}
.m-prefooter .c-form-subscribe {
  margin-top: 30px;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-prefooter {
    height: auto;
    min-height: 100px;
    max-height: none;
    flex-direction: column;
  }
}

.m-hero {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  padding: 140px 0 140px;
  position: relative;
  background-color: rgba(33, 40, 72, 0.5);
  display: flex;
  align-items: center;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-hero {
    height: 670px;
    min-height: 550px;
    padding: 120px 0 40px;
  }
}
@media all and (min-width: 768px) and (max-width: 1023px) {
  .m-hero {
    height: 800px;
  }
}
@media all and (min-width: 1024px) and (max-width: 1199px) {
  .m-hero {
    height: 600px;
  }
}
.m-hero .a-text-h1 {
  text-align: center;
}
.m-hero__back {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.m-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-hero__content {
    justify-content: space-between;
    padding: 0 24px;
  }
}
@media all and (min-width: 300px) and (max-width: 1023px) {
  .m-hero__content {
    height: 100%;
  }
  .m-hero__content .c-button {
    margin-top: 60px;
  }
  .m-hero__content .a-text-h1 {
    line-height: 1.1666666667;
  }
}

.m-content-view {
  padding-top: 120px;
  padding-bottom: 75px;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-content-view {
    padding-top: 60px;
    padding-bottom: 0;
  }
  .m-main__section--application .m-content-view {
    padding-bottom: 0;
  }
  .m-content-view.m-content-view--list {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}
@media all and (min-width: 768px) and (max-width: 1023px) {
  .m-content-view {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}
.m-content-view__title {
  padding-bottom: 45px;
  width: 60%;
}
@supports (display: grid) {
  .m-content-view__title {
    width: 100%;
    grid-column: 1/6;
  }
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-content-view__title {
    padding-bottom: 50px;
  }
  .m-main__section--application .m-content-view__title {
    padding-bottom: 30px;
  }
  .m-main__section--about .m-content-view__title {
    padding-bottom: 25px;
  }
  .m-main__section--why .m-content-view__title {
    margin-bottom: 75px;
  }
  .m-main__section--team .m-content-view__title {
    padding-bottom: 40px;
  }
  .m-main__section--partners .m-content-view__title {
    padding-bottom: 20px;
  }
}
.m-content-view__desc {
  padding-bottom: 85px;
  width: 60%;
}
@supports (display: grid) {
  .m-content-view__desc {
    width: 100%;
    grid-column: 1/6;
  }
}
.m-content-view__list {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  width: 60%;
}
@supports (display: grid) {
  .m-content-view__list {
    grid-column: 1/7;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, auto);
    grid-gap: 60px 30px;
  }
}
.m-content-view__list .a-text-h2-small {
  padding-bottom: 10px;
}
.m-content-view__list .m-content-view__desc {
  padding-bottom: 0;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-content-view__list {
    display: flex;
    flex-direction: column;
  }
}
@media all and (min-width: 768px) and (max-width: 1023px) {
  .m-content-view__list {
    width: 80%;
  }
  @supports (display: grid) {
    .m-content-view__list {
      width: 100%;
      grid-column: 1/8;
      grid-gap: 30px;
    }
  }
}
.m-content-view__list-item {
  padding-right: 30px;
  padding-bottom: 60px;
}
.m-content-view__list-item:nth-child(2n) {
  width: 35%;
}
.m-content-view__list-item:nth-child(2n + 1) {
  width: 65%;
}
.m-content-view__list-item:nth-last-child(1), .m-content-view__list-item:nth-last-child(2) {
  padding-bottom: 0;
}
@supports (display: grid) {
  .m-content-view__list-item {
    padding-right: 0px;
    padding-bottom: 0px;
  }
  .m-content-view__list-item:nth-child(2n) {
    width: auto;
    grid-column: 4/7;
  }
  .m-content-view__list-item:nth-child(2n + 1) {
    width: auto;
    grid-column: 1/4;
  }
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-content-view__list-item {
    width: 100%;
  }
  .m-content-view__list-item:not(:last-child) {
    margin-bottom: 25px;
  }
}
@media all and (min-width: 1200px) and (max-width: 1439px) {
  .m-content-view__list-item .a-text-h2-small {
    white-space: nowrap;
  }
}
@media all and (min-width: 1200px) and (max-width: 1439px) and (max-width: 1365px) {
  .m-content-view__list-item .a-text-h2-small {
    font-size: 40px;
  }
}
.m-content-view__list-item .m-content-view__desc {
  max-width: 280px;
}
.m-content-view__caption {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@supports (display: grid) {
  .m-content-view__caption {
    width: 100%;
    grid-column: 7/11;
    grid-row: 2/-1;
  }
}
.m-content-view__caption > *:not(:last-child) {
  margin-bottom: 10px;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-content-view__caption {
    margin-top: 75px;
  }
}
.m-content-view__row {
  grid-column: 2/-1;
}
.m-content-view__row.m-content-view__row--full {
  grid-column: 2/-2;
}
@media all and (min-width: 768px) and (max-width: 1023px) {
  .m-content-view__row.m-content-view__row--complex {
    grid-template-rows: repeat(2, auto);
    grid-row-gap: 30px;
  }
  .m-content-view__row.m-content-view__row--complex .m-content-view__caption {
    grid-column: 1/9;
    grid-row: 2/-1;
  }
}
.m-content-view__block {
  width: 33.33%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-content: stretch;
}
@supports (display: grid) {
  .m-content-view__block {
    width: 100%;
    grid-column: span 3;
  }
}
.m-content-view__block > * {
  width: 100%;
}
.m-content-view__block .a-text-h3 {
  margin-bottom: 25px;
}
@media all and (min-width: 1024px) {
  .m-content-view__block .a-text-paragraph {
    padding-right: 30px;
  }
  .m-content-view__block .a-text-h3 {
    padding-right: 30%;
  }
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-content-view__block:not(:last-child) {
    margin-bottom: 40px;
  }
  .m-content-view__block .a-text-h3 {
    margin-bottom: 15px;
    padding-right: 20%;
  }
}
.m-content-view__widget {
  width: 100%;
  grid-column: 2/-2;
}

.m-simple-view {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.m-simple-view.m-simple-view--advanced {
  min-height: calc(100vh - 80px);
  justify-content: center;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-simple-view.m-simple-view--advanced {
    min-height: 600px;
  }
}
.m-simple-view__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.m-simple-view__main {
  width: 100%;
  max-width: 400px;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
}
.m-simple-view__main > *:not(:last-child) {
  margin-bottom: 50px;
}
.m-simple-view__main [class^=a-text-], .m-simple-view__main [class*=" a-text-"] {
  width: 100%;
  text-align: center;
}
.m-simple-view__main:only-child {
  padding-bottom: 50px;
}
.m-simple-view__main:not(:only-child) {
  padding-bottom: 120px;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-simple-view__main {
    padding-top: 40px;
  }
  .m-simple-view__main > *:not(:last-child) {
    margin-bottom: 25px;
  }
  .m-simple-view__main:not(:only-child) {
    padding-bottom: 40px;
  }
  .m-simple-view__main:only-child {
    padding-top: 60px;
    padding-bottom: 10px;
  }
  .m-simple-view__main .c-button {
    margin-top: 30px;
  }
}
.m-simple-view__main.m-simple-view__main--shrink {
  padding-bottom: 0px;
  padding-top: 120px;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-simple-view__main.m-simple-view__main--shrink {
    padding-bottom: 40px;
    padding-top: 100px;
  }
}
.m-simple-view__main.m-simple-view__main--shrink > *:not(:last-child) {
  margin-bottom: 35px;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-simple-view__main.m-simple-view__main--shrink .c-button {
    margin-top: 0;
  }
}
.m-simple-view__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex: none;
  padding: 0 40px 50px;
}
.m-simple-view__footer > *:not(:last-child) {
  margin-right: 40px;
}
@media all and (min-width: 300px) and (max-width: 1023px) {
  .m-simple-view__footer {
    flex-direction: column;
    padding-bottom: 40px;
    text-align: center;
  }
  .m-simple-view__footer > *:not(:last-child) {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.m-plan-view {
  width: 100%;
  height: 100%;
  padding: 90px 160px 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-plan-view {
    padding: 80px 24px 60px;
  }
  .m-plan-view .c-button {
    margin: 0 auto;
  }
}
@media all and (min-width: 768px) and (max-width: 1023px) {
  .m-plan-view {
    padding: 90px 45px 10px;
  }
}
@media all and (min-width: 1024px) and (max-width: 1199px) {
  .m-plan-view {
    padding: 90px 45px 20px 45px;
  }
}

.m-article {
  width: 100%;
  height: auto;
  /*display: flex;*/
  display: inline;
  flex-direction: column;
}
.m-article strong {
  font-family: "avenir-demi";
  font-weight: 500;
}
.m-article p, .m-article li {
  font: 400 16px "avenir-regular";
  line-height: 1.5;
  color: #4C4C4E;
}
.m-article h1, .m-article h2, .m-article h3, .m-article h4 {
  color: #212848;
}
.m-article h1 {
  font: 600 66px "avenir-bold";
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-article h1 {
    font-size: 30px;
  }
}
.m-article h2 {
  font: 600 50px "avenir-bold";
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-article h2 {
    font-size: 24px;
  }
}
.m-article h3 {
  font: 600 22px "avenir-bold";
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-article h3 {
    font-size: 18px;
  }
}
.m-article h4 {
  font: 500 16px "avenir-demi";
}
.m-article img,
.m-article p img,
.m-article figure {
  width: 100%;
  height: auto;
  display: block;
}
.m-article iframe {
  width: 100%;
  height: 400px;
}
.m-article blockquote {
  padding-left: 24px;
  border-left: 4px solid #EF5355;
  font: 400 14px "avenir-regular";
  color: #4C4C4E;
}
.m-article > * + * {
  margin-top: 25px;
}
.m-article > * + figure,
.m-article > * + img,
.m-article > * + iframe {
  margin-top: 35px;
}
.m-article > * + h2,
.m-article > * + h3 {
  margin-top: 35px !important;
}
.m-article ul, .m-article ol {
  list-style-position: outside;
}
.m-article ul li:not(:last-child), .m-article ol li:not(:last-child) {
  margin-bottom: 10px;
}
.m-article li ol, .m-article li ul {
  margin-top: 10px;
}
.m-article ul {
  list-style-type: circle;
}
.m-article ol {
  list-style-type: decimal;
}
.m-article a {
  color: #EF5355;
}
/*
@media all and (min-width: 1024px) {
  .m-article a:hover {
    text-decoration: underline;
  }
}*/
.m-article hr {
  border: none;
  border-top: 2px solid rgba(33, 40, 72, 0.6);
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-article blockquote {
    padding-left: 16px;
  }
  .m-article ul, .m-article ol {
    padding-left: 24px;
  }
  .m-article ul li:before, .m-article ol li:before {
    left: -24px;
  }
}

.m-dashboard {
  width: 100%;
  height: auto;
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  justify-content: flex-start;
}
.m-dashboard__item {
  margin-bottom: 60px;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-dashboard__item {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media all and (min-width: 768px) {
  .m-dashboard__item {
    width: calc(50% - 15px);
  }
  .m-dashboard__item:nth-child(2n + 1) {
    margin-right: 30px;
  }
}

.m-post {
  padding-bottom: 60px;
}
.m-post__head, .m-post__body, .m-post__footer {
  width: 100%;
  max-width: 620px;
  margin-left: 160px;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-post__head, .m-post__body, .m-post__footer {
    margin-left: 0;
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media all and (min-width: 768px) and (max-width: 1023px) {
  .m-post__head, .m-post__body, .m-post__footer {
    max-width: 720px;
    margin-left: 0;
    padding: 0 48px;
  }
}
.m-post__head {
  padding-top: 55px;
  padding-bottom: 25px;
}
.m-post__head .m-post__title + .c-quote {
  padding-top: 70px;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-post__head {
    padding-top: 40px;
  }
  .m-post__head .m-post__title + .c-quote {
    padding-top: 50px;
  }
}
.m-post__body {
  padding-top: 50px;
  padding-bottom: 65px;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-post__body {
    padding-top: 25px;
    padding-bottom: 50px;
  }
}
.m-post__footer {
  padding-bottom: 50px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
.m-post__footer .c-social-button {
  width: 265px;
}
@media all and (min-width: 768px) {
  .m-post__footer .c-social-button:not(:last-child) {
    margin-right: 40px;
  }
}
@media all and (min-width: 1024px) {
  .m-post__footer .c-social-button:not(:last-child) {
    margin-right: 60px;
  }
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-post__footer {
    flex-direction: column;
    padding-bottom: 0;
  }
  .m-post__footer .c-social-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  .m-post__footer .c-social-button:not(:last-child) {
    margin-bottom: 25px;
  }
}
.m-post__picture {
  position: relative;
  background-color: #212848;
}
.m-post__picture:before {
  content: "";
  width: 100%;
  height: 90%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0.66;
  background-image: linear-gradient(-180deg, #000000 3%, rgba(0, 0, 0, 0) 67%);
}
.m-post__title {
  padding-top: 25px;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-post__title {
    padding-top: 15px;
  }
}
.m-post__label {
  text-transform: uppercase;
  letter-spacing: normal;
  opacity: 0.5;
}
@media all and (min-width: 300px) and (max-width: 1023px) {
  .m-post__label {
    letter-spacing: normal;
  }
}

.m-error {
  width: 100%;
  height: auto;
  min-height: 100vh;
  background-color: #212848;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-error {
    height: calc(100vh - 104px);
    min-height: 400px;
  }
}
.m-error__wrapper {
  width: 100%;
  max-width: 1150px;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 auto;
  padding: 120px 45px;
  flex-wrap: wrap;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-error__wrapper {
    padding: 130px 24px;
    align-items: flex-start;
    margin: 0;
  }
}
.m-error__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 135px;
  width: 240px;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-error__content {
    margin-right: 0;
  }
}
.m-error__illustration {
  flex: none;
  width: calc(100% - 375px);
  height: auto;
  overflow: hidden;
  background: transparent;
}
.m-error__illustration svg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.m-error__illustration svg image {
  animation-name: hide-down;
  animation-delay: 1.5s;
  animation-iteration-count: 1;
  animation-timing-function: cubic-bezier(0.29, 0.7, 0.58, 0.8);
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
}
.m-error__illustration-wrapper {
  height: 0;
  width: 100%;
  padding-bottom: 55%;
  position: relative;
}
.m-error__title {
  font-family: "avenir-bold";
  font-weight: 600;
  font-size: 120px;
  color: #EF5355;
}
.m-error .c-button {
  margin-top: 90px;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-error .c-button {
    margin-top: 50px;
  }
}

.m-application {
  width: 100%;
  max-width: 730px;
  background-color: #FFFFFF;
  border-radius: 17px;
  position: relative;
  transition: opacity 0.3s;
}
.m-application.is-preparing {
  opacity: 0;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-application {
    width: calc(100% + 48px);
    margin-left: -24px;
    border-radius: 0;
    max-width: none;
  }
  .m-application .a-text-h3 {
    font-size: 22px;
  }
  .m-application .a-text-paragraph {
    font-size: 16px;
  }
}
.m-application__body {
  width: 100%;
  padding: 0 40px;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-application__body {
    padding: 0 24px;
  }
}
.m-application__footer {
  width: 100%;
  padding: 45px 40px;
  border-top: 1px solid rgba(151, 151, 151, 0.25);
  display: flex;
  justify-content: space-between;
}
.m-application__footer > *:only-child:not(.a-pull-left) {
  margin-left: auto;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-application__footer {
    padding: 50px 24px 25px;
    flex-direction: column-reverse;
    align-items: center;
  }
  .m-application__footer .c-button {
    width: 220px;
    justify-content: center;
    margin-bottom: 25px;
    margin-right: 0 !important;
  }
  .m-application__footer > *:only-child {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
.m-application__section {
  display: flex;
  flex-direction: column;
  padding: 25px 0;
}
.m-application__section:not(:last-child) {
  border-bottom: 1px solid rgba(151, 151, 151, 0.25);
}
.m-application__section:last-child {
  padding-bottom: 50px;
}
.m-application__row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.m-application__row .c-social-button:not(:last-child) {
  margin-right: 30px;
}
.m-application__row--payments form:not(:last-child) {
  margin-right: 45px;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-application__row--payments .c-payment {
    margin-bottom: 30px;
  }
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-application__row {
    flex-direction: column;
  }
  .m-application__row .c-social-button {
    width: 100%;
    margin-bottom: 30px;
  }
  .m-application__row .c-social-button:not(:last-child) {
    margin-right: 0;
  }
}
@media all and (min-width: 768px) and (max-width: 1023px) {
  .m-application__row.m-application__row--social {
    flex-wrap: nowrap;
  }
  .m-application__row .c-social-button {
    padding-left: 20px;
  }
  .m-application__row .c-social-button:not(:last-child) {
    margin-right: 30px;
  }
}
.m-application__block {
  width: 100%;
}
.m-application__cols {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding-top: 10px;
  padding-bottom: 40px;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-application__cols {
    padding-top: 30px;
    flex-direction: column;
  }
}
.m-application__col {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.m-application__col:first-child {
  padding-right: 30px;
}
.m-application__col:last-child {
  padding-left: 30px;
}
.m-application__col > *:not(:last-child) {
  margin-bottom: 10px;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-application__col {
    width: 100%;
  }
  .m-application__col:first-child {
    padding-right: 0;
  }
  .m-application__col:last-child {
    padding-left: 0;
  }
}
.m-application .a-text-h3 + .a-text-paragraph {
  margin-top: 15px;
}
.m-application .a-text-paragraph + .a-text-h3 {
  margin-top: 30px;
}
.m-application .a-text-paragraph + .c-switch {
  margin-top: 20px;
}
.m-application .m-application__row,
.m-application .c-stock-widget {
  margin-top: 40px;
}
.m-application .c-form {
  max-width: 404px;
}
.m-application .c-switch {
  margin-bottom: 20px;
}
.m-application .c-form {
  padding-top: 30px;
}
.m-application .js-social-logout {
  opacity: 0;
}
.m-application .js-social-logout.is-show {
  opacity: 1;
}
.m-application__logout {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.m-application__logout .c-social-button {
  padding-right: 22px;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-application__logout {
    flex-direction: column;
  }
  .m-application__logout > * {
    margin-right: 0;
  }
  .m-application__logout > *:not(:last-child) {
    margin-bottom: 20px;
  }
}

.m-application-decoration {
  width: 100%;
  height: 100%;
  position: absolute;
  left: calc(100% + 20px);
  top: 0;
  z-index: 1;
}
.m-application-decoration > * {
  position: absolute;
}
@media all and (max-width: 1023px) {
  .m-application-decoration {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden;
  }
}
.m-application-decoration__text {
  width: 190px;
  z-index: 9;
  top: 40px;
  left: 0;
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  transition: all 0.6s;
  display: flex;
  flex-direction: column;
}
.m-application-decoration__text > *:not(:last-child) {
  margin-bottom: 10px;
}
.m-application-decoration__notes {
  width: 440px;
  height: 384px;
  position: absolute;
  left: 10px;
  top: 20px;
  pointer-events: none;
}
.m-application-decoration__notes > * {
  position: absolute;
}
.m-application-decoration__stuff {
  width: 440px;
  height: 570px;
  position: absolute;
  left: 0;
  top: 360px;
  pointer-events: none;
}
.m-application-decoration__stuff > * {
  position: absolute;
}
.m-application-decoration__blue-note, .m-application-decoration__red-note, .m-application-decoration__yellow-note, .m-application-decoration__cup, .m-application-decoration__bag, .m-application-decoration__stuff {
  transition: all 0.6s;
}
.m-application-decoration__yellow-note {
  width: 214px;
  height: 179px;
  left: 55px;
  top: 0;
  transition-delay: 0.1s;
}
.m-application-decoration__red-note {
  width: 234px;
  height: 196px;
  left: 0;
  bottom: 0;
  transition-delay: 0.2s;
}
.m-application-decoration__blue-note {
  width: 223px;
  height: 186px;
  right: 0;
  bottom: 40px;
}
.m-application-decoration__cup {
  width: 130px;
  height: 105px;
  left: 0;
  bottom: 0;
  z-index: 5;
}
.m-application-decoration__bag {
  width: 230px;
  height: 342px;
  left: -30px;
  top: 30px;
  z-index: 5;
}
.m-application-decoration__hoodie {
  width: 376px;
  height: 428px;
  left: 85px;
  bottom: 30px;
}
.m-application-decoration.is-money-state .m-application-decoration__red-note,
.m-application-decoration.is-money-state .m-application-decoration__yellow-note {
  transform: translateY(-50px);
  opacity: 0;
}
.m-application-decoration.is-money-state .m-application-decoration__blue-note {
  transform: translateY(-140px);
}
.m-application-decoration.is-money-state .m-application-decoration__cup {
  transform: translateY(-320px);
}
.m-application-decoration.is-money-state .m-application-decoration__bag {
  transform: translateY(180px);
}
.m-application-decoration.is-money-state .m-application-decoration__stuff {
  transform: translateY(-220px);
}
.m-application-decoration.is-money-state .m-application-decoration__text {
  transform: translateY(0px);
  opacity: 1;
  pointer-events: auto;
}

.m-feedback {
  width: 100%;
  height: auto;
  min-height: 645px;
  padding: 140px 45px 75px 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-feedback {
    padding: 100px 24px 70px;
    justify-content: flex-start;
  }
}
@media all and (min-width: 768px) and (max-width: 1023px) {
  .m-feedback {
    padding: 140px 48px 75px;
  }
}
.m-feedback__title {
  max-width: 580px;
  width: 100%;
}
.m-feedback__subtitle {
  margin-bottom: auto;
  max-width: 420px;
}
.m-feedback__desc {
  width: 100%;
  max-width: 340px;
  margin-bottom: 47px;
}
.m-feedback .m-feedback__title + .m-feedback__subtitle {
  margin-top: 27px;
}
.m-feedback .m-feedback__title + .m-feedback__desc {
  margin-top: 47px;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-feedback {
    min-height: 480px;
  }
  .m-feedback .m-feedback__title + .m-feedback__subtitle {
    margin-top: 27px;
  }
  .m-feedback .m-feedback__title + .m-feedback__desc {
    margin-top: 27px;
  }
  .m-feedback .m-feedback__subtitle + .c-button {
    margin-top: 50px;
  }
}
.m-feedback .c-button {
  margin-top: 50px;
}

.m-modal-slider {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 999;
  left: -400vw;
  top: 0;
  opacity: 0;
  background-color: #212848;
  transform: translateY(50px);
  transition: left 0s 0.5s, transform 0.3s 0s, opacity 0.3s 0s;
}
.m-modal-slider.is-active {
  left: 0;
  opacity: 1;
  transition: left 0s 0s, transform 0.3s 0s, opacity 0.3s 0s;
  transform: translateY(0px);
}
.m-modal-slider__container {
  width: 100%;
  height: 100%;
  flex: none;
}
.m-modal-slider__controls {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 10px;
}
.m-modal-slider__control {
  pointer-events: auto;
  width: 50px;
  height: 50px;
  font-size: 30px;
  color: #EF5355;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(33, 40, 72, 0.6);
}
.m-modal-slider__control.is-disabled {
  opacity: 0.3;
}
.m-modal-slider__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 99;
  width: 50px;
  height: 50px;
  font-size: 20px;
  color: #EF5355;
  background-color: rgba(33, 40, 72, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-modal-slider__pagination {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 20px;
  z-index: 99;
}
.m-modal-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.m-modal {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 999;
  left: -400vw;
  top: 0;
  opacity: 0;
  background-color: #FFFFFF;
  transform: translateY(50px);
  transition: left 0s 0.5s, transform 0.3s 0s, opacity 0.3s 0s;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
}
.m-modal.is-active {
  left: 0;
  opacity: 1;
  transition: left 0s 0s, transform 0.3s 0s, opacity 0.3s 0s;
  transform: translateY(0px);
}
.m-modal__title {
  display: block;
  padding: 32px 25px;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-modal__title {
    padding: 15px 25px 20px;
  }
}
.m-modal__content {
  width: 100%;
  height: auto;
  display: block;
  padding: 0 25px;
}
.m-modal__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}
.m-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 99;
  width: 50px;
  height: 50px;
  font-size: 20px;
  color: #212848;
  display: flex;
  align-items: center;
  justify-content: center;
}

.m-corps {
  width: 100%;
  height: auto;
  /*padding: 0 160px;*/
  padding: 0 430px 0 160px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .m-corps {
    padding: 40px 0;
  }
}
@media all and (min-width: 768px) and (max-width: 1199px) {
  .m-corps {
    padding: 0 40px;
  }
}
.m-corps > * {
  flex: none;
}
.m-corps__head {
  width: 100%;
}
@media all and (min-width: 768px) {
  .m-corps__head {
    position: relative;
    z-index: 9;
  }
}
.m-corps__status {
  height: 70px;
  margin-top: 20px;
}
.m-corps__status .swiper-slide {
  opacity: 0 !important;
}
.m-corps__status .swiper-slide-active {
  opacity: 1 !important;
}
.m-corps__body {
  width: 100%;
}
@media all and (min-width: 768px) {
  .m-corps__body {
    /*margin-top: -100px;*/
  }
}
.m-corps__aside {
  width: 100px;
  height: 100%;
  display: flex;
  align-items: center;
  position: absolute;
  right: 45px;
  top: 0;
  z-index: 99;
  min-width: 356px;
}
@media all and (min-width: 300px) and (max-width: 1024px) {
  .m-corps__aside {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden;
  }
}
@media all and (min-width: 1025px) {
  .m-corps__list {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden;
  }
}

body.is-modal-shown {
  overflow: hidden;
}

.m-rooms {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 99999;
  left: -400vw;
  top: 0;
  will-change: left;
  transition-property: left;
  transition-duration: 0s;
  transition-delay: 0.3s;
}
.m-rooms.is-active {
  left: 0;
  transition-delay: 0s;
}
.m-rooms__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 99;
  width: 50px;
  height: 50px;
  font-size: 20px;
  color: #212848;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-property: opacity;
  transition-duration: 0.2s;
  transition-delay: 0s;
  opacity: 0;
}
.m-rooms__close:hover {
  color: #EF5355;
}
.is-active .m-rooms__close {
  transition-delay: 0.1s;
  opacity: 1;
}
.m-rooms__overlay {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s;
  will-change: background-color;
  cursor: pointer;
}
.is-active .m-rooms__overlay {
  background-color: rgba(0, 0, 0, 0.5);
}
.m-rooms__list {
  width: 100%;
  max-width: 450px;
  height: 100%;
  transform: translateX(100%);
  background: #FFFFFF;
  cursor: auto;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-delay: 0s;
  overflow-x: hidden;
  overflow-y: auto;
}
.is-active .m-rooms__list {
  transform: translateX(0);
}
.m-rooms__item {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}
.m-rooms__item:not(.is-active) {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.m-loader {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: #212848;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-property: opacity, left;
  transition-duration: 0.3s, 0s;
  transition-delay: 0s;
}
.m-loader--inline {
  position: absolute;
  background-color: #FFFFFF;
  height: 100%;
}
.m-loader.is-finished {
  opacity: 0;
  left: -300vw;
  transition-delay: 0s, 0.3s;
}
.m-loader__icon {
  width: 70px;
  height: 70px;
}
.m-loader svg {
  width: 100%;
  height: 100%;
}
.m-loader svg polyline {
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5px;
}
.m-loader__base polyline {
  stroke: #FFFFFF;
}
.m-loader__active polyline {
  stroke: #EF5355;
  stroke-width: 1.5px;
  animation-iteration-count: infinite;
  animation-duration: 5s;
  animation-fill-mode: both;
  animation-name: stroke-default;
  animation-timing-function: ease-in-out;
}
.m-loader__active polyline.small {
  stroke-dasharray: 10.5px;
  stroke-dashoffset: 10.5px;
  animation-name: stroke-small;
  animation-direction: alternate;
}
.m-loader__active polyline.default {
  animation-name: stroke-default;
}
.m-loader__active polyline.long {
  animation-duration: 4s;
  animation-name: stroke-long;
}
.m-loader__active polyline.reverse {
  animation-name: stroke-reverse;
}
.m-loader__active polyline.line {
  stroke-dasharray: 19.5px;
  stroke-dashoffset: 19.5px;
  animation-name: stroke-reverse;
  animation-direction: alternate;
}
.m-loader__active polyline.delay-default {
  animation-delay: 1s;
}

@keyframes stroke-long {
  0%, 100% {
    stroke-dasharray: 10px;
  }
  50% {
    stroke-dasharray: 30px;
  }
}
@keyframes stroke-reverse {
  0%, 100% {
    stroke-dasharray: 50px;
  }
  50% {
    stroke-dasharray: 20px;
  }
}
@keyframes stroke-default {
  0%, 100% {
    stroke-dasharray: 5px;
  }
  50% {
    stroke-dasharray: 20px;
  }
}
@keyframes stroke-line {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: 19.5px;
  }
}
@keyframes stroke-small {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: 10.5px;
  }
}
.c-button {
  height: 44px;
  width: auto;
  padding: 0 48px;
  border-radius: 22px;
  display: flex;
  flex: none;
  font: 600 12px "avenir-bold";
  line-height: 44px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media all and (max-width: 1439px) {
  .c-button {
    padding: 0 33px;
  }
}

@media all and (max-width: 1280px) {
  .c-button {
    padding: 0 23px;
  }
}

@media all and (max-width: 1198px) {
  .c-button {
    padding: 0 13px;
  }
}

.c-button:not([role=button]) {
  cursor: pointer;
  user-select: none;
}
@media all and (min-width: 300px) and (max-width: 1023px) {
  .c-button {
    letter-spacing: normal;
  }
}
.c-button--alt {
  background-color: #FFFFFF;
  color: #212848;
}
.c-button--default {
  background-color: #212848;
  color: #FFFFFF;
}
.c-button--attention {
  background-color: #EF5355;
  color: #FFFFFF;
}
.c-button--outline {
  color: #212848!important;
  border: 2px solid #212848;
  line-height: 40px;
  transition: background-color 0.3s, color 0.3s, transform 0.2s;
}
@media all and (min-width: 1024px) {
.c-button--outline:hover {
    background-color: #212848;
    color: #FFFFFF!important;
	text-decoration: none!important;
  }
.c-button--outline:hover .c-button__label {
    transform: scale(1.04);
  }
}
@media all and (min-width: 1024px) {
.c-button--air.c-button--icon:hover {
    color: #EF5355;
  }
}
.c-button--outline-alt {
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  line-height: 40px;
  transition: background-color 0.3s, color 0.3s, transform 0.2s;
}
@media all and (min-width: 1024px) {
.c-button--outline-alt:hover {
    border-color: #EF5355;
    color: #EF5355;
  }
}
.c-button .c-button__label {
  will-change: transform;
  transition: transform 0.1s;
}
.c-button.c-button--icon {
  height: 36px;
  line-height: 34px;
  border-width: 1px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  font-size: 10px;
}
.c-button.c-button--icon [class^=a-icon-], .c-button.c-button--icon [class*=" a-icon-"] {
  color: inherit;
}
@media all and (min-width: 1024px) {
  .c-button:not(.c-button--outline):not(.c-button--air) {
    transition: opacity 0.3s ease-in, background-color 0.3s ease-in, transform 0.2s;
  }
  .c-button:not(.c-button--outline):not(.c-button--air):hover {
    opacity: 0.85;
  }
}
@media all and (min-width: 1024px) {
  .c-button:active {
    transform: scale(0.97);
  }
}
.c-button[disabled] {
  opacity: 0.3;
  pointer-events: none;
}

.c-link {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #EF5355;
}
.c-link [class^=a-icon-], .c-link [class*=" a-icon-"] {
  font-size: 20px;
  color: inherit;
  margin-right: 15px;
}
.c-link__label {
  font: 600 10px "avenir-bold";
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 2px 0 2px;
}
@media all and (min-width: 300px) and (max-width: 1023px) {
  .c-link__label {
    letter-spacing: normal;
  }
}
.c-link--dark .c-link__label {
  color: #212848;
}
.c-link--light .c-link__label {
  color: #FFFFFF;
}
@media all and (min-width: 1024px) {
  .c-link:hover .c-link__label {
    color: #EF5355;
  }
}

.c-complex-link {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
  transition: color 0.3s;
  cursor: pointer;
  user-select: none;
}
.c-complex-link .a-icon-evenlope {
  font-size: 20px;
}
.c-complex-link .a-icon-pin {
  font-size: 26px;
}
.c-complex-link .a-icon-phone {
  font-size: 20px;
}
.c-complex-link [class^=a-icon-], .c-complex-link [class*=" a-icon-"] {
  color: inherit;
  font-weight: normal;
  margin-bottom: 6px;
}
.c-complex-link__label {
  color: inherit;
  max-width: 250px;
  font: 400 14px "avenir-regular";
}
@media all and (min-width: 1024px) {
  .c-complex-link:hover {
    color: #EF5355;
  }
}

.c-banner {
  width: 100%;
  height: auto;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 99;
  background: #FFFFFF;
  border-top: 1px solid rgba(151, 151, 151, 0.25);
  padding: 35px 45px 30px;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-banner {
    padding: 20px 15px 20px;
  }
  .c-banner .c-button {
    margin: 0 auto;
  }
}
.c-banner.is-prepare {
  visibility: hidden;
}
.c-banner.is-hidden {
  display: none;
}
.c-banner__content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.c-banner__text {
  width: 100%;
  margin-bottom: 20px;
}

.c-picture {
  width: 100%;
  display: block;
}
.c-picture--cover {
  height: 100%;
  overflow: hidden;
}
.no-objectfit .c-picture--cover, .no-object-fit .c-picture--cover {
  overflow: hidden;
}
.no-objectfit .c-picture--cover img, .no-object-fit .c-picture--cover img {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.c-picture--cover img {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@supports (object-fit: cover) {
  .c-picture--cover img {
    width: 100%;
    height: 100%;
    position: static;
    transform: none;
    object-fit: cover;
    object-position: 50% 50%;
  }
}
.c-picture--auto-width {
  height: 100%;
  width: auto;
}
.c-picture--auto-width img {
  height: 100%;
  width: auto;
  display: block;
}
.c-picture--auto-height {
  width: 100%;
  height: auto;
}
.c-picture--auto-height img {
  width: 100%;
  height: auto;
  display: block;
}
.c-picture--contain {
  height: 100%;
}
.c-picture--contain img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@supports not (object-fit: cover) {
  .c-picture--cover {
    overflow: hidden;
  }
}
.c-logo {
  display: block;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-logo:not(.c-logo--vertical):not(.c-logo--inside) {
    width: 210px;
    height: 48px;
  }
  .c-logo:not(.c-logo--vertical):not(.c-logo--inside) .c-logo__image {
    width: 210px;
    height: 48px;
  }
  .is-header-active .c-logo:not(.c-logo--vertical):not(.c-logo--inside) {
    width: 60px;
    overflow: hidden;
  }
}
@media all and (min-width: 768px) {
  .c-logo:not(.c-logo--vertical):not(.c-logo--inside) {
    width: 60px;
    height: 48px;
  }
  .c-logo:not(.c-logo--vertical):not(.c-logo--inside) .c-logo__image {
    width: 210px;
    height: 48px;
  }
  .is-header-active .c-logo:not(.c-logo--vertical):not(.c-logo--inside) {
    overflow: hidden;
  }
}
@media all and (min-width: 768px) {
  .m-header--inside .c-logo:not(.c-logo--vertical):not(.c-logo--inside) {
    width: 210px;
    height: 48px;
  }
  .m-header--inside .c-logo:not(.c-logo--vertical):not(.c-logo--inside) .c-logo__image {
    width: 210px;
    height: 48px;
  }
  .is-header-active .m-header--inside .c-logo:not(.c-logo--vertical):not(.c-logo--inside) {
    overflow: hidden;
  }
}
.c-logo__image {
  display: block;
}
.c-logo.c-logo--vertical {
  width: 148px;
  height: auto;
}
.c-logo.c-logo--vertical .c-logo__image {
  width: 100%;
  height: auto;
}
.c-logo.c-logo--inside {
  width: 45px;
  height: 43px;
}
.c-logo.c-logo--inside .c-logo__image {
  width: 100%;
  height: auto;
}

.c-nav {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
}
.c-nav__item {
  font: 600 10px "avenir-bold";
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 0 2px;
  border-bottom: 2px solid transparent;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media all and (min-width: 300px) and (max-width: 1023px) {
  .c-nav__item {
    letter-spacing: normal;
  }
}
.c-nav__item [class^=a-icon-], .c-nav__item [class*=" a-icon-"] {
  font-weight: 600;
}
.c-nav__item [class^=a-icon-]:first-child, .c-nav__item [class*=" a-icon-"]:first-child {
  margin-right: 6px;
}
.c-nav__item [class^=a-icon-]:last-child, .c-nav__item [class*=" a-icon-"]:last-child {
  margin-left: 6px;
}
.c-nav__item[data-scroll-anchor].is-active {
  color: #EF5355;
  border-bottom-color: #EF5355;
}
@media all and (min-width: 1024px) {
  .c-nav__item:hover {
    color: #EF5355;
  }
}
.c-nav.c-nav--header {
  padding-left: 65px;
  justify-content: flex-start;
  margin-left: -10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s 0s;
}
.c-nav.c-nav--header .c-nav__item:not(:last-child) {
  margin-right: 45px;
}
@media all and (min-width: 1024px) and (max-width: 1199px) {
  .c-nav.c-nav--header .c-nav__item:not(:last-child) {
    margin-right: 15px;
  }
}
.is-header-active .c-nav.c-nav--header {
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.8s 0s;
}
@media all and (min-width: 1024px) and (max-width: 1199px) {
  .c-nav.c-nav--header {
    padding-left: 35px;
  }
}
.c-nav.c-nav--header-inside {
  padding-left: 70px;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-nav.c-nav--header-inside {
    padding-left: 10px;
  }
}
@media all and (min-width: 768px) and (max-width: 1023px) {
  .c-nav.c-nav--header-inside {
    padding-left: 30px;
  }
}
.c-nav.c-nav--footer {
  justify-content: space-between;
  width: 100%;
  height: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
@media all and (min-width: 300px) and (max-width: 1023px) {
  .c-nav.c-nav--footer {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden;
  }
}
@media all and (min-width: 1024px) {
  .c-nav.c-nav--footer .c-nav__item {
    transition: opacity 0.3s;
  }
  .c-nav.c-nav--footer .c-nav__item:hover {
    color: #FFFFFF;
    opacity: 0.85;
  }
}
.c-nav.c-nav--only-active-state {
  display: none;
}
.is-header-active .c-nav.c-nav--only-active-state {
  display: flex;
}

.c-social {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content:center;
}
.c-social__item {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
}
.c-social__item:not(:last-child) {
  margin-right: 10px;
}
@media all and (min-width: 1024px) {
  .c-social__item {
    transition: all 0.3s;
  }
  .c-social__item:hover {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    color: #212848;
  }
}
@media all and (min-width: 300px) and (max-width: 1023px) {
  .c-social__item {
    width: 32px;
    height: 32px;
  }
}
.c-social [class^=a-icon-], .c-social [class*=" a-icon-"] {
  color: inherit;
  font-size: 10px;
}
@media all and (min-width: 300px) and (max-width: 1023px) {
  .c-social [class^=a-icon-], .c-social [class*=" a-icon-"] {
    font-size: 16px;
  }
}

.c-social-button {
  height: 44px;
  width: auto;
  padding: 0 48px 0 20px;
  border-radius: 22px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex: none;
  position: relative;
  cursor: pointer;
  user-select: none;
  font: 600 12px "avenir-bold";
  text-transform: uppercase;
  letter-spacing: normal;
  line-height: 44px;
}
@media all and (min-width: 300px) and (max-width: 1023px) {
  .c-social-button {
    letter-spacing: normal;
  }
}
.c-social-button [class^=a-icon-], .c-social-button [class*=" a-icon-"] {
  margin-right: 12px;
}
.c-social-button span {
  white-space: nowrap;
}
.c-social-button.c-social-button--hover-off {
  pointer-events: none;
}
.c-social-button:not(.c-social-button--outline) {
  transition: opacity 0.3s, transform 0.2s;
  color: #FFFFFF;
}
@media all and (min-width: 1024px) {
  .c-social-button:not(.c-social-button--outline):hover {
    opacity: 0.8;
  }
}
.c-social-button:not(.c-social-button--outline).c-social-button--facebook {
  background-color: #3A5693;
}
.c-social-button:not(.c-social-button--outline).c-social-button--facebook [class^=a-icon-], .c-social-button:not(.c-social-button--outline).c-social-button--facebook [class*=" a-icon-"] {
  font-size: 16px;
}
.c-social-button:not(.c-social-button--outline).c-social-button--twitter {
  background-color: #0372B1;
}
.c-social-button:not(.c-social-button--outline).c-social-button--twitter [class^=a-icon-], .c-social-button:not(.c-social-button--outline).c-social-button--twitter [class*=" a-icon-"] {
  font-size: 18px;
  transform: translateY(2px);
}
.c-social-button.c-social-button--outline {
  border: 2px solid transparent;
  transition: background-color 0.3s, color 0.3s, transform 0.2s;
  line-height: 42px;
}
.c-social-button.c-social-button--outline.c-social-button--facebook {
  background-color: transparent;
  border-color: #3A5693;
  color: #3A5693;
}
.c-social-button.c-social-button--outline.c-social-button--facebook [class^=a-icon-], .c-social-button.c-social-button--outline.c-social-button--facebook [class*=" a-icon-"] {
  font-size: 16px;
}
@media all and (min-width: 1024px) {
  .c-social-button.c-social-button--outline.c-social-button--facebook:hover {
    color: #FFFFFF;
    background-color: #3A5693;
  }
}
.c-social-button.c-social-button--outline.c-social-button--linkedin {
  background-color: transparent;
  border-color: #0372B1;
  color: #0372B1;
}
.c-social-button.c-social-button--outline.c-social-button--linkedin [class^=a-icon-], .c-social-button.c-social-button--outline.c-social-button--linkedin [class*=" a-icon-"] {
  font-size: 16px;
}
@media all and (min-width: 1024px) {
  .c-social-button.c-social-button--outline.c-social-button--linkedin:hover {
    color: #FFFFFF;
    background-color: #0372B1;
  }
}
.c-social-button:active {
  transform: scale(0.97);
}
.c-social-button.is-pending {
  position: relative;
}
.c-social-button.is-pending:before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-bottom-color: transparent;
  border-radius: 50%;
  position: absolute;
  right: 10px;
  top: calc(50% - 8px);
  animation-name: spinner;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-fill-mode: both;
}
.c-social-button.is-events-off {
  opacity: 0.5;
  pointer-events: none;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-social-button span {
    flex: 1;
    text-align: center;
  }
}

.c-lang-selector {
  position: relative;
}
.c-lang-selector:not(.is-active) .c-lang-selector__list {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.c-lang-selector.is-active .a-icon-arrow-down {
  transform: rotate3d(1, 0, 0, 180deg);
}
.c-lang-selector__list {
  width: 100%;
  min-width: 80px;
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 25px;
}
.c-lang-selector__list .c-lang-selector__item {
  transform: translateY(15px);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}
.is-active .c-lang-selector__list .c-lang-selector__item {
  transform: translateY(0);
  opacity: 1;
}
.c-lang-selector__item {
  display: flex;
  align-items: center;
  width: 100%;
  height: 24px;
  font: 600 12px "avenir-bold";
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FFFFFF;
  padding: 0 10px 0 15px;
  cursor: pointer;
  user-select: none;
}
@media all and (min-width: 300px) and (max-width: 1023px) {
  .c-lang-selector__item {
    letter-spacing: normal;
  }
}
@media all and (min-width: 1024px) {
  .c-lang-selector__item {
    transition: color 0.3s;
  }
  .c-lang-selector__item:hover {
    color: #EF5355 !important;
  }
}
.c-lang-selector__item--current {
  width: auto;
  height: 20px;
}
.c-lang-selector [class^=a-icon-], .c-lang-selector [class*=" a-icon-"] {
  color: inherit;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center;
  transition: transform 0.4s;
}

.c-play {
  margin-top: 50px;
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-play {
    margin-top: 0;
    width: 80px;
  }
}
.c-play__icon {
  width: 82px;
  height: 82px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: opacity 0.3s;
}
.c-play__icon svg {
  width: 23px;
  height: 32px;
  margin-left: 4px;
}
.c-play__icon svg polygon {
  transition: fill 0.4s;
  fill: rgba(0, 0, 0, 0);
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-play__icon svg {
    height: 22px;
    width: 16px;
  }
}
.c-play__icon:before, .c-play__icon:after {
  content: "";
  width: 82px;
  height: 82px;
  border-radius: 50%;
  position: absolute;
  left: calc(50% - 41px);
  top: calc(50% - 41px);
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.75);
  opacity: 0;
  animation-name: pulse;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}
.c-play__icon:before {
  animation-delay: 0.6s;
}
.c-play__icon:after {
  animation-delay: 1.2s;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-play__icon {
    width: 56px;
    height: 56px;
  }
  .c-play__icon:before, .c-play__icon:after {
    width: 56px;
    height: 56px;
    left: calc(50% - 28px);
    top: calc(50% - 28px);
  }
}
.c-play__title {
  text-transform: uppercase;
  letter-spacing: normal;
  margin-top: 25px;
}
@media all and (min-width: 300px) and (max-width: 1023px) {
  .c-play__title {
    letter-spacing: normal;
  }
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-play__title {
    text-align: center;
    margin-top: 10px;
  }
}
@media all and (min-width: 1025px) {
  .c-play:hover .c-play__icon {
    opacity: 1;
  }
  .c-play:hover svg polygon {
    fill: #FFFFFF;
  }
}

.c-welcome-player {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.c-welcome-player:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(33, 40, 72, 0.7);
}
.c-welcome-player .c-welcome-player__poster {
  display: none;
}
@media all and (min-width: 300px) and (max-width: 1023px) {
  .c-welcome-player .c-welcome-player__video {
    display: none;
  }
}
@media all and (min-width: 300px) and (max-width: 1023px) and (min-width: 300px) and (max-width: 767px) {
  .c-welcome-player .c-welcome-player__poster.c-welcome-player__poster--mobile {
    display: block;
  }
}
@media all and (min-width: 300px) and (max-width: 1023px) and (min-width: 300px) {
  .c-welcome-player .c-welcome-player__poster.c-welcome-player__poster--desktop {
    display: block;
  }
}
.c-welcome-player .c-welcome-player__poster {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
}
.c-welcome-player .c-welcome-player__video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.c-video-modal {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  background-color: rgba(33, 40, 72, 0.7);
  display: none;
}
.c-video-modal:before {
  content: "";
  width: 160px;
  height: 160px;
  display: block;
  border: 8px solid rgba(151, 151, 151, 0.25);
  border-right-color: #212848;
  position: absolute;
  left: calc(50% - 80px);
  top: calc(50% - 80px);
  z-index: 1;
  border-radius: 50%;
  animation-name: spinner;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-fill-mode: both;
}
.c-video-modal.is-active {
  display: block;
}
.c-video-modal iframe {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 5;
}
.c-video-modal__close {
  width: 48px;
  height: 48px;
  position: absolute;
  cursor: pointer;
  z-index: 99;
  right: 12px;
  top: 12px;
  background-image: url(img/icons/icon_close_white.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center;
}

.c-scroll-indicator {
  width: 2px;
  height: 78px;
  position: absolute;
  left: calc(50% - 1px);
  bottom: 42px;
  z-index: 5;
  background-color: #FFFFFF;
  transform-origin: center top;
  animation-name: snake;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  animation-delay: 0s;
}

.c-team-slider {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.c-team-slider__container {
  width: 100%;
  height: auto;
}
.c-team-slider .swiper-slide {
  height: auto;
  width: auto;
}
@media all and (min-width: 1024px) {
  .c-team-slider .swiper-slide {
    background: grey;
  }
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-team-slider {
    width: calc(100% + 48px);
    margin-left: -24px;
  }
  .c-team-slider .c-pagination {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media all and (min-width: 300px) and (max-width: 1023px) {
  .c-team-slider__pagination.c-pagination {
    margin-top: 0;
  }
}

.c-partner-slider {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.c-partner-slider__container {
  width: 100%;
  height: auto;
}
.c-partner-slider .swiper-slide {
  height: 75px;
}
@media all and (min-width: 1024px) {
  .c-partner-slider .swiper-slide:hover .c-partner-slider__logo {
    filter: grayscale(0);
    opacity: 1;
  }
}
.c-partner-slider__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  will-change: filter, opacity;
  transition: filter 0.3s, opacity 0.3s;
  filter: grayscale(1);
  opacity: 0.5;
}
.no-objectfit .c-partner-slider__logo, .no-object-fit .c-partner-slider__logo {
  width: auto;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-partner-slider {
    width: calc(100% + 48px);
    margin-left: -24px;
    padding-bottom: 60px;
  }
  .c-partner-slider .c-pagination {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.c-review-slider {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.c-review-slider__container {
  width: 100%;
  height: auto;
}
.c-review-slider .swiper-slide {
  height: auto;
  width: auto;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-review-slider {
    width: calc(100% + 48px);
    margin-left: -24px;
    margin-bottom: 86px;
  }
  .c-review-slider .c-pagination {
    padding-left: 24px;
    padding-right: 24px;
  }
  .c-review-slider .swiper-slide {
    padding: 0 24px;
  }
}

.c-image-slider {
  width: 100%;
  overflow: hidden;
  margin: 50px auto 90px;
}
.c-image-slider__container {
  overflow: visible;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-image-slider__container {
    width: calc(100% - 48px);
  }
}
@media all and (min-width: 768px) and (max-width: 1199px) {
  .c-image-slider__container {
    width: calc(100% - 90px);
  }
}
@media all and (min-width: 1200px) {
  .c-image-slider__container {
    width: 58%;
  }
}
@media all and (min-width: 1600px) {
  .c-image-slider__container {
    width: 55%;
  }
}
.c-image-slider__pagination {
  padding-left: 160px;
  padding-right: 160px;
}
.c-image-slider .swiper-slide {
  transition: height 0.5s;
}
.c-image-slider .swiper-slide {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
}
@media all and (min-width: 1024px) {
  .c-image-slider .swiper-slide:hover {
    opacity: 0.85;
  }
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-image-slider {
    width: calc(100% + 48px);
    margin-left: -24px;
    margin-bottom: 30px;
  }
  .c-image-slider__pagination {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media all and (min-width: 768px) and (max-width: 1023px) {
  .c-image-slider__pagination {
    padding-left: 45px;
    padding-right: 45px;
  }
}

.c-form-subscribe {
  width: 100%;
  height: auto;
}
.c-form-subscribe.is-preparing {
  opacity: 0;
}
.c-form-subscribe__wrapper {
  width: 100%;
  height: 44px;
  position: relative;
}
.c-form-subscribe__input {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  border: 1px solid #FFFFFF;
  font: 400 10px "avenir-regular";
  text-transform: uppercase;
  letter-spacing: normal;
  color: #FFFFFF;
  padding: 0 50px 0 25px;
}
@media all and (min-width: 300px) and (max-width: 1023px) {
  .c-form-subscribe__input {
    letter-spacing: normal;
  }
}
.has-errors .c-form-subscribe__input {
  border-color: #EF5355;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-form-subscribe__input {
    font-size: 16px;
    text-transform: none;
    letter-spacing: normal;
  }
}
.c-form-subscribe__button {
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background-color: #EF5355;
  position: absolute;
  right: 4px;
  top: 4px;
  white-space: nowrap;
  transition: background-color 0.3s;
}
.c-form-subscribe__button [class^=a-icon-], .c-form-subscribe__button [class*=" a-icon-"] {
  color: #FFFFFF;
  font-size: 14px;
}
@media all and (min-width: 1024px) {
  .c-form-subscribe__button:hover {
    background-color: rgba(239, 83, 85, 0.8);
  }
}
.c-form-subscribe__button[disabled] {
  opacity: 0.3;
  cursor: progress;
}
.c-form-subscribe.is-back-process {
  pointer-events: none;
}
.c-form-subscribe.is-back-process .c-over__back {
  background-color: rgba(239, 83, 85, 0.8) !important;
}
.c-form-subscribe.is-back-process .c-form-subscribe__input,
.c-form-subscribe.is-back-process .c-form-subscribe__button {
  display: none;
}
.c-form-subscribe.is-next-process {
  pointer-events: none;
}
.c-form-subscribe__errors {
  margin-top: 5px;
  padding-left: 25px;
  display: none;
}
.has-errors .c-form-subscribe__errors.c-form-subscribe__errors--validation {
  display: block;
}
.c-form-subscribe__errors.is-server-error {
  display: block;
}

.c-form {
  padding-top: 44px;
  display: block;
}
.c-form__title {
  margin-bottom: 20px;
}
.c-form__field {
  width: 100%;
  position: relative;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-form__field {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
.c-form__tel-prefix {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  padding-top: 4px;
  width: 31px;
  transition: opacity 0.3s;
  font: 400 16px "avenir-regular";
  color: #212848;
}
.c-form__row {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}
.c-form__row:not(:last-child) {
  margin-bottom: 30px;
}
.c-form__row > * {
  flex: none;
}
@media all and (min-width: 768px) {
  .c-form__row > *:not(:last-of-type) {
    margin-right: 20px;
  }
}
.c-form__row.is-hidden[data-form-error] {
  display: none;
}
@media all and (min-width: 768px) {
  .c-form__row.c-form__row--three .c-form__field, .c-form__row.c-form__row--three-reverse .c-form__field {
    width: calc(33.33% - 16px);
  }
  .c-form__row.c-form__row--three .c-form__field:not(:last-of-type), .c-form__row.c-form__row--three-reverse .c-form__field:not(:last-of-type) {
    margin-right: 24px;
  }
}
@media all and (min-width: 768px) {
  .c-form__row.c-form__row--two .c-form__field {
    width: calc(50% - 12px);
  }
  .c-form__row.c-form__row--two .c-form__field:not(:last-of-type) {
    margin-right: 24px;
  }
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-form__row {
    flex-direction: column;
    align-items: flex-start;
  }
  .c-form__row > .c-form__field:not(:last-of-type) {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.c-form .c-form__tip {
  opacity: 0;
  position: absolute;
  left: 0;
  pointer-events: none;
  bottom: -24px;
}
.c-form .c-form__tip.c-form__tip--top {
  top: 49px;
  bottom: auto;
}
.c-form .c-form__label {
  position: absolute;
  left: 20px;
  top: 0;
  width: calc(100% - 30px);
  height: 100%;
  pointer-events: none;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  transform-origin: 0 0;
  transition: width 0.3s, transform 0.3s;
  font: 400 16px "avenir-regular";
  color: #4A4A4A;
  line-height: 48px;
}
.c-form .is-touched.is-invalid ~ .c-form__tip {
  opacity: 1;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-form .c-input {
    text-overflow: ellipsis;
  }
}

.c-checkbox {
  width: auto;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  position: relative;
  cursor: pointer;
  user-select: none;
}
.c-checkbox__native {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.c-checkbox__native:checked ~ .c-checkbox__custom:before {
  opacity: 1;
}
.c-checkbox__custom {
  width: 16px;
  height: 16px;
  flex: none;
  border: 1px solid rgba(151, 151, 151, 0.25);
  border-radius: 2px;
}
.c-checkbox__custom:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-size: 11px 8px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  background-image: url(img/icons/icon_checkbox-true.svg);
  transition: opacity 0.1s;
  opacity: 0;
}
.c-checkbox__label {
  font: 400 14px "avenir-regular";
  color: #4C4C4E;
  padding-left: 16px;
  line-height: 16px;
}
.c-checkbox__label a {
  text-decoration: underline;
}

.c-input {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(151, 151, 151, 0.25);
  border-radius: 10px;
  padding: 5px 20px 0;
  transition: border-color 0.2s;
  font: 400 16px "avenir-regular";
  color: #212848;
}
.c-input:focus {
  border-color: #212848;
}
.c-input[name=phone] {
  padding-left: 30px;
}
.c-input[name=phone] + .c-form__tel-prefix {
  opacity: 0;
}
.c-input[name=phone]:focus + .c-form__tel-prefix, .c-input[name=phone].is-dirty + .c-form__tel-prefix {
  opacity: 1;
}
.c-input.is-touched.is-invalid {
  border-color: #EF5355;
}
.c-input:focus ~ .c-form__label, .c-input.is-dirty ~ .c-form__label {
  transform: scale(0.6) translateY(-8px);
  width: calc(160% - 50px);
}

.c-over {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 22px;
  transform-origin: center;
  overflow: hidden;
  z-index: 5;
}
.c-over.c-over--intro .c-over__back {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #EF5355;
  transition: background-color 0.3s;
  z-index: 1;
  transform-origin: center;
  transform: scaleX(0.9);
  border-radius: 22px;
}
.c-over.c-over--intro .c-over__label {
  color: #FFFFFF;
}
@media all and (min-width: 1024px) {
  .c-over.c-over--intro:hover .c-over__back {
    background-color: rgba(239, 83, 85, 0.8);
  }
}
.c-over .c-over__label {
  font: 600 12px "avenir-bold";
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  user-select: none;
  line-height: 44px;
  text-align: center;
  position: relative;
  z-index: 5;
}
@media all and (min-width: 300px) and (max-width: 1023px) {
  .c-over .c-over__label {
    letter-spacing: normal;
  }
}
@media all and (min-width: 300px) and (max-width: 1023px) {
  .c-over .c-over__label {
    font-size: 10px;
  }
}
.c-over.c-over--error, .c-over.c-over--success {
  width: 100%;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.c-over.c-over--error .c-over__label, .c-over.c-over--success .c-over__label {
  width: 100%;
  height: 100%;
  color: #212848;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 99;
  transform: scale(0.8);
  transition: transform 0.3s;
  transform-origin: center;
}
.c-over.c-over--error .c-over__back, .c-over.c-over--success .c-over__back {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0.8);
  background-color: #FFFFFF;
  transition: transform 0.1s;
  transform-origin: center;
  border-radius: 22px;
}
.c-over.c-over--error.is-active, .c-over.c-over--success.is-active {
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
  user-select: none;
}
.c-over.c-over--error.is-active .c-over__back, .c-over.c-over--success.is-active .c-over__back {
  transform: scale(1);
}
.c-over.c-over--error.is-active .c-over__label, .c-over.c-over--success.is-active .c-over__label {
  transform: scale(1);
}
@media all and (min-width: 1024px) {
  .c-over.c-over--error.is-active:hover .c-over__back, .c-over.c-over--success.is-active:hover .c-over__back {
    background-color: #f2f2f2;
  }
}

.c-floors {
  width: 100%;
  height: auto;
  margin-top: 25px;
  position: relative;
}
.c-floors__plan {
  width: 100%;
  height: auto;
  min-height: 10px;
}
@media all and (min-width: 1024px) {
  .c-floors__plan.is-calculate {
    width: 1014px;
    height: 585px;
  }
}
@media all and (min-width: 1024px) {
  .c-floors__plan {
    /*min-width: 1014px;
    min-height: 585px;*/
  }
}
.c-floors__minimap {
  width: 30%;
  height: auto;
  position: absolute;
  bottom: 0;
  z-index: 99;
  display: block;
}
.c-floors__minimap--right {
  right: 0;
}
.c-floors__minimap--left {
  left: 0;
}
.c-floors__minimap img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 10px;
}
.c-floors__item {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
}
.c-floors__item img, .c-floors__item svg {
  transform: translateY(-40px);
  opacity: 0;
  transition: all 0.5s;
}
.c-floors__item.swiper-slide-active img, .c-floors__item.swiper-slide-active svg {
  transform: translateY(0);
  opacity: 1;
}

.c-floor-status {
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}
.c-floor-status--active .c-floor-status__icon {
  background-image: url(img/icons/icon-checked.svg);
}
.c-floor-status--unactive .c-floor-status__icon {
  background-image: url(img/icons/icon-unchecked.svg);
}
.c-floor-status__icon {
  width: 30px;
  height: 30px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
}
.c-floor-status__label {
  padding-left: 20px;
  font-size: 19px;
  color: #212848;
}
.c-floor-status__row {
  display: flex;
  align-items: center;
  flex: none;
}
.c-floor-status__period {
  margin-top: 10px;
}

.c-floor-control {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.c-floor-control__button {
  display: flex;
  flex-direction: row;
  transition: color 0.3s;
 /* margin: 15px 0;*/
  margin: 3px 0;
  color: rgba(151, 151, 151, 0.7);
}
.c-floor-control__button:hover {
  color: #212848;
}
.c-floor-control__button.is-active {
  color: #EF5355;
}
.c-floor-control__number {
  font: 600 22px "avenir-bold";
  color: inherit;
  width: 20px;
  flex: none;
  display: block;
}
.c-floor-control__label {
  font: 600 22px "avenir-bold";
  font: 600 20px "avenir-bold";
  color: inherit;
}

@media (max-width:1399px) {
	.c-floor-control__label {
	  font-size:16px;
	}
}

.c-floor-list {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.c-floor-list:not(.is-active) {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.c-floor-list__item {
  position: relative;
  padding: 10px 30px 10px 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.c-floor-list__item:not(:last-child) {
  border-bottom: 1px solid rgba(151, 151, 151, 0.25);
}
.c-floor-list__item:after {
  content: "";
  width: 15px;
  height: 30px;
  display: block;
  position: absolute;
  right: 0;
  top: 10px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  background-image: url(img/icons/arrow-pointing-to-right.svg);
}
.c-floor-list__label {
  padding-right: 15px;
}
.c-floor-list__logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
  object-position: center;
  flex: none;
}

.c-floor-group {
  cursor: pointer;
}
.c-floor-group__shape {
  opacity: 0;
}
.c-floor-group__icon-control {
  transform-origin: 20px 46px;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-floor-group__icon-control {
    transform: scale(1.5);
  }
}
.c-floor-group__label {
  opacity: 0;
  stroke: rgba(0, 0, 0, 0.1);
  stroke-width: 0.5px;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.1));
  pointer-events: none;
}
.c-floor-group__label text {
  font-size: 12px;
  font-family: "avenir-regular";
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #4C4C4E;
  dominant-baseline: middle;
}
.c-floor-group__label text.is-small {
  font-size: 10px;
}
@media all and (min-width: 1025px) {
  .c-floor-group:hover .c-floor-group__shape {
    opacity: 0.7;
    mix-blend-mode: multiply;
  }
}

@media all and (min-width: 1025px) {
  #c-floors__active .c-floor-group__shape {
    visibility: hidden;
  }
  #c-floors__active .c-floor-group__icon,
#c-floors__active .c-floor-group__label {
    pointer-events: none;
  }
  #c-floors__active .c-floor-group__label {
    opacity: 1;
  }
}

.c-room {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
}
.c-room__title {
  font: 600 22px "avenir-bold";
  color: #212848;
}
.c-room__head {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 85px 10% 40px;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-room__head {
    padding: 85px 5% 40px;
  }
}
.c-room hr {
  border: none;
  border-bottom: 1px solid rgba(151, 151, 151, 0.25);
  width: 80%;
  margin-left: 10%;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-room hr {
    width: 90%;
    margin-left: 5%;
  }
}
.c-room__image {
  width: 100%;
  height: auto;
  display: block;
  min-height: 10px;
}
.c-room__body {
  padding: 40px 10%;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-room__body {
    padding: 40px 5%;
  }
}
.c-room__location {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  margin-top: 16px;
}
.c-room__location:before {
  content: "";
  width: 15px;
  height: 26px;
  display: block;
  flex: none;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  background-image: url(img/icons/icon-map-pin.svg);
  margin-right: 17px;
  margin-left: 3px;
}
.c-room__status {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  margin-top: 16px;
}
.c-room__status .c-room__status-icon {
  content: "";
  width: 21px;
  height: 21px;
  display: block;
  flex: none;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  margin-right: 14px;
}
.c-room__status--finished .c-room__status-icon {
  background-image: url(img/icons/icon-checked.svg);
}
.c-room__status--progress .c-room__status-icon {
  background-image: url(img/icons/icon-unchecked.svg);
}

.is-preparing {
  opacity: 0 !important;
}

.c-pagination {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  margin-top: 30px;
  pointer-events: none;
}
.c-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 0.2;
  background: #212848;
  flex: none;
  pointer-events: auto;
}
.c-pagination .swiper-pagination-bullet:not(:last-child) {
  margin-right: 18px;
}
@media all and (min-width: 1024px) {
  .c-pagination .swiper-pagination-bullet {
    transition: opacity 0.3s;
  }
  .c-pagination .swiper-pagination-bullet:hover {
    opacity: 0.8;
  }
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-pagination .swiper-pagination-bullet:not(:last-child) {
    margin-right: 12px;
  }
}
.c-pagination .swiper-pagination-bullet:only-child {
  display: none;
}
.c-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
.c-pagination.c-pagination--alt {
  justify-content: center;
}
.c-pagination.c-pagination--alt .swiper-pagination-bullet {
  background: #FFFFFF;
  opacity: 0.8;
}
@media all and (min-width: 1024px) {
  .c-pagination.c-pagination--alt .swiper-pagination-bullet {
    transition: opacity 0.3s, background 0.3s;
  }
  .c-pagination.c-pagination--alt .swiper-pagination-bullet:hover {
    opacity: 1;
    background: #EF5355;
  }
}
.c-pagination.c-pagination--alt .swiper-pagination-bullet-active {
  opacity: 1;
  background: #EF5355;
}

.c-pager {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex: none;
}
.c-pager > * {
  margin: 0 10px;
}
.c-pager__direction {
  color: #212848;
  font-size: 16px;
  font-weight: 900;
  transition: color 0.3s;
}
@media all and (min-width: 1024px) {
  .c-pager__direction:hover {
    color: #EF5355;
  }
}
.c-pager__direction.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.c-pager__button {
  width: 50px;
  height: 50px;
  color: #212848;
  border: 2px solid #212848;
  border-radius: 50%;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
  font: 600 12px "avenir-bold";
  line-height: 46px;
}
@media all and (min-width: 1024px) {
  .c-pager__button:hover {
    color: #FFFFFF;
    background-color: #212848;
  }
}
.c-pager__button.is-active {
  color: #FFFFFF;
  background-color: #212848;
}
.c-pager__skip {
  width: auto;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  color: #4C4C4E;
  letter-spacing: 1px;
  pointer-events: none;
}

.c-faq {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.c-faq__item {
  border-bottom: 1px solid rgba(151, 151, 151, 0.25);
  display: flex;
  flex-direction: column;
}
.c-faq__item:first-child {
  border-top: 1px solid rgba(151, 151, 151, 0.25);
}
.c-faq__item-head {
  position: relative;
  padding: 30px 60px 30px 0;
  cursor: pointer;
  user-select: none;
  font-weight: 400 !important;
}
.c-faq__item-head [class^=a-text-], .c-faq__item-head [class*=" a-text-"] {
  line-height: 1.5;
}
@media all and (min-width: 1024px) {
  .c-faq__item-head:hover [class^=a-text-], .c-faq__item-head:hover [class*=" a-text-"] {
    color: #EF5355;
  }
  .c-faq__item-head:hover .c-faq__close {
    color: #EF5355;
  }
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-faq__item-head {
    padding: 15px 60px 15px 0;
  }
}
.c-faq__item-body {
  padding: 15px 0 35px;
}
.c-faq__item-body .m-article {
  max-width: 720px;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.6s, transform 0.6s;
}
.c-faq__close {
  width: 50px;
  height: 50px;
  padding: 10px;
  flex: none;
  position: absolute;
  right: 0;
  top: 15px;
  color: #212848;
  transition: color 0.3s, transform 0.4s;
}
.c-faq__close:before {
  width: 30px;
  height: 2px;
  left: calc(50% - 15px);
  top: calc(50% - 1px);
}
.c-faq__close:after {
  height: 30px;
  width: 2px;
  top: calc(50% - 15px);
  left: calc(50% - 1px);
}
.c-faq__close:before, .c-faq__close:after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 1px;
  transform-origin: center;
  transition: background-color 0.3s, transform 0.5s;
  background-color: currentColor;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-faq__close {
    top: 5px;
  }
  .c-faq__close:before {
    width: 26px;
    left: calc(50% - 13px);
  }
  .c-faq__close:after {
    height: 26px;
    top: calc(50% - 13px);
  }
}
.c-faq .c-faq__item.is-active .c-faq__close {
  transform: rotate(-90deg);
}
.c-faq .c-faq__item.is-active .c-faq__close:before {
  transform: rotate(-90deg);
}
.c-faq .c-faq__item.is-active .c-faq__item-body .m-article {
  transform: translateY(0);
  opacity: 1;
}
.c-faq .c-faq__item:not(.is-active) .c-faq__item-body {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.c-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  border: 1px solid rgba(151, 151, 151, 0.25);
  height: 100%;
  transition: all 0.2s ease;
  box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.1), -2px 4px 5px rgba(0, 0, 0, 0.1);
}
.c-card__content {
  padding: 30px 40px;
  height: 100%;
  transition: background-color 0.3s;
}
.c-card__content > *:not(:last-child) {
  margin-bottom: 15px;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-card__content {
    padding: 30px 20px;
  }
}
.c-card__image {
  background: rgba(151, 151, 151, 0.25);
  flex: none;
}
@media all and (min-width: 1024px) {
  .c-card:hover {
    transform: translateY(-3px);
    box-shadow: 2px 9px 50px rgba(0, 0, 0, 0.1), -2px 9px 60px rgba(0, 0, 0, 0.1);
  }
}
.plan-group > polygon,
.plan-group > path {
  transition: opacity 0.3s;
  opacity: 0;
}
.plan-group:hover {
  cursor: pointer;
}
.plan-group:hover > polygon,
.plan-group:hover > path {
  opacity: 0.7;
  mix-blend-mode: multiply;
}
.plan-group:hover .bullet-group__info {
  opacity: 1;
}

.bullet-group__point text {
  font-family: "avenir-bold";
}
.bullet-group__info {
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.bullet-group__info tspan {
  font-family: "avenir-regular";
}
.bullet-group__info tspan:first-child {
  font-family: "avenir-demi";
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .bullet-group__info {
    transform: scale(1.45);
    transform-origin: -133px 70px;
  }
}
.c-plan {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1440px;
  margin: auto;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-plan {
    position: relative;
    overflow: hidden;
    height: 340px;
    width: calc(100% + 48px);
    margin-left: -24px;
  }
}
.c-plan:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  pointer-events: none;
  background-image: linear-gradient(to bottom, white, rgba(255, 255, 255, 0)), linear-gradient(to left, white, rgba(255, 255, 255, 0)), linear-gradient(to top, white, rgba(255, 255, 255, 0)), linear-gradient(to right, white, rgba(255, 255, 255, 0));
  background-size: 100% 100px, 50px 100%, 100% 50px, 50px 100%;
  background-position: top left, right top, bottom left, left top;
  background-repeat: no-repeat;
  background-color: transparent;
}
.c-plan__image {
  width: 100%;
  height: auto;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-plan__image {
    width: 500px;
    height: 340px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
.no-objectfit .c-plan, .no-object-fit .c-plan {
  overflow: hidden;
}
.no-objectfit .c-plan .c-plan__image, .no-object-fit .c-plan .c-plan__image {
  height: 600px;
}

.c-mobile-nav {
  width: 100%;
  height: 100vh;
  background-color: #212848;
  display: flex;
  flex-direction: column;
  position: fixed;
  left: -200%;
  top: 0;
  z-index: 999;
}
@media all and (min-width: 300px) and (max-width: 1023px) {
  .c-mobile-nav.is-mobile-nav-active {
    left: 0;
  }
  .c-mobile-nav.is-mobile-nav-active .c-mobile-nav__close {
    opacity: 1;
    transition: opacity 0.3s 0s;
  }
}
.c-mobile-nav > * {
  flex: none;
}
.c-mobile-nav__wrapper {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 35px 24px 100px;
}
@media all and (min-width: 768px) and (max-width: 1023px) {
  .c-mobile-nav__wrapper {
    padding-top: 100px;
  }
}
.c-mobile-nav__close {
  width: 48px;
  height: 48px;
  color: #FFFFFF;
  position: absolute;
  right: 13px;
  top: 14px;
  font-size: 24px;
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0s 0.2s;
}
@media all and (min-width: 768px) and (max-width: 1023px) {
  .c-mobile-nav__close {
    right: 34px;
  }
}
.c-mobile-nav__list {
  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
}
.c-mobile-nav__list > a,
.c-mobile-nav__list > .submenu > a {
  height: 40px;
  display: flex;
  align-items: center;
}
@media all and (min-width: 300px) and (max-width: 767px) and (orientation: landscape) {
  .c-mobile-nav__list > * {
    justify-content: center;
    text-align: center;
  }
}
@media all and (min-width: 768px) and (max-width: 1023px) {
  .c-mobile-nav__list > * {
    justify-content: center;
    text-align: center;
  }
}
.c-mobile-nav__section {
  display: flex;
  justify-content: center;
  margin-bottom: 35px;
}
.c-mobile-nav .c-social__item {
  margin: 0 15px;
}

.c-mobile-lang {
  display: flex;
  flex-direction: row;
}
.c-mobile-lang__item {
  font: 500 16px "avenir-demi";
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FFFFFF;
  padding: 0 12px;
}
@media all and (min-width: 300px) and (max-width: 1023px) {
  .c-mobile-lang__item {
    letter-spacing: normal;
  }
}
.c-mobile-lang__item:not(:last-child) {
  border-right: 1px solid #FFFFFF;
}
.c-mobile-lang__item.is-active {
  color: #EF5355;
}

.c-burger {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 26px;
  margin-right: -11px;
}
.is-header-active .c-burger {
  color: #212848;
}

.c-member {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
@media all and (min-width: 300px) and (max-width: 1023px) {
  .c-member {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
  }
}
.c-member__info {
  position: relative;
  z-index: 5;
  padding: 25px 20px;
  max-width: 340px;
}

.board .c-member__info {
  max-width: 80%;
}

@media all and (min-width: 1024px) {
  .c-member__info {
    min-height: 200px;
    height: 100%;
    transition: transform 0.3s;
    transform: translate3d(0, calc(100% - 85px), 0);
  }
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-member__info {
    max-width: 360px;
  }
}
.no-objectfit .c-member__info, .no-object-fit .c-member__info {
  transform: translate3d(0, 65%, 0);
}
@media all and (min-width: 1024px) {
  .c-member__picture {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
  }
}
@media all and (min-width: 300px) and (max-width: 1023px) {
  .c-member__picture {
    width: 100%;
    height: 0;
    padding-bottom: 65%;
    position: relative;
  }
  .c-member__picture img {
    position: absolute;
    left: 0;
    top: 0;
  }
}
@supports (object-fit: cover) {
  .c-member__picture img {
    width: 100%;
    height: 100%;
    object-position: left top;
  }
}
.objectfit .c-member__picture, .object-fit .c-member__picture {
  background-image: none !important;
}
.no-objectfit .c-member__picture, .no-object-fit .c-member__picture {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
}
.no-objectfit .c-member__picture img, .no-object-fit .c-member__picture img {
  display: none;
}
.c-member__picture:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
  transition: opacity 0.3s;
  opacity: 0;
  background-color: #212848;
}
.c-member__picture:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
  background-size: 100% 180%;
  background-position: top center;
  background-image: linear-gradient(-180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
}
.c-member__title {
  position: relative;
  white-space: nowrap;
  line-height: 1;
  transition: color 0.3s;
}
.c-member__on-demand span,
.c-member__on-demand em {
  display: block;
  margin-bottom: 10px!important;
  font-style:normal!important;
}
.c-member__title:before {
  content: "";
  width: 75px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  transform-origin: 0 50%;
}
@media all and (min-width: 300px) and (max-width: 1023px) {
  .c-member__title {
    height: auto;
    padding-bottom: 20px;
  }
  .c-member__title:before {
    background: #000000;
  }
}
@media all and (min-width: 1024px) {
  .c-member__title {
    height: 50px;
  }
  .c-member__title:before {
    background: #FFFFFF;
    transition: transform 0.2s;
    transform: scale(0, 1);
  }
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-member__title {
    font-size: 20px;
    white-space: normal;
  }
}
@media all and (min-width: 768px) and (max-width: 1023px) {
  .c-member__title {
    font-size: 20px;
  }
}
.c-member__on-demand > * {
  margin-top: 18px;
}
@media all and (min-width: 1024px) {
  .c-member__on-demand {
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
}
@media all and (min-width: 300px) and (max-width: 1023px) {
  .c-member__on-demand .a-color-text-light {
    color: #000000;
  }
}
.c-member__nav {
  display: flex;
  align-items: center;
  margin-left: -12px;
  margin-top: 6px;
}
.c-member__nav [class^=a-icon-], .c-member__nav [class*=" a-icon-"] {
  font-size: 18px;
  transition: color 0.3s;
  padding: 6px 12px;
}
@media all and (min-width: 300px) and (max-width: 1023px) {
  .c-member__nav [class^=a-icon-], .c-member__nav [class*=" a-icon-"] {
    color: #212848;
  }
}
@media all and (min-width: 1024px) {
  .c-member__nav [class^=a-icon-], .c-member__nav [class*=" a-icon-"] {
    color: #FFFFFF;
  }
  .c-member__nav [class^=a-icon-]:hover, .c-member__nav [class*=" a-icon-"]:hover {
    color: #EF5355;
  }
}
@media all and (min-width: 1024px) {
  .c-member:hover .c-member__info {
    transform: translate3d(0, 0, 0) !important;
  }
  .c-member:hover .c-member__picture:after {
    opacity: 0.85;
  }
  .c-member:hover .c-member__picture:before {
    opacity: 0;
  }
  .c-member:hover .c-member__title {
    color: #FFFFFF;
  }
  .c-member:hover .c-member__title:before {
    transition: transform 0.6s;
    transform: scale(1, 1);
  }
  .c-member:hover .c-member__on-demand {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) !important;
    transition-delay: 0.2s;
  }
}

.c-review {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.c-review__photo {
  width: 96px;
  height: 96px;
  flex: none;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
  background-color: rgba(151, 151, 151, 0.25);
  position: relative;
}
.c-review__photo img {
  width: 100%;
  height: 100%;
}
.c-review__head {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #979797;
}
.c-review__head-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-right: 10px;
}
.c-review__social {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: none;
  padding-bottom: 5px;
  flex: none;
}
.c-review__social [class^=a-icon-], .c-review__social [class*=" a-icon-"] {
  width: 30px;
  flex: none;
  text-align: center;
}
@media all and (min-width: 1024px) {
  .c-review__social [class^=a-icon-]:hover, .c-review__social [class*=" a-icon-"]:hover {
    color: #EF5355;
  }
}
.c-review__label {
  font-style: italic;
  line-height: 1.2;
  margin-top: 7px;
  display: block;
  font-size: 12px;
  color: rgba(33, 40, 72, 0.7);
  height: 30px;
}
.c-review [class^=a-text-], .c-review [class*=" a-text-"] {
  width: 100%;
  flex: none;
}

.c-quote {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-quote {
    flex-direction: column;
  }
}
.c-quote__photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(151, 151, 151, 0.25);
  flex: none;
}
.c-quote__text {
  font-style: italic;
  width: 100%;
  display: block;
}
.c-quote__text:before {
  content: "";
  width: 50px;
  height: 36px;
  display: block;
  margin-bottom: 25px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  background-image: url(img/icons/icon_quote.svg);
}
@media all and (min-width: 768px) {
  .c-quote__text {
    padding-left: 80px;
  }
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-quote__text {
    margin-top: -30px;
    font-style: normal;
    font-size: 16px;
  }
}

.c-stock-widget {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  position: relative;
}
.c-stock-widget > *:not(:last-child) {
  margin-bottom: 15px;
}
.c-stock-widget__form {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-stock-widget__form {
    flex-direction: column;
    align-items: flex-start;
  }
}
.c-stock-widget__row {
  display: block;
  width: 100%;
}
.c-stock-widget__row.c-stock-widget__row--info {
  position: relative;
  z-index: 5;
}
.c-stock-widget__row.c-stock-widget__row--info .c-stock-widget__caption {
  display: inline;
}
.c-stock-widget__row.c-stock-widget__row--info .c-tip {
  display: inline-block;
}
.c-stock-widget__input {
  width: 186px;
  height: 70px;
  border-radius: 10px;
  border: 1px solid rgba(151, 151, 151, 0.25);
  padding: 0 10px;
  margin-right: 10px;
}
.c-stock-widget__input:focus {
  border-color: #212848;
}
.has-error .c-stock-widget__input {
  border-color: #EF5355 !important;
}
.c-stock-widget__field {
  display: flex;
  flex-direction: row;
  align-items: baseline;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-stock-widget__field {
    margin-bottom: 5px;
  }
}
.c-stock-widget__output {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  padding: 0 14px;
}
.c-stock-widget__output [data-stock-output] {
  padding: 0 10px;
}
@media all and (max-width: 340px) {
  .c-stock-widget__output [data-stock-output] {
    font-size: 30px;
  }
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-stock-widget__output {
    margin-top: 20px;
  }
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-stock-widget__caption {
    line-height: 1.5;
  }
}
.c-stock-widget [data-stock-error] {
  display: none;
}
.c-stock-widget [data-stock-error].is-active {
  display: block;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-stock-widget [data-stock-error] {
    position: absolute;
    top: 75px;
    left: 0;
    z-index: 1;
  }
}

.c-tip {
  width: 18px;
  height: 18px;
  flex: none;
  display: inline-block;
  margin: 0 5px;
  position: relative;
}
.c-tip__mark {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  background-color: #212848;
  color: #FFFFFF;
  text-align: center;
  line-height: 18px;
  font-size: 12px;
  cursor: pointer;
  user-select: none;
}
.c-tip__message {
  position: absolute;
  bottom: 34px;
  left: calc(50% - 450px);
  width: 900px;
  height: auto;
  border-radius: 3px;
  display: none;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.13);
}
@media (max-width:900px){
  .c-tip__message {
    width: 95%;
    left: 10px;
    top: 140px;
    position: fixed;
  }

  .benetable  {
    width: 600px !important;
  }

  .benetable td:first-child {
    width: 200px !important;
  }

  .c-tip__message::before {
    display: none !important;
  }

  .c-tip__message-content {
    overflow-x: scroll;
  }
}

@media (max-width:400px){
  .c-tip__message {
    width: 95%;
    left: 5px;
    top: 140px;
    position: fixed;
  }

  .benetable  {
    width: 600px !important;
  }

  .benetable td:first-child {
    width: 200px !important;
  }

  .c-tip__message::before {
    display: none !important;
  }
}

.c-tip__message:before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  transform: rotate(-45deg);
  bottom: -6px;
  left: calc(50% - 9px);
  display: block;
  z-index: 7;
  background: #fff;
}
.c-tip__message > *:not(:last-child) {
  margin-bottom: 10px;
}
@supports (filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.13))) {
  .c-tip__message {
    box-shadow: none;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.13));
  }
}
.c-tip__message-content {
  width: 100%;
  height: auto;
  padding: 24px 48px 24px 24px;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  position: relative;
  z-index: 5;
  
}
.c-tip__message-content .a-text-paragraph {
  line-height: 1.5;
}
.c-tip__close {
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 9;
  color: #212848;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
}
.c-tip__close:hover {
  color: #EF5355;
}
.c-tip.is-active .c-tip__message {
  display: block;
}

.c-switch {
  width: auto;
  height: 36px;
  align-self: flex-start;
  display: flex;
  flex-direction: row;
  border-radius: 18px;
  border: 1px solid #212848;
  position: relative;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-switch {
    width: 100%;
  }
}
.c-switch__indicator {
  position: absolute;
  left: -1px;
  top: -1px;
  z-index: 1;
  pointer-events: none;
  width: 188px;
  height: calc(100% + 2px);
  display: block;
  border-radius: 18px;
  background: #212848;
  border-color: #212848;
  transition: transform 0.5s;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-switch__indicator {
    width: calc(50% + 2px);
  }
}
.c-switch__button {
  width: 186px;
  height: 100%;
  border-radius: 18px;
  background: transparent;
  text-align: center;
  color: #212848;
  border: 1px solid transparent;
  position: relative;
  z-index: 5;
  font: 600 12px "avenir-bold";
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  padding: 0 10px;
  transition: color 0.3s 0.2s;
}
@media all and (min-width: 300px) and (max-width: 1023px) {
  .c-switch__button {
    letter-spacing: normal;
  }
}
.c-switch__button:hover {
  color: #EF5355;
}
.c-switch__button.is-active {
  pointer-events: none;
  color: #FFFFFF;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-switch__button {
    flex: 1;
    width: 50%;
  }
}
.c-switch__button.is-active:first-of-type ~ .c-switch__indicator {
  transform: translateX(0);
}
.c-switch__button.is-active:last-of-type ~ .c-switch__indicator {
  transform: translateX(186px);
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-switch__button.is-active:last-of-type ~ .c-switch__indicator {
    transform: translateX(calc(100% - 1px));
  }
}
.c-switch__view {
  display: none;
}
.c-switch__view.is-active {
  display: block;
}

.c-doc-list {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.c-doc-list__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(151, 151, 151, 0.25);
}
.c-doc-list__item:first-child {
  border-top: 1px solid rgba(151, 151, 151, 0.25);
}
.c-doc-list__icon {
  width: 26px;
  height: 33px;
  flex: none;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  background-image: url(img/icons/icon_pdf.svg);
}
.c-doc-list__title {
  padding-left: 25px;
  flex: 1;
  padding-right: 15px;
}
.c-doc-list__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 60px;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-doc-list__footer {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 50px;
  }
}
.c-doc-list__desc {
  width: 100%;
  max-width: 650px;
  padding-right: 30px;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-doc-list__desc {
    padding-right: 0;
  }
  .c-doc-list__desc .a-text-h4 {
    margin-bottom: 5px;
  }
}
.c-doc-list .c-button {
  flex: none;
}
.c-doc-list .c-button .a-icon-download {
  font-size: 16px;
  margin-left: 50px;
}
.c-doc-list .c-button .a-icon-pencil {
  font-size: 16px;
  color: #EF5355;
  margin-right: 5px;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-doc-list .c-button.c-button--outline {
    width: 36px;
    padding: 0;
    overflow: hidden;
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
  .c-doc-list .c-button.c-button--outline .a-icon-download {
    width: 34px;
    flex: none;
    text-align: center;
    margin: 0 !important;
  }
  .c-doc-list .c-button.c-button--air {
    padding-left: 0;
    margin-top: 25px;
  }
}

.c-payment {
  height: 30px;
  width: auto;
  display: block;
  transition: opacity 0.4s;
}
.c-payment img {
  height: 100%;
  width: auto;
  display: block;
}
@media all and (min-width: 1024px) {
  .c-payment:hover {
    opacity: 0.5;
  }
}

.c-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.3s, transform 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  position: fixed;
  right: 28px;
  bottom: 105px;
  z-index: 9;
  background-position: center;
  background-size: contain;
  background-color: #212848;
  background-image: url("img/icon-up.svg");
  background-repeat: no-repeat;
}
@media all and (min-width: 1024px) {
  .c-up {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden;
  }
}
.c-up:not(.is-active) {
  pointer-events: none;
}
.c-up.is-active {
  opacity: 1;
  transform: translateY(0);
}

.c-people-list {
  width: 94%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.c-people-list__body {
  display: block;
}
.c-people-list__body:after {
  content: "";
  display: block;
  clear: both;
}
.c-people-list__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
}
.c-people-list__item {
  width: 145px;
  height: 145px;
  float: left;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  border: 2px solid #FFFFFF;
  position: relative;
  opacity: 0.75;
}
.c-people-list__item--small {
  width: 27px;
  height: 27px;
}
.c-people-list__item:hover {
  opacity: 1;
  z-index: 9;
}
.c-people-list__item:hover .c-people-list__tooltip {
  display: flex;
}
.c-people-list__tooltip {
  width: auto;
  min-width: 200px;
  height: auto;
  flex-direction: column;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: #FFFFFF;
  border-radius: 4px;
  display: none;
  pointer-events: none;
  padding: 12px 15px;
  box-shadow: 0 2px 14px 0 rgba(193, 193, 193, 0.5);
}
.c-people-list__tooltip .a-text-paragraph {
  font-family: "avenir-bold";
  font-weight: 600;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-people-list__tooltip .a-text-paragraph {
    font-size: 12px;
  }
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-people-list__tooltip {
    width: 130px;
    min-width: 130px;
  }
}
.c-people-list__tooltip:before {
  content: "";
  display: block;
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 20px 15px 0;
  border-color: transparent #ffffff transparent;
}
.c-people-list__tooltip.to-left {
  left: auto;
  right: 100%;
}
.c-people-list__tooltip.to-left:before {
  left: auto;
  right: -10px;
  border-width: 15px 0 15px 20px;
  border-color: transparent transparent transparent #ffffff;
}

.c-select {
  width: 100%;
  max-width:400px;
  padding: 0 0 35px 0 10px;
  height: 40px;
  font: 600 10px "avenir-bold";
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #212848;
  background-size: 16px 8px;
  background-position: right 10px top 50%;
  background-image: url(img/icons/icon-chevron-down.svg);
  background-repeat: no-repeat;
  background-color: transparent;
  font-size: 16px;
  margin-top: 30px;
}
@media all and (min-width: 300px) and (max-width: 1023px) {
  .c-select {
    letter-spacing: normal;
  }
}
.c-select:focus {
  outline: none;
}

[data-animation=image-slider] .swiper-slide .c-picture {
  opacity: 0;
  transition: opacity 1s;
}
[data-animation=image-slider] .swiper-slide[data-swiper-slide-index="0"] .c-picture {
  transition-delay: 0s;
}
[data-animation=image-slider] .swiper-slide[data-swiper-slide-index="1"] .c-picture {
  transition-delay: 0.075s;
}
[data-animation=image-slider] .swiper-slide[data-swiper-slide-index="2"] .c-picture {
  transition-delay: 0.15s;
}
[data-animation=image-slider] .swiper-slide[data-swiper-slide-index="3"] .c-picture {
  transition-delay: 0.225s;
}
[data-animation=image-slider] .swiper-slide[data-swiper-slide-index="4"] .c-picture {
  transition-delay: 0.3s;
}
[data-animation=image-slider] .swiper-slide[data-swiper-slide-index="5"] .c-picture {
  transition-delay: 0.375s;
}
[data-animation=image-slider] .swiper-slide[data-swiper-slide-index="6"] .c-picture {
  transition-delay: 0.45s;
}
[data-animation=image-slider] .swiper-slide[data-swiper-slide-index="7"] .c-picture {
  transition-delay: 0.525s;
}
[data-animation=image-slider] .swiper-slide[data-swiper-slide-index="8"] .c-picture {
  transition-delay: 0.6s;
}
[data-animation=image-slider] .swiper-slide[data-swiper-slide-index="9"] .c-picture {
  transition-delay: 0.675s;
}
[data-animation=image-slider] .swiper-slide[data-swiper-slide-index="10"] .c-picture {
  transition-delay: 0.75s;
}
[data-animation=image-slider] .c-image-slider__pagination {
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition: opacity 0.7s, transform 0.7s;
  transition-delay: 0.2s;
}
[data-animation=image-slider].is-animation-played .swiper-slide .c-picture {
  opacity: 1;
}
[data-animation=image-slider].is-animation-played .c-image-slider__pagination {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

[data-animation=slider] .swiper-slide {
  opacity: 0;
  transition: opacity 1s;
}
[data-animation=slider] .swiper-slide[data-swiper-slide-index="0"], [data-animation=slider] .swiper-slide[data-swiper-column="0"] {
  transition-delay: 0s;
}
[data-animation=slider] .swiper-slide[data-swiper-slide-index="1"], [data-animation=slider] .swiper-slide[data-swiper-column="1"] {
  transition-delay: 0.075s;
}
[data-animation=slider] .swiper-slide[data-swiper-slide-index="2"], [data-animation=slider] .swiper-slide[data-swiper-column="2"] {
  transition-delay: 0.15s;
}
[data-animation=slider] .swiper-slide[data-swiper-slide-index="3"], [data-animation=slider] .swiper-slide[data-swiper-column="3"] {
  transition-delay: 0.225s;
}
[data-animation=slider] .swiper-slide[data-swiper-slide-index="4"], [data-animation=slider] .swiper-slide[data-swiper-column="4"] {
  transition-delay: 0.3s;
}
[data-animation=slider] .swiper-slide[data-swiper-slide-index="5"], [data-animation=slider] .swiper-slide[data-swiper-column="5"] {
  transition-delay: 0.375s;
}
[data-animation=slider] .swiper-slide[data-swiper-slide-index="6"], [data-animation=slider] .swiper-slide[data-swiper-column="6"] {
  transition-delay: 0.45s;
}
[data-animation=slider] .swiper-slide[data-swiper-slide-index="7"], [data-animation=slider] .swiper-slide[data-swiper-column="7"] {
  transition-delay: 0.525s;
}
[data-animation=slider] .swiper-slide[data-swiper-slide-index="8"], [data-animation=slider] .swiper-slide[data-swiper-column="8"] {
  transition-delay: 0.6s;
}
[data-animation=slider] .swiper-slide[data-swiper-slide-index="9"], [data-animation=slider] .swiper-slide[data-swiper-column="9"] {
  transition-delay: 0.675s;
}
[data-animation=slider] .swiper-slide[data-swiper-slide-index="10"], [data-animation=slider] .swiper-slide[data-swiper-column="10"] {
  transition-delay: 0.75s;
}
[data-animation=slider] .c-image-slider__pagination {
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition: opacity 0.7s, transform 0.7s;
  transition-delay: 0.2s;
}
[data-animation=slider] .m-content-view__title {
  transform: translate3d(-40px, 0, 0);
  opacity: 0;
  transition: opacity 0.7s, transform 0.7s;
}
[data-animation=slider].is-animation-played .swiper-slide {
  opacity: 1;
}
[data-animation=slider].is-animation-played .c-image-slider__pagination,
[data-animation=slider].is-animation-played .m-content-view__title {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

[data-animation=for-investors] .m-content-view__title {
  transform: translate3d(-40px, 0, 0);
  opacity: 0;
  transition: opacity 0.7s, transform 0.7s;
}
[data-animation=for-investors] .c-picture {
  transform: translate3d(-40px, 0, 0);
  opacity: 0;
  transition: opacity 0.7s, transform 0.7s;
}
[data-animation=for-investors] .m-content-view__block {
  transform: translate3d(0, 30px, 0);
  opacity: 0;
  transition: opacity 0.7s, transform 0.7s;
}
[data-animation=for-investors] .m-content-view__block:nth-child(1) {
  transition-delay: 0.3s;
}
[data-animation=for-investors] .m-content-view__block:nth-child(2) {
  transition-delay: 0.5s;
}
[data-animation=for-investors] .m-content-view__block:nth-child(3) {
  transition-delay: 0.7s;
}
[data-animation=for-investors] .a-grid-free {
  transform: translate3d(0, 30px, 0);
  opacity: 0;
  transition: opacity 0.7s, transform 0.7s;
  transition-delay: 0.7s;
}
[data-animation=for-investors].is-animation-played .m-content-view__title,
[data-animation=for-investors].is-animation-played .c-picture,
[data-animation=for-investors].is-animation-played .m-content-view__block,
[data-animation=for-investors].is-animation-played .a-grid-free {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

[data-animation=plan] .bullet-group__point {
  opacity: 0;
  transition: opacity 1s;
}
[data-animation=plan] .a-text-h2 {
  transform: translate3d(-40px, 0, 0);
  opacity: 0;
  transition: opacity 0.7s, transform 0.7s;
}
[data-animation=plan] .plan-group:nth-child(1) .bullet-group__point {
  transition-delay: 0s;
}
[data-animation=plan] .plan-group:nth-child(2) .bullet-group__point {
  transition-delay: 0.075s;
}
[data-animation=plan] .plan-group:nth-child(3) .bullet-group__point {
  transition-delay: 0.15s;
}
[data-animation=plan] .plan-group:nth-child(4) .bullet-group__point {
  transition-delay: 0.225s;
}
[data-animation=plan] .plan-group:nth-child(5) .bullet-group__point {
  transition-delay: 0.3s;
}
[data-animation=plan] .plan-group:nth-child(6) .bullet-group__point {
  transition-delay: 0.375s;
}
[data-animation=plan] .plan-group:nth-child(7) .bullet-group__point {
  transition-delay: 0.45s;
}
[data-animation=plan] .plan-group:nth-child(8) .bullet-group__point {
  transition-delay: 0.525s;
}
[data-animation=plan].is-animation-played .bullet-group__point {
  opacity: 1;
}
[data-animation=plan].is-animation-played .a-text-h2 {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

[data-animation=content] .m-simple-view__main {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 0.7s, transform 0.7s;
}
[data-animation=content].is-animation-played .m-simple-view__main {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

[data-animation=about] .m-content-view__title {
  transform: translate3d(-40px, 0, 0);
  opacity: 0;
  transition: opacity 0.7s, transform 0.7s;
}
[data-animation=about] .m-content-view__desc {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 0.7s, transform 0.7s;
  transition-delay: 0.4s;
}
[data-animation=about] .c-link {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 0.7s, transform 0.7s;
  transition-delay: 0.7s;
}
[data-animation=about] .m-content-view__caption {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 0.7s, transform 0.7s;
  transition-delay: 0.8s;
}
[data-animation=about] .m-content-view__list .m-content-view__desc {
  transition-delay: 0.6s;
}
[data-animation=about].is-animation-played .m-content-view__title,
[data-animation=about].is-animation-played .m-content-view__desc,
[data-animation=about].is-animation-played .m-content-view__caption,
[data-animation=about].is-animation-played .c-link {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.c-old {
  width: 100%;
  height: auto;
  padding: 0 45px;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-old {
    padding: 0 10px;
  }
}
.c-old__header {
  width: 100%;
  height: 43px;
  margin-top: 45px;
  margin-bottom: 45px;
}
.c-old__header img {
  width: 188px;
  height: 43px;
  display: block;
}
.c-old__content {
  width: 350px;
  height: auto;
  margin: 100px auto 100px;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-old__content {
    width: 300px;
    margin: 40px auto 40px;
  }
}
.c-old__title {
  width: 100%;
  display: block;
  margin-bottom: 80px;
  text-align: center;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-old__title {
    margin-bottom: 40px;
  }
}
.c-old__list {
  width: 100%;
  display: block;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-old__list {
    text-align: center;
  }
}
.c-old__item {
  width: 66px;
  height: auto;
  display: inline-block;
  margin: 0 50px;
}
@media all and (min-width: 300px) and (max-width: 767px) {
  .c-old__item {
    margin: 0 30px;
  }
}
.c-old__logo {
  width: auto;
  height: 66px;
  margin: 0 auto 10px;
  display: block;
}
.c-old__name {
  text-align: center;
  line-height: 20px;
}

.category .hentry img {
	max-height: 500px;
	width: auto;
}


.c-member.resident .c-member__info{
  max-width: 100%;  
  
}


.c-member.resident:hover .c-member__info{
 overflow-y: scroll;
 overflow-x: hidden;
 margin: 10px 10px 10px 0px; 
 scrollbar-color: white transparent;
 scrollbar-width: thin;
}

.c-member.resident:hover .c-member__info::-webkit-scrollbar{  
   background-color: transparent;
   width: 5px;  
 }

 .c-member.resident:hover .c-member__info::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0); 
 }

 .c-member.resident:hover .c-member__info::-webkit-scrollbar-thumb {
  background-color: white;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  
}

.c-member.resident .c-member__title {
  white-space: unset !important;
  line-height: 30px;
  height: auto;
  padding-bottom: 4px;
  margin-bottom: 10px;
}


.c-member.resident {
  padding-bottom: 10px;
}

.c-member.resident .c-member__picture {  
  background-size: contain;  
  background-repeat: no-repeat;
  background-position: center center; 
  padding: 70px 80px 90px 80px;
  background-origin: content-box;
  background-color: #f4f4f6;
}

.c-member.resident .c-member__picture::before {
  background-image: unset;
}

.c-member.resident:hover .c-member__picture {
  background-image: none !important;
}

.c-member.resident .c-member__picture.c-picture--cover-r {  
  padding: unset;
  background-size: cover;
}


.slick-slide {
  outline: 0;
}

/*
.c-member.resident:hover picture.c-member__picture img{
  display: none;
}

.c-member.resident picture.c-member__picture img{
  max-width: 90%;
  max-height: 90%;
  width: 80% !important;
  height: auto !important;
  min-width: unset !important;
  min-height: unset !important;
  margin: auto;
  margin-top: 30px;
}
*/

.c-member.resident .c-member__nav {
  padding-bottom: 20px; 
}

.c-member.resident .c-member__nav img:hover{
  -webkit-filter: invert(40%) grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(400%) contrast(2);
  filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);
}



.a-icon-globe:before { 
  padding: 6px 12px;
}