/*! locomotive-scroll v4.1.2 | MIT License | https://github.com/locomotivemtl/locomotive-scroll */
html.has-scroll-smooth {
  overflow: hidden; }

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.has-scroll-smooth body {
  overflow: hidden; }

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh; }

[data-scroll-direction="horizontal"] [data-scroll-container] {
  height: 100vh;
  display: inline-block;
  white-space: nowrap; }

[data-scroll-direction="horizontal"] [data-scroll-section] {
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  height: 100%; }

.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 11px;
  height: 100%;
  transform-origin: center right;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0; }
  .c-scrollbar:hover {
    transform: scaleX(1.45); }
  .c-scrollbar:hover, .has-scroll-scrolling .c-scrollbar, .has-scroll-dragging .c-scrollbar {
    opacity: 1; }
  [data-scroll-direction="horizontal"] .c-scrollbar {
    width: 100%;
    height: 10px;
    top: auto;
    bottom: 0;
    transform: scaleY(1); }
    [data-scroll-direction="horizontal"] .c-scrollbar:hover {
      transform: scaleY(1.3); }

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: black;
  opacity: 0.5;
  width: 7px;
  border-radius: 10px;
  margin: 2px;
  cursor: -webkit-grab;
  cursor: grab; }
  .has-scroll-dragging .c-scrollbar_thumb {
    cursor: -webkit-grabbing;
    cursor: grabbing; }
  [data-scroll-direction="horizontal"] .c-scrollbar_thumb {
    right: auto;
    bottom: 0; }

