@font-face {
  font-family: "Raleway";
  src: url(/static/fonts/Raleway-Bold.woff);
  font-style: normal;
  font-weight: 700; }

@font-face {
  font-family: "Raleway";
  src: url(/static/fonts/Raleway-SemiBold.woff);
  font-style: normal;
  font-weight: 600; }

@font-face {
  font-family: "Raleway";
  src: url(/static/fonts/Raleway-Medium.woff);
  font-style: normal;
  font-weight: 500; }

@font-face {
  font-family: "Raleway";
  src: url(/static/fonts/Raleway-Regular.woff);
  font-style: normal;
  font-weight: 400; }

@font-face {
  font-family: "Raleway";
  src: url(/static/fonts/Raleway-Light.woff);
  font-style: normal;
  font-weight: 300; }

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-overflow-scrolling: touch; }
  *:focus {
    outline: none; }
  *::before, *::after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }

html, body {
  position: relative; }

body {
  min-height: 100vh; }

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%; }
  html * {
    -webkit-box-sizing: inherit;
            box-sizing: inherit;
    outline: none; }

blockquote, q {
  quotes: none; }

input, textarea, select, option, button, label {
  border: 0;
  border-radius: 0;
  outline: none;
  font-family: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }

textarea {
  resize: none; }

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

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

ul, li, nav, ol, menu {
  list-style: none; }

table {
  width: 100%;
  border-collapse: collapse; }

label, button, [type="submit"] {
  cursor: pointer;
  background: none; }

fieldset {
  border: none; }

[class^='icon'] {
  display: inline-block;
  position: relative;
  fill: currentColor; }

img {
  display: block;
  max-width: 100%; }

body {
  font: 14px "Raleway", sans-serif;
  color: #2B2727;
  line-height: 1.7142;
  font-weight: 300; }

.grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none; }
  .grid_white .grid__line {
    background-color: rgba(255, 255, 255, 0.1); }
  .grid .container {
    height: 100%;
    max-width: 1232px;
    padding: 0; }
  .grid__row {
    position: relative;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 16px; }
  .grid__line {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: rgba(43, 39, 39, 0.1);
    width: 1px; }
    .grid__line:nth-child(1) {
      left: 0; }
    .grid__line:nth-child(2) {
      left: 33.33%; }
      @media (max-width: 1024px) {
        .grid__line:nth-child(2) {
          left: 50%; } }
      @media (max-width: 767px) {
        .grid__line:nth-child(2) {
          display: none; } }
    .grid__line:nth-child(3) {
      left: 66.66%; }
      @media (max-width: 1024px) {
        .grid__line:nth-child(3) {
          left: 100%; } }
    .grid__line:nth-child(4) {
      left: 100%; }
      @media (max-width: 1024px) {
        .grid__line:nth-child(4) {
          display: none; } }

