:root {
  --gold-gradient: linear-gradient(90deg, #FBE776 0%, #A3802D 50.15%, #FAF39F 133.56%, #A86828 208.53%);
  --gold: #e0c75f;
}

.text-gold {
  background: var(--gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background-image: var(--gold-gradient);
}

::-moz-selection {
  color: #fff;

  background: var(--gold);

}

::selection {
  color: #fff;
  background-color: #e0c75f;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  position: absolute !important;

  top: -9999px;

  left: -9999px;

  visibility: hidden;

  margin: 0;

}

.fancybox-container {
  position: fixed;

  top: 0;

  left: 0;

  z-index: 99992;

  width: 100%;

  height: 100%;

  outline: 0;

  -webkit-transform: translateZ(0);

  transform: translateZ(0);

  -webkit-backface-visibility: hidden;

  -webkit-tap-highlight-color: transparent;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

}

.fancybox-container * {
  box-sizing: border-box;
}

.fancybox-bg,
.fancybox-inner,
.fancybox-outer,
.fancybox-stage {
  position: absolute;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

}

.fancybox-outer {
  overflow-y: auto;

  -webkit-overflow-scrolling: touch;

}

.fancybox-bg {
  background: #1e1e1e;

  opacity: 0;

  transition-timing-function: cubic-bezier(.47, 0, .74, .71);

  transition-duration: inherit;

  transition-property: opacity;

}

.fancybox-is-open .fancybox-bg {
  opacity: .9;

  transition-timing-function: cubic-bezier(.22, .61, .36, 1);

}

.fancybox-caption,
.fancybox-infobar,
.fancybox-navigation .fancybox-button,
.fancybox-toolbar {
  position: absolute;

  z-index: 99997;

  visibility: hidden;

  opacity: 0;

  transition: opacity .25s ease, visibility 0s ease .25s;

  direction: ltr;

}

.fancybox-show-caption .fancybox-caption,
.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-nav .fancybox-navigation .fancybox-button,
.fancybox-show-toolbar .fancybox-toolbar {
  visibility: visible;

  opacity: 1;

  transition: opacity .25s ease 0s, visibility 0s ease 0s;

}

.fancybox-infobar {
  top: 0;

  left: 0;

  min-width: 44px;

  height: 44px;

  padding: 0 10px;

  color: #ccc;

  font-size: 13px;

  line-height: 44px;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  pointer-events: none;

  -webkit-font-smoothing: subpixel-antialiased;

  mix-blend-mode: difference;

  -webkit-touch-callout: none;

}

.fancybox-toolbar {
  top: 0;

  right: 0;

}

.fancybox-stage {
  z-index: 99994;

  -webkit-transform: translateZ(0);

  transform: translateZ(0);

  overflow: visible;

  direction: ltr;

}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  position: absolute;

  top: 0;

  left: 0;

  z-index: 99994;

  display: none;

  width: 100%;

  height: 100%;

  padding: 44px;

  text-align: center;

  white-space: normal;

  outline: 0;

  transition-property: opacity, -webkit-transform;

  transition-property: transform, opacity;

  transition-property: transform, opacity, -webkit-transform;

  overflow: auto;

  -webkit-overflow-scrolling: touch;

  -webkit-backface-visibility: hidden;

}

.fancybox-slide:before {
  content: '';

  display: inline-block;

  width: 0;

  height: 100%;

  font-size: 0;

  vertical-align: middle;

}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--current,
.fancybox-slide--next,
.fancybox-slide--previous {
  display: block;
}

.fancybox-slide--image {
  padding: 44px 0;

  overflow: hidden;

}

.fancybox-slide--image:before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  position: relative;

  display: inline-block;

  max-width: 100%;

  margin: 0;

  padding: 44px;

  text-align: left;

  background: #fff;

  vertical-align: middle;

  overflow: auto;

  -webkit-overflow-scrolling: touch;

}

.fancybox-slide--image .fancybox-content {
  position: absolute;

  top: 0;

  left: 0;

  z-index: 99995;

  max-width: none;

  padding: 0;

  background: 0 0;

  background-repeat: no-repeat;

  background-size: 100% 100%;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  transition-property: opacity, -webkit-transform;

  transition-property: transform, opacity;

  transition-property: transform, opacity, -webkit-transform;

  -webkit-transform-origin: top left;

  transform-origin: top left;

  -webkit-animation-timing-function: cubic-bezier(.5, 0, .14, 1);

  animation-timing-function: cubic-bezier(.5, 0, .14, 1);

  overflow: visible;

  -webkit-backface-visibility: hidden;

}

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}

.fancybox-can-pan .fancybox-content,
.fancybox-can-swipe .fancybox-content {
  cursor: -webkit-grab;

  cursor: grab;

}

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;

  cursor: grabbing;

}

.fancybox-container [data-selectable='true'] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  max-width: none;

  height: 100%;

  max-height: none;

  margin: 0;

  padding: 0;

  border: 0;

  background: 0 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--iframe .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--video .fancybox-content {
  width: 100%;

  height: 100%;

  padding: 0;

  overflow: visible;

}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-iframe,
.fancybox-video {
  display: block;

  width: 100%;

  height: 100%;

  margin: 0;

  padding: 0;

  border: 0;

  background: 0 0;

  overflow: hidden;

}

.fancybox-iframe {
  position: absolute;

  top: 0;

  left: 0;

}

.fancybox-error {
  width: 100%;

  max-width: 400px;

  padding: 40px;

  background: #fff;

  cursor: default;

}

.fancybox-error p {
  margin: 0;

  padding: 0;

  color: #444;

  font-size: 16px;

  line-height: 20px;

}

.fancybox-button {
  position: relative;

  display: inline-block;

  visibility: inherit;

  width: 44px;

  height: 44px;

  margin: 0;

  padding: 10px;

  border: 0;

  border-radius: 0;

  background: rgba(30, 30, 30, .6);

  box-shadow: none;

  transition: color .2s;

  vertical-align: top;

  cursor: pointer;

}

.fancybox-button,
.fancybox-button:link,
.fancybox-button:visited {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: 0;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;

  outline: 0;

  cursor: default;

}

.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  position: relative;

  display: block;

  width: 100%;

  height: 100%;

  overflow: visible;

}

.fancybox-button svg path {
  fill: currentColor;

  stroke-width: 0;

}

.fancybox-button--fsenter svg:nth-child(2),
.fancybox-button--fsexit svg:nth-child(1),
.fancybox-button--pause svg:nth-child(1),
.fancybox-button--play svg:nth-child(2) {
  display: none;
}

.fancybox-progress {
  position: absolute;

  top: 0;

  right: 0;

  left: 0;

  z-index: 99998;

  height: 2px;

  background: #ff5268;

  transition-timing-function: linear;

  transition-property: -webkit-transform;

  transition-property: transform;

  transition-property: transform, -webkit-transform;

  -webkit-transform: scaleX(0);

  transform: scaleX(0);

  -webkit-transform-origin: 0;

  transform-origin: 0;

}

.fancybox-close-small {
  position: absolute;

  top: -44px;

  right: -12px;

  z-index: 401;

  padding: 8px;

  color: #ccc;

  border: 0;

  border-radius: 0;

  background: 0 0;

  opacity: .8;

  cursor: pointer;

}

.fancybox-close-small:hover {
  color: #fff;

  opacity: 1;

}

.fancybox-slide--html .fancybox-close-small {
  top: 0;

  right: 0;

  padding: 10px;

  color: currentColor;

}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

.fancybox-navigation .fancybox-button {
  position: absolute;

  top: calc(50% - 50px);

  width: 70px;

  height: 100px;

  background-clip: content-box;

  opacity: 0;

}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;

  padding: 31px 26px 31px 6px;

}

.fancybox-navigation .fancybox-button--arrow_right {
  right: 0;

  padding: 31px 6px 31px 26px;

}

.fancybox-caption {
  right: 0;

  bottom: 0;

  left: 0;

  z-index: 99996;

  padding: 25px 44px;

  text-align: center;

  color: #eee;

  font-size: 14px;

  line-height: 1.5;

  font-weight: 400;

}

.fancybox-caption:before {
  content: '';

  position: absolute;

  top: -44px;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: -1;

  display: block;

  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAD6CAQAAADKSeXYAAAAYklEQVQoz42RwQ3AMAgDjfcfup8WoRykfBAK5mQHKSz5rbXJPis1hjiV3CIqgG0hLZPkVkA4p4x5oR1bVeDrdCLrW2Q0D5bcwY3TGMHbdw3mPRuOtaspYP1w//G1OIcW148H0DMCqI/3mMMAAAAASUVORK5CYII=);

  background-repeat: repeat-x;

  background-size: contain;

  pointer-events: none;

}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  text-decoration: none;

  color: #ccc;

}

.fancybox-caption a:hover {
  text-decoration: underline;

  color: #fff;

}

.fancybox-loading {
  position: absolute;

  top: 50%;

  left: 50%;

  z-index: 99999;

  width: 50px;

  height: 50px;

  margin: -25px 0 0 -25px;

  padding: 0;

  border: 4px solid #888;

  border-bottom-color: #fff;

  border-radius: 50%;

  background: 0 0;

  opacity: .7;

  -webkit-animation: a 1s linear infinite;

  animation: a 1s linear infinite;

}

@-webkit-keyframes a {
  to {
    -webkit-transform: rotate(1turn);

    transform: rotate(1turn);

  }
}

@keyframes a {
  to {
    -webkit-transform: rotate(1turn);

    transform: rotate(1turn);

  }
}

.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, .25, 1);
}

.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;

  -webkit-transform: translate3d(-100%, 0, 0);

  transform: translate3d(-100%, 0, 0);

}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;

  -webkit-transform: translate3d(100%, 0, 0);

  transform: translate3d(100%, 0, 0);

}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;

  -webkit-transform: translateZ(0);

  transform: translateZ(0);

}

.fancybox-fx-fade.fancybox-slide--next,
.fancybox-fx-fade.fancybox-slide--previous {
  opacity: 0;

  transition-timing-function: cubic-bezier(.19, 1, .22, 1);

}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;

  -webkit-transform: scale3d(1.5, 1.5, 1.5);

  transform: scale3d(1.5, 1.5, 1.5);

}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;

  -webkit-transform: scale3d(.5, .5, .5);

  transform: scale3d(.5, .5, .5);

}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;

  -webkit-transform: scaleX(1);

  transform: scaleX(1);

}

.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;

  -webkit-transform: rotate(-1turn);

  transform: rotate(-1turn);

}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;

  -webkit-transform: rotate(1turn);

  transform: rotate(1turn);

}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;

  -webkit-transform: rotate(0);

  transform: rotate(0);

}

.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;

  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);

  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);

}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;

  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);

  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);

}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;

  -webkit-transform: scaleX(1) translateZ(0);

  transform: scaleX(1) translateZ(0);

}

.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg);

  transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg);

}

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(.1) skew(10deg);

  transform: translate3d(100%, 0, 0) scale(.1) skew(10deg);

}

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translateZ(0) scale(1);

  transform: translateZ(0) scale(1);

}

@media (max-height: 576px) {
  .fancybox-caption {
    padding: 12px;
  }

  .fancybox-slide {
    padding-right: 6px;

    padding-left: 6px;

  }

  .fancybox-slide--image {
    padding: 6px 0;
  }

  .fancybox-close-small {
    right: -6px;
  }

  .fancybox-slide--image .fancybox-close-small {
    top: 0;

    right: 0;

    width: 36px;

    height: 36px;

    padding: 6px;

    color: #f2f4f6;

    background: #4e4e4e;

    opacity: 1;

  }
}

.fancybox-share {
  max-width: 90%;

  padding: 30px;

  text-align: center;

  border-radius: 3px;

  background: #f4f4f4;

}

