@charset "UTF-8";
/*
	HTML5 Reset :: style.css
	----------------------------------------------------------
	We have learned much from/been inspired by/taken code where offered from:

	Eric Meyer					:: https://meyerweb.com
	HTML5 Doctor				:: https://html5doctor.com
	and the HTML5 Boilerplate	:: https://html5boilerplate.com

-------------------------------------------------------------------------------*/
/* Let's default this puppy out
-------------------------------------------------------------------------------*/
html,
body,
body div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
figure,
footer,
header,
menu,
nav,
section,
time,
mark,
audio,
video,
details,
summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  font-family: "TT Octosquares Compressed", sans-serif;
  background: transparent;
}

article,
aside,
figure,
footer,
header,
nav,
section,
details,
summary {
  display: block;
}

/* Handle box-sizing while better addressing child elements:
   https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects
*/
img,
object,
embed {
  max-width: 100%;
}

/*
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
	 In fact, it *will* cause problems with Google Maps' controls at small size.
	If this is the case for you, try uncommenting the following:

#map img {
		max-width: none;
}
*/
/* force a vertical scrollbar to prevent a jumpy page */
html {
  overflow-y: scroll;
}

/* we use a lot of ULs that aren't bulleted.
	don't forget to restore the bullets within content. */
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: bold;
  vertical-align: bottom;
}

td {
  font-weight: normal;
  vertical-align: top;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

pre {
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */
}

input[type="radio"] {
  vertical-align: text-bottom;
}

input[type="checkbox"] {
  vertical-align: bottom;
}

.ie7 input[type="checkbox"] {
  vertical-align: baseline;
}

.ie6 input {
  vertical-align: text-bottom;
}

select,
input,
textarea {
  font: 99% sans-serif;
}

table {
  font-size: inherit;
}

small {
  font-size: 85%;
}

strong {
  font-weight: bold;
}

td,
td img {
  vertical-align: top;
}

/* Make sure sup and sub don't mess with your line-heights https://gist.github.com/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* standardize any monospaced elements */
pre,
code,
kbd,
samp {
  font-family: monospace, sans-serif;
}

/* hand cursor on clickable elements */
.clickable,
label,
input[type="button"],
input[type="submit"],
input[type="file"],
button {
  cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button,
input,
select,
textarea {
  margin: 0;
}

/* make buttons play nice in IE */
button,
input[type="button"] {
  width: auto;
  overflow: visible;
}

/* scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/* let's clear some floats */
.clearfix:before,
.clearfix:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #ccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #ccc;
}

.mfp-preloader a:hover {
  color: #fff;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #fff;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #fff;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

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

.mfp-arrow-left:after {
  border-right: 17px solid #fff;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}

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

.mfp-arrow-right:after {
  border-left: 17px solid #fff;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
  screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    -ms-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.chevron-container {
  position: relative;
  width: 1.25vw;
  left: 50%;
  height: 2vw;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  bottom: 2vw;
}

.chevron {
  position: absolute;
  width: 1.25vw;
  height: 0.5vw;
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  -webkit-animation: move 3s ease-out infinite;
  animation: move 3s ease-out infinite;
}

.chevron:first-child {
  -webkit-animation: move 3s ease-out 1s infinite;
  animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  -webkit-animation: move 3s ease-out 2s infinite;
  animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
  content: " ";
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}

.chevron:before {
  left: 0;
  -webkit-transform: skew(0deg, 30deg);
  -ms-transform: skew(0deg, 30deg);
  transform: skew(0deg, 30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  -webkit-transform: skew(0deg, -30deg);
  -ms-transform: skew(0deg, -30deg);
  transform: skew(0deg, -30deg);
}

@-webkit-keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    -webkit-transform: translateY(1.5vw);
    transform: translateY(1.5vw);
  }
  67% {
    opacity: 1;
    -webkit-transform: translateY(2);
    transform: translateY(2);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2.5vw) scale3d(0.5, 0.5, 0.5);
    transform: translateY(2.5vw) scale3d(0.5, 0.5, 0.5);
  }
}

@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    -webkit-transform: translateY(1.5vw);
    transform: translateY(1.5vw);
  }
  67% {
    opacity: 1;
    -webkit-transform: translateY(2);
    transform: translateY(2);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2.5vw) scale3d(0.5, 0.5, 0.5);
    transform: translateY(2.5vw) scale3d(0.5, 0.5, 0.5);
  }
}
@-webkit-keyframes pulse {
  to {
    opacity: 1;
  }
}
@keyframes pulse {
  to {
    opacity: 1;
  }
}
.chevron-text {
  display: block;
  color: #fff;
  white-space: nowrap;
  opacity: 0.25;
  -webkit-animation: pulse 2s linear alternate infinite;
  animation: pulse 2s linear alternate infinite;
  font-weight: 300;
}