.btn {
  position: relative;
  display: table;
  height: 42px;
  line-height: 40px;
  padding: 0 35px;
  border: 1px solid #2B2727;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  font-family: "Arsenal", sans-serif;
  color: #2B2727;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }
  .btn__text {
    position: relative;
    z-index: 2; }
  .btn:before {
    position: absolute;
    content: '';
    width: 0%;
    height: 100%;
    background: #2B2727;
    top: 0;
    left: auto;
    right: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 1; }
  .btn:hover {
    color: white;
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); }
    .btn:hover:before {
      width: 100%;
      left: 0;
      right: 0; }
  .btn:active {
    -webkit-box-shadow: none;
            box-shadow: none;
    background-color: transparent;
    -webkit-transform: translate(0, 1px);
        -ms-transform: translate(0, 1px);
            transform: translate(0, 1px);
    color: #9DA7B9; }
  .btn_center {
    margin: 0 auto; }
  .btn_white {
    color: #fff;
    border: 1px solid #fff; }
    .btn_white:before {
      background-color: #fff; }
    .btn_white:hover {
      color: #2B2727; }
  .btn_lg {
    line-height: 64px;
    height: 64px; }

.body-fixed {
  overflow: hidden;
  margin-right: 17px; }
  .body-fixed.mob-device {
    position: fixed;
    width: 100%;
    height: 100%; }

.page {
  position: relative; }
  .page_offset {
    padding-top: 60px; }
    @media (max-width: 1024px) {
      .page_offset {
        padding-top: 38px; } }
    @media (max-width: 767px) {
      .page_offset {
        padding-top: 18px; } }

.main-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh; }
  .main-content__inner {
    padding-top: 100px;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto; }
    @media (max-width: 1024px) {
      .main-content__inner {
        padding-top: 78px; } }
    @media (max-width: 767px) {
      .main-content__inner {
        padding-top: 55px; } }

.page-nav {
  padding-bottom: 50px; }
  @media (max-width: 1024px) {
    .page-nav {
      padding-bottom: 38px; } }
  .page-nav__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .page-nav__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 0; }
    .page-nav__btn:hover .icon {
      fill: #2B2727; }
  .page-nav__text:after {
    content: "" attr(data-text) "";
    font-size: 12px;
    line-height: 12px;
    text-transform: uppercase;
    font-family: "Arsenal", sans-serif;
    padding: 0 25px; }
    @media (max-width: 1024px) {
      .page-nav__text:after {
        padding: 0 15px; } }
    @media (max-width: 767px) {
      .page-nav__text:after {
        content: "" attr(data-mobtext) "";
        padding: 0 10px; } }

.slick-slider {
  cursor: ew-resize; }

.slider-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  width: 400px;
  bottom: 0;
  left: 0; }
  @media (max-width: 1200px) {
    .slider-actions {
      width: 300px; } }
  @media (max-width: 767px) {
    .slider-actions {
      position: relative;
      width: 100%;
      padding: 0 16px; } }
  .slider-actions__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .slider-actions__next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer; }
    .slider-actions__next:hover .icon-arrow {
      fill: #2B2727; }
  .slider-actions__counter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 15px;
    font-family: "Arsenal", sans-serif; }
  .slider-actions__cur, .slider-actions__total {
    position: relative; }
  .slider-actions__cur {
    padding-right: 15px; }
    @media (max-width: 767px) {
      .slider-actions__cur {
        padding-right: 8px; } }
  .slider-actions__total {
    padding-left: 20px;
    color: #9DA7B9; }
    @media (max-width: 767px) {
      .slider-actions__total {
        padding-left: 13px; } }
    .slider-actions__total:before {
      content: '/';
      position: absolute;
      left: 0; }

.header__lang {
  height: 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column; }
  @media (max-width: 767px) {
    .header__lang {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-flow: row;
              flex-flow: row;
      width: 35px;
      height: auto;
      margin-right: 18px; } }
  .header__lang:hover .lang__item:nth-child(2) {
    opacity: 1;
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0); }
  .header__lang .lang__item {
    -webkit-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden; }
    .header__lang .lang__item:not(:last-child) {
      margin-bottom: 8px; }
    .header__lang .lang__item.is-active {
      font-weight: bold; }
    .header__lang .lang__item:nth-child(2) {
      opacity: 0;
      -webkit-transform: translateY(5px);
          -ms-transform: translateY(5px);
              transform: translateY(5px); }
    @media (max-width: 767px) {
      .header__lang .lang__item:not(:last-child) {
        margin-bottom: 0;
        margin-right: 8px; }
      .header__lang .lang__item:nth-child(2) {
        opacity: 1;
        -webkit-transform: translate(0);
            -ms-transform: translate(0);
                transform: translate(0); } }

.menu__lang {
  width: 35px; }
  .menu__lang:hover .lang__item:nth-child(2) {
    opacity: 1;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }
  .menu__lang .lang__item {
    -webkit-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden; }
    .menu__lang .lang__item:not(:last-child) {
      margin-right: 8px; }
    .menu__lang .lang__item.is-active {
      font-weight: bold; }
    .menu__lang .lang__item:nth-child(2) {
      opacity: 0;
      -webkit-transform: translateX(5px);
          -ms-transform: translateX(5px);
              transform: translateX(5px); }
    @media (max-width: 767px) {
      .menu__lang .lang__item:not(:last-child) {
        margin-right: 8px; }
      .menu__lang .lang__item:nth-child(2) {
        opacity: 1;
        -webkit-transform: translate(0);
            -ms-transform: translate(0);
                transform: translate(0); } }

.lang {
  position: relative;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .lang__item {
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase; }

.page-content {
  padding: 68px 0; }
  @media (max-width: 1024px) {
    .page-content {
      padding: 58px 0; } }
  @media (max-width: 767px) {
    .page-content {
      padding: 48px 0; } }
  .page-content_about {
    padding: 120px; }
    @media (max-width: 1024px) {
      .page-content_about {
        padding: 90px 0; } }
    @media (max-width: 767px) {
      .page-content_about {
        padding: 60px 0; } }
  .page-content__title {
    margin-bottom: 50px; }
    @media (max-width: 1024px) {
      .page-content__title {
        margin-bottom: 40px; } }
    @media (max-width: 767px) {
      .page-content__title {
        margin-bottom: 32px; } }
  .page-content__desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 1024px) {
      .page-content__desc {
        margin: 0 -25px; } }
    @media (max-width: 767px) {
      .page-content__desc {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column;
                flex-flow: column;
        margin: 0; } }
  .page-content__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 1200px) {
      .page-content__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column;
                flex-flow: column; } }
  .page-content__dates {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media (max-width: 1200px) {
      .page-content__dates {
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        margin-top: 32px;
        padding: 0 45px; } }
    @media (max-width: 1024px) {
      .page-content__dates {
        padding: 0; } }
    @media (max-width: 767px) {
      .page-content__dates {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; } }

.date:not(:last-child) {
  margin-right: 98px; }

@media (max-width: 1440px) {
  .date:not(:last-child) {
    margin-right: 65px; } }

@media (max-width: 767px) {
  .date:not(:last-child) {
    margin-right: 30px; } }

.b-content {
  padding: 0 45px; }
  .b-content__inner {
    max-width: 310px;
    width: 100%; }
    @media (max-width: 767px) {
      .b-content__inner {
        max-width: 100%; } }
  @media (max-width: 1200px) {
    .b-content {
      padding: 0 45px; } }
  @media (max-width: 1024px) {
    .b-content {
      padding: 0 25px; } }
  @media (max-width: 767px) {
    .b-content {
      padding: 0; }
      .b-content:not(:last-child) {
        margin-bottom: 18px; } }

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

.social__item:not(:last-child) {
  margin-right: 20px; }

.social__link {
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .social__link:hover .icon {
    fill: #9DA7B9; }

.footer {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto; }

.container {
  position: relative;
  max-width: 1232px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px; }
  .container_full_width {
    width: 100%;
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto;
    padding: 0; }
  .container__inner {
    position: relative;
    width: 100%;
    max-width: 1336px;
    margin-right: auto;
    margin-left: auto;
    margin-right: -16px; }
    @media (max-width: 767px) {
      .container__inner {
        margin-right: 0; } }
  .container_left .container__inner {
    margin-right: auto;
    margin-left: -16px; }
  .container_no_gutters {
    padding: 0; }

.page .v-select {
  margin: 0 -16px;
  border-top: 1px solid rgba(43, 39, 39, 0.1);
  border-bottom: 1px solid rgba(43, 39, 39, 0.1); }
  .page .v-select .dropdown-toggle {
    position: relative;
    border: none;
    height: 64px;
    line-height: 62px; }
  .page .v-select .selected-tag {
    padding-left: 25px;
    margin: 0;
    height: 64px;
    line-height: 62px;
    font-size: 16px;
    pointer-events: none; }
  .page .v-select .form-control {
    padding: 0 25px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%; }
  .page .v-select input[type=search],
  .page .v-select input[type=search]:focus {
    padding: 0 25px; }
  .page .v-select .open-indicator {
    bottom: auto;
    top: 30px;
    right: 25px; }
    .page .v-select .open-indicator:before {
      border-width: 2px 2px 0 0;
      -webkit-transform-origin: 70% 35%;
          -ms-transform-origin: 70% 35%;
              transform-origin: 70% 35%; }
  .page .v-select .clear {
    display: none; }
  .page .v-select .dropdown-menu {
    border-radius: 0;
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    top: 65px;
    margin-bottom: 0;
    padding-bottom: 0; }
    .page .v-select .dropdown-menu .active a {
      background-color: #CED3DC;
      color: #fff; }
    .page .v-select .dropdown-menu .highlight > a {
      background-color: #CED3DC;
      color: #fff; }
    .page .v-select .dropdown-menu li {
      position: relative; }
      .page .v-select .dropdown-menu li:before {
        content: '';
        position: absolute;
        left: 15px;
        height: 100%;
        width: 1px;
        background-color: rgba(43, 39, 39, 0.1);
        z-index: 1; }
      .page .v-select .dropdown-menu li a,
      .page .v-select .dropdown-menu li span {
        display: block;
        position: relative;
        font-size: 16px;
        padding: 18px 25px;
        -webkit-transition: all 0.15s ease-in-out 0s;
        -o-transition: all 0.15s ease-in-out 0s;
        transition: all 0.15s ease-in-out 0s;
        -webkit-backface-visibility: hidden;
                backface-visibility: hidden;
        border-bottom: 1px solid rgba(43, 39, 39, 0.1); }
  .page .v-select.open .open-indicator {
    bottom: auto; }

.title {
  display: inline-block;
  font-weight: 400;
  font-family: "Arsenal", sans-serif; }
  .title_xl {
    font-size: 72px;
    line-height: 72px; }
    @media (max-width: 1024px) {
      .title_xl {
        font-size: 61px;
        line-height: 65px; } }
    @media (max-width: 767px) {
      .title_xl {
        font-size: 50px;
        line-height: 58px; } }
  .title_lg {
    font-size: 50px;
    line-height: 58px; }
    @media (max-width: 1024px) {
      .title_lg {
        font-size: 42px;
        line-height: 51px; } }
    @media (max-width: 767px) {
      .title_lg {
        font-size: 35px;
        line-height: 44px; } }
  .title_md {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 1px; }
    @media (max-width: 1024px) {
      .title_md {
        font-size: 18px;
        line-height: 22px; } }
    @media (max-width: 767px) {
      .title_md {
        font-size: 16px;
        line-height: 18px; } }
  .title_sm {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 1px; }
    @media (max-width: 767px) {
      .title_sm {
        letter-spacing: 0.7px; } }
  .title_up {
    text-transform: uppercase; }

.more {
  position: relative;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 26px;
  padding-right: 24px; }
  .more:after {
    position: absolute;
    top: calc(50% - 5px);
    right: 0;
    content: '';
    width: 7px;
    height: 7px;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    border-top: 2px solid #9DA7B9;
    border-right: 2px solid #9DA7B9;
    border-bottom: 0;
    border-left: 0;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s; }
  .more:hover:after {
    -webkit-transform: translateX(5px) rotate(45deg);
        -ms-transform: translateX(5px) rotate(45deg);
            transform: translateX(5px) rotate(45deg); }
  @media (max-width: 767px) {
    .more {
      font-size: 14px;
      line-height: 24px; } }

.date {
  display: inline-block;
  font-family: "Arsenal", sans-serif;
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.4px; }
  .date span {
    color: #9DA7B9;
    margin-right: 24px; }
  @media (max-width: 1024px) {
    .date {
      font-size: 14px;
      line-height: 14px; } }

.text {
  font-size: 14px;
  line-height: 24px;
  font-weight: 300; }
  .text_left {
    text-align: left; }
  .text_center {
    text-align: center; }
  .text_right {
    text-align: right; }

.desc {
  font-size: 16px;
  line-height: 26px;
  font-weight: bold;
  color: #9DA7B9;
  font-family: "Arsenal", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px; }
  @media (max-width: 767px) {
    .desc {
      font-size: 14px;
      line-height: 26px;
      letter-spacing: 0; } }
  .desc p:not(:last-child) {
    padding-bottom: 28px; }
  @media (max-width: 767px) {
    .desc p:not(:last-child) {
      padding-bottom: 22px; } }

.b-content h1 {
  font-weight: 400;
  font-size: 72px;
  line-height: 68px; }
  @media (max-width: 1024px) {
    .b-content h1 {
      font-size: 61px;
      line-height: 65px; } }
  @media (max-width: 767px) {
    .b-content h1 {
      font-size: 50px;
      line-height: 58px; } }

.b-content h2 {
  font-size: 50px;
  line-height: 58px; }
  @media (max-width: 1024px) {
    .b-content h2 {
      font-size: 42px;
      line-height: 51px; } }
  @media (max-width: 767px) {
    .b-content h2 {
      font-size: 35px;
      line-height: 44px; } }

.b-content h3 {
  font-weight: bold;
  font-size: 22px;
  line-height: 25px; }
  @media (max-width: 1024px) {
    .b-content h3 {
      font-size: 18px;
      line-height: 22px; } }
  @media (max-width: 767px) {
    .b-content h3 {
      font-size: 16px;
      line-height: 18px; } }

.b-content h4 {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1px; }
  @media (max-width: 767px) {
    .b-content h4 {
      letter-spacing: 0.7px; } }

.b-content h5 {
  font-weight: 400;
  font-size: 14px;
  line-height: 25px; }

.b-content h6 {
  font-weight: 400;
  font-size: 12px;
  line-height: 24px; }

.b-content ul, .b-content ol {
  font-weight: 300; }
  .b-content ul li, .b-content ol li {
    position: relative;
    padding-left: 16px;
    font-size: 14px;
    line-height: 24px; }
    .b-content ul li:before, .b-content ol li:before {
      content: '';
      position: absolute;
      left: 0;
      top: 8px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: #646464; }

.b-content p {
  font-weight: 300; }
  .b-content p:not(:last-child) {
    padding-bottom: 28px; }
  @media (max-width: 767px) {
    .b-content p:not(:last-child) {
      padding-bottom: 22px; } }

.icon {
  -webkit-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; }
  .icon-facebook {
    width: 7px;
    height: 15px; }
  .icon-insta {
    width: 15px;
    height: 15px; }
  .icon-pinterest {
    width: 12px;
    height: 15px; }
  .icon-arrow {
    width: 36px;
    height: 25px;
    fill: #CED3DC;
    cursor: pointer; }
    .icon-arrow_left {
      -webkit-transform: rotate(-180deg);
          -ms-transform: rotate(-180deg);
              transform: rotate(-180deg); }
    @media (max-width: 767px) {
      .icon-arrow {
        width: 26px;
        height: 18px; } }
  .icon-phone {
    width: 14px;
    height: 14px; }
  .icon-email {
    width: 16px;
    height: 12px; }
  .icon-zoom {
    width: 32px;
    height: 34px; }

.icon-checkbox {
  width: 25px;
  height: 25px;
  border: 2px solid #9DA7B9;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; }
  .icon-checkbox::before {
    content: '';
    width: 100%;
    height: 100%;
    background-size: 18px 14px;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    -webkit-transform: scale(0.5);
        -ms-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden; }

.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .checkbox__input {
    display: none; }
    .checkbox__input:checked ~ .checkbox__icon .icon-checkbox::before {
      opacity: 1;
      -webkit-transform: scale(1);
          -ms-transform: scale(1);
              transform: scale(1); }
  .checkbox__icon {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .checkbox_has_error .icon-checkbox {
    border: 2px solid #FC4A66; }

.radiobox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .radiobox__input {
    display: none; }
    .radiobox__input:checked + .radiobox__icon::before {
      -webkit-transform: scale(1);
          -ms-transform: scale(1);
              transform: scale(1);
      opacity: 1; }

.icon-radiobox {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; }
  .icon-radiobox:before {
    width: 70%;
    height: 70%;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    opacity: 0;
    background-color: #000;
    border-radius: 50%;
    -webkit-transform: scale(0.2);
        -ms-transform: scale(0.2);
            transform: scale(0.2);
    -webkit-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden; }

.tabs-content {
  position: relative; }
  .tabs-content__item {
    top: 0;
    left: 0;
    width: 100%;
    position: absolute;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
            transform: translateY(30px); }
    .tabs-content__item.is-active {
      opacity: 1;
      overflow: visible;
      pointer-events: auto;
      -webkit-transform: translateY(0);
          -ms-transform: translateY(0);
              transform: translateY(0);
      -webkit-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease;
      -webkit-backface-visibility: hidden;
              backface-visibility: hidden; }

.tabs-menu {
  overflow-x: auto;
  border-top: 1px solid rgba(43, 39, 39, 0.1);
  border-bottom: 1px solid rgba(43, 39, 39, 0.1); }
  .tabs-menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 1200px) {
      .tabs-menu__list {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; } }
  .tabs-menu__wrap {
    margin-bottom: 40px; }
  .tabs-menu__link {
    position: relative;
    display: block;
    color: rgba(43, 39, 39, 0.6);
    position: relative;
    white-space: nowrap;
    padding: 36.5px 10px;
    text-align: center; }
    .tabs-menu__link:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 0px;
      background-color: rgba(43, 39, 39, 0.5); }
    .tabs-menu__link:hover {
      color: #2b2727; }
      .tabs-menu__link:hover:after {
        height: 2px; }
    @media (max-width: 1024px) {
      .tabs-menu__link {
        padding: 30px 10px; } }
    @media (max-width: 767px) {
      .tabs-menu__link {
        padding: 23px 10px; } }
  .tabs-menu__item {
    width: 400px;
    position: relative; }
    .tabs-menu__item.active .tabs-menu__link {
      font-weight: bold;
      color: #2B2727; }
      .tabs-menu__item.active .tabs-menu__link:after {
        height: 2px;
        background-color: #2B2727; }

.intro {
  position: relative;
  border-bottom: 1px solid rgba(43, 39, 39, 0.1);
  overflow: hidden; }
  @media (max-width: 767px) {
    .intro {
      padding-top: 30px; } }
  .intro_slider:after {
    content: '';
    position: absolute;
    width: 100%;
    bottom: 76px;
    left: 0;
    border-bottom: 1px solid rgba(43, 39, 39, 0.1); }
  .intro__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column; }
    @media (max-width: 1024px) {
      .intro__content {
        padding: 0 16px; } }
  .intro__inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media (max-width: 767px) {
      .intro__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column;
                flex-flow: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start; } }
  .intro__left {
    max-width: 312px;
    width: 100%;
    margin-right: 88px; }
    @media (max-width: 1024px) {
      .intro__left {
        margin-right: 60px;
        max-width: 274px; } }
    @media (max-width: 767px) {
      .intro__left {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 32px;
        padding: 0; } }
  .intro__right {
    width: 936px;
    height: 605px; }
    @media (max-width: 1024px) {
      .intro__right {
        width: 645px;
        height: 424px; } }
    @media (max-width: 767px) {
      .intro__right {
        max-width: 100%;
        width: 100%;
        height: 240px; } }
    .intro__right_no_img {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
  .intro__more {
    margin-top: 88px;
    display: inline-block;
    -ms-flex-item-align: start;
        align-self: flex-start; }
    @media (max-width: 767px) {
      .intro__more {
        margin-top: 32px; } }
  .intro__actions {
    padding-bottom: 15px; }
    @media (max-width: 767px) {
      .intro__actions {
        margin-top: 28px; } }
    .intro__actions .slider-actions__nav {
      display: none; }
      @media (max-width: 767px) {
        .intro__actions .slider-actions__nav {
          display: block; } }
  .intro__img-wrap {
    height: 100%;
    display: block; }
  .intro__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover"; }
  .intro__date {
    -ms-flex-item-align: start;
        align-self: flex-start;
    margin-top: 64px; }
    @media (max-width: 1024px) {
      .intro__date {
        margin-top: 44px; } }
    @media (max-width: 767px) {
      .intro__date {
        margin-top: 24px; } }
  .intro__subtitle {
    margin-bottom: 10px; }
  .intro__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 125px;
    cursor: pointer;
    z-index: 1;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.4)), color-stop(20%, transparent), color-stop(80%, transparent), to(rgba(0, 0, 0, 0.4))), -webkit-gradient(linear, left top, right top, color-stop(35%, rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.52)));
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.4), transparent 20%, transparent 80%, rgba(0, 0, 0, 0.4)), -webkit-linear-gradient(left, rgba(0, 0, 0, 0.1) 35%, rgba(0, 0, 0, 0.52));
    background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.4), transparent 20%, transparent 80%, rgba(0, 0, 0, 0.4)), -o-linear-gradient(left, rgba(0, 0, 0, 0.1) 35%, rgba(0, 0, 0, 0.52));
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.4), transparent 20%, transparent 80%, rgba(0, 0, 0, 0.4)), linear-gradient(90deg, rgba(0, 0, 0, 0.1) 35%, rgba(0, 0, 0, 0.52)); }
    .intro__nav .icon-arrow {
      fill: #fff; }
    .intro__nav:hover {
      opacity: 1; }
    @media (max-width: 767px) {
      .intro__nav {
        display: none; } }

.intro-bar {
  position: absolute;
  left: 0;
  width: 300px;
  bottom: 0; }
  @media (max-width: 767px) {
    .intro-bar {
      margin-left: 16px; } }
  .intro-bar__inner {
    height: 2px;
    background-color: #2B2727; }

.intro-back {
  position: absolute;
  top: 45px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media (max-width: 767px) {
    .intro-back {
      position: relative;
      top: auto;
      left: auto;
      padding: 0 16px;
      margin-bottom: 45px; } }
  .intro-back__text {
    font-size: 12px;
    text-transform: uppercase; }
  .intro-back__icon {
    margin-right: 25px; }
  .intro-back:hover .intro-back__icon {
    fill: #2B2727; }

.gallery__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover"; }

.gallery__img-wrap {
  cursor: url(/static/img/cursor.png), auto;
  position: relative; }
  @media (max-width: 767px) {
    .gallery__img-wrap {
      height: 215px; }
      .gallery__img-wrap:not(:last-child) {
        margin-bottom: 15px; }
      .gallery__img-wrap:nth-child(1) {
        height: 245px; }
      .gallery__img-wrap:nth-child(2) {
        height: 185px; } }
  .gallery__img-wrap:hover .gallery__overlay {
    opacity: 1; }

.gallery__overlay {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: rgba(43, 39, 39, 0.7);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; }
  .gallery__overlay-icon {
    margin-right: 8px; }
  .gallery__overlay-text {
    font-size: 12px;
    line-height: 12px;
    text-transform: uppercase;
    font-family: "Arsenal", sans-serif;
    letter-spacing: 0.6px; }

.gallery__row {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-auto-rows: minmax(215px, auto);
  grid-auto-flow: dense; }
  .gallery__row:not(:last-child) {
    margin-bottom: 20px; }
  @media (max-width: 767px) {
    .gallery__row {
      display: block; } }
  .gallery__row:nth-child(odd) .gallery__img-wrap:nth-child(1) {
    grid-column: 2/-1;
    grid-row: 1/3; }
  .gallery__row:nth-child(even) .gallery__img-wrap:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3; }

body .pswp:after {
  content: '';
  position: absolute;
  top: 0;
  left: 100px;
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1; }
  @media (max-width: 1024px) {
    body .pswp:after {
      left: 75px; } }
  @media (max-width: 767px) {
    body .pswp:after {
      display: none; } }

body .pswp:before {
  content: '';
  position: absolute;
  top: 0;
  right: 100px;
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1; }
  @media (max-width: 1024px) {
    body .pswp:before {
      right: 75px; } }
  @media (max-width: 767px) {
    body .pswp:before {
      display: none; } }

body .pswp__bg {
  background: rgba(43, 39, 39, 0.95); }
  body .pswp__bg:before {
    content: '';
    position: absolute;
    width: 100%;
    top: 100px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1; }
    @media (max-width: 1024px) {
      body .pswp__bg:before {
        top: 75px; } }
    @media (max-width: 767px) {
      body .pswp__bg:before {
        top: 50px; } }
  body .pswp__bg:after {
    content: '';
    position: absolute;
    bottom: 100px;
    width: 100%;
    left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1); }
    @media (max-width: 1024px) {
      body .pswp__bg:after {
        bottom: 75px; } }
    @media (max-width: 767px) {
      body .pswp__bg:after {
        bottom: 50px; } }

body .pswp__button--arrow--left:before, body .pswp__button--arrow--right:before {
  background-color: transparent;
  width: 36px;
  height: 25px; }
  @media (max-width: 1200px) {
    body .pswp__button--arrow--left:before, body .pswp__button--arrow--right:before {
      width: 32px;
      height: 24px; } }
  @media (max-width: 1024px) {
    body .pswp__button--arrow--left:before, body .pswp__button--arrow--right:before {
      display: none; } }

body .pswp__button--arrow--left:before {
  background: url(/static/img/arrow.svg) center no-repeat;
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
  left: 35px; }
  @media (max-width: 1200px) {
    body .pswp__button--arrow--left:before {
      left: 15px; } }

body .pswp__button--arrow--right:before {
  background: url(/static/img/arrow.svg) center no-repeat;
  right: 35px; }
  @media (max-width: 1200px) {
    body .pswp__button--arrow--right:before {
      right: 15px; } }

body .pswp__caption {
  background-color: transparent; }
  body .pswp__caption__center {
    max-width: 564px;
    padding: 27px 10px;
    color: #ffffff;
    font-size: 14px;
    line-height: 24px; }
    @media (max-width: 767px) {
      body .pswp__caption__center {
        padding: 15px 10px; } }

body .pswp__ui--fit .pswp__top-bar, body .pswp__ui--fit .pswp__caption {
  background-color: transparent; }

body .pswp__counter {
  font-family: "Arsenal", sans-serif;
  color: #ffffff;
  letter-spacing: 7.5px; }

body .pswp__img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover"; }

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (-o-min-device-pixel-ratio: 35/32), (min-resolution: 105dpi), (-o-min-device-pixel-ratio: 11/10), (min-resolution: 1.1dppx) {
  body .pswp.pswp--svg .pswp__button--arrow--left:before, body .pswp.pswp--svg .pswp__button--arrow--right:before {
    background: url(/static/img/arrow.svg) center no-repeat; } }

.sidebar {
  max-width: 400px;
  width: 100%; }
  .sidebar__title {
    margin-bottom: 82px; }
    @media (max-width: 1200px) {
      .sidebar__title {
        margin-bottom: 40px; } }
    @media (max-width: 767px) {
      .sidebar__title {
        margin-bottom: 18px; } }
  .sidebar__inner {
    position: relative;
    margin-right: auto; }

.sidebar-menu {
  position: relative; }
  .sidebar-menu:hover .sidebar-menu__item:not(:hover) .sidebar-menu__link {
    color: rgba(43, 39, 39, 0.5); }
  .sidebar-menu__item {
    display: block;
    position: relative; }
    .sidebar-menu__item:not(:last-child) {
      padding-bottom: 15px; }
      .sidebar-menu__item:not(:last-child):after {
        content: '';
        position: absolute;
        background-image: url(/static/img/dash.svg);
        background-repeat: repeat;
        height: 95%;
        left: 0;
        top: 13px;
        width: 8px; }
        @media (max-width: 767px) {
          .sidebar-menu__item:not(:last-child):after {
            top: 10px;
            height: 95%; } }
  .sidebar-menu__link {
    display: inline-block;
    position: relative;
    color: #2B2727;
    padding-left: 56px;
    cursor: pointer; }
    .sidebar-menu__link:before {
      content: '';
      position: absolute;
      left: 0;
      top: 13px;
      width: 26px;
      height: 3px;
      background-color: #2B2727;
      -webkit-transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
      -o-transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
      transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
      -webkit-backface-visibility: hidden;
              backface-visibility: hidden; }
      @media (max-width: 767px) {
        .sidebar-menu__link:before {
          top: 8px; } }
    .sidebar-menu__link:hover:before {
      width: 58px; }
    .sidebar-menu__link:hover .sidebar-menu__text {
      display: inline-block;
      -webkit-transform: translateX(32px);
          -ms-transform: translateX(32px);
              transform: translateX(32px); }
  .sidebar-menu__text {
    display: inline-block;
    -webkit-transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
    -o-transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden; }
    .sidebar-menu__text::first-letter {
      text-transform: uppercase; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 25px rgba(50, 50, 50, 0.016);
          box-shadow: 0 5px 25px rgba(50, 50, 50, 0.016);
  padding: 22px 0;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  -o-transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1), -webkit-transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  border-bottom: 1px solid rgba(43, 39, 39, 0.1); }
  @media (max-width: 1024px) {
    .header {
      padding: 18px 0; } }
  @media (max-width: 767px) {
    .header {
      padding: 12px 0; } }
  .header__inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    max-width: 1340px;
    margin-right: auto;
    margin-left: auto;
    height: 100%;
    padding: 0 16px;
    z-index: 11; }
  .header__left {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
  .header__left {
    position: relative; }
  .header__right {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
  .header__social {
    margin-right: 40px; }
    @media (max-width: 1024px) {
      .header__social {
        display: none; } }
  .header_fixed {
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    transition: -webkit-transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    -o-transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1), -webkit-transform 0.5s cubic-bezier(0.7, 0, 0.3, 1); }

.logo {
  display: table;
  width: 198px;
  height: 50px; }
  @media (max-width: 1024px) {
    .logo {
      width: 150px;
      height: 40px; } }
  @media (max-width: 767px) {
    .logo {
      width: 105px;
      height: 30px; } }

.menu-icon {
  position: relative;
  padding: 5px;
  cursor: pointer;
  color: #2B2727;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .menu-icon__box {
    position: relative;
    width: 25px;
    height: 18px;
    margin-right: 14px; }
    @media (max-width: 767px) {
      .menu-icon__box {
        margin-right: 0; } }
  .menu-icon__text {
    font-size: 15px;
    line-height: 15px;
    text-transform: uppercase; }
    @media (max-width: 767px) {
      .menu-icon__text {
        display: none; } }
  .menu-icon__item {
    width: 25px;
    height: 2px;
    position: absolute;
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    background-color: #2B2727;
    left: 0; }
    .menu-icon__item:nth-child(1) {
      top: 0;
      width: 50%; }
    .menu-icon__item:nth-child(2) {
      top: 8px; }
    .menu-icon__item:nth-child(3) {
      width: 50%;
      top: 16px; }
  .menu-icon:hover .menu-icon__item:nth-child(1) {
    width: 100%; }
  .menu-icon:hover .menu-icon__item:nth-child(2) {
    width: 50%; }
  .menu-icon:hover .menu-icon__item:nth-child(3) {
    width: 100%; }

.menu-opened .menu {
  opacity: 1;
  pointer-events: auto; }
  .menu-opened .menu:after {
    width: 100%;
    -webkit-transition-delay: 0.75s;
         -o-transition-delay: 0.75s;
            transition-delay: 0.75s; }
  .menu-opened .menu__footer:after {
    width: 100%;
    -webkit-transition-delay: 0.75s;
         -o-transition-delay: 0.75s;
            transition-delay: 0.75s; }
  .menu-opened .menu__bg:before, .menu-opened .menu__bg:after {
    height: 100%;
    -webkit-transition-delay: 0.75s;
         -o-transition-delay: 0.75s;
            transition-delay: 0.75s; }
    @media (max-width: 767px) {
      .menu-opened .menu__bg:before, .menu-opened .menu__bg:after {
        height: 200%; } }

.menu-opened .menu-icon__box {
  -webkit-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; }

.menu-opened .menu-icon__item {
  background-color: #fff; }
  .menu-opened .menu-icon__item:nth-child(1) {
    -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
            transform: translate3d(0, 8px, 0) rotate(45deg);
    width: 100%; }
  .menu-opened .menu-icon__item:nth-child(2) {
    -webkit-transform: translate3d(-20px, 0, 0);
            transform: translate3d(-20px, 0, 0);
    opacity: 0; }
  .menu-opened .menu-icon__item:nth-child(3) {
    width: 100%;
    -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
            transform: translate3d(0, -8px, 0) rotate(-45deg); }

.menu-opened .menu-icon__text {
  color: #ffffff; }

.menu-opened .menu-icon:hover .menu-icon__box {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg); }

.menu-opened .menu__item:nth-child(1) .menu__link {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: 0.2s, opacity 0.55s ease-in-out, color 0.3s ease, -webkit-transform 0.55s ease 0.33s;
  transition: 0.2s, opacity 0.55s ease-in-out, color 0.3s ease, -webkit-transform 0.55s ease 0.33s;
  -o-transition: transform 0.55s ease 0.33s, 0.2s, opacity 0.55s ease-in-out, color 0.3s ease;
  transition: transform 0.55s ease 0.33s, 0.2s, opacity 0.55s ease-in-out, color 0.3s ease;
  transition: transform 0.55s ease 0.33s, 0.2s, opacity 0.55s ease-in-out, color 0.3s ease, -webkit-transform 0.55s ease 0.33s; }

.menu-opened .menu__item:nth-child(2) .menu__link {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: 0.2s, opacity 0.55s ease-in-out, color 0.3s ease, -webkit-transform 0.55s ease 0.4s;
  transition: 0.2s, opacity 0.55s ease-in-out, color 0.3s ease, -webkit-transform 0.55s ease 0.4s;
  -o-transition: transform 0.55s ease 0.4s, 0.2s, opacity 0.55s ease-in-out, color 0.3s ease;
  transition: transform 0.55s ease 0.4s, 0.2s, opacity 0.55s ease-in-out, color 0.3s ease;
  transition: transform 0.55s ease 0.4s, 0.2s, opacity 0.55s ease-in-out, color 0.3s ease, -webkit-transform 0.55s ease 0.4s; }

.menu-opened .menu__item:nth-child(3) .menu__link {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: 0.2s, opacity 0.55s ease-in-out, color 0.3s ease, -webkit-transform 0.55s ease 0.47s;
  transition: 0.2s, opacity 0.55s ease-in-out, color 0.3s ease, -webkit-transform 0.55s ease 0.47s;
  -o-transition: transform 0.55s ease 0.47s, 0.2s, opacity 0.55s ease-in-out, color 0.3s ease;
  transition: transform 0.55s ease 0.47s, 0.2s, opacity 0.55s ease-in-out, color 0.3s ease;
  transition: transform 0.55s ease 0.47s, 0.2s, opacity 0.55s ease-in-out, color 0.3s ease, -webkit-transform 0.55s ease 0.47s; }

.menu-opened .menu__item:nth-child(4) .menu__link {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: 0.2s, opacity 0.55s ease-in-out, color 0.3s ease, -webkit-transform 0.55s ease 0.54s;
  transition: 0.2s, opacity 0.55s ease-in-out, color 0.3s ease, -webkit-transform 0.55s ease 0.54s;
  -o-transition: transform 0.55s ease 0.54s, 0.2s, opacity 0.55s ease-in-out, color 0.3s ease;
  transition: transform 0.55s ease 0.54s, 0.2s, opacity 0.55s ease-in-out, color 0.3s ease;
  transition: transform 0.55s ease 0.54s, 0.2s, opacity 0.55s ease-in-out, color 0.3s ease, -webkit-transform 0.55s ease 0.54s; }

.menu-opened .menu__item:nth-child(5) .menu__link {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: 0.2s, opacity 0.55s ease-in-out, color 0.3s ease, -webkit-transform 0.55s ease 0.61s;
  transition: 0.2s, opacity 0.55s ease-in-out, color 0.3s ease, -webkit-transform 0.55s ease 0.61s;
  -o-transition: transform 0.55s ease 0.61s, 0.2s, opacity 0.55s ease-in-out, color 0.3s ease;
  transition: transform 0.55s ease 0.61s, 0.2s, opacity 0.55s ease-in-out, color 0.3s ease;
  transition: transform 0.55s ease 0.61s, 0.2s, opacity 0.55s ease-in-out, color 0.3s ease, -webkit-transform 0.55s ease 0.61s; }

.menu-opened .menu__item:nth-child(6) .menu__link {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: 0.2s, opacity 0.55s ease-in-out, color 0.3s ease, -webkit-transform 0.55s ease 0.68s;
  transition: 0.2s, opacity 0.55s ease-in-out, color 0.3s ease, -webkit-transform 0.55s ease 0.68s;
  -o-transition: transform 0.55s ease 0.68s, 0.2s, opacity 0.55s ease-in-out, color 0.3s ease;
  transition: transform 0.55s ease 0.68s, 0.2s, opacity 0.55s ease-in-out, color 0.3s ease;
  transition: transform 0.55s ease 0.68s, 0.2s, opacity 0.55s ease-in-out, color 0.3s ease, -webkit-transform 0.55s ease 0.68s; }

.menu-opened .menu__item:nth-child(7) .menu__link {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: 0.2s, opacity 0.55s ease-in-out, color 0.3s ease, -webkit-transform 0.55s ease 0.75s;
  transition: 0.2s, opacity 0.55s ease-in-out, color 0.3s ease, -webkit-transform 0.55s ease 0.75s;
  -o-transition: transform 0.55s ease 0.75s, 0.2s, opacity 0.55s ease-in-out, color 0.3s ease;
  transition: transform 0.55s ease 0.75s, 0.2s, opacity 0.55s ease-in-out, color 0.3s ease;
  transition: transform 0.55s ease 0.75s, 0.2s, opacity 0.55s ease-in-out, color 0.3s ease, -webkit-transform 0.55s ease 0.75s; }

.menu-opened .menu__item:nth-child(8) .menu__link {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: 0.2s, opacity 0.55s ease-in-out, color 0.3s ease, -webkit-transform 0.55s ease 0.82s;
  transition: 0.2s, opacity 0.55s ease-in-out, color 0.3s ease, -webkit-transform 0.55s ease 0.82s;
  -o-transition: transform 0.55s ease 0.82s, 0.2s, opacity 0.55s ease-in-out, color 0.3s ease;
  transition: transform 0.55s ease 0.82s, 0.2s, opacity 0.55s ease-in-out, color 0.3s ease;
  transition: transform 0.55s ease 0.82s, 0.2s, opacity 0.55s ease-in-out, color 0.3s ease, -webkit-transform 0.55s ease 0.82s; }

.menu-opened .menu__item:nth-child(9) .menu__link {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: 0.2s, opacity 0.55s ease-in-out, color 0.3s ease, -webkit-transform 0.55s ease 0.89s;
  transition: 0.2s, opacity 0.55s ease-in-out, color 0.3s ease, -webkit-transform 0.55s ease 0.89s;
  -o-transition: transform 0.55s ease 0.89s, 0.2s, opacity 0.55s ease-in-out, color 0.3s ease;
  transition: transform 0.55s ease 0.89s, 0.2s, opacity 0.55s ease-in-out, color 0.3s ease;
  transition: transform 0.55s ease 0.89s, 0.2s, opacity 0.55s ease-in-out, color 0.3s ease, -webkit-transform 0.55s ease 0.89s; }

.menu-opened .menu__item:nth-child(10) .menu__link {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: 0.2s, opacity 0.55s ease-in-out, color 0.3s ease, -webkit-transform 0.55s ease 0.96s;
  transition: 0.2s, opacity 0.55s ease-in-out, color 0.3s ease, -webkit-transform 0.55s ease 0.96s;
  -o-transition: transform 0.55s ease 0.96s, 0.2s, opacity 0.55s ease-in-out, color 0.3s ease;
  transition: transform 0.55s ease 0.96s, 0.2s, opacity 0.55s ease-in-out, color 0.3s ease;
  transition: transform 0.55s ease 0.96s, 0.2s, opacity 0.55s ease-in-out, color 0.3s ease, -webkit-transform 0.55s ease 0.96s; }

.menu-opened .header__center, .menu-opened .header__right {
  opacity: 0;
  pointer-events: none; }

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: #ffffff;
  overflow: hidden;
  -webkit-transition: opacity 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: opacity 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: opacity 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
  pointer-events: none;
  background: url(/static/img/menu-bg.jpg) center no-repeat;
  background-size: cover; }
  .menu:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(43, 39, 39, 0.7);
    pointer-events: none; }
  .menu:after {
    content: '';
    position: absolute;
    top: 100px;
    left: 0;
    width: 0;
    height: 1px;
    -webkit-transition: width 1s linear;
    -o-transition: width 1s linear;
    transition: width 1s linear;
    background-color: rgba(255, 255, 255, 0.1); }
    @media (max-width: 1024px) {
      .menu:after {
        top: 75px; } }
    @media (max-width: 767px) {
      .menu:after {
        top: 50px; } }
  .menu__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
    .menu__bg:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 100px;
      width: 1px;
      height: 0;
      -webkit-transition: height 1s linear;
      -o-transition: height 1s linear;
      transition: height 1s linear;
      background-color: rgba(255, 255, 255, 0.1); }
      @media (max-width: 1024px) {
        .menu__bg:after {
          left: 75px; } }
      @media (max-width: 767px) {
        .menu__bg:after {
          left: 50px; } }
    .menu__bg:before {
      content: '';
      position: absolute;
      top: 0;
      right: 100px;
      width: 1px;
      height: 0;
      -webkit-transition: height 1s linear;
      -o-transition: height 1s linear;
      transition: height 1s linear;
      z-index: 1;
      background-color: rgba(255, 255, 255, 0.1); }
      @media (max-width: 1024px) {
        .menu__bg:before {
          right: 75px; } }
      @media (max-width: 767px) {
        .menu__bg:before {
          right: 50px; } }
  .menu__social {
    margin-right: 50px; }
    @media (max-width: 767px) {
      .menu__social {
        margin-right: 38px; } }
  .menu__nav {
    margin-bottom: 26px; }
  .menu__inner {
    overflow-y: auto;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 75px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center; }
    @media (max-width: 767px) {
      .menu__inner {
        padding: 50px; } }
  .menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column; }
    .menu__list:hover .menu__item:not(:hover) .menu__link {
      color: rgba(255, 255, 255, 0.4); }
  .menu__item {
    overflow: hidden;
    z-index: 1;
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    -o-transition: transform 0.2s ease;
    transition: transform 0.2s ease;
    transition: transform 0.2s ease, -webkit-transform 0.2s ease; }
    .menu__item:not(:last-child) {
      margin-bottom: 20px; }
    .menu__item:hover {
      -webkit-transform: scale(1.1);
          -ms-transform: scale(1.1);
              transform: scale(1.1); }
    .menu__item_submenu .mob-menu__link {
      padding-right: 20px; }
  .menu__link {
    position: relative;
    display: inline-block;
    cursor: pointer;
    font-size: 50px;
    line-height: 58px;
    font-weight: 400;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.7);
    font-family: "Arsenal", sans-serif;
    -webkit-transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
            transform: translateY(100%);
    z-index: 1;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden; }
    .menu__link:first-letter {
      text-transform: uppercase; }
    @media (max-width: 1024px) {
      .menu__link {
        font-size: 42px;
        line-height: 51px; } }
    @media (max-width: 767px) {
      .menu__link {
        font-size: 35px;
        line-height: 44px; } }
  .menu__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    padding: 39px 0 35px;
    color: #fff; }
    .menu__footer:after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 0;
      height: 1px;
      -webkit-transition: width 1s ease;
      -o-transition: width 1s ease;
      transition: width 1s ease;
      background-color: rgba(255, 255, 255, 0.1); }
    @media (max-width: 1024px) {
      .menu__footer {
        padding: 24.5px 0; } }
    @media (max-width: 767px) {
      .menu__footer {
        padding: 12px 0; } }
  .menu__shadow {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 500%;
    height: 500%;
    background: -webkit-radial-gradient(center, circle, transparent 0%, transparent 5%, #2B2727 30%, #2B2727 100%);
    background: -o-radial-gradient(center, circle, transparent 0%, transparent 5%, #2B2727 30%, #2B2727 100%);
    background: radial-gradient(circle at center, transparent 0%, transparent 5%, #2B2727 30%, #2B2727 100%); }
    @media (max-width: 1024px) {
      .menu__shadow {
        display: none; } }

.footer {
  color: #fff;
  background-color: #2B2727;
  padding: 32px 0; }
  .footer__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 1024px) {
      .footer__row {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-flow: row wrap;
                flex-flow: row wrap; } }
  @media (max-width: 1024px) {
    .footer__center {
      width: 30%;
      -webkit-box-flex: 1;
          -ms-flex: auto;
              flex: auto; } }
  .footer__left, .footer__right {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
  @media (max-width: 1024px) {
    .footer__left {
      width: 70%;
      -webkit-box-flex: 1;
          -ms-flex: auto;
              flex: auto; } }
  .footer__right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: right; }
    @media (max-width: 1024px) {
      .footer__right {
        text-align: center;
        width: 100%;
        margin-top: 25px; } }
  .footer__social {
    color: #fff; }
    @media (max-width: 1024px) {
      .footer__social .social__list {
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end; } }

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

.footer-menu__item:not(:last-child) {
  margin-right: 55px; }

@media (max-width: 1024px) {
  .footer-menu__item:not(:last-child) {
    margin-right: 35px; } }

@media (max-width: 767px) {
  .footer-menu__item:not(:last-child) {
    margin-right: 15px; } }

.footer-menu__link {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  padding: 5px 0;
  text-transform: uppercase;
  font-family: "Arsenal", sans-serif; }
  .footer-menu__link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: bottom right;
        -ms-transform-origin: bottom right;
            transform-origin: bottom right;
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.07, 0.97, 0.46, 0.99);
    transition: -webkit-transform 0.6s cubic-bezier(0.07, 0.97, 0.46, 0.99);
    -o-transition: transform 0.6s cubic-bezier(0.07, 0.97, 0.46, 0.99);
    transition: transform 0.6s cubic-bezier(0.07, 0.97, 0.46, 0.99);
    transition: transform 0.6s cubic-bezier(0.07, 0.97, 0.46, 0.99), -webkit-transform 0.6s cubic-bezier(0.07, 0.97, 0.46, 0.99); }
  .footer-menu__link:hover:after {
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: bottom left;
        -ms-transform-origin: bottom left;
            transform-origin: bottom left; }
  @media (max-width: 1024px) {
    .footer-menu__link {
      font-size: 14px;
      line-height: 14px; } }
  @media (max-width: 767px) {
    .footer-menu__link {
      font-size: 12px;
      line-height: 12px; } }

.copy {
  display: inline;
  font-family: "Arsenal", sans-serif;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0.7px; }

.feature {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(43, 39, 39, 0.1);
  padding-bottom: 25px; }
  .feature:not(:last-child) {
    margin-bottom: 170px; }
  @media (max-width: 1024px) {
    .feature {
      padding-bottom: 15px; }
      .feature:not(:last-child) {
        margin-bottom: 115px; } }
  @media (max-width: 767px) {
    .feature:not(:last-child) {
      margin-bottom: 60px; } }
  .feature:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 76px;
    width: 100%;
    border-bottom: 1px solid rgba(43, 39, 39, 0.1); }
    @media (max-width: 1024px) {
      .feature:after {
        bottom: 55px; } }
  .feature:before {
    content: '';
    position: absolute;
    left: 0;
    top: 112px;
    width: 100%;
    border-bottom: 1px solid rgba(43, 39, 39, 0.1); }
    @media (max-width: 1024px) {
      .feature:before {
        top: 52px; } }
    @media (max-width: 767px) {
      .feature:before {
        top: 44px; } }
  .feature__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media (max-width: 1024px) {
      .feature__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column;
                flex-flow: column; } }
  .feature__title {
    margin-bottom: 70px; }
    @media (max-width: 1024px) {
      .feature__title {
        margin-bottom: 57px; } }
    @media (max-width: 767px) {
      .feature__title {
        margin-bottom: 44px; } }
  .feature__left {
    margin-right: 80px; }
    @media (max-width: 1200px) {
      .feature__left {
        margin-right: 40px; } }
    @media (max-width: 1024px) {
      .feature__left {
        margin-right: 0;
        margin-bottom: 40px; } }
  .feature__right {
    max-width: 800px;
    width: 100%; }
    @media (max-width: 1200px) {
      .feature__right {
        max-width: 690px; } }
    @media (max-width: 1024px) {
      .feature__right {
        max-width: 100%; } }
  .feature__content {
    padding-top: 65px; }
    @media (max-width: 1200px) {
      .feature__content {
        padding-top: 32.5px; } }
    @media (max-width: 1024px) {
      .feature__content {
        padding: 0 16px; } }
  @media (max-width: 1024px) {
    .feature .container__inner {
      margin-right: 0;
      margin-left: 0; } }
  @media (max-width: 1024px) {
    .feature__actions {
      position: relative;
      width: 100%;
      padding: 0 16px;
      margin-top: 30px; } }
  .feature:nth-of-type(odd) .feature-slider__item {
    text-align: right; }
    @media (max-width: 1024px) {
      .feature:nth-of-type(odd) .feature-slider__item {
        text-align: left; } }
  .feature:nth-of-type(odd) .feature__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-flow: row-reverse;
            flex-flow: row-reverse; }
    @media (max-width: 1024px) {
      .feature:nth-of-type(odd) .feature__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column;
                flex-flow: column; } }
  .feature:nth-of-type(odd) .feature__actions {
    left: auto;
    right: 0; }
  .feature:nth-of-type(odd) .feature__left {
    margin-right: 0;
    margin-left: 80px; }
    @media (max-width: 1200px) {
      .feature:nth-of-type(odd) .feature__left {
        margin-left: 40px; } }
    @media (max-width: 1024px) {
      .feature:nth-of-type(odd) .feature__left {
        margin-left: 0; } }