/*------   Import Fonts -------*/
@font-face {
  font-family: "Didot";
  src: url("../fonts/Didot-01.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Didot";
  src: url("../fonts/Didot-Italic-02.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Didot";
  src: url("../fonts/Didot-Bold-03.ttf") format("truetype");
  font-weight: 600;
}
:root {
  --app-height: 100%;
}

/* animate */
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 150px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 150px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

.animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.animated2 {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

/* Helpers */
.relative {
  position: relative;
}

.full-c {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vertical-align {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
}

.hidden {
  opacity: 0;
}

.visible {
  opacity: 1;
}

.none {
  display: none;
}

.show-resp {
  display: none;
}

@media (max-width: 1000px) {
  .show-resp {
    display: block;
  }

  .hide-resp {
    display: none;
  }
}
@media (min-width: 1200px) {
  .draw-line-on-hover {
    position: relative;
    text-decoration: none;
  }
  .draw-line-on-hover:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0rem;
    width: 0;
    height: 0.0625rem;
    background: #0A0A0A;
    transition: 0.4s ease width;
  }
  .draw-line-on-hover:hover {
    text-decoration: none;
  }
  .draw-line-on-hover:hover:before {
    width: 100%;
  }
}
.draw-line-on-hover.white-line:before {
  background: white;
}

.modal-opened {
  overflow-y: hidden;
  height: 100vh;
}

/* Bootstrap based grid */
.row {
  display: flex;
  flex-wrap: wrap;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col, .col-auto, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12 {
  position: relative;
  width: 100%;
  min-height: 1px;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.mr-auto, .mx-auto {
  margin-right: auto !important;
}

.ml-auto, .mx-auto {
  margin-left: auto !important;
}

.col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

@media (min-width: 1800px) {
  .col-1800-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-1800-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-1800-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-1800-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-1800-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-1800-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-1800-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-1800-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-1800-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-1800-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-1800-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-1800-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-1800-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-1800-first {
    order: -1;
  }

  .order-1800-last {
    order: 13;
  }
}
@media (min-width: 1700px) {
  .col-1700-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-1700-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-1700-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-1700-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-1700-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-1700-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-1700-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-1700-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-1700-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-1700-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-1700-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-1700-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-1700-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-1700-first {
    order: -1;
  }

  .order-1700-last {
    order: 13;
  }
}
@media (min-width: 1600px) {
  .col-1600-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-1600-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-1600-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-1600-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-1600-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-1600-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-1600-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-1600-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-1600-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-1600-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-1600-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-1600-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-1600-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-1600-first {
    order: -1;
  }

  .order-1600-last {
    order: 13;
  }
}
@media (min-width: 1500px) {
  .col-1500-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-1500-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-1500-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-1500-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-1500-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-1500-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-1500-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-1500-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-1500-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-1500-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-1500-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-1500-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-1500-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-1500-first {
    order: -1;
  }

  .order-1500-last {
    order: 13;
  }
}
@media (min-width: 1400px) {
  .col-1400-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-1400-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-1400-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-1400-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-1400-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-1400-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-1400-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-1400-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-1400-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-1400-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-1400-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-1400-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-1400-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-1400-first {
    order: -1;
  }

  .order-1400-last {
    order: 13;
  }
}
@media (min-width: 1300px) {
  .col-1300-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-1300-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-1300-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-1300-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-1300-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-1300-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-1300-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-1300-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-1300-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-1300-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-1300-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-1300-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-1300-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-1300-first {
    order: -1;
  }

  .order-1300-last {
    order: 13;
  }
}
@media (min-width: 1200px) {
  .col-1200-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-1200-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-1200-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-1200-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-1200-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-1200-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-1200-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-1200-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-1200-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-1200-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-1200-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-1200-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-1200-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-1200-first {
    order: -1;
  }

  .order-1200-last {
    order: 13;
  }
}
@media (min-width: 1100px) {
  .col-1100-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-1100-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-1100-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-1100-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-1100-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-1100-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-1100-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-1100-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-1100-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-1100-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-1100-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-1100-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-1100-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-1100-first {
    order: -1;
  }

  .order-1100-last {
    order: 13;
  }
}
@media (min-width: 1000px) {
  .col-1000-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-1000-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-1000-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-1000-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-1000-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-1000-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-1000-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-1000-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-1000-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-1000-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-1000-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-1000-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-1000-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-1000-first {
    order: -1;
  }

  .order-1000-last {
    order: 13;
  }
}
@media (min-width: 900px) {
  .col-900-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-900-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-900-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-900-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-900-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-900-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-900-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-900-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-900-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-900-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-900-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-900-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-900-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-900-first {
    order: -1;
  }

  .order-900-last {
    order: 13;
  }
}
@media (min-width: 800px) {
  .col-800-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-800-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-800-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-800-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-800-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-800-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-800-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-800-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-800-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-800-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-800-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-800-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-800-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-800-first {
    order: -1;
  }

  .order-800-last {
    order: 13;
  }
}
@media (min-width: 700px) {
  .col-700-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-700-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-700-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-700-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-700-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-700-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-700-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-700-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-700-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-700-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-700-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-700-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-700-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-700-first {
    order: -1;
  }

  .order-700-last {
    order: 13;
  }
}
@media (min-width: 600px) {
  .col-600-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-600-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-600-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-600-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-600-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-600-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-600-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-600-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-600-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-600-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-600-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-600-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-600-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-600-first {
    order: -1;
  }

  .order-600-last {
    order: 13;
  }
}
@media (min-width: 500px) {
  .col-500-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-500-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-500-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-500-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-500-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-500-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-500-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-500-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-500-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-500-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-500-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-500-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-500-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-500-first {
    order: -1;
  }

  .order-500-last {
    order: 13;
  }
}
@media (min-width: 400px) {
  .col-400-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-400-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-400-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-400-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-400-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-400-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-400-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-400-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-400-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-400-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-400-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-400-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-400-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-400-first {
    order: -1;
  }

  .order-400-last {
    order: 13;
  }
}
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
}
html.modal-open, body.modal-open {
  height: 100%;
  overflow: hidden;
}

html {
  box-sizing: border-box;
  overflow-x: hidden;
  width: 100%;
  background: #EACEBF;
}

body {
  color: black;
  font-family: "Lexend Deca", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4;
  width: 100%;
  overflow-x: hidden;
}
@media (min-width: 1200px) {
  body {
    height: 100vh;
  }
}

.smooth-scroll::-webkit-scrollbar {
  width: 0;
}

.wrap {
  display: block;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
  max-width: calc(77.5rem + 10%);
}
@media (max-width: 1200px) {
  .wrap {
    padding-left: 4%;
    padding-right: 4%;
  }
}

.wrap-small {
  display: block;
  position: relative;
  margin: auto;
  max-width: 39.625rem;
}

.lr-pad {
  padding-left: 5%;
  padding-right: 5%;
}
@media (max-width: 1200px) {
  .lr-pad {
    padding-left: 4%;
    padding-right: 4%;
  }
}

.l-pad {
  padding-left: 5%;
}
@media (max-width: 1200px) {
  .l-pad {
    padding-left: 4%;
  }
}

.r-pad {
  padding-right: 5%;
}
@media (max-width: 1200px) {
  .r-pad {
    padding-right: 4%;
  }
}

nav, label, input {
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.1;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 2rem;
  font-family: "Didot";
}

p {
  margin: 0 0 2rem;
}

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

h1 {
  font-size: 3.875rem;
  letter-spacing: -0.125rem;
}
@media (max-width: 700px) {
  h1 {
    font-size: 2.625rem;
  }
}
h1.italic {
  font-style: italic;
}

h2 {
  font-size: 2.625rem;
  line-height: 1.2;
}
@media (max-width: 700px) {
  h2 {
    font-size: 2rem;
  }
}
h2.italic {
  font-style: italic;
}

h3 {
  font-size: 2rem;
  line-height: 1.2;
}
@media (max-width: 700px) {
  h3 {
    font-size: 1.5rem;
  }
}
h3.italic {
  font-style: italic;
}

h4 {
  font-size: 0.9375rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 300;
  letter-spacing: 0.0625rem;
}

h6 {
  font-size: 0.875rem;
  font-weight: 400;
}

.small-text {
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

blockquote, quote {
  color: #0A0A0A;
  margin: 0;
  margin-bottom: 2rem;
  font-size: 2rem;
  line-height: 1;
}

hr {
  margin: 2rem 0;
  background: none;
  border: none;
  border-top: 0.0625rem solid #e2e2e2;
}

.user-content img {
  margin-bottom: 2rem;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.user-content .button {
  margin-bottom: 2rem;
  margin-right: 0.75rem;
}
.user-content a {
  display: inline-block;
}
.user-content a.button {
  text-decoration: none;
}
.user-content p .button:last-child {
  margin-bottom: 0;
}
.user-content ul, .user-content ol {
  padding-left: 1.375rem;
  margin-top: 0;
  margin-bottom: 2rem;
}
.user-content ul li, .user-content ol li {
  padding-left: 0.3125rem;
  margin-bottom: 0.5rem;
}

.align-center {
  text-align: center;
}

.video-c {
  position: relative;
  padding-top: 56%;
  width: 100%;
}
.video-c.square {
  padding-top: 100%;
}
.video-c .video-cover-c {
  cursor: pointer;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.video-c video {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

.img-filter {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: #0A0A0A;
  opacity: 0.2;
}

.play-button {
  display: inline-block;
  cursor: pointer;
  position: relative;
  z-index: 5;
  line-height: 0;
}
.play-button svg {
  width: 3.25rem;
}
.play-button svg circle {
  stroke: white;
  fill: transparent;
  transition: 0.4s ease all;
}
.play-button svg path {
  fill: white;
  transition: 0.4s ease all;
}
.play-button:hover svg circle {
  fill: white;
}
.play-button:hover svg path {
  fill: #0A0A0A;
}
.play-button.center {
  position: absolute;
}

.button {
  display: inline-flex;
  align-items: center;
  font-size: 0.9375rem;
  line-height: 1.3;
  overflow: hidden;
  padding: 1.1875rem 2rem;
  position: relative;
  text-transform: uppercase;
  transition: color 0.3s cubic-bezier(0, 0.25, 0.5, 1);
  z-index: 0;
  background: white;
  border: 0.0625rem solid #0A0A0A;
  color: #0A0A0A;
  cursor: pointer;
  text-decoration: none;
}
.button svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.875rem;
}
.button svg path {
  fill: #0A0A0A;
  transition: fill 0.3s cubic-bezier(0, 0.25, 0.5, 1);
}
.button:before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateX(-115%);
  transition: all 0.3s cubic-bezier(0, 0.25, 0.5, 1);
  width: 100%;
  z-index: -1;
  background-color: white;
}
.button:hover {
  color: white;
}
.button:hover svg path {
  fill: white;
}
.button:hover:before {
  transform: translateX(0) scaleX(1.35);
}
.button.on-black {
  border-color: white;
  color: white;
  background: transparent;
}
.button.on-black svg path {
  fill: white;
}
.button.on-black:hover {
  color: #0A0A0A;
}
.button.on-black:hover svg path {
  fill: #0A0A0A;
}
.button.on-black:hover:before {
  background-color: white;
}

#preloader {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0A0A0A;
  z-index: 9999;
}
#preloader .preloader-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#preloader .preloader-container #preloader-animation {
  width: 22.5rem;
  height: auto;
}

.page-filter {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
  background: black;
  opacity: 0.4;
  z-index: 55;
}

header {
  position: absolute;
  top: 0;
  color: white;
  z-index: 50;
  width: 100%;
  padding: 2.875rem 0 2.5rem;
  transition: top 0.6s ease;
  background: transparent;
}
@media (max-width: 1200px) {
  header {
    padding: 20px 0 18px;
    color: #EACEBF;
    background: #0A0A0A;
    position: fixed;
  }
}
@media (min-width: 1200px) {
  header.transparent {
    background: transparent;
  }
}
header.hide {
  top: -18.75rem;
}
header .header-row {
  display: flex;
  align-items: center;
}
header .header-row .logo-col {
  margin-right: auto;
  line-height: 0;
  z-index: 65;
}
header .header-row .logo-col img, header .header-row .logo-col svg {
  width: 7.5rem;
}
@media (max-width: 700px) {
  header .header-row .logo-col img, header .header-row .logo-col svg {
    width: 98px;
  }
}
header .header-row .logo-col img path, header .header-row .logo-col svg path {
  fill: white;
}
@media (max-width: 1200px) {
  header .header-row .logo-col img path, header .header-row .logo-col svg path {
    fill: #EACEBF;
  }
}
header .header-row .open-nav-col {
  width: 0;
}
header .header-row .outer-menu-col {
  display: flex;
  align-items: center;
  margin-right: 3.875rem;
}
@media (max-width: 700px) {
  header .header-row .outer-menu-col {
    display: none;
  }
}
header .header-row .outer-menu-col a {
  text-transform: uppercase;
  font-size: 0.9375rem;
  margin-left: 1.25rem;
  cursor: pointer;
}
header .header-row .burger-col {
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 60;
}
header .header-row .burger-col .burger {
  width: 1.75rem;
  height: 1.75rem;
  position: relative;
  line-height: 0;
  padding-top: 0.25rem;
}
header .header-row .burger-col .burger span {
  margin: 0.25rem 0;
  width: 100%;
  height: 0.125rem;
  background: white;
  display: inline-block;
  transform: rotate(0);
  transition: 0.4s ease transform;
}
@media (max-width: 1200px) {
  header .header-row .burger-col .burger span {
    background: #EACEBF;
  }
}
header .header-row .burger-col .title {
  text-transform: uppercase;
  font-size: 0.9375rem;
  margin-left: 1rem;
}
header .header-row .burger-col .title.close {
  display: none;
}
header .header-row .burger-col.opened .burger span {
  position: absolute;
  top: 0.5625rem;
}
header .header-row .burger-col.opened .burger span:first-child {
  transform: rotate(45deg);
}
header .header-row .burger-col.opened .burger span:last-child {
  transform: rotate(-45deg);
}
header .header-row .burger-col.opened .title.menu {
  display: none;
}
header .header-row .burger-col.opened .title.close {
  display: inline-block;
}
header.white {
  background: white;
}
header.white .header-row .logo-col svg path {
  fill: #0A0A0A;
}
header.white .outer-menu-col a {
  color: black;
}
header.white .burger-col .burger span {
  background: #0A0A0A;
}
header.white .burger-col .title {
  color: #0A0A0A;
}

.primary-nav {
  display: none;
  background: #0A0A0A;
  width: 100%;
  max-width: 40.875rem;
  height: 100vh;
  overflow-y: auto;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 60;
}
@media (max-width: 1200px) {
  .primary-nav {
    width: 100%;
    height: auto;
    max-height: 100vh;
    padding-top: 6.25rem;
    max-width: 100%;
  }
}
.primary-nav .nav-content {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EACEBF;
  width: 100%;
  height: 100%;
}
@media (max-width: 1200px) {
  .primary-nav .nav-content {
    display: block;
    padding-bottom: 4.375rem;
  }
}
.primary-nav .nav-content .nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.primary-nav .nav-content .nav-menu ul li {
  list-style: none;
  margin: 0;
  padding: 0.3125rem 0;
}
.primary-nav .nav-content .nav-menu ul li a {
  cursor: pointer;
  padding: 0.0625rem 0;
  font-size: 2.625rem;
  font-family: "Didot";
  transition: 0.4s ease color;
}
@media (min-width: 1200px) {
  .primary-nav .nav-content .nav-menu ul li a {
    position: relative;
    text-decoration: none;
  }
  .primary-nav .nav-content .nav-menu ul li a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0rem;
    width: 0;
    height: 0.0625rem;
    background: #0A0A0A;
    transition: 0.4s ease width;
  }
  .primary-nav .nav-content .nav-menu ul li a:hover {
    text-decoration: none;
  }
  .primary-nav .nav-content .nav-menu ul li a:hover:before {
    width: 100%;
  }
}
.primary-nav .nav-content .nav-menu ul li a:before {
  background: #D52C17;
}
@media (min-width: 1200px) {
  .primary-nav .nav-content .nav-menu ul li a:hover {
    color: #D52C17;
  }
}
.primary-nav .nav-content .soc-menu {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 4.5rem;
}
@media (max-width: 1200px) {
  .primary-nav .nav-content .soc-menu {
    position: relative;
    bottom: 0;
    margin-top: 1.875rem;
  }
}
.primary-nav .nav-content .soc-menu .row {
  display: inline-flex;
  align-items: center;
}
.primary-nav .nav-content .soc-menu .row .el {
  padding: 0 1.25rem;
  border-right: 0.0625rem solid #EACEBF;
  line-height: 0;
}
.primary-nav .nav-content .soc-menu .row .el a {
  font-size: 0.875rem;
  display: inline-block;
  transition: 0.4s ease color;
  line-height: 1.4;
}
@media (min-width: 1200px) {
  .primary-nav .nav-content .soc-menu .row .el a {
    position: relative;
    text-decoration: none;
  }
  .primary-nav .nav-content .soc-menu .row .el a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0rem;
    width: 0;
    height: 0.0625rem;
    background: #0A0A0A;
    transition: 0.4s ease width;
  }
  .primary-nav .nav-content .soc-menu .row .el a:hover {
    text-decoration: none;
  }
  .primary-nav .nav-content .soc-menu .row .el a:hover:before {
    width: 100%;
  }
}
.primary-nav .nav-content .soc-menu .row .el a:before {
  background: #D52C17;
  bottom: 0;
}
.primary-nav .nav-content .soc-menu .row .el a:hover {
  color: #D52C17;
}
.primary-nav .nav-content .soc-menu .row .el:last-child {
  border-right: none;
}

.modal-open {
  overflow: hidden;
}

.popup {
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  background: rgba(226, 226, 226, 0.6);
}
.popup.js-locomotive-popup {
  height: auto;
}
@media (max-width: 1200px) {
  .popup.js-locomotive-popup {
    height: 100vh;
  }
}
.popup .popup-flex {
  padding: 0 1.25rem 6.6875rem 1.25rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
@media (max-width: 1200px) {
  .popup .popup-flex {
    padding: 0;
  }
}
.popup .popup-flex .popup-c {
  margin-top: 2.625rem;
  margin-bottom: 2.625rem;
  position: relative;
  max-width: 68rem;
  width: 100%;
  background: white;
  display: inline-block;
}
@media (max-width: 1200px) {
  .popup .popup-flex .popup-c {
    margin: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
  }
}
.popup .popup-flex .popup-c .sticky-close {
  position: absolute;
  top: 0.5rem;
  right: 1.25rem;
  z-index: 99;
}
@media (max-width: 1200px) {
  .popup .popup-flex .popup-c .sticky-close {
    position: fixed;
    top: 5px;
    right: 7px;
  }
}
.popup .popup-flex .popup-c .sticky-close .close {
  position: relative;
  top: 0;
  right: 0;
}
.popup .popup-flex .popup-c .close {
  width: 3.875rem;
  height: 3.875rem;
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 10;
  cursor: pointer;
}
.popup .popup-flex .popup-c .close path {
  stroke: #0A0A0A;
  transition: 0.4s ease all;
  transform: scale(1);
  transform-origin: center;
}
.popup .popup-flex .popup-c .close:hover path {
  stroke: #0A0A0A;
  transform: scale(0.8);
}
.popup .popup-flex .popup-c .popup-content {
  position: relative;
}
.popup.video-popup {
  background: black;
}
.popup.video-popup .popup-flex {
  padding: 0;
}
.popup.video-popup .popup-flex .popup-c {
  max-width: 100%;
  background: #0A0A0A;
}
.popup.video-popup .popup-flex .popup-c .popup-video-container video, .popup.video-popup .popup-flex .popup-c .popup-video-container iframe {
  width: 5000px;
  height: 2000px;
  max-width: 100%;
  max-height: calc(100vh - 80px);
  margin-bottom: 80px;
}

.moving-banner {
  position: relative;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  text-transform: uppercase;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
}
.moving-banner .moving-banner-line {
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
}
.moving-banner .moving-banner-line .moving-banner-line-element {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 15.625rem;
  height: 5rem;
}
.moving-banner .moving-banner-line .moving-banner-line-element img {
  max-width: 90%;
  max-height: 100%;
}

.custom-select {
  position: relative;
}
.custom-select select {
  display: none;
}
@media (max-width: 1200px) {
  .custom-select select {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 3.5rem;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
  }
}
.custom-select .select-selected {
  border: 0.0625rem solid #EACEBF;
  position: relative;
  font-size: 1rem;
  padding: 1rem 2.75rem 1rem 1.25rem;
  cursor: pointer;
  box-sizing: border-box;
}
.custom-select .select-selected:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 0.3125rem solid transparent;
  border-right: 0.3125rem solid transparent;
  border-top: 0.3125rem solid #EACEBF;
  top: 1.5rem;
  right: 1.5rem;
}
.custom-select .select-items {
  position: absolute;
  left: 5%;
  top: -1.25rem;
  width: 90%;
  display: inline-block;
  color: #0A0A0A;
  padding: 0.5rem;
  background: #EACEBF;
  max-height: 22.0625rem;
  overflow: auto;
}
.custom-select .select-items.select-hide {
  display: none;
}
.custom-select .select-items div {
  cursor: pointer;
  font-size: 1rem;
  padding: 0.625rem 0.75rem;
  transition: 0.4s ease background-color;
}
.custom-select .select-items div:hover {
  background: rgba(74, 28, 31, 0.15);
}
.custom-select .select-items div.same-as-selected {
  opacity: 0.5;
}

.js-paralax-image {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -40%;
  height: 140%;
}
@media (max-width: 1200px) {
  .js-paralax-image {
    top: 0;
    height: 100%;
  }
}

.cursor-ball {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 500;
  pointer-events: none;
  opacity: 0.8;
}
@media (max-width: 1200px) {
  .cursor-ball {
    display: none;
  }
}
.cursor-ball circle {
  fill: #D52C17;
}

.cursor {
  display: none;
}

@media (any-pointer: fine) {
  .cursor {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    pointer-events: none;
    z-index: 99;
  }

  .cursor__inner {
    fill: #D52C17;
    stroke: #D52C17;
    stroke-width: 0.0625rem;
  }

  .credits {
    padding-left: 25vw;
  }
}
.hero-block {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .hero-block {
    background: #0A0A0A;
    height: auto;
  }
}
.hero-block .hero-video-c {
  width: 100%;
  height: 100%;
}
@media (max-width: 1200px) {
  .hero-block .hero-video-c {
    margin-top: 5.0625rem;
    position: relative;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 600px) {
  .hero-block .hero-video-c {
    display: block;
  }
}
.hero-block .hero-video-c:after {
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  border: 0rem solid #0A0A0A;
  transition: 0.4s ease border;
  box-sizing: border-box;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .hero-block .hero-video-c:after {
    display: none;
  }
}
.hero-block .hero-video-c video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  max-width: 130vw;
  max-height: 150vh;
}
@media (max-width: 1200px) {
  .hero-block .hero-video-c video {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: auto;
    transform: none;
  }
}
.hero-block .hero-video-c .resp-title {
  display: none;
  color: #EACEBF;
}
@media (max-width: 1200px) {
  .hero-block .hero-video-c .resp-title {
    display: block;
    padding-left: 4%;
    padding-right: 4%;
    position: absolute;
    max-width: 43.75rem;
  }
}
@media (max-width: 600px) {
  .hero-block .hero-video-c .resp-title {
    position: relative;
    margin-top: 1.75rem;
  }
}
@media (max-width: 600px) {
  .hero-block .hero-video-c .resp-title h1 {
    margin-bottom: 4.5rem;
  }
}
.hero-block .hero-video-c .hero-on-video {
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: #0A0A0A;
}
@media (max-width: 1200px) {
  .hero-block .hero-video-c .hero-on-video {
    display: none;
  }
}
.hero-block .hero-video-c .hero-on-video .on-video-content {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  text-align: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.hero-block .hero-video-c .hero-on-video .on-video-content h1 {
  margin-bottom: 10vh;
  max-width: 39.625rem;
  opacity: 1;
  position: relative;
  top: 0;
}
.hero-block .hero-video-c .hero-on-video .on-video-content .explore-c {
  position: absolute;
  bottom: 3.75rem;
  opacity: 1;
  left: 0;
  width: 100%;
  text-align: center;
  cursor: pointer;
}
.hero-block .hero-video-c .hero-on-video .on-video-content .explore-c .explore {
  font-size: 0.9375rem;
  text-transform: uppercase;
  position: relative;
  top: -7.5rem;
}
.hero-block .hero-video-c .hero-on-video .on-video-content .explore-c .explore .explore-button {
  display: inline-block;
  cursor: pointer;
}
.hero-block .hero-video-c .hero-on-video .on-video-content .explore-c .explore-circle {
  width: 2rem;
  height: 2rem;
  display: inline-block;
  border: 0.0625rem solid white;
  border-radius: 50%;
  position: relative;
}
.hero-block .hero-video-c .hero-on-video .on-video-content .explore-c .explore-circle:before {
  content: "";
  position: absolute;
  left: 0.875rem;
  bottom: 1rem;
  width: 0.0625rem;
  height: 7.5rem;
  background: white;
}
.hero-block.explore-hovered .hero-video-c:after, .hero-block.scrolled .hero-video-c:after {
  border: 6.25rem solid #0A0A0A;
}

.navigation-block {
  background: #0A0A0A;
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  color: #EACEBF;
  transition: all 1s ease;
  position: relative;
}
@media (max-width: 1200px) {
  .navigation-block {
    display: none;
  }
}
.navigation-block:before {
  content: "";
  background: #0A0A0A;
  width: 100%;
  height: 0.25rem;
  position: absolute;
  top: -0.125rem;
  left: 0;
}
.navigation-block .nav-menu {
  position: relative;
}
.navigation-block .nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.navigation-block .nav-menu ul li {
  list-style: none;
  margin: 0;
  padding: 0.3125rem 0;
  text-align: center;
  position: relative;
}
.navigation-block .nav-menu ul li a {
  display: block;
  cursor: pointer;
  padding: 0.0625rem 0;
  font-size: 3.875rem;
  font-family: "Didot";
  transition: 0.4s ease color;
}
.navigation-block .nav-menu ul li a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2.1875rem;
  width: 7.5rem;
  height: 0.0625rem;
  background: #EACEBF;
  transition: 0.4s ease all;
}
.navigation-block .nav-menu ul li a span {
  display: inline-block;
  position: relative;
  transition: 0.4s ease all;
}
.navigation-block .nav-menu ul li a span:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0rem;
  width: 0;
  height: 0.0625rem;
  transition: 0.4s ease width;
  background: #D52C17;
}
.navigation-block .nav-menu ul li a:hover:before {
  width: 15rem;
  background: #D52C17;
}
.navigation-block .nav-menu ul li a:hover span {
  color: #D52C17;
}
.navigation-block .nav-menu ul li a:hover span:before {
  background: #D52C17;
  width: 100%;
}

.block-image-text-row {
  position: relative;
  overflow: hidden;
  padding-top: 8.875rem;
  padding-bottom: 8.875rem;
  margin-top: -0.125rem;
  transition: 1.6s ease all;
}
@media (max-width: 1200px) {
  .block-image-text-row {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}
.block-image-text-row.js-add-class-when-in-screen {
  background: #0A0A0A;
  color: #EACEBF;
}
.block-image-text-row.js-add-class-when-in-screen.change-colors {
  background: transparent;
  color: #0A0A0A;
}
.block-image-text-row .circle {
  width: 20rem;
  height: 20rem;
  position: absolute;
  border: 0.08125rem solid #0A0A0A;
  border-radius: 50%;
}
@media (max-width: 1200px) {
  .block-image-text-row .circle {
    display: none;
  }
}
.block-image-text-row .circle.top {
  left: calc(50% - 10rem);
  top: -6.25rem;
}
.block-image-text-row .circle.right {
  bottom: 8.875rem;
  right: -10rem;
}
.block-image-text-row .block-colons .images-col .images-row {
  display: flex;
  flex-wrap: wrap;
}
.block-image-text-row .block-colons .images-col .images-row .small-images-col {
  width: 70%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.block-image-text-row .block-colons .images-col .images-row .small-images-col .small-image-col {
  position: relative;
  overflow: hidden;
  width: 80%;
  padding-top: 120%;
}
.block-image-text-row .block-colons .images-col .images-row .small-images-col .small-image-col .img {
  left: 0;
  width: 100%;
  position: absolute;
  height: 140%;
  top: -20%;
}
.block-image-text-row .block-colons .images-col .images-row .small-images-col .small-image-col.second-col {
  width: 20%;
}
.block-image-text-row .block-colons .images-col .images-row .small-images-col .small-image-col.second-col .img {
  top: auto;
  bottom: -20%;
}
.block-image-text-row .block-colons .images-col .images-row .small-images-col .images-text-col {
  width: 100%;
  padding-top: 2rem;
  padding-right: 2rem;
}
.block-image-text-row .block-colons .images-col .images-row .small-images-col .images-text-col h2 {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .block-image-text-row .block-colons .images-col .images-row .small-images-col .images-text-col {
    opacity: 0;
    padding-top: 30%;
  }
  .block-image-text-row .block-colons .images-col .images-row .small-images-col .images-text-col h1, .block-image-text-row .block-colons .images-col .images-row .small-images-col .images-text-col h2, .block-image-text-row .block-colons .images-col .images-row .small-images-col .images-text-col h3, .block-image-text-row .block-colons .images-col .images-row .small-images-col .images-text-col p {
    display: none;
  }
}
.block-image-text-row .block-colons .images-col .images-row .big-image-col {
  width: 30%;
  display: flex;
}
.block-image-text-row .block-colons .images-col .images-row .big-image-col .big-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-top: 345%;
}
@media (max-width: 1200px) {
  .block-image-text-row .block-colons .images-col .images-row .big-image-col .big-image {
    margin-left: -1px;
  }
}
.block-image-text-row .block-colons .images-col .images-row .big-image-col .big-image .img {
  left: 0;
  width: 100%;
  position: absolute;
  height: 140%;
  top: -20%;
}
.block-image-text-row .block-colons .text-col {
  padding-top: 1.875rem;
  text-align: left;
  padding-left: 8%;
}
@media (max-width: 1200px) {
  .block-image-text-row .block-colons .text-col {
    padding-top: 0;
  }
}
.block-image-text-row .block-colons .text-col .text-c {
  text-align: left;
  display: inline-block;
  max-width: 26.5rem;
}
.block-image-text-row .block-colons .text-col .text-c h1 {
  margin-bottom: 3.25rem;
}
@media (max-width: 1200px) {
  .block-image-text-row .block-colons .text-col .text-c h1 {
    margin-bottom: 1.75rem;
  }
}
.block-image-text-row .block-colons .text-col .text-c h4 {
  font-family: "Lexend Deca", sans-serif;
  font-weight: 400;
}
@media (max-width: 1000px) {
  .block-image-text-row .block-colons .text-col {
    order: -1;
    text-align: left;
    padding-left: 0;
  }
}
@media (max-width: 600px) {
  .block-image-text-row .block-colons .text-col .resp-images-title {
    display: block;
    margin-bottom: 1.75rem;
  }
}
.block-image-text-row .block-colons.image-right .text-col {
  order: -1;
  text-align: left;
  padding-left: 0;
}

.video-popup-block .resp-title {
  display: none;
}
@media (max-width: 700px) {
  .video-popup-block .resp-title {
    display: block;
  }
}
.video-popup-block .block-c {
  position: relative;
  overflow: hidden;
  padding-top: 45%;
}
@media (max-width: 1200px) {
  .video-popup-block .block-c {
    padding-top: 50%;
  }
}
@media (max-width: 700px) {
  .video-popup-block .block-c {
    padding-top: 70%;
  }
}
.video-popup-block .block-c .img {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.video-popup-block .block-c .img:after {
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: black;
  opacity: 0.3;
}
.video-popup-block .block-c .content-c {
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.video-popup-block .block-c .content-c .content {
  color: white;
  padding: 5%;
  text-align: center;
  max-width: 39.625rem;
  box-sizing: content-box;
}
@media (max-width: 700px) {
  .video-popup-block .block-c .content-c .content .title {
    display: none;
  }
}

.logo-slider-block {
  margin-bottom: 3.125rem;
}
.logo-slider-block .title-c .title {
  font-size: 0.9375rem;
  text-transform: uppercase;
  padding-bottom: 1rem;
  text-align: center;
  border-bottom: 0.0625rem solid #0A0A0A;
}
.logo-slider-block .moving-banner {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
@media (max-width: 1200px) {
  .logo-slider-block .moving-banner {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
}

.explore-slider-block {
  background: #4A1C1F;
  position: relative;
  min-height: 100vh;
  width: 100%;
  color: #EACEBF;
}
@media (max-width: 1200px) {
  .explore-slider-block {
    min-height: auto;
  }
}
.explore-slider-block .text-col {
  position: relative;
  padding: 2.625rem 4.75rem 2.8125rem 6.25rem;
  display: flex;
}
@media (max-width: 1350px) {
  .explore-slider-block .text-col {
    padding: 2.625rem 4%;
  }
}
@media (max-width: 1200px) {
  .explore-slider-block .text-col {
    padding: 0 4%;
  }
}
.explore-slider-block .text-col .padding-container {
  position: relative;
  flex-basis: auto;
  display: flex;
  align-items: center;
  width: 100%;
}
.explore-slider-block .text-col .padding-container .dropdown-c {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  z-index: 5;
  flex-wrap: wrap;
}
.explore-slider-block .text-col .padding-container .dropdown-c .title-col {
  font-size: 0.875rem;
  padding-right: 1.5rem;
}
@media (max-width: 600px) {
  .explore-slider-block .text-col .padding-container .dropdown-c .title-col {
    width: 100%;
    margin-bottom: 0.625rem;
  }
}
.explore-slider-block .text-col .padding-container .dropdown-c .dropdown-col .custom-select {
  min-width: 19.625rem;
}
@media (max-width: 1300px) {
  .explore-slider-block .text-col .padding-container .dropdown-c .dropdown-col .custom-select {
    min-width: 16.875rem;
  }
}
@media (max-width: 1200px) {
  .explore-slider-block .text-col .padding-container .dropdown-c .dropdown-col .custom-select {
    min-width: 18.75rem;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .explore-slider-block .text-col .padding-container .dropdown-c .dropdown-col {
    width: 100%;
    margin-bottom: 0.625rem;
  }
}
@media (max-width: 1200px) {
  .explore-slider-block .text-col .padding-container .dropdown-c {
    top: 5.5rem;
    max-width: 100%;
  }
}
.explore-slider-block .text-col .padding-container .text-c {
  position: absolute;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 50px;
  text-align: center;
}
@media (max-width: 1200px) {
  .explore-slider-block .text-col .padding-container .text-c {
    position: relative;
    padding-top: 13.125rem;
    padding-bottom: 0;
    text-align: left;
  }
}
.explore-slider-block .text-col .padding-container .text-c .content-wrap {
  display: inline-block;
  max-width: 34.375rem;
  width: 100%;
  text-align: left;
}
@media (max-width: 1200px) {
  .explore-slider-block .text-col .padding-container .text-c .content-wrap {
    max-width: 100%;
  }
}
.explore-slider-block .text-col .padding-container .text-c .content-wrap ul, .explore-slider-block .text-col .padding-container .text-c .content-wrap ol, .explore-slider-block .text-col .padding-container .text-c .content-wrap p, .explore-slider-block .text-col .padding-container .text-c .content-wrap li, .explore-slider-block .text-col .padding-container .text-c .content-wrap h1, .explore-slider-block .text-col .padding-container .text-c .content-wrap h2, .explore-slider-block .text-col .padding-container .text-c .content-wrap h3, .explore-slider-block .text-col .padding-container .text-c .content-wrap h4, .explore-slider-block .text-col .padding-container .text-c .content-wrap h5, .explore-slider-block .text-col .padding-container .text-c .content-wrap h6, .explore-slider-block .text-col .padding-container .text-c .content-wrap a {
  position: relative;
  top: 0;
}
.explore-slider-block .text-col .padding-container .text-c .content-wrap h1 {
  margin-bottom: 0.75rem;
}
.explore-slider-block .text-col .padding-container .text-c .content-wrap h6 {
  margin-bottom: 0.75rem;
  font-family: "Lexend Deca", sans-serif;
  color: #a57a75;
}
.explore-slider-block .text-col .padding-container .text-c .content-wrap ul {
  margin: 2rem 0;
  padding: 0;
  display: flex;
  flex-flow: column wrap;
  max-height: calc(100vh - 25rem);
}
@media (max-width: 1200px) {
  .explore-slider-block .text-col .padding-container .text-c .content-wrap ul {
    max-height: 18.75rem;
  }
}
@media (max-width: 500px) {
  .explore-slider-block .text-col .padding-container .text-c .content-wrap ul {
    max-height: none;
  }
}
.explore-slider-block .text-col .padding-container .text-c .content-wrap ul li {
  list-style: none;
  margin: 0;
  margin-bottom: 0.875rem;
  padding: 0;
  display: inline-block;
  width: 50%;
}
@media (max-width: 400px) {
  .explore-slider-block .text-col .padding-container .text-c .content-wrap ul li {
    width: 100%;
  }
}
.explore-slider-block .text-col .padding-container .text-c .content-wrap ul li:last-child {
  margin-bottom: 0;
}
.explore-slider-block .text-col .padding-container .slider-nav-row {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}
@media (max-width: 1200px) {
  .explore-slider-block .text-col .padding-container .slider-nav-row {
    top: 2.25rem;
    bottom: auto;
  }
}
.explore-slider-block .img-col {
  position: relative;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .explore-slider-block .img-col {
    padding: 0 4%;
  }
}
.explore-slider-block .img-col .img-padding {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
@media (max-width: 1200px) {
  .explore-slider-block .img-col .img-padding {
    padding-top: 100%;
    height: auto;
  }
}
.explore-slider-block .img-col .img-padding .slide-image-c {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  transform: translate(0%, 100%);
  opacity: 1;
  z-index: 1;
}
.explore-slider-block .img-col .img-padding .slide-image-c:first-child {
  transform: translate(0%, 0%);
}
.explore-slider-block .img-col .img-padding .slide-image-c .img {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  transform: translate(0%, -60%) scale(1.2);
}
.explore-slider-block .img-col .img-padding .slide-image-c .img:first-child {
  transform: translate(0%, 0%) scale(1);
}
.explore-slider-block .img-col .resp-slider-nav {
  position: relative;
  top: 0;
  left: 0;
  margin: 1.25rem 0 1.875rem 0;
  display: none;
}
@media (max-width: 1200px) {
  .explore-slider-block .img-col .resp-slider-nav {
    display: flex;
  }
}
.explore-slider-block .slider-nav-row {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}
@media (max-width: 1200px) {
  .explore-slider-block .slider-nav-row {
    top: 2.25rem;
  }
}
.explore-slider-block .slider-nav-row .numbers-col .numbers {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
}
.explore-slider-block .slider-nav-row .numbers-col .numbers div.seperator {
  margin: 0 1rem;
}
.explore-slider-block .slider-nav-row .arrows-col {
  text-align: right;
}
.explore-slider-block .slider-nav-row .arrows-col .arrows {
  display: inline-flex;
  align-items: center;
}
.explore-slider-block .slider-nav-row .arrows-col .arrows .arrow {
  cursor: pointer;
  line-height: 0;
  margin-left: 1.5rem;
}
.explore-slider-block .slider-nav-row .arrows-col .arrows .arrow.js-prev-slide {
  transform: rotate(180deg);
}
.explore-slider-block .slider-nav-row .arrows-col .arrows .arrow svg path {
  fill: #EACEBF;
}
.explore-slider-block .slider-nav-row .arrows-col .arrows .arrow:hover {
  opacity: 0.8;
}

.background-text-block {
  position: relative;
  overflow: hidden;
  background: #0A0A0A;
}
@media (max-width: 1000px) {
  .background-text-block {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}
.background-text-block .paralax-c {
  overflow: hidden;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: auto;
  bottom: 0;
}
@media (min-width: 1200px) {
  .background-text-block .paralax-c {
    height: 82%;
  }
}
.background-text-block .paralax-c .img {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.background-text-block .text-wrap {
  position: relative;
  z-index: 10;
  display: block;
  margin: auto;
  max-width: 51rem;
  padding: 3.875rem 5.6875rem 8.875rem 5.6875rem;
  background: #0A0A0A;
}
@media (max-width: 1000px) {
  .background-text-block .text-wrap {
    max-width: 100%;
    padding: 2rem 5%;
  }
}
.background-text-block .text-wrap .text-c {
  color: #EACEBF;
}
.background-text-block .text-wrap .text-c h4 {
  font-family: "Lexend Deca", sans-serif;
  margin-bottom: 3.8125rem;
  font-weight: 300;
  letter-spacing: 0.0625rem;
}
@media (max-width: 1000px) {
  .background-text-block .text-wrap .text-c h4 {
    margin-bottom: 2rem;
  }
}
.background-text-block .text-wrap .text-c h1 {
  margin-bottom: 3.25rem;
}
@media (max-width: 1000px) {
  .background-text-block .text-wrap .text-c h1 {
    margin-bottom: 2rem;
  }
}
.background-text-block .text-wrap .text-c p {
  margin-bottom: 0.875rem;
}
.background-text-block .text-wrap .text-c p:last-child {
  margin-bottom: 0;
}

footer {
  color: #EACEBF;
}
footer a {
  position: relative;
}
@media (min-width: 1200px) {
  footer a {
    position: relative;
    text-decoration: none;
  }
  footer a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0rem;
    width: 0;
    height: 0.0625rem;
    background: #0A0A0A;
    transition: 0.4s ease width;
  }
  footer a:hover {
    text-decoration: none;
  }
  footer a:hover:before {
    width: 100%;
  }
}
footer a:before {
  background: #EACEBF;
}
footer .top-block {
  position: relative;
  background: #4A1C1F;
}
@media (max-width: 1200px) {
  footer .top-block {
    background: #3D181B;
  }
}
footer .top-block .go-up {
  position: absolute;
  right: 2rem;
  top: 3.25rem;
  display: inline-flex;
  width: 3.25rem;
  height: 3.25rem;
  cursor: pointer;
  background: #0A0A0A;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transform: scale(1);
  transition: 0.4s ease all;
}
footer .top-block .go-up svg {
  width: 0.75rem;
  height: auto;
}
footer .top-block .go-up:hover {
  transform: scale(1.2);
}
footer .top-block .top-row {
  display: flex;
  flex-wrap: wrap;
}
footer .top-block .top-row .top-col {
  position: relative;
  z-index: 1;
  background: #4A1C1F;
  width: 50%;
  padding-top: 5.75rem;
  padding-bottom: 5.75rem;
  padding-right: 5%;
}
@media (max-width: 1200px) {
  footer .top-block .top-row .top-col {
    background: #4A1C1F;
  }
  footer .top-block .top-row .top-col:after, footer .top-block .top-row .top-col:before {
    content: "";
    background: #4A1C1F;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 99%;
    z-index: 0;
  }
  footer .top-block .top-row .top-col:before {
    left: auto;
    right: 99%;
  }
}
@media (max-width: 1000px) {
  footer .top-block .top-row .top-col {
    width: 100%;
  }
}
@media (max-width: 600px) {
  footer .top-block .top-row .top-col {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
    padding-right: 5rem;
  }
}
footer .top-block .top-row .top-col .col-c .col-titles {
  position: relative;
}
footer .top-block .top-row .top-col .col-c .col-titles h4 {
  margin-bottom: 0.375rem;
  font-family: "Lexend Deca", sans-serif;
}
footer .top-block .top-row .top-col .col-c .col-titles h2 {
  margin-bottom: 2.5625rem;
}
@media (max-width: 600px) {
  footer .top-block .top-row .top-col .col-c .col-titles h2 {
    margin-bottom: 2rem;
  }
}
footer .top-block .top-row .top-col .col-c .content-row {
  display: flex;
  flex-wrap: wrap;
}
footer .top-block .top-row .top-col .col-c .content-row .col {
  width: 50%;
  padding-right: 2.5rem;
  flex-basis: auto;
}
@media (max-width: 600px) {
  footer .top-block .top-row .top-col .col-c .content-row .col {
    width: 100%;
    margin-top: 2rem;
    padding-right: 0;
  }
  footer .top-block .top-row .top-col .col-c .content-row .col:first-child {
    margin-top: 0;
  }
}
footer .top-block .top-row .top-col .col-c .content-row .col h4 {
  margin-bottom: 1rem;
  font-family: "Lexend Deca", sans-serif;
}
footer .top-block .top-row .top-col .col-c .content-row .col p {
  margin-bottom: 1rem;
}
footer .top-block .top-row .top-col .col-c .content-row .col p:last-child {
  margin-bottom: 0;
}
footer .top-block .top-row .top-col.right-col {
  background: #3D181B;
  padding-right: 0;
  padding-left: 5%;
  position: relative;
}
@media (max-width: 1000px) {
  footer .top-block .top-row .top-col.right-col {
    padding-left: 0;
  }
}
footer .top-block .top-row .top-col.right-col:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  background: #3D181B;
  height: 100%;
}
@media (max-width: 1200px) {
  footer .top-block .top-row .top-col.right-col:after {
    display: none;
  }
}
footer .bottom-row {
  margin-top: -0.0625rem;
  background: #0A0A0A;
  padding-top: 4.25rem;
  padding-bottom: 3.875rem;
}
footer .bottom-row .top-row {
  padding-bottom: 2.375rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
footer .bottom-row .top-row .menu-col {
  margin-right: auto;
}
@media (max-width: 1200px) {
  footer .bottom-row .top-row .menu-col {
    width: 100%;
    margin-bottom: 3.5625rem;
  }
}
footer .bottom-row .top-row .menu-col a {
  display: inline-block;
  margin-right: 2.625rem;
  text-transform: uppercase;
  font-size: 0.9375rem;
  letter-spacing: 0.0625rem;
  font-weight: 300;
}
@media (max-width: 800px) {
  footer .bottom-row .top-row .menu-col a {
    width: 100%;
    display: block;
    margin-bottom: 1rem;
  }
  footer .bottom-row .top-row .menu-col a:last-child {
    margin-bottom: 0;
  }
}
footer .bottom-row .top-row .soc-col {
  margin-left: auto;
}
@media (max-width: 1200px) {
  footer .bottom-row .top-row .soc-col {
    margin-left: 0.625rem;
    order: 3;
  }
}
footer .bottom-row .top-row .soc-col .row {
  display: inline-flex;
  align-items: center;
}
footer .bottom-row .top-row .soc-col .row .el {
  padding: 0 1.25rem;
  border-right: 0.0625rem solid #EACEBF;
  line-height: 0;
}
footer .bottom-row .top-row .soc-col .row .el a {
  font-size: 0.875rem;
  display: inline-block;
  line-height: 1.4;
}
footer .bottom-row .top-row .soc-col .row .el:last-child {
  border-right: none;
}
footer .bottom-row .top-row .logo-col {
  margin-left: 0.75rem;
  line-height: 0;
}
@media (max-width: 1200px) {
  footer .bottom-row .top-row .logo-col {
    order: 2;
    margin-left: 0;
  }
}
footer .bottom-row .top-row .logo-col a {
  display: inline-block;
}
footer .bottom-row .top-row .logo-col a:before {
  display: none;
}
footer .bottom-row .top-row .logo-col a svg {
  width: 5.375rem;
  height: auto;
}
@media (max-width: 800px) {
  footer .bottom-row .top-row .logo-col a svg {
    width: 4.5rem;
  }
}
footer .bottom-row .top-row .logo-col a svg path {
  fill: #EACEBF;
}
footer .bottom-row .second-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
footer .bottom-row .second-row .left-col {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 800px) {
  footer .bottom-row .second-row .left-col {
    width: 100%;
  }
}
footer .bottom-row .second-row .left-col div {
  font-size: 0.875rem;
  margin-right: 1.5rem;
}
@media (max-width: 800px) {
  footer .bottom-row .second-row .left-col div {
    width: 100%;
    margin-bottom: 1rem;
  }
  footer .bottom-row .second-row .left-col div:last-child {
    margin-bottom: 0;
  }
}
footer .bottom-row .second-row .right-col {
  margin-left: auto;
}
@media (max-width: 800px) {
  footer .bottom-row .second-row .right-col {
    margin-left: 0;
    margin-top: 1.75rem;
  }
}
footer .bottom-row .second-row .right-col a {
  color: #736863;
  font-size: 0.875rem;
}
footer .bottom-row .second-row .right-col a:before {
  background: #736863;
}

.three-images-block {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 8.875rem;
}
@media (max-width: 1000px) {
  .three-images-block {
    margin-bottom: 4.5rem;
  }
}
.three-images-block .image-col {
  position: relative;
  overflow: hidden;
  width: 30%;
  height: 33.625rem;
}
@media (max-width: 600px) {
  .three-images-block .image-col {
    height: 18.75rem;
    width: 100%;
    margin-left: 4%;
    margin-right: 4%;
  }
}
.three-images-block .image-col .img {
  left: 0;
  width: 100%;
  position: absolute;
  height: 140%;
  top: -20%;
}
.three-images-block .image-col.big {
  width: calc(40% - 0.5rem);
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
@media (max-width: 600px) {
  .three-images-block .image-col.big {
    width: 100%;
    margin-left: 4%;
    margin-right: 4%;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
}

/*# sourceMappingURL=app.css.map*/