@media screen and (max-width: 960px) {
  .chevron-container {
    width: 5vw;
    height: 4vw;
    bottom: 17vw;
  }

  .chevron {
    width: 5vw;
    height: 4vw;
  }

  @-webkit-keyframes move {
    25% {
      opacity: 1;
    }
    33% {
      opacity: 1;
      -webkit-transform: translateY(10vw);
      transform: translateY(10vw);
    }
    100% {
      opacity: 0;
      -webkit-transform: translateY(15vw) scale3d(0.5, 0.5, 0.5);
      transform: translateY(15vw) scale3d(0.5, 0.5, 0.5);
    }
  }

  @keyframes move {
    25% {
      opacity: 1;
    }
    33% {
      opacity: 1;
      -webkit-transform: translateY(10vw);
      transform: translateY(10vw);
    }
    100% {
      opacity: 0;
      -webkit-transform: translateY(15vw) scale3d(0.5, 0.5, 0.5);
      transform: translateY(15vw) scale3d(0.5, 0.5, 0.5);
    }
  }
}
.btn-n {
  text-decoration: none;
  text-transform: uppercase;
  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: relative;
  font-family: "Cutmark Narrow";
  font-weight: 400;
  margin: 0 auto;
  color: #ebebf5;
}
.btn-n__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.btn-n__bg svg {
  position: absolute;
  -o-object-fit: contain;
  object-fit: contain;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn-n__text {
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 10;
  color: #ebebf5;
  text-transform: uppercase;
}
.btn-n__bg--bottom {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  pointer-events: none;
}
.btn-n__bg--top {
  z-index: 2;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
.btn-n__fill {
  z-index: 0;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn-n--light {
  color: #ebebf5;
}
.btn-n:hover {
  color: #ebebf5;
}
.btn-n--dark {
  color: #ebebf5;
}
.btn-n:hover {
  color: #ebebf5;
}

.btn-n svg:last-child {
  z-index: 0;
}
.btn-n svg:first-child {
  z-index: 1;
}
.btn-n:hover .btn-n__bg--top svg {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn-n:hover .btn-n__bg--top svg:last-child {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
.btn-n:hover .btn-n__bg--top svg:first-child {
  -webkit-transform: scale(0.88);
  -ms-transform: scale(0.88);
  transform: scale(0.88);
}
.btn-n:hover .btn-n__bg--top svg:first-child path {
  fill: #ff3200 !important;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn-n:hover .btn-n__bg--bottom {
  z-index: 1;
}
.btn-n:hover .btn-n__bg--bottom svg:last-child {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.btn-n:hover .btn-n__bg--bottom svg:first-child {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}
.btn-n:hover .btn-n__text {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn-n:hover .btn-n__fill {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.vengumpn-koveemen {
  -webkit-animation: radial-pulse 2s infinite;
  animation: radial-pulse 2s infinite;
  z-index: 2;
}

@-webkit-keyframes radial-pulse {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes radial-pulse {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
.social-btn {
  margin: 0 auto;
  text-decoration: none;
  text-transform: uppercase;
  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: relative;
  font-family: "Cutmark Narrow";
  font-weight: 400;
  min-width: 160px;
  padding: 0.5em 2em;
  font-size: 30px;
  color: #ebebf5;
}
.social-btn__shape {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.social-btn__shape svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
.social-btn__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 10;
}
.social-btn__text svg {
  height: 30px;
  width: auto;
}
.social-btn-shape__bg {
  fill: #ff3200;
  stroke: #ff3200;
  stroke-width: 4;
  z-index: 2;
}
.social-btn-shape__pulse {
  fill: #ebebf5;
  fill-opacity: 0.75;
  z-index: 5;
}
.social-btn-shape__border {
  fill: none;
  stroke: #ebebf5;
  stroke-opacity: 0.25;
  stroke-width: 2;
  z-index: 1;
}
.social-btn-shape__l-r {
  fill: #ebebf5;
  z-index: 5;
}
.social-btn-shape__t-b {
  fill: #ebebf5;
  fill-opacity: 0.75;
  z-index: 5;
}

@media (pointer: fine) {
  .social-btn:hover {
    color: #ebebf5;
  }
  .social-btn:hover .social-btn-shape__bg {
    -webkit-transform: translate(-50%, -50%) scale(0.95);
    -ms-transform: translate(-50%, -50%) scale(0.95);
    transform: translate(-50%, -50%) scale(0.95);
  }
  .social-btn:hover .social-btn-shape__bg path {
    fill: rgba(0, 0, 0, 0) !important;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .social-btn:hover .social-btn-shape__border {
    -webkit-transform: translate(-50%, -50%) scale(1.2);
    -ms-transform: translate(-50%, -50%) scale(1.2);
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 1;
  }
  .social-btn:hover .social-btn-shape__l-r {
    -webkit-transform: translate(-50%, -50%) scale(0.88);
    -ms-transform: translate(-50%, -50%) scale(0.88);
    transform: translate(-50%, -50%) scale(0.88);
  }
  .social-btn:hover .social-btn-shape__l-r path {
    fill: #ff3200 !important;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .social-btn:hover .social-btn-shape__t-b {
    -webkit-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 2;
  }
}
@media (pointer: coarse) {
  .social-btn:active {
    color: #ebebf5;
  }
  .social-btn:active .social-btn-shape__bg {
    -webkit-transform: translate(-50%, -50%) scale(0.95);
    -ms-transform: translate(-50%, -50%) scale(0.95);
    transform: translate(-50%, -50%) scale(0.95);
  }
  .social-btn:active .social-btn-shape__bg path {
    fill: rgba(0, 0, 0, 0) !important;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .social-btn:active .social-btn-shape__border {
    -webkit-transform: translate(-50%, -50%) scale(1.2);
    -ms-transform: translate(-50%, -50%) scale(1.2);
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 1;
  }
  .social-btn:active .social-btn-shape__l-r {
    -webkit-transform: translate(-50%, -50%) scale(0.88);
    -ms-transform: translate(-50%, -50%) scale(0.88);
    transform: translate(-50%, -50%) scale(0.88);
  }
  .social-btn:active .social-btn-shape__l-r path {
    fill: #ff3200 !important;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .social-btn:active .social-btn-shape__t-b {
    -webkit-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 2;
  }
}
@media screen and (max-width: 1700px) {
  .social-btn {
    min-width: 120px;
    padding: 0.3em 1.5em;
  }

  .social-btn__text svg {
    height: 23px;
  }
}
@media screen and (max-width: 600px) {
  .social-btn {
    min-width: 90px;
    padding: 0.2em 1em;
  }
  .social-btn__text svg {
    height: 20px;
  }
}
.section {
  padding: 0 8vw;
  min-height: 400px;
  height: 50vw;
  position: relative;
}

.one-section {
  position: relative;
  z-index: 99;
  height: 40vw;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
  background-color: black;
}
.preloader img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.one-section {
  background-color: #4e6376;
  position: relative;
  border-bottom: 3px solid #ebebf5;
}

.two-section {
  background-color: #a2b2c9;
  position: relative;
}
.two-section:before {
  position: absolute;
  top: -2px;
  left: 50%;
  width: 9vw;
  height: 1.5vw;
  content: "";
  z-index: 2;
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgzIiBoZWlnaHQ9IjI1IiB2aWV3Qm94PSIwIDAgMTgzIDI1IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8ZyBmaWx0ZXI9InVybCgjZmlsdGVyMF9iXzM0MDNfMjMxMTkpIj4KPHBhdGggZD0iTTE2OC41MTYgMjVIMTQuNDgzOUwwIDEwLjIxMDhWMEgxODNWMTAuMjEwOEwxNjguNTE2IDI1WiIgZmlsbD0iI0VCRUJGNSIgZmlsbC1vcGFjaXR5PSIwLjIiLz4KPC9nPgo8cGF0aCBkPSJNMTY4LjUxNiAyNUgxNC40ODM5TDIuMjg4ODJlLTA1IDEwLjE5NjFMMCAwSDE4M1YxMC4xOTYxTDE2OC41MTYgMjVaIiBmaWxsPSIjRUJFQkY1Ii8+CjxkZWZzPgo8ZmlsdGVyIGlkPSJmaWx0ZXIwX2JfMzQwM18yMzExOSIgeD0iLTciIHk9Ii03IiB3aWR0aD0iMTk3IiBoZWlnaHQ9IjM5IiBmaWx0ZXJVbml0cz0idXNlclNwYWNlT25Vc2UiIGNvbG9yLWludGVycG9sYXRpb24tZmlsdGVycz0ic1JHQiI+CjxmZUZsb29kIGZsb29kLW9wYWNpdHk9IjAiIHJlc3VsdD0iQmFja2dyb3VuZEltYWdlRml4Ii8+CjxmZUdhdXNzaWFuQmx1ciBpbj0iQmFja2dyb3VuZEltYWdlIiBzdGREZXZpYXRpb249IjMuNSIvPgo8ZmVDb21wb3NpdGUgaW4yPSJTb3VyY2VBbHBoYSIgb3BlcmF0b3I9ImluIiByZXN1bHQ9ImVmZmVjdDFfYmFja2dyb3VuZEJsdXJfMzQwM18yMzExOSIvPgo8ZmVCbGVuZCBtb2RlPSJub3JtYWwiIGluPSJTb3VyY2VHcmFwaGljIiBpbjI9ImVmZmVjdDFfYmFja2dyb3VuZEJsdXJfMzQwM18yMzExOSIgcmVzdWx0PSJzaGFwZSIvPgo8L2ZpbHRlcj4KPC9kZWZzPgo8L3N2Zz4K);
}
.two-section .full-bg--pc {
  background-position: center;
}
.two-section .content {
  display: block;
  padding-top: 4.5vw;
}

@media screen and (min-width: 960px) {
  .text-size-xxs {
    font-size: 0.8vw;
    line-height: 1vw;
  }

  .text-size-xs {
    font-size: 1vw;
    line-height: 1.2vw;
  }

  .text-size-s {
    font-size: 1.2vw;
    line-height: 1.4vw;
  }

  .text-size-m {
    font-size: 1.6vw;
    line-height: 1.8vw;
  }

  .text-size-l {
    font-size: 1.6vw;
    line-height: 1.8vw;
  }

  .text-size-xl {
    font-size: 3vw;
    line-height: 3.2vw;
  }
}
@media screen and (max-width: 960px) {
  .text-size-xxs {
    font-size: 1vw;
    line-height: 1.2vw;
  }

  .text-size-xs {
    font-size: 1.2vw;
    line-height: 1.4vw;
  }

  .text-size-s {
    font-size: 1.4vw;
    line-height: 1.6vw;
  }

  .text-size-m {
    font-size: 1.8vw;
    line-height: 2vw;
  }

  .text-size-l {
    font-size: 1.8vw;
    line-height: 2vw;
  }

  .text-size-xl {
    font-size: 3.2vw;
    line-height: 3.4vw;
  }
}
@media screen and (max-width: 960px) {
  .text-size-xxs {
    font-size: 2vw;
    line-height: 2.2vw;
  }

  .text-size-xs {
    font-size: 4.2vw;
    line-height: 4.4vw;
  }

  .text-size-s {
    font-size: 4.4vw;
    line-height: 4.6vw;
  }

  .text-size-m {
    font-size: 4.8vw;
    line-height: 5vw;
  }

  .text-size-l {
    font-size: 4.8vw;
    line-height: 5vw;
  }

  .text-size-xl {
    font-size: 6.2vw;
    line-height: 6.4vw;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
}

p {
  font-weight: 300;
}

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

.l-g-l:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(29, 36, 50, 0.79)),
    color-stop(54.24%, rgba(0, 0, 0, 0))
  );
  background: -o-linear-gradient(
    left,
    rgba(29, 36, 50, 0.79) 0%,
    rgba(0, 0, 0, 0) 54.24%
  );
  background: linear-gradient(
    90deg,
    rgba(29, 36, 50, 0.79) 0%,
    rgba(0, 0, 0, 0) 54.24%
  );
}

.bg-img {
  background-position: center;
  background-repeat: no-repeat;
}

.bg-cover {
  background-size: cover;
}

.t-t-u {
  text-transform: uppercase;
}

.t-a-c {
  text-align: center;
}

.body-block {
  background-color: #101419;
  position: relative;
  padding: 3vw 0;
  left: 4vw;
  margin: 3vw 0;
  width: 25vw;
  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;
}
.body-block__content {
  position: relative;
  z-index: 3;
}
.body-block__content ul {
  position: relative;
  overflow: hidden;
  left: 50%;
  display: inline-block;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.body-block__content ul li {
  line-height: 1.8;
  color: white;
  font-size: 1.8vw;
  font-weight: 200;
  text-align: left;
}
.body-block__content ul li span {
  margin-left: 1vw;
  display: inline-block;
}
.body-block__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.body-block__bg svg {
  position: absolute;
  background-size: contain;
  height: 100%;
  width: auto;
}
.body-block__bg--left svg {
  left: -4vw;
}
.body-block__bg--right svg {
  right: -4vw;
}
.body-block h3 {
  margin-bottom: 2vw;
}
.body-block p {
  opacity: 0.75;
  margin-bottom: 1vw;
}

.content {
  position: absolute;
  z-index: 99;
  width: 33%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: none;
}
.content > div {
  width: 100%;
}

.one-section .content {
  height: 90%;
}

.sh-header-alpha {
  position: absolute;
  z-index: 991;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  opacity: 0.75;
  line-height: 1;
}
.sh-header-alpha img {
  width: 15vw;
  height: auto;
}

.scroll-down {
  position: absolute;
  bottom: 2vw;
  text-align: center;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
}

.btn-body {
  text-align: center;
  padding-top: 1.5vw;
  position: relative;
  pointer-events: auto;
}
.btn-body__text {
  display: block;
  width: 100%;
}
.btn-body__text span {
  margin-bottom: 1vw;
  text-transform: uppercase;
  font-weight: 700 !important;
  display: block;
}

.sh-logo {
  margin-bottom: 3vw;
}
.sh-logo svg {
  width: auto;
  height: 5vw;
}

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

.btn {
  color: white;
  text-decoration: none;
  padding: 0.8vw 2vw;
  font-weight: 400;
  font-family: "Cutmark Narrow", "TT Octosquares Compressed", sans-serif;
  position: relative;
  display: block;
  width: 20vw;
  margin: 0 auto;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.btn:hover {
  text-decoration: none;
  color: white;
  -webkit-transform: translate(0, -4%);
  -ms-transform: translate(0, -4%);
  transform: translate(0, -4%);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.btn--ru {
  font-family: "TT Octosquares Condensed", sans-serif !important;
}

.decor-2 {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
}

.section-separator {
  position: absolute;
  right: -20px;
  bottom: -55px;
  width: calc(100% + 40px);
  height: 137px;
}
.section-separator__right {
  position: relative;
  float: right;
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
  right: -80px;
}
.section-separator__bg {
  width: 780px;
  height: 137px;
}
.section-separator__glass {
  position: absolute;
  top: 40px;
  right: -90px;
  width: 768px;
  height: 75px;
  -webkit-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  transform-origin: bottom left;
}
.section-separator__glass::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 768px;
  height: 73.5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: rgba(180, 190, 205, 0.3);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  -webkit-clip-path: url(#pathGlassBig-1);
  clip-path: url(#pathGlassBig-1);
}
.section-separator__glass svg {
  display: block;
  width: 768px;
  height: 75px;
  -webkit-filter: drop-shadow(-4px 1px 4px rgba(50, 60, 70, 0.5));
  filter: drop-shadow(-4px 1px 4px rgba(50, 60, 70, 0.5));
}
.section-separator__left {
  position: absolute;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  top: 35px;
  left: -120px;
}
.section-separator__bg-2 {
  width: 782px;
  height: 123px;
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
  top: -17px;
  position: relative;
}
.section-separator__glass-2 {
  position: absolute;
  top: -20px;
  right: 0;
  z-index: 7;
  width: 789px;
  height: 126px;
  -webkit-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  transform-origin: bottom left;
}
.section-separator__glass-2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 788px;
  height: 125.5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: rgba(180, 190, 205, 0.3);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  -webkit-clip-path: url(#pathGlassBig-2);
  clip-path: url(#pathGlassBig-2);
}
.section-separator__glass-2 svg {
  display: block;
  width: 789px;
  height: 126px;
  -webkit-filter: drop-shadow(-4px 1px 4px rgba(50, 60, 70, 0.5));
  filter: drop-shadow(-4px 1px 4px rgba(50, 60, 70, 0.5));
}

.full-bg--mob {
  display: none;
}

.full-bg--pc {
  display: block;
}

.btn-n {
  width: 15vw;
  height: 5vw;
  font-size: 1.4vw;
}

.btn-body--two {
  pointer-events: auto;
}
.btn-body--two .btn-n {
  width: 15vw;
  height: 5vw;
  font-size: 1.2vw;
}
.btn-body--two .btn-n__text {
  padding-left: 2vw;
  position: relative;
}
.btn-body--two .btn-n__text svg {
  position: absolute;
  width: 1.4vw;
  height: 1.4vw;
  top: 0vw;
  left: 0;
  margin-right: 1vw;
}

.btn-body--two-samall {
  pointer-events: auto;
}
.btn-body--two-samall .btn-n {
  width: 11vw;
  height: 4vw;
  font-size: 1.2vw;
}
.btn-body--two-samall .btn-n__text {
  padding-left: 2vw;
  position: relative;
}
.btn-body--two-samall .btn-n__text svg {
  position: absolute;
  width: 1.4vw;
  height: 1.4vw;
  top: 0vw;
  left: 0;
  margin-right: 1vw;
}

.done-text {
  font-size: 1.4vw;
  background-color: #101419;
  padding: 1vw;
  display: inline-block;
  margin: 0 auto;
  margin-bottom: 1vw;
}

@media screen and (max-width: 2000px) {
  .section-separator {
    right: -50px;
    width: calc(100% + 100px);
  }
  .section-separator__right {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    right: -100px;
  }
  .section-separator__left {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    left: -100px;
    top: 27px;
  }
}
@media screen and (max-width: 1600px) {
  .section-separator {
    right: -120px;
    width: calc(100% + 240px);
  }
  .section-separator__right {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    top: 3px;
    right: -70px;
  }
  .section-separator__left {
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    left: -120px;
    top: 25px;
  }
}
@media screen and (max-width: 1200px) {
  .section-separator {
    right: -220px;
    width: calc(100% + 440px);
  }
  .section-separator__right {
    -webkit-transform: scale(0.6);
    -ms-transform: scale(0.6);
    transform: scale(0.6);
    top: 5px;
    right: -70px;
  }
  .section-separator__left {
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    left: -40px;
  }
}
@media screen and (max-width: 960px) {
  .section-separator {
    display: none;
  }

  .body-block {
    width: calc(25vw + 8vw);
    left: 0;
  }
  .body-block p {
    margin-bottom: 2vw;
  }
}
@media screen and (max-width: 960px) {
  .done-text {
    font-size: 4.4vw;
    line-height: 4.6vw;
    background-color: #101419;
    padding: 4vw 2vw;
    display: inline-block;
    margin: 0 auto;
    margin-bottom: 4vw;
  }

  .two-section:before {
    top: -2px;
    width: 40vw;
    height: 10vw;
  }

  .full-bg--mob {
    display: block;
  }

  .full-bg--pc {
    display: none;
  }

  .section {
    padding: 14vw 0;
    min-height: 200vw;
    height: 100%;
    position: relative;
  }

  .bg-img {
    background-size: center;
    background-repeat: no-repeat;
  }

  .body-block {
    padding: 12vw 0;
    margin: 10vw 10vw;
    left: 0;
    width: 70vw;
    height: auto;
  }
  .body-block h3 {
    margin-bottom: 5vw;
  }
  .body-block__bg--left svg {
    left: -11vw;
  }
  .body-block__bg--right svg {
    right: -11vw;
  }
  .body-block__content ul {
    margin: 3vw 0;
  }
  .body-block__content ul li {
    font-size: 6vw;
  }
  .body-block__content ul li span {
    margin-left: 5vw;
  }

  .content {
    width: 100%;
    height: 100%;
    padding: 0 5vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .sh-header-alpha img {
    max-width: none;
    width: 50vw;
  }

  .scroll-down {
    bottom: 28vw;
  }

  .btn-body {
    padding-top: 4vw;
  }

  .sh-logo {
    margin-bottom: 6vw;
  }
  .sh-logo svg {
    height: 18vw;
  }

  .btn {
    padding: 4vw 6vw;
    width: 50vw;
  }

  .one-section {
    overflow: hidden;
  }
  .one-section .full-bg--mob-countdown {
    margin-top: 24vw;
    background-position: top center;
  }

  .two-section {
    background-color: #0f0d1a;
    min-height: 240vw;
    position: relative;
    overflow: hidden;
  }
  .two-section .full-bg--mob {
    margin-top: 70vw;
    background-position: top center;
    background-size: 100%;
  }
  .two-section .full-bg--mob:before {
    position: absolute;
    bottom: 70vw;
    content: "";
    left: 0;
    width: 0;
    height: 0;
    background-color: #040c15;
  }

  .btn-n {
    width: 56vw;
    height: 18vw;
    font-size: 5.5vw;
  }

  .btn-body--two .btn-n {
    width: 34vw;
    height: 12vw;
    font-size: 5vw;
  }
  .btn-body--two .btn-n__text {
    padding-left: 2vw;
    position: relative;
  }
  .btn-body--two .btn-n__text svg {
    display: none;
  }
}
.mfp-move-from-top .mfp-content {
  vertical-align: center;
}

.mfp-move-from-top .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
  transform: translateY(-100px);
}

.mfp-move-from-top.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.mfp-move-from-top.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.mfp-move-from-top.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-move-from-top.mfp-removing .mfp-with-anim {
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
  opacity: 0;
}

.mfp-move-from-top.mfp-removing .mfp-bg {
  opacity: 0;
}

/* Отдаление */
.mfp-zoom-out .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}

.mfp-zoom-out.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-zoom-out.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.mfp-zoom-out.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-zoom-out.mfp-removing .mfp-with-anim {
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
  opacity: 0;
}

.mfp-zoom-out.mfp-removing.mfp-bg {
  opacity: 0;
}

.play-popup {
  position: relative;
  background: #14141e;
  padding: 25px;
  max-width: 800px;
  color: #ebebf5;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0 60px 0;
}
.play-popup__body {
  max-width: 550px;
  margin: 0 auto;
}
.play-popup__title {
  margin-bottom: 5px;
  font-size: 52px;
}
.play-popup__sub-title {
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: 700;
}
.play-popup__sub-title a {
  color: #00f0ff;
  opacity: 1;
}
.play-popup__bg {
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 99;
}
.play-popup__bg--left {
  left: -95px;
}
.play-popup__bg--left svg {
  width: auto;
  height: 100%;
  float: right;
}
.play-popup__bg--right {
  right: -95px;
}
.play-popup__bg--right svg {
  width: auto;
  height: 100%;
  float: left;
}

.play-popup-btn__wrap {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.play-popup-btn__link {
  color: #ebebf5;
  text-decoration: none;
  border: solid 1px #ebebf5;
  background-color: #ebebf5;
  margin: 0 15px;
}
.play-popup-btn__body {
  background: #14141e;
  padding: 10px 30px 15px 30px;
  -webkit-clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 0.64em),
    calc(100% - 0.64em) 100%,
    0.64em 100%,
    0 calc(100% - 0.64em)
  );
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 0.64em),
    calc(100% - 0.64em) 100%,
    0.64em 100%,
    0 calc(100% - 0.64em)
  );
}
.play-popup-btn__title {
  line-height: 1.5;
  font-size: 24px;
}
.play-popup-btn__sub-title {
  line-height: 1;
  font-weight: 300;
  opacity: 0.5;
  font-size: 14px;
}

.mfp-close {
  display: none !important;
}

.js-play-popup-close,
.js-play-popup-close-2 {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: -15px;
  z-index: 991;
}

@media screen and (max-width: 960px) {
  .play-popup {
    padding: 25px;
    max-width: calc(100% - 15px);
    padding: 20px;
  }
  .play-popup__title {
    font-size: 32px;
  }
  .play-popup__sub-title {
    font-size: 14px;
  }
  .play-popup__bg {
    display: none;
  }

  .play-popup-btn__wrap {
    margin-top: 30px;
    display: block;
    position: relative;
    overflow: hidden;
  }
  .play-popup-btn__link {
    margin: 0;
    margin-bottom: 15px;
    width: 100%;
    display: block;
  }
  .play-popup-btn__body {
    padding: 10px 30px 15px 30px;
  }
  .play-popup-btn__title {
    font-size: 18px;
  }
  .play-popup-btn__sub-title {
    font-size: 12px;
  }

  .js-play-popup-close,
  .js-play-popup-close-2 {
    cursor: pointer;
    position: absolute;
    top: -50px;
    right: 0px;
  }
}
.countdown__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.countdown__text {
  margin-bottom: 1vw;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
}

#countdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin-bottom: 1vw;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0.58)),
    color-stop(111.01%, rgba(0, 0, 0, 0.8))
  );
  background: -o-linear-gradient(
    top,
    rgba(0, 0, 0, 0.58) 0%,
    rgba(0, 0, 0, 0.8) 111.01%
  );
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.58) 0%,
    rgba(0, 0, 0, 0.8) 111.01%
  );
  -webkit-clip-path: polygon(
    3% 0,
    97% 0,
    100% 10%,
    100% 90%,
    97% 100%,
    3% 100%,
    0 90%,
    0 10%
  );
  clip-path: polygon(
    3% 0,
    97% 0,
    100% 10%,
    100% 90%,
    97% 100%,
    3% 100%,
    0 90%,
    0 10%
  );
}
#countdown li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 8vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 1vw 0;
  padding: 0;
  color: rgba(235, 235, 245, 0.5);
  line-height: 1;
  font-weight: 300;
  position: relative;
}
#countdown li:last-child span::before {
  display: none;
}
#countdown li span {
  font-size: 5vw;
  color: #ebebf5;
  line-height: 1;
  font-weight: 300;
  position: relative;
}
#countdown li span::before {
  position: absolute;
  top: 50%;
  right: 0%;
  font-size: 3vw;
  color: #ebebf5;
  line-height: 1;
  font-weight: 300;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  content: ":";
}

@media screen and (max-width: 960px) {
  .countdown__text {
    margin-bottom: 4vw;
  }

  #countdown {
    margin-bottom: 4vw;
  }
  #countdown li {
    width: 18vw;
    font-size: 3vw;
    margin: 3vw 0;
  }
  #countdown li span {
    font-size: 10vw;
    line-height: 1;
  }
}
@font-face {
  font-family: "Cutmark Narrow";
  font-style: normal;
  font-weight: 400;
  src: local("Cutmark"), local("Cutmark Narrow"), local("Cutmark-NrMedium"),
    url("https://sh-landings-static.gcdn.co/global_static/fonts/Cutmark-NrMedium.woff2")
      format("woff2"),
    url("https://sh-landings-static.gcdn.co/global_static/fonts/Cutmark-NrMedium.woff")
      format("woff"),
    url("https://sh-landings-static.gcdn.co/global_static/fonts/Cutmark-NrMedium.otf")
      format("opentype");
}
@font-face {
  font-family: "Cutmark Narrow";
  font-style: normal;
  font-weight: 900;
  src: local("Cutmark"), local("Cutmark Narrow"), local("Cutmark-NrHeavy"),
    url("https://sh-landings-static.gcdn.co/global_static/fonts/Cutmark-NrHeavy.woff2")
      format("woff2"),
    url("https://sh-landings-static.gcdn.co/global_static/fonts/Cutmark-NrHeavy.woff")
      format("woff"),
    url("https://sh-landings-static.gcdn.co/global_static/fonts/Cutmark-NrHeavy.otf")
      format("opentype");
}
@font-face {
  font-family: "TT Octosquares Compressed";
  font-style: normal;
  font-weight: 400;
  src: local("TT Octosquares Compressed"),
    local("TT Octosquares Compressed Medium"),
    url("https://sh-landings-static.gcdn.co/global_static/fonts/TT Octosquares Compressed Medium.ttf")
      format("truetype");
}
@font-face {
  font-family: "TT Octosquares Compressed";
  font-style: normal;
  font-weight: 900;
  src: local("TT Octosquares Compressed"),
    local("TT Octosquares Compressed ExtraBold"),
    url("https://sh-landings-static.gcdn.co/global_static/fonts/TT Octosquares Compressed ExtraBold.ttf")
      format("truetype");
}
@font-face {
  font-family: "TT Octosquares Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("TT Octosquares Condensed"),
    local("TT Octosquares Condensed Light"),
    url("https://sh-landings-static.gcdn.co/global_static/fonts/TT Octosquares Condensed Light.ttf")
      format("truetype");
}
@font-face {
  font-family: "TT Octosquares Condensed";
  font-style: italic;
  font-weight: 300;
  src: local("TT Octosquares Condensed"),
    local("TT Octosquares Condensed Light Italic"),
    url("https://sh-landings-static.gcdn.co/global_static/fonts/TT Octosquares Condensed Light Italic.ttf")
      format("truetype");
}
@font-face {
  font-family: "TT Octosquares Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("TT Octosquares Condensed"),
    local("TT Octosquares Condensed Medium"),
    url("https://sh-landings-static.gcdn.co/global_static/fonts/TT Octosquares Condensed Medium.ttf")
      format("truetype");
}
@font-face {
  font-family: "TT Octosquares Condensed";
  font-style: italic;
  font-weight: 400;
  src: local("TT Octosquares Condensed"),
    local("TT Octosquares Condensed Italic"),
    url("https://sh-landings-static.gcdn.co/global_static/fonts/TT Octosquares Condensed Italic.ttf")
      format("truetype");
}
@font-face {
  font-family: "TT Octosquares Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("TT Octosquares Condensed"), local("TT Octosquares Condensed Bold"),
    url("https://sh-landings-static.gcdn.co/global_static/fonts/TT Octosquares Condensed Bold.ttf")
      format("truetype");
}
@font-face {
  font-family: "TT Octosquares Expanded";
  font-style: normal;
  font-weight: 700;
  src: local("TT Octosquares Expanded"), local("TT Octosquares Expanded Bold"),
    url("https://sh-landings-static.gcdn.co/global_static/fonts/TT Octosquares Expanded Bold.ttf")
      format("truetype");
}
body {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "TT Octosquares Condensed", sans-serif;
  font-size: 16px;
  background-color: #151619;
  color: #ebebf5;
  min-width: 320px;
  font-style: normal;
  font-weight: 300;
  position: relative;
  overflow-x: hidden;
}
body.scroll--fixed {
  overflow-y: scroll;
}

