@charset "utf-8";

html {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none; 
  -ms-user-select: none; 
  overflow-x: hidden;
  overflow-y: hidden;
  overscroll-behavior: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: 'touch';
  -webkit-tap-highlight-color: transparent;
}

::-webkit-scrollbar {
  display: none;
}

/* CSS Document */
@font-face {
  font-family: 'Montserrat Thin';
  src: local('Montserrat Thin'), local('Montserrat Thin'),
    url(../fonts/Montserrat-Thin.ttf) format('opentype'),
    url('../fonts/Montserrat-Thin.woff') format('woff');
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat Regular';
  src: local('Montserrat Regular'), local('Montserrat Regular'),
    url(../fonts/Montserrat-Regular.ttf) format('opentype'),
    url('../fonts/Montserrat-Regular.woff') format('woff');
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat Medium';
  src: local('Montserrat Medium'), local('Montserrat Medium'),
    url(../fonts/Montserrat-Medium.ttf) format('opentype'),
    url('../fonts/Montserrat-Medium.woff') format('woff');
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat Bold';
  src: local('Montserrat Bold'), local('Montserrat Bold'),
    url(../fonts/Montserrat-Bold.ttf) format('opentype'),
    url('../fonts/Montserrat-Bold.woff') format('woff');
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat Black';
  src: local('Montserrat Black'), local('Montserrat Black'),
    url(../fonts/Montserrat-Black.ttf) format('opentype'),
    url('../fonts/Montserrat-Black.woff') format('woff');
  font-style: normal;
}

@font-face {
  font-family: 'Dela Gothic One Regular';
  src: local('Dela Gothic One Regular'), local('Dela Gothic One Regular'),
    url(../fonts/DelaGothicOne-Regular.ttf) format('opentype'),
    url('../fonts/DelaGothicOne-Regula.woff') format('woff');
  font-style: normal;
}



:root {
  --font-family-1: "Montserrat Thin";
  --font-family-2: "Montserrat Regular";
  --font-family-3: "Montserrat Medium";
  --font-family-4: "Montserrat Bold";
  --font-family-5: "Montserrat Black";
  --font-family-6: "Dela Gothic One Regular";

  /*COLORS*/
  --color1: #ffffff;
  /*Белый*/
  --color2: rgba(75, 231, 119, 1);
  /*Синий*/
  --color2a: #260856;
  /*Голубой*/
  --color3: #7667a4;
  /*Голубой 2*/
  --color3a: #1BE4FF;
  /*Голубой 2*/
  --color4: #000000;
  /*Чёрный*/
  --color5: #A20AFF;
  /*Фиолетовый*/
  --color6: #045dff;
  /* цвет текста */
  --color7: rgba(201, 210, 219, 1.00);

}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  background: #0e111a;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.preloader img {
  height: 100px;
  display: block;
  margin: auto;
}

html {
  height: 100%;
  width: 100%;
}

* {
  margin: 0;
  padding: 0;
  outline: none !important;
}

*::-webkit-scrollbar,
html *::-webkit-scrollbar {
  height: 12px;
  width: 8px;
}

*::-webkit-scrollbar-track,
html *::-webkit-scrollbar-track {
  background: #fff;
}

*::-webkit-scrollbar-thumb,
html *::-webkit-scrollbar-thumb {
  background-color: #cecece;
  border-radius: 5px;
  border: 3px solid transparent;
}

*::-webkit-scrollbar-thumb:hover,
html *::-webkit-scrollbar-thumb:hover {
  background-color: var(--color2);
  border-radius: 5px;
  border: 3px solid transparent;
  cursor: pointer;
}

body {
  font-family: var(--font-family-2);
  position: relative;
  background-color: #05060A;
  background-repeat: repeat;
  height: 100%;
  width: 100%;
  color: var(--color1);
  overflow-x: hidden;
}

.flex-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flex-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: end;
}

.justify-end {
  justify-content: center;
}

.justify-start {
  justify-content: start;
}

.justify-center {
  justify-content: center;
}