.fancybox-share h1 {
  margin: 0 0 20px;

  color: #222;

  font-size: 35px;

  font-weight: 700;

}

.fancybox-share p {
  margin: 0;

  padding: 0;

}

.fancybox-share__button {
  display: inline-block;

  min-width: 130px;

  margin: 0 5px 10px;

  padding: 0 15px;

  white-space: nowrap;

  text-decoration: none;

  font-size: 14px;

  line-height: 40px;

  font-weight: 700;

  border: 0;

  border-radius: 3px;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  transition: all .2s;

}

.fancybox-share__button:link,
.fancybox-share__button:visited {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  position: relative;

  top: -1px;

  width: 25px;

  height: 25px;

  margin-right: 7px;

  vertical-align: middle;

}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  width: 100%;

  margin: 10px 0 0;

  padding: 10px 15px;

  color: #5d5b5b;

  font-size: 14px;

  border: 0;

  border-bottom: 1px solid #d7d7d7;

  border-radius: 0;

  outline: 0;

  background: 0 0;

}

.fancybox-thumbs {
  position: absolute;

  top: 0;

  right: 0;

  bottom: 0;

  z-index: 99995;

  display: none;

  width: 212px;

  margin: 0;

  padding: 2px 2px 4px;

  background: #ddd;

  -webkit-overflow-scrolling: touch;

  -ms-overflow-style: -ms-autohiding-scrollbar;

  -webkit-tap-highlight-color: transparent;

}

.fancybox-thumbs-x {
  overflow-x: auto;

  overflow-y: hidden;

}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  position: absolute;

  position: relative;

  width: 100%;

  height: 100%;

  margin: 0;

  padding: 0;

  list-style: none;

  white-space: nowrap;

  font-size: 0;

  overflow-x: hidden;

  overflow-y: auto;

}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  border-radius: 10px;

  background: #fff;

  box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);

}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  border-radius: 10px;

  background: #2a2a2a;

}

.fancybox-thumbs__list a {
  position: relative;

  float: left;

  width: 100px;

  max-width: calc(50% - 4px);

  height: 75px;

  max-height: calc(100% - 8px);

  margin: 2px;

  padding: 0;

  outline: 0;

  background-color: rgba(0, 0, 0, .1);

  background-repeat: no-repeat;

  background-position: 50%;

  background-size: cover;

  overflow: hidden;

  cursor: pointer;

  -webkit-backface-visibility: hidden;

  backface-visibility: hidden;

  -webkit-tap-highlight-color: transparent;

}

.fancybox-thumbs__list a:before {
  content: '';

  position: absolute;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 99991;

  border: 6px solid #ff5268;

  opacity: 0;

  transition: all .2s cubic-bezier(.25, .46, .45, .94);

}

.fancybox-thumbs__list a:focus:before {
  opacity: .5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active:before {
  opacity: 1;
}

@media (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }

  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}

/*!
 * pagepiling.js 1.5.6
 *
 * https://github.com/alvarotrigo/pagePiling.js
 * @license MIT licensed
 *
 * Copyright (C) 2016 alvarotrigo.com - A project by Alvaro Trigo
 */
body,
html {
  margin: 0;

  padding: 0;

  overflow: hidden;

  -webkit-tap-highlight-color: transparent;

}

.pp-section {
  position: absolute;

  width: 100%;

  height: 100%;

  backface-visibility: hidden;

}

.pp-easing {
  -webkit-transition: all 1s cubic-bezier(.55, .085, 0, .99);

  -moz-transition: all 1s cubic-bezier(.55, .085, 0, .99);

  -o-transition: all 1s cubic-bezier(.55, .085, 0, .99);

  transition: all 1s cubic-bezier(.55, .085, 0, .99);

  -webkit-transition-timing-function: cubic-bezier(.55, .085, 0, .99);

  -moz-transition-timing-function: cubic-bezier(.55, .085, 0, .99);

  -o-transition-timing-function: cubic-bezier(.55, .085, 0, .99);

  transition-timing-function: cubic-bezier(.55, .085, 0, .99);

}

#pp-nav {
  position: fixed;

  top: 50%;

  z-index: 100;

  margin-top: -32px;

  opacity: 1;

}

#pp-nav.right {
  right: 17px;
}

#pp-nav.left {
  left: 17px;
}

.pp-section.pp-table {
  display: table;
}

.pp-tableCell {
  display: table-cell;

  width: 100%;

  height: 100%;

  vertical-align: middle;

}

.pp-slidesNav {
  position: absolute;

  left: 50%;

  z-index: 4;

  opacity: 1;

}

.pp-slidesNav.bottom {
  bottom: 17px;
}

.pp-slidesNav.top {
  top: 17px;
}

#pp-nav ul,
.pp-slidesNav ul {
  margin: 0;

  padding: 0;

}

#pp-nav li,
.pp-slidesNav li {
  position: relative;

  display: block;

  width: 14px;

  height: 13px;

  margin: 7px;

}

.pp-slidesNav li {
  display: inline-block;
}

#pp-nav li a,
.pp-slidesNav li a {
  position: relative;

  z-index: 1;

  display: block;

  width: 100%;

  height: 100%;

  text-decoration: none;

  cursor: pointer;

}

#pp-nav li .active span,
.pp-slidesNav .active span {
  background: #333;
}

#pp-nav span,
.pp-slidesNav span {
  position: absolute;

  top: 2px;

  left: 2px;

  z-index: 1;

  width: 8px;

  height: 8px;

  border: 1px solid #000;

  border-radius: 50%;

  background: rgba(0, 0, 0, 0);

}

.pp-tooltip {
  position: absolute;

  top: -2px;

  max-width: 220px;

  white-space: nowrap;

  color: #fff;

  font-family: arial, helvetica, sans-serif;

  font-size: 14px;

}

.pp-tooltip.right {
  right: 20px;
}

.pp-tooltip.left {
  left: 20px;
}

.pp-scrollable {
  height: 100%;

  overflow-y: scroll;

}

@-webkit-keyframes a {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes a {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.just-validate-tooltip-container {
  position: relative;
}

.just-validate-tooltip-hide {
  opacity: 0;

  -webkit-animation: a .4s linear;

  animation: a .4s linear;

}

@-webkit-keyframes animation-circle {
  0% {
    -webkit-transform: rotate(0);

    transform: rotate(0);

  }

  100% {
    -webkit-transform: rotate(360deg);

    transform: rotate(360deg);

  }
}

@keyframes animation-circle {
  0% {
    -webkit-transform: rotate(0);

    transform: rotate(0);

  }

  100% {
    -webkit-transform: rotate(360deg);

    transform: rotate(360deg);

  }
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;

  padding: 0;

  font: inherit;

  font-size: 100%;

  border: 0;

  vertical-align: baseline;

}

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

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: '';

  content: none;

}

table {
  border-spacing: 0;

  border-collapse: collapse;

}

button,
input,
textarea {
  margin: 0;

  padding: 0;

  font-family: inherit;

  font-size: inherit;

  border: 0;

}

a,
a:focus,
button,
div,
h1,
h2,
h3,
h4,
h5,
h6,
input,
select,
span,
textarea {
  outline: 0;
}

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

  box-sizing: border-box;

}

a,
a:hover {
  text-decoration: none;
}

img {
  display: block;

  max-width: 100%;

}

textarea {
  resize: none;
}

a {
  color: inherit;
}

@font-face {
  font-family: Manrope;

  font-weight: 500;

  font-style: normal;

  src: url(../fonts/Manrope-Medium.woff2) format('woff2'),
    url(../fonts/Manrope-Medium.woff) format('woff'),
    url(../fonts/Manrope-Medium.ttf) format('truetype');

  font-display: swap;

}

@font-face {
  font-family: Manrope;

  font-weight: 400;

  font-style: normal;

  src: url(../fonts/Manrope-Regular.woff2) format('woff2'),
    url(../fonts/Manrope-Regular.woff) format('woff'),
    url(../fonts/Manrope-Regular.ttf) format('truetype');

  font-display: swap;

}

@font-face {
  font-family: NeueMachina;

  font-weight: 400;

  font-style: normal;

  src: url(../fonts/NeueMachina-Regular.woff2) format('woff2'),
    url(../fonts/NeueMachina-Regular.woff) format('woff'),
    url(../fonts/NeueMachina-Regular.ttf) format('truetype');

  font-display: swap;

}

@font-face {
  font-family: NeueMachina;

  font-weight: 500;

  font-style: normal;

  src: url(../fonts/NeueMachina-Medium.woff2) format('woff2'),
    url(../fonts/NeueMachina-Medium.woff) format('woff'),
    url(../fonts/NeueMachina-Medium.ttf) format('truetype');

  font-display: swap;

}

@font-face {
  font-family: NeueMachina;

  font-weight: 500;

  font-style: normal;

  src: url(../fonts/NeueMachina-Medium.woff2) format('woff2'),
    url(../fonts/NeueMachina-Medium.woff) format('woff'),
    url(../fonts/NeueMachina-Medium.ttf) format('truetype');

  font-display: swap;

}

@font-face {
  font-family: SFProDisplay;

  font-weight: 400;

  font-style: normal;

  src: url(../fonts/SFProDisplay-Regular.woff2) format('woff2'),
    url(../fonts/SFProDisplay-Regular.woff) format('woff'),
    url(../fonts/SFProDisplay-Regular.ttf) format('truetype');

  font-display: swap;

}

body {
  color: #fff;

  font-family: NeueMachina;

}

@media only screen and (max-width: 1000px) {
  body {
    overflow: auto;
  }
}

@media only screen and (max-width: 1000px) {
  html {
    overflow: auto;
  }
}

.section-main {
  position: relative;

  padding-top: 15.83333vh;

  padding-right: 70px;

  padding-bottom: 50px;

  padding-left: 71px;

}

@media only screen and (max-width: 1200px) {
  .section-main {
    padding-top: 100px;

    padding-right: 45px;

    padding-bottom: 25px;

    padding-left: 45px;

  }
}

@media only screen and (max-width: 620px) {
  .section-main {
    padding-top: 72px;

    padding-right: 10px;

    padding-bottom: 0;

    padding-left: 10px;

  }
}

.container {
  -webkit-box-sizing: border-box;

  box-sizing: border-box;

  width: 95%;

  max-width: 1530px;

  margin: 0 auto;

}

.container-main {
  width: 100%;

  height: auto;

  margin: 0 auto;

  opacity: 0;

  -webkit-transition: opacity .6s ease, -webkit-transform .6s ease;

  transition: opacity .6s ease, -webkit-transform .6s ease;

  transition: transform .6s ease, opacity .6s ease;

  transition: transform .6s ease, opacity .6s ease,
    -webkit-transform .6s ease;

  -webkit-transition-delay: .6s;

  transition-delay: .6s;

  -webkit-transform: translateY(300px);

  transform: translateY(300px);

}

.container-fluid {
  max-width: calc(100% - 200px);

  margin: auto;

}

@media only screen and (max-width: 1559px) {
  .container {
    width: 95%;

    max-width: 1530px;

  }
}

@media only screen and (max-width: 1200px) {
  .container {
    width: 738px;

    max-width: 100%;

  }
}

@media only screen and (max-width: 768px) {
  .container {
    width: 100%;

    padding: 0 15px;

  }
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background-color: #000;
}

::-webkit-scrollbar-thumb {
  border: 1px solid #000;

  border-radius: 8px;

  background: var(--gold-gradient);

}

.neue {
  font-family: NeueMachina, sans-serif;

  font-style: normal;

}

.neue-headline1 {
  text-transform: uppercase;

  font-size: 140px;

  line-height: 90%;

  font-weight: 500;

}