.preloader {
  display: none;
}

.loading .preloader {
  display: block;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: #323741;
  background-image: url(https://sh-landings-static.gcdn.co/glows-38847/src/images/bg-preloader.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 100;
  margin: 0;
}

.loading .preloader-gif {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%, -50%);
  -ms-transform: translateX(-50%, -50%);
  transform: translateX(-50%, -50%);
}

.button {
  position: relative;
  padding: 0.58em 1.96em;
  pointer-events: auto;
  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;
  min-width: 225px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "TT Octosquares Condensed", sans-serif;
  font-weight: 500;
  font-size: 1.4em;
  line-height: 1;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  background: transparent;
  -webkit-clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 0.64em),
    calc(100% - 0.64em) 100%,
    0.64em 100%,
    0 calc(100% - 0.64em)
  );
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 0.64em),
    calc(100% - 0.64em) 100%,
    0.64em 100%,
    0 calc(100% - 0.64em)
  );
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  z-index: 0;
}
.button span {
  font: inherit;
}
.button svg {
  display: block;
  margin-left: 5px;
  width: 24px;
  height: 24px;
  width: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, width 0.1s;
  -o-transition: opacity 0.3s, width 0.1s;
  transition: opacity 0.3s, width 0.1s;
}
.button svg path {
  fill: white;
}
.button.button--main {
  background: #ff3200;
  font-size: 1.125em;
  line-height: 1.4;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
}
.button.button--social {
  padding: 14px 32px;
  min-width: unset;
  font-size: 1em;
  font-weight: 500;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
  background: #101419;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.button.button--social:hover,
.button.button--social:focus-visible {
  background: #323c46;
}
.button.button--social:active {
  background: #6f6e7e;
}
.button.button--social img,
.button.button--social svg {
  display: block;
  width: auto;
  height: 22px;
  margin-right: 8px;
}
.button:hover svg,
.button:focus-visible svg {
  width: 24px;
  height: 24px;
  opacity: 0.6;
}
.button:active {
  background: url("data:image/svg+xml,%3Csvg width='125' height='58' viewBox='0 0 125 58' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.2' d='M104.353 0H86L106.647 29L86 58H104.353L125 29L104.353 0Z' fill='%23AB2814'/%3E%3Cpath opacity='0.2' d='M76.3529 0H18L38.6471 29L18 58H76.3529L97 29L76.3529 0Z' fill='%23AB2814'/%3E%3Cpath opacity='0.2' d='M7.80769 0H0L21.1923 29L0 58H7.80769L29 29L7.80769 0Z' fill='%23AB2814'/%3E%3C/svg%3E%0A"),
    #ff4b1f;
  background-repeat: no-repeat, no-repeat;
  background-position: 30% center, center;
  background-size: auto 100%, auto;
}
.button:active svg {
  opacity: 1;
}
.button:active svg path {
  fill: #da2e04;
}

@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
  .button.button--transparent {
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }

  .button.button--social {
    -webkit-backdrop-filter: blur(22.2262px);
    backdrop-filter: blur(22.2262px);
  }
}
.button-sn {
  position: relative;
  padding: 0.75em 2.5625em;
  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;
  min-width: 210px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "TT Octosquares Compressed", sans-serif;
  font-weight: 500;
  font-size: 1em;
  line-height: 1.375;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  background-color: #ff3200;
  -webkit-clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 0.64em),
    calc(100% - 0.64em) 100%,
    0.64em 100%,
    0 calc(100% - 0.64em)
  );
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 0.64em),
    calc(100% - 0.64em) 100%,
    0.64em 100%,
    0 calc(100% - 0.64em)
  );
  border: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  z-index: 0;
}
.button-sn svg {
  display: block;
  width: 1.375em;
  height: 1.375em;
  margin: 0 0.25em 0 0;
  opacity: 1;
}
.button-sn:hover,
.button-sn:focus-visible {
  background-color: #ff4b1f;
}
.button-sn:active {
  background-color: #ea3307;
}
.button-sn.button-sn--fb-messenger {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#4f5fff),
    to(#f25696)
  );
  background: -o-linear-gradient(left, #4f5fff 0%, #f25696 100%);
  background: linear-gradient(90deg, #4f5fff 0%, #f25696 100%);
  background-size: 100%;
}
.button-sn.button-sn--fb-messenger:hover,
.button-sn.button-sn--fb-messenger:focus-visible {
  background-size: 170%;
}
.button-sn.button-sn--fb-messenger:active {
  background-size: 130%;
}
.button-sn.button-sn--whatsapp {
  background-color: #25d366;
}
.button-sn.button-sn--whatsapp:hover,
.button-sn.button-sn--whatsapp:focus-visible {
  background-color: #1db155;
}
.button-sn.button-sn--whatsapp:active {
  background-color: #179847;
}
.button-sn.button-sn--telegram {
  background-color: #24a1dd;
}
.button-sn.button-sn--telegram:hover,
.button-sn.button-sn--telegram:focus-visible {
  background-color: #178ac1;
}
.button-sn.button-sn--telegram:active {
  background-color: #127fb4;
}
.button-sn.button-sn--share {
  background-color: #ff3200;
}
.button-sn.button-sn--share:hover,
.button-sn.button-sn--share:focus-visible {
  background-color: #ff4b1f;
}
.button-sn.button-sn--share:active {
  background-color: #ea3307;
}
.button-sn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
@media screen and (max-width: 1279px) {
  .button-sn {
    width: 100%;
    margin: 0 auto;
  }
}

.button-text {
  position: relative;
  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;
  min-width: 210px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "TT Octosquares Condensed", sans-serif;
  font-weight: 500;
  font-size: 1em;
  line-height: 1.4;
  color: #ff3200;
  text-decoration: underline;
  background: transparent;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  z-index: 0;
}
.button-text:hover,
.button-text:focus-visible {
  outline: none;
  color: #ff6414;
}
.button-text:active {
  color: #ff3200;
}
.button-text:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#container .bg-img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.section-stay-connected {
  position: relative;
  display: block;
  padding-top: 4.625em;
  padding-bottom: calc(0.78em + 80px);
  color: #ebebf5;
  background-color: #000409;
  background-image: url(https://sh-landings-static.gcdn.co/glows-41508/src/images/bg_decor-1.png),
    url(https://sh-landings-static.gcdn.co/glows-41508/src/images/bg_decor-2.png?v=0.2);
  background-position: top left, top right;
  background-size: 430px 415px, 993px 105px;
  background-repeat: no-repeat, no-repeat;
  z-index: 0;
}
.section-stay-connected::before {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 20%;
  display: block;
  width: 15px;
  height: 111px;
  background-image: url(https://sh-landings-static.gcdn.co/glows-41508/src/images/stay-connected_decor-ygolki.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.stay-connected__title {
  display: block;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 1vw;
  font-family: "TT Octosquares Compressed", sans-serif;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}

.stay-connected__socials {
  display: block;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.social-link {
  margin: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
}

.button.button--social .social-text {
  font-family: "Cutmark Narrow", "TT Octosquares Compressed", sans-serif;
  font-weight: 400;
  font-size: 1em;
  line-height: 1.1875;
  text-align: center;
}

@media screen and (max-width: 1700px) {
  .section-stay-connected {
    padding-top: 3.5em;
    padding-bottom: 3.5em;
    background-size: 258px 249px, 496px 50px;
  }
  .section-stay-connected::before {
    width: 4px;
    height: 30px;
  }

  .stay-connected__socials {
    margin-top: 0.7em;
  }

  .social-link {
    margin: 5px;
  }

  .button.button--social {
    padding: 13px;
    min-width: 150px;
  }
  .button.button--social img,
  .button.button--social svg {
    height: 17px;
    margin-right: 4px;
  }
}
.footer {
  padding: 0.5em 0;
  background-color: #101419;
  color: #7c8490;
}
.footer .footer__container {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 87.5%;
  margin: 0 auto;
  min-height: 55px;
  font-size: 12px;
}
.footer .footer__side-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.footer .language-switcher {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0.5em 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  z-index: 10;
}
.footer .language-switcher__icon-world {
  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;
}
.footer .language-switcher__icon-world img {
  display: block;
  width: 42px;
  height: 16px;
}
.footer .language-switcher__language-name {
  margin: 0 0.286em;
  font-family: "TT Octosquares Condensed", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.375;
  color: #ffffff;
}
.footer .language-switcher__icon-arrows {
  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;
}
.footer .language-switcher__icon-arrows svg {
  display: block;
  width: 16px;
  height: 16px;
}
.footer .footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 1.25em;
}
.footer .footer__links-item {
  display: block;
  margin: 0.5em 0.6em;
  font-family: "TT Octosquares Condensed", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.4286;
  text-decoration: none;
  color: #00f0ff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.footer .footer__links-item * {
  display: block;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  text-decoration: inherit;
  text-transform: inherit;
  color: inherit;
}
.footer .footer__links-item:hover {
  color: #9efaff;
}
.footer .footer__side-right {
  display: block;
}
.footer .copyright {
  display: block;
  margin: 0 auto;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  font-weight: 300;
  color: #eff0f2;
  text-align: right;
}
.footer .copyright * {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  text-decoration: inherit;
  text-transform: inherit;
  color: inherit;
}

@media screen and (max-width: 1279px) {
  .footer {
    position: relative;
    padding: 0.6em 0 0.8em;
  }
  .footer .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer .footer__side-left {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer .footer__side-left::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100vw;
    height: 1px;
    background: #555c6a;
    opacity: 0.5;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .footer .footer__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 1.25em 0;
  }
  .footer .copyright {
    font-size: 12px;
  }
}
/* FOOTER AGE RATINGS START */
.age-ratings {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  text-decoration: none;
  margin-bottom: 0.66667em;
}

.age-ratings__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.age-rating__item {
  display: block;
  height: 55px;
  margin: 0 4px;
  opacity: 0.9;
  text-decoration: none;
}
.age-rating__item:last-child {
  margin-right: 0;
}
.age-rating__item:first-child {
  margin-left: 0;
}

.age-rating__item img {
  display: block;
  height: 100%;
}

.age-ratings__description {
  display: block;
  margin-top: 8px;
  width: 100%;
  text-align: right;
  font-family: inherit;
  font-size: inherit;
  font-weight: 300;
  color: #eff0f2;
}

@media screen and (max-width: 1279px) {
  .age-ratings {
    margin-top: 1.25em;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .age-ratings__description {
    text-align: center;
  }
}
/* FOOTER AGE RATINGS END */
.popup-language {
  display: none;
  width: 81px;
  bottom: 40px;
  top: auto;
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.popup-language .section-container {
  position: relative;
  height: auto;
  padding: 0;
  background-color: #323741;
  overflow: hidden;
  overflow-y: auto;
}
.popup-language .popup-list {
  padding: 0;
  margin: 13px 0;
}
.popup-language .popup-link {
  display: inline-block;
  width: 100%;
  padding: 4px 10px 4px 10px;
  font-family: "TT Octosquares Condensed", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.42857em;
  color: #ffffff;
  text-align: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.54;
  text-decoration: none;
}
.popup-language .popup-list_item--active {
  background-color: #7c8490;
}
.popup-language .popup-list_item--active .popup-link {
  opacity: 1;
}
.popup-language .popup-link:hover {
  color: #9efaff;
  opacity: 1;
}

.popup-language--active {
  display: block;
}

@media screen and (max-width: 1600px) {
  .popup-language {
    bottom: 30px;
    top: auto;
  }
  .popup-language .section-container {
    height: auto;
  }
}
@media screen and (max-width: 1279px) {
  .popup-language {
    width: 190px;
  }
  .popup-language::before {
    content: "";
    position: absolute;
    width: 100vw;
    height: 100%;
    bottom: 5px;
    left: calc(-50vw + (190px / 2));
    background: -o-linear-gradient(
      270.15deg,
      #1c1d1f 0.13%,
      rgba(35, 38, 44, 0) 66.01%
    );
    background: linear-gradient(
      179.85deg,
      #1c1d1f 0.13%,
      rgba(35, 38, 44, 0) 66.01%
    );
    -webkit-transform: matrix(1, 0, 0, -1, 0, 0);
    -ms-transform: matrix(1, 0, 0, -1, 0, 0);
    transform: matrix(1, 0, 0, -1, 0, 0);
  }
}
.decor-2 {
  position: relative;
  display: block;
  width: 100%;
  z-index: 0;
  background-image: url(https://sh-landings-static.gcdn.co/glows-41508/src/images/bg_decor-particulars.png);
  background-repeat: no-repeat;
  background-size: 1694px 99px;
  background-position: 100% right;
  -webkit-transform: translateY(2px);
  -ms-transform: translateY(2px);
  transform: translateY(2px);
}
.decor-2 .decor-base {
  position: relative;
  display: block;
  width: 100%;
}
.decor-2 .front {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  z-index: 30;
}
.decor-2 .front .panels {
  display: block;
  width: 100%;
}
.decor-2 .glass-small {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 364px;
  height: 46px;
  -webkit-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  transform-origin: bottom left;
  overflow: hidden;
}
.decor-2 .glass-small::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 353px;
  height: 32px;
  background: rgba(180, 190, 205, 0.3);
  -webkit-clip-path: url(#pathGlassSmall);
  clip-path: url(#pathGlassSmall);
}
.decor-2 .glass-small svg {
  display: block;
  width: 375px;
  height: 46px;
  position: relative;
  -webkit-transform: translateX(-11px);
  -ms-transform: translateX(-11px);
  transform: translateX(-11px);
  -webkit-filter: drop-shadow(1px -2px 1.9px rgba(0, 0, 0, 0.4));
  filter: drop-shadow(1px -2px 1.9px rgba(0, 0, 0, 0.4));
}
.decor-2 .glass-big {
  position: absolute;
  bottom: 10%;
  left: 34%;
  width: 727px;
  height: 80px;
  -webkit-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  transform-origin: bottom left;
}
.decor-2 .glass-big::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 713px;
  height: 76px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: rgba(180, 190, 205, 0.3);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  -webkit-clip-path: url(#pathGlassBig);
  clip-path: url(#pathGlassBig);
}
.decor-2 .glass-big svg {
  display: block;
  width: 727px;
  height: 80px;
  -webkit-filter: drop-shadow(-4px 1px 4px rgba(50, 60, 70, 0.5));
  filter: drop-shadow(-4px 1px 4px rgba(50, 60, 70, 0.5));
}
.decor-2 .back {
  position: absolute;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 96%;
  z-index: -10;
}
.decor-2 .back .line {
  display: block;
  width: 100%;
}

@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
  .decor-2 .glass-big::before {
    background: transparent;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }

  .decor-2 .glass-small::before {
    background: transparent;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }
}
@media screen and (max-width: 1279px) {
  .decor-2 .glass-big {
    -webkit-transform: scale(0.6);
    -ms-transform: scale(0.6);
    transform: scale(0.6);
  }
  .decor-2 .glass-small {
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
}
.decor-3 {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  z-index: 0;
}
.decor-3 .decor-base {
  position: relative;
  display: block;
  width: 100%;
}
.decor-3 .back {
  margin-left: 450px;
  display: block;
  width: 21.5%;
  z-index: 0;
}
.decor-3 .back .line {
  display: block;
  width: 100%;
}
.decor-3 .glass {
  position: absolute;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 516px;
  height: 24px;
  overflow-y: hidden;
  -webkit-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  transform-origin: bottom left;
}
.decor-3 .glass::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 514px;
  height: 22px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: rgba(180, 190, 205, 0.3);
  -webkit-clip-path: url(#decor3pathGlass);
  clip-path: url(#decor3pathGlass);
}
.decor-3 .glass svg {
  display: block;
  width: 516px;
  height: 24px;
  -webkit-transform: translate(-2px, 2px);
  -ms-transform: translate(-2px, 2px);
  transform: translate(-2px, 2px);
  -webkit-filter: drop-shadow(-4px 1px 4px rgba(50, 60, 70, 0.5));
  filter: drop-shadow(-4px 1px 4px rgba(50, 60, 70, 0.5));
}

@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
  .decor-3 .glass::before {
    background: transparent;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }
}
@media screen and (max-width: 1279px) {
  .decor-3 {
    display: none;
  }
  .decor-3 .back {
    margin-left: 270px;
  }
  .decor-3 .glass {
    -webkit-transform: scale(0.6);
    -ms-transform: scale(0.6);
    transform: scale(0.6);
  }
}
.lang-wrapper {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: -o-linear-gradient(
    270.15deg,
    #1c1d1f 0.13%,
    rgba(35, 38, 44, 0) 66.01%
  );
  background: linear-gradient(
    179.85deg,
    #1c1d1f 0.13%,
    rgba(35, 38, 44, 0) 66.01%
  );
  -webkit-transform: matrix(1, 0, 0, -1, 0, 0);
  -ms-transform: matrix(1, 0, 0, -1, 0, 0);
  transform: matrix(1, 0, 0, -1, 0, 0);
}

@media screen and (max-width: 1279px) {
  .lang-wrapper--active {
    display: block;
  }
}
.popup-language .decor-popup-top {
  position: relative;
  height: 5px;
}
.popup-language .decor-popup-top .back {
  width: 95%;
  position: absolute;
  right: 0;
  top: -5px;
}
.popup-language .decor-popup-top .back svg {
  width: 100%;
}
.popup-language .decor-popup-top .front {
  width: 100%;
  position: absolute;
  left: 0;
  top: -6px;
}
.popup-language .decor-popup-top .front svg {
  width: 100%;
}
.popup-language .decor-popup-top .glass {
  position: absolute;
  bottom: -4px;
  left: 57.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 33px;
  height: 14.5px;
  overflow-y: hidden;
  -webkit-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  transform-origin: bottom left;
}
.popup-language .decor-popup-top .glass::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 32px;
  height: 13.5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: rgba(180, 190, 205, 0.3);
  -webkit-clip-path: url(#decor4pathGlass);
  clip-path: url(#decor4pathGlass);
}
.popup-language .decor-popup-top .glass svg {
  display: block;
  width: 33px;
  height: 14.5px;
  -webkit-transform: translate(-1px, 0px);
  -ms-transform: translate(-1px, 0px);
  transform: translate(-1px, 0px);
}
.popup-language .decor-popup-bottom {
  position: relative;
  height: 13px;
  bottom: -2px;
}
.popup-language .decor-popup-bottom .back {
  position: absolute;
  right: 0;
  bottom: 15px;
  width: 100%;
}
.popup-language .decor-popup-bottom .back svg {
  position: absolute;
  left: 10px;
  width: 95%;
}
.popup-language .decor-popup-bottom .back svg:last-child {
  width: 30%;
}
.popup-language .decor-popup-bottom .front {
  width: 70%;
  position: absolute;
  top: -2px;
  left: 50%;
  -webkit-transform: translate(-50%, -12%);
  -ms-transform: translate(-50%, -12%);
  transform: translate(-50%, -12%);
}
.popup-language .decor-popup-bottom .front svg {
  width: 100%;
}
.popup-language .decor-popup-bottom .glass {
  position: absolute;
  bottom: -5px;
  left: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 80px;
  height: 18px;
  overflow-y: hidden;
  -webkit-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  transform-origin: bottom left;
}
.popup-language .decor-popup-bottom .glass::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 79px;
  height: 17px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: rgba(180, 190, 205, 0.3);
  -webkit-clip-path: url(#decor5pathGlass);
  clip-path: url(#decor5pathGlass);
}
.popup-language .decor-popup-bottom .glass svg {
  display: block;
  width: 80px;
  height: 18px;
  -webkit-transform: translate(-1px, 0px);
  -ms-transform: translate(-1px, 0px);
  transform: translate(-1px, 0px);
}

@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
  .popup-language .decor-popup-top .glass::before {
    background: transparent;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }
  .popup-language .decor-popup-bottom .glass::before {
    background: transparent;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }
}
@media screen and (min-width: 1280px) {
  .popup-language .decor-popup-top .back {
    left: 10px;
  }
  .popup-language .decor-popup-top .back svg {
    width: 71px;
  }
  .popup-language .decor-popup-top .front svg {
    width: 81px;
  }
  .popup-language .decor-popup-top .glass {
    right: -8px;
    left: auto;
  }
  .popup-language .decor-popup-bottom .back svg {
    width: auto;
    left: 9px;
  }
  .popup-language .decor-popup-bottom .front {
    width: 100%;
  }
  .popup-language .decor-popup-bottom .glass {
    left: 0;
  }
}
body #ot-sdk-btn.ot-sdk-show-settings {
  display: none;
  margin: 0;
  padding: 0;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  text-decoration: inherit;
  text-transform: inherit;
  color: inherit;
  border: 0;
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
  cursor: pointer;
}
body #ot-sdk-btn.ot-sdk-show-settings:hover {
  color: #9efaff;
  background: transparent;
}
