@font-face {
  font-family: "GTSuperText-Bold";
  src: url("./assets/fonts/GTSuperText-Bold.otf") format("opentype");
}
@font-face {
  font-family: "GTSuperText-Medium";
  src: url("./assets/fonts/GTSuperText-Medium.otf") format("opentype");
}
@font-face {
  font-family: "GTWalsheim-Bold";
  src: url("./assets/fonts/GTWalsheim-Bold.otf") format("opentype");
}
@font-face {
  font-family: "GTWalsheim-BoldOblique";
  src: url("./assets/fonts/GTWalsheim-BoldOblique.otf") format("opentype");
}
@font-face {
  font-family: "GTWalsheim-Regular";
  src: url("./assets/fonts/GTWalsheim-Regular.otf") format("opentype");
}
@font-face {
  font-family: "GTWalsheim-RegularOblique";
  src: url("./assets/fonts/GTWalsheim-RegularOblique.otf") format("opentype");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

:root {
  --window_size: 1903;
  --percentage: 100%;
}

img {
  display: block;
}

.page_1,
.page_2 {
  width: 100%;
  position: relative;
}
.page_1 img {
  width: 100%;
}

.logo {
  display: none;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  justify-content: flex-end;
  padding-top: calc((115 / var(--window_size)) * var(--percentage));
  padding-right: calc((115 / var(--window_size)) * var(--percentage));
}
.logo img {
  width: calc((403 / var(--window_size)) * var(--percentage));
}

.text {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: calc((110 / var(--window_size)) * 100vw);
}
.inner {
  width: calc((1370 / var(--window_size)) * var(--percentage));
  text-align: center;
}
.inner p {
  font-family: "GTSuperText-Bold";
  font-size: calc((44 / var(--window_size)) * 100vw);
}
.inner p sup {
  font-size: calc((25 / var(--window_size)) * 100vw);
}

.segment {
  display: flex;
}
.segment_1,
.segment_3 {
  overflow: hidden;
  height: calc((707 / var(--window_size)) * 100vw);
}
.segment_1 {
  margin-bottom: calc((110 / var(--window_size)) * 100vw);
}
.segment_3 {
  margin-top: calc((110 / var(--window_size)) * 100vw);
}
.slide {
  height: 100%;
}
.slide img {
  height: 100%;
}
.slide_helper {
  flex-shrink: 0;
  width: 100vw;
  height: 100%;
}
.left,
.right {
  flex-shrink: 0;
  width: calc((500 / var(--window_size)) * 100vw);
}
.left img,
.right img {
  width: 100%;
}
.text_box {
  width: 100%;
  position: relative;
}
.pink_corner {
  position: absolute;
  top: calc((-30 / var(--window_size)) * 100vw);
  left: calc((-20 / var(--window_size)) * 100vw);
  width: calc((98 / var(--window_size)) * 100vw);
}
.blue_corner {
  position: absolute;
  bottom: calc((-20 / var(--window_size)) * 100vw);
  right: calc((-20 / var(--window_size)) * 100vw);
  width: calc((114 / var(--window_size)) * 100vw);
}
.dotted_graphics {
  position: absolute;
  bottom: calc((-40 / var(--window_size)) * 100vw);
  left: calc((-60 / var(--window_size)) * 100vw);
  width: calc((339 / var(--window_size)) * 100vw);
}

.text_box {
  padding: calc((60 / var(--window_size)) * 100vw);
  padding-left: calc((80 / var(--window_size)) * 100vw);
  padding-right: calc((80 / var(--window_size)) * 100vw);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.text_box h1 {
  font-family: "GTWalsheim-Bold";
  font-size: calc((80 / var(--window_size)) * 100vw);
  color: #b692f4;
}
.text_box ul {
  padding-left: calc((25 / var(--window_size)) * 100vw);
}
.text_box ul li {
  font-family: "GTSuperText-bold";
  font-weight: 400;
  font-size: calc((30 / var(--window_size)) * 100vw);
  margin-bottom: calc((20 / var(--window_size)) * 100vw);
}
.text_box ul li span {
  font-family: "GTSuperText-Medium";
  font-weight: 900;
}
.text_box .footer {
  font-family: "GTWalsheim-Bold";
  font-size: calc((37 / var(--window_size)) * 100vw);
  padding-bottom: calc((30 / var(--window_size)) * 100vw);
}
.text_box .footer a, .text_box ul li a {
  color: #b692f4;
}

/* css preloader*/
#loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #b692f4;
  -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #562fbe;
  -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #4fb7dd;
  -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg); /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg); /* IE 9 */
    transform: rotate(0deg); /* Firefox 16+, IE 10+, Opera */
  }
  100% {
    -webkit-transform: rotate(360deg); /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg); /* IE 9 */
    transform: rotate(360deg); /* Firefox 16+, IE 10+, Opera */
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg); /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg); /* IE 9 */
    transform: rotate(0deg); /* Firefox 16+, IE 10+, Opera */
  }
  100% {
    -webkit-transform: rotate(360deg); /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg); /* IE 9 */
    transform: rotate(360deg); /* Firefox 16+, IE 10+, Opera */
  }
}

/* css preloader complete*/

.loader-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #222222;
  z-index: 1000;
}
.loader-section .section-left {
  left: 0;
}
.loader-section .section-right {
  right: 0;
}
#loader {
  z-index: 1001;
}
#content {
  margin: 0 auto;
  padding-bottom: 50px;
  width: 80%;
  max-width: 978px;
}
/* Loaded */
.loaded #loader-container .loader-section.section-left {
  -webkit-transform: translateX(-100%); /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateX(-100%); /* IE 9 */
  transform: translateX(-100%); /* Firefox 16+, IE 10+, Opera */
}
.loaded #loader-container .loader-section.section-right {
  -webkit-transform: translateX(100%); /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateX(100%); /* IE 9 */
  transform: translateX(100%); /* Firefox 16+, IE 10+, Opera */
}
.loaded #loader {
  opacity: 0;
}
.loaded #loader-container {
  visibility: hidden;
}
.loaded #loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.loaded #loader-container .loader-section.section-right,
.loaded #loader-container .loader-section.section-left {
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader-container {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);

  -webkit-transition: all 0.3s 1s ease-out;
  transition: all 0.3s 1s ease-out;
}

#description span:after {
  content: "|";
  animation: blink 1s infinite;
}
#description .no-blink::after {
  display: none;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