@media only screen and (max-width: 1920px) {
  .neue-headline1 {
    font-size: 112px;
  }
}

@media only screen and (max-width: 1559px) {
  .neue-headline1 {
    font-size: 96px;
  }
}

@media only screen and (max-width: 1350px) {
  .neue-headline1 {
    font-size: 70px;
  }
}

@media only screen and (max-width: 768px) {
  .neue-headline1 {
    font-size: 56px;
  }
}

@media only screen and (max-width: 620px) {
  .neue-headline1 {
    font-size: 42px;
  }
}

@media only screen and (max-width: 450px) {
  .neue-headline1 {
    font-size: 32px;
  }
}

.neue-headline2 {
  text-transform: uppercase;

  font-size: 70px;

  line-height: 110%;

  font-weight: 500;

}

@media only screen and (max-width: 1559px) {
  .neue-headline2 {
    font-size: 56px;
  }
}

@media only screen and (max-width: 992px) {
  .neue-headline2 {
    font-size: 22px;
  }
}

.neue-headline2-green {
  text-transform: uppercase;
  font-size: 70px;

  line-height: 110%;

  font-weight: 500;
  background: var(--gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background-image: var(--gold-gradient);

}

@media only screen and (max-width: 1559px) {
  .neue-headline2-green {
    font-size: 52px;
  }
}

@media only screen and (max-width: 1000px) {
  .neue-headline2-green {
    font-size: 50px;
  }
}

@media only screen and (max-width: 768px) {
  .neue-headline2-green {
    font-size: 36px;
  }
}

@media only screen and (max-width: 450px) {
  .neue-headline2-green {
    font-size: 22px;
  }
}

.neue-headline3 {
  font-size: 40px;

  line-height: 120%;

  font-weight: 400;

}

@media only screen and (max-width: 1559px) {
  .neue-headline3 {
    font-size: 17px;
  }
}

@media only screen and (max-width: 1000px) {
  .neue-headline3 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 450px) {
  .neue-headline3 {
    font-size: 18px;
  }
}

.neue-text1 {
  font-size: 24px;

  line-height: 120%;

  font-weight: 400;

}

@media only screen and (max-width: 1559px) {
  .neue-text1 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 1000px) {
  .neue-text1 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 768px) {
  .neue-text1 {
    font-size: 16px;
  }
}

@media only screen and (max-width: 620px) {
  .neue-text1 {
    font-size: 12px;
  }
}

.neue-text2 {
  font-size: 18px;

  line-height: 140%;

  font-weight: 500;

}

@media only screen and (max-width: mobile-1000px) {
  .neue-text2 {
    font-size: 14px;
  }
}

@media only screen and (max-width: 450px) {
  .neue-text2 {
    font-size: 12px;
  }
}

.neue-link {
  text-transform: uppercase;

  color: goldenrod;
  ;

  font-size: 22px;

  line-height: 120%;

  font-weight: 500;

  -webkit-transition: all ease-out .3s;

  transition: all ease-out .3s;

}

@media only screen and (min-width: 1001px) {
  .neue-link:hover {
    color: #fffcf9;

    -webkit-transition: all ease-out .3s;

    transition: all ease-out .3s;

  }
}

.manrope {
  font-family: Manrope, sans-serif;

  font-style: normal;

}

.manrope-text1 {
  font-size: 24px;

  line-height: 130%;

  font-weight: 400;

}

@media only screen and (max-width: 1200px) {
  .manrope-text1 {
    font-size: 14px;
  }
}

.manrope-text2 {
  font-size: 18px;

  line-height: 155%;

  font-weight: 500;

}

@media only screen and (max-width: 1200px) {
  .manrope-text2 {
    font-size: 16px;
  }
}

@media only screen and (max-width: 1000px) {
  .manrope-text2 {
    font-size: 14px;
  }
}

@media only screen and (max-width: 450px) {
  .manrope-text2 {
    font-size: 11px;
  }
}

.text {
  color: #c2c2c2;
}

.sfpro {
  font-family: SFProDisplay, sans-serif;

  font-size: 22px;

  line-height: 140%;

  font-weight: 400;

  font-style: normal;

}

.button-primary {
  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  align-items: center;

  -ms-flex-align: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  min-width: 244px;

  max-width: 244px;

  padding: 13px 28px;

  color: #0d0d0c;

  background: var(--gold-gradient);
  ;

  -webkit-transition: background .3s linear;

  transition: background .3s linear;

  cursor: pointer;

}

.button-primary span {
  position: relative;

  top: .15em;

}

@media only screen and (max-width: 1000px) {
  .button-primary {
    min-width: 227px;

    max-width: 227px;

    padding: 23px 28px;

  }
}

@media only screen and (max-width: 450px) {
  .button-primary {
    min-width: 164px;

    max-width: 164px;

    padding: 23px 28px;

  }
}

@media only screen and (max-width: 1000px) {
  .button-primary img {
    width: 28px;

    height: 16px;

  }
}

@media only screen and (max-width: 450px) {
  .button-primary img {
    width: 18px;

    height: 9px;

  }
}

.button-primary span {
  margin-right: 10px;

  text-transform: uppercase;

  font-size: 22px;

  line-height: 120%;

  font-weight: 500;

  font-style: normal;

}

@media only screen and (max-width: 1000px) {
  .button-primary span {
    font-size: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .button-primary span {
    font-size: 18px;
  }
}

@media only screen and (max-width: 450px) {
  .button-primary span {
    font-size: 12px;
  }
}

.button-primary:hover {
  background: #fffcf9;
}

.container {
  max-width: calc(100% - 200px);

  margin: auto;

}

.line {
  width: 100%;

  height: 2px;

  background: #787a7c;

}

#pp-nav {
  display: none;
}

body {
  color: #fffcf9;

  background: #0d0d0c;

}

.section {
  height: 100%;

  background-color: #000;

}

.section.active .section-main .container-main {
  opacity: 1;

  -webkit-transform: translateY(0);

  transform: translateY(0);

}

@font-face {
  font-family: swiper-icons;

  font-weight: 400;

  font-style: normal;

  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA') format('woff');

}

:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  position: relative;

  z-index: 1;

  margin-right: auto;

  margin-left: auto;

  padding: 0;

  list-style: none;

  overflow: hidden;

}

.swiper-container-vertical>.swiper-wrapper {
  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  -ms-flex-direction: column;

  flex-direction: column;

}

.swiper-wrapper {
  position: relative;

  z-index: 1;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-sizing: content-box;

  box-sizing: content-box;

  width: 100%;

  height: 100%;

  -webkit-transition-property: -webkit-transform;

  transition-property: -webkit-transform;

  transition-property: transform;

  transition-property: transform, -webkit-transform;

}

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

  transform: translate3d(0, 0, 0);

}

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

  flex-wrap: wrap;

}

.swiper-container-multirow-column>.swiper-wrapper {
  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  -ms-flex-direction: column;

  flex-direction: column;

  -ms-flex-wrap: wrap;

  flex-wrap: wrap;

}

.swiper-container-free-mode>.swiper-wrapper {
  margin: 0 auto;

  -webkit-transition-timing-function: ease-out;

  transition-timing-function: ease-out;

}

.swiper-container-pointer-events {
  -ms-touch-action: pan-y;

  touch-action: pan-y;

}

.swiper-container-pointer-events.swiper-container-vertical {
  -ms-touch-action: pan-x;

  touch-action: pan-x;

}

.swiper-slide {
  position: relative;

  -ms-flex-negative: 0;

  flex-shrink: 0;

  width: 100%;

  height: 100%;

  -webkit-transition-property: -webkit-transform;

  transition-property: -webkit-transform;

  transition-property: transform;

  transition-property: transform, -webkit-transform;

}

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

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;

  align-items: flex-start;

  -ms-flex-align: start;

  -webkit-transition-property: height, -webkit-transform;

  transition-property: height, -webkit-transform;

  transition-property: transform, height;

  transition-property: transform, height, -webkit-transform;

}

.swiper-container-3d {
  -webkit-perspective: 1200px;

  perspective: 1200px;

}

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

  transform-style: preserve-3d;

}

.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;

  top: 0;

  left: 0;

  z-index: 10;

  width: 100%;

  height: 100%;

  pointer-events: none;

}

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

  background-image: linear-gradient(to left,
      rgba(0, 0, 0, .5),
      rgba(0, 0, 0, 0));

}

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

  background-image: linear-gradient(to right,
      rgba(0, 0, 0, .5),
      rgba(0, 0, 0, 0));

}

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

  background-image: linear-gradient(to top,
      rgba(0, 0, 0, .5),
      rgba(0, 0, 0, 0));

}

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

  background-image: linear-gradient(to bottom,
      rgba(0, 0, 0, .5),
      rgba(0, 0, 0, 0));

}

.swiper-container-css-mode>.swiper-wrapper {
  overflow: auto;

  scrollbar-width: none;

  -ms-overflow-style: none;

}

.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;

  scroll-snap-type: x mandatory;

}

.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;

  scroll-snap-type: y mandatory;

}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;

  top: 50%;

  z-index: 10;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  align-items: center;

  -ms-flex-align: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  width: calc(var(--swiper-navigation-size) / 44 * 27);

  height: var(--swiper-navigation-size);

  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));

  color: var(--swiper-navigation-color, var(--swiper-theme-color));

  cursor: pointer;

}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: .35;

  cursor: auto;

  pointer-events: none;

}

.swiper-button-next:after,
.swiper-button-prev:after {
  text-transform: none !important;

  text-transform: none;

  font-family: swiper-icons;

  font-size: var(--swiper-navigation-size);

  line-height: 1;

  letter-spacing: 0;

  font-variant: initial;

}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  right: auto;

  left: 10px;

}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;

  left: auto;

}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: 'next';
}

.swiper-button-next.swiper-button-white,
.swiper-button-prev.swiper-button-white {
  --swiper-navigation-color: #fff;
}

.swiper-button-next.swiper-button-black,
.swiper-button-prev.swiper-button-black {
  --swiper-navigation-color: #000;
}

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

.swiper-pagination {
  position: absolute;

  z-index: 10;

  text-align: center;

  -webkit-transition: .3s opacity;

  transition: .3s opacity;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

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

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;

  left: 0;

  width: 100%;

}

.swiper-pagination-bullets-dynamic {
  font-size: 0;

  overflow: hidden;

}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  position: relative;

  -webkit-transform: scale(.33);

  transform: scale(.33);

}

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

  transform: scale(1);

}

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

  transform: scale(1);

}

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

  transform: scale(.66);

}

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

  transform: scale(.33);

}

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

  transform: scale(.66);

}

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

  transform: scale(.33);

}

.swiper-pagination-bullet {
  display: inline-block;

  width: 8px;

  height: 8px;

  border-radius: 50%;

  background: #000;

  opacity: .2;

}

button.swiper-pagination-bullet {
  margin: 0;

  padding: 0;

  border: none;

  -webkit-box-shadow: none;

  box-shadow: none;

  -webkit-appearance: none;

  -moz-appearance: none;

  appearance: none;

}

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

.swiper-pagination-bullet-active {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));

  opacity: 1;

}

.swiper-container-vertical>.swiper-pagination-bullets {
  top: 50%;

  right: 10px;

  -webkit-transform: translate3d(0, -50%, 0);

  transform: translate3d(0, -50%, 0);

}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
  display: block;

  margin: 6px 0;

}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;

  width: 8px;

  -webkit-transform: translateY(-50%);

  transform: translateY(-50%);

}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;

  -webkit-transition: .2s transform, .2s top;

  transition: .2s transform, .2s top;

}

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

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;

  white-space: nowrap;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: .2s transform, .2s left;

  transition: .2s transform, .2s left;

}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: .2s transform, .2s right;

  transition: .2s transform, .2s right;

}