.overflow-x {
  overflow-x: hidden;
  overflow-y: hidden;
}

.paddingtop50 {
  padding-top: 50px;
}

.paddingtop100 {
  padding-top: 100px;
}

.header {
  position: fixed;
  top: 0;
  z-index: 5;
  margin: auto;
  width: 100%;
  backdrop-filter: blur(10px);
}

.header-wrap {
  padding: 25px 0;
  height: 120px;
  position: relative;
}

.header-menu {
  border: 1px solid #0061E1;
  border-radius: 40px;
  display: flex;
  justify-content: space-around;
}

.header-menu>ul {
  margin: 0;
  padding: 0;
  display: flex; 
  list-style: none; 
}

.header-menu>ul>li {
  display: flex; 
  align-items: center; 
  position: relative;
}

.header-menu ul li a {
  font-size: 12px;
  color: var(--color7);
  text-decoration: none;
  font-family: var(--font-family-2);
  padding: 13.5px 33px;
  display: block;
  font-weight: 100;
  margin-top: -1px;
  white-space: nowrap;
}

.header-menu ul li:first-child a {
  color: var(--color1);
  font-family: var(--font-family-3);
}

.header-menu ul li a span {
  display: inline-block;
  transform: scaleY(1.1); 
  line-height: 1;
}