.feature-slider__item:hover .feature-slider__img-wrap {
  opacity: 1;
  -webkit-filter: grayscale(0);
          filter: grayscale(0); }

.feature-slider__item:hover .feature-slider__img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05); }

.feature-slider__img-wrap {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  opacity: 0.8;
  margin-bottom: 25px;
  overflow: hidden;
  height: 485px;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; }
  @media (max-width: 1200px) {
    .feature-slider__img-wrap {
      height: 420px; } }
  @media (max-width: 1024px) {
    .feature-slider__img-wrap {
      margin-bottom: 15px; } }
  @media (max-width: 767px) {
    .feature-slider__img-wrap {
      height: 220px; } }

.feature-slider__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  -o-transition: transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s; }

.feature-slider__caption {
  width: 100%; }
  @media (max-width: 1024px) {
    .feature-slider__caption {
      padding: 0 16px; } }

.offer {
  margin-bottom: 260px; }
  @media (max-width: 1024px) {
    .offer {
      margin-bottom: 160px; } }
  @media (max-width: 767px) {
    .offer {
      margin-bottom: 60px; } }
  .offer__head {
    position: relative;
    margin-bottom: 65px; }
    .offer__head:after {
      content: '';
      position: absolute;
      width: 100%;
      left: 0;
      bottom: 10px;
      border-bottom: 1px solid rgba(43, 39, 39, 0.1); }
      @media (max-width: 1024px) {
        .offer__head:after {
          bottom: 8px; } }
    @media (max-width: 1024px) {
      .offer__head {
        margin-bottom: 50px; } }
    @media (max-width: 767px) {
      .offer__head {
        margin-bottom: 34px; } }
  .offer__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap; }
    @media (max-width: 767px) {
      .offer__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column;
                flex-flow: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; } }
  .offer__row {
    border-bottom: 1px solid rgba(43, 39, 39, 0.1);
    padding-bottom: 40px; }
    .offer__row:not(:last-child) {
      margin-bottom: 65px; }
    @media (max-width: 1024px) {
      .offer__row {
        padding-bottom: 24px; }
        .offer__row:not(:last-child) {
          margin-bottom: 40px; } }
    @media (max-width: 767px) {
      .offer__row {
        padding-bottom: 0; }
        .offer__row:not(:last-child) {
          margin-bottom: 0; } }
    @media (max-width: 767px) {
      .offer__row .container {
        padding: 0; } }
  @media (max-width: 767px) {
    .offer__inner {
      border-top: 1px solid rgba(43, 39, 39, 0.1); } }

