:root {
  --font-family: "Proxima Nova", sans-serif;
  --second-family: "Proxima Nova Condensed", sans-serif;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts//ProximaNova-Regular.ttf");
  font-weight: 400;
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "Proxima Nova Condensed";
  src: url("../fonts//ProximaNovaCond-Regular.ttf");
  font-weight: 400;
  font-display: block;
  font-style: normal;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*:not([class]) {
  margin: 0;
  padding: 0;
}

html {
  overflow-x: clip;
}

@media screen and (pointer: fine) {
  html {
    width: 100vw;
    margin-left: calc((100% - 100vw) / 2);
  }
}
body,
html {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.container {
  position: relative;
  padding: 0 4rem;
  width: 100%;
  max-width: 135rem;
  margin: 0 auto;
  height: 100%;
}
@media (max-width: 1024px) {
  .container {
    padding: 0 1.6rem;
  }
}

.site-container {
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

ul li {
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

a {
  text-decoration: none;
}

.hidden {
  display: none !important;
}

.btn-reset {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font-family: "Victor Mono", sans-serif;
}
.btn-reset:focus-visible {
  outline: none;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}
.input-reset:focus-visible {
  outline: none;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
  overflow-x: hidden;
  overflow-y: scroll;
}

html {
  --refRes: 1920;
  font-size: calc(100vw / var(--refRes) * 10);
}
@media (min-width: 1921px) {
  html {
    font-size: 10px;
  }
}
@media (max-width: 1024px) {
  html {
    --refRes: 768;
  }
}
@media (max-width: 530px) {
  html {
    --refRes: 390 !important;
  }
}

.main-screen {
  height: 100dvh;
  width: 100vw;
  overflow: hidden;
  background: #000000;
}
.main-screen__bg {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 530px) {
  .main-screen__bg {
    top: 2rem;
  }
}
.main-screen__wrapper {
  position: relative;
  z-index: 2;
  height: 100dvh;
}
.main-screen__slide {
  position: relative;
  height: 100dvh;
  width: 100%;
}
.main-screen__slide:nth-child(1n) {
  z-index: 1 !important;
}

.screen {
  position: relative;
  height: 100%;
}

.circle {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 100%;
  background: #fff;
}
@media (max-width: 530px) {
  .circle {
    width: 0.8rem;
    height: 0.8rem;
  }
}

.content p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 2rem;
  line-height: 140%;
  text-align: center;
  color: #fff;
  margin-block: 1.8rem;
}
@media (max-width: 1024px) {
  .content p {
    font-size: 1.8rem;
    margin-block: 1.6rem;
  }
}
@media (max-width: 530px) {
  .content p {
    padding-inline: 0.7rem;
    font-size: 1.4rem;
    margin-block: 1.2rem;
  }
}
.content p:first-child {
  margin-top: 0;
}
.content p:last-child {
  margin-bottom: 0;
}

.first-screen {
  position: relative;
  z-index: 10;
  display: -ms-grid;
  display: grid;
  place-content: center;
}
.first-screen__cut-logo {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .first-screen__cut-logo {
    display: none;
  }
}
.first-screen__inner {
  width: 86.4rem;
}
@media (max-width: 1024px) {
  .first-screen__inner {
    width: 60rem;
  }
}
@media (max-width: 530px) {
  .first-screen__inner {
    width: 100%;
    padding-inline: 1.6rem;
  }
}
.first-screen__logo {
  width: 86rem;
  margin-bottom: 4.2rem;
}
@media (max-width: 1024px) {
  .first-screen__logo {
    width: 60rem;
    margin-bottom: 2.8rem;
  }
}
@media (max-width: 530px) {
  .first-screen__logo {
    display: block;
    width: 26rem;
    margin: 0 auto 1.2rem auto;
  }
}
.first-screen__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.8rem;
}
@media (max-width: 530px) {
  .first-screen__texts {
    padding-inline: 2.1rem;
    gap: 1rem;
  }
}
.first-screen__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 4.2rem;
  line-height: 140%;
  color: #fff;
}
@media (max-width: 1024px) {
  .first-screen__text {
    font-size: 2.8rem;
  }
}
@media (max-width: 530px) {
  .first-screen__text {
    font-size: 1.4rem;
  }
}

.second-screen {
  position: relative;
  z-index: 10;
  display: -ms-grid;
  display: grid;
  place-content: center;
}
.second-screen__inner {
  width: 102rem;
}
@media (max-width: 1024px) {
  .second-screen__inner {
    width: 70rem;
  }
}
@media (max-width: 530px) {
  .second-screen__inner {
    width: 100%;
    padding-inline: 1.6rem;
  }
}
.second-screen__title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 6rem;
  line-height: 130%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin-bottom: 3.6rem;
}
@media (max-width: 1024px) {
  .second-screen__title {
    font-size: 4.4rem;
    margin-bottom: 2.2rem;
  }
}
@media (max-width: 530px) {
  .second-screen__title {
    font-size: 2.8rem;
  }
}