.swiper-pagination-progressbar {
  position: absolute;

  background: rgba(0, 0, 0, .25);

}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: var(--swiper-pagination-color, var(--swiper-theme-color));

  -webkit-transform: scale(0);

  transform: scale(0);

  -webkit-transform-origin: left top;

  transform-origin: left top;

}

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

  transform-origin: right top;

}

.swiper-container-horizontal>.swiper-pagination-progressbar,
.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  top: 0;

  left: 0;

  width: 100%;

  height: 4px;

}

.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical>.swiper-pagination-progressbar {
  top: 0;

  left: 0;

  width: 4px;

  height: 100%;

}

.swiper-pagination-white {
  --swiper-pagination-color: #fff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000;
}

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

.swiper-scrollbar {
  position: relative;

  border-radius: 10px;

  background: rgba(0, 0, 0, .1);

  -ms-touch-action: none;

}

.swiper-container-horizontal>.swiper-scrollbar {
  position: absolute;

  bottom: 3px;

  left: 1%;

  z-index: 50;

  width: 98%;

  height: 5px;

}

.swiper-container-vertical>.swiper-scrollbar {
  position: absolute;

  top: 1%;

  right: 3px;

  z-index: 50;

  width: 5px;

  height: 98%;

}

.swiper-scrollbar-drag {
  position: relative;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border-radius: 10px;

  background: rgba(0, 0, 0, .5);

}

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

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

.swiper-zoom-container {
  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  align-items: center;

  -ms-flex-align: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  width: 100%;

  height: 100%;

  text-align: center;

}

.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
  max-width: 100%;

  max-height: 100%;

  -o-object-fit: contain;

  object-fit: contain;

}

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

.swiper-lazy-preloader {
  position: absolute;

  top: 50%;

  left: 50%;

  z-index: 10;

  -webkit-box-sizing: border-box;

  box-sizing: border-box;

  width: 42px;

  height: 42px;

  margin-top: -21px;

  margin-left: -21px;

  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));

  border-top-color: transparent;

  border-radius: 50%;

  -webkit-transform-origin: 50%;

  transform-origin: 50%;

  -webkit-animation: swiper-preloader-spin 1s infinite linear;

  animation: swiper-preloader-spin 1s infinite linear;

}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);

    transform: rotate(360deg);

  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);

    transform: rotate(360deg);

  }
}

.swiper-container .swiper-notification {
  position: absolute;

  top: 0;

  left: 0;

  z-index: -1000;

  opacity: 0;

  pointer-events: none;

}

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

  transition-timing-function: ease-out;

}

.swiper-container-fade .swiper-slide {
  -webkit-transition-property: opacity;

  transition-property: opacity;

  pointer-events: none;

}

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

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

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

.swiper-container-cube .swiper-slide {
  z-index: 1;

  visibility: hidden;

  width: 100%;

  height: 100%;

  -webkit-transform-origin: 0 0;

  transform-origin: 0 0;

  pointer-events: none;

  -webkit-backface-visibility: hidden;

  backface-visibility: hidden;

}

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

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

  transform-origin: 100% 0;

}

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

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

  pointer-events: auto;

}

.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;

  -webkit-backface-visibility: hidden;

  backface-visibility: hidden;

}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;

  bottom: 0;

  left: 0;

  z-index: 0;

  width: 100%;

  height: 100%;

  opacity: .6;

}

.swiper-container-cube .swiper-cube-shadow:before {
  content: '';

  position: absolute;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  background: #000;

  -webkit-filter: blur(50px);

  filter: blur(50px);

}

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

.swiper-container-flip .swiper-slide {
  z-index: 1;

  pointer-events: none;

  -webkit-backface-visibility: hidden;

  backface-visibility: hidden;

}

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

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

.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;

  -webkit-backface-visibility: hidden;

  backface-visibility: hidden;

}

.home {
  height: 100vh;
}

@media only screen and (max-width: 992px) {
  .home {
    min-height: 960px;
  }
}

.home-container {
  position: relative;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  max-width: 1920px;

  height: 100%;

  margin: 0 auto;

}

@media only screen and (max-width: 1024px) {
  .home-container {
    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    -ms-flex-direction: column;

    flex-direction: column;

  }
}

.home-image {
  position: relative;

  z-index: 10;

  -ms-flex-negative: 0;

  flex-shrink: 0;

  width: 758px;

  height: 100%;

  opacity: 0;

  -webkit-transition: opacity .6s ease;

  transition: opacity .6s ease;

  -webkit-transition-delay: .6s;

  transition-delay: .6s;

  -o-object-fit: contain;

  object-fit: contain;
  background: #000;

}

.home-image--mobile {
  display: none;

  -webkit-transform: scaleX(-1);

  transform: scaleX(-1);

}

@media only screen and (max-width: 1900px) {
  .home-image {
    width: 33%;
  }
}

@media only screen and (max-width: 1024px) {
  .home-image {
    width: 100%;

    height: 50%;

    min-height: 430px;

    margin-top: 180px;

  }

  .home-image--desktop {
    display: none;
  }

  .home-image--mobile {
    display: block;
  }
}

@media only screen and (max-width: 992px) {
  .home-image {
    height: 430px;

    margin-top: 127px;

  }
}

@media only screen and (max-width: 450px) {
  .home-image {
    margin-top: 111px;
  }

  .home-image--desktop {
    display: block;
  }

  .home-image--mobile {
    display: none;
  }
}

.home-author {
  position: relative;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  -ms-flex-direction: column;

  flex-direction: column;

  width: 100%;

  padding: 201px 64px 52px 40px;

}

@media only screen and (min-width: 1921px) {
  .home-author {
    width: 1162px;

    margin-left: auto;

  }
}

@media only screen and (max-width: 1559px) {
  .home-author {
    padding: 2.5% 2% 3% 40px;
  }
}

@media only screen and (max-width: 992px) {
  .home-author {
    -webkit-box-orient: horizontal;

    -webkit-box-direction: normal;

    -ms-flex-direction: row;

    flex-direction: row;

    height: 100%;

    padding: 40px 40px 52px 48px;

  }
}

@media only screen and (max-width: 767px) {
  .home-author {
    height: 42vh;
  }
}

@media only screen and (max-width: 450px) {
  .home-author {
    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    -ms-flex-direction: column;

    flex-direction: column;

    height: auto;

    padding: 35px 10px 146px;

  }
}

.home-author__name {
  -webkit-box-ordinal-group: 2;

  -ms-flex-order: 1;

  order: 1;

  max-width: 400px;

  opacity: 0;

  -webkit-transition: opacity .6s ease;

  transition: opacity .6s ease;

  -webkit-transition-delay: .6s;

  transition-delay: .6s;

}

@media only screen and (max-width: 1559px) {
  .home-author__name {
    max-width: 300px;

    font-size: 80px;

  }
}

@media only screen and (max-width: 1200px) {
  .home-author__name {
    max-width: 300px;

    font-size: 90px;

  }
}

@media only screen and (max-width: 992px) {
  .home-author__name {
    -webkit-box-ordinal-group: 1;

    -ms-flex-order: 0;

    order: 0;

    margin-top: -8px;

    font-size: 70px;

    line-height: 110%;

  }
}

@media only screen and (max-width: 620px) {
  .home-author__name {
    max-width: 200px;

    margin-top: -4px;

    font-size: 50px;

    line-height: 90%;

  }
}

@media only screen and (max-width: 450px) {
  .home-author__name {
    margin: 0 0 28px;
  }
}

.home-author__description {
  max-width: 400px;

  margin-bottom: auto;

  margin-left: auto;

}

@media only screen and (max-width: 992px) {
  .home-author__description {
    max-width: 206px;
  }
}

@media only screen and (max-width: 450px) {
  .home-author__description {
    max-width: 132px;

    margin: 0;

  }
}

.home-author__button {
  position: absolute;

  right: 290px;

  bottom: 282px;

  width: 200px;

  height: 200px;

  overflow: hidden;

}

@media only screen and (max-width: 1900px) {
  .home-author__button {
    right: 5%;

    bottom: 10%;

  }
}

@media only screen and (max-width: 1200px) {
  .home-author__button {
    width: 150px;

    height: 150px;

  }
}

@media only screen and (max-width: 992px) {
  .home-author__button {
    right: 95px;

    bottom: 90px;

  }
}

@media only screen and (max-width: 620px) {
  .home-author__button {
    right: 25px;

    bottom: 60px;

  }
}

@media only screen and (max-width: 450px) {
  .home-author__button {
    width: 120px;

    height: 120px;

  }
}

.home-ticker {
  position: absolute;

  top: 391px;

  right: 0;

  width: 90.5%;

  color: goldenrod;
  ;

  overflow: hidden;

}

@media only screen and (max-width: 1559px) {
  .home-ticker {
    top: 35%;

    width: 96.5%;

  }
}

@media only screen and (max-width: 1366px) {
  .home-ticker {
    width: 102%;
  }
}

@media only screen and (max-width: 1024px) {
  .home-ticker {
    top: 75px;
  }
}

@media only screen and (max-width: 992px) {
  .home-ticker {
    top: 90px;
  }
}

@media only screen and (max-width: 450px) {
  .home-ticker {
    top: 74px;
  }
}

.home-ticker__wrapper {
  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  width: 200%;

  -webkit-animation: moveTicker 10s linear infinite;

  animation: moveTicker 10s linear infinite;

}

@media only screen and (max-width: 1024px) {
  .home-ticker__wrapper {
    width: 800%;
  }
}

@media only screen and (max-width: 992px) {
  .home-ticker__wrapper {
    width: 380%;
  }
}

@media only screen and (max-width: 768px) {
  .home-ticker__wrapper {
    width: 420%;
  }
}

@media only screen and (max-width: 540px) {
  .home-ticker__wrapper {
    width: 400%;
  }
}

@media only screen and (max-width: 450px) {
  .home-ticker__wrapper {
    width: 390%;
  }
}

@media only screen and (max-width: 375px) {
  .home-ticker__wrapper {
    width: 865%;
  }
}

@media only screen and (max-width: 360px) {
  .home-ticker__wrapper {
    width: 900%;
  }
}

@media only screen and (max-width: 320px) {
  .home-ticker__wrapper {
    width: 848%;
  }
}

.home-ticker__text {
  width: 100%;

  white-space: nowrap;

}

@media only screen and (max-width: 1024px) {
  .home-ticker__text {
    width: 400%;
  }
}

@media only screen and (max-width: 992px) {
  .home-ticker__text {
    width: 190%;
  }
}

@media only screen and (max-width: 540px) {
  .home-ticker__text {
    width: 210%;
  }
}

@media only screen and (max-width: 450px) {
  .home-ticker__text {
    width: 195%;
  }
}

@media only screen and (max-width: 375px) {
  .home-ticker__text {
    width: 432.5%;
  }
}

@media only screen and (max-width: 360px) {
  .home-ticker__text {
    width: 450%;
  }
}

@media only screen and (max-width: 320px) {
  .home-ticker__text {
    width: 424%;
  }
}

.home-button__item {
  width: 100%;

  height: 100%;

  background: url(../img/main/home/button.svg) no-repeat;

  background-size: contain;

  -webkit-animation: 10s linear 1s infinite animation-circle;

  animation: 10s linear 1s infinite animation-circle;

}

@media only screen and (min-width: 1921px) {
  .home__image {
    position: absolute;

    width: 845.5px;

    margin-left: -87.5px;

  }
}

@media only screen and (min-width: 2101px) {
  .home__image {
    position: absolute;

    width: 955.5px;

    margin-left: -197.5px;

  }
}