.offer-item {
  max-width: 33.33%;
  width: 100%; }
  @media (max-width: 767px) {
    .offer-item {
      max-width: 100%;
      padding: 14.5px 16px; }
      .offer-item:not(:last-child) {
        border-bottom: 1px solid rgba(43, 39, 39, 0.1); } }
  .offer-item__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 767px) {
      .offer-item__inner {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-flow: row;
                flex-flow: row; } }
  .offer-item__desc {
    max-width: 210px;
    text-align: center; }
    @media (max-width: 767px) {
      .offer-item__desc {
        text-align: left; } }
  .offer-item__icon {
    max-width: 115px; }
    @media (max-width: 1024px) {
      .offer-item__icon {
        max-width: 100px; } }
    @media (max-width: 767px) {
      .offer-item__icon {
        margin-right: 24px;
        max-width: 85px;
        max-height: 70px; } }

.news__head {
  position: relative;
  margin-bottom: 58px; }
  .news__head:after {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 10px;
    border-bottom: 1px solid rgba(43, 39, 39, 0.1); }
    @media (max-width: 767px) {
      .news__head:after {
        bottom: 8px; } }
  @media (max-width: 1024px) {
    .news__head {
      margin-bottom: 47px; } }
  @media (max-width: 767px) {
    .news__head {
      margin-bottom: 36px; } }

