@charset "UTF-8";
html {
  min-height: 100%;
  height: 100%; }

body {
  font-size: 12px;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  text-align: left;
  color: #000;
  background: #fff;
  background-size: cover;
  min-height: 100%;
  height: 100%; }
  body.overflow {
    overflow: hidden; }

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.main_blur {
  background: #000; }
  .main_blur .index_bg {
    -webkit-filter: blur(20px);
    filter: blur(20px); }
  .main_blur nav.index_nav {
    opacity: 0;
    visibility: hidden; }
  .main_blur aside#aside_nav {
    opacity: 1;
    visibility: visible; }
  .main_blur .inner_first {
    -webkit-filter: blur(20px);
    filter: blur(20px); }
    .main_blur .inner_first + div {
      -webkit-filter: blur(20px);
      filter: blur(20px); }
  .main_blur .location_link {
    opacity: 0;
    visibility: hidden; }
  .main_blur footer#footer.index {
    margin: 0 !important;
    z-index: 3 !important;
    position: fixed !important; }
  .main_blur footer#footer {
    border: none;
    position: fixed;
    z-index: 3; }
    .main_blur footer#footer > div {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; }
    .main_blur footer#footer .copyright {
      display: none; }
    .main_blur footer#footer .footer_phone {
      display: none; }
    .main_blur footer#footer .social_links a.facebook {
      background: url(../img/facebook_white_icon.svg) no-repeat 50%; }
    .main_blur footer#footer .social_links a.instagram {
      background: url(../img/instagram_white_icon.svg) no-repeat 50%; }
    .main_blur footer#footer .social_links a.youtube {
      background: url(../img/youtube_white_icon.svg) no-repeat 50%; }

.hide_all {
  background: #000; }
  .hide_all .index_bg {
    -webkit-filter: blur(20px);
    filter: blur(20px); }
  .hide_all nav.index_nav {
    opacity: 0;
    visibility: hidden; }
  .hide_all header#header {
    opacity: 0; }
  .hide_all footer#footer {
    opacity: 0; }

.main_wrapper {
  padding: 0 0 110px;
  min-height: 100%;
  position: relative; }

.video_bg {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0; }
  .video_bg.played::after {
    opacity: 1; }
  .video_bg::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 1;
    -webkit-animation-duration: 0.15s;
    -webkit-transition: all 0.15s linear;
    -moz-animation-duration: 0.15s;
    -moz-transition: all 0.15s linear;
    animation-duration: 0.15s;
    -o-transition: all 0.15s linear;
    transition: all 0.15s linear; }
  .video_bg video {
    display: block;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
    .video_bg video::-webkit-media-controls {
      display: none !important; }

.index_bg {
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1a4c65+0,177486+100 */
  background: #1a4c65;
  /* Old browsers */
  background: -moz-linear-gradient(left, #1a4c65 0%, #177486 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #1a4c65 0%, #177486 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(#1a4c65), to(#177486));
  background: -o-linear-gradient(left, #1a4c65 0%, #177486 100%);
  background: linear-gradient(to right, #1a4c65 0%, #177486 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1a4c65', endColorstr='#177486',GradientType=1 );
  /* IE6-9 */
  position: fixed;
  left: 0;
  top: 0;
  opacity: 1;
  visibility: visible;
  -webkit-animation-duration: 0.15s;
  -webkit-transition: all 0.15s linear;
  -moz-animation-duration: 0.15s;
  -moz-transition: all 0.15s linear;
  animation-duration: 0.15s;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear; }
  .index_bg.show_me {
    opacity: 1;
    visibility: visible; }
  .index_bg img {
    display: block;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation-duration: 0.15s;
    -webkit-transition: all 0.15s linear;
    -moz-animation-duration: 0.15s;
    -moz-transition: all 0.15s linear;
    animation-duration: 0.15s;
    -o-transition: all 0.15s linear;
    transition: all 0.15s linear;
    -webkit-transition-delay: 0.15s;
    -o-transition-delay: 0.15s;
    transition-delay: 0.15s; }
    .index_bg img[data-src] {
      opacity: 0 !important; }
    .index_bg img.active {
      opacity: 1;
      visibility: visible;
      -webkit-transition-delay: 0s;
      -o-transition-delay: 0s;
      transition-delay: 0s; }

header#header {
  width: 100%;
  height: 146px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3; }
  header#header > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 146px;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative; }

.logo {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }
  .logo a {
    display: block;
    width: 128px;
    height: 65px;
    background: url(../img/logo.svg) no-repeat 0 0; }

.lang {
  padding: 0 0 0 114px;
  position: relative;
  z-index: 1; }
  .lang a {
    display: inline-block;
    margin: 0 12px 0 0;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.38;
    position: relative; }
    .lang a.active::before {
      content: "";
      display: block;
      width: 100%;
      height: 1px;
      background: #fff;
      position: absolute;
      left: 0;
      bottom: 0; }

.location_link {
  position: relative;
  z-index: 1;
  -webkit-animation-duration: 0.15s;
  -webkit-transition: all 0.15s linear;
  -moz-animation-duration: 0.15s;
  -moz-transition: all 0.15s linear;
  animation-duration: 0.15s;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear; }
  .location_link a {
    display: inline-block;
    padding: 0 0 0 24px;
    font-size: 18px;
    font-weight: 600;
    font-stretch: condensed;
    line-height: 1.22;
    color: #fff;
    text-decoration: none;
    background: url(../img/location_yellow_icon.svg) no-repeat 0 50%; }

a.toggler {
  display: block;
  width: 35px;
  height: 16px;
  color: #fff;
  text-decoration: none;
  position: absolute;
  left: 20px;
  top: 64px;
  z-index: 2; }
  a.toggler.active_first strong {
    opacity: 0;
    visibility: hidden; }
  a.toggler.active_first em:first-child + em {
    width: 0; }
  a.toggler.active_second em:first-child {
    top: 6px; }
    a.toggler.active_second em:first-child + em + em {
      top: 6px; }
  a.toggler.active_last em:first-child {
    -moz-transform: rotate(45deg);
    /* Для Firefox */
    -ms-transform: rotate(45deg);
    /* Для IE */
    -webkit-transform: rotate(45deg);
    /* Для Safari, Chrome, iOS */
    -o-transform: rotate(45deg);
    /* Для Opera */
    transform: rotate(45deg); }
    a.toggler.active_last em:first-child + em + em {
      -moz-transform: rotate(-45deg);
      /* Для Firefox */
      -ms-transform: rotate(-45deg);
      /* Для IE */
      -webkit-transform: rotate(-45deg);
      /* Для Safari, Chrome, iOS */
      -o-transform: rotate(-45deg);
      /* Для Opera */
      transform: rotate(-45deg); }
  a.toggler span {
    display: block;
    width: 100%;
    height: 100%;
    position: relative; }
  a.toggler em {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-animation-duration: 0.15s;
    -webkit-transition: all 0.15s linear;
    -moz-animation-duration: 0.15s;
    -moz-transition: all 0.15s linear;
    animation-duration: 0.15s;
    -o-transition: all 0.15s linear;
    transition: all 0.15s linear; }
    a.toggler em + em {
      top: 7px; }
      a.toggler em + em + em {
        top: 14px; }

.social_links a {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 30px 0 0;
  -webkit-animation-duration: 0.15s;
  -webkit-transition: all 0.15s linear;
  -moz-animation-duration: 0.15s;
  -moz-transition: all 0.15s linear;
  animation-duration: 0.15s;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear; }
  .social_links a:hover {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2); }
  .social_links a:last-child {
    margin: 0; }
  .social_links a.facebook {
    background: url(../img/facebook_black_icon.svg) no-repeat 50%; }
  .social_links a.instagram {
    background: url(../img/instagram_black_icon.svg) no-repeat 50%; }
  .social_links a.youtube {
    background: url(../img/youtube_black_icon.svg) no-repeat 50%; }

footer#footer {
  width: 100%;
  height: 110px;
  border-top: 1px solid #eaeaea;
  position: absolute;
  left: 0;
  bottom: 0; }
  footer#footer.index {
    border: none; }
    footer#footer.index > div {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; }
    footer#footer.index .social_links a.facebook {
      background: url(../img/facebook_white_icon.svg) no-repeat 50%; }
    footer#footer.index .social_links a.instagram {
      background: url(../img/instagram_white_icon.svg) no-repeat 50%; }
    footer#footer.index .social_links a.youtube {
      background: url(../img/youtube_white_icon.svg) no-repeat 50%; }
  footer#footer > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 1380px;
    height: 110px;
    margin: 0 auto;
    padding: 0 20px; }

.leasing_links a {
  display: inline-block;
  padding: 0 0 0 25px;
  font-size: 18px;
  line-height: 1.22;
  color: #fff;
  text-decoration: none;
  background: url(../img/leasing_icon.svg) no-repeat 0 3px; }

.copyright {
  font-size: 17px;
  font-stretch: condensed; }

.footer_phone .phone {
  padding: 0 0 5px;
  text-align: right;
  font-size: 22px; }
  .footer_phone .phone a {
    color: #000;
    text-decoration: none; }

.footer_phone time {
  display: block;
  font-size: 17px;
  text-align: right; }

