body {
  margin: 0;
  background-color: #fff;
}

:root {
  --animate-delay: .1s;
}

main {
  max-width: 100%;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

section {
  height: 100vh;
  position: relative;
}

.show-mobile {
  display: block;
}
@media screen and (min-width: 1020px) {
  .show-mobile {
    display: none;
  }
}

.hide-mobile {
  display: none;
}
@media screen and (min-width: 1020px) {
  .hide-mobile {
    display: block;
  }
}

#js-bg {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../assets/img/mobile-bg.jpg);
  background-size: cover;
}
@media screen and (min-width: 1020px) {
  #js-bg.about .global-shape-2 {
    animation: shapeTwoIntro 2s cubic-bezier(0, 1.02, 0.98, 1.01) forwards 0.5s;
  }
  #js-bg.about .global-shape-3 {
    animation: shapeThreeIntro 2s cubic-bezier(0, 1.02, 0.98, 1.01) forwards 0.5s;
  }
  #js-bg.different .global-shape-3 {
    animation: shapeThreeDifferent 1.1s cubic-bezier(0, 1.02, 0.98, 1.01) forwards 0.5s;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal iframe {
  width: 80%;
  height: 80%;
}

body.modal-open {
  overflow: hidden;
}
body.modal-open .modal {
  opacity: 1;
  visibility: visible;
}

@font-face {
  font-family: "Exo";
  src: url("../assets/fonts/Exo-VariableFont_wght.ttf");
}
@font-face {
  font-family: "Exo-900";
  src: url("../assets/fonts/Exo-Black.ttf");
}
@font-face {
  font-family: "Exo-800";
  src: url("../assets/fonts/Exo-ExtraBold.ttf");
}
@font-face {
  font-family: "Exo-700";
  src: url("../assets/fonts/Exo-Bold.ttf");
}
@font-face {
  font-family: "Exo-600";
  src: url("../assets/fonts/Exo-SemiBold.ttf");
}
@font-face {
  font-family: "Exo-500";
  src: url("../assets/fonts/Exo-Medium.ttf");
}
@font-face {
  font-family: "Exo-400";
  src: url("../assets/fonts/Exo-Regular.ttf");
}
@font-face {
  font-family: "Exo-300";
  src: url("../assets/fonts/Exo-Thin.ttf");
}
@font-face {
  font-family: "Exo-200";
  src: url("../assets/fonts/Exo-Light.ttf");
}
@font-face {
  font-family: "Exo-100";
  src: url("../assets/fonts/Exo-ExtraLight.ttf");
}
body {
  font-family: "Exo";
}

h2,
.h2 {
  font-size: clamp(1.5rem, 1.0794rem + 1.8692vw, 4rem);
  line-height: 130%;
  letter-spacing: 8px;
  font-weight: 400;
  margin: 0;
  /*@media screen and (min-width: $breakpoint-tab){
      font-size: 32px;
  }

  @media screen and (min-width: $breakpoint-xl){
      font-size: 40px;
  }

  @media screen and (min-width: $breakpoint-xxl){
      font-size: 65px;
  }*/
}

h3,
.h3 {
  font-size: 22px;
  line-height: 130%;
  font-weight: 400;
  margin: 0;
}
@media screen and (min-width: 1020px) {
  h3,
  .h3 {
    font-size: 26px;
  }
}
@media screen and (min-width: 1240px) {
  h3,
  .h3 {
    font-size: 30px;
  }
}
@media screen and (min-width: 1940px) {
  h3,
  .h3 {
    font-size: 40px;
  }
}

h4,
.h4 {
  font-size: 16px;
  line-height: 115%;
  letter-spacing: 1px;
  font-weight: 350;
  margin: 0;
}
@media screen and (min-width: 1020px) {
  h4,
  .h4 {
    font-size: 18px;
    line-height: 130%;
    font-weight: 400;
  }
}
@media screen and (min-width: 1300px) {
  h4,
  .h4 {
    font-size: 20px;
  }
}
h4.global-content,
.h4.global-content {
  font-size: clamp(0.95rem, 0.6554rem + 0.6005vw, 2rem);
}
@media screen and (min-width: 1300px) {
  h4.global-content,
  .h4.global-content {
    line-height: 135%;
  }
}

h5,
.h5 {
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 1px;
  font-weight: 200;
  margin: 0;
}

.t-800 {
  font-weight: 800;
}