.news__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin-left: -10px; }
  @media (max-width: 767px) {
    .news__content {
      margin-left: 0; } }

.news__btn {
  margin-bottom: 70px; }
  @media (max-width: 1024px) {
    .news__btn {
      margin-bottom: 55px; } }
  @media (max-width: 767px) {
    .news__btn {
      margin-bottom: 45px; } }

.news-item {
  max-width: calc(33.33% - 3px);
  width: 100%;
  padding: 0 10px;
  margin-bottom: 95px; }
  @media (max-width: 1024px) {
    .news-item {
      max-width: calc(50% - 3px);
      margin-bottom: 70px; } }
  @media (max-width: 767px) {
    .news-item {
      margin-bottom: 45px;
      max-width: 100%;
      padding: 0; } }
  .news-item_no_img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 767px) {
      .news-item_no_img {
        min-height: 145px; } }
    .news-item_no_img .news-item__inner {
      border: 1px solid #2B2727;
      padding: 40px 20px; }
  .news-item__inner {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%; }
  .news-item__img-wrap {
    height: 250px;
    margin-bottom: 14px;
    overflow: hidden;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden; }
  .news-item__img {
    height: 100%;
    width: 100%;
    opacity: 0.8;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover";
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    -o-transition: transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s; }
  .news-item__time {
    display: inline-block;
    font-family: "Arsenal", sans-serif;
    font-size: 12px;
    line-height: 12px;
    text-transform: uppercase;
    color: #9DA7B9;
    letter-spacing: 0.5px;
    margin-bottom: 12px; }
  .news-item:hover .news-item__img {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05); }
  .news-item_grayscale .news-item__img-wrap {
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%); }
  .news-item_grayscale:hover .news-item__img-wrap {
    opacity: 1;
    -webkit-filter: grayscale(0);
            filter: grayscale(0); }