@media only screen and (min-width: 2321px) {
  .home__image {
    width: 1075.5px;

    margin-left: -317.5px;

  }
}

@-webkit-keyframes moveTicker {
  0% {
    -webkit-transform: translateX(0);

    transform: translateX(0);

  }

  100% {
    -webkit-transform: translateX(-50%);

    transform: translateX(-50%);

  }
}

@keyframes moveTicker {
  0% {
    -webkit-transform: translateX(0);

    transform: translateX(0);

  }

  100% {
    -webkit-transform: translateX(-50%);

    transform: translateX(-50%);

  }
}

.about__row {
  width: 100%;
}

@media only screen and (min-width: 769px) {
  .about__row {
    display: grid;

    grid-template-rows: 1fr auto;

    grid-template-columns: 60% calc(40% - 40px);

    -webkit-column-gap: 40px;

    -moz-column-gap: 40px;

    column-gap: 40px;

    grid-template-areas: 'title title' 'work-info work-info' 'img-wrapper skills';

  }
}

@media only screen and (min-width: 1201px) {
  .about__row {
    display: grid;
    grid-template-rows: 1fr auto;
    grid-template-columns: calc(50% - 40px) calc(66% - 40px);
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
    grid-template-areas:
      'title img-wrapper work-info'
      'skills img-wrapper work-info';
  }
}

@media only screen and (min-width: 1560px) {
  .about__row {
    display: grid;

    grid-template-rows: 1fr auto;

    grid-template-columns: calc(40% - 40px) calc(40% - 40px) 20%;

    -webkit-column-gap: 40px;

    -moz-column-gap: 40px;

    column-gap: 40px;

    grid-template-areas: 'title img-wrapper work-info' 'skills img-wrapper work-info';

  }
}

.about__title {
  grid-area: title;
}

@media only screen and (max-width: 1200px) {
  .about__title {
    margin-bottom: 60px;
  }
}

.about__skills {
  display: grid;

  margin-top: 20px;

  grid-area: skills;

  grid-template-rows: 1fr auto;

  grid-template-columns: calc(50% - 20px) calc(50% - 20px);

  -webkit-column-gap: 40px;

  -moz-column-gap: 40px;

  column-gap: 40px;

  grid-template-areas: 'title-one title-two' 'desc-one desc-two';

}

@media only screen and (max-width: 1559px) {
  .about__skills {
    display: grid;

    grid-template-columns: 100%;

    -webkit-column-gap: 0;

    -moz-column-gap: 0;

    column-gap: 0;

    grid-template-rows: auto;

    grid-template-areas: 'title-one' 'desc-one' 'title-two' 'desc-two';

  }
}

@media only screen and (max-width: 768px) {
  .about__skills {
    display: grid;

    grid-template-columns: calc(50% - 15px) calc(50% - 15px);

    -webkit-column-gap: 30px;

    -moz-column-gap: 30px;

    column-gap: 30px;

    grid-template-rows: auto;

    grid-template-areas: 'title-one title-two' 'desc-one desc-two';

  }
}

@media only screen and (max-width: 520px) {
  .about__skills {
    display: grid;

    grid-template-columns: 50%;

    -webkit-column-gap: 30px;

    -moz-column-gap: 30px;

    column-gap: 30px;

    grid-template-rows: auto;

    grid-template-areas: 'title-one title-two' 'desc-one desc-one' 'desc-two desc-two';

  }
}

.about__skill-title {
  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  align-items: center;

  -ms-flex-align: center;

  margin-bottom: 84px;

}

@media only screen and (max-width: 1559px) {
  .about__skill-title {
    margin-bottom: 30px;
  }
}

.about__skill-title div {
  margin-right: 10px;
}

.about__skill-title-one {
  grid-area: title-one;
}

.about__skill-title-two {
  grid-area: title-two;
}

@media only screen and (max-width: 450px) {
  .about__skill-desc {
    font-size: 12px;
  }
}

.about__skill-desc-one {
  grid-area: desc-one;
}

.about__skill-counter {
  position: relative;

  top: .1em;

}

@media only screen and (max-width: 1559px) {
  .about__skill-desc-one {
    margin-bottom: 40px;
  }
}

.about__skill-desc-two {
  grid-area: desc-two;
}

@media only screen and (max-width: 1559px) {
  .about__skill-desc-two {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 992px) {
  .about__skill-counter {
    font-size: 50px;
  }
}

@media only screen and (max-width: 450px) {
  .about__skill-counter {
    font-size: 40px;
  }
}

@media only screen and (max-width: 992px) {
  .about__skill-name {
    font-size: 14px;
  }
}

@media only screen and (max-width: 450px) {
  .about__skill-name {
    font-size: 12px;
  }
}

.about__img-wrapper {
  position: relative;
  width: 37%;
  height: 50.25926vh;
  margin-top: -71px;
  grid-area: img-wrapper;
  margin-right: auto;
  margin-left: auto;
}

@media only screen and (max-width: 1200px) {
  .about__img-wrapper {
    height: 68.51852vh;

    margin-top: 0;

  }
}

@media only screen and (max-width: 768px) {
  .about__img-wrapper {
    height: 83.33333vh;

    margin-bottom: 60px;

  }
}

.about__img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  -o-object-fit: cover;

  object-fit: cover;

  -o-object-position: center;

  object-position: center;

}

.about__work-info {
  margin-top: 273px;
  text-transform: none;
  grid-area: img-wrapper;
  max-width: 444px;
  margin-left: 30%;
}

.about__work-info>p {
  margin-bottom: 10px;
}

@media only screen and (max-width: 1200px) {
  .about__work-info {
    width: 60%;

    margin-top: 0;

    margin-bottom: 40px;

  }
}

@media only screen and (max-width: 768px) {
  .about__work-info {
    width: 100%;
  }
}

.works__container {
  position: relative;
}

@media only screen and (max-width: 1000px) {
  .works__slide-xs {
    display: none;
  }
}

.works__title {
  margin-bottom: 70px;
}

@media only screen and (max-width: 1559px) {
  .works__title {
    margin-bottom: 45px;
  }
}

.works__row {
  padding-bottom: 50px;
}

.works__swiper-container {
  width: calc(100% + 70px);

  overflow: hidden;

  cursor: url(../img/cursor-slider.png) 62 62, auto;

}

.works__img {
  height: 100%;
}

@media only screen and (max-width: 1200px) {
  .works__swiper-container {
    width: calc(100% + 45px);
  }
}

@media only screen and (max-width: 620px) {
  .works__swiper-container {
    width: calc(100% + 10px);
  }
}

.works__card {
  position: relative;

  display: block;

  height: 630px;

}

@media only screen and (max-width: 1000px) {
  .works__card {
    height: 550px;
  }
}

@media only screen and (max-width: 450px) {
  .works__card {
    width: 200px;

    height: 400px;

  }
}

.works__text {
  position: absolute;

  bottom: 20px;

  left: 30px;

  text-transform: none;

}

@media only screen and (max-width: 768px) {
  .works__text {
    font-size: 24px;

    line-height: 120%;

  }
}

@media only screen and (max-width: 450px) {
  .works__text {
    font-size: 18px;
  }
}

.swiper-slide {
  width: auto;
}

.swiper-button-prev2 {
  margin-right: 10px;

  cursor: pointer;

}

.swiper-button-prev2 svg circle {
  -webkit-transition: stroke .3s ease;

  transition: stroke .3s ease;

}

.swiper-button-prev2 svg path {
  -webkit-transition: stroke .3s ease;

  transition: stroke .3s ease;

}

.swiper-button-prev2:hover svg circle {
  stroke: #fffcf9;
}

.swiper-button-prev2:hover svg path {
  stroke: #fffcf9;
}

.swiper-button-next2 {
  cursor: pointer;
}

.swiper-button-next2 svg circle {
  -webkit-transition: stroke .3s ease;

  transition: stroke .3s ease;

}

.swiper-button-next2 svg path {
  -webkit-transition: stroke .3s ease;

  transition: stroke .3s ease;

}

.swiper-button-next2:hover svg circle {
  stroke: #fffcf9;
}

.swiper-button-next2:hover svg path {
  stroke: #fffcf9;
}

.swiper-button-wrapper {
  position: absolute;

  top: 0;

  right: 0;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

}

@media only screen and (max-width: 1000px) {
  .swiper-button-wrapper {
    display: none !important;
  }
}

.experience__title {
  margin-bottom: 4.62963vh;
}

.experience__row {
  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-pack: justify;

  -ms-flex-pack: justify;

  justify-content: space-between;

}

@media only screen and (max-width: 1200px) {
  .experience__row {
    -webkit-box-orient: vertical;

    -webkit-box-direction: reverse;

    -ms-flex-direction: column-reverse;

    flex-direction: column-reverse;

  }
}

.experience__resume {
  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: start;

  align-items: flex-start;

  -ms-flex-align: start;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  -ms-flex-direction: column;

  flex-direction: column;

  -webkit-box-pack: end;

  -ms-flex-pack: end;

  justify-content: flex-end;

  width: 30.89888%;

  margin-bottom: 20px;

}

@media only screen and (max-width: 1200px) {
  .experience__resume {
    width: 60%;

    margin-bottom: 40px;

  }
}

@media only screen and (max-width: 768px) {
  .experience__resume {
    width: 80%;

    margin-bottom: 40px;

  }
}

@media only screen and (max-width: 620px) {
  .experience__resume {
    width: 100%;

    margin-bottom: 40px;

  }
}

.experience__resume-text {
  margin-bottom: 6.48148vh;

  color: #c2c2c2;

}

@media only screen and (max-width: 620px) {
  .experience__resume-text {
    width: 100%;

    margin-bottom: 40px;

  }
}

@media only screen and (max-width: 450px) {
  .experience__resume-text {
    font-size: 12px;
  }
}

.experience__resume-button {
  min-width: 323px;
}

@media only screen and (max-width: 768px) {
  .experience__resume-button {
    min-width: 299px;
  }
}

@media only screen and (max-width: 450px) {
  .experience__resume-button {
    min-width: 207px;
  }
}

.experience__history {
  width: 59.10112%;

  cursor: none;

}

