@font-face {
  font-family: "Inter";
  src: url(../../Fonts/Inter/Inter-VariableFont_slnt\,wght.ttf);
}
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

body:hover,
section.Y-scroll:hover {
  overflow-y: auto;
  scrollbar-width: none;
}
body::-webkit-scrollbar,
section.Y-scroll::-webkit-scrollbar {
  width: 0.4em;
  opacity: 0;
}
body::-webkit-scrollbar, body::-webkit-scrollbar-thumb,
section.Y-scroll::-webkit-scrollbar,
section.Y-scroll::-webkit-scrollbar-thumb {
  overflow: visible;
  border-radius: 4px;
}
body::-webkit-scrollbar-thumb,
section.Y-scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
}

section.pop_up {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  min-height: 0;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
section.pop_up[active] {
  min-height: 100%;
  opacity: 1;
  z-index: 999;
}
section.pop_up > article {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

:root {
  --Card_width: 1px;
  --Card_height: 1px;
  --Body_width: 1px;
  --Body_height: 1px;
  --Header_width: 1px;
  --Header_height: 1px;
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
body > div.page-wrapper {
  min-height: 100vh;
  position: relative;
}
body > div.page-wrapper > header {
  font-family: "Montserrat", sans-serif;
  background-color: #fff;
  color: #25283a;
  position: fixed;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 55px;
  padding: 0 2vw;
  z-index: 100;
}
body > div.page-wrapper > header > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body > div.page-wrapper > header > nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body > div.page-wrapper > header > nav > section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
body > div.page-wrapper > header > nav > section > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
body > div.page-wrapper > header > nav > section > ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
body > div.page-wrapper > header > nav > section > ul > li > a {
  color: #25283a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
body > div.page-wrapper > header > nav > section > ul > li > a[active] {
  color: #6d0000;
}
body > div.page-wrapper > header > nav > section > ul > li > a[active] > svg > g > path {
  fill: #6d0000;
}
body > div.page-wrapper > header > nav > section > ul > li > a > svg {
  -webkit-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
body > div.page-wrapper > header > nav > section > ul > li > a > svg > g > path {
  fill: #25283a;
}
body > div.page-wrapper > header > nav > section > ul > li > ul > li > a {
  color: #25283a;
  cursor: pointer;
}
body > div.page-wrapper > header > nav > section > ul > li > ul > li > a[active] {
  color: #6d0000;
  font-weight: 700;
}
body > div.page-wrapper > header > nav > section > div > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
body > div.page-wrapper > header > nav > section > div > ul > li > a {
  color: #25283a;
}
body > div.page-wrapper > header > nav > section > div > ul > li > a:hover {
  color: #6d0000;
}
body > div.page-wrapper > main > article {
  padding: 0 2vw;
}
body > div.page-wrapper > main > article#Data {
  margin-top: 55px;
  background-color: #1d1f21;
  color: #fff;
  padding-top: calc(var(--Body_width) * 2);
  padding-bottom: calc(var(--Body_width) * 2);
}
body > div.page-wrapper > main > article#Data > header {
  padding: calc(var(--Body_width) * 1) 0;
  font-size: calc(var(--Body_width) * 1);
}
body > div.page-wrapper > main > article#Data > section {
  font-size: calc(var(--Body_width) * 0.5);
  padding-left: calc(var(--Body_width) * 0.5);
}
body > div.page-wrapper > main > article#Data > section > p {
  padding: calc(var(--Body_width) * 0.1) 0;
  margin: 0;
}
body > div.page-wrapper > main > article#Data > section > p > span {
  color: #6d0000;
}
body > div.page-wrapper > main > article#Data > section > ul {
  padding-left: calc(var(--Body_width) * 1);
}
body > div.page-wrapper > main > article#Data > section > ul > li {
  list-style: square;
}
body > div.page-wrapper > section.about-section-two {
  margin-top: 80px;
}
body > div.page-wrapper > section.games-section:nth-of-type(1) {
  margin-top: 55px;
  padding-bottom: 0;
}
body > div.page-wrapper > section.games-section:nth-of-type(2) {
  padding-top: 0;
}
body > div.page-wrapper > section.reviews-section > div > div {
  z-index: 10;
}
body > div.page-wrapper > section.game-details-section > div > div > div > div.upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
body > div.page-wrapper > section.game-details-section > div > div > div > div.upper > div.title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body > div.page-wrapper > section.game-details-section > div > div > div > div.upper > div.title-box > img {
  width: calc(var(--Body_width) * 3);
  border-radius: calc(var(--Body_width) * 0.2);
}
body > div.page-wrapper > section.game-details-section > div > div > div > div.upper > div.title-box > section {
  margin-left: calc(var(--Body_width) * 1);
}
body > div.page-wrapper > article {
  padding: calc(var(--Body_width) * 3) 2vw;
  border-bottom: 2px solid #6d0000;
}
body > div.page-wrapper > article#Landing {
  padding: 0;
  margin-top: 55px;
  min-height: 100vh;
  position: relative;
}
body > div.page-wrapper > article#Landing > div {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url(../Img/cover-logo-luckify.png);
  background-size: cover;
  background-position: center;
}
body > div.page-wrapper > article#Landing > svg {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
body > div.page-wrapper > article#Landing > svg > g > path {
  fill: #6d0000;
}
body > div.page-wrapper > article#Winer {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), color-stop(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0))), url(../Img/Index/bb.png);
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url(../Img/Index/bb.png);
  background-size: cover;
}
body > div.page-wrapper > article#Winer > section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
body > div.page-wrapper > article#Winer > section > figure:nth-child(1) > img {
  height: calc(var(--Body_width) * 7);
  margin-right: calc(var(--Body_width) * 1);
}
body > div.page-wrapper > article#Winer > section > figure:nth-child(2) > img {
  height: calc(var(--Body_width) * 10);
  margin-right: calc(var(--Body_width) * 1);
}
body > div.page-wrapper > article#Winer > section > figure:nth-child(3) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
body > div.page-wrapper > article#Winer > section > figure:nth-child(3) > img {
  height: calc(var(--Body_width) * 6);
  margin-right: calc(var(--Body_width) * 1);
}
body > div.page-wrapper > article#Winer > section > figure:nth-child(4) > img {
  height: calc(var(--Body_width) * 11);
  margin-left: calc(var(--Body_width) * 1);
}
body > div.page-wrapper > article#Winer > section > figure:nth-child(5) > img {
  height: calc(var(--Body_width) * 9);
  margin-right: calc(var(--Body_width) * 1);
}
body > div.page-wrapper > article#Winer > section > figure:nth-child(6) > img {
  height: calc(var(--Body_width) * 9);
  margin-right: calc(var(--Body_width) * 1);
  margin-left: calc(var(--Body_width) * 1);
  margin-top: calc(var(--Body_width) * 3);
}
body > div.page-wrapper > article#Winer > section > figure:nth-child(7) > img {
  height: calc(var(--Body_width) * 9);
}
body > div.page-wrapper > article#Winer > section > figure > img[now-in-view] {
  -webkit-animation: bounceIn 0.7s;
          animation: bounceIn 0.7s;
}
body > div.page-wrapper > article#Contact {
  margin-top: 100px;
  display: grid;
  grid-template-columns: auto repeat(3, 1fr) auto;
  margin-bottom: calc(var(--Body_width) * 2);
  gap: calc(var(--Body_width) * 1.5);
}
body > div.page-wrapper > article#Contact > section {
  background-color: #fff;
  -webkit-animation-duration: 2000ms;
          animation-duration: 2000ms;
  -webkit-animation-delay: 1000ms;
          animation-delay: 1000ms;
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  text-align: center;
  padding: calc(var(--Body_width) * 2);
  position: relative;
}
body > div.page-wrapper > article#Contact > section:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
body > div.page-wrapper > article#Contact > section:hover > div > span {
  background-color: #6d0000;
  color: #fff;
}
body > div.page-wrapper > article#Contact > section::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 3px solid #6d0000;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
body > div.page-wrapper > article#Contact > section:nth-child(1) {
  grid-column: 2/3;
}
body > div.page-wrapper > article#Contact > section:nth-child(2) {
  grid-column: 3/4;
}
body > div.page-wrapper > article#Contact > section:nth-child(3) {
  grid-column: 4/5;
}
body > div.page-wrapper > article#Contact > section > div {
  color: #1d1f21;
}
body > div.page-wrapper > article#Contact > section > div > span {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  padding: calc(var(--Body_width) * 1.5);
  border-radius: 50%;
  background-color: #f1f1f1;
  font-size: calc(var(--Body_width) * 1);
  margin-bottom: calc(var(--Body_width) * 2);
}
body > div.page-wrapper > article#Contact > section > div > p {
  font-size: calc(var(--Body_width) * 0.75);
  font-weight: 500;
  margin: 0;
}
body > div.page-wrapper > footer {
  font-family: "Montserrat", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  padding: calc(var(--Body_width) * 1) 2vw;
  border-top: 2px solid #6d0000;
  background-color: #1d1f21;
}
body > div.page-wrapper > footer > article {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #ffffff;
}
body > div.page-wrapper > footer > article:nth-of-type(1) {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
body > div.page-wrapper > footer > article:nth-of-type(1) > section {
  padding-top: calc(var(--Body_width) * 0.5);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
body > div.page-wrapper > footer > article:nth-of-type(2) {
  height: auto;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
body > div.page-wrapper > footer > article:nth-of-type(2) > section {
  padding-top: calc(var(--Body_width) * 1);
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
body > div.page-wrapper > footer > article:nth-of-type(2) > section > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
body > div.page-wrapper > footer > article:nth-of-type(2) > section > div > p {
  font-size: calc(var(--Body_width) * 0.6);
  margin: 0;
}
body > div.page-wrapper > footer > article:nth-of-type(2) > section > div > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body > div.page-wrapper > footer > article:nth-of-type(2) > section > div > ul > li {
  margin-left: calc(var(--Body_width) * 0.75);
}
body > div.page-wrapper > footer > article:nth-of-type(2) > section > div > ul > li > a {
  color: #ffffff;
}
body > div.page-wrapper > footer > article:nth-of-type(2) > section > div > ul > li > a > span {
  font-weight: 100;
  font-size: calc(var(--Body_width) * 0.6);
}
body > div.page-wrapper > footer > article:nth-of-type(2) > section > p {
  margin: 0;
}
body > div.page-wrapper > footer > article > header {
  font-weight: 700;
  font-size: calc(var(--Body_width) * 1);
}
body > div.page-wrapper > footer > article > section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
body > div.page-wrapper > footer > article > section > div,
body > div.page-wrapper > footer > article > section > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
body > div.page-wrapper > footer > article > section > div > p,
body > div.page-wrapper > footer > article > section > div > li,
body > div.page-wrapper > footer > article > section > ul > p,
body > div.page-wrapper > footer > article > section > ul > li {
  font-size: calc(var(--Body_width) * 0.6);
  line-height: calc(var(--Body_width) * 1.25);
  text-transform: uppercase;
  margin: 0;
}
body > div.page-wrapper > footer > article > section > ul {
  padding-left: calc(var(--Body_width) * 1);
}
body > div.page-wrapper > footer > article > section > ul > li > a {
  color: #ff2d2d;
}