.menu-active {
  background: linear-gradient(180deg, #00357B 0%, #0061E1 100%);
  border-radius: 40px;
}

.header-menu ul li a:hover {
  background: linear-gradient(180deg, #00357B 0%, #0061E1 100%);
  border-radius: 40px;
}

.header-menu>ul>li>ul {
  position: absolute;
  top: 99%;
  left: 0;
  background-color: #371373;
  padding: 0;
  margin: 0;
  min-width: 200px;
  display: none;
}

.header-menu>ul>li>ul>li {
  display: inline-block;
  padding: 5px;
  width: 90px;
  text-align: center;
  box-sizing: border-box;
}

.header-menu>ul>li>ul>li>a {
  display: block;
}

.header-menu>ul>li:hover>ul {
  display: block;
}

.header-shadow-line {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(31, 72, 57, 1) 15%, rgba(31, 72, 57, 1) 85%, rgba(255, 255, 255, 0) 100%);
  background-clip: padding-box;
  height: 3px;
  width: 100%;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  right: 0;
}

.header-lang {
  text-align: right;
}

.header-lang a {
  color: var(--color1);
  text-decoration: none;
}

.socset {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-left: 3px;
  margin-right: 3px;
  background-image: url('../images/soc-sety.png');
  background-repeat: no-repeat;
}

.telegramm {
  background-position: 0 0;
}

.vkontakte {
  background-position: -42px 0;
}

.instagramm {
  background-position: -84px 0;
}

.site-button {
  background: linear-gradient(90deg, rgba(75, 231, 119, 1) 0%, rgba(0, 203, 232, 1) 100%);
  color: #000;
  border-radius: 8px;
  padding: 15px 45px;
  text-decoration: none;
  font-weight: bold;
}

.site-button:hover {
  background: linear-gradient(90deg, rgba(0, 203, 232, 1) 0%, rgba(75, 231, 119, 1) 100%);
  color: #000;
  background-size: 500% 100%;
  animation: gradient 2s ease infinite;
  transform: translate3d(0, 0, 0);
}

.site-button-small {
  color: var(--color1);
  font-size: 1уь;
  text-transform: uppercase;
  font-family: var(--font-family-3);
  font-weight: 700;
  background-color: var(--color5);
  border-radius: 30px;
  padding: 12px 30px;
  text-decoration: none;
  margin: auto;
  display: block;
}

.header-button {
  text-align: end;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 75%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.mobile-menu-icon {
  display: none;
  position: absolute;
  top: 40px;
  right: 40px;
}

.mobile-menu-icon-wrap {
  position: relative;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.mobile-menu-icon-wrap span:nth-child(1) {
  display: block;
  background-color: var(--color3a);
  position: absolute;
  top: 5px;
  width: 100%;
  height: 2px;
}

.mobile-menu-icon-wrap span:nth-child(2) {
  display: block;
  background-color: var(--color3a);
  position: absolute;
  top: 15px;
  width: 100%;
  height: 2px;
}

.mobile-menu-icon-wrap span:nth-child(3) {
  display: block;
  background-color: var(--color3a);
  position: absolute;
  top: 25px;
  width: 100%;
  height: 2px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -380px;
  z-index: 6;
  overflow-y: auto;
  background-color: #0e111a;
  width: 300px;
  color: var(--color1);
  height: 100%;
  min-height: 400px;
  -webkit-box-shadow: 10px 5px 60px -15px rgba(53, 140, 255, 0.8);
  box-shadow: 10px 5px 60px -15px rgb(53, 140, 255, 0.8);
  background-size: 200%;
  background-repeat: no-repeat;
  background-position: top center;
  -moz-transform: translateX(0px);
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transform: translateX(0px);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transform: translateX(0px);
  -o-transition: all 0.4s ease-in-out;
  background-image: url('../images/background.jpg');
  background-size: cover;
  overflow-y: scroll;
  /* Включаем вертикальную прокрутку */
  scrollbar-width: none;
  /* Скрываем стандартные полосы прокрутки в Firefox */
}

.mobile-menu::-webkit-scrollbar {
  display: none;
  /* Скрываем стандартные полосы прокрутки в Chrome и Safari */
}

.mobile-menu-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: 90px;
}

.mobile-menu-close {
  position: absolute;
  right: 20px;
  top: 34px;
  cursor: pointer;
  width: 20px;
  height: 20px;
}

.mobile-menu-close img {
  width: 100%;
}

.mobile-menu-logo {
  text-align: left;
  padding: 28px 0 30px 35px;
}

.mobile-menu-links {
  padding: 15px 15px 15px 35px
}

.mobile-menu-links ul {
  padding: 0;
  margin: 0;
}

.mobile-menu-links ul li {
  display: block;
}

.mobile-menu-links ul li ul {
  margin-left: 15px;
}

.mobile-menu-links ul li ul li a {
  font-size: 16px;
}

.mobile-menu-links ul li a {
  color: var(--color1);
  font-size: 18px;
  text-decoration: none;
  padding: 5px 0;
  display: block;
}

.mobile-menu-open {
  left: 0;
}

.mobile_menu_bottom {
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.go-to-up {
  background-color: rgb(1 39 44);
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 30px;
  right: 15px;
  border-radius: 25px;
  padding: 11px 12px;
  cursor: pointer;
  display: none;
  z-index: 5;
}

.go-to-up img {
  width: 25px;
}


.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: rgb(0 0 22) !important;
  background-clip: padding-box;
  border: 1pxsolidrgba(0, 0, 0, .2);
  border-radius: 0.3rem;
  outline: 0;
  -webkit-box-shadow: 0 5px 26px -10px rgb(90 50 255 / 80%);
  box-shadow: 0 5px 36px -10px rgb(90 50 255 / 80%);
  background-size: 200%;
  background-repeat: no-repeat;
  background-position: top center;
  -moz-transform: translateX(0px);
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transform: translateX(0px);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transform: translateX(0px);
  -o-transition: all 0.4s ease-in-out;
  background-image: url('../images/Ellipse3.png');
  background-size: 300%;
  background-position: 20% 200%;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid var(--color2a) !important;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid var(--color2a) !important;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--color3) !important;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: var(--color3) !important;
  font-size: 12px;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: var(--color3) !important;
  font-size: 12px;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: var(--color3) !important;
  font-size: 12px;
}

input,
textarea {
  color: var(--color1) !important;
  font-size: 12px;
}

.holst {
  width: 100%;
  height: 100vh;
  min-height: 880px;
  background-color: #00051f;
  position: relative;
}


.veryBigText {
  background-image: url('../images/GAMEPAT.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  width: 100%;
  height: 250px;
  /* position: absolute; */
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  margin-top: -140px;
}

.holstOneTextWrap {
  flex-direction: column;
  justify-content: center;
  margin-bottom: 30px;
}

.holstOneText {
  text-align: center;
  margin-top: 50px;
}

.holstOneBigText {
  font-family: var(--font-family-6);
  font-size: calc(24px + (16 + 16 * 0.7) * ((100vw - 320px) / 1400));
  text-transform: uppercase;
  margin-bottom: 10px;
}

.holstOneSimpleText {
  margin-bottom: 15px;
  font-size: 16px;
  text-align: center;
}

.holstFourSimpleText {
  margin-bottom: 15px;
  font-size: 16px;
  text-align: center;
  padding: 30px 0;
}

.holstOneButtonsWrap {
  text-align: center;
}

.holstOneButtons {
  display: inline-block;
  text-align: center;
  margin: auto;
}

.buttonSite {
  padding: 14px 30px;
  border-radius: 30px;
  background-color: #00357B;
  margin: 5px;
  display: inline-block;
}

.googlePlay {
  background: linear-gradient(90deg, #15F097 0%, #B1FF2C 100%);
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-family: var(--font-family-4);
  text-transform: uppercase;
  font-size: 14px;
}

.appStore {
  background: linear-gradient(90deg, #FF9901 0%, #EE3636 100%);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-family: var(--font-family-4);
  text-transform: uppercase;
  font-size: 14px;
}

.appGallery {
  background: linear-gradient(90deg, #EEDB36 0%, #FF9901 100%);
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-family: var(--font-family-4);
  text-transform: uppercase;
  font-size: 14px;
}

.holstOneImage {
  z-index: 1;
  bottom: 0;
  width: 100%;
}

.holstOneImage {
  margin: auto;
  text-align: center;
}

.pageListing {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: calc(100% - 110px);
  min-height: 800px;
  overflow-x: auto;
  scroll-behavior: smooth;
  overflow-x: hidden;
  height: 100%;
  position: relative;
  overflow-y: scroll;
  /* Включаем вертикальную прокрутку */
  scrollbar-width: none;
  /* Скрываем стандартные полосы прокрутки в Firefox */
}

.pageListing::-webkit-scrollbar {
  display: none;
  /* Скрываем стандартные полосы прокрутки в Chrome и Safari */
}

.pageSection {
  height: calc(100% - 110px);
  min-height: 800px;
  flex: 0 0 auto;
  width: 100%;
  position: relative;
  padding-top: 100px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -100%;
  overflow-y: scroll;
}


.bgFirst {
  background-image: url('../images/background.jpg');
  background-size: cover;
}

.bgTwo {
  background-color: #00051f;
  background-image: url('../images/glow.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.bgThree {
  background-color: #000000;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.bgFour {
  background-color: #00051f;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.bgFive {
  position: absolute;
  transform: translate(-50%, -50%);
  right: -50%;
  top: 30%;
  background-image: url('../images/glow.svg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 100%;
  height: 100%;
  z-index: -2;

}

.bgFive__title {
  background-image: url('../images/bgFive__title.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 50%;
  height: 50%;
  display: flex;
  justify-self: center;
  margin: 0 auto;
}

.bgFive__EllipsLeft {
  position: absolute;
  transform: translate(0, -50%);
  right: -50%;
  top: 30%;
  background-image: url('../images/glow.svg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 100%;
  height: 100%;
  z-index: -2;
}


@keyframes moveRightAnimation {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

.moveRight {
  animation: moveRightAnimation 0.5s ease forwards;
  z-index: 3;
}

@keyframes moveLeftAnimation {
  0% {
    transform: translateX(100%);
  }

  99% {
    transform: translateX(200%);
  }

  100% {
    display: none;
  }
}

.moveLeft {
  animation: moveLeftAnimation 0.5s ease forwards;
  z-index: 3;
}


.holstSLider {
  padding-top: calc(20px + (16 + 16 * 0.7) * ((100vw - 320px) / 1400));
}

.holstSLiderTitle {
  text-align: center;
  font-size: calc(22px + (16 + 16 * 0.7) * ((100vw - 320px) / 1400));
  color: #ffffff;
  font-weight: bolder;
  text-transform: uppercase;
  font-family: var(--font-family-6);
}


.holstSLiderContent {
  padding-top: 40px;
}

#pp-nav {
  display: none;
}

/* CARUSEL CSS */
#slider [type=radio] {
  display: none;
}

#slider {
  height: 476px;
  position: relative;
  perspective: 1000px;
  transform-style: preserve-3d;
}

#slider label {
  margin: auto;
  width: auto;
  height: 476px;
  border-radius: 4px;
  position: absolute;
  left: 0;
  right: 0;
  cursor: pointer;
  transition: transform 0.4s ease;
  text-align: center;
}

#s1:checked~#slide1,
#s2:checked~#slide2,
#s3:checked~#slide3,
#s4:checked~#slide4,
#s5:checked~#slide5 {
  transform: translate3d(0, 0, 0);
}

#s1:checked~#slide2,
#s2:checked~#slide3,
#s3:checked~#slide4,
#s4:checked~#slide5,
#s5:checked~#slide1 {
  transform: translate3d(0, -10%, -100px);
}

#s1:checked~#slide3,
#s2:checked~#slide4,
#s3:checked~#slide5,
#s4:checked~#slide1,
#s5:checked~#slide2 {
  transform: translate3d(0, -20%, -200px);
}

#s1:checked~#slide4,
#s2:checked~#slide5,
#s3:checked~#slide1,
#s4:checked~#slide2,
#s5:checked~#slide3 {
  transform: translate3d(0, -10%, -100px);
}

#s1:checked~#slide5,
#s2:checked~#slide1,
#s3:checked~#slide2,
#s4:checked~#slide3,
#s5:checked~#slide4 {
  transform: translate3d(0, -20%, -200px);
}


/* CARUSEL CSS END */

#slider label img {
  margin: auto;
  height: 100%;
  border-radius: 20px;
}