nav.index_nav {
  width: 100%;
  height: 350px;
  color: #fff;
  position: absolute;
  left: 0;
  top: calc(50% - 175px);
  -webkit-animation-duration: 0.15s;
  -webkit-transition: all 0.15s linear;
  -moz-animation-duration: 0.15s;
  -moz-transition: all 0.15s linear;
  animation-duration: 0.15s;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear; }
  nav.index_nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    max-width: 1340px;
    height: 350px;
    margin: 0 auto; }
    nav.index_nav ul:hover li h3 {
      font-size: 34px; }
    nav.index_nav ul li {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -ms-flex-line-pack: stretch;
      align-content: stretch;
      -webkit-box-align: stretch;
      -ms-flex-align: stretch;
      align-items: stretch;
      width: 25%;
      padding: 0 30px;
      border-left: 1px solid rgba(255, 255, 255, 0.3);
      position: relative;
      cursor: pointer;
      -webkit-animation-duration: 0.3s;
      -webkit-transition: all 0.3s linear;
      -moz-animation-duration: 0.3s;
      -moz-transition: all 0.3s linear;
      animation-duration: 0.3s;
      -o-transition: all 0.3s linear;
      transition: all 0.3s linear; }
      nav.index_nav ul li:first-child {
        border-left: none; }
        nav.index_nav ul li:first-child p {
          text-align: left; }
        nav.index_nav ul li:first-child + li p {
          text-align: left; }
        nav.index_nav ul li:first-child + li + li h3 img {
          width: 90px; }
        nav.index_nav ul li:first-child + li + li p {
          text-align: left; }
        nav.index_nav ul li:first-child + li + li + li p {
          text-align: left; }
      nav.index_nav ul li:hover {
        width: 40%; }
        nav.index_nav ul li:hover h2 {
          font-size: 60px;
          color: #ffc53b; }
          nav.index_nav ul li:hover h2 a {
            color: #ffc53b; }
        nav.index_nav ul li:hover p {
          font-size: 28px; }
        nav.index_nav ul li:hover h3, nav.index_nav ul li:hover p {
          -webkit-transform: translate(0, -120px);
          -ms-transform: translate(0, -120px);
          transform: translate(0, -120px); }
        nav.index_nav ul li:hover .hidden_nav {
          opacity: 1;
          visibility: visible;
          -webkit-animation-duration: 0.15s;
          -webkit-transition: all 0.15s linear;
          -moz-animation-duration: 0.15s;
          -moz-transition: all 0.15s linear;
          animation-duration: 0.15s;
          -o-transition: all 0.15s linear;
          transition: all 0.15s linear;
          -webkit-transition-delay: 0.45s;
          -o-transition-delay: 0.45s;
          transition-delay: 0.45s; }
        nav.index_nav ul li:hover .nav_inset {
          opacity: 1;
          visibility: visible;
          -webkit-animation-duration: 0.15s;
          -webkit-transition: all 0.15s linear;
          -moz-animation-duration: 0.15s;
          -moz-transition: all 0.15s linear;
          animation-duration: 0.15s;
          -o-transition: all 0.15s linear;
          transition: all 0.15s linear;
          -webkit-transition-delay: 0.3s;
          -o-transition-delay: 0.3s;
          transition-delay: 0.3s; }
      nav.index_nav ul li h3 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-flex-line-pack: stretch;
        align-content: stretch;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 100px;
        margin: 0 0 5px;
        font-size: 36px;
        font-weight: bold;
        font-stretch: condensed;
        line-height: 1.39;
        text-transform: uppercase;
        white-space: nowrap;
        position: relative;
        z-index: 1;
        -webkit-animation-duration: 0.3s;
        -webkit-transition: all 0.3s linear;
        -moz-animation-duration: 0.3s;
        -moz-transition: all 0.3s linear;
        animation-duration: 0.3s;
        -o-transition: all 0.3s linear;
        transition: all 0.3s linear; }
        nav.index_nav ul li h3 a {
          display: inline-block;
          width: 100%;
          color: #fff;
          text-decoration: none;
          position: relative; }
          nav.index_nav ul li h3 a::before {
            content: "";
            display: block;
            width: 0;
            height: 2px;
            background: #fff;
            position: absolute;
            left: 0;
            bottom: 10px;
            opacity: 0;
            -webkit-animation-duration: 0.15s;
            -webkit-transition: all 0.15s linear;
            -moz-animation-duration: 0.15s;
            -moz-transition: all 0.15s linear;
            animation-duration: 0.15s;
            -o-transition: all 0.15s linear;
            transition: all 0.15s linear; }
          nav.index_nav ul li h3 a:hover::before {
            width: 100%; }
        nav.index_nav ul li h3 img {
          min-width: 90px;
          max-height: 90px; }
      nav.index_nav ul li p {
        height: 58px;
        font-size: 22px;
        font-stretch: condensed;
        line-height: 1.36;
        text-align: center;
        -webkit-animation-duration: 0.3s;
        -webkit-transition: all 0.3s linear;
        -moz-animation-duration: 0.3s;
        -moz-transition: all 0.3s linear;
        animation-duration: 0.3s;
        -o-transition: all 0.3s linear;
        transition: all 0.3s linear; }
        nav.index_nav ul li p a {
          color: #fff;
          text-decoration: none; }

.links_slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  max-width: 1340px;
  margin: 0 auto; }
  .links_slider > div {
    padding: 0 30px; }
  .links_slider .slides {
    width: 240px;
    height: 94px;
    overflow: hidden;
    position: relative; }
    .links_slider .slides::after {
      content: "";
      display: block;
      width: 100%;
      height: 50%;
      position: absolute;
      left: 0;
      bottom: 0; }
    .links_slider .slides > div::after {
      content: "";
      display: block;
      height: 0;
      clear: both; }
    .links_slider .slides > div.to_top {
      -webkit-transform: translate(0, -47px);
      -ms-transform: translate(0, -47px);
      transform: translate(0, -47px); }
    .links_slider .slides > div.animate_me {
      -webkit-animation-duration: 0.2s;
      -webkit-transition: all 0.2s linear;
      -moz-animation-duration: 0.2s;
      -moz-transition: all 0.2s linear;
      animation-duration: 0.2s;
      -o-transition: all 0.2s linear;
      transition: all 0.2s linear; }
    .links_slider .slides > div a {
      display: inline-block;
      height: 47px;
      padding: 0 0 0 0;
      margin: 0 0 5px;
      font-size: 19px;
      color: #fff;
      text-decoration: none;
      position: relative;
      opacity: 0.25;
      overflow: hidden; }
      .links_slider .slides > div a span::after {
        content: "";
        display: inline-block;
        width: 8px;
        height: 12px;
        margin: 0 0 0 8px;
        background: url(../img/link_white_pt.svg) no-repeat 50%;
        background-size: contain;
        opacity: 0; }
      .links_slider .slides > div a:hover span::after {
        opacity: 1; }
      .links_slider .slides > div a.active {
        opacity: 1; }

.nav_inset {
  width: 100%;
  padding: 110px 0 0 30px;
  font-size: 0;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-duration: 0.05s;
  -webkit-transition: all 0.05s linear;
  -moz-animation-duration: 0.05s;
  -moz-transition: all 0.05s linear;
  animation-duration: 0.05s;
  -o-transition: all 0.05s linear;
  transition: all 0.05s linear; }
  .nav_inset h4 {
    padding: 0 80px 50px 0;
    font-size: 24px;
    font-weight: 600;
    font-style: normal;
    line-height: 1.33;
    color: #fff; }
    .nav_inset h4 a {
      color: #fff;
      text-decoration: none; }
  .nav_inset .link {
    position: relative; }
    .nav_inset .link a {
      display: inline-block;
      padding: 0 24px 0 0;
      font-size: 24px;
      line-height: 1.25;
      color: #fff;
      text-decoration: none;
      background: url(../img/link_white_pt.svg) no-repeat 100% calc(50% + 2px);
      -webkit-animation-duration: 0.15s;
      -webkit-transition: all 0.15s linear;
      -moz-animation-duration: 0.15s;
      -moz-transition: all 0.15s linear;
      animation-duration: 0.15s;
      -o-transition: all 0.15s linear;
      transition: all 0.15s linear; }
      .nav_inset .link a:hover {
        padding: 0 21px 0 0;
        color: #ffc53b;
        background: url(../img/link_yellow_icon.svg) no-repeat 100% calc(50% + 2px); }

.hidden_nav {
  width: 100%;
  padding: 160px 0 0 30px;
  font-size: 0;
  text-align: center;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-duration: 0.05s;
  -webkit-transition: all 0.05s linear;
  -moz-animation-duration: 0.05s;
  -moz-transition: all 0.05s linear;
  animation-duration: 0.05s;
  -o-transition: all 0.05s linear;
  transition: all 0.05s linear; }
  .hidden_nav a.sublink {
    display: inline-block;
    width: 50%;
    margin: 0 0 12px 0;
    padding: 0 32px 0 0;
    font-size: 24px;
    font-weight: bold;
    font-stretch: condensed;
    line-height: 1.25;
    color: #fff;
    text-decoration: none;
    text-align: left;
    position: relative;
    z-index: 1;
    -webkit-animation-duration: 0.15s;
    -webkit-transition: all 0.15s linear;
    -moz-animation-duration: 0.15s;
    -moz-transition: all 0.15s linear;
    animation-duration: 0.15s;
    -o-transition: all 0.15s linear;
    transition: all 0.15s linear; }
    .hidden_nav a.sublink:hover {
      color: #ffc53b; }
      .hidden_nav a.sublink:hover img {
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05); }
    .hidden_nav a.sublink img {
      height: 60px;
      -webkit-animation-duration: 0.15s;
      -webkit-transition: all 0.15s linear;
      -moz-animation-duration: 0.15s;
      -moz-transition: all 0.15s linear;
      animation-duration: 0.15s;
      -o-transition: all 0.15s linear;
      transition: all 0.15s linear; }

aside#aside_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  -webkit-animation-duration: 0.15s;
  -webkit-transition: all 0.15s linear;
  -moz-animation-duration: 0.15s;
  -moz-transition: all 0.15s linear;
  animation-duration: 0.15s;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear; }
  aside#aside_nav .lang {
    display: none; }
  aside#aside_nav nav {
    text-align: center; }
    aside#aside_nav nav ul li {
      padding: 0 0 50px; }
      aside#aside_nav nav ul li:last-child {
        padding: 0; }
      aside#aside_nav nav ul li a {
        display: block;
        font-size: 50px;
        font-weight: bold;
        font-stretch: condensed;
        line-height: 1;
        color: #fff;
        text-decoration: none;
        text-transform: uppercase;
        position: relative;
        -webkit-animation-duration: 0.15s;
        -webkit-transition: all 0.15s linear;
        -moz-animation-duration: 0.15s;
        -moz-transition: all 0.15s linear;
        animation-duration: 0.15s;
        -o-transition: all 0.15s linear;
        transition: all 0.15s linear; }
        aside#aside_nav nav ul li a:hover {
          color: #e6ad27; }

.contacts_wrpper {
  background: #000;
  padding: 140px 0 0; }