.projects {
  overflow: hidden;
  padding-bottom: 210px; }
  @media (max-width: 1200px) {
    .projects {
      padding-top: 40px; } }
  @media (max-width: 1024px) {
    .projects {
      padding-bottom: 135px; } }
  @media (max-width: 767px) {
    .projects {
      padding-top: 18px;
      padding-bottom: 60px; } }
  .projects:after {
    content: '';
    position: absolute;
    left: 0;
    top: 617px;
    width: 100%;
    border-bottom: 1px solid rgba(43, 39, 39, 0.1); }
    @media (max-width: 1024px) {
      .projects:after {
        display: none; } }
  .projects_categories:after {
    top: 532px; }
  .projects__sidebar {
    position: fixed;
    top: 160px;
    z-index: 2; }
    @media (max-width: 1200px) {
      .projects__sidebar {
        position: relative;
        top: auto;
        max-width: 100%; }
        .projects__sidebar .sidebar-menu {
          display: none; } }
  .projects__inner {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 780px;
    width: 100%;
    margin-left: auto;
    margin-right: 20px;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden; }
    @media (max-width: 1200px) {
      .projects__inner {
        margin: 0;
        max-width: 100%; } }
    .projects__inner.is-active {
      opacity: 1;
      z-index: 1; }
  .projects__caption {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 100px; }
    @media (max-width: 1200px) {
      .projects__caption {
        padding: 40px 0;
        margin-bottom: 75px; } }
    @media (max-width: 767px) {
      .projects__caption {
        padding: 28px 0;
        margin-bottom: 50px; } }
  @media (max-width: 767px) and (max-width: 767px) {
    .projects__caption .project-item {
      max-width: 100%;
      padding: 0; } }
  .projects__img-wrap {
    width: 1004px;
    height: 618px;
    margin-right: -138px;
    opacity: 0.8; }
    @media (max-width: 1200px) {
      .projects__img-wrap {
        display: none; } }
  .projects__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: left;
       object-position: left;
    font-family: "object-fit: cover; object-position: left"; }
  .projects__desc {
    width: 100%;
    padding-top: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 1200px) {
      .projects__desc {
        padding-top: 0; } }
    @media (max-width: 767px) {
      .projects__desc {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column;
                flex-flow: column; } }
  .projects__wrap {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1; }
  .projects__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column; }
    @media (max-width: 1200px) {
      .projects__content {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-flow: row wrap;
                flex-flow: row wrap;
        margin-left: -10px; } }
    @media (max-width: 767px) {
      .projects__content {
        margin-left: 0; } }
    @media (max-width: 1200px) {
      .projects__content .project-item {
        max-width: calc(33.33% - 3px);
        padding: 0 10px; }
        .projects__content .project-item:nth-child(even) {
          margin-left: 0; } }
    @media (max-width: 1024px) {
      .projects__content .project-item {
        max-width: calc(50% - 3px); } }
    @media (max-width: 767px) {
      .projects__content .project-item {
        max-width: 100%;
        padding: 0; }
        .projects__content .project-item:not(:last-child) {
          margin-bottom: 60px; } }
  .projects__select {
    display: none; }
    @media (max-width: 1200px) {
      .projects__select {
        display: block; } }

.project-item {
  max-width: 380px;
  width: 100%; }
  .project-item:nth-child(even) {
    margin-left: auto; }
  .project-item:not(:last-child) {
    margin-bottom: 28px; }
  .project-item:hover .project-item__img {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05); }
  .project-item_lines .project-item__tags:after, .project-item_lines .project-item__tags:before {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 20%;
    height: 1px;
    background-color: #CED3DC; }
    @media (max-width: 1024px) {
      .project-item_lines .project-item__tags:after, .project-item_lines .project-item__tags:before {
        width: 18%; } }
    @media (max-width: 576px) {
      .project-item_lines .project-item__tags:after, .project-item_lines .project-item__tags:before {
        width: 15%; } }
    @media (max-width: 320px) {
      .project-item_lines .project-item__tags:after, .project-item_lines .project-item__tags:before {
        width: 10%; } }
  .project-item_lines .project-item__tags:before {
    left: 16%; }
    @media (max-width: 1024px) {
      .project-item_lines .project-item__tags:before {
        left: 16%; } }
    @media (max-width: 320) {
      .project-item_lines .project-item__tags:before {
        left: 21%; } }
  .project-item_lines .project-item__tags:after {
    right: 23%; }
    @media (max-width: 1024px) {
      .project-item_lines .project-item__tags:after {
        right: 22%; } }
    @media (max-width: 576px) {
      .project-item_lines .project-item__tags:after {
        right: 24%; } }
    @media (max-width: 320px) {
      .project-item_lines .project-item__tags:after {
        right: 29%; } }
  .project-item__inner {
    overflow: hidden; }
  .project-item__tags {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    height: 36px; }
  .project-item__img-wrap {
    display: block;
    position: relative;
    height: 250px;
    overflow: hidden;
    width: 100%; }
  .project-item__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover";
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    -o-transition: transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s; }
  .project-item__tag {
    position: absolute;
    letter-spacing: 0.7px;
    font-family: "Arsenal", sans-serif;
    padding: 10px 0; }
    .project-item__tag:nth-child(1) {
      left: 0;
      top: 0; }
    .project-item__tag:nth-child(2) {
      left: 48%;
      top: 0;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%); }
    .project-item__tag:nth-child(3) {
      right: 0;
      top: 0; }
    .project-item__tag:hover {
      font-weight: bold; }
  .project-item__desc {
    white-space: nowrap;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    overflow: hidden;
    width: 100%; }