/* CARUCEL PROJECTS */
.caruselProjects {
  width: 45%;
  margin: auto;
}

.owlitem {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.owlitem img {
  width: 100%;
  display: block;
  border-radius: 20px;
  box-shadow: 0 5px -2px rgba(0, 0, 0, 0.8);
}

.sliderHead {
  width: 90%;
  height: 55px;
  margin: auto;
  background-image: url('../images/sliderHead.png');
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.slideTextBlockRow {
  display: flex;
  flex-direction: row;
}

.slideTextBlockColImage {
  width: 40%;
  padding: 30px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.slideTextBlockColText {
  width: 60%;
  padding: 15px 15px 0 0;
  font-size: 0.8em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slideTextBlockBigText {
  text-align: center;
  font-size: calc(4px + (16 + 16 * 0.7) * ((100vw - 320px) / 1400));
  font-weight: bold;
}

.caruselProjects .owl-nav,
.caruselHalving .owl-nav {
  position: absolute;
  top: 30%;
  right: -75px;
  display: flex;
  flex-direction: column;
}

.caruselHalving .owl-nav {
  position: absolute;
  top: 45%;
  right: -75px;
  display: flex;
  flex-direction: column;
}

.caruselProjects .owl-prev span,
.caruselProjects .owl-next span,
.caruselHalving .owl-prev span,
.caruselHalving .owl-next span {
  display: none;
}

.caruselProjects .owl-prev,
.caruselHalving .owl-prev {
  width: 40px !important;
  height: 40px !important;
  border-radius: 20px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  background-color: #011029 !important;
  align-items: center !important;
  background-image: url('../images/arrowUp.png') !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.caruselProjects .owl-prev:hover,
.caruselHalving .owl-prev:hover {
  background: url('../images/arrowUp.png'), linear-gradient(180deg, #01429A 0%, #0161E1 100%) !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.caruselProjects .owl-next,
.caruselHalving .owl-next {
  width: 40px !important;
  height: 40px !important;
  border-radius: 20px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  background-color: #011029 !important;
  align-items: center !important;
  background-image: url('../images/arrowDown.png') !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.caruselProjects .owl-next:hover,
.caruselHalving .owl-next:hover {
  background-image: url('../images/arrowDown.png'), linear-gradient(180deg, #01429A 0%, #0161E1 100%) !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.slideMarker {
  position: absolute;
  top: 0;
  right: 0;
  background-image: linear-gradient(180deg, #FF9901 0%, #EE3636 100%) !important;
  padding: 15px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 0 20px 0 20px;
}


/* CARUCEL PROJECTS END*/

.blockRow {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}

.blockCol {
  width: calc(100% / 5);
  padding: 15px;
}

.blockIconWrap {
  position: relative;
  padding-left: 30px;
}

.blockIconImage {
  position: absolute;
  top: 0;
  left: 0;
}

.blockIconTitle {
  padding: 10px 0 10px 15px;
  font-size: 18px;
}

.blockIconText {
  padding: 0 0 10px 15px;
  font-size: 34px;
  font-weight: bold;
}

.blokSfereWrap {
  background-image: url('../images/bgTokenomix.jpg');
  background-position: center -50px;
  background-size: cover;
  min-height: 640px;
}

.blockTokenomix {
  padding-top: 200px;
  padding-bottom: 50px;
}

.blockTokenomixTitle {
  text-align: center;
  font-size: 44px;
  font-weight: bold;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-family: var(--font-family-5);
}

.blockTokenomixText {
  text-align: center;
  font-size: 18px;
  margin-bottom: 70px;
}

.buttonDemo {
  background: linear-gradient(90deg, #15F097 0%, #B1FF2C 100%);
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-family: var(--font-family-4);
  text-transform: uppercase;
  font-size: 14px;
}

.mehanizm {
  background-color: #0C141F;
  border-radius: 30px;
  padding: 40px 55px;
  margin-bottom: 150px;
}

.mehanizmRow {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.mehanizmCol {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.mehanizmRow .mehanizmCol:nth-child(1) {
  width: 30%;
  padding: 15px;
}

.mehanizmRow .mehanizmCol:nth-child(2) {
  width: 35%;
  padding: 15px;
}

.mehanizmRow .mehanizmCol:nth-child(3) {
  width: 35%;
  padding: 15px;
}

.mehanizmTextButtonTitle {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: bold;
}

.mehanizmListWrap {
  position: relative;
  padding-left: 55px;
  margin-bottom: 30px;
}

.mehanizmListText {
  font-size: 16px;
  font-family: var(--font-family-2);
  color: #ffffff;
}

.mehanizmListNumber {
  font-family: var(--font-family-4);
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #0061E1;
  border-radius: 20px;
  font-size: 24px;
  font-style: italic;
  font-weight: bold;
  border: 2px solid #0061E1;
  position: absolute;
  top: 0;
  left: 0;
}

.mehanizmColImage {
  position: absolute;
  top: 0;
  right: 0;
}

.blokSfereWrap {
  position: relative;
}

.EllipsLeft {
  width: 600px;
  height: 500px;
  pointer-events: none;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  background-image: url('../images/EllipseLeft.png');
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
}

.EllipsRight {
  width: 600px;
  height: 500px;
  pointer-events: none;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  background-image: url('../images/EllipseRight.png');
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
}

.caruselHalving {
  margin: auto;
  width: 60%;
  text-align: center;
}

.owlitemImage {
  position: relative;
  width: 100%;
}

.owlitemTokens {
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
}

.owlitemTokensPats {
  display: inline-block;
  margin: auto;
  padding: 12px 45px;
  border: 1px solid #ffffff;
  border-radius: 30px;
  font-size: 18px;
}

.owlitemRowRasp {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
}


.owlitemRowRasp .owlitemColRasp:nth-child(1) {
  width: 40%;
  padding: 20px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.owlitemRowRasp .owlitemColRasp:nth-child(2) {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.owlitemRowRasp .owlitemColRasp:nth-child(1) img {
  max-width: 60%;
  min-width: 135px;
}

.owlitemColTokens {
  text-align: end;
  padding: 0 50px 0 0;
  background: linear-gradient(45deg, #5AA8E3 50%, #E5F4FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: calc(28px + (16 + 16 * 0.7) * ((100vw - 320px) / 1400));
  font-family: var(--font-family-6);
}

.projectItem {
  width: 50%;
  padding: 0 5px;
  margin-bottom: 30px;
}

.projectItem .owlitemColTokens {
  font-size: calc(4px + (16 + 16 * 0.7) * ((100vw - 320px) / 1400));
}

.projectItemThree {
  width: calc(100% / 3);
  padding: 0 5px;
  margin-bottom: 30px;
}

.projectItemThree .owlitemColTokens {
  font-size: calc(4px + (16 * 0.7) * ((100vw - 320px) / 1400)) !important;
  padding: 0 15px 0 0;
}

.projectItemThree .owlitemRowRasp .owlitemColRasp:nth-child(1) {
  width: 40%;
  padding: 8px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.projectItemFour {
  width: calc(100% / 4);
  padding: 0 5px;
  margin-bottom: 30px;
}

.projectItemFour .owlitemColTokens {
  font-size: calc(4px + (16 * 0.7) * ((100vw - 320px) / 1400));
  padding: 0 15px 0 0;
}

.projectItemFour .owlitemRowRasp .owlitemColRasp:nth-child(1) {
  width: 40%;
  padding: 8px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.owlitemColName {
  font-size: 9px;
  text-transform: uppercase;
  font-weight: bold;
}

.imageDescope {
  display: block;
}

.imageMobile {
  display: none !important;
}

.contact-partner {
    padding-top:15px;
}

/* FIVE SCREEN */

.timeline-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: transparent;
  width: 100%;
  padding-bottom: 10vh;
  position: relative;
}

.timeline {
  position: relative;
  width: auto;
  max-width: 70%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3); 
  opacity: 0.7;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  gap: 20%;
}

.timeline-quarter {
  width: 50%;
  text-align: end;
  color: #fff;
  font-size: 22px !important;
  font-family: var(--font-family-6);
}

.timeline-quarter h3 {
  font-size: 22px !important;
}

.timeline-dot {
  position: absolute; 
  left: 50%; 
  transform: translateX(-50%) translate(0, 5px);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #888; 
  z-index: 2; 
}

.timeline-dot.green {
  background-color: rgba(145, 252, 66, 1.00);
  box-shadow: 0 0 0 8px rgba(145, 252, 66, 0.3); 
}

.timeline-dot.orange {
  background-color: rgba(255, 151, 2, 1.00);
  box-shadow: 0 0 0 8px rgba(255, 151, 2, 0.3); 
}

.timeline-content {
  width: 50%;
  display: flex;
  justify-content: flex-start;
  color: #ddd;
}

.timeline-content ul {
  padding: 0;
  margin: 0;
}

.timeline-content li {
  margin-bottom: 8px;
  font-family: var(--font-family-3);
  color: var(--color1);
  font-size: 16px;
}

.timeline-content li::marker {
  font-size: 0.75em; 
}
/* FIVE SCREEN END */


/*******************************/

.block_about_game {
    margin-bottom:40px;
   
}

.block_about_game img {
    width:100%;
    border-radius:15px;
}

.block_about_game_text {
    min-height:70px;
    font-size:16px;
    text-align:center;
    text-transform:uppercase;
}

.list_block_about {
    margin-top:100px;
    margin-bottom:100px;
    
}

.about-long-text {
    margin-top:40px;
     font-size:20px;
    text-align:center;
}

.mehanizmImg img{
    max-width:250px;
}

.mehanizmListText span{    background-color: #dedebf;
    color: #000;
    font-weight: bold;
    padding: 2px;
    border-radius: 5px;
}

.icon-select-lang{
        margin-left: 15px;
    margin-top: 5px;
    cursor:pointer;
}

.icon-select-lang img {
    width:36px;
}


.link_lang {
    text-align:center;
    margin-bottom:20px;
}

.btn-close {
    color:white;
        background-color: #fff;
}

.link_lang img{
    width:44px;
}