@keyframes sectionIntro {
  0% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes sectionIntroTopLeft {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes sectionOutroTopLeft {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
@keyframes spacesIntroTop {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes spacesIntroBottom {
  0% {
    transform: translateY(50%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes spacesOutroTop {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes spacesOutroBottom {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(50%);
  }
}
@keyframes containerIntro {
  0% {
    transform: translateY(200px);
    opacity: 1;
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes containerGlobalIntro {
  0% {
    transform: translateY(200px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes containerOutro {
  0% {
    transform: translateY(0px);
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    transform: translateY(200px);
    opacity: 0;
  }
}
@keyframes cardIntro {
  0% {
    transform: translateY(700px);
    opacity: 1;
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes cardOutro {
  0% {
    transform: translateY(0px);
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    transform: translateY(700px);
    opacity: 0;
  }
}
@keyframes titleIntro {
  0% {
    transform: translateY(-100%);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes titleOutro {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  99% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}
@keyframes titleIntro2 {
  0% {
    transform: translateY(-500px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes titleIntro2Resp {
  0% {
    transform: translateY(-150px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes titleOutro2 {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-500px);
  }
}
@keyframes titleOutro2Resp {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-150px);
  }
}
@keyframes maskIntro {
  0% {
    -webkit-mask-position: 0px 150px;
  }
  100% {
    -webkit-mask-position: 0px 0px;
  }
}
@keyframes maskIntroTopLeft {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes maskIntroResp {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes maskIntro2 {
  0% {
    -webkit-mask-position: 0px -150px;
  }
  100% {
    -webkit-mask-position: 0px 0px;
  }
}
@keyframes maskIntro2Resp {
  0% {
    -webkit-mask-position: 0px -150px;
  }
  100% {
    -webkit-mask-position: 0px -80px;
  }
}
@keyframes maskOutro {
  0% {
    opacity: 1;
    -webkit-mask-position: 0px 0px;
  }
  99% {
    -webkit-mask-position: 0px 0px;
  }
  100% {
    opacity: 0;
    -webkit-mask-position: 0px 150px;
  }
}
@keyframes maskOutroTopLeft {
  0% {
    transform: scale(1);
    -webkit-mask-size: 101%;
  }
  99% {
    transform: scale(1);
    -webkit-mask-size: 101%;
  }
  100% {
    transform: scale(1.15);
    -webkit-mask-size: 88%;
  }
}
@keyframes maskOutroResp {
  0% {
    transform: scale(1);
    -webkit-mask-size: 106%;
  }
  100% {
    transform: scale(1.15);
    -webkit-mask-size: 92%;
  }
}
@keyframes maskOutro2 {
  0% {
    -webkit-mask-position: 0px 0px;
  }
  99% {
    -webkit-mask-position: 0px 0px;
  }
  100% {
    -webkit-mask-position: 0px 150px;
  }
}
@keyframes maskOutro2Resp {
  0% {
    -webkit-mask-position: 0px 80px;
  }
  99% {
    -webkit-mask-position: 0px 80px;
  }
  100% {
    -webkit-mask-position: 0px 150px;
  }
}
@keyframes maskOutro3 {
  0% {
    -webkit-mask-position: 0px 0px;
  }
  99% {
    -webkit-mask-position: 0px 0px;
  }
  100% {
    -webkit-mask-position: 0px -150px;
  }
}
@keyframes maskOutro3Resp {
  0% {
    -webkit-mask-position: 0px -80px;
  }
  99% {
    -webkit-mask-position: 0px -80px;
  }
  100% {
    -webkit-mask-position: 0px -150px;
  }
}
@keyframes circleIntro {
  0% {
    transform: translate(-250%, -200%);
  }
  100% {
    transform: translate(130%, 200%);
  }
}
@media screen and (min-width: 1020px) {
  @keyframes circleIntro {
    0% {
      transform: translate(-250%, -200%);
    }
    100% {
      transform: translate(0%, 0%);
    }
  }
}
@keyframes circleOutro {
  0% {
    transform: translate(130%, 200%);
    opacity: 1;
  }
  99% {
    transform: translate(130%, 200%);
  }
  100% {
    opacity: 0;
    transform: translate(-250%, -200%);
  }
}
@media screen and (min-width: 1020px) {
  @keyframes circleOutro {
    0% {
      opacity: 1;
      transform: translate(0%, 0%);
    }
    99% {
      transform: translate(0%, 0%);
    }
    100% {
      opacity: 0;
      transform: translate(-250%, -200%);
    }
  }
}
@keyframes shapeOneIntro {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes shapeOneOutro {
  0% {
    transform: translateY(0%);
  }
  99% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes shapeTwoIntro {
  0% {
    transform: translateY(20%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes shapeTwoOutro {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(20%);
  }
}
@keyframes shapeThreeAbout {
  0% {
    transform: translateY(30%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes shapeThreeDifferent {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(30%);
  }
}
@keyframes shapeFourAbDown {
  0% {
    transform: translateY(30%) rotate(360deg);
  }
  100% {
    transform: translateY(0%) rotate(360deg);
  }
}
@keyframes shapeFourAbUp {
  0% {
    transform: translateY(55%) rotate(277deg);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0%) rotate(360deg);
    opacity: 1;
  }
}
@keyframes shapeFourDifferent {
  0% {
    transform: translateY(0%) rotate(360deg);
    opacity: 1;
  }
  100% {
    transform: translateY(55%) rotate(277deg);
    opacity: 0.5;
  }
}
@keyframes shapeFiveIntro {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes shapeFiveOutro {
  0% {
    transform: translateY(0%);
  }
  99% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes shapeSixIntro {
  0% {
    transform: translateY(-155%);
    @media screen and (min-width: 1240px) {
      transform: translateY(-120%);
    }
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes shapeSixOutro {
  0% {
    transform: translateY(0%);
  }
  99% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-155%);
    @media screen and (min-width: 1240px) {
      transform: translateY(-120%);
    }
  }
}
@keyframes shapeSevenIntro {
  0% {
    transform: translateY(-40%);
  }
  100% {
    transform: translateY(-55%);
  }
}
@keyframes shapeSevenOutro {
  0% {
    transform: translateY(-55%);
  }
  99% {
    transform: translateY(-55%);
  }
  100% {
    transform: translateY(-40%);
  }
}
@keyframes shapeEightIntro {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes shapeEightOutro {
  0% {
    transform: translateY(0%);
  }
  99% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes shapeNinePresDown {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes shapeNinePresUp {
  0% {
    transform: translateY(-15%);
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes shapeNineProduct {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-15%);
    opacity: 0.5;
  }
}
@keyframes shapeTenIntro {
  0% {
    transform: translateY(230px);
    @media screen and (min-width: 1300px) {
      transform: translateY(150px);
    }
  }
  100% {
    transform: translateY(80px);
    @media screen and (min-width: 1240px) {
      transform: translateY(0px);
    }
  }
}
@keyframes shapeTenOutro {
  0% {
    transform: translateY(80px);
    @media screen and (min-width: 1240px) {
      transform: translateY(0px);
    }
  }
  100% {
    transform: translateY(230px);
    @media screen and (min-width: 1300px) {
      transform: translateY(150px);
    }
  }
}
@keyframes shapeToWhite {
  0% {
    filter: brightness(1) invert(0);
    opacity: 1;
  }
  100% {
    filter: brightness(0) invert(1);
    opacity: 1;
  }
}
@keyframes shapeFromWhite {
  0% {
    filter: brightness(0) invert(1);
    opacity: 1;
  }
  100% {
    filter: brightness(1) invert(0);
    opacity: 1;
  }
}
@keyframes shapeTwelveIntro {
  0% {
    transform: translate(-100%, -100%);
  }
  100% {
    transform: translate(0%, 0%);
  }
}
@keyframes shapeTwelveOutro {
  0% {
    transform: translate(0%, 0%);
  }
  100% {
    transform: translate(-100%, -100%);
  }
}
@keyframes shapeThirteenIntro {
  0% {
    transform: translate(-100%, -50%);
  }
  100% {
    transform: translate(0%, -50%);
  }
}
@keyframes shapeThirteenOutro {
  0% {
    transform: translate(0%, -50%);
  }
  100% {
    transform: translate(-100%, -50%);
  }
}
@keyframes shapeFourteenIntro {
  0% {
    transform: translate(100%, -50%);
  }
  100% {
    transform: translate(0%, -50%);
  }
}
@keyframes shapeFourteenOutro {
  0% {
    transform: translate(0%, -50%);
  }
  100% {
    transform: translate(100%, -50%);
  }
}
.intro-section {
  background-image: url(../assets/img/intro-bg-mobile.jpg);
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .intro-section {
    background-position: 100% 20%;
  }
}
@media screen and (min-width: 1020px) {
  .intro-section {
    background-image: url(../assets/img/holonet-img.jpg);
    background-position: center;
  }
}
@media screen and (min-width: 768px) {
  .intro-section:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 70%, rgb(255, 255, 255) 100%);
  }
}
@media screen and (min-width: 1020px) {
  .intro-section:after {
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 80%;
    border-radius: 2322.148px;
    background: #6F46E1;
    mix-blend-mode: multiply;
    filter: blur(143.100006px);
  }
}
@media screen and (min-width: 768px) {
  .intro-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 70%, rgb(255, 255, 255) 100%);
  }
}
@media screen and (min-width: 1020px) {
  .intro-section:before {
    display: none;
  }
}
@media screen and (min-width: 1020px) {
  .intro-section.exited {
    opacity: 0;
    transition: 1.5s ease-in;
  }
}
.intro-section__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  height: 100%;
}
@media screen and (min-width: 1020px) {
  .intro-section__container {
    padding: 32px 0;
    height: calc(100% - 64px);
  }
}
@media screen and (min-width: 1240px) {
  .intro-section__container {
    padding: 64px 0;
    height: calc(100% - 128px);
  }
}
@media screen and (min-width: 1500px) {
  .intro-section__container {
    padding: 116px 0;
    height: calc(100% - 232px);
  }
}
.intro-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.intro-section__logo {
  margin-top: 25px;
  width: 70%;
}
@media screen and (min-width: 1020px) {
  .intro-section__logo {
    width: 60%;
    margin-top: 10px;
  }
}
@media screen and (min-width: 1300px) {
  .intro-section__logo {
    width: 80%;
  }
}
@media screen and (min-width: 1500px) {
  .intro-section__logo {
    width: 100%;
  }
}
.intro-section__arrow-wrap {
  position: relative;
  display: flex;
  margin-bottom: 20px;
}
@media screen and (min-width: 1020px) {
  .intro-section__arrow-wrap {
    margin-bottom: 0px;
  }
}
.intro-section__arrow {
  width: 85px;
  height: 40px;
  cursor: pointer;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .intro-section__arrow {
    bottom: 0px;
    width: 130px;
    height: 80px;
  }
}
@media screen and (min-width: 1240px) {
  .intro-section__arrow {
    width: 150px;
    height: 100px;
  }
}
.intro-section #first_arrow {
  transition: 0.4s ease-in-out;
}
@media screen and (min-width: 1020px) {
  .intro-section #first_arrow {
    opacity: 0;
  }
}
.intro-section #first_arrow.visible {
  opacity: 1;
}
.intro-section #second_arrow {
  transform: translateY(45px);
  opacity: 0;
  transition: 0.4s ease-in-out;
}
.intro-section #second_arrow.visible {
  transform: translateY(0px);
  opacity: 1;
}
.intro-section #third_arrow {
  transform: translateY(75px);
  opacity: 0;
  transition: 0.4s ease-in-out;
}
.intro-section #third_arrow.visible {
  transform: translateY(0px);
  opacity: 1;
}
.intro-section .h3 {
  text-align: center;
  position: absolute;
  bottom: 10%;
  font-weight: 600;
  font-size: 22px;
  background: -webkit-linear-gradient(0deg, #0077FF, #FF41E1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.16rem;
}
@media screen and (min-width: 1020px) {
  .intro-section .h3 {
    position: relative;
    color: #FFF;
    font-weight: 200;
    font-size: 20px;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background: none;
    margin-top: 34px;
  }
}
@media screen and (min-width: 1300px) {
  .intro-section .h3 {
    font-size: 22px;
  }
}
@media screen and (min-width: 1300px) {
  .intro-section .h3 {
    font-size: 24px;
  }
}
@media screen and (min-width: 1500px) {
  .intro-section .h3 {
    font-size: 26px;
  }
}
.intro-section h4 {
  color: #FFF;
  text-transform: uppercase;
  padding: 10px 50px;
  background-image: url(../assets/img/title_bg.svg);
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  letter-spacing: 0.16rem;
  font-size: 14px;
}
@media screen and (min-width: 350px) {
  .intro-section h4 {
    padding: 10px 70px;
  }
}
@media screen and (min-width: 400px) {
  .intro-section h4 {
    padding: 10px 80px;
  }
}
@media screen and (min-width: 1020px) {
  .intro-section h4 {
    padding: 0;
    background-image: none;
    font-size: 18px;
  }
}
@media screen and (min-width: 1300px) {
  .intro-section h4 {
    font-size: 20px;
  }
}

.about-section {
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  background-image: url(../assets/img/background_mobile.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: top;
  z-index: 1;
}
@media screen and (min-width: 1020px) {
  .about-section {
    background-image: url(../assets/img/action_bg.png);
  }
}
.about-section__shape-1 {
  display: none;
}
@media screen and (min-width: 1020px) {
  .about-section__shape-1 {
    display: block;
    position: absolute;
    top: 0px;
    left: 0%;
    width: 20%;
    opacity: 0;
  }
}
@media screen and (min-width: 1240px) {
  .about-section__shape-1 {
    left: 5%;
  }
}
@media screen and (min-width: 1300px) {
  .about-section__shape-1 {
    left: 10%;
  }
}
.about-section__shape-mob-1 {
  position: absolute;
  top: 40%;
  left: 0;
}
@media screen and (min-width: 1020px) {
  .about-section__shape-mob-1 {
    display: none;
  }
}
.about-section__shape-mob-2 {
  position: absolute;
  top: 5%;
  right: 0;
}
@media screen and (min-width: 1020px) {
  .about-section__shape-mob-2 {
    display: none;
  }
}
.about-section__shape-mob-3 {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 1020px) {
  .about-section__shape-mob-3 {
    display: none;
  }
}
.about-section__container {
  padding: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
  height: calc(100% - 48px);
}
@media screen and (min-width: 1020px) {
  .about-section__container {
    padding: 32px 0;
    height: calc(100% - 64px);
  }
}
@media screen and (min-width: 1240px) {
  .about-section__container {
    padding: 64px 0;
    height: calc(100% - 128px);
  }
}
@media screen and (min-width: 1500px) {
  .about-section__container {
    padding: 116px 0;
    height: calc(100% - 232px);
  }
}
.about-section__title {
  background: -webkit-linear-gradient(0deg, #0077FF, #7B0B95);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 55px;
  letter-spacing: 4px;
}
@media screen and (max-width: 1020px) and (max-height: 800px) {
  .about-section__title {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1020px) {
  .about-section__title {
    letter-spacing: 6px;
    opacity: 0;
  }
}
@media screen and (min-width: 1500px) {
  .about-section__title {
    margin-bottom: 110px;
  }
}
.about-section__video-container {
  position: relative;
  width: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1020px) {
  .about-section__video-container {
    width: 50%;
  }
}
@media screen and (min-width: 1940px) {
  .about-section__video-container {
    width: 65%;
  }
}
.about-section__shape-2 {
  display: none;
}
@media screen and (min-width: 1020px) {
  .about-section__shape-2 {
    display: block;
    position: absolute;
    top: -25%;
    right: -15%;
    width: 40%;
    opacity: 0;
  }
}
.about-section__left-romb {
  padding-left: 80px;
  padding-top: 60px;
  position: relative;
  margin-top: 20px;
}
@media screen and (max-width: 1020px) and (max-height: 800px) {
  .about-section__left-romb {
    padding-left: 45px;
    padding-top: 40px;
  }
}
.about-section__left-romb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url(../assets/img/romb-mobile.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 10%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .about-section__left-romb::after {
    left: -15%;
  }
}
@media screen and (min-width: 1020px) {
  .about-section__left-romb::after {
    display: none;
  }
}
@media screen and (min-width: 1020px) {
  .about-section__left-romb {
    position: absolute;
    top: -8%;
    left: -33%;
    padding: 70px 50px 70px 40px;
    width: 30%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../assets/img/romb_left.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    margin-top: 0px;
    opacity: 0;
  }
}
@media screen and (min-width: 1240px) {
  .about-section__left-romb {
    left: -30%;
    padding: 80px 75px 80px 50px;
    width: 27%;
    height: 20%;
  }
}
@media screen and (min-width: 1500px) {
  .about-section__left-romb {
    padding: 100px 100px 100px 60px;
    top: -15%;
  }
}
@media screen and (min-width: 1940px) {
  .about-section__left-romb {
    top: -5%;
    left: -25%;
    width: 20%;
  }
}
.about-section__left-romb h4 {
  color: #5B1CDB;
  text-align: left;
  font-weight: 400;
  font-size: 16px;
  width: 50%;
}
@media screen and (min-width: 1020px) {
  .about-section__left-romb h4 {
    color: #FFF;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    width: unset;
  }
}
@media screen and (min-width: 1240px) {
  .about-section__left-romb h4 {
    font-size: 18px;
  }
}
@media screen and (min-width: 1500px) {
  .about-section__left-romb h4 {
    font-size: 20px;
  }
}
.about-section__right-romb {
  padding-left: 80px;
  padding-top: 30px;
  position: relative;
}
@media screen and (max-width: 1020px) and (max-height: 800px) {
  .about-section__right-romb {
    padding-left: 45px;
  }
}
.about-section__right-romb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  height: 115%;
  width: 100%;
  background-image: url(../assets/img/romb-mobile-2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right top;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .about-section__right-romb::after {
    left: -15%;
  }
}
@media screen and (min-width: 1020px) {
  .about-section__right-romb::after {
    display: none;
  }
}
@media screen and (min-width: 1020px) {
  .about-section__right-romb {
    position: absolute;
    bottom: -30%;
    right: -50%;
    padding: 60px;
    width: 40%;
    height: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../assets/img/romb_right.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0;
  }
}
@media screen and (min-width: 1240px) {
  .about-section__right-romb {
    right: -45%;
    padding: 70px 85px;
    width: 35%;
    height: 30%;
  }
}
@media screen and (min-width: 1500px) {
  .about-section__right-romb {
    bottom: -40%;
    right: -40%;
    width: 40%;
    height: 35%;
    padding: 70px 65px;
  }
}
@media screen and (min-width: 1940px) {
  .about-section__right-romb {
    bottom: -35%;
    right: -35%;
    width: 33%;
  }
}
.about-section__right-romb h4 {
  color: #5B1CDB;
  text-align: left;
  font-weight: 400;
  font-size: 16px;
  width: 75%;
}
@media screen and (min-width: 1020px) {
  .about-section__right-romb h4 {
    color: #FFF;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
  }
}
@media screen and (min-width: 1240px) {
  .about-section__right-romb h4 {
    font-size: 18px;
  }
}
@media screen and (min-width: 1500px) {
  .about-section__right-romb h4 {
    font-size: 20px;
  }
}
.about-section__thumb-wrap {
  position: relative;
  margin-top: 120px;
  padding: 0 20px;
}
@media screen and (max-width: 1020px) and (max-height: 800px) {
  .about-section__thumb-wrap {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1020px) and (min-height: 1000px) {
  .about-section__thumb-wrap {
    margin-top: 170px;
  }
}
@media screen and (min-width: 1020px) {
  .about-section__thumb-wrap {
    margin-top: 0px;
    padding: 0;
  }
}
.about-section__thumbnail-inner {
  height: 100%;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: inset 0 0 80px #0D0026;
}
@media screen and (min-width: 1020px) {
  .about-section__thumbnail-inner {
    border-radius: 20px;
  }
}
.about-section__thumbnail {
  height: 100%;
  width: 100%;
  z-index: -1;
  position: relative;
}
.about-section__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
}
@media screen and (min-width: 1020px) {
  .about-section__play {
    width: 130px;
  }
}
.about-section__play.btn-glow {
  transition: 0.3s ease;
  opacity: 0;
  width: 63px;
  top: calc(50% - 2px);
  cursor: pointer;
}
@media screen and (min-width: 1020px) {
  .about-section__play.btn-glow {
    width: 147px;
    top: calc(50% - 6px);
  }
}
.about-section__play.btn-glow:hover {
  opacity: 1;
}
.about-section h3 {
  color: #2C135F;
  font-family: "Exo-700";
  margin-top: 20px;
  font-size: 20px;
}
@media screen and (min-width: 1020px) {
  .about-section h3 {
    font-size: 26px;
  }
}
@media screen and (min-width: 1240px) {
  .about-section h3 {
    font-size: 30px;
  }
}
@media screen and (min-width: 1940px) {
  .about-section h3 {
    font-size: 40px;
  }
}

.different-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: clip;
  overflow-y: visible;
  background-image: url(../assets/img/background_mobile.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: top;
  z-index: 0;
}
@media screen and (min-width: 1020px) {
  .different-section {
    background-image: url(../assets/img/different-bg.jpg);
  }
}
.different-section__mask {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 55%;
  -webkit-mask-image: url(../assets/img/mobile-mask.png);
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
  object-position: bottom;
}
@media screen and (min-width: 1020px) {
  .different-section__mask {
    height: 100%;
    -webkit-mask-image: url(../assets/img/different-mask.png);
    -webkit-mask-position: 0px 150px;
    object-position: unset;
  }
}
.different-section__shape-1 {
  display: none;
}
@media screen and (min-width: 1020px) {
  .different-section__shape-1 {
    display: block;
    position: absolute;
    top: -35%;
    left: -23%;
    width: 50%;
    opacity: 0;
  }
  .different-section__shape-1.about .shape-6 {
    opacity: 0;
  }
  .different-section__shape-1.about .shape-4 {
    opacity: 1;
  }
  .different-section__shape-1.different .shape-6 {
    opacity: 0.5;
  }
  .different-section__shape-1.different .shape-4 {
    opacity: 0;
  }
  .different-section__shape-1 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    transition: 1.5s ease-out;
  }
  .different-section__shape-1 .shape-6 {
    opacity: 0;
  }
}
.different-section__shape-2 {
  display: none;
}
@media screen and (min-width: 1020px) {
  .different-section__shape-2 {
    display: block;
    position: absolute;
    top: -35%;
    right: -25%;
    width: 40%;
    z-index: -1;
    transform: translateY(30%) rotate(360deg);
    opacity: 0;
  }
  .different-section__shape-2.about-up {
    animation: shapeFourAbUp 1s ease-out forwards;
  }
  .different-section__shape-2.about-down {
    animation: shapeFourAbDown 1s ease-out forwards;
  }
  .different-section__shape-2.different {
    animation: shapeFourDifferent 1s ease-out forwards;
  }
}
.different-section__title-wrap {
  overflow: hidden;
}
.different-section__title {
  background-image: url(../assets/img/title_bg.svg);
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  color: #FFF;
  z-index: 2;
  padding: 14px 0 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 768px) {
  .different-section__title {
    left: 50%;
    width: 50%;
  }
}
@media screen and (min-width: 1020px) {
  .different-section__title {
    padding: 15px 90px;
    position: static;
    width: auto;
    height: auto;
  }
}
.different-section__title h3 {
  font-size: 17px;
}
@media screen and (min-width: 1020px) {
  .different-section__title h3 {
    font-size: 26px;
  }
}
@media screen and (min-width: 1240px) {
  .different-section__title h3 {
    font-size: 30px;
  }
}
@media screen and (min-width: 1940px) {
  .different-section__title h3 {
    font-size: 40px;
  }
}
.different-section__container {
  display: flex;
  max-width: 1280px;
  width: calc(100% - 80px);
  z-index: 1;
  height: 70%;
  flex-direction: column;
  padding: 30px 40px;
  margin-top: 30px;
}
@media screen and (min-width: 400px) {
  .different-section__container {
    padding: 40px;
    width: calc(100% - 80px);
  }
}
@media screen and (min-width: 1020px) {
  .different-section__container {
    flex-direction: row;
    margin-top: 0px;
    padding: 0;
    width: 100%;
    height: 75%;
  }
}
@media screen and (min-width: 1940px) {
  .different-section__container {
    max-width: 1440px;
  }
}
.different-section__text-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-top: 40px;
}
@media screen and (min-width: 400px) {
  .different-section__text-wrap {
    margin-top: 70px;
  }
}
@media screen and (min-width: 1020px) {
  .different-section__text-wrap {
    width: 45%;
    padding-left: 70px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1240px) {
  .different-section__text-wrap {
    padding-left: 140px;
  }
}
.different-section__text-wrap .different-section__shape {
  position: absolute;
  z-index: -1;
  top: -15%;
  left: -15%;
  width: 60%;
}
@media screen and (min-width: 768px) {
  .different-section__text-wrap .different-section__shape {
    top: -60%;
    left: -17%;
  }
}
@media screen and (min-width: 1020px) {
  .different-section__text-wrap .different-section__shape {
    top: 10%;
    left: 0%;
    width: 65%;
    opacity: 0;
  }
}
@media screen and (min-width: 1240px) {
  .different-section__text-wrap .different-section__shape {
    top: 15%;
    left: 5%;
  }
}
@media screen and (min-width: 1500px) {
  .different-section__text-wrap .different-section__shape {
    top: 20%;
    left: 0;
    width: 80%;
  }
}
@media screen and (min-width: 1940px) {
  .different-section__text-wrap .different-section__shape {
    left: -5%;
  }
}
.different-section__text-wrap h2 {
  background: -webkit-linear-gradient(120deg, #0077FF, #7B0B95);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  line-height: 120%;
}
@media screen and (min-width: 1020px) {
  .different-section__text-wrap h2 {
    opacity: 0;
  }
}
@media screen and (min-width: 1240px) {
  .different-section__text-wrap h2 {
    padding-right: 40%;
  }
}
@media screen and (min-width: 1500px) {
  .different-section__text-wrap h2 {
    padding-right: 25%;
  }
}
@media screen and (min-width: 1940px) {
  .different-section__text-wrap h2 {
    padding-right: 20%;
  }
}
.different-section__text-wrap h4 {
  color: #474955;
  letter-spacing: 0.1rem;
  padding-top: 20px;
}
@media screen and (min-width: 1020px) {
  .different-section__text-wrap h4 {
    padding-left: 30px;
    padding-top: 35px;
    letter-spacing: 2px;
    opacity: 0;
  }
}
@media screen and (min-width: 1240px) {
  .different-section__text-wrap h4 {
    padding-right: 30px;
  }
}
@media screen and (min-width: 1500px) {
  .different-section__text-wrap h4 {
    padding-right: 0;
  }
}
@media screen and (min-width: 1940px) {
  .different-section__text-wrap h4 {
    padding-left: 60px;
  }
}
.different-section__holograms {
  display: flex;
  align-items: center;
  width: 100%;
  height: 90%;
  justify-content: center;
  transform: translateY(-35px);
}
@media screen and (min-width: 1020px) {
  .different-section__holograms {
    width: 55%;
    height: 100%;
    transform: translateY(0);
  }
}
@media screen and (min-width: 1240px) {
  .different-section__holograms {
    transform: translateX(-50px);
  }
}
.different-section__left-girl {
  height: 100%;
  z-index: 1;
}
@media screen and (min-width: 1020px) {
  .different-section__left-girl {
    opacity: 0;
  }
}
.different-section__right-girl {
  height: 60%;
  transform: translateX(-65%);
}
@media screen and (min-width: 1020px) {
  .different-section__right-girl {
    transform: translateX(-35%);
    opacity: 0;
  }
}

.switch-section {
  overflow: hidden;
  background-image: url(../assets/img/background_mobile.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: top;
}
@media screen and (min-width: 1020px) {
  .switch-section {
    background-image: url(../assets/img/switch-bg.jpg);
  }
}
.switch-section__shape {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (min-width: 1020px) {
  .switch-section__shape {
    display: none;
  }
}
.switch-section__circle {
  position: absolute;
  right: 30%;
  bottom: 10%;
  width: 90px;
  height: 90px;
  border: 4px solid #37CFFF;
  border-radius: 150px;
  box-shadow: 0px 0px 42.4px 0px #37CFFF;
  z-index: 10;
}
@media screen and (min-width: 1020px) {
  .switch-section__circle {
    width: 100px;
    height: 100px;
    border: 10px solid #37CFFF;
    left: 33%;
    top: 55%;
    right: unset;
    bottom: unset;
  }
}
@media screen and (min-width: 1500px) {
  .switch-section__circle {
    width: 130px;
    height: 130px;
  }
}
.switch-section__circle:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 4px solid #37CFFF;
  width: 70%;
  height: 70%;
  border-radius: 150px;
}
@media screen and (min-width: 1020px) {
  .switch-section__circle:after {
    display: none;
  }
}
.switch-section__circle:hover ~ .mask-2 {
  opacity: 1;
}
.switch-section__mask {
  display: none;
}
@media screen and (min-width: 1020px) {
  .switch-section__mask {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 90%;
    -webkit-mask-image: url(../assets/img/switch-mask.png);
    -webkit-mask-position: top;
    -webkit-mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    transition: 0.5s ease-out;
    object-fit: cover;
  }
}
@media screen and (min-width: 1240px) and (max-height: 720px) {
  .switch-section__mask {
    height: 95%;
  }
}
@media screen and (min-width: 1300px) {
  .switch-section__mask {
    height: 100%;
  }
}
.switch-section__mask.mask-2 {
  transition: 0.5s ease-out;
  opacity: 0;
}
.switch-section__mask-mob {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 90%;
  -webkit-mask-image: url(../assets/img/switch-mask-mobile.png);
  -webkit-mask-position: right;
  -webkit-mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
}
@media screen and (max-width: 630px) and (max-height: 1050px) {
  .switch-section__mask-mob {
    height: 100%;
  }
}
@media screen and (max-width: 530px) and (max-height: 1050px) {
  .switch-section__mask-mob {
    -webkit-mask-position: bottom right;
    -webkit-mask-size: 100%;
  }
}
@media screen and (max-width: 490px) and (max-height: 1050px) {
  .switch-section__mask-mob {
    -webkit-mask-position: bottom right;
    -webkit-mask-size: 109%;
  }
}
@media screen and (max-width: 450px) and (max-height: 1050px) {
  .switch-section__mask-mob {
    -webkit-mask-position: bottom right;
    -webkit-mask-size: 119%;
  }
}
@media screen and (max-width: 415px) and (max-height: 1050px) {
  .switch-section__mask-mob {
    -webkit-mask-position: bottom right;
    -webkit-mask-size: 130%;
  }
}
@media screen and (max-width: 380px) and (max-height: 1050px) {
  .switch-section__mask-mob {
    -webkit-mask-position: bottom right;
    -webkit-mask-size: 142%;
  }
}
@media screen and (max-width: 350px) and (max-height: 1050px) {
  .switch-section__mask-mob {
    -webkit-mask-position: bottom right;
    -webkit-mask-size: 155%;
  }
}
@media screen and (min-width: 720px) and (max-height: 1050px) {
  .switch-section__mask-mob {
    height: 77%;
  }
}
@media screen and (max-width: 610px) and (max-height: 950px) {
  .switch-section__mask-mob {
    height: 97%;
  }
}
@media screen and (max-width: 495px) and (max-height: 950px) {
  .switch-section__mask-mob {
    -webkit-mask-position: bottom right;
    -webkit-mask-size: 100%;
  }
}
@media screen and (max-width: 460px) and (max-height: 950px) {
  .switch-section__mask-mob {
    -webkit-mask-position: bottom right;
    -webkit-mask-size: 108%;
  }
}
@media screen and (max-width: 425px) and (max-height: 950px) {
  .switch-section__mask-mob {
    -webkit-mask-position: bottom right;
    -webkit-mask-size: 116%;
  }
}
@media screen and (max-width: 390px) and (max-height: 950px) {
  .switch-section__mask-mob {
    -webkit-mask-position: bottom right;
    -webkit-mask-size: 130%;
  }
}
@media screen and (max-width: 350px) and (max-height: 950px) {
  .switch-section__mask-mob {
    -webkit-mask-position: bottom right;
    -webkit-mask-size: 143%;
  }
}
@media screen and (min-width: 670px) and (max-height: 950px) {
  .switch-section__mask-mob {
    height: 76%;
  }
}
@media screen and (min-width: 555px) and (max-width: 920px) and (max-height: 910px) {
  .switch-section__mask-mob {
    height: 90%;
  }
}
@media screen and (max-width: 555px) and (max-height: 910px) {
  .switch-section__mask-mob {
    height: 97%;
  }
}
@media screen and (max-width: 445px) and (max-height: 910px) {
  .switch-section__mask-mob {
    -webkit-mask-position: bottom right;
    -webkit-mask-size: 105%;
  }
}
@media screen and (max-width: 405px) and (max-height: 910px) {
  .switch-section__mask-mob {
    -webkit-mask-position: bottom right;
    -webkit-mask-size: 115%;
  }
}
@media screen and (max-width: 375px) and (max-height: 910px) {
  .switch-section__mask-mob {
    -webkit-mask-position: bottom right;
    -webkit-mask-size: 125%;
  }
}
@media screen and (max-width: 350px) and (max-height: 910px) {
  .switch-section__mask-mob {
    -webkit-mask-position: bottom right;
    -webkit-mask-size: 134%;
  }
}
@media screen and (min-width: 620px) and (max-width: 670px) and (max-height: 910px) {
  .switch-section__mask-mob {
    height: 90%;
  }
}
@media screen and (min-width: 420px) and (max-height: 860px) {
  .switch-section__mask-mob {
    -webkit-mask-position: bottom right;
    -webkit-mask-size: 105%;
  }
}
@media screen and (max-width: 420px) and (max-height: 860px) {
  .switch-section__mask-mob {
    -webkit-mask-position: bottom right;
    -webkit-mask-size: 105%;
  }
}
@media screen and (max-width: 389px) and (max-height: 860px) {
  .switch-section__mask-mob {
    -webkit-mask-position: bottom right;
    -webkit-mask-size: 115%;
  }
}
@media screen and (min-width: 540px) and (max-width: 670px) and (max-height: 860px) {
  .switch-section__mask-mob {
    height: 77%;
    -webkit-mask-position: right;
    -webkit-mask-size: 100%;
  }
}
@media screen and (min-width: 420px) and (max-width: 540px) and (max-height: 860px) {
  .switch-section__mask-mob {
    height: 95%;
    -webkit-mask-position: right;
    -webkit-mask-size: 100%;
  }
}
@media screen and (max-width: 350px) and (max-height: 860px) {
  .switch-section__mask-mob {
    -webkit-mask-position: bottom right;
    -webkit-mask-size: 120%;
  }
}
@media screen and (min-width: 670px) and (max-height: 860px) {
  .switch-section__mask-mob {
    height: 70%;
    -webkit-mask-position: right;
    -webkit-mask-size: 100%;
  }
}
@media screen and (max-width: 590px) and (max-height: 800px) {
  .switch-section__mask-mob {
    height: 80%;
    -webkit-mask-position: right;
    -webkit-mask-size: 100%;
  }
}
@media screen and (max-width: 465px) and (max-height: 800px) {
  .switch-section__mask-mob {
    height: 95%;
    -webkit-mask-position: right;
    -webkit-mask-size: 100%;
  }
}
@media screen and (max-width: 350px) and (max-height: 800px) {
  .switch-section__mask-mob {
    -webkit-mask-position: bottom right;
    -webkit-mask-size: 115%;
  }
}
@media screen and (min-width: 590px) and (max-height: 800px) {
  .switch-section__mask-mob {
    height: 70%;
    -webkit-mask-position: right;
    -webkit-mask-size: 100%;
  }
}
@media screen and (max-width: 350px) and (max-height: 720px) {
  .switch-section__mask-mob {
    height: 95%;
    -webkit-mask-position: right;
    -webkit-mask-size: 100%;
  }
}
@media screen and (min-width: 350px) and (max-width: 435px) and (max-height: 720px) {
  .switch-section__mask-mob {
    height: 90%;
    -webkit-mask-position: right;
    -webkit-mask-size: 100%;
  }
}
@media screen and (min-width: 435px) and (max-width: 500px) and (max-height: 720px) {
  .switch-section__mask-mob {
    height: 80%;
    -webkit-mask-position: right;
    -webkit-mask-size: 100%;
  }
}
@media screen and (min-width: 500px) and (max-height: 720px) {
  .switch-section__mask-mob {
    height: 69%;
    -webkit-mask-position: right;
    -webkit-mask-size: 100%;
  }
}
@media screen and (max-width: 350px) and (max-height: 680px) {
  .switch-section__mask-mob {
    height: 94%;
    -webkit-mask-position: right;
    -webkit-mask-size: 100%;
  }
}
@media screen and (min-width: 350px) and (max-width: 400px) and (max-height: 680px) {
  .switch-section__mask-mob {
    height: 90%;
    -webkit-mask-position: right;
    -webkit-mask-size: 100%;
  }
}
@media screen and (min-width: 400px) and (max-width: 450px) and (max-height: 680px) {
  .switch-section__mask-mob {
    height: 80%;
    -webkit-mask-position: right;
    -webkit-mask-size: 100%;
  }
}
@media screen and (min-width: 450px) and (max-height: 680px) {
  .switch-section__mask-mob {
    height: 68%;
    -webkit-mask-position: right;
    -webkit-mask-size: 100%;
  }
}
@media screen and (max-width: 350px) and (max-height: 620px) {
  .switch-section__mask-mob {
    height: 90%;
    -webkit-mask-position: right;
    -webkit-mask-size: 100%;
  }
}
@media screen and (max-width: 420px) and (max-height: 620px) {
  .switch-section__mask-mob {
    height: 80%;
    -webkit-mask-position: right;
    -webkit-mask-size: 100%;
  }
}
@media screen and (min-width: 420px) and (max-height: 620px) {
  .switch-section__mask-mob {
    height: 65%;
    -webkit-mask-position: right;
    -webkit-mask-size: 100%;
  }
}
@media screen and (max-width: 350px) and (max-height: 550px) {
  .switch-section__mask-mob {
    height: 75%;
    -webkit-mask-position: right;
    -webkit-mask-size: 100%;
  }
}
@media screen and (min-width: 350px) and (max-height: 550px) {
  .switch-section__mask-mob {
    height: 60%;
    -webkit-mask-position: right;
    -webkit-mask-size: 100%;
  }
}
@media screen and (min-width: 768px) {
  .switch-section__mask-mob {
    height: 70%;
  }
}
@media screen and (min-width: 820px) {
  .switch-section__mask-mob {
    height: 80%;
  }
}
@media screen and (min-width: 1020px) {
  .switch-section__mask-mob {
    display: none;
  }
}
.switch-section__mask-mob img {
  position: absolute;
  transition: 0.5s ease-out;
  object-fit: cover;
  object-position: 50%;
  width: 100%;
  height: 100%;
}
.switch-section__mask-mob:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(180deg, #2C135F 0%, rgba(78, 106, 221, 0) 100%);
}
.switch-section__mask-mob .mobile-mask-2 {
  transition: 0.8s ease-out;
  opacity: 0;
}
.switch-section__mask-mob .mobile-mask-2.opacity-1 {
  opacity: 1 !important;
}
.switch-section .simple-section__title {
  padding: 14px 0 0;
}
@media screen and (min-width: 1020px) {
  .switch-section .simple-section__title {
    padding: 42px 0;
    opacity: 0;
  }
}
@media screen and (min-width: 1700px) {
  .switch-section .simple-section__title {
    padding: 62px 0;
  }
}
@media screen and (min-width: 1940px) and (min-height: 900px) {
  .switch-section .simple-section__title {
    padding: 82px 0;
  }
}
.switch-section .simple-section__text-wrap {
  margin-top: 10%;
}
@media screen and (min-width: 1020px) {
  .switch-section .simple-section__text-wrap {
    margin-top: 0;
  }
}
@media screen and (min-width: 1020px) {
  .switch-section .simple-section__text-wrap.text-right h4 {
    padding-left: 30px;
    padding-right: 5px;
  }
}
@media screen and (min-width: 1240px) {
  .switch-section .simple-section__text-wrap.text-right h4 {
    padding-left: 20px;
    padding-right: 0px;
  }
}
@media screen and (min-width: 1300px) {
  .switch-section .simple-section__text-wrap.text-right h4 {
    padding-left: 120px;
  }
}
@media screen and (min-width: 1500px) {
  .switch-section .simple-section__text-wrap.text-right h4 {
    padding-right: 0;
    padding-left: 150px;
  }
}
.switch-section .simple-section__text-wrap-inner {
  width: 100%;
}
@media screen and (min-width: 1020px) {
  .switch-section .simple-section__text-wrap-inner {
    width: 45%;
  }
}
@media screen and (min-width: 1240px) {
  .switch-section .simple-section__text-wrap-inner {
    width: 40%;
  }
}
@media screen and (min-width: 768px) {
  .switch-section .simple-section__text-wrap-inner h2 {
    margin-top: 55px;
  }
}
@media screen and (min-width: 1020px) {
  .switch-section .simple-section__text-wrap-inner h2 {
    margin-top: 0px;
    opacity: 0;
  }
}
.switch-section .simple-section__text-wrap-inner h4 {
  padding-top: 60px;
  color: #FFF;
}
@media screen and (max-width: 1020px) and (max-height: 750px) {
  .switch-section .simple-section__text-wrap-inner h4 {
    padding-top: 40px;
  }
}
@media screen and (min-width: 768px) {
  .switch-section .simple-section__text-wrap-inner h4 {
    padding-top: 80px;
  }
}
@media screen and (min-width: 1020px) {
  .switch-section .simple-section__text-wrap-inner h4 {
    padding-top: 25px;
    color: #000;
    opacity: 0;
  }
}
@media screen and (min-width: 1500px) {
  .switch-section .simple-section__text-wrap-inner h4 {
    padding-right: 35px;
  }
}

.simple-section {
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}
.simple-section__container {
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 1440px;
  z-index: 1;
}
@media screen and (max-width: 1020px) {
  .simple-section__container {
    height: 100%;
  }
}
@media screen and (min-width: 1020px) {
  .simple-section__container {
    padding: 0;
  }
}
@media screen and (min-width: 1500px) {
  .simple-section__container {
    max-width: 1660px;
  }
}
@media screen and (min-width: 1940px) {
  .simple-section__container {
    max-width: 80%;
  }
}
.simple-section__container.text-bottom {
  justify-content: space-between;
  height: 100%;
  padding-bottom: 5%;
}
@media screen and (max-width: 1020px) {
  .simple-section__container.text-bottom {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 1240px) {
  .simple-section__container.text-bottom {
    padding-bottom: 7%;
  }
}
.simple-section__container.text-bottom .simple-section__title {
  color: #F9FAFE;
  background: none;
  -webkit-background-clip: none;
  -webkit-text-fill-color: #F9FAFE;
  padding: 12px 0 0;
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 1020px) {
  .simple-section__container.text-bottom .simple-section__title {
    padding: 42px 0;
    letter-spacing: 4px;
  }
}
@media screen and (min-width: 1500px) {
  .simple-section__container.text-bottom .simple-section__title {
    padding: 82px 0;
  }
}
.simple-section__container.text-bottom .text-right .simple-section__text-wrap-inner {
  width: 45%;
}
.simple-section__container.text-bottom .text-right .simple-section__text-wrap-inner h2 {
  padding-left: 20px;
}
@media screen and (min-width: 1300px) {
  .simple-section__container.text-bottom .text-right .simple-section__text-wrap-inner h2 {
    padding-left: 0;
  }
}
@media screen and (min-width: 1020px) {
  .simple-section__container.text-bottom .text-right .simple-section__text-wrap-inner h4 {
    padding-left: 40px;
    padding-right: 10px;
  }
}
@media screen and (min-width: 1240px) {
  .simple-section__container.text-bottom .text-right .simple-section__text-wrap-inner h4 {
    padding-left: 60px;
    padding-right: 30px;
  }
}
@media screen and (min-width: 1500px) {
  .simple-section__container.text-bottom .text-right .simple-section__text-wrap-inner h4 {
    line-height: 135%;
    padding-right: 0;
  }
}
@media screen and (min-width: 1940px) {
  .simple-section__container.text-bottom .text-right .simple-section__text-wrap-inner h4 {
    padding-left: 60px;
  }
}
.simple-section__container.text-bottom .simple-sections__oneliner {
  background: -webkit-linear-gradient(0deg, #0077FF, #7B0B95);
}
.simple-section__title {
  padding: 10px 80px;
  background-image: url(../assets/img/title_bg.svg);
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  color: #FFF;
  font-size: 18px;
  letter-spacing: 0.1rem;
  line-height: 135%;
}
@media screen and (max-width: 1020px) {
  .simple-section__title {
    font-size: 17px;
    padding: 14px 0 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    letter-spacing: 0.1rem;
  }
}
@media screen and (min-width: 768px) {
  .simple-section__title {
    left: 50%;
    width: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 1020px) {
  .simple-section__title {
    background: -webkit-linear-gradient(0deg, #0077FF, #7B0B95);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 42px 0;
    font-size: 34px;
    letter-spacing: 4px;
    width: auto;
    height: auto;
    transform: none;
  }
}
@media screen and (min-width: 1240px) {
  .simple-section__title {
    font-size: 40px;
  }
}
@media screen and (min-width: 1700px) {
  .simple-section__title {
    padding: 62px 0;
  }
}
@media screen and (min-width: 1940px) and (min-height: 900px) {
  .simple-section__title {
    font-size: 65px;
    padding: 82px 0;
  }
}
.simple-section__text-wrap {
  width: calc(100% - 80px);
  display: flex;
  padding: 40px;
}
@media screen and (max-width: 1020px) and (max-height: 700px) {
  .simple-section__text-wrap {
    width: calc(100% - 60px);
    padding: 30px;
  }
}
@media screen and (max-width: 1020px) {
  .simple-section__text-wrap {
    height: 100%;
  }
}
@media screen and (min-width: 1020px) {
  .simple-section__text-wrap {
    width: calc(100% - 50px);
    padding-top: 0px;
    padding-left: 50px;
  }
}
@media screen and (min-width: 1300px) {
  .simple-section__text-wrap {
    padding-top: 20px;
  }
}
@media screen and (min-width: 1500px) {
  .simple-section__text-wrap {
    width: calc(100% - 30px);
    padding-left: 30px;
  }
}
.simple-section__text-wrap.text-right {
  justify-content: flex-end;
}
@media screen and (min-width: 1020px) {
  .simple-section__text-wrap.text-right {
    padding-left: 0px;
    padding-right: 10px;
    width: calc(100% - 10px);
  }
}
@media screen and (min-width: 1020px) {
  .simple-section__text-wrap.text-right h4 {
    padding-left: 120px;
    padding-right: 10px;
  }
}
@media screen and (min-width: 1240px) {
  .simple-section__text-wrap.text-right h4 {
    padding-left: 100px;
    padding-right: 30px;
  }
}
@media screen and (min-width: 1300px) {
  .simple-section__text-wrap.text-right h4 {
    padding-left: 120px;
  }
}
@media screen and (min-width: 1500px) {
  .simple-section__text-wrap.text-right h4 {
    padding-right: 0;
    padding-left: 150px;
  }
}
@media screen and (min-width: 1500px) {
  .simple-section__text-wrap .global-content {
    width: 80%;
  }
}
.simple-section__text-wrap-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 1020px) {
  .simple-section__text-wrap-inner {
    width: 40%;
  }
}
.simple-section__text-wrap-inner h2 {
  color: #230085;
  letter-spacing: 1px;
  line-height: 110%;
  font-size: clamp(1.8rem, 0.8962rem + 1.9865vw, 4rem);
}
@media screen and (min-width: 1020px) {
  .simple-section__text-wrap-inner h2 {
    padding-right: 20px;
    width: auto;
    line-height: 125%;
  }
}
@media screen and (min-width: 1500px) {
  .simple-section__text-wrap-inner h2 {
    padding-right: 0;
  }
}
.simple-section__text-wrap-inner span {
  color: #0077FF;
}
.simple-section__text-wrap-inner h4 {
  color: #000000;
  line-height: 115%;
  padding-right: 0px;
  padding-top: 20px;
  font-weight: 300;
}
@media screen and (min-width: 1020px) {
  .simple-section__text-wrap-inner h4 {
    padding-left: 60px;
    letter-spacing: 2px;
  }
}
@media screen and (min-width: 1240px) {
  .simple-section__text-wrap-inner h4 {
    padding-right: 30px;
  }
}
@media screen and (min-width: 1500px) {
  .simple-section__text-wrap-inner h4 {
    line-height: 135%;
    padding-right: 0;
    padding-top: 35px;
  }
}
@media screen and (min-width: 1940px) {
  .simple-section__text-wrap-inner h4 {
    padding-left: 60px;
  }
}
.simple-section__oneliner {
  background: -webkit-linear-gradient(180deg, #0077FF, #7B0B95);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: max-content;
}

.work-section {
  overflow-x: clip;
  overflow-y: visible;
  background-image: url(../assets/img/background_mobile.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: top;
}
@media screen and (min-width: 1020px) {
  .work-section {
    background-image: url(../assets/img/work-bg.jpg);
  }
}
.work-section__mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 85%;
  -webkit-mask-image: url(../assets/img/work-mask-mob.png);
  -webkit-mask-position: bottom;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
}
@media screen and (min-height: 700px) and (min-width: 425px) {
  .work-section__mask {
    height: 88%;
  }
}
@media screen and (min-height: 700px) and (min-width: 490px) {
  .work-section__mask {
    height: 92%;
  }
}
@media screen and (min-height: 800px) {
  .work-section__mask {
    height: 87%;
  }
}
@media screen and (min-height: 800px) and (min-width: 415px) {
  .work-section__mask {
    height: 91%;
  }
}
@media screen and (min-height: 800px) and (min-width: 505px) {
  .work-section__mask {
    height: 95%;
  }
}
@media screen and (min-height: 800px) and (min-width: 620px) {
  .work-section__mask {
    height: 95%;
  }
}
@media screen and (min-height: 900px) {
  .work-section__mask {
    height: 90%;
  }
}
@media screen and (min-height: 900px) and (min-width: 500px) {
  .work-section__mask {
    height: 94%;
  }
}
@media screen and (min-height: 1100px) {
  .work-section__mask {
    height: 96%;
  }
}
@media screen and (min-width: 1020px) {
  .work-section__mask {
    height: 90%;
    -webkit-mask-image: url(../assets/img/work-mask.png);
    -webkit-mask-position: top;
    -webkit-mask-size: cover;
    top: unset;
    bottom: 0;
  }
}
@media screen and (min-width: 1240px) {
  .work-section__mask {
    height: 100%;
  }
}
@media screen and (min-width: 1240px) and (max-height: 720px) {
  .work-section__mask {
    height: 95%;
  }
}
.work-section__shape-wrap {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.work-section__shape-1 {
  display: none;
}
@media screen and (min-width: 1020px) {
  .work-section__shape-1 {
    position: absolute;
    top: 0;
    left: 5%;
    width: 30%;
    display: block;
  }
}
.work-section__shape-1-mob {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 1020px) {
  .work-section__shape-1-mob {
    display: none;
  }
}
.work-section__shape-2 {
  display: none;
}
@media screen and (min-width: 1020px) {
  .work-section__shape-2 {
    position: absolute;
    top: 20%;
    right: 8%;
    width: 40%;
    display: block;
  }
}
@media screen and (min-width: 1240px) {
  .work-section__shape-2 {
    top: 5%;
    right: 3%;
  }
}
.work-section__shape-2-mob {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 1020px) {
  .work-section__shape-2-mob {
    display: none;
  }
}
.work-section__shape-3 {
  display: none;
}
@media screen and (min-width: 1020px) {
  .work-section__shape-3 {
    position: absolute;
    top: 20%;
    right: 0;
    width: 20%;
    z-index: 1;
    display: block;
    opacity: 0;
  }
}
.work-section__shape-4 {
  display: none;
}
@media screen and (min-width: 1020px) {
  .work-section__shape-4 {
    position: absolute;
    bottom: -15%;
    right: -7%;
    width: 20%;
    z-index: 1;
    display: block;
    opacity: 0;
  }
}
.work-section__shape-5 {
  display: none;
}
@media screen and (min-width: 1020px) {
  .work-section__shape-5 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20%;
    z-index: 1;
    display: block;
    opacity: 0;
  }
}
.work-section .simple-section__container {
  height: 100%;
  justify-content: flex-end;
}
@media screen and (min-width: 1020px) {
  .work-section .simple-section__container {
    height: auto;
    justify-content: unset;
  }
}
.work-section .simple-section__text-wrap-inner {
  align-items: flex-end;
}
@media screen and (max-width: 1020px) {
  .work-section .simple-section__text-wrap-inner {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 768px) {
  .work-section .simple-section__text-wrap-inner {
    margin-bottom: 125px;
  }
}
@media screen and (min-width: 1020px) {
  .work-section .simple-section__text-wrap-inner {
    align-items: flex-start;
    margin-bottom: 0;
  }
}
.work-section .simple-section__text-wrap-inner h2 {
  text-align: right;
  margin-bottom: 0px;
  color: #37CFFF;
  position: relative;
}
@media screen and (max-width: 375px) and (max-height: 900px) {
  .work-section .simple-section__text-wrap-inner h2 {
    position: absolute;
    bottom: 30%;
  }
}
@media screen and (max-height: 550px) {
  .work-section .simple-section__text-wrap-inner h2 {
    bottom: 35%;
  }
}
@media screen and (min-width: 370px) {
  .work-section .simple-section__text-wrap-inner h2 {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 380px) {
  .work-section .simple-section__text-wrap-inner h2 {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1020px) {
  .work-section .simple-section__text-wrap-inner h2 {
    text-align: left;
    margin-bottom: 0;
    color: #230085;
    opacity: 0;
  }
}
.work-section .simple-section__text-wrap-inner h2:after {
  content: "";
  position: absolute;
  top: -20px;
  left: -50px;
  width: 100%;
  height: 200%;
  background-image: url(../assets/img/okvir-5-mob.svg);
  z-index: -1;
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1020px) {
  .work-section .simple-section__text-wrap-inner h2:after {
    display: none;
  }
}
.work-section .simple-section__text-wrap-inner h2 span {
  color: #FFF;
}
@media screen and (min-width: 1020px) {
  .work-section .simple-section__text-wrap-inner h2 span {
    color: #0077FF;
  }
}
.work-section .simple-section__text-wrap-inner h4 {
  text-align: right;
  margin-bottom: 40px;
  padding-left: 20px;
}
@media screen and (max-height: 650px) {
  .work-section .simple-section__text-wrap-inner h4 {
    margin-bottom: 0px;
  }
}
@media screen and (min-width: 768px) {
  .work-section .simple-section__text-wrap-inner h4 {
    width: 85%;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 618px) and (max-width: 767px) and (min-height: 840px) {
  .work-section .simple-section__text-wrap-inner h4 {
    margin-bottom: 50px;
    padding-left: 50px;
  }
}
@media screen and (min-width: 1020px) {
  .work-section .simple-section__text-wrap-inner h4 {
    width: auto;
    text-align: left;
    margin-bottom: 0;
    padding-left: 20px;
    opacity: 0;
  }
}
@media screen and (min-width: 1500px) {
  .work-section .simple-section__text-wrap-inner h4 {
    width: 85%;
  }
}
.work-section .simple-section__title {
  background-image: url(../assets/img/title_bg_mobile.svg);
  color: #521CEA;
}
@media screen and (max-width: 1020px) {
  .work-section .simple-section__title {
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    line-height: 135%;
    padding: 12px 0 0px;
    letter-spacing: 0.1rem;
  }
}
@media screen and (min-width: 1020px) {
  .work-section .simple-section__title {
    background: -webkit-linear-gradient(0deg, #0077FF, #7B0B95);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 42px 0;
    letter-spacing: 4px;
    opacity: 0;
  }
}
@media screen and (min-width: 1700px) {
  .work-section .simple-section__title {
    padding: 62px 0;
  }
}
@media screen and (min-width: 1940px) and (min-height: 900px) {
  .work-section .simple-section__title {
    padding: 82px 0;
  }
}

.presentation-section {
  overflow-x: clip;
  overflow-y: visible;
  background-image: url(../assets/img/background_mobile.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: top;
}
@media screen and (min-width: 1020px) {
  .presentation-section {
    background-image: url(../assets/img/presentation-bg.jpg);
  }
}
.presentation-section__mask {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80%;
  -webkit-mask-image: url(../assets/img/presentation-mask-mob.png);
  -webkit-mask-position: bottom;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
  object-position: 75%;
}
@media screen and (max-width: 768px) {
  .presentation-section__mask {
    height: 65%;
  }
}
@media screen and (max-width: 1020px) and (max-height: 800px) {
  .presentation-section__mask {
    height: 60%;
  }
}
@media screen and (min-width: 768px) {
  .presentation-section__mask {
    -webkit-mask-position: right;
  }
}
@media screen and (min-width: 1020px) {
  .presentation-section__mask {
    height: 90%;
    -webkit-mask-image: url(../assets/img/presentation-mask.png);
    -webkit-mask-position: bottom right;
    -webkit-mask-size: cover;
    object-position: center;
    top: 0;
  }
}
@media screen and (min-width: 1240px) {
  .presentation-section__mask {
    height: 100%;
    bottom: 0;
  }
}
@media screen and (min-width: 1240px) and (max-height: 720px) {
  .presentation-section__mask {
    height: 95%;
  }
}
.presentation-section__shape-1 {
  display: none;
}
@media screen and (min-width: 1020px) {
  .presentation-section__shape-1 {
    position: absolute;
    bottom: -45%;
    left: -33%;
    width: 45%;
    z-index: 1;
    display: block;
    opacity: 0;
  }
}
@media screen and (min-width: 1240px) {
  .presentation-section__shape-1 {
    bottom: -42%;
  }
}
.presentation-section__shape-1.product {
  animation: shapeNineProduct 1.4s cubic-bezier(0, 1.02, 0.98, 1.01) forwards;
}
.presentation-section__shape-1.presentation-up {
  animation: shapeNinePresUp 1.4s cubic-bezier(0, 1.02, 0.98, 1.01) forwards;
}
.presentation-section__shape-1.presentation-down {
  animation: shapeNinePresDown 1.4s cubic-bezier(0, 1.02, 0.98, 1.01) forwards;
}
.presentation-section__shape-1-mob {
  position: absolute;
  top: 10%;
  right: 0;
}
@media screen and (min-width: 1020px) {
  .presentation-section__shape-1-mob {
    display: none;
  }
}
.presentation-section .simple-section__container.text-bottom {
  justify-content: flex-start;
}
@media screen and (min-width: 1020px) {
  .presentation-section .simple-section__container.text-bottom {
    justify-content: space-between;
  }
}
@media screen and (max-width: 1020px) {
  .presentation-section .simple-section__container.text-bottom .simple-section__title {
    background-image: url(../assets/img/title_bg.svg);
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    color: #FFF;
    line-height: 135%;
    padding: 14px 0 0px;
    letter-spacing: 0.1rem;
  }
}
@media screen and (min-width: 1020px) {
  .presentation-section .simple-section__container.text-bottom .simple-section__title {
    opacity: 0;
  }
}
@media screen and (min-width: 1240px) {
  .presentation-section .simple-section__text-wrap {
    padding-bottom: 0px;
  }
}
@media screen and (min-width: 1500px) {
  .presentation-section .simple-section__text-wrap {
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 1500px) {
  .presentation-section .simple-section__text-wrap .global-content {
    width: 80%;
  }
}
.presentation-section .simple-section__text-wrap-inner {
  width: 100%;
  margin-top: 10%;
}
@media screen and (min-width: 1020px) {
  .presentation-section .simple-section__text-wrap-inner {
    width: 50%;
    margin-top: 0px;
  }
}
@media screen and (min-width: 1240px) {
  .presentation-section .simple-section__text-wrap-inner {
    width: 40%;
  }
}
.presentation-section .simple-section__text-wrap-inner h2 {
  position: relative;
}
@media screen and (min-width: 1020px) {
  .presentation-section .simple-section__text-wrap-inner h2 {
    opacity: 0;
  }
}
.presentation-section .simple-section__text-wrap-inner h2:after {
  content: "";
  position: absolute;
  top: -15px;
  left: -50px;
  height: 200%;
  width: 100%;
  background-image: url(../assets/img/okvir-9-mob.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 1020px) {
  .presentation-section .simple-section__text-wrap-inner h2:after {
    display: none;
  }
}
.presentation-section .simple-section__text-wrap-inner h2.show-mobile {
  width: max-content;
}
@media screen and (min-width: 1020px) {
  .presentation-section .simple-section__text-wrap-inner h4 {
    opacity: 0;
  }
}

.product-section {
  overflow-x: clip;
  overflow-y: visible;
  background-image: url(../assets/img/background_mobile.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: top;
}
@media screen and (min-width: 1020px) {
  .product-section {
    background-image: url(../assets/img/product-bg.jpg);
  }
}
.product-section__mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(../assets/img/product-mask-mob.png);
  -webkit-mask-position: top;
  -webkit-mask-size: 115%;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
  object-position: 35%;
}
@media screen and (max-width: 375px) and (max-height: 850px) {
  .product-section__mask {
    -webkit-mask-size: 105%;
  }
}
@media screen and (max-width: 375px) and (max-height: 750px) {
  .product-section__mask {
    -webkit-mask-size: 100%;
  }
}
@media screen and (max-width: 375px) and (max-height: 700px) {
  .product-section__mask {
    height: 75%;
  }
}
@media screen and (max-width: 375px) and (max-height: 670px) {
  .product-section__mask {
    height: 70%;
  }
}
@media screen and (max-width: 375px) and (min-height: 801px) {
  .product-section__mask {
    -webkit-mask-size: 115%;
  }
}
@media screen and (max-width: 375px) and (min-height: 840px) {
  .product-section__mask {
    -webkit-mask-size: 125%;
  }
}
@media screen and (min-width: 425px) and (max-height: 950px) {
  .product-section__mask {
    -webkit-mask-size: 110%;
  }
}
@media screen and (min-width: 445px) and (max-height: 950px) {
  .product-section__mask {
    -webkit-mask-size: 100%;
  }
}
@media screen and (min-width: 490px) and (max-height: 950px) {
  .product-section__mask {
    height: 77%;
  }
}
@media screen and (min-width: 376px) and (max-height: 800px) {
  .product-section__mask {
    height: 70%;
  }
}
@media screen and (min-width: 510px) and (max-height: 800px) {
  .product-section__mask {
    height: 75%;
  }
}
@media screen and (max-width: 320px) {
  .product-section__mask {
    height: 100%;
    -webkit-mask-position: top;
    -webkit-mask-size: 105%;
  }
}
@media screen and (min-width: 390px) and (max-width: 399px) and (min-height: 1000px) {
  .product-section__mask {
    -webkit-mask-size: 160%;
  }
}
@media screen and (min-width: 400px) and (min-height: 900px) {
  .product-section__mask {
    -webkit-mask-size: 120%;
  }
}
@media screen and (min-width: 400px) and (min-height: 1000px) {
  .product-section__mask {
    -webkit-mask-size: 140%;
  }
}
@media screen and (min-width: 768px) {
  .product-section__mask {
    height: 120%;
    -webkit-mask-position: bottom;
    -webkit-mask-size: 100%;
  }
}
@media screen and (min-width: 1020px) {
  .product-section__mask {
    height: 90%;
    -webkit-mask-image: url(../assets/img/work-mask.png);
    -webkit-mask-position: top;
    -webkit-mask-size: cover;
    object-position: unset;
    top: unset;
    bottom: 0;
  }
}
@media screen and (min-width: 1240px) {
  .product-section__mask {
    height: 100%;
    transform-origin: top right;
  }
}
@media screen and (min-width: 1240px) and (max-height: 720px) {
  .product-section__mask {
    height: 95%;
  }
}
.product-section__shape-1 {
  display: none;
}
@media screen and (min-width: 1020px) {
  .product-section__shape-1 {
    position: absolute;
    top: 5%;
    right: -10%;
    width: 40%;
    z-index: -1;
    display: block;
  }
}
.product-section__shape-1-mob {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30%;
}
@media screen and (min-width: 1020px) {
  .product-section__shape-1-mob {
    display: none;
  }
}
.product-section__shape-2 {
  display: none;
}
@media screen and (min-width: 1020px) {
  .product-section__shape-2 {
    position: absolute;
    bottom: -35%;
    right: -20%;
    width: 40%;
    z-index: 1;
    display: block;
    opacity: 0;
  }
}
@media screen and (min-width: 1500px) {
  .product-section__shape-2 {
    bottom: -32%;
    right: -18%;
  }
}
.product-section__shape-2-mob {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20%;
}
@media screen and (min-width: 1020px) {
  .product-section__shape-2-mob {
    display: none;
  }
}
.product-section__shape-2.museums {
  animation: shapeToWhite 0.5s ease-out forwards;
}
.product-section__shape-2.product-up {
  animation: shapeFromWhite 1s ease-out forwards;
}
.product-section__shape-3 {
  display: none;
}
@media screen and (min-width: 1020px) {
  .product-section__shape-3 {
    position: absolute;
    bottom: -42%;
    left: -33%;
    width: 50%;
    z-index: 1;
    display: block;
    opacity: 0;
  }
}
@media screen and (min-width: 1300px) {
  .product-section__shape-3 {
    bottom: -50%;
  }
}
.product-section__shape-3.museums {
  animation: shapeToWhite 0.5s ease-out forwards;
}
.product-section__shape-3.product-up {
  animation: shapeFromWhite 1.5s ease-out forwards;
}
.product-section__shape-3.product-down {
  animation: shapeElevenIntro 1.5s ease-out forwards;
}
.product-section .simple-section__container {
  height: 100%;
  justify-content: flex-end;
}
@media screen and (min-width: 1020px) {
  .product-section .simple-section__container {
    height: auto;
    justify-content: unset;
  }
}
.product-section .simple-section__text-wrap {
  justify-content: flex-end;
}
@media screen and (min-width: 1020px) {
  .product-section .simple-section__text-wrap {
    justify-content: unset;
  }
}
.product-section .simple-section__text-wrap-inner {
  align-items: flex-end;
}
@media screen and (max-width: 1020px) {
  .product-section .simple-section__text-wrap-inner {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 768px) {
  .product-section .simple-section__text-wrap-inner {
    margin-bottom: 200px;
  }
}
@media screen and (min-width: 1020px) {
  .product-section .simple-section__text-wrap-inner {
    align-items: flex-start;
    margin-bottom: 0;
    width: 40%;
  }
}
.product-section .simple-section__text-wrap-inner h2 {
  text-align: right;
  margin-bottom: 40px;
  color: #37CFFF;
  position: relative;
  width: max-content;
}
@media screen and (min-width: 1020px) {
  .product-section .simple-section__text-wrap-inner h2 {
    text-align: left;
    margin-bottom: 0;
    color: #230085;
    width: 100%;
    opacity: 0;
  }
}
.product-section .simple-section__text-wrap-inner h2:after {
  content: "";
  position: absolute;
  top: -20px;
  left: 70px;
  width: 100%;
  height: 170%;
  background-image: url(../assets/img/okvir-12-mob.svg);
  z-index: -1;
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1020px) {
  .product-section .simple-section__text-wrap-inner h2:after {
    display: none;
  }
}
.product-section .simple-section__text-wrap-inner h2 span {
  color: #FFF;
}
@media screen and (min-width: 1020px) {
  .product-section .simple-section__text-wrap-inner h2 span {
    color: #0077FF;
  }
}
.product-section .simple-section__text-wrap-inner h4 {
  text-align: right;
  margin-bottom: 10%;
  padding-left: 20px;
  width: 75%;
}
@media screen and (max-width: 375px) and (max-height: 700px) {
  .product-section .simple-section__text-wrap-inner h4 {
    width: 90%;
  }
}
@media screen and (min-width: 375px) and (max-width: 470px) {
  .product-section .simple-section__text-wrap-inner h4 {
    width: 70%;
  }
}
@media screen and (max-width: 1020px) and (max-height: 750px) {
  .product-section .simple-section__text-wrap-inner h4 {
    margin-bottom: 5%;
  }
}
@media screen and (min-width: 768px) {
  .product-section .simple-section__text-wrap-inner h4 {
    width: 65%;
    margin-bottom: 0px;
  }
}
@media screen and (min-width: 1020px) {
  .product-section .simple-section__text-wrap-inner h4 {
    width: auto;
    text-align: left;
    opacity: 0;
  }
}
@media screen and (min-width: 1500px) {
  .product-section .simple-section__text-wrap-inner h4 {
    width: 85%;
  }
}
.product-section .simple-section__title {
  background-image: url(../assets/img/title_bg_mobile.svg);
  color: #521CEA;
}
@media screen and (max-width: 1020px) {
  .product-section .simple-section__title {
    background-image: url(../assets/img/title_bg_mobile.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    -webkit-text-fill-color: #521CEA;
    font-weight: 500;
    line-height: 135%;
    padding: 12px 0 0;
  }
}
@media screen and (min-width: 768px) {
  .product-section .simple-section__title {
    left: 50%;
    width: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 1020px) {
  .product-section .simple-section__title {
    background: -webkit-linear-gradient(0deg, #0077FF, #7B0B95);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 42px 0;
    letter-spacing: 4px;
    width: auto;
    height: auto;
    transform: none;
    opacity: 0;
  }
}
@media screen and (min-width: 1240px) {
  .product-section .simple-section__title {
    font-size: 40px;
  }
}
@media screen and (min-width: 1700px) {
  .product-section .simple-section__title {
    padding: 62px 0;
  }
}
@media screen and (min-width: 1940px) and (min-height: 900px) {
  .product-section .simple-section__title {
    font-size: 65px;
    padding: 82px 0;
  }
}

.museums-section {
  background-image: url(../assets/img/background_mobile.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: top;
}
@media screen and (min-width: 1020px) {
  .museums-section {
    background-image: url(../assets/img/museums-bg.jpg);
  }
}
.museums-section:after {
  display: none;
}
@media screen and (min-width: 1020px) {
  .museums-section:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(180deg, #8A5436 0%, rgba(138, 84, 54, 0) 100%);
    opacity: 0.7;
    display: block;
  }
}
.museums-section__mask {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  height: 80%;
  -webkit-mask-image: url(../assets/img/presentation-mask-mob.png);
  -webkit-mask-position: bottom;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
  object-position: bottom;
}
@media screen and (max-width: 768px) {
  .museums-section__mask {
    height: 65%;
  }
}
@media screen and (max-width: 1020px) and (max-height: 800px) {
  .museums-section__mask {
    height: 60%;
  }
}
@media screen and (min-width: 768px) {
  .museums-section__mask {
    -webkit-mask-position: right;
    object-position: center;
  }
}
@media screen and (min-width: 1020px) {
  .museums-section__mask {
    height: 90%;
    -webkit-mask-image: url(../assets/img/museums-mask.png);
    -webkit-mask-position: bottom;
    -webkit-mask-size: cover;
    top: 0;
  }
}
@media screen and (min-width: 1240px) {
  .museums-section__mask {
    bottom: 0;
    height: 100%;
  }
}
@media screen and (min-width: 1240px) and (max-height: 720px) {
  .museums-section__mask {
    height: 95%;
  }
}
.museums-section__shape-1-mob {
  position: absolute;
  top: 10%;
  right: 0;
}
@media screen and (min-width: 1020px) {
  .museums-section__shape-1-mob {
    display: none;
  }
}
.museums-section .simple-section__container.text-bottom {
  justify-content: flex-start;
}
@media screen and (min-width: 1020px) {
  .museums-section .simple-section__container.text-bottom {
    justify-content: space-between;
  }
}
.museums-section .simple-section__container.text-bottom .text-right .simple-section__text-wrap-inner {
  width: 100%;
  margin-top: 10%;
}
@media screen and (min-width: 1020px) {
  .museums-section .simple-section__container.text-bottom .text-right .simple-section__text-wrap-inner {
    width: 50%;
    margin-top: 0px;
  }
}
@media screen and (min-width: 1240px) {
  .museums-section .simple-section__container.text-bottom .text-right .simple-section__text-wrap-inner {
    width: 40%;
  }
}
.museums-section .simple-section__container.text-bottom .text-right .simple-section__text-wrap-inner h2 {
  position: relative;
  padding-left: 0;
}
@media screen and (min-width: 1020px) {
  .museums-section .simple-section__container.text-bottom .text-right .simple-section__text-wrap-inner h2 {
    padding-left: 20px;
    opacity: 0;
  }
}
.museums-section .simple-section__container.text-bottom .text-right .simple-section__text-wrap-inner h2:after {
  content: "";
  position: absolute;
  top: -15px;
  left: -50px;
  height: 100px;
  width: 100%;
  background-image: url(../assets/img/okvir-9-mob.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 1020px) {
  .museums-section .simple-section__container.text-bottom .text-right .simple-section__text-wrap-inner h2:after {
    display: none;
  }
}
@media screen and (min-width: 1500px) {
  .museums-section .simple-section__container.text-bottom .text-right .simple-section__text-wrap-inner .global-content {
    width: 80%;
    opacity: 0;
  }
}
@media screen and (max-width: 1020px) {
  .museums-section .simple-section__container.text-bottom .simple-section__title {
    padding: 10px 40px;
    background-image: url(../assets/img/title_bg.svg);
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    color: #FFF;
    line-height: 135%;
    padding: 14px 0 0px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    letter-spacing: 0.1rem;
  }
}
@media screen and (min-width: 768px) {
  .museums-section .simple-section__container.text-bottom .simple-section__title {
    left: 50%;
    width: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 1020px) {
  .museums-section .simple-section__container.text-bottom .simple-section__title {
    width: auto;
    height: auto;
    transform: none;
    opacity: 0;
  }
}

.exhibitions-section {
  background-image: url(../assets/img/background_mobile.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: top;
}
@media screen and (min-width: 1020px) {
  .exhibitions-section {
    background-image: url(../assets/img/exhib-bg.jpg);
  }
}
.exhibitions-section__mask {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 85%;
  -webkit-mask-image: url(../assets/img/exhib-mask-mob.png);
  -webkit-mask-position: top;
  -webkit-mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
  object-position: 38%;
}
@media screen and (max-width: 370px) {
  .exhibitions-section__mask {
    height: 80%;
  }
}
@media screen and (max-height: 700px) {
  .exhibitions-section__mask {
    height: 82%;
  }
}
@media screen and (min-width: 1020px) {
  .exhibitions-section__mask {
    height: 90%;
    -webkit-mask-image: url(../assets/img/work-mask.png);
    -webkit-mask-size: cover;
    object-position: unset;
  }
}
@media screen and (min-width: 1240px) {
  .exhibitions-section__mask {
    height: 100%;
  }
}
@media screen and (min-width: 1240px) and (max-height: 720px) {
  .exhibitions-section__mask {
    height: 95%;
  }
}
.exhibitions-section__shape-1 {
  display: none;
}
@media screen and (min-width: 1020px) {
  .exhibitions-section__shape-1 {
    position: absolute;
    top: 0;
    left: 5%;
    width: 30%;
    display: block;
  }
}
.exhibitions-section__shape-2 {
  display: none;
}
@media screen and (min-width: 1020px) {
  .exhibitions-section__shape-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20%;
    z-index: 1;
    display: block;
    opacity: 0;
  }
}
.exhibitions-section__shape-3 {
  display: none;
}
@media screen and (min-width: 1020px) {
  .exhibitions-section__shape-3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20%;
    z-index: 1;
    display: block;
    opacity: 0;
  }
}
@media screen and (max-width: 1020px) {
  .exhibitions-section .simple-section__title {
    background-image: url(../assets/img/title_bg.svg);
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    color: #FFF;
    line-height: 135%;
    padding: 14px 0 0px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    letter-spacing: 0.1rem;
  }
}
@media screen and (min-width: 768px) {
  .exhibitions-section .simple-section__title {
    left: 50%;
    width: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 1020px) {
  .exhibitions-section .simple-section__title {
    width: auto;
    height: auto;
    transform: none;
    opacity: 0;
  }
}
@media screen and (min-width: 1240px) {
  .exhibitions-section .simple-section__title {
    font-size: 40px;
  }
}
@media screen and (min-width: 1700px) {
  .exhibitions-section .simple-section__title {
    padding: 62px 0;
  }
}
@media screen and (min-width: 1940px) and (min-height: 900px) {
  .exhibitions-section .simple-section__title {
    font-size: 65px;
    padding: 82px 0;
  }
}
.exhibitions-section .simple-section__text-wrap {
  padding: 30px;
  width: calc(100% - 60px);
  margin-top: 10%;
}
@media screen and (max-width: 1020px) and (max-height: 700px) {
  .exhibitions-section .simple-section__text-wrap {
    width: calc(100% - 40px);
    padding: 20px;
  }
}
@media screen and (min-width: 1020px) {
  .exhibitions-section .simple-section__text-wrap {
    width: 100%;
    padding-top: 0px;
    padding-left: 50px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1020px) {
  .exhibitions-section .simple-section__text-wrap h2 {
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
  .exhibitions-section .simple-section__text-wrap h4 {
    padding-right: 15px;
  }
}
@media screen and (min-width: 1020px) {
  .exhibitions-section .simple-section__text-wrap h4 {
    opacity: 0;
  }
}
@media screen and (min-width: 1500px) {
  .exhibitions-section .simple-section__text-wrap h4 {
    width: 85%;
  }
}

.games-section {
  background-image: url(../assets/img/background_mobile.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: top;
}
@media screen and (min-width: 1020px) {
  .games-section {
    background-image: url(../assets/img/games-bg.jpg);
  }
}
@media screen and (min-width: 1020px) {
  .games-section:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(180deg, #2C135F 0%, rgba(138, 84, 54, 0) 100%);
  }
}
.games-section__mask {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(../assets/img/games-mask-mob.png);
  -webkit-mask-position: left;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
  object-position: 25%;
}
@media screen and (max-width: 1020px) and (max-height: 900px) {
  .games-section__mask {
    height: 92%;
    top: 0;
    bottom: unset;
    -webkit-mask-position: bottom;
  }
}
@media screen and (min-width: 380px) and (max-width: 420px) and (max-height: 700px) {
  .games-section__mask {
    height: 98%;
  }
}
@media screen and (max-width: 375px) and (max-height: 600px) {
  .games-section__mask {
    height: 90%;
  }
}
@media screen and (min-width: 381px) and (max-height: 900px) {
  .games-section__mask {
    height: 101%;
  }
}
@media screen and (min-width: 553px) and (max-height: 900px) {
  .games-section__mask {
    height: 107%;
  }
}
@media screen and (min-width: 381px) and (max-height: 850px) {
  .games-section__mask {
    height: 101%;
  }
}
@media screen and (min-width: 515px) and (max-height: 850px) {
  .games-section__mask {
    height: 105%;
  }
}
@media screen and (min-width: 381px) and (max-height: 800px) {
  .games-section__mask {
    height: 100%;
  }
}
@media screen and (min-width: 490px) and (max-height: 800px) {
  .games-section__mask {
    height: 105%;
  }
}
@media screen and (min-width: 553px) and (max-height: 800px) {
  .games-section__mask {
    height: 110%;
  }
}
@media screen and (min-width: 421px) and (max-height: 700px) {
  .games-section__mask {
    height: 100%;
  }
}
@media screen and (min-width: 470px) and (max-height: 700px) {
  .games-section__mask {
    height: 104%;
  }
}
@media screen and (min-width: 533px) and (max-height: 700px) {
  .games-section__mask {
    height: 112%;
  }
}
@media screen and (min-width: 768px) {
  .games-section__mask {
    -webkit-mask-position: 0% 60%;
  }
}
@media screen and (min-width: 1020px) {
  .games-section__mask {
    height: 90%;
    -webkit-mask-image: url(../assets/img/museums-mask.png);
    -webkit-mask-position: bottom;
    -webkit-mask-size: cover;
    object-position: unset;
    top: 0;
  }
}
@media screen and (min-width: 1240px) {
  .games-section__mask {
    bottom: 0;
    height: 100%;
  }
}
@media screen and (min-width: 1240px) and (max-height: 720px) {
  .games-section__mask {
    height: 95%;
  }
}
.games-section__shape-1 {
  display: none;
}
@media screen and (min-width: 1020px) {
  .games-section__shape-1 {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 20%;
    z-index: 1;
    display: block;
    opacity: 0;
  }
}
.games-section__shape-1-mob {
  position: absolute;
  bottom: 0;
  right: 10%;
  width: 75%;
}
@media screen and (min-width: 1020px) {
  .games-section__shape-1-mob {
    display: none;
  }
}
@media screen and (max-width: 1020px) {
  .games-section .simple-section__container.text-bottom .simple-section__title {
    background-image: url(../assets/img/title_bg_mobile.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    -webkit-text-fill-color: #521CEA;
    font-weight: 500;
    line-height: 135%;
  }
}
@media screen and (min-width: 1020px) {
  .games-section .simple-section__container.text-bottom .simple-section__title {
    opacity: 0;
  }
}
.games-section .simple-section__container.text-bottom .simple-section__text-wrap-inner {
  align-items: flex-end;
  width: 100%;
}
@media screen and (max-width: 1020px) {
  .games-section .simple-section__container.text-bottom .simple-section__text-wrap-inner {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 1020px) {
  .games-section .simple-section__container.text-bottom .simple-section__text-wrap-inner {
    align-items: flex-start;
    width: 40%;
  }
}
@media screen and (max-width: 1020px) {
  .games-section .simple-section__container.text-bottom .simple-section__text-wrap-inner h2 {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    text-align: right;
    margin-bottom: 40px;
    color: #37CFFF;
    position: relative;
    padding-left: 0;
  }
}
@media screen and (max-width: 380px) {
  .games-section .simple-section__container.text-bottom .simple-section__text-wrap-inner h2 {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1020px) {
  .games-section .simple-section__container.text-bottom .simple-section__text-wrap-inner h2 {
    opacity: 0;
  }
}
.games-section .simple-section__container.text-bottom .simple-section__text-wrap-inner h2:after {
  content: "";
  position: absolute;
  top: -25px;
  right: -15px;
  width: 100%;
  height: 200%;
  background-image: url(../assets/img/okvir-12-mob.svg);
  z-index: -1;
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .games-section .simple-section__container.text-bottom .simple-section__text-wrap-inner h2:after {
    right: -90px;
    height: 300%;
  }
}
@media screen and (min-width: 1020px) {
  .games-section .simple-section__container.text-bottom .simple-section__text-wrap-inner h2:after {
    display: none;
  }
}
.games-section .simple-section__container.text-bottom .simple-section__text-wrap-inner h2 span {
  color: #FFF;
}
@media screen and (min-width: 1020px) {
  .games-section .simple-section__container.text-bottom .simple-section__text-wrap-inner h2 span {
    color: #0077FF;
  }
}
.games-section .simple-section__container.text-bottom .simple-section__text-wrap-inner h4 {
  text-align: right;
  width: 80%;
  margin-bottom: 5%;
}
@media screen and (max-width: 380px) {
  .games-section .simple-section__container.text-bottom .simple-section__text-wrap-inner h4 {
    margin-bottom: 10%;
  }
}
@media screen and (max-width: 360px) {
  .games-section .simple-section__container.text-bottom .simple-section__text-wrap-inner h4 {
    margin-bottom: 5%;
  }
}
@media screen and (max-height: 800px) {
  .games-section .simple-section__container.text-bottom .simple-section__text-wrap-inner h4 {
    width: 85%;
    padding-top: 0px;
  }
}
@media screen and (min-width: 381px) and (max-height: 900px) {
  .games-section .simple-section__container.text-bottom .simple-section__text-wrap-inner h4 {
    width: 80%;
  }
}
@media screen and (min-width: 441px) and (max-height: 900px) {
  .games-section .simple-section__container.text-bottom .simple-section__text-wrap-inner h4 {
    width: 70%;
  }
}
@media screen and (min-width: 400px) and (max-height: 800px) {
  .games-section .simple-section__container.text-bottom .simple-section__text-wrap-inner h4 {
    width: 75%;
  }
}
@media screen and (min-width: 460px) and (max-height: 800px) {
  .games-section .simple-section__container.text-bottom .simple-section__text-wrap-inner h4 {
    width: 70%;
  }
}
@media screen and (min-width: 768px) {
  .games-section .simple-section__container.text-bottom .simple-section__text-wrap-inner h4 {
    width: 60%;
  }
}
@media screen and (min-width: 800px) {
  .games-section .simple-section__container.text-bottom .simple-section__text-wrap-inner h4 {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 1020px) {
  .games-section .simple-section__container.text-bottom .simple-section__text-wrap-inner h4 {
    text-align: left;
    margin-bottom: 0px;
    width: auto;
    opacity: 0;
  }
}
@media screen and (min-width: 1500px) {
  .games-section .simple-section__container.text-bottom .simple-section__text-wrap-inner h4 {
    width: 80%;
  }
}

.access-section {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  background-image: url(../assets/img/background_mobile.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: top;
  overflow: hidden;
}
@media screen and (min-width: 400px) {
  .access-section {
    gap: 30px;
  }
}
@media screen and (min-width: 1020px) {
  .access-section {
    justify-content: center;
    gap: 50px;
    background-image: url(../assets/img/access-it-bg.jpg);
  }
}
.access-section__shape-1 {
  display: none;
}
@media screen and (min-width: 1020px) {
  .access-section__shape-1 {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 23%;
    z-index: 1;
    display: block;
    opacity: 0;
  }
}
.access-section__shape-1-mob {
  position: absolute;
  top: 20%;
  left: 0;
}
@media screen and (min-width: 1020px) {
  .access-section__shape-1-mob {
    display: none;
  }
}
.access-section__shape-2 {
  display: none;
}
@media screen and (min-width: 1020px) {
  .access-section__shape-2 {
    position: absolute;
    bottom: 0%;
    right: 0%;
    width: 22%;
    display: block;
    opacity: 0;
  }
}
.access-section__shape-2-mob {
  position: absolute;
  top: 40%;
  right: 0;
}
@media screen and (min-width: 1020px) {
  .access-section__shape-2-mob {
    display: none;
  }
}
.access-section__shape-3-mob {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 1020px) {
  .access-section__shape-3-mob {
    display: none;
  }
}
.access-section__inner {
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}
@media screen and (min-width: 400px) {
  .access-section__inner {
    gap: 30px;
  }
}
@media screen and (min-width: 1020px) {
  .access-section__inner {
    justify-content: center;
    gap: 50px;
  }
}
.access-section__title {
  background: -webkit-linear-gradient(180deg, #0077FF, #7B0B95);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 4px;
}
@media screen and (max-width: 1020px) {
  .access-section__title {
    background: none;
    background-image: url(../assets/img/title_bg.svg);
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    color: #FFF;
    font-size: 17px;
    letter-spacing: 0.1rem;
    line-height: 135%;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 14px 0 0;
  }
}
@media screen and (min-width: 768px) {
  .access-section__title {
    left: 50%;
    width: 50%;
  }
}
@media screen and (min-width: 1020px) {
  .access-section__title {
    width: auto;
    height: auto;
    opacity: 0;
  }
}
.access-section__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1020px) and (max-height: 750px) {
  .access-section__container {
    gap: 10px;
  }
}
@media screen and (min-width: 400px) {
  .access-section__container {
    gap: 30px;
  }
}
@media screen and (min-width: 1020px) {
  .access-section__container {
    flex-direction: row;
    gap: 60px;
  }
}
.access-section__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
@media screen and (min-width: 1020px) {
  .access-section__card {
    gap: 20px;
    opacity: 0;
  }
}
.access-section__icon {
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 1020px) and (max-height: 750px) {
  .access-section__icon {
    width: 50px;
    height: 50px;
  }
}
@media screen and (min-width: 1020px) {
  .access-section__icon {
    width: 70px;
    height: 70px;
  }
}
.access-section__shadow {
  height: 14px;
}
@media screen and (max-width: 1020px) and (max-height: 750px) {
  .access-section__shadow {
    height: 10px;
  }
}
.access-section__device {
  color: #230085;
  letter-spacing: 1px;
  font-weight: 500;
  line-height: 110%;
  text-align: center;
  font-size: 15px;
}
@media screen and (min-width: 1020px) {
  .access-section__device {
    font-size: 18px;
  }
}
.access-section__device.coming-soon {
  color: #0077FF;
}
.access-section__notice {
  font-weight: 800;
  color: #0077FF;
  line-height: 110%;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
}
@media screen and (min-width: 1020px) {
  .access-section__notice {
    font-size: 14px;
    transform: translateY(-12px);
  }
}

.create-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background-image: url(../assets/img/background_mobile.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: top;
}
@media screen and (min-width: 1020px) {
  .create-section {
    background-image: url(../assets/img/footer-bg.jpg);
  }
}
.create-section__shape-1 {
  display: none;
}
@media screen and (min-width: 1020px) {
  .create-section__shape-1 {
    position: absolute;
    top: 15%;
    left: 0%;
    width: 15%;
    display: block;
    opacity: 0;
  }
}
.create-section__shape-2 {
  display: none;
}
@media screen and (min-width: 1020px) {
  .create-section__shape-2 {
    position: absolute;
    top: 15%;
    right: 0%;
    width: 15%;
    display: block;
    opacity: 0;
  }
}
.create-section__inner {
  display: none;
}
@media screen and (min-width: 1020px) {
  .create-section__inner {
    height: 45%;
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
  }
}
.create-section__inner-title {
  z-index: 1;
  color: #FDFDFF;
  letter-spacing: 2px;
  font-weight: 500;
}
.create-section__inner.top-div {
  align-items: flex-end;
  padding-bottom: 40px;
}
@media screen and (min-width: 1020px) {
  .create-section__inner.top-div {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.create-section__inner.top-div .create-section__mask {
  top: 0;
}
.create-section__inner.bottom-div {
  padding-top: 40px;
}
@media screen and (min-width: 1020px) {
  .create-section__inner.bottom-div {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.create-section__inner.bottom-div .create-section__mask {
  bottom: 0;
}
.create-section__mask {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
}
.create-section__mask-mob {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  object-fit: cover;
}
@media screen and (min-width: 1020px) {
  .create-section__mask-mob {
    display: none;
  }
}
.create-section__mask-mob.mask-2 {
  top: unset;
  bottom: 0;
}
.create-section__title {
  height: 10%;
  display: flex;
  width: max-content;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #8265D0;
}
@media screen and (min-width: 1020px) {
  .create-section__title {
    position: relative;
    top: unset;
    left: unset;
    transform: translate(0, 0);
    background: -webkit-linear-gradient(0deg, #0077FF, #7B0B95);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 4px;
  }
}

.footer-section {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url(../assets/img/background_mobile.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: top;
}
@media screen and (min-width: 1020px) {
  .footer-section {
    background-image: url(../assets/img/footer-bg.jpg);
  }
}
.footer-section__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  height: 100%;
  gap: 80px;
  z-index: 1;
}
@media screen and (min-width: 1020px) {
  .footer-section__container {
    gap: 30px;
    justify-content: center;
  }
}
@media screen and (min-width: 1240px) {
  .footer-section__container {
    gap: 70px;
  }
}
@media screen and (min-width: 1500px) {
  .footer-section__container {
    gap: 110px;
  }
}
.footer-section__logo-user {
  width: 50px;
  height: auto;
  margin-top: 90px;
}
@media screen and (min-width: 1020px) {
  .footer-section__logo-user {
    margin-top: 0px;
    opacity: 0;
  }
}
@media screen and (min-width: 1240px) {
  .footer-section__logo-user {
    width: 60px;
  }
}
@media screen and (min-width: 1500px) {
  .footer-section__logo-user {
    width: 80px;
  }
}
.footer-section__logo-user.hide {
  display: none;
}
.footer-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 85%;
  gap: 15px;
}
@media screen and (min-width: 1020px) {
  .footer-section__inner {
    opacity: 0;
  }
}
@media screen and (min-width: 1240px) {
  .footer-section__inner {
    gap: 25px;
  }
}
.footer-section__inner.js-form-response {
  width: 600px;
  display: none;
}
@media screen and (min-width: 1940px) {
  .footer-section__inner.js-form-response {
    width: 700px;
  }
}
.footer-section__inner.js-form-response.show {
  display: flex;
  opacity: 1;
}
.footer-section__title {
  text-align: center;
  color: #5B1CDB;
  letter-spacing: 1px;
  line-height: 120%;
  font-weight: 700;
  width: 75%;
}
.footer-section__title.hide {
  display: none;
}
.footer-section__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
}
@media screen and (min-width: 1020px) {
  .footer-section__form {
    width: 90%;
  }
}
@media screen and (min-width: 1240px) {
  .footer-section__form {
    gap: 25px;
  }
}
.footer-section__form.hide {
  display: none;
}
.footer-section__form input[type=email] {
  padding: 6px 10px;
  border-radius: 50px;
  background: linear-gradient(91deg, #5B1CDB 6.95%, #FF41E1 143.27%);
  box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.6) inset;
  color: #FFF;
  font-size: 22px;
  font-weight: 700;
  font-family: "Exo";
  line-height: 100%;
  text-align: center;
  width: 265px;
}
@media screen and (min-width: 768px) {
  .footer-section__form input[type=email] {
    width: 100%;
  }
}
@media screen and (min-width: 1240px) {
  .footer-section__form input[type=email] {
    padding: 10px;
    font-size: 26px;
  }
}
.footer-section__form input[type=email]::placeholder {
  color: rgba(255, 255, 255, 0.6);
  opacity: 1; /* Firefox */
}
.footer-section__form input[type=email]::-ms-input-placeholder { /* Edge 12 -18 */
  color: rgba(255, 255, 255, 0.6);
}
.footer-section__form button {
  position: relative;
  padding: 16px 54px;
  color: #6C7BB2;
  font-size: 15px;
  font-weight: 600;
  font-family: "Exo";
  line-height: 100%;
  text-align: center;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
}
@media screen and (min-width: 1020px) {
  .footer-section__form button {
    font-size: 18px;
    font-weight: 400;
  }
}
@media screen and (min-width: 1240px) {
  .footer-section__form button {
    padding: 12px 50px;
  }
}
.footer-section__form button:hover {
  color: #2ED0FB;
}
.footer-section__form button:hover .color {
  fill: #2ED0FB;
}
.footer-section__form button:active {
  color: #000;
}
.footer-section__form button svg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.footer-section__form button svg .color {
  transition: 0.2s ease;
}
.footer-section__form-error {
  margin: 0;
  font-size: 12px;
  color: #D22020;
  display: none;
}
.footer-section__form-error.show {
  display: block;
}
.footer-section__form .default-state {
  opacity: 1;
  visibility: visible;
  transition: 0.2s;
}
.footer-section__form .default-state.clicked {
  opacity: 0;
  visibility: hidden;
}
.footer-section__form .clicked-btn {
  width: 198px;
  height: 66px;
  top: -12px;
  left: -8px;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  z-index: -1;
}
.footer-section__form .clicked-btn.clicked {
  opacity: 1;
  visibility: visible;
}
.footer-section__checkmark {
  width: 50px;
  height: 50px;
}
.footer-section__logo-name {
  height: 50px;
  margin-bottom: 60px;
}
@media screen and (min-width: 1020px) {
  .footer-section__logo-name {
    opacity: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1240px) {
  .footer-section__logo-name {
    height: 60px;
  }
}

/*# sourceMappingURL=styles.css.map */