.contacts {
  position: relative; }
  .contacts__wrap {
    position: relative;
    padding-top: 130px;
    padding-bottom: 150px;
    color: #ffffff;
    background: url(/static/img/contacts-bg.jpg) center no-repeat;
    background-size: cover;
    min-height: calc(100vh - 190px); }
    .contacts__wrap:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(43, 39, 39, 0.7);
      pointer-events: none; }
    @media (max-width: 1024px) {
      .contacts__wrap {
        min-height: auto; } }
    @media (max-width: 1024px) {
      .contacts__wrap {
        padding: 90px 0; } }
    @media (max-width: 767px) {
      .contacts__wrap {
        padding: 50px 0; } }
  .contacts__inner {
    position: relative; }
  .contacts__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 1024px) {
      .contacts__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column;
                flex-flow: column; } }
  .contacts__title {
    margin-bottom: 60px; }
    @media (max-width: 1024px) {
      .contacts__title {
        margin-bottom: 52px; } }
    @media (max-width: 767px) {
      .contacts__title {
        margin-bottom: 45px; } }
  .contacts__info {
    max-width: 334px;
    width: 100%;
    margin-right: 66px; }
    @media (max-width: 1024px) {
      .contacts__info {
        margin-right: 0;
        max-width: 100%;
        margin-bottom: 45px; } }
  .contacts__addr {
    margin-bottom: 25px; }
    @media (max-width: 767px) {
      .contacts__addr {
        margin-bottom: 10px; } }

.contacts-list {
  margin-bottom: 22px; }
  .contacts-list__item:not(:last-child) {
    margin-bottom: 22px; }
  .contacts-list__link {
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .contacts-list__icon {
    margin-right: 12px; }
  .contacts-list__text {
    position: relative;
    display: inline-block; }
    .contacts-list__text:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background-color: #fff;
      -webkit-transform: scaleX(0);
          -ms-transform: scaleX(0);
              transform: scaleX(0);
      -webkit-transform-origin: bottom right;
          -ms-transform-origin: bottom right;
              transform-origin: bottom right;
      -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.07, 0.97, 0.46, 0.99);
      transition: -webkit-transform 0.6s cubic-bezier(0.07, 0.97, 0.46, 0.99);
      -o-transition: transform 0.6s cubic-bezier(0.07, 0.97, 0.46, 0.99);
      transition: transform 0.6s cubic-bezier(0.07, 0.97, 0.46, 0.99);
      transition: transform 0.6s cubic-bezier(0.07, 0.97, 0.46, 0.99), -webkit-transform 0.6s cubic-bezier(0.07, 0.97, 0.46, 0.99); }
    .contacts-list__text:hover:after {
      -webkit-transform: scaleX(1);
          -ms-transform: scaleX(1);
              transform: scaleX(1);
      -webkit-transform-origin: bottom left;
          -ms-transform-origin: bottom left;
              transform-origin: bottom left; }

.input,
.textarea {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  background-color: transparent;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  font-size: 14px;
  color: #ffffff; }
  .input:focus ~ .form__field-border,
  .textarea:focus ~ .form__field-border {
    -webkit-animation: border 0.35s ease-in-out;
            animation: border 0.35s ease-in-out;
    background-color: #9DA7B9; }
  .input:focus ~ .form__label,
  .textarea:focus ~ .form__label {
    -webkit-transform: translateY(-6px);
        -ms-transform: translateY(-6px);
            transform: translateY(-6px); }
  .input.input,
  .textarea.input {
    height: 30px; }
  .input.textarea,
  .textarea.textarea {
    height: 90px; }
    @media (max-width: 767px) {
      .input.textarea,
      .textarea.textarea {
        height: 30px; } }

.form {
  max-width: 706px;
  width: 100%; }
  @media (max-width: 1024px) {
    .form {
      max-width: 100%; } }
  .form__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%; }
    @media (max-width: 767px) {
      .form__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column;
                flex-flow: column; } }
  .form__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    max-width: 306px;
    width: 100%;
    margin-right: 96px; }
    @media (max-width: 1024px) {
      .form__left {
        max-width: 100%; } }
    @media (max-width: 767px) {
      .form__left {
        margin-right: 0;
        margin-bottom: 28px; } }
  .form__right {
    width: 100%; }
  .form__field {
    position: relative;
    display: block;
    width: 100%;
    height: 42px; }
    .form__field-border {
      position: absolute;
      bottom: 0;
      width: 100%;
      left: 0;
      right: 0;
      margin: 0 auto;
      height: 1px;
      background-color: rgba(255, 255, 255, 0.5);
      -webkit-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s;
      -webkit-backface-visibility: hidden;
              backface-visibility: hidden; }
    .form__field:not(:last-child) {
      margin-bottom: 28px; }
    .form__field_notempty .form__field-border {
      background-color: #fff; }
    .form__field_notempty .form__label {
      -webkit-transform: translateY(-6px);
          -ms-transform: translateY(-6px);
              transform: translateY(-6px); }
    .form__field_has_error .form__input {
      color: #FC4A66; }
    .form__field_has_error .form__field-border {
      background-color: #FC4A66; }
    .form__field_textarea {
      height: 112px; }
      .form__field_textarea:not(:last-child) {
        margin-bottom: 28px; }
      @media (max-width: 767px) {
        .form__field_textarea {
          height: 42px; } }
  .form__label {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 11px;
    line-height: 11px;
    font-weight: 300;
    z-index: 2;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease; }

.services-head {
  margin-bottom: 180px; }
  @media (max-width: 1024px) {
    .services-head {
      margin-bottom: 125px; } }
  @media (max-width: 767px) {
    .services-head {
      margin-bottom: 70px; } }
  @media (max-width: 576px) {
    .services-head {
      margin-bottom: 15px; } }
  .services-head__inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 1024px) {
      .services-head__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column;
                flex-flow: column; } }
  .services-head__wrap {
    position: relative;
    margin-left: auto;
    max-width: 780px;
    width: 100%;
    margin-left: auto; }
    @media (max-width: 1024px) {
      .services-head__wrap {
        margin-left: 0;
        max-width: 100%; } }
  .services-head__content {
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 142px;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden; }
    @media (max-width: 1024px) {
      .services-head__content {
        padding-top: 0; } }
    .services-head__content.is-active {
      opacity: 1; }
  @media (max-width: 1024px) {
    .services-head__sidebar {
      margin-bottom: 96px; } }
  @media (max-width: 767px) {
    .services-head__sidebar {
      margin-bottom: 45px; } }

.service-info {
  position: relative; }
  .service-info:not(:last-child) {
    margin-bottom: 80px; }
  @media (max-width: 1024px) {
    .service-info:not(:last-child) {
      margin-bottom: 40px; } }
  @media (max-width: 767px) {
    .service-info {
      padding-top: 15px;
      border-top: 1px solid rgba(43, 39, 39, 0.1); }
      .service-info:not(:last-child) {
        margin-bottom: 0; }
      .service-info:after {
        content: '';
        position: absolute;
        top: 92px;
        left: 0;
        width: 100%;
        border-bottom: 1px solid rgba(43, 39, 39, 0.1); } }
  .service-info__head {
    border-bottom: 1px solid rgba(43, 39, 39, 0.1); }
    @media (max-width: 767px) {
      .service-info__head {
        border-bottom: 1px solid transparent; } }
    .service-info__head-inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
  .service-info__icon {
    max-width: 90px;
    max-height: 87px;
    margin-right: 30px; }
    @media (max-width: 1024px) {
      .service-info__icon {
        max-width: 85px;
        max-height: 70px;
        margin-right: 24px; } }
  @media (max-width: 767px) {
    .service-info__title {
      font-size: 20px;
      line-height: 26px; } }

.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 224px;
  height: 60px;
  border: 1px solid #CED3DC;
  padding: 0 25px;
  cursor: pointer;
  color: #2B2727;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 2; }
  @media (max-width: 1024px) {
    .back-to-top {
      width: 68px;
      height: 60px;
      padding: 0 0 0 20px; } }
  .back-to-top:hover, .back-to-top_fill {
    background-color: #CED3DC; }
    .back-to-top:hover .back-to-top__text, .back-to-top_fill .back-to-top__text {
      color: #fff; }
    .back-to-top:hover .back-to-top__icon, .back-to-top_fill .back-to-top__icon {
      fill: #fff; }
  .back-to-top:active {
    background-color: #b0b8c7; }
  .back-to-top.is-active {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0); }
  .back-to-top__text {
    font-size: 12px;
    text-transform: uppercase;
    font-family: "Arsenal", sans-serif;
    letter-spacing: 0.6px;
    margin-right: 15px;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden; }
    @media (max-width: 1024px) {
      .back-to-top__text {
        display: none; } }
  .back-to-top__icon {
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    width: 26px;
    height: 18px; }

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px); }
  60% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px); } }

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px); }
  60% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px); } }

@-webkit-keyframes border {
  from {
    width: 0;
    background-color: rgba(255, 255, 255, 0.5); }
  to {
    width: 100%; } }

@keyframes border {
  from {
    width: 0;
    background-color: rgba(255, 255, 255, 0.5); }
  to {
    width: 100%; } }

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

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

@-webkit-keyframes block-reveal {
  0% {
    -webkit-transform: translateZ(0) scaleY(1) scaleX(0);
            transform: translateZ(0) scaleY(1) scaleX(0); }
  50% {
    -webkit-transform: translateZ(0) scaleY(1) scaleX(1);
            transform: translateZ(0) scaleY(1) scaleX(1); }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) scaleY(1) scaleX(1);
            transform: translate3d(100%, 0, 0) scaleY(1) scaleX(1); } }

@keyframes block-reveal {
  0% {
    -webkit-transform: translateZ(0) scaleY(1) scaleX(0);
            transform: translateZ(0) scaleY(1) scaleX(0); }
  50% {
    -webkit-transform: translateZ(0) scaleY(1) scaleX(1);
            transform: translateZ(0) scaleY(1) scaleX(1); }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) scaleY(1) scaleX(1);
            transform: translate3d(100%, 0, 0) scaleY(1) scaleX(1); } }

.page-enter-active, .page-leave-active {
  -webkit-transition: opacity 0.35s ease-in-out;
  -o-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out; }

.page-enter, .page-leave-to {
  opacity: 0; }

.slide-toggle-enter-active, .slide-toggle-leave-active {
  overflow: hidden;
  will-change: height, opacity;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; }

.slide-toggle-enter, .slide-toggle-leave-to {
  height: 0;
  opacity: 0; }

.slide-right-enter, .slide-right-leave-to {
  opacity: 0; }

.slide-right-enter {
  -webkit-transform: translateX(-20px);
      -ms-transform: translateX(-20px);
          transform: translateX(-20px); }

.slide-right-leave-to {
  -webkit-transform: translateX(20px);
      -ms-transform: translateX(20px);
          transform: translateX(20px); }

.slide-right-enter-active, .slide-right-leave-active {
  -webkit-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow: hidden; }

.fade-enter-active,
.fade-leave-active {
  -webkit-transition: opacity .35s ease-in-out;
  -o-transition: opacity .35s ease-in-out;
  transition: opacity .35s ease-in-out; }

.fade-enter,
.fade-leave-to {
  opacity: 0; }

