@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Book.woff2") format("woff2"), url("../fonts/Gotham-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Bold.woff2") format("woff2"), url("../fonts/Gotham-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
  font-family: "Gotham", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  line-height: 1.2;
}

html,
body {
  background: #000;
}

.content {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.wrapper {
  min-height: 100vh;
  min-height: 100dvh;
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  background: #000;
}
.wrapper::before {
  content: "";
  position: absolute;
  inset: -4%;
  background: url(../images/globe.webp) 100% 100% no-repeat;
  background-size: 60% auto;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
          transform: translate3d(0, 0, 0) scale(1);
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
  -webkit-animation: globeDrift 32s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
          animation: globeDrift 32s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  will-change: transform;
  pointer-events: none;
  z-index: 0;
}
.wrapper .content {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .wrapper::before {
    background-size: 120% auto;
    -webkit-animation-name: globeDriftMobile;
            animation-name: globeDriftMobile;
  }
}

@-webkit-keyframes globeDrift {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
  25% {
    -webkit-transform: translate3d(-0.4%, -0.25%, 0) scale(1.012);
            transform: translate3d(-0.4%, -0.25%, 0) scale(1.012);
  }
  50% {
    -webkit-transform: translate3d(-0.7%, -0.45%, 0) scale(1.018);
            transform: translate3d(-0.7%, -0.45%, 0) scale(1.018);
  }
  75% {
    -webkit-transform: translate3d(-0.35%, -0.2%, 0) scale(1.01);
            transform: translate3d(-0.35%, -0.2%, 0) scale(1.01);
  }
}

@keyframes globeDrift {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
  25% {
    -webkit-transform: translate3d(-0.4%, -0.25%, 0) scale(1.012);
            transform: translate3d(-0.4%, -0.25%, 0) scale(1.012);
  }
  50% {
    -webkit-transform: translate3d(-0.7%, -0.45%, 0) scale(1.018);
            transform: translate3d(-0.7%, -0.45%, 0) scale(1.018);
  }
  75% {
    -webkit-transform: translate3d(-0.35%, -0.2%, 0) scale(1.01);
            transform: translate3d(-0.35%, -0.2%, 0) scale(1.01);
  }
}

@-webkit-keyframes globeDriftMobile {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
  25% {
    -webkit-transform: translate3d(-0.35%, -0.2%, 0) scale(1.008);
            transform: translate3d(-0.35%, -0.2%, 0) scale(1.008);
  }
  50% {
    -webkit-transform: translate3d(-0.55%, -0.35%, 0) scale(1.014);
            transform: translate3d(-0.55%, -0.35%, 0) scale(1.014);
  }
  75% {
    -webkit-transform: translate3d(-0.28%, -0.15%, 0) scale(1.007);
            transform: translate3d(-0.28%, -0.15%, 0) scale(1.007);
  }
}

@keyframes globeDriftMobile {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
  25% {
    -webkit-transform: translate3d(-0.35%, -0.2%, 0) scale(1.008);
            transform: translate3d(-0.35%, -0.2%, 0) scale(1.008);
  }
  50% {
    -webkit-transform: translate3d(-0.55%, -0.35%, 0) scale(1.014);
            transform: translate3d(-0.55%, -0.35%, 0) scale(1.014);
  }
  75% {
    -webkit-transform: translate3d(-0.28%, -0.15%, 0) scale(1.007);
            transform: translate3d(-0.28%, -0.15%, 0) scale(1.007);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wrapper::before {
    -webkit-animation: none;
            animation: none;
  }
}

.wrapper .wrapper__logo {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .wrapper .wrapper__logo {
    margin: 0 auto 32px;
  }
}
.wrapper .wrapper__logo img {
  display: block;
  width: 100px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .wrapper .wrapper__logo img {
    width: 66px;
  }
}
@media screen and (max-width: 767px) {
  .wrapper .wrapper__center {
    margin: auto 0;
    padding-bottom: 170px;
  }
}

.title {
  display: inline-block;
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 55px;
}
@media screen and (max-width: 991px) {
  .title {
    font-size: 50px;
  }
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 28px;
    margin-bottom: 32px;
  }
}
.title span {
  display: block;
}
@media screen and (max-width: 767px) {
  .title span {
    display: inline;
  }
}
.title span:nth-child(1) {
  padding-right: 50px;
}
@media screen and (max-width: 767px) {
  .title span:nth-child(1) {
    padding: 0;
  }
}
.title span:nth-child(2) {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .title span:nth-child(2) {
    text-align: left;
  }
}

.after-title {
  text-align: right;
  color: rgba(255, 255, 255, 0.5);
  max-width: 410px;
}

.contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .contacts {
    margin-top: 32px;
  }
}
.contacts .contacts__label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 3px;
}
.contacts .contacts__val a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (hover: hover) {
  .contacts .contacts__val a:hover {
    color: #7FD858;
  }
}