@media only screen and (max-width: 1200px) {
  .experience__history {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .experience__history {
    margin-bottom: 40px;
  }
}

.experience__history:hover .experience__card:not(:hover) {
  color: #484848;

  border-top-color: #484848;

}

.experience__card {
  position: relative;

  z-index: 1;

  display: block;

  padding: 50px 0;

  color: #fffcf9;

  -webkit-transition: z-index .3s, color .3s linear, border-color .3s linear;

  transition: z-index .3s, color .3s linear, border-color .3s linear;

  cursor: none;

}

@media only screen and (max-width: 1000px) {
  .experience__card {
    padding: 30px 0;
  }
}

@media only screen and (max-width: 620px) {
  .experience__card {
    padding: 20px 0;
  }
}

.experience__card:hover {
  z-index: 2;
}

.experience__card:not(:first-child) {
  margin-top: -1px;

  border-top: 1px solid #c2c2c2;

}

.experience__card:not(:last-child) {
  border-bottom: 1px solid #c2c2c2;
}

.experience__card-top {
  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-pack: justify;

  -ms-flex-pack: justify;

  justify-content: space-between;

  margin-bottom: 10px;

}

@media only screen and (max-width: 620px) {
  .experience__position {
    width: 50%;
  }
}

.experience__company {
  -webkit-box-align: center;

  align-items: center;

  -ms-flex-align: center;

}

@media only screen and (max-width: 768px) {
  .experience__company {
    font-size: 18px;

    line-height: 140%;

    font-weight: 500;

  }
}

@media only screen and (max-width: 450px) {
  .experience__company {
    font-size: 12px;
  }
}

@media only screen and (max-width: 450px) {
  .experience__company {
    font-size: 12px;
  }
}

@media only screen and (max-width: 450px) {
  .experience__company {
    font-size: 12px;
  }
}

@media only screen and (max-width: 450px) {
  .experience__date {
    font-size: 12px;
  }
}

@media only screen and (min-width: 1201px) {
  .recognition__row {
    display: grid;

    grid-template-rows: 1fr auto;

    grid-template-columns: calc(40% - 40px) 60%;

    -webkit-column-gap: 40px;

    -moz-column-gap: 40px;

    column-gap: 40px;

    grid-template-areas: 'title inner' 'contact-me inner';

  }
}

.recognition__title {
  grid-area: title;
}

@media only screen and (max-width: 1200px) {
  .recognition__title {
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 768px) {
  .recognition__title {
    margin-bottom: 40px;
  }
}

.recognition__contact-me {
  max-width: 330px;

  grid-area: contact-me;

}

@media only screen and (max-width: 1200px) {
  .recognition__contact-me {
    padding-bottom: 30px;
  }
}

.recognition__contact-text {
  margin-bottom: 6.48148vh;

  color: #c2c2c2;

}

@media only screen and (max-width: 768px) {
  .recognition__contact-text {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 450px) {
  .recognition__contact-text {
    font-size: 12px;
  }
}

.recognition__inner {
  grid-area: inner;
}

.recognition__img-wrapper {
  position: relative;

  width: 100%;

  height: 317px;

  margin-bottom: 6.48148vh;

  overflow: hidden;

}

@media only screen and (max-width: 1200px) {
  .recognition__img-wrapper {
    width: auto;

    height: 317px;

    margin-right: -45px;

    margin-bottom: 60px;

    margin-left: -45px;

  }
}

@media only screen and (max-width: 768px) {
  .recognition__img-wrapper {
    height: 189px;
  }
}

@media only screen and (max-width: 620px) {
  .recognition__img-wrapper {
    margin-right: -10px;

    margin-bottom: 40px;

    margin-left: -10px;

  }
}

.recognition__img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 317px;

  -o-object-position: center;

  object-position: center;

  -o-object-fit: cover;

  object-fit: cover;

}

@media only screen and (max-width: 768px) {
  .recognition__img {
    width: 100%;

    height: 189px;

  }
}

@media only screen and (max-width: 1200px) {
  .recognition__img {
    width: 100%;
  }
}

.recognition__resource {
  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-pack: justify;

  -ms-flex-pack: justify;

  justify-content: space-between;

}

@media only screen and (max-width: 1200px) {
  .recognition__resource {
    margin-bottom: 90px;
  }
}

@media only screen and (max-width: 620px) {
  .recognition__resource {
    -ms-flex-wrap: wrap;

    flex-wrap: wrap;

    margin-bottom: 60px;

  }
}

.recognition__resource-list:last-child {
  margin-right: 100px;
}

@media only screen and (max-width: 1559px) {
  .recognition__resource-list:last-child {
    margin-right: 0;
  }
}

@media only screen and (max-width: 1200px) {
  .recognition__resource-list:last-child {
    margin-right: 80px;
  }
}

@media only screen and (max-width: 768px) {
  .recognition__resource-list:last-child {
    margin-right: 0;
  }
}

@media only screen and (max-width: 450px) {
  .recognition__resource-list:nth-child(2) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 620px) {
  .recognition__resource-list:not(:last-child) {
    margin-right: 40px;

    margin-bottom: 50px;

  }
}

@media only screen and (max-width: 450px) {
  .recognition__resource-list:not(:last-child) {
    margin-right: 40px;
  }
}

@media only screen and (max-width: 350px) {
  .recognition__resource-list:not(:last-child) {
    margin-right: 10px;
  }
}

.recognition__resource-list a {
  position: relative;
}

.recognition__resource-list a::after {
  content: '';

  position: absolute;

  right: 0;

  bottom: 0;

  left: 0;

  height: 2px;

  background-color: transparent;

  -webkit-transition: background-color ease .3s;

  transition: background-color ease .3s;

}

.recognition__resource-list a:hover::after {
  background-color: #fffcf9;
}

.recognition__resource-list-title {
  margin-bottom: 40px;
}

@media only screen and (max-width: 1000px) {
  .recognition__resource-list-title {
    margin-bottom: 20px;
  }
}

.recognition__resource-list-item:not(:last-child) {
  margin-bottom: 30px;
}

@media only screen and (max-width: 1000px) {
  .recognition__resource-list-item:not(:last-child) {
    margin-bottom: 10px;
  }
}

.contacts__container {
  position: relative;
}

.contacts__row {
  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

}

@media only screen and (max-width: 1200px) {
  .contacts__row {
    -webkit-box-orient: vertical;

    -webkit-box-direction: reverse;

    -ms-flex-direction: column-reverse;

    flex-direction: column-reverse;

  }
}

.contacts__column {
  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  -ms-flex-direction: column;

  flex-direction: column;

}

.contacts__column:first-child {
  width: 50%;

}

@media only screen and (max-width: 1200px) {
  .contacts__column:first-child {
    width: 100%;

    margin-bottom: 110px;

    padding-right: 0;

  }
}

@media only screen and (max-width: 768px) {
  .contacts__column:first-child {
    width: 100%;

    margin-bottom: 77px;

    padding-right: 0;

  }
}

.contacts__column:last-child {
  width: 50%;
}

@media only screen and (max-width: 1200px) {
  .contacts__column:last-child {
    width: 100%;

    margin-bottom: 100px;

  }
}

@media only screen and (max-width: 768px) {
  .contacts__column:last-child {
    margin-bottom: 60px;
  }
}

.contacts__work {
  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: end;

  -ms-flex-pack: end;

  justify-content: flex-end;

  max-width: 506px;

  height: 100%;

}

@media only screen and (max-width: 1200px) {
  .contacts__work {
    max-width: 100%;
  }
}

.contacts__work-text {
  margin-bottom: 180px;

  color: #c2c2c2;

  justify-self: flex-end;

}

@media only screen and (max-width: 1559px) {
  .contacts__work-text {
    margin-bottom: 100px;
  }
}

@media only screen and (max-width: 1200px) {
  .contacts__work-text {
    max-width: 506px;

    margin-bottom: 20px;

  }
}

@media only screen and (max-width: 1000px) {
  .contacts__work-text {
    max-width: 60%;

    margin-bottom: 20px;

  }
}

@media only screen and (max-width: 768px) {
  .contacts__work-text {
    max-width: 80%;

    margin-bottom: 40px;

  }
}

@media only screen and (max-width: 450px) {
  .contacts__work-text {
    max-width: 90%;

    margin-bottom: 40px;

    font-size: 12px;

  }
}

.contacts__button-wrapper {
  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-pack: end;

  -ms-flex-pack: end;

  justify-content: flex-end;

  overflow: hidden;

}

@media only screen and (max-width: 1200px) {
  .contacts__button-wrapper {
    margin-right: 120px;
  }
}

@media only screen and (max-width: 768px) {
  .contacts__button-wrapper {
    margin-right: 0;
  }
}

.contacts__button {
  -webkit-animation: 10s linear 1s infinite animation-circle;

  animation: 10s linear 1s infinite animation-circle;

}

@media only screen and (max-width: 1000px) {
  .contacts__button svg {
    width: 150px;

    height: 150px;

  }
}

@media only screen and (max-width: 450px) {
  .contacts__button svg {
    width: 120px;

    height: 120px;

  }
}

.contacts__title {
  margin-bottom: 10px;
}

@media only screen and (max-width: 1200px) {
  .contacts__title {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .contacts__title {
    margin-bottom: 40px;
  }
}

.contacts__wrapper {
  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

}

@media only screen and (max-width: 767px) {
  .contacts__wrapper {
    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    -ms-flex-direction: column;

    flex-direction: column;

  }
}

.contacts__contacts {
  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  -ms-flex-direction: column;

  flex-direction: column;

  width: 70%;

}

@media only screen and (max-width: 768px) {
  .contacts__contacts {
    width: 100%;

    margin-bottom: 50px;

  }
}

.contacts__contact {
  max-width: 383px;
}

@media only screen and (max-width: 1559px) {
  .contacts__contact {
    max-width: 325px;
  }
}

.contacts__contact:not(:last-child) {
  margin-bottom: 100px;
}

@media only screen and (max-width: 1200px) {
  .contacts__contact:not(:last-child) {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 768px) {
  .contacts__contact:not(:last-child) {
    margin-bottom: 30px;
  }
}

.contacts__contact-title {
  margin-bottom: 20px;

  color: #c2c2c2;

}

@media only screen and (max-width: 768px) {
  .contacts__contact-title {
    margin-bottom: 10px;
  }
}

.contacts__tel {
  position: relative;
}

.contacts__tel::after {
  content: '';

  position: absolute;

  right: 0;

  bottom: 0;

  left: 0;

  height: 2px;

  background-color: transparent;

  -webkit-transition: background-color ease .3s;

  transition: background-color ease .3s;

}

.contacts__tel:hover::after {
  background-color: #fffcf9;
}

.contacts__mail {
  position: relative;

  position: relative;

  text-transform: none;

}

.contacts__mail::after {
  content: '';

  position: absolute;

  right: 0;

  bottom: 0;

  left: 0;

  height: 2px;

  background-color: transparent;

  -webkit-transition: background-color ease .3s;

  transition: background-color ease .3s;

}

.contacts__mail:hover::after {
  background-color: #fffcf9;
}

.contacts__follow {
  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  -ms-flex-direction: column;

  flex-direction: column;

  width: 30%;

}

@media only screen and (max-width: 768px) {
  .contacts__follow {
    width: 100%;
  }
}

.contacts__follow-link-wrapper {
  cursor: pointer;
}

.contacts__follow-link-wrapper:not(:last-child) {
  margin-bottom: 20px;
}

@media only screen and (max-width: 1200px) {
  .contacts__follow-link-wrapper:not(:last-child) {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .contacts__follow-link-wrapper:not(:last-child) {
    margin-bottom: 5px;
  }
}

.contacts__follow-link {
  position: relative;

  position: relative;

  text-transform: none;

}

.contacts__follow-link::after {
  content: '';

  position: absolute;

  right: 0;

  bottom: 0;

  left: 0;

  height: 2px;

  background-color: transparent;

  -webkit-transition: background-color ease .3s;

  transition: background-color ease .3s;

}

.contacts__follow-link:hover::after {
  background-color: #fffcf9;
}

.contacts__private {
  position: absolute;

  bottom: 50px;

  left: 70px;

  color: #c2c2c2;

}

@media only screen and (max-width: 1200px) {
  .contacts__private {
    bottom: 50px;

    left: 45px;

  }
}

@media only screen and (max-width: 768px) {
  .contacts__private {
    bottom: 30px;

    left: 45px;

    font-size: 14px;

  }
}

@media only screen and (max-width: 620px) {
  .contacts__private {
    bottom: 15px;

    left: 10px;

  }
}

@media only screen and (max-width: 450px) {
  .contacts__private {
    font-size: 12px;
  }
}

@keyframes animation-circle {
  0% {
    -webkit-transform: rotate(0);

    transform: rotate(0);

  }

  100% {
    -webkit-transform: rotate(360deg);

    transform: rotate(360deg);

  }
}

.services__row {
  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-pack: justify;

  -ms-flex-pack: justify;

  justify-content: space-between;

}

.services__column {
  width: calc(100% - 40px);
}

@media only screen and (max-width: 1000px) {
  .services__column {
    width: 100%;

    margin-bottom: 40px;

  }
}

.services__card {
  display: grid;

  cursor: pointer;

}

.services__card:not(:last-child) {
  margin-bottom: 80px;
}

@media only screen and (max-width: 1000px) {
  .services__card:not(:last-child) {
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 768px) {
  .services__card:not(:last-child) {
    margin-bottom: 30px;
  }
}

.services__card .services__tab {
  display: none;
}

@media only screen and (max-width: 1000px) {
  .services__card .services__tab {
    display: block;
  }
}

.services__card-title {
  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-transition: color .3s ease;

  transition: color .3s ease;

}

@media only screen and (max-width: 1000px) {
  .services__card-title {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 768px) {
  .services__card-title {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 450px) {
  .services__card-title {
    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    -ms-flex-direction: column;

    flex-direction: column;

  }
}

.services__card-title.active {
  background: var(--gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background-image: var(--gold-gradient);
}

.services__card-title span {
  margin-right: 10px;
}

@media only screen and (max-width: 768px) {
  .services__card-number {
    font-size: 12px;

    line-height: 140%;

  }
}

@media only screen and (max-width: 450px) {
  .services__card-name {
    font-size: 32px;

    line-height: 90%;

  }
}

.services__card-desc {
  display: none;

  width: 100%;

  max-width: 337px;

}

.services__tabs {
  position: relative;

  -webkit-box-flex: 1;

  -ms-flex: 1 0 auto;

  flex: 1 0 auto;

  max-width: 324px;

}

@media only screen and (max-width: 1000px) {
  .services__tabs {
    display: none;
  }
}

.services__tab {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  max-width: 324px;

  opacity: 0;

  -webkit-transition: opacity .3s ease, height .3s ease;

  transition: opacity .3s ease, height .3s ease;

}

@media only screen and (max-width: 1000px) {
  .services__tab {
    position: static;

    max-width: 100%;

    height: 0;

    overflow: hidden;

  }
}

.services__tab.active {
  opacity: 1;
}

@media only screen and (max-width: 1000px) {
  .services__tab.active {
    position: static;

    max-width: 100%;

    opacity: 1;

  }
}

@media only screen and (max-width: 1000px) {
  .services__tab-img-wrapper {
    position: relative;

    margin-bottom: 40px;

  }

  .services__tab-img-wrapper::after {
    content: '';

    display: block;

    padding-top: 58.99705%;

  }
}

.services__tab-img {
  margin-bottom: 40px;
}

@media only screen and (max-width: 1000px) {
  .services__tab-img {
    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    margin-bottom: 0;

    -o-object-fit: cover;

    object-fit: cover;

    -o-object-position: center;

    object-position: center;

  }
}

.services__tab-desc {
  color: #c2c2c2;
}

@media only screen and (max-width: 450px) {
  .services__tab-desc {
    font-size: 12px;
  }
}

.blog__container {
  position: relative;
}

.blog__title {
  margin-bottom: 60px;
}

@media only screen and (max-width: 1000px) {
  .blog__title {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 768px) {
  .blog__title {
    margin-bottom: 40px;
  }
}

.blog__swiper-container {
  width: calc(100% + 70px);

  overflow: hidden;

  cursor: url(../img/cursor-slider.png) 62 62, auto;

}

@media only screen and (max-width: 1200px) {
  .blog__swiper-container {
    width: calc(100% + 45px);
  }
}

@media only screen and (max-width: 620px) {
  .blog__swiper-container {
    width: calc(100% + 10px);
  }
}

@media only screen and (max-width: 1000px) {
  .blog__swiper-slide-xl {
    display: none;
  }
}

.blog__card {
  display: block;
}

.blog__card-md {
  max-width: 688px;
}

.blog__card-sm {
  max-width: 324px;
}

@media only screen and (max-width: 768px) {
  .blog__card-sm {
    max-width: 300px;
  }
}

@media only screen and (max-width: 450px) {
  .blog__card-sm {
    max-width: 200px;
  }
}

.blog__card-img {
  height: 470px;

  margin-bottom: 40px;

}

@media only screen and (max-width: 1000px) {
  .blog__card-img {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 768px) {
  .blog__card-img {
    max-width: 300px;

    margin-bottom: 20px;

  }
}

@media only screen and (max-width: 450px) {
  .blog__card-img {
    max-width: 200px;

    height: 300px;

  }
}

.blog__card-date {
  margin-bottom: 20px;

  color: #c2c2c2;

}

@media only screen and (max-width: 1000px) {
  .blog__card-date {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .blog__card-date {
    font-size: 14px;
  }
}

@media only screen and (max-width: 450px) {
  .blog__card-date {
    font-size: 12px;
  }
}

.blog__card-title {
  text-transform: none;
}

@media only screen and (max-width: 768px) {
  .blog__card-title {
    font-size: 24px;
  }
}

@media only screen and (max-width: 450px) {
  .blog__card-title {
    font-size: 18px;
  }
}

.swiper-button-prev2 {
  margin-right: 10px;

  cursor: pointer;

}

.swiper-button-prev2 svg circle {
  -webkit-transition: stroke .3s ease;

  transition: stroke .3s ease;

}

.swiper-button-prev2 svg path {
  -webkit-transition: stroke .3s ease;

  transition: stroke .3s ease;

}

.swiper-button-prev2:hover svg circle {
  stroke: #fffcf9;
}

.swiper-button-prev2:hover svg path {
  stroke: #fffcf9;
}

.swiper-button-next2 {
  cursor: pointer;
}

.swiper-button-next2 svg circle {
  -webkit-transition: stroke .3s ease;

  transition: stroke .3s ease;

}

.swiper-button-next2 svg path {
  -webkit-transition: stroke .3s ease;

  transition: stroke .3s ease;

}

.swiper-button-next2:hover svg circle {
  stroke: #fffcf9;
}

.swiper-button-next2:hover svg path {
  stroke: #fffcf9;
}

.swiper-button-wrapper {
  position: absolute;

  top: 0;

  right: 0;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

}

.testimonials__title {
  margin-bottom: 100px;

  text-align: center;

}

@media only screen and (max-width: 1000px) {
  .testimonials__title {
    margin-bottom: 60px;

    text-align: left;

  }
}

@media only screen and (max-width: 620px) {
  .testimonials__title {
    margin-bottom: 40px;
  }
}

.testimonials__swiper-container {
  overflow: hidden;

  cursor: url(../img/cursor-slider.png) 62 62, auto;

}

.testimonials__card {
  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

}

@media only screen and (max-width: 1559px) {
  .testimonials__card {
    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    -ms-flex-direction: column;

    flex-direction: column;

  }
}

.testimonials__img-wrapper {
  margin-right: 40px;
}

@media only screen and (max-width: 1559px) {
  .testimonials__img-wrapper {
    margin-right: 0;

    margin-bottom: 30px;

  }
}

@media only screen and (max-width: 1000px) {
  .testimonials__img-wrapper {
    width: 324px;

    margin-right: 0;

    margin-bottom: 20px;

  }
}

@media only screen and (max-width: 450px) {
  .testimonials__img-wrapper {
    max-width: 300px;

    margin-bottom: 10px;

  }
}

.testimonials__content {
  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: start;

  align-items: flex-start;

  -ms-flex-align: start;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  -ms-flex-direction: column;

  flex-direction: column;

  -webkit-box-pack: justify;

  -ms-flex-pack: justify;

  justify-content: space-between;

  width: 100%;

  max-width: 870px;

  height: 580px;

  padding: 70px;

  background-color: #232323;

}

@media only screen and (max-width: 1559px) {
  .testimonials__content {
    max-width: 506px;

    height: auto;

    min-height: 588px;

    margin-bottom: 20px;

    padding: 46px 30px;

  }
}

@media only screen and (max-width: 1200px) {
  .testimonials__content {
    height: auto;

    min-height: 420px;

    margin-bottom: 20px;

    padding: 46px 30px;

  }
}

@media only screen and (max-width: 1000px) {
  .testimonials__content {
    max-width: 324px;

    height: auto;

    min-height: 408px;

    margin-bottom: 20px;

    padding: 46px 30px;

  }
}

@media only screen and (max-width: 450px) {
  .testimonials__content {
    max-width: 300px;

    height: auto;

    min-height: 314px;

    margin-bottom: 20px;

    padding: 40px 23px;

  }
}

.testimonials__inner {
  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-pack: justify;

  -ms-flex-pack: justify;

  justify-content: space-between;

  width: 100%;

}

.testimonials__swiper-button-wrapper {
  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: end;

  align-items: flex-end;

  -ms-flex-align: end;

  cursor: pointer;

}

@media only screen and (max-width: 1000px) {
  .testimonials__swiper-button-wrapper {
    display: none !important;
  }
}

.testimonials__content-img {
  margin-bottom: 40px;
}

@media only screen and (max-width: 1000px) {
  .testimonials__content-img {
    width: 19px;

    height: 18px;

  }
}

.testimonials__content-text {
  margin-bottom: 70px;
}

@media only screen and (max-width: 1000px) {
  .testimonials__content-text {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 450px) {
  .testimonials__content-text {
    font-size: 12px;
  }
}

.testimonials__content-author {
  margin-bottom: 10px;

  font-size: 18px;

}

@media only screen and (max-width: 450px) {
  .testimonials__content-company {
    font-size: 12px;
  }
}

.testimonials__swiper-button-prev {
  margin-right: 10px;
}

/* personal interest */
.testimonials__card.personal_ineterest_card {
  width: 226px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  position: relative;
  height: 59.53704vh;
  border-left: 1px solid #787A7C;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  height: 435px;
}

.personal_ineterest__item {
  position: absolute;
  bottom: -31px;
  left: 70px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: left;
  transform-origin: left;
  width: 64.53704vh;
  z-index: 5;
}

span.persona_interest__item-number {
  font-size: 22px;
  line-height: 140%;
  color: #F3F3F3;
}

.personal_interest__item-content {
  font-size: 36px;
  line-height: 110%;
  color: #F3F3F3;
}

.personal_interest_title {
  margin-bottom: 60px;
}

.partners__partners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.partners__partner {
  width: 25%;
  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;
  padding: 4.25926vh;
}

.contacts__form-row {
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
  flex-wrap: wrap;
}

.contacts__form-col {
  flex: 1 1 49%;
  width: 49%;
  padding-left: 15px;
  padding-right: 15px;
  flex-grow: 1;
}

.contacts__form-group {
  margin-bottom: 15px;
}

.contacts__form-group>label {
  margin-bottom: 15px;
  display: inline-block;
  font-size: 20px;
}

.contacts__form-input {
  width: 100%;
  height: 48px;
  border-radius: 31px;
  background-color: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding-left: 10px;
  padding-right: 10px;
}

textarea.contacts__form-input {
  height: auto;
  min-height: 150px;
}

button.contacts__form-button {
  border: 1px solid var(--gold);
  height: 48px;
  background-color: transparent;
  color: var(--gold);
  border-radius: 31px;
  padding: 8px 35px;
  min-width: 250px;
  font-size: 20px;
  margin: 20px auto;
}

.contacts__container .contacts__row:first-child {
  justify-content: center;
}

.contacts__container .contacts__row:first-child .contacts__column {
  width: 50%;
}

.contacts__container .contacts__row:last-child .contacts__column {
  width: 70%;
}

.contacts__work {
  margin: 0 auto;
}

.contacts__title {
  text-align: center;
}

.contacts__container .contacts__column {
  padding-left: 15px;
  padding-right: 15px;
}

.contacts__container .contacts__row:last-child {
  justify-content: center;
}

.contacts__container .contacts__row:last-child .contacts__wrapper {
  justify-content: center;
}

.contacts__work-text.manrope-text2.followme {
  text-align: center;
  line-height: 80px;
}

.contacts__work-text.manrope-text2.followme>a {
  font-size: 50px;
}

.phone_country {
  margin-bottom: 7px;
}

.phone_country select {
  color: var(--gold);
  padding: 2px 10px;
  width: auto;
  height: auto;
  background: #000;
  max-width: 200px;
}

.contacts__form-input-group {
  display: flex;
  flex-wrap: wrap;
}


span.contacts__form-input-group__addon {
  flex: 1 1 15%;
  border: 1px solid var(--gold);
  border-top-left-radius: 31px;
  border-bottom-left-radius: 31px;
  justify-content: center;
  display: flex;
  align-items: center;
  color: var(--gold);
}

.contacts__form-input-group>input {
  flex: 1 1 85%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.header {
  position: fixed;

  top: 0;

  left: 0;

  z-index: 100;

  width: 100%;

}

.header__wrapper {
  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  align-items: center;

  -ms-flex-align: center;

  -webkit-box-pack: justify;

  -ms-flex-pack: justify;

  justify-content: space-between;

  padding: 35px 70px;

  background-color: #000;
  max-width: 605px;

}

@media only screen and (max-width: 1200px) {
  .header__wrapper {
    padding: 20px 45px;
  }
}

@media only screen and (max-width: 768px) {
  .header__wrapper {
    -webkit-box-orient: horizontal;

    -webkit-box-direction: reverse;

    -ms-flex-direction: row-reverse;

    flex-direction: row-reverse;

  }
}

@media only screen and (max-width: 450px) {
  .header__wrapper {
    padding: 12px 10px 10px 6px;
  }
}

.header__logo {
  font-size: 24px;

  line-height: 120%;

  -webkit-transform: rotate(-90deg);

  transform: rotate(-90deg);
  display: none;

}

@media only screen and (max-width: 1440px) {
  .header__logo {
    margin-right: 31%;

    margin-left: auto;

  }
}

@media only screen and (max-width: 1400px) {
  .header__logo {
    margin-right: 29%;

    margin-left: auto;

  }
}

@media only screen and (max-width: 1350px) {
  .header__logo {
    margin-right: 26%;

    margin-left: auto;

  }
}

@media only screen and (max-width: 1200px) {
  .header__logo {
    margin-right: 23%;

    margin-left: auto;

  }
}

@media only screen and (max-width: 1024px) {
  .header__logo {
    margin-right: auto;

    margin-left: auto;

  }
}

@media only screen and (max-width: 450px) {
  .header__logo {
    font-size: 18px;
  }
}

.header__burger {
  position: relative;

  width: 50px;

  height: 14px;

  cursor: pointer;

}

@media only screen and (max-width: 450px) {
  .header__burger {
    width: 30px;
  }
}

.header__burger span {
  width: 100%;

  height: 100%;

}

.header__burger span::after,
.header__burger span::before {
  content: '';

  position: absolute;

  width: 50px;

  height: 2px;

  background-color: #fffcf9;

}

@media only screen and (max-width: 450px) {

  .header__burger span::after,
  .header__burger span::before {
    width: 30px;
  }
}

.header__burger span:after {
  top: 0;
}

.header__burger span::before {
  bottom: 0;
}

.header__links {
  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  align-items: center;

  -ms-flex-align: center;

  font-size: 24px;

  line-height: 120%;

}

@media only screen and (max-width: 768px) {
  .header__links {
    display: none;
  }
}

.header__links li:not(:last-child) {
  margin-right: 150px;
}

@media only screen and (min-width: 993px) {
  .header__links li {
    -webkit-transition: all ease-out .3s;

    transition: all ease-out .3s;

  }

  .header__links li:hover {
    color: goldenrod;
    ;

    -webkit-transition: all ease-out .3s;

    transition: all ease-out .3s;

  }
}

div#personal_ineterest .services__container {
  /* transform: rotate(-90deg); */
}

div#personal_ineterest .services__card-title {
  /* justify-content: center !important; */
}

.header__menu {
  position: absolute;

  top: 0;

  left: 0;

  z-index: 100;

  width: 758px;

  height: 100vh;

  font-size: 40px;

  line-height: 120%;

  background: goldenrod;
  ;

  opacity: 0;

  -webkit-transition: .3s;

  transition: .3s;

  -webkit-transform: translateX(-100%);

  transform: translateX(-100%);

  overflow-y: auto;

}

@media only screen and (max-width: 768px) {
  .header__menu {
    right: 0;

    left: auto;

    width: 369px;

    -webkit-transform: translateX(100%);

    transform: translateX(100%);

  }
}

@media only screen and (max-width: 413px) {
  .header__menu {
    width: 100vw;
  }
}

.header__menu-list {
  opacity: 0;

  -webkit-transition: opacity .5s ease;

  transition: opacity .5s ease;

  -webkit-transition-delay: .2s;

  transition-delay: .2s;

}

.header__menu.active {
  opacity: 1;

  -webkit-transform: translateX(0);

  transform: translateX(0);

}

.header__menu.active .header__menu-list {
  opacity: 1;
}

.header__menu-content {
  position: relative;

  padding-top: 178px;

  padding-bottom: 136px;

  padding-left: 250px;

}

@media only screen and (max-width: 768px) {
  .header__menu-content {
    padding-top: 99px;

    padding-bottom: 90px;

    padding-left: 118px;

    font-size: 24px;

    line-height: 120%;

  }
}

@media only screen and (max-width: 620px) {
  .header__menu-content {
    padding-top: 68px;

    padding-bottom: 60px;

    padding-left: 60px;

    font-size: 18px;

    line-height: 140%;

    font-weight: 500;

  }
}

.header__menu-exit {
  position: absolute;

  top: 30px;

  left: 67px;

  z-index: 3;

  width: 40px;

  height: 40px;

  -webkit-transition: .3s ease;

  transition: .3s ease;

  cursor: pointer;

}

@media only screen and (max-width: 768px) {
  .header__menu-exit {
    right: 45px;

    left: auto;

  }
}

@media only screen and (max-width: 767px) {
  .header__menu-exit {
    top: 8px;

    right: 16px;

    width: 30px;

    height: 30px;

  }
}

.header__menu-exit:hover {
  opacity: .7;
}

.header__menu-exit::after,
.header__menu-exit::before {
  content: '';

  position: absolute;

  left: 20px;

  display: block;

  width: 2px;

  height: 40px;

  background-color: #0d0d0c;

}

@media only screen and (max-width: 768px) {

  .header__menu-exit::after,
  .header__menu-exit::before {
    height: 30px;
  }
}

.header__menu-exit::after {
  -webkit-transform: rotate(45deg);

  transform: rotate(45deg);

}

.header__menu-exit::before {
  -webkit-transform: rotate(-45deg);

  transform: rotate(-45deg);

}

.header__menu-item.active a::after {
  right: 0;

  background-color: #0d0d0c;

}

.header__menu-item:not(:first-child) {
  margin-top: 31px;
}

@media only screen and (max-width: 768px) {
  .header__menu-item:not(:first-child) {
    margin-top: 21px;
  }
}

@media only screen and (max-width: 620px) {
  .header__menu-item:not(:first-child) {
    margin-top: 11px;
  }
}

.header__menu-link {
  position: relative;

  display: inline-block;

  padding-bottom: 11px;

  color: #0d0d0c;

  -webkit-transition: padding-left .3s ease;

  transition: padding-left .3s ease;

  transition: padding-left .3s ease;

  transition: padding-left .3s ease;

}

@media only screen and (max-width: 620px) {
  .header__menu-link {
    padding-bottom: 10px;
  }
}

.header__menu-link::after {
  content: '';

  position: absolute;

  bottom: 0;

  left: 0;

  height: 2px;

  background-color: transparent;

  -webkit-transition: .3s ease;

  transition: .3s ease;

}

.header__menu-item:not(.active) .header__menu-link:hover {
  padding-left: 25px;
}

.header__menu-logo {
  position: absolute;

  top: 12px;

  left: 3px;

  display: none;

  text-transform: uppercase;

  color: #0d0d0c;

  font-size: 18px;

  line-height: 120%;

  font-weight: 500;

  font-style: normal;

  -webkit-transform: rotate(-90deg);

  transform: rotate(-90deg);

}

@media only screen and (max-width: 767px) {
  .header__menu-logo {
    display: block;
  }
}

.nav-widget {
  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  align-items: center;

  -ms-flex-align: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

}

.nav-widget__wrapper {
  position: fixed;

  right: 70px;

  bottom: 50px;

  z-index: 100;

  width: 350px;

}

@media only screen and (max-width: 1000px) {
  .nav-widget__wrapper {
    display: none;
  }
}

.nav-widget__line {
  position: relative;

  width: 100%;

  max-width: 273px;

  height: 2px;

  margin-right: 17px;

  background-color: #484848;

}

.nav-widget__line-active {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: var(--gold-gradient);

  -webkit-transition: width .3s ease;

  transition: width .3s ease;

}

.nav-widget__page-number {
  color: #fff;
}

.wrapper {
  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1000000;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  align-items: center;

  -ms-flex-align: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  height: 100vh;

  background: -webkit-gradient(linear,
      left top,
      left bottom,
      color-stop(50%, #000));

  background: linear-gradient(180deg, #000 50%);

}

.main-circle {
  position: relative;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  align-items: center;

  -ms-flex-align: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  width: 150px;

  height: 150px;

  border: 4px solid goldenrod;

  border-top: 4px solid transparent;

  border-right: 4px solid transparent;

  border-radius: 50%;

  -webkit-animation: rotate 2s infinite;

  animation: rotate 2s infinite;

}

.main-circle:before {
  content: '';

  position: absolute;

  width: 100%;

  height: 100%;

  border: 4px solid transparent;

  border-right: 4px solid goldenrod;

  border-radius: 50%;

  -webkit-transform: rotate(40deg);

  transform: rotate(40deg);

}

.green-circle {
  position: relative;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  align-items: center;

  -ms-flex-align: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  width: 120px;

  height: 120px;

  border: 4px solid goldenrod;

  border-top: 4px solid transparent;

  border-right: 4px solid transparent;

  border-radius: 50%;

  -webkit-transform: rotate(-20deg);

  transform: rotate(-20deg);

  -webkit-animation: rotate 2s infinite .4s;

  animation: rotate 2s infinite .4s;

}

.green-circle:before {
  content: '';

  position: absolute;

  width: 100%;

  height: 100%;

  border: 4px solid transparent;

  border-right: 4px solid goldenrod;
  ;

  border-radius: 50%;

  -webkit-transform: rotate(60deg);

  transform: rotate(60deg);

}

.brown-circle {
  width: 80px;

  height: 80px;

  border: 4px solid goldenrod;
  ;

  border-top: 4px solid transparent;

  border-right: 4px solid transparent;

  border-radius: 50%;

  -webkit-transform: rotate(-20deg);

  transform: rotate(-20deg);

  -webkit-animation: rotate 2s infinite .6s;

  animation: rotate 2s infinite .6s;

}

@-webkit-keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);

    transform: rotate(360deg);

  }
}

@keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);

    transform: rotate(360deg);

  }
}

.custom-cursor {
  position: fixed;

  z-index: 100;

  visibility: hidden;

  width: 1em;

  height: 1em;

  margin: -.5em 0 0 -.5em;

  font-size: 270px;

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

  opacity: 0;

  -webkit-transition: opacity .3s, visibility .3s;

  transition: opacity .3s, visibility .3s;

  pointer-events: none;

}

.crisp-client .cc-tlyw .cc-kxkl .cc-nsge[data-is-failure="false"] {
  display: none !important;
}

@media only screen and (max-width: 1559px) {
  .custom-cursor {
    font-size: 180px;
  }
}

.custom-cursor.active {
  visibility: visible;

  opacity: 1;

}

/*# sourceMappingURL=maps/main.css.map */