@media screen and (min-width: 1025px) {
  .page-nav__btn_prev:hover .icon-arrow {
    -webkit-transform: translateX(-4px) rotate(-180deg);
        -ms-transform: translateX(-4px) rotate(-180deg);
            transform: translateX(-4px) rotate(-180deg); }
  .page-nav__btn_next:hover .icon-arrow {
    -webkit-transform: translateX(4px);
        -ms-transform: translateX(4px);
            transform: translateX(4px); }
  .intro-back:hover .icon-arrow {
    -webkit-transform: translateX(-4px) rotate(-180deg);
        -ms-transform: translateX(-4px) rotate(-180deg);
            transform: translateX(-4px) rotate(-180deg); }
  .slider-actions__next:hover .icon-arrow {
    -webkit-transform: translateX(4px);
        -ms-transform: translateX(4px);
            transform: translateX(4px); }
  .intro__slide.is-active .block-reveal > * {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-transition-delay: .575s;
         -o-transition-delay: .575s;
            transition-delay: .575s; }
  .intro__slide.is-active .block-reveal:after {
    -webkit-animation-name: block-reveal;
            animation-name: block-reveal;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-animation-timing-function: cubic-bezier(0.81, 0.15, 0.26, 0.99);
            animation-timing-function: cubic-bezier(0.81, 0.15, 0.26, 0.99);
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards; }
  .intro__slide.is-active .intro__title {
    -webkit-animation: animation 0.8s 450ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: animation 0.8s 450ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
  .intro__slide.is-active .intro__more {
    -webkit-animation: animation 0.8s 650ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: animation 0.8s 650ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
  .block-reveal {
    position: relative;
    overflow: hidden; }
    .block-reveal > * {
      opacity: 0;
      -webkit-transition: .6s;
      -o-transition: .6s;
      transition: .6s;
      -webkit-transform: translate3d(-3rem, 0, 0);
              transform: translate3d(-3rem, 0, 0); }
    .block-reveal:after {
      content: '';
      position: absolute;
      z-index: 2;
      top: 0;
      right: -.1rem;
      bottom: 0;
      left: 0;
      background-color: #CED3DC;
      -webkit-animation-duration: 1.15s;
              animation-duration: 1.15s;
      -webkit-transform-origin: right center;
          -ms-transform-origin: right center;
              transform-origin: right center;
      -webkit-transform: translateZ(0) scaleY(1) scaleX(0);
              transform: translateZ(0) scaleY(1) scaleX(0); }
  .in-view[data-anim-in],
  .in-view [data-anim-in] {
    -webkit-animation: animation 0.8s 450ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: animation 0.8s 450ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
  .in-view[data-anim-in-sm],
  .in-view [data-anim-in-sm] {
    -webkit-animation: animation 0.8s 450ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: animation 0.8s 450ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
  .in-view[data-anim-left],
  .in-view [data-anim-left] {
    -webkit-animation: animation 0.8s 450ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: animation 0.8s 450ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
  .in-view[data-anim-right],
  .in-view [data-anim-right] {
    -webkit-animation: animation 0.8s 450ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: animation 0.8s 450ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
  .in-view[data-anim-down],
  .in-view [data-anim-down] {
    -webkit-animation: animation 0.8s 450ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: animation 0.8s 450ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
  .in-view.block-reveal > *,
  .in-view .block-reveal > * {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-transition-delay: .575s;
         -o-transition-delay: .575s;
            transition-delay: .575s; }
  .in-view.block-reveal:after,
  .in-view .block-reveal:after {
    -webkit-animation-name: block-reveal;
            animation-name: block-reveal;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-animation-timing-function: cubic-bezier(0.81, 0.15, 0.26, 0.99);
            animation-timing-function: cubic-bezier(0.81, 0.15, 0.26, 0.99);
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards; }
  .in-view[data-anim-delay="300"],
  .in-view [data-anim-delay="300"] {
    -webkit-animation: animation 0.8s 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: animation 0.8s 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
  .in-view[data-anim-delay="350"],
  .in-view [data-anim-delay="350"] {
    -webkit-animation: animation 0.8s 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: animation 0.8s 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
  .in-view[data-anim-delay="400"],
  .in-view [data-anim-delay="400"] {
    -webkit-animation: animation 0.8s 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: animation 0.8s 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
  .in-view[data-anim-delay="450"],
  .in-view [data-anim-delay="450"] {
    -webkit-animation: animation 0.8s 450ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: animation 0.8s 450ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
  .in-view[data-anim-delay="500"],
  .in-view [data-anim-delay="500"] {
    -webkit-animation: animation 0.8s 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: animation 0.8s 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
  .in-view[data-anim-delay="550"],
  .in-view [data-anim-delay="550"] {
    -webkit-animation: animation 0.8s 550ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: animation 0.8s 550ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
  .in-view[data-anim-delay="600"],
  .in-view [data-anim-delay="600"] {
    -webkit-animation: animation 0.8s 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: animation 0.8s 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
  .in-view[data-anim-delay="650"],
  .in-view [data-anim-delay="650"] {
    -webkit-animation: animation 0.8s 650ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: animation 0.8s 650ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
  .in-view[data-anim-delay="700"],
  .in-view [data-anim-delay="700"] {
    -webkit-animation: animation 0.8s 700ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: animation 0.8s 700ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
  .in-view[data-anim-delay="750"],
  .in-view [data-anim-delay="750"] {
    -webkit-animation: animation 0.8s 750ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: animation 0.8s 750ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
  .in-view[data-anim-delay="800"],
  .in-view [data-anim-delay="800"] {
    -webkit-animation: animation 0.8s 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: animation 0.8s 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
  .in-view[data-anim-delay="850"],
  .in-view [data-anim-delay="850"] {
    -webkit-animation: animation 0.8s 850ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: animation 0.8s 850ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
  .in-view[data-anim-delay="900"],
  .in-view [data-anim-delay="900"] {
    -webkit-animation: animation 0.8s 900ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: animation 0.8s 900ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
  .in-view[data-anim-delay="950"],
  .in-view [data-anim-delay="950"] {
    -webkit-animation: animation 0.8s 950ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: animation 0.8s 950ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
  .in-view[data-anim-delay="1000"],
  .in-view [data-anim-delay="1000"] {
    -webkit-animation: animation 0.8s 1000ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: animation 0.8s 1000ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
  .in-view[data-anim-delay="1050"],
  .in-view [data-anim-delay="1050"] {
    -webkit-animation: animation 0.8s 1050ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: animation 0.8s 1050ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
  .in-view[data-anim-delay="1100"],
  .in-view [data-anim-delay="1100"] {
    -webkit-animation: animation 0.8s 1100ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: animation 0.8s 1100ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
  .in-view[data-anim-delay="1150"],
  .in-view [data-anim-delay="1150"] {
    -webkit-animation: animation 0.8s 1150ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: animation 0.8s 1150ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
  .in-view[data-anim-delay="1200"],
  .in-view [data-anim-delay="1200"] {
    -webkit-animation: animation 0.8s 1200ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: animation 0.8s 1200ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
  .in-view[data-anim-delay="1250"],
  .in-view [data-anim-delay="1250"] {
    -webkit-animation: animation 0.8s 1250ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: animation 0.8s 1250ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
  [data-anim-in] {
    opacity: 0;
    -webkit-transform: translateY(35px);
        -ms-transform: translateY(35px);
            transform: translateY(35px); }
  [data-anim-in-sm] {
    opacity: 0;
    -webkit-transform: translateY(15px);
        -ms-transform: translateY(15px);
            transform: translateY(15px); }
  [data-anim-left] {
    opacity: 0;
    -webkit-transform: translateX(-35px);
        -ms-transform: translateX(-35px);
            transform: translateX(-35px); }
  [data-anim-right] {
    opacity: 0;
    -webkit-transform: translateX(35px);
        -ms-transform: translateX(35px);
            transform: translateX(35px); }
  [data-anim-down] {
    opacity: 0;
    -webkit-transform: translateY(-35px);
        -ms-transform: translateY(-35px);
            transform: translateY(-35px); } }

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

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

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

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

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

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

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

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

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

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

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

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none; }
  .pswp * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .pswp img {
    max-width: none; }

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--open {
  display: block; }

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab; }

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing; }

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none; }

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden; }

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden; }

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0; }

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden; }

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222; }

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0; }

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC; }

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline; }

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*
	
	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
          transition: opacity 0.2s;
  -webkit-box-shadow: none;
          box-shadow: none; }
  .pswp__button:focus, .pswp__button:hover {
    opacity: 1; }
  .pswp__button:active {
    outline: none;
    opacity: 0.9; }
  .pswp__button::-moz-focus-inner {
    padding: 0;
    border: 0; }

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1; }

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(/static/img/default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px; }

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(/static/img/default-skin.svg); }
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none; } }

.pswp__button--close {
  background-position: 0 -44px; }

.pswp__button--share {
  background-position: -44px -44px; }

.pswp__button--fs {
  display: none; }

.pswp--supports-fs .pswp__button--fs {
  display: block; }

.pswp--fs .pswp__button--fs {
  background-position: -44px 0; }

.pswp__button--zoom {
  display: none;
  background-position: -88px 0; }

.pswp--zoom-allowed .pswp__button--zoom {
  display: block; }

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0; }

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden; }

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute; }

.pswp__button--arrow--left {
  left: 0; }

.pswp__button--arrow--right {
  right: 0; }

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute; }

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px; }

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px; }

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__share-modal--hidden {
  display: none; }

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
          transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform; }
  .pswp__share-tooltip a {
    display: block;
    padding: 8px 12px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px; }
    .pswp__share-tooltip a:hover {
      text-decoration: none;
      color: #000; }
    .pswp__share-tooltip a:first-child {
      /* round corners on the first/last list item */
      border-radius: 2px 2px 0 0; }
    .pswp__share-tooltip a:last-child {
      border-radius: 0 0 2px 2px; }

.pswp__share-modal--fade-in {
  opacity: 1; }
  .pswp__share-modal--fade-in .pswp__share-tooltip {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px; }

a.pswp__share--facebook:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none; }

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF; }
  a.pswp__share--facebook:hover:before {
    border-bottom-color: #3E5C9A; }

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF; }

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D; }

a.pswp__share--download:hover {
  background: #DDD; }

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px; }

/*
	
	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px; }
  .pswp__caption small {
    font-size: 11px;
    color: #BBB; }

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC; }

.pswp__caption--empty {
  display: none; }

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden; }

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr; }

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px; }

.pswp__preloader--active {
  opacity: 1; }
  .pswp__preloader--active .pswp__preloader__icn {
    /* We use .gif in browsers that don't support CSS animation */
    background: url(/static/img/preloader.gif) 0 0 no-repeat; }

.pswp--css_animation .pswp__preloader--active {
  opacity: 1; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
    -webkit-animation: clockwise 500ms linear infinite;
            animation: clockwise 500ms linear infinite; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
    -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
            animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite; }

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0; }

.pswp--css_animation .pswp__preloader__cut {
  /* 
			The idea of animating inner circle is based on Polymer ("material") loading indicator 
			 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
		*/
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden; }

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0; }

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right; } }

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

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

@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

/*
	
	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550; }

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%; }

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible; }

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5); }

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3); }

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0; }

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0; }

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001; }

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none; }

.pswp__element--disabled {
  display: none !important; }

.pswp--minimal--dark .pswp__top-bar {
  background: none; }
























































































