* {
  padding: 0;
  margin: 0;
  border: 0;
}
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
:focus,
:active {
  outline: none;
}
a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  font-size: 100% !important;
  line-height: 1 !important;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  background-color: #ffffff;
}

body {
  overflow: hidden;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}
button {
  cursor: pointer;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
a,
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
ul li {
  list-style: none;
}
img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

:root {
  --main-font: "Unbounded", sans-serif;
  --second-font: "IBM Plex Sans", sans-serif;
  --white: #ffffff;
  --black: #000000;
  --blue: #15abda;
  --dark: #021115;
}

.scroller {
  position: relative;
  top: 0;
  left: 0;
  width: 100px;
  z-index: -1;
  height: 200vh;
}

.main-container {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

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

.full-back > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  max-width: 1500px;
  margin: auto;
  padding: 0 4em;
}

@media screen and (max-width: 1000px) {
  .container {
    padding: 0 25px;
  }
}

.content-container {
  padding-top: 8.5em;
  padding-bottom: 8.5em;
}

.container-flex-center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.block {
  width: 100vw;
  height: 100vh;
  top: 0;
  transform: translate(0, 0);
  position: fixed;
  background-color: var(--white);
  overflow: hidden;
}

.block-right {
  transform: translate(100%, 0);
}

.block-bottom {
  transform: translate(0, 100%);
}

.intro-block__pretitle {
  font-family: var(--main-font);
  font-size: 1.56em;
  font-weight: 400;
  line-height: 2.5em;
  text-align: left;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
}

.intro-block__title {
  font-family: var(--main-font);
  font-size: 5em;
  font-weight: 400;
  text-align: left;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5em;
  opacity: 0;
  max-width: 900px;
}

.intro-block__text {
  font-family: var(--second-font);
  font-size: 2.18em;
  line-height: 150%;
  font-weight: 400;
  text-align: left;
  color: var(--white);
  max-width: 800px;
  opacity: 0;
}

@media screen and (max-width: 1000px) {
  .intro-block__pretitle {
    font-size: 1.2em;
    line-height: 4em;
  }

  .intro-block__title {
    font-size: 3.5em;
    margin-bottom: 0.5em;
    line-height: 1.3em;
  }

  .intro-block__text {
    font-size: 1.5em;
    line-height: 130%;
    max-width: 800px;
  }
}

@media screen and (max-width: 500px) {
  .intro-block__pretitle {
    font-size: 1em;
    line-height: 2.5em;
  }

  .intro-block__title {
    font-size: 2.5em;
    margin-bottom: 0.5em;
    line-height: 1.1em;
  }

  .intro-block__text {
    font-size: 1em;
    line-height: 100%;
    max-width: 800px;
  }
}

@media screen and (max-height: 500px) and (orientation: landscape) {
  .intro-block__pretitle {
    font-size: 1em;
    line-height: 2.5em;
  }

  .intro-block__title {
    font-size: 2.5em;
    margin-bottom: 0.5em;
    line-height: 1.1em;
  }

  .intro-block__text {
    font-size: 1em;
    line-height: 100%;
    max-width: 800px;
  }
}

.last-block__pretitle {
  font-family: var(--main-font);
  font-size: 1.7em;
  font-weight: 400;
  text-align: center;
  color: var(--white);
  margin-bottom: 0.5em;
  text-transform: uppercase;
}

.last-block__title {
  font-family: var(--main-font);
  font-size: 4em;
  font-weight: 500;
  text-align: center;
  color: var(--white);
  margin-bottom: 0.35em;
  text-transform: uppercase;
}

.last-block__text {
  font-family: var(--second-font);
  font-size: 1.4em;
  font-weight: 400;
  text-align: center;
  max-width: 460px;
  color: var(--white);
  line-height: 1.8em;
  margin-bottom: 1.8em;
}

@media screen and (max-width: 1000px) {
  .last-block__pretitle {
    font-size: 1em;
    margin-bottom: 0.5em;
    text-align: left;
  }

  .last-block__title {
    font-size: 2em;
    margin-bottom: 0.35em;
    text-align: left;
  }

  .last-block__text {
    font-size: 1.3em;
    max-width: 460px;
    line-height: 1.5em;
    text-align: left;
  }
  @media screen and (max-height: 700px) {
    .last-block__text {
      display: none;
    }
  }
}

@media screen and (max-width: 500px) {
  .last-block__pretitle {
    font-size: 1em;
    margin-bottom: 0.5em;
    text-align: left;
  }

  .last-block__title {
    font-size: 1.3em;
    margin-bottom: 0.35em;
    text-align: left;
  }

  .last-block__text {
    font-size: 1em;
    max-width: 460px;
    line-height: 1.2em;
    text-align: left;
  }
  @media screen and (max-height: 700px) {
    .last-block__text {
      display: none;
    }
  }
}

.last-block__button--left:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.last-block__button--left:hover svg path {
  stroke: var(--blue);
}

.last-block__button--right:hover {
  color: var(--dark);
  border-color: var(--dark);
}

.last-block__button--right:hover svg path {
  stroke: var(--dark);
}

.last-block__container {
  width: 100%;
  height: 100%;
}

.last-block__back {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
}

.last-block__content {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.last-block__content-top {
  display: flex;
}

.last-block__content-top > div {
  width: 50%;
  flex: 1;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
}

.last-block__content-bottom {
  display: flex;
}

.last-block__content-bottom > div {
  width: 50%;
  flex: 1;
  display: flex;
  justify-content: center;
}

.last-block__button--small {
  display: none !important;
}

@media screen and (max-width: 1000px) {
  .last-block__content {
    flex-direction: column;
  }
  .last-block__back {
    flex-direction: column;
  }
  .last-block__content-top {
    flex-direction: column;
  }

  .last-block__content-top > div {
    width: 100%;
    padding: 10px;
  }

  .last-block__content-top > div:first-child {
    width: 100%;
    align-items: flex-start;
  }

  .last-block__content-top > div:last-child {
    width: 100%;
    align-items: flex-end;
  }

  .last-block__content-top > div:last-child .last-block__text {
    text-align: right;
  }

  .last-block__content-bottom {
    display: none;
  }

  .last-block__button--small {
    display: flex !important;
  }
}

.last-block__left,
.last-block__right {
  flex: 1;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1000px) {
  .last-block__left,
  .last-block__right {
    width: 100%;
    align-items: flex-start;
    padding: 15px;
    justify-content: flex-end;
  }

  .last-block__right {
    align-items: flex-end;
    justify-content: flex-start;
    flex: 0.85;
  }

  .last-block__right .last-block__pretitle,
  .last-block__right .last-block__title,
  .last-block__right .last-block__text {
    text-align: right;
  }
}

.last-block__left {
  background-color: var(--dark);
}

.last-block__right {
  background-color: var(--blue);
}

.white-button {
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #ffffff;
  padding: 10px 15px;
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
  font-family: var(--second-font);
}

.white-button img,
.white-button svg {
  width: 25px;
}