.contacts_modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 600px;
  background: #fff;
  position: relative; }
  .contacts_modal .right_side {
    width: 460px;
    height: 100%;
    padding: 80px 40px 40px 60px;
    overflow-y: auto;
    position: relative; }
    .contacts_modal .right_side::-webkit-scrollbar-button {
      background-image: url("");
      background-repeat: no-repeat;
      width: 5px;
      height: 0px; }
    .contacts_modal .right_side::-webkit-scrollbar-track {
      right: -5px;
      background-color: transparent;
      -moz-border-radius: 2px;
      -webkit-border-radius: 2px;
      -khtml-border-radius: 2px;
      border-radius: 2px; }
    .contacts_modal .right_side::-webkit-scrollbar-thumb {
      -webkit-border-radius: 0px;
      border-radius: 0px;
      background-color: #ccc;
      -moz-border-radius: 2px;
      -webkit-border-radius: 2px;
      -khtml-border-radius: 2px;
      border-radius: 2px; }
    .contacts_modal .right_side::-webkit-scrollbar-thumb:hover {
      background-color: #111; }
    .contacts_modal .right_side::-webkit-resizer {
      background-image: url("");
      background-repeat: no-repeat;
      width: 4px;
      height: 0px; }
    .contacts_modal .right_side::-webkit-scrollbar {
      width: 4px; }
    .contacts_modal .right_side h3 {
      padding: 0 0 40px;
      font-size: 50px;
      font-weight: bold;
      font-stretch: condensed;
      line-height: 1.06;
      text-transform: uppercase; }
    .contacts_modal .right_side time {
      display: block;
      padding: 0 0 10px;
      font-size: 22px;
      font-stretch: condensed; }
    .contacts_modal .right_side .address {
      padding: 0 0 40px;
      font-size: 30px;
      font-weight: 600;
      font-stretch: condensed;
      line-height: 1.13; }
    .contacts_modal .right_side .phones {
      padding: 0 0 60px; }
      .contacts_modal .right_side .phones ul li {
        font-size: 26px;
        font-weight: 500;
        font-stretch: condensed;
        line-height: 1.31; }
        .contacts_modal .right_side .phones ul li a {
          color: #000;
          text-decoration: none; }
  .contacts_modal a.close {
    width: 31px;
    height: 31px;
    position: absolute;
    right: 30px;
    top: 30px; }
    .contacts_modal a.close::before {
      content: "";
      display: block;
      width: 100%;
      height: 1px;
      background: #000;
      position: absolute;
      left: 0;
      top: 15px;
      -moz-transform: rotate(45deg);
      /* Для Firefox */
      -ms-transform: rotate(45deg);
      /* Для IE */
      -webkit-transform: rotate(45deg);
      /* Для Safari, Chrome, iOS */
      -o-transform: rotate(45deg);
      /* Для Opera */
      transform: rotate(45deg); }
    .contacts_modal a.close::after {
      content: "";
      display: block;
      width: 100%;
      height: 1px;
      background: #000;
      position: absolute;
      left: 0;
      top: 15px;
      -moz-transform: rotate(-45deg);
      /* Для Firefox */
      -ms-transform: rotate(-45deg);
      /* Для IE */
      -webkit-transform: rotate(-45deg);
      /* Для Safari, Chrome, iOS */
      -o-transform: rotate(-45deg);
      /* Для Opera */
      transform: rotate(-45deg); }

#simple_map {
  width: calc(100% - 460px);
  background: #f0f0f0; }

.transport_version {
  display: none; }
  .transport_version ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start; }
    .transport_version ul li {
      width: 50%; }
      .transport_version ul li .icon {
        padding: 0 0 20px; }
      .transport_version ul li h3 {
        padding: 0;
        font-size: 26px;
        font-weight: 600;
        font-stretch: condensed;
        line-height: 1.31; }
      .transport_version ul li p {
        font-size: 20px;
        font-stretch: condensed; }

.inner_first {
  position: relative;
  overflow: hidden;
  font-size: 0; }
  .inner_first .bg {
    height: calc(100vw * 0.315);
    background: #000;
    overflow: hidden;
    position: relative; }
    .inner_first .bg img {
      width: 100%;
      opacity: 0.5;
      position: absolute;
      top: 0;
      right: 0; }
  .inner_first .info {
    width: calc(100vw - 80px);
    color: #fff;
    text-align: center;
    position: absolute;
    left: 50%;
    bottom: 100px;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
    .inner_first .info h1 {
      padding: 0 0 20px;
      font-size: 70px;
      font-weight: bold;
      text-transform: uppercase; }
    .inner_first .info h2 {
      font-size: 28px;
      line-height: 1.07; }
  .inner_first .social_links {
    position: absolute;
    width: 100%;
    max-width: 1380px;
    height: 0;
    padding: 0 20px;
    left: 50%;
    bottom: 40px;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: 1; }
    .inner_first .social_links a.facebook {
      background: url(../img/facebook_white_icon.svg) no-repeat 50%; }
    .inner_first .social_links a.instagram {
      background: url(../img/instagram_white_icon.svg) no-repeat 50%; }
    .inner_first .social_links a.youtube {
      background: url(../img/youtube_white_icon.svg) no-repeat 50%; }

.universal_wrapper > div {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 20px; }

.first_shop {
  padding: 136px 0 155px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start; }

.two_category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: calc(62% - 30px); }
  .two_category article {
    width: calc(50% - 30px);
    margin: 0; }
    .two_category article.new .image::before {
      content: "";
      display: block;
      width: 70px;
      height: 70px;
      background: url(../img/new_icon.svg) no-repeat 0 0;
      position: absolute;
      left: 25px;
      bottom: -35px;
      z-index: 1; }
    .two_category article .image {
      margin: 0 0 60px;
      position: relative; }
      .two_category article .image a {
        display: block;
        overflow: hidden; }
        .two_category article .image a:hover img {
          -webkit-transform: scale(1.05);
          -ms-transform: scale(1.05);
          transform: scale(1.05); }
        .two_category article .image a img {
          display: block;
          width: 100%;
          -webkit-animation-duration: 0.45s;
          -webkit-transition: all 0.45s linear;
          -moz-animation-duration: 0.45s;
          -moz-transition: all 0.45s linear;
          animation-duration: 0.45s;
          -o-transition: all 0.45s linear;
          transition: all 0.45s linear; }
    .two_category article h3 {
      text-align: center; }
      .two_category article h3 a {
        color: #000;
        text-decoration: none;
        font-size: 36px;
        font-weight: 600;
        font-stretch: condensed; }

.brands_right {
  width: calc(38% - 30px); }
  .brands_right header {
    padding: 0 0 127px; }
    .brands_right header h2 {
      padding: 0 0 40px;
      font-size: 60px;
      font-weight: bold;
      font-stretch: condensed;
      line-height: 1.13;
      text-transform: uppercase; }
    .brands_right header p {
      font-size: 20px;
      font-stretch: condensed;
      line-height: 1.4; }

.two_brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start; }
  .two_brand figure {
    width: calc(50% - 30px);
    margin: 0; }
    .two_brand figure .image {
      margin: 0 0 35px; }
      .two_brand figure .image a {
        display: block;
        overflow: hidden; }
        .two_brand figure .image a:hover img {
          -webkit-transform: scale(1.05);
          -ms-transform: scale(1.05);
          transform: scale(1.05); }
        .two_brand figure .image a img {
          display: block;
          width: 100%;
          -webkit-animation-duration: 0.45s;
          -webkit-transition: all 0.45s linear;
          -moz-animation-duration: 0.45s;
          -moz-transition: all 0.45s linear;
          animation-duration: 0.45s;
          -o-transition: all 0.45s linear;
          transition: all 0.45s linear; }
    .two_brand figure figcaption {
      font-size: 24px;
      font-weight: 600;
      font-stretch: condensed;
      text-align: center; }
      .two_brand figure figcaption a {
        color: #000;
        text-decoration: none; }

.shop_second {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch; }

header.left_header {
  width: 100%;
  padding: 0 0 30px;
  text-align: left; }
  header.left_header:first-child {
    padding: 40px 0 30px; }
  header.left_header h3 {
    padding: 0 0 20px;
    font-size: 60px;
    font-weight: bold;
    font-stretch: condensed;
    line-height: 1.13;
    text-transform: uppercase; }
  header.left_header p {
    font-size: 20px;
    font-stretch: condensed;
    line-height: 1.4; }

.wishes_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%; }
  .wishes_block .grid {
    width: 100%; }
    .wishes_block .grid::after {
      content: "";
      display: block;
      height: 0;
      clear: both; }
    .wishes_block .grid figure {
      width: calc(25% - 15px);
      float: left;
      height: 540px;
      margin: 0 0 0 20px; }
      .wishes_block .grid figure:nth-child(4n-3) {
        margin: 0; }
      .wishes_block .grid figure:nth-child(4n) {
        float: right; }
      .wishes_block .grid figure .image {
        margin: 0 0 30px; }
        .wishes_block .grid figure .image a {
          display: block;
          overflow: hidden; }
          .wishes_block .grid figure .image a:hover img {
            -webkit-transform: scale(1.05);
            -ms-transform: scale(1.05);
            transform: scale(1.05); }
          .wishes_block .grid figure .image a img {
            display: block;
            width: 100%;
            height: 400px;
            object-fit: cover;
            -webkit-animation-duration: 0.45s;
            -webkit-transition: all 0.45s linear;
            -moz-animation-duration: 0.45s;
            -moz-transition: all 0.45s linear;
            animation-duration: 0.45s;
            -o-transition: all 0.45s linear;
            transition: all 0.45s linear; }
      .wishes_block .grid figure figcaption {
        font-size: 24px;
        font-weight: 600;
        font-stretch: condensed;
        text-align: center; }
        .wishes_block .grid figure figcaption a {
          color: #000;
          text-decoration: none; }

.one_item {
  width: calc(40% - 0px); }
  .one_item .image {
    margin: 0 0 30px; }
    .one_item .image a {
      display: block;
      overflow: hidden; }
      .one_item .image a:hover img {
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05); }
      .one_item .image a img {
        display: block;
        width: 100%;
        -webkit-animation-duration: 0.45s;
        -webkit-transition: all 0.45s linear;
        -moz-animation-duration: 0.45s;
        -moz-transition: all 0.45s linear;
        animation-duration: 0.45s;
        -o-transition: all 0.45s linear;
        transition: all 0.45s linear; }
  .one_item figcaption {
    font-size: 36px;
    font-weight: 600;
    font-stretch: condensed;
    text-align: center; }
    .one_item figcaption a {
      color: #000;
      text-decoration: none; }

.two_article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 80px 0 100px; }
  .two_article article {
    width: calc(50% - 14px); }
    .two_article article .image {
      margin: 0 0 30px; }
      .two_article article .image a {
        display: block;
        overflow: hidden; }
        .two_article article .image a:hover img {
          -webkit-transform: scale(1.05);
          -ms-transform: scale(1.05);
          transform: scale(1.05); }
      .two_article article .image img {
        display: block;
        width: 100%;
        -webkit-animation-duration: 0.45s;
        -webkit-transition: all 0.45s linear;
        -moz-animation-duration: 0.45s;
        -moz-transition: all 0.45s linear;
        animation-duration: 0.45s;
        -o-transition: all 0.45s linear;
        transition: all 0.45s linear; }
    .two_article article h3 {
      padding: 0 0 20px;
      font-size: 38px;
      font-weight: 600; }
      .two_article article h3 a {
        display: inline-block;
        color: #000;
        text-decoration: none;
        position: relative; }
        .two_article article h3 a::before {
          content: "";
          display: block;
          width: 0;
          height: 2px;
          background: #000;
          position: absolute;
          left: 0;
          bottom: 0;
          -webkit-animation-duration: 0.15s;
          -webkit-transition: all 0.15s linear;
          -moz-animation-duration: 0.15s;
          -moz-transition: all 0.15s linear;
          animation-duration: 0.15s;
          -o-transition: all 0.15s linear;
          transition: all 0.15s linear; }
        .two_article article h3 a:hover::before {
          width: 100%; }
    .two_article article p {
      font-size: 22px;
      font-stretch: condensed;
      line-height: 1.27; }
    .two_article article .link {
      display: block;
      padding: 20px 0 0; }
      .two_article article .link a {
        display: inline-block;
        height: 60px;
        padding: 0 30px;
        border: none;
        color: #fff;
        text-decoration: none;
        font-size: 20px;
        line-height: 60px;
        font-weight: 500;
        font-family: 'Barlow Condensed';
        background: #155294;
        cursor: pointer;
        border-radius: 0px;
        -webkit-box-shadow: 0 30px 40px 0 rgba(74, 126, 178, 0.15);
        box-shadow: 0 30px 40px 0 rgba(74, 126, 178, 0.15);
        -webkit-animation-duration: 0.15s;
        -webkit-transition: all 0.15s linear;
        -moz-animation-duration: 0.15s;
        -moz-transition: all 0.15s linear;
        animation-duration: 0.15s;
        -o-transition: all 0.15s linear;
        transition: all 0.15s linear; }
        .two_article article .link a:hover {
          -webkit-transform: translate(0, -2px);
          -ms-transform: translate(0, -2px);
          transform: translate(0, -2px);
          -webkit-box-shadow: 0 10px 20px 0 rgba(74, 126, 178, 0.15);
          box-shadow: 0 10px 20px 0 rgba(74, 126, 178, 0.15); }

.video_block {
  padding: 120px 0;
  background: #000;
  position: relative;
  overflow: hidden; }
  .video_block::before {
    content: "";
    display: block;
    width: 699px;
    height: 196px;
    position: absolute;
    left: 0;
    bottom: -30px;
    opacity: 0.7;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    background-image: -webkit-linear-gradient(336deg, #ffa600, #ba1848 33%, #7d0093 62%, #2e00a8);
    background-image: -o-linear-gradient(336deg, #ffa600, #ba1848 33%, #7d0093 62%, #2e00a8);
    background-image: linear-gradient(114deg, #ffa600, #ba1848 33%, #7d0093 62%, #2e00a8); }
  .video_block::after {
    content: "";
    display: block;
    width: 500px;
    height: 447px;
    position: absolute;
    right: -150px;
    top: -150px;
    opacity: 0.7;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    background-image: -webkit-linear-gradient(305deg, #ffa600, #ba1848 33%, #7d0093 62%, #2e00a8);
    background-image: -o-linear-gradient(305deg, #ffa600, #ba1848 33%, #7d0093 62%, #2e00a8);
    background-image: linear-gradient(145deg, #ffa600, #ba1848 33%, #7d0093 62%, #2e00a8);
    border-radius: 50%; }
  .video_block > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1; }
  .video_block .video {
    width: 50%; }
    .video_block .video a {
      display: block;
      position: relative; }
      .video_block .video a img {
        display: block;
        width: 100%; }
  .video_block .info {
    width: calc(50% - 50px);
    color: #fff; }
    .video_block .info .brand_image {
      padding: 0 0 54px; }
      .video_block .info .brand_image img {
        max-width: 100%; }
    .video_block .info h2 {
      padding: 0 0 30px;
      font-size: 50px;
      font-weight: bold;
      font-stretch: condensed;
      line-height: 1.2; }
    .video_block .info p {
      font-size: 24px;
      font-stretch: condensed;
      line-height: 1.33; }

.yellow_block {
  padding: 120px 0;
  background: #ffc70c; }
  .yellow_block > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px; }
  .yellow_block article {
    width: calc(50% - 14px); }
    .yellow_block article .image {
      margin: 0 0 30px; }
      .yellow_block article .image a {
        display: block;
        overflow: hidden; }
        .yellow_block article .image a:hover img {
          -webkit-transform: scale(1.05);
          -ms-transform: scale(1.05);
          transform: scale(1.05); }
      .yellow_block article .image img {
        display: block;
        width: 100%;
        -webkit-animation-duration: 0.45s;
        -webkit-transition: all 0.45s linear;
        -moz-animation-duration: 0.45s;
        -moz-transition: all 0.45s linear;
        animation-duration: 0.45s;
        -o-transition: all 0.45s linear;
        transition: all 0.45s linear; }
    .yellow_block article h2 {
      padding: 0 0 20px;
      font-size: 38px;
      font-weight: 600;
      font-stretch: condensed;
      text-transform: uppercase; }
      .yellow_block article h2 a {
        display: inline-block;
        color: #000;
        text-decoration: none;
        position: relative; }
        .yellow_block article h2 a::before {
          content: "";
          display: block;
          width: 0;
          height: 2px;
          background: #000;
          position: absolute;
          left: 0;
          bottom: 0;
          -webkit-animation-duration: 0.15s;
          -webkit-transition: all 0.15s linear;
          -moz-animation-duration: 0.15s;
          -moz-transition: all 0.15s linear;
          animation-duration: 0.15s;
          -o-transition: all 0.15s linear;
          transition: all 0.15s linear; }
        .yellow_block article h2 a:hover::before {
          width: 100%; }
    .yellow_block article p {
      min-height: 81px;
      padding: 0 120px 0 0;
      font-size: 22px;
      font-stretch: condensed;
      line-height: 1.27; }
      .yellow_block article p:empty {
        display: none; }
    .yellow_block article .link {
      display: block;
      padding: 20px 0 0; }
      .yellow_block article .link a {
        display: inline-block;
        height: 60px;
        padding: 0 30px;
        border: none;
        color: #fff;
        text-decoration: none;
        font-size: 20px;
        line-height: 60px;
        font-weight: 500;
        font-family: 'Barlow Condensed';
        background: #155294;
        cursor: pointer;
        border-radius: 0px;
        -webkit-box-shadow: 0 30px 40px 0 rgba(74, 126, 178, 0.15);
        box-shadow: 0 30px 40px 0 rgba(74, 126, 178, 0.15);
        -webkit-animation-duration: 0.15s;
        -webkit-transition: all 0.15s linear;
        -moz-animation-duration: 0.15s;
        -moz-transition: all 0.15s linear;
        animation-duration: 0.15s;
        -o-transition: all 0.15s linear;
        transition: all 0.15s linear; }
        .yellow_block article .link a:hover {
          -webkit-transform: translate(0, -2px);
          -ms-transform: translate(0, -2px);
          transform: translate(0, -2px);
          -webkit-box-shadow: 0 10px 20px 0 rgba(74, 126, 178, 0.15);
          box-shadow: 0 10px 20px 0 rgba(74, 126, 178, 0.15); }

.single_contacts {
  padding: 20px 20px;
  border: 1px solid #d8d8d8;
  margin: 0 0 20px; }
  .single_contacts.blue {
    padding: 0 20px;
    border: none;
    color: #fff; }
    .single_contacts.blue > div {
      max-width: 1030px;
      padding: 30px 30px;
      background: rgba(84, 0, 158, 0.5);
      -moz-border-radius: 48px;
      -webkit-border-radius: 48px;
      -khtml-border-radius: 48px;
      border-radius: 48px; }
    .single_contacts.blue p + a {
      margin: 0 10px 0 0; }
    .single_contacts.blue .phone a {
      color: #fff; }
    .single_contacts.blue .whatsapp a {
      color: #fff; }
  .single_contacts > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 1380px;
    padding: 0 20px;
    margin: 0 auto; }
  .single_contacts .phone {
    font-size: 20px; }
    .single_contacts .phone p {
      display: inline-block;
      padding: 0 16px 0 0;
      font-size: 20px; }
    .single_contacts .phone a {
      display: inline-block;
      margin: 0 0 0 10px;
      color: #000;
      text-decoration: none; }
      .single_contacts .phone a:hover {
        text-decoration: underline; }
      .single_contacts .phone a:first-child {
        margin: 0 10px 0 0; }
  .single_contacts .whatsapp a {
    display: inline-block;
    padding: 0 0 0 30px;
    font-size: 20px;
    color: #000;
    text-decoration: none;
    background: url(../img/whatsapp_icon.svg) no-repeat 0 50%;
    background-size: contain; }
    .single_contacts .whatsapp a:hover {
      text-decoration: underline; }

.single_kids {
  padding: 100px 0 150px; }
  .single_kids > div {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px; }
  .single_kids .brand_image {
    padding: 0 0 60px;
    text-align: center;
    font-size: 0; }
    .single_kids .brand_image img {
      min-width: 280px;
      max-width: 280px; }
  .single_kids h3 {
    padding: 0 115px 80px;
    font-size: 46px;
    font-weight: bold;
    font-stretch: condensed;
    line-height: 1.22;
    text-align: center;
    color: #550d79;
    text-transform: uppercase; }
  .single_kids header {
    width: 100%;
    max-width: 100%;
    padding: 0 0 40px; }
    .single_kids header h3 {
      padding: 0 0 30px;
      font-size: 50px;
      font-weight: bold;
      font-stretch: condensed;
      line-height: 1.2;
      text-transform: uppercase; }
    .single_kids header p {
      padding: 0 0px 0 0;
      font-size: 24px;
      font-stretch: condensed;
      line-height: 1.33; }

.single_video {
  width: 100%;
  max-width: 1110px;
  margin: 0 auto 100px;
  font-size: 0;
  overflow: hidden; }
  .single_video > div {
    position: relative; }
  .single_video iframe {
    position: absolute;
    left: 0;
    top: 0; }
  .single_video a {
    display: block;
    position: relative;
    overflow: hidden;
    -webkit-animation-duration: 0.15s;
    -webkit-transition: all 0.15s linear;
    -moz-animation-duration: 0.15s;
    -moz-transition: all 0.15s linear;
    animation-duration: 0.15s;
    -o-transition: all 0.15s linear;
    transition: all 0.15s linear; }
    .single_video a.hide_me {
      opacity: 0;
      visibility: hidden; }
    .single_video a:hover::after {
      -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
      transform: scale(1.05); }
    .single_video a:hover::before {
      background: rgba(0, 0, 0, 0.2);
      -webkit-box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.8);
      box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.8); }
    .single_video a:hover img {
      -webkit-transform: scale(1.02);
      -ms-transform: scale(1.02);
      transform: scale(1.02); }
    .single_video a::before {
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0);
      position: absolute;
      left: 0;
      top: 0;
      -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0);
      box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0);
      z-index: 1;
      -webkit-animation-duration: 0.15s;
      -webkit-transition: all 0.15s linear;
      -moz-animation-duration: 0.15s;
      -moz-transition: all 0.15s linear;
      animation-duration: 0.15s;
      -o-transition: all 0.15s linear;
      transition: all 0.15s linear; }
    .single_video a::after {
      content: "";
      display: block;
      width: 80px;
      height: 80px;
      background: url(../img/play_white_icon.svg) no-repeat 50%;
      background-size: 100%;
      position: absolute;
      left: calc(50% - 40px);
      top: calc(50% - 40px);
      z-index: 1;
      -webkit-animation-duration: 0.15s;
      -webkit-transition: all 0.15s linear;
      -moz-animation-duration: 0.15s;
      -moz-transition: all 0.15s linear;
      animation-duration: 0.15s;
      -o-transition: all 0.15s linear;
      transition: all 0.15s linear; }
    .single_video a img {
      display: block;
      max-width: 100%;
      -webkit-animation-duration: 0.45s;
      -webkit-transition: all 0.45s linear;
      -moz-animation-duration: 0.45s;
      -moz-transition: all 0.45s linear;
      animation-duration: 0.45s;
      -o-transition: all 0.45s linear;
      transition: all 0.45s linear; }

.kids_carousel {
  margin: 0 auto;
  font-size: 0;
  position: relative; }
  .kids_carousel.hide_me {
    opacity: 0;
    visibility: hidden; }
  .kids_carousel::after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    clear: both; }
  .kids_carousel .flickity-viewport {
    overflow: hidden; }
  .kids_carousel .flickity-prev-next-button {
    display: none; }
    .kids_carousel .flickity-prev-next-button.next {
      display: block;
      width: 48px;
      height: 48px;
      border: none;
      background: #fff url(../img/yellow_arrow.svg) no-repeat 50%;
      background-size: 40%;
      position: absolute;
      right: 10px;
      top: calc(50% - 24px);
      -webkit-box-shadow: 0 1px 3px 0 rgba(1, 1, 1, 0.2);
      box-shadow: 0 1px 3px 0 rgba(1, 1, 1, 0.2);
      cursor: pointer;
      -moz-border-radius: 50%;
      -webkit-border-radius: 50%;
      -khtml-border-radius: 50%;
      border-radius: 50%; }
      .kids_carousel .flickity-prev-next-button.next svg {
        display: none; }
  .kids_carousel > figure:last-child {
    margin: 0; }
  .kids_carousel figure {
    float: left;
    margin: 0 10px 0 0; }
    .kids_carousel figure img {
      width: 270px; }

.cinema_block {
  padding: 120px 0 0; }
  .cinema_block > div {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px; }
  .cinema_block header {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 0 100px;
    text-align: center; }
    .cinema_block header h3 {
      padding: 0 0 50px;
      font-size: 80px;
      font-weight: bold;
      font-stretch: condensed;
      line-height: 1;
      text-transform: uppercase; }
    .cinema_block header p {
      padding: 0 115px;
      font-size: 28px;
      font-stretch: condensed;
      line-height: 1.07; }

.external_link {
  padding: 0 0 120px;
  text-align: center; }
  .external_link a {
    display: inline-block;
    height: 72px;
    padding: 0 40px 0 92px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 24px;
    line-height: 72px;
    font-weight: 600;
    background: #334e9e url(../img/cinema_logo.png) no-repeat 42px 50%;
    -moz-border-radius: 36px;
    -webkit-border-radius: 36px;
    -khtml-border-radius: 36px;
    border-radius: 36px;
    -webkit-animation-duration: 0.15s;
    -webkit-transition: all 0.15s linear;
    -moz-animation-duration: 0.15s;
    -moz-transition: all 0.15s linear;
    animation-duration: 0.15s;
    -o-transition: all 0.15s linear;
    transition: all 0.15s linear; }
    .external_link a:hover {
      background: #4864b5 url(../img/cinema_logo.png) no-repeat 36px 50%; }

.cinema_last {
  background-image: radial-gradient(circle at 52% 199%, #00acec, #334e9e), -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5)));
  background-image: -webkit-radial-gradient(52% 199%, circle, #00acec, #334e9e), -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  background-image: -o-radial-gradient(52% 199%, circle, #00acec, #334e9e), -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  background-image: radial-gradient(circle at 52% 199%, #00acec, #334e9e), linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  padding: 63px 0;
  position: relative; }
  .cinema_last::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    top: 0; }
  .cinema_last > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative; }
  .cinema_last .info {
    width: calc(100% - 320px);
    color: #fff; }
    .cinema_last .info h3 {
      padding: 0 0 20px;
      font-size: 50px;
      font-weight: bold;
      font-stretch: condensed;
      line-height: 1.2; }
    .cinema_last .info p {
      font-size: 24px;
      font-stretch: condensed;
      line-height: 1.25; }
  .cinema_last .icon {
    width: 220px; }
    .cinema_last .icon img {
      display: block;
      width: 100%; }

.movies_carousel {
  position: relative;
  padding: 0 0 210px; }
  .movies_carousel .flickity-viewport {
    overflow: hidden; }
  .movies_carousel .flickity-prev-next-button {
    display: none; }
    .movies_carousel .flickity-prev-next-button.next {
      display: block;
      width: 72px;
      height: 72px;
      border: none;
      background: #fff url(../img/yellow_arrow.svg) no-repeat 50%;
      background-size: 40%;
      position: absolute;
      right: 10px;
      top: calc(50% - 144px);
      -webkit-box-shadow: 0 1px 3px 0 rgba(1, 1, 1, 0.2);
      box-shadow: 0 1px 3px 0 rgba(1, 1, 1, 0.2);
      cursor: pointer;
      -moz-border-radius: 50%;
      -webkit-border-radius: 50%;
      -khtml-border-radius: 50%;
      border-radius: 50%; }
      .movies_carousel .flickity-prev-next-button.next svg {
        display: none; }
  .movies_carousel .flickity-page-dots {
    width: 100%;
    height: 10px;
    position: absolute;
    left: 0;
    bottom: 100px;
    text-align: center; }
    .movies_carousel .flickity-page-dots .dot {
      display: inline-block;
      width: 10px;
      height: 10px;
      background: #dadada;
      margin: 0 16px;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      -khtml-border-radius: 5px;
      border-radius: 5px;
      -webkit-animation-duration: 0.15s;
      -webkit-transition: all 0.15s linear;
      -moz-animation-duration: 0.15s;
      -moz-transition: all 0.15s linear;
      animation-duration: 0.15s;
      -o-transition: all 0.15s linear;
      transition: all 0.15s linear; }
      .movies_carousel .flickity-page-dots .dot.is-selected {
        width: 52px;
        background: #01a8ed; }
  .movies_carousel figure {
    width: 313px;
    height: 640px;
    margin: 0 30px 0 0;
    height: 640px;
    position: relative; }
    .movies_carousel figure .image {
      height: 470px;
      position: relative;
      overflow: hidden; }
      .movies_carousel figure .image img {
        display: block;
        height: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
    .movies_carousel figure .info {
      width: 100%;
      height: 170px;
      text-align: center;
      padding: 30px 20px 0;
      background-image: -webkit-radial-gradient(52% 199%, circle, #00acec, #334e9e);
      background-image: -o-radial-gradient(52% 199%, circle, #00acec, #334e9e);
      background-image: radial-gradient(circle at 52% 199%, #00acec, #334e9e);
      position: absolute;
      left: 0;
      bottom: 0; }
      .movies_carousel figure .info h4 {
        padding: 0 0 30px;
        color: #fff;
        font-size: 28px;
        font-weight: bold;
        font-stretch: condensed;
        line-height: 1.07; }
      .movies_carousel figure .info .link a {
        display: inline-block;
        height: 48px;
        padding: 0 30px;
        font-size: 18px;
        font-weight: 600;
        line-height: 48px;
        color: #fff;
        text-decoration: none;
        text-transform: uppercase;
        -webkit-box-shadow: 0 0 0 1px white;
        box-shadow: 0 0 0 1px white;
        -moz-border-radius: 24px;
        -webkit-border-radius: 24px;
        -khtml-border-radius: 24px;
        border-radius: 24px;
        -webkit-animation-duration: 0.15s;
        -webkit-transition: all 0.15s linear;
        -moz-animation-duration: 0.15s;
        -moz-transition: all 0.15s linear;
        animation-duration: 0.15s;
        -o-transition: all 0.15s linear;
        transition: all 0.15s linear; }
        .movies_carousel figure .info .link a:hover {
          color: #334e9e;
          background: #fff; }

.cinema_info {
  max-width: 1110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0 0 90px;
  margin: 0 auto; }
  .cinema_info .text {
    width: calc(100% - 500px);
    opacity: 0.8;
    font-size: 26px;
    line-height: 1.46; }
    .cinema_info .text:only-child {
      width: 100%; }
  .cinema_info figure {
    width: 428px;
    margin: 0;
    background-image: -webkit-radial-gradient(52% 184%, circle, #00acec, #334e9e);
    background-image: -o-radial-gradient(52% 184%, circle, #00acec, #334e9e);
    background-image: radial-gradient(circle at 52% 184%, #00acec, #334e9e); }
    .cinema_info figure.red {
      background-image: -webkit-radial-gradient(50% 186%, circle, #ef4836, #a8191c);
      background-image: -o-radial-gradient(50% 186%, circle, #ef4836, #a8191c);
      background-image: radial-gradient(circle at 50% 186%, #ef4836, #a8191c); }
      .cinema_info figure.red .info .link a:hover {
        color: #a8191c; }
    .cinema_info figure .image {
      height: 220px;
      background: #eaeaea;
      position: relative;
      overflow: hidden; }
      .cinema_info figure .image img {
        display: block;
        /* width: 100%; */
        position: relative;
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -o-object-fit: cover;
        object-fit: cover;
        height: 220px;
        width: 100%; }
    .cinema_info figure .info {
      padding: 35px 35px 40px;
      color: #fff; }
      .cinema_info figure .info h3 {
        padding: 0 0 20px;
        font-size: 30px;
        font-weight: bold; }
      .cinema_info figure .info p {
        padding: 0 0 30px;
        font-size: 20px;
        color: rgba(255, 255, 255, 0.5); }
      .cinema_info figure .info .link a {
        display: inline-block;
        height: 48px;
        padding: 0 46px;
        font-size: 18px;
        line-height: 48px;
        font-weight: 600;
        color: #fff;
        text-decoration: none;
        -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
        -moz-border-radius: 24px;
        -webkit-border-radius: 24px;
        -khtml-border-radius: 24px;
        border-radius: 24px;
        -webkit-animation-duration: 0.15s;
        -webkit-transition: all 0.15s linear;
        -moz-animation-duration: 0.15s;
        -moz-transition: all 0.15s linear;
        animation-duration: 0.15s;
        -o-transition: all 0.15s linear;
        transition: all 0.15s linear; }
        .cinema_info figure .info .link a:hover {
          color: #334e9e;
          background: #fff;
          -webkit-box-shadow: inset 0 0 0 1px white;
          box-shadow: inset 0 0 0 1px white; }

.news_wrapper {
  padding: 80px 0 150px;
  background: #eaeaea; }
  .news_wrapper.no_flex > div {
    display: block; }
    .news_wrapper.no_flex > div > p + .single_video {
      margin-top: 40px; }
  .news_wrapper.white {
    background: #fff; }
  .news_wrapper > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px; }
  .news_wrapper p {
    padding: 0 0 20px;
    font-size: 24px;
    line-height: 1.25; }
  .news_wrapper em {
    font-style: italic; }
  .news_wrapper h3 {
    padding: 0 0 20px;
    font-size: 28px;
    font-weight: 500; }
  .news_wrapper a {
    color: #000; }
    .news_wrapper a:hover {
      text-decoration: none; }

.news_side {
  width: 100%; }
  .news_side h2 {
    padding: 0 0 30px;
    font-size: 36px;
    font-weight: bold;
    font-stretch: condensed;
    color: #2b2b2b; }

aside.news_aside {
  width: 428px;
  display: none; }
  aside.news_aside h2 {
    padding: 0 0 30px;
    font-size: 36px;
    font-weight: bold;
    font-stretch: condensed;
    color: #2b2b2b; }

.news_grid::after {
  content: "";
  display: block;
  height: 0;
  clear: both; }

.news_grid article {
  width: calc(33.3333% - 16.666px);
  height: 385px;
  float: left;
  background: #fff;
  margin: 0 25px 40px 0; }
  .news_grid article:nth-child(3n) {
    margin: 0 0 40px; }
  .news_grid article .image a {
    display: block;
    height: 205px;
    overflow: hidden; }
    .news_grid article .image a:hover img {
      -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
      transform: scale(1.05); }
    .news_grid article .image a img {
      display: block;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover;
      -webkit-animation-duration: 0.45s;
      -webkit-transition: all 0.45s linear;
      -moz-animation-duration: 0.45s;
      -moz-transition: all 0.45s linear;
      animation-duration: 0.45s;
      -o-transition: all 0.45s linear;
      transition: all 0.45s linear; }
  .news_grid article .info {
    padding: 30px; }
    .news_grid article .info h3 {
      padding: 0 0 15px;
      font-size: 22px;
      font-stretch: condensed;
      line-height: 1.18;
      color: #2b2b2b; }
      .news_grid article .info h3 a {
        color: #2b2b2b;
        text-decoration: none; }
        .news_grid article .info h3 a:hover {
          text-decoration: underline; }
    .news_grid article .info time {
      display: block;
      font-size: 20px;
      font-stretch: condensed;
      color: #8c8c8c; }

.small_news {
  margin: 0 0 30px;
  padding: 30px 25px;
  background: #fff; }
  .small_news ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 0 0 24px;
    margin: 0 0 21px;
    border-bottom: 1px solid #ededed;
    position: relative; }
    .small_news ul li:last-child {
      margin: 0;
      padding: 0;
      border: none; }
    .small_news ul li .image {
      width: 78px; }
      .small_news ul li .image img {
        display: block;
        width: 100%; }
    .small_news ul li h3 {
      width: calc(100% - 98px);
      font-size: 22px;
      font-stretch: condensed;
      line-height: 1.18;
      color: #2b2b2b; }

.single_aside {
  position: relative; }
  .single_aside .bg img {
    display: block;
    width: 100%; }
  .single_aside .brand {
    width: 100%;
    position: absolute;
    left: 0;
    top: 35px;
    text-align: center; }
    .single_aside .brand img {
      max-width: 45%; }
  .single_aside .info {
    width: 100%;
    padding: 0 35px;
    text-align: center;
    color: #fff;
    position: absolute;
    left: 0;
    bottom: 55px; }
    .single_aside .info h3 {
      padding: 0 0 20px;
      font-size: 70px;
      font-weight: bold; }
    .single_aside .info p {
      font-size: 28px;
      font-stretch: condensed;
      line-height: 1.07; }

.pagination {
  padding: 40px 0 0px;
  font-size: 0; }
  .pagination a, .pagination span {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #fff;
    margin: 0 10px 0 0;
    font-size: 18px;
    font-stretch: condensed;
    text-align: center;
    color: #3c3c3c;
    line-height: 50px;
    vertical-align: top;
    text-decoration: none;
    position: relative; }
    .pagination a.prev::before, .pagination span.prev::before {
      content: "";
      display: block;
      width: 7px;
      height: 10px;
      background: url(../img/pagination_left.svg) no-repeat 0 0;
      position: absolute;
      top: 50%;
      left: 50%;
      -ms-transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
    .pagination a.next::before, .pagination span.next::before {
      content: "";
      display: block;
      width: 7px;
      height: 10px;
      background: url(../img/pagination_right.svg) no-repeat 0 0;
      position: absolute;
      top: 50%;
      left: 50%;
      -ms-transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
  .pagination span {
    color: #fff;
    background: #e6ad27; }

.virtual_reality {
  background: #000 url(../img/oval_bg_1.svg) no-repeat 100% 45%;
  position: relative; }

.virtual_first {
  min-height: 100vh;
  position: relative; }
  .virtual_first .bg img {
    display: block;
    width: 100%; }
  .virtual_first header {
    width: 100%;
    text-align: center;
    color: #fff;
    position: absolute;
    top: 210px;
    left: 0; }
    .virtual_first header.new > div::before {
      content: "";
      display: block;
      width: 50px;
      height: 50px;
      background: url(../img/new_icon.svg) no-repeat 50%;
      background-size: contain;
      position: absolute;
      left: -45px;
      top: -30px; }
    .virtual_first header > div {
      display: inline-block;
      position: relative; }
      .virtual_first header > div h1 {
        padding: 0 0 20px;
        font-size: 70px;
        font-weight: bold; }
      .virtual_first header > div p {
        font-size: 28px;
        font-stretch: condensed;
        line-height: 1.07; }
  .virtual_first .info {
    width: 700px;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 480px;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
    .virtual_first .info .brand_logo {
      padding: 0 0 60px; }
    .virtual_first .info h2 {
      font-size: 38px;
      font-weight: 600;
      font-stretch: condensed;
      line-height: 1.32;
      color: #fff;
      text-transform: uppercase; }

.virtual_video {
  max-width: 1070px;
  margin: -360px auto 0;
  padding: 0 20px; }
  .virtual_video > div {
    position: relative; }
  .virtual_video iframe {
    position: absolute;
    left: 0;
    top: 0; }
  .virtual_video a {
    display: block;
    position: relative;
    overflow: hidden;
    -webkit-animation-duration: 0.15s;
    -webkit-transition: all 0.15s linear;
    -moz-animation-duration: 0.15s;
    -moz-transition: all 0.15s linear;
    animation-duration: 0.15s;
    -o-transition: all 0.15s linear;
    transition: all 0.15s linear; }
    .virtual_video a.hide_me {
      opacity: 0;
      visibility: hidden; }
    .virtual_video a:hover::after {
      -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
      transform: scale(1.05); }
    .virtual_video a:hover::before {
      background: rgba(0, 0, 0, 0.2);
      -webkit-box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.8);
      box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.8); }
    .virtual_video a:hover img {
      -webkit-transform: scale(1.02);
      -ms-transform: scale(1.02);
      transform: scale(1.02); }
    .virtual_video a::before {
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0);
      position: absolute;
      left: 0;
      top: 0;
      -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0);
      box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0);
      z-index: 1;
      -webkit-animation-duration: 0.15s;
      -webkit-transition: all 0.15s linear;
      -moz-animation-duration: 0.15s;
      -moz-transition: all 0.15s linear;
      animation-duration: 0.15s;
      -o-transition: all 0.15s linear;
      transition: all 0.15s linear; }
    .virtual_video a::after {
      content: "";
      display: block;
      width: 80px;
      height: 80px;
      background: url(../img/play_white_icon.svg) no-repeat 50%;
      background-size: 100%;
      position: absolute;
      left: calc(50% - 40px);
      top: calc(50% - 40px);
      z-index: 1;
      -webkit-animation-duration: 0.15s;
      -webkit-transition: all 0.15s linear;
      -moz-animation-duration: 0.15s;
      -moz-transition: all 0.15s linear;
      animation-duration: 0.15s;
      -o-transition: all 0.15s linear;
      transition: all 0.15s linear; }
    .virtual_video a img {
      display: block;
      max-width: 100%;
      -webkit-animation-duration: 0.45s;
      -webkit-transition: all 0.45s linear;
      -moz-animation-duration: 0.45s;
      -moz-transition: all 0.45s linear;
      animation-duration: 0.45s;
      -o-transition: all 0.45s linear;
      transition: all 0.45s linear; }

article.virtual_article {
  padding: 140px 0; }
  article.virtual_article > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 1070px;
    margin: 0 auto;
    padding: 0 20px; }
  article.virtual_article .image {
    width: 542px; }
    article.virtual_article .image img {
      width: 100%; }
  article.virtual_article .info {
    width: calc(100% - 592px);
    color: #fff; }
    article.virtual_article .info h3 {
      padding: 0 0 40px;
      font-size: 50px;
      font-weight: bold;
      line-height: 1.12; }
    article.virtual_article .info p {
      font-size: 24px;
      font-stretch: condensed;
      line-height: 1.33; }

.virtual_cinema {
  padding: 0 0 200px; }
  .virtual_cinema > div {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px; }
  .virtual_cinema h3 {
    padding: 0 0 80px;
    text-align: center;
    font-size: 70px;
    font-weight: bold;
    font-stretch: condensed;
    line-height: 1.14;
    color: #fff;
    text-transform: uppercase; }

.virtual_carousel {
  font-size: 0;
  text-align: center;
  position: relative; }
  .virtual_carousel .flickity-viewport {
    overflow: hidden; }
  .virtual_carousel .flickity-prev-next-button {
    display: none; }
    .virtual_carousel .flickity-prev-next-button.next {
      display: block;
      width: 72px;
      height: 72px;
      border: none;
      background: #fff url(../img/yellow_arrow.svg) no-repeat 50%;
      background-size: 40%;
      position: absolute;
      right: 10px;
      top: calc(50% - 36px);
      -webkit-box-shadow: 0 1px 3px 0 rgba(1, 1, 1, 0.2);
      box-shadow: 0 1px 3px 0 rgba(1, 1, 1, 0.2);
      cursor: pointer;
      -moz-border-radius: 50%;
      -webkit-border-radius: 50%;
      -khtml-border-radius: 50%;
      border-radius: 50%; }
      .virtual_carousel .flickity-prev-next-button.next svg {
        display: none; }
  .virtual_carousel article {
    display: inline-block;
    width: 380px;
    margin: 0 30px 0 0; }
    .virtual_carousel article .image {
      height: 400px;
      position: relative;
      overflow: hidden; }
      .virtual_carousel article .image img {
        display: block;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover; }
    .virtual_carousel article .info {
      padding: 30px;
      text-align: center;
      background-image: -webkit-radial-gradient(50% 186%, circle, #ef4836, #a8191c);
      background-image: -o-radial-gradient(50% 186%, circle, #ef4836, #a8191c);
      background-image: radial-gradient(circle at 50% 186%, #ef4836, #a8191c); }
      .virtual_carousel article .info h3 {
        padding: 0 0 30px;
        font-size: 28px;
        font-weight: bold;
        font-stretch: condensed;
        line-height: 1.07;
        color: #fff;
        text-transform: uppercase; }
      .virtual_carousel article .info .link a {
        display: inline-block;
        height: 48px;
        padding: 0 30px;
        color: #fff;
        text-decoration: none;
        font-size: 18px;
        line-height: 48px;
        font-weight: 600;
        font-stretch: condensed;
        text-transform: uppercase;
        -webkit-box-shadow: inset 0 0 0 1px #fff;
        box-shadow: inset 0 0 0 1px #fff;
        -moz-border-radius: 24px;
        -webkit-border-radius: 24px;
        -khtml-border-radius: 24px;
        border-radius: 24px;
        -webkit-animation-duration: 0.15s;
        -webkit-transition: all 0.15s linear;
        -moz-animation-duration: 0.15s;
        -moz-transition: all 0.15s linear;
        animation-duration: 0.15s;
        -o-transition: all 0.15s linear;
        transition: all 0.15s linear; }
        .virtual_carousel article .info .link a:hover {
          color: #a8191c;
          background: #fff; }

.darkness {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  -webkit-animation-duration: 0.15s;
  -webkit-transition: all 0.15s linear;
  -moz-animation-duration: 0.15s;
  -moz-transition: all 0.15s linear;
  animation-duration: 0.15s;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear; }
  .darkness.show_me {
    opacity: 1;
    visibility: visible; }

.video_modal {
  width: calc(100% - 80px);
  height: calc(100% - 80px);
  background: #000;
  position: fixed;
  left: 40px;
  top: 40px;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  -webkit-animation-duration: 0.15s;
  -webkit-transition: all 0.15s linear;
  -moz-animation-duration: 0.15s;
  -moz-transition: all 0.15s linear;
  animation-duration: 0.15s;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear; }
  .video_modal.show_me {
    opacity: 1;
    visibility: visible; }
  .video_modal a.close {
    display: block;
    width: 32px;
    height: 32px;
    position: absolute;
    top: -34px;
    right: -34px;
    opacity: 0.8;
    -webkit-animation-duration: 0.15s;
    -webkit-transition: all 0.15s linear;
    -moz-animation-duration: 0.15s;
    -moz-transition: all 0.15s linear;
    animation-duration: 0.15s;
    -o-transition: all 0.15s linear;
    transition: all 0.15s linear; }
    .video_modal a.close:hover {
      opacity: 1; }
    .video_modal a.close::before {
      content: "";
      display: block;
      width: 100%;
      height: 2px;
      background: #fff;
      position: absolute;
      left: 0;
      top: calc(50% - 1px);
      -moz-border-radius: 2px;
      -webkit-border-radius: 2px;
      -khtml-border-radius: 2px;
      border-radius: 2px;
      -moz-transform: rotate(45deg);
      /* Для Firefox */
      -ms-transform: rotate(45deg);
      /* Для IE */
      -webkit-transform: rotate(45deg);
      /* Для Safari, Chrome, iOS */
      -o-transform: rotate(45deg);
      /* Для Opera */
      transform: rotate(45deg); }
    .video_modal a.close::after {
      content: "";
      display: block;
      width: 100%;
      height: 2px;
      background: #fff;
      position: absolute;
      left: 0;
      top: calc(50% - 1px);
      -moz-border-radius: 2px;
      -webkit-border-radius: 2px;
      -khtml-border-radius: 2px;
      border-radius: 2px;
      -moz-transform: rotate(-45deg);
      /* Для Firefox */
      -ms-transform: rotate(-45deg);
      /* Для IE */
      -webkit-transform: rotate(-45deg);
      /* Для Safari, Chrome, iOS */
      -o-transform: rotate(-45deg);
      /* Для Opera */
      transform: rotate(-45deg); }

.shop_dining {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch; }

.fill_side {
  width: 60%; }
  .fill_side > div {
    padding: 70px 110px 80px 160px;
    color: #fff; }
  .fill_side .brand_image {
    padding: 0 0 30px; }
    .fill_side .brand_image img {
      max-height: 100px;
      max-width: calc(100vw - 80px); }
  .fill_side h1 {
    padding: 0 0 30px;
    font-size: 60px;
    font-weight: bold;
    line-height: 1.13; }
  .fill_side h2 {
    font-size: 24px;
    line-height: 1.25; }

.white_side {
  width: 40%; }
  .white_side > div {
    padding: 100px 120px 80px 110px; }
  .white_side .contacts {
    padding: 0 0 25px; }
    .white_side .contacts ul li {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      -ms-flex-line-pack: stretch;
      align-content: stretch;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      text-decoration: none;
      padding: 0 0 15px; }
      .white_side .contacts ul li a, .white_side .contacts ul li strong {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-flex-line-pack: stretch;
        align-content: stretch;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-decoration: none; }
      .white_side .contacts ul li span {
        display: inline-block;
        padding: 0 0 0 18px;
        font-size: 24px;
        font-weight: bold;
        line-height: 1.25; }
  .white_side .text {
    font-size: 24px;
    line-height: 1.25; }

.top_slider {
  position: relative; }
  .top_slider .flickity-viewport {
    overflow: hidden; }
  .top_slider .flickity-page-dots {
    width: 200px;
    height: 8px;
    text-align: center;
    position: absolute;
    left: calc(50% - 100px);
    bottom: 40px; }
    .top_slider .flickity-page-dots .dot {
      display: inline-block;
      width: 8px;
      height: 8px;
      margin: 0 12px;
      background: #fff;
      opacity: 0.3;
      -webkit-animation-duration: 0.15s;
      -webkit-transition: all 0.15s linear;
      -moz-animation-duration: 0.15s;
      -moz-transition: all 0.15s linear;
      animation-duration: 0.15s;
      -o-transition: all 0.15s linear;
      transition: all 0.15s linear; }
      .top_slider .flickity-page-dots .dot.is-selected {
        opacity: 1;
        -webkit-transform: scale(1.4);
        -ms-transform: scale(1.4);
        transform: scale(1.4); }
  .top_slider figure {
    width: 100%;
    margin: 0; }
    .top_slider figure::before {
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      position: absolute;
      left: 0;
      top: 0; }
    .top_slider figure img {
      display: block;
      width: 100%; }

a.full_link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0; }

a.mobile_link {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2; }

.mobile .main_blur {
  overflow: hidden; }

.mobile .preload_wrapper {
  display: none; }

.mobile #preloader {
  display: none; }

nav.mobile_nav {
  display: none;
  height: auto;
  position: relative;
  top: 100px; }
  nav.mobile_nav ul li {
    width: 100%;
    text-align: center;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3); }
    nav.mobile_nav ul li:first-child {
      border: none; }
    nav.mobile_nav ul li a {
      display: block;
      padding: 20px 30px 20px;
      text-align: center;
      color: #fff;
      text-decoration: none; }
    nav.mobile_nav ul li strong {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -ms-flex-line-pack: stretch;
      align-content: stretch;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      height: 100px;
      font-size: 36px;
      font-weight: bold;
      line-height: 1.39;
      text-transform: uppercase; }
    nav.mobile_nav ul li span {
      font-size: 22px;
      line-height: 1.36; }
    nav.mobile_nav ul li img {
      display: inline-block;
      min-width: 90px;
      min-height: 60px;
      max-height: 60px; }

.feedback_block {
  max-width: 730px;
  margin: 0 auto;
  padding: 40px 0; }
  .feedback_block header {
    padding: 0 0 50px;
    text-align: center; }
    .feedback_block header h2 {
      padding: 0 0 40px;
      font-size: 46px;
      font-weight: bold;
      line-height: 1.2; }
    .feedback_block header p {
      font-size: 18px;
      line-height: 1.44; }
  .feedback_block * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }

.feedback_form .input {
  margin: 0 0 25px; }
  .feedback_form .input input {
    display: block;
    width: 100%;
    height: 64px;
    padding: 0 25px;
    border: solid 1px #d8d8d8;
    font-family: 'Barlow Condensed';
    font-size: 18px;
    font-weight: 500;
    background: #fff;
    border-radius: 4px;
    -webkit-animation-duration: 0.15s;
    -webkit-transition: all 0.15s linear;
    -moz-animation-duration: 0.15s;
    -moz-transition: all 0.15s linear;
    animation-duration: 0.15s;
    -o-transition: all 0.15s linear;
    transition: all 0.15s linear; }
    .feedback_form .input input::-webkit-input-placeholder {
      color: rgba(0, 0, 0, 0.5); }
    .feedback_form .input input::-moz-placeholder {
      color: rgba(0, 0, 0, 0.5); }
    .feedback_form .input input:-ms-input-placeholder {
      color: rgba(0, 0, 0, 0.5); }
    .feedback_form .input input:-moz-placeholder {
      color: rgba(0, 0, 0, 0.5); }
    .feedback_form .input input:focus {
      border-color: #fff;
      -webkit-box-shadow: 0 2px 20px 0 rgba(74, 130, 195, 0.25);
      box-shadow: 0 2px 20px 0 rgba(74, 130, 195, 0.25); }

.feedback_form .textarea {
  margin: 0 0 60px; }
  .feedback_form .textarea textarea {
    display: block;
    width: 100%;
    height: 180px;
    padding: 20px 25px;
    border: solid 1px #d8d8d8;
    font-family: 'Barlow Condensed';
    font-size: 18px;
    font-weight: 500;
    background: #fff;
    resize: none;
    border-radius: 4px;
    -webkit-animation-duration: 0.15s;
    -webkit-transition: all 0.15s linear;
    -moz-animation-duration: 0.15s;
    -moz-transition: all 0.15s linear;
    animation-duration: 0.15s;
    -o-transition: all 0.15s linear;
    transition: all 0.15s linear; }
    .feedback_form .textarea textarea::-webkit-input-placeholder {
      color: rgba(0, 0, 0, 0.5); }
    .feedback_form .textarea textarea::-moz-placeholder {
      color: rgba(0, 0, 0, 0.5); }
    .feedback_form .textarea textarea:-ms-input-placeholder {
      color: rgba(0, 0, 0, 0.5); }
    .feedback_form .textarea textarea:-moz-placeholder {
      color: rgba(0, 0, 0, 0.5); }
    .feedback_form .textarea textarea:focus {
      border-color: #fff;
      -webkit-box-shadow: 0 2px 20px 0 rgba(74, 130, 195, 0.25);
      box-shadow: 0 2px 20px 0 rgba(74, 130, 195, 0.25); }

.feedback_form .submit {
  text-align: right; }
  .feedback_form .submit a, .feedback_form .submit button {
    display: inline-block;
    height: 60px;
    padding: 0 30px;
    border: none;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    font-family: 'Barlow Condensed';
    background: #155294;
    cursor: pointer;
    border-radius: 0px;
    -webkit-box-shadow: 0 30px 40px 0 rgba(74, 126, 178, 0.15);
    box-shadow: 0 30px 40px 0 rgba(74, 126, 178, 0.15);
    -webkit-animation-duration: 0.15s;
    -webkit-transition: all 0.15s linear;
    -moz-animation-duration: 0.15s;
    -moz-transition: all 0.15s linear;
    animation-duration: 0.15s;
    -o-transition: all 0.15s linear;
    transition: all 0.15s linear; }
    .feedback_form .submit a:hover, .feedback_form .submit button:hover {
      -webkit-transform: translate(0, -2px);
      -ms-transform: translate(0, -2px);
      transform: translate(0, -2px);
      -webkit-box-shadow: 0 10px 20px 0 rgba(74, 126, 178, 0.15);
      box-shadow: 0 10px 20px 0 rgba(74, 126, 178, 0.15); }

.feedback_form p {
  padding: 10px 0 20px;
  font-size: 18px;
  font-weight: 500; }

.feedback_form .error {
  border-color: #f00 !important; }
  .feedback_form .error + strong {
    border-left-color: #f00; }

.three_input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  padding: 0 0 25px; }
  .three_input label {
    display: block;
    width: calc(33.333% - 13.333px);
    position: relative; }
    .three_input label input {
      display: block;
      width: 100%;
      height: 64px;
      padding: 0 65px 0 20px;
      border: solid 1px #d8d8d8;
      font-family: 'Barlow Condensed';
      font-size: 18px;
      font-weight: 500;
      background: #fff;
      border-radius: 4px;
      -webkit-animation-duration: 0.15s;
      -webkit-transition: all 0.15s linear;
      -moz-animation-duration: 0.15s;
      -moz-transition: all 0.15s linear;
      animation-duration: 0.15s;
      -o-transition: all 0.15s linear;
      transition: all 0.15s linear; }
      .three_input label input::-webkit-input-placeholder {
        color: rgba(0, 0, 0, 0.5); }
      .three_input label input::-moz-placeholder {
        color: rgba(0, 0, 0, 0.5); }
      .three_input label input:-ms-input-placeholder {
        color: rgba(0, 0, 0, 0.5); }
      .three_input label input:-moz-placeholder {
        color: rgba(0, 0, 0, 0.5); }
      .three_input label input:focus {
        border-color: #fff;
        -webkit-box-shadow: 0 2px 20px 0 rgba(74, 130, 195, 0.25);
        box-shadow: 0 2px 20px 0 rgba(74, 130, 195, 0.25); }
    .three_input label strong {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -ms-flex-line-pack: stretch;
      align-content: stretch;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      width: 64px;
      height: 64px;
      border: 1px solid #d8d8d8;
      background: #f9f9f9;
      position: absolute;
      right: 0;
      top: 0;
      border-radius: 0 4px 4px 0; }
      .three_input label strong span {
        display: inline-block;
        font-size: 16px;
        font-weight: 600;
        color: #524e54;
        position: relative;
        left: -4px; }
        .three_input label strong span sup {
          font-size: 10px;
          position: absolute;
          left: calc(100% + 2px);
          top: -4px; }

.with_select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0 0 25px; }
  .with_select select {
    display: block;
    width: 230px;
    height: 64px;
    height: 64px;
    padding: 0 65px 0 20px;
    border: solid 1px #d8d8d8;
    font-family: 'Barlow Condensed';
    font-size: 18px;
    font-weight: 500;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff url(./img/select_pt.svg) no-repeat calc(100% - 20px) 50%;
    background-size: 7px;
    border-radius: 4px;
    -webkit-animation-duration: 0.15s;
    -webkit-transition: all 0.15s linear;
    -moz-animation-duration: 0.15s;
    -moz-transition: all 0.15s linear;
    animation-duration: 0.15s;
    -o-transition: all 0.15s linear;
    transition: all 0.15s linear; }
    .with_select select::-webkit-input-placeholder {
      color: rgba(0, 0, 0, 0.5); }
    .with_select select::-moz-placeholder {
      color: rgba(0, 0, 0, 0.5); }
    .with_select select:-ms-input-placeholder {
      color: rgba(0, 0, 0, 0.5); }
    .with_select select:-moz-placeholder {
      color: rgba(0, 0, 0, 0.5); }
    .with_select select:focus {
      border-color: #fff;
      -webkit-box-shadow: 0 2px 20px 0 rgba(74, 130, 195, 0.25);
      box-shadow: 0 2px 20px 0 rgba(74, 130, 195, 0.25); }
  .with_select input {
    display: block;
    width: calc(100% - 250px);
    height: 64px;
    padding: 0 65px 0 20px;
    border: solid 1px #d8d8d8;
    font-family: 'Barlow Condensed';
    font-size: 18px;
    font-weight: 500;
    background: #fff;
    border-radius: 4px;
    -webkit-animation-duration: 0.15s;
    -webkit-transition: all 0.15s linear;
    -moz-animation-duration: 0.15s;
    -moz-transition: all 0.15s linear;
    animation-duration: 0.15s;
    -o-transition: all 0.15s linear;
    transition: all 0.15s linear; }
    .with_select input::-webkit-input-placeholder {
      color: rgba(0, 0, 0, 0.5); }
    .with_select input::-moz-placeholder {
      color: rgba(0, 0, 0, 0.5); }
    .with_select input:-ms-input-placeholder {
      color: rgba(0, 0, 0, 0.5); }
    .with_select input:-moz-placeholder {
      color: rgba(0, 0, 0, 0.5); }
    .with_select input:focus {
      border-color: #fff;
      -webkit-box-shadow: 0 2px 20px 0 rgba(74, 130, 195, 0.25);
      box-shadow: 0 2px 20px 0 rgba(74, 130, 195, 0.25); }

@media (min-width: 240px) and (max-width: 640px) {
  .feedback_block {
    padding: 0; }
    .feedback_block header {
      padding: 0 0 30px; }
      .feedback_block header h2 {
        font-size: 32px;
        padding: 0 0 30px; }
  .three_input {
    display: block;
    padding: 0 0 15px; }
    .three_input label {
      width: 100%;
      margin: 0 0 10px; }
  .with_select {
    display: block; }
    .with_select input {
      width: 100%; }
    .with_select select {
      width: 100%;
      margin: 0 0 10px; }
  .feedback_form .textarea {
    margin: 0 0 30px; } }

.preload_wrapper {
  width: 100%;
  height: 100%;
  background: #000;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3;
  -webkit-clip-path: circle(70.7% at 50% 50%);
  clip-path: circle(70.7% at 50% 50%);
  -webkit-animation-duration: 0.9s;
  -webkit-transition: all 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -moz-animation-duration: 0.9s;
  -moz-transition: all 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation-duration: 0.9s;
  -o-transition: all 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transition-delay: 0.15s;
  -o-transition-delay: 0.15s;
  transition-delay: 0.15s; }
  .preload_wrapper.hide_me {
    -webkit-clip-path: circle(0% at 50% 50%);
    clip-path: circle(0% at 50% 50%); }
    .preload_wrapper.hide_me #preloader {
      -webkit-transform: scale(2);
      -ms-transform: scale(2);
      transform: scale(2);
      opacity: 0; }

#preloader {
  background-color: black;
  width: 30%;
  height: 30%;
  display: block;
  overflow: hidden;
  text-align: center;
  opacity: 1;
  left: 35%;
  top: 35%;
  position: absolute;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-animation-duration: 0.75s;
  -webkit-transition: all 0.75s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-animation-duration: 0.75s;
  -moz-transition: all 0.75s cubic-bezier(0.645, 0.045, 0.355, 1);
  animation-duration: 0.75s;
  -o-transition: all 0.75s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.75s cubic-bezier(0.645, 0.045, 0.355, 1); }

.price_schedule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 100px 0 0; }
  .price_schedule .table_block {
    width: calc(100% - 342px);
    padding: 40px 40px 30px;
    border: 1px solid #d8d8d8;
    background: #f7f7f7;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    -khtml-border-radius: 2px;
    border-radius: 2px; }
    .price_schedule .table_block h3 {
      padding: 0 0 30px;
      font-size: 50px;
      font-weight: bold;
      line-height: 1.2;
      color: #000;
      text-transform: none; }
    .price_schedule .table_block .table {
      overflow-x: auto;
      padding: 0 0 10px; }
      .price_schedule .table_block .table::-webkit-scrollbar {
        width: 2px;
        height: 6px; }
      .price_schedule .table_block .table::-webkit-scrollbar-button {
        width: 0px;
        height: 0px; }
      .price_schedule .table_block .table::-webkit-scrollbar-thumb {
        background: #ccc;
        border: 0px none #ffffff;
        border-radius: 50px; }
      .price_schedule .table_block .table::-webkit-scrollbar-track {
        background: #f0f0f0;
        border: 0px none #ffffff;
        border-radius: 48px; }
      .price_schedule .table_block .table::-webkit-scrollbar-corner {
        background: transparent; }
      .price_schedule .table_block .table table {
        width: 100%;
        min-width: 600px; }
        .price_schedule .table_block .table table tr:first-child td {
          padding: 0 27px 20px; }
        .price_schedule .table_block .table table tr td {
          padding: 0 27px 10px;
          font-size: 24px;
          line-height: 1.33;
          white-space: nowrap;
          border-left: 1px solid #d8d8d8;
          vertical-align: top; }
          .price_schedule .table_block .table table tr td:first-child {
            white-space: normal;
            border: none;
            padding: 0 27px 10px 0; }
          .price_schedule .table_block .table table tr td strong {
            font-weight: 600; }

.download_block {
  width: 314px;
  position: relative;
  overflow: hidden;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  border-radius: 2px; }
  .download_block .bg {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; }
    .download_block .bg img {
      -o-object-fit: cover;
      object-fit: cover;
      height: 100%;
      width: 100%; }
  .download_block h3 {
    width: 100%;
    padding: 40px 30px 0;
    font-size: 50px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    position: absolute;
    left: 0;
    top: 0; }
  .download_block .link {
    position: absolute;
    left: 30px;
    bottom: 30px; }
    .download_block .link a {
      display: inline-block;
      height: 53px;
      padding: 0 20px 0 40px;
      font-size: 20px;
      line-height: 53px;
      font-weight: 600;
      color: #fff;
      background: #e6ad27 url(../img/download_white_icon.svg) no-repeat 20px 50%;
      background-size: 12px;
      text-decoration: none;
      -webkit-animation-duration: 0.15s;
      -webkit-transition: all 0.15s linear;
      -moz-animation-duration: 0.15s;
      -moz-transition: all 0.15s linear;
      animation-duration: 0.15s;
      -o-transition: all 0.15s linear;
      transition: all 0.15s linear; }
      .download_block .link a:hover {
        background: #ffbf29 url(../img/download_white_icon.svg) no-repeat 20px 50%;
        background-size: 12px; }

.hidden_name {
  display: none; }
