:root {
  --white-fg: #fff;

  --first-color: #1e1e1e;
  --first-color-trans: #1e1e1ee6;
  --second-color: #006f5a;
  --third-color: #edd7c1;
  --fourth-color: #283129;
  --highlight-bg: #d72727;
  --highlight-fg: #df6f35;

  --b-radius: 0.5rem;
}

* {
  outline: none;
  box-sizing: border-box;
}

body {
  margin: 0px;
  padding: 0px;
  min-width: 20rem;
  min-height: 100%;
  height: auto;
  display: block;
  background-color: var(--first-color);
  font-size: 1.25rem;
  font-family: "Montserrat", sans-serif;
  color: var(--white-fg);
}

nav {
  box-sizing: border-box;
  margin: 0px;
  z-index: 800;
}

#social-nav {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 999;
}

#social-nav div {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  z-index: 1;
  right: 0.5rem;
  bottom: 0.5rem;
}

.bt {
  font-weight: 600;
  text-align: right;
  text-decoration: none;
  color: var(--white-fg);
  cursor: pointer;
  transition: all 300ms;
}
.flex-text,
.bt.wishlist,
.play,
.grid-item img,
.fullscreen {
  border-radius: var(--b-radius);
}

.bt.mainnav {
  font-size: 1.5rem;
  text-transform: uppercase;
  display: block;
  font-weight: 800;
  line-height: 5.5rem;
  padding: 0.75rem;
  color: var(--white-fg);
  letter-spacing: 0.05rem;
}

.bt:hover,
.cr_button2:hover,
.bt.footerlink:hover,
.bt.mainnav.current {
  color: var(--third-color);
  transition: all 300ms;
}

.bt.social {
  height: 40px;
  width: 40px;
  line-height: 36px;
  padding: 0px 0px;
  font-size: 36px;
  text-align: center;
  margin: 0.5rem;
  background-color: var(--second-color);
}

.bt.social:hover {
  background-color: var(--first-color);
}

.bt.link {
  font-size: 1.5rem;
  margin: 5px 0px;
  display: inline-block;
  padding: 1rem 2rem;
  transition: all 300ms;
  text-decoration: none;
  border: none;
  background-color: var(--white-fg);
}

.bt.wishlist {
  font-size: 2rem;
  padding: 1rem 2rem;
  left: 0;
  transform: translate(0);
  position: relative;
  text-transform: uppercase;
  overflow: hidden;
  z-index: 5;
  color: var(--white-fg);
  background-color: var(--highlight-fg) !important;
  transition: box-shadow 0.4s ease, background-color 0.4s ease, color 0.4s ease;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.3);
  font-family: "Merriweather", serif;
}
.bt.wishlist span {
  position: relative;
  z-index: 2;
  text-shadow: 1px -1px 4px rgba(0, 0, 0, 0.25), 1px 0px 8px rgba(0, 0, 0, 0.25);
}
.wishlist:hover {
  background-color: var(--second-color) !important;
  color: var(--third-color) !important;
}

/*.scroll-animation {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin: 2rem auto 0;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: scroll 1.5s infinite;
  animation: scroll 1.5s infinite;
}
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes scroll {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}*/

.container-scroll {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 2rem;
  margin-top: 4rem;
}

.chevron {
  position: absolute;
  top: 0;
  width: 2.1rem;
  height: auto;
  opacity: 0;
  fill: currentColor;
  color: var(--white-fg);
  transform: scale(0.3);
  -webkit-animation: move-chevron 3s ease-out infinite;
  animation: move-chevron 3s ease-out infinite;
  -webkit-filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.7));
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.7));
}

.chevron:first-child {
  -webkit-animation: move-chevron 3s ease-out 1s infinite;
  animation: move-chevron 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  -webkit-animation: move-chevron 3s ease-out 2s infinite;
  animation: move-chevron 3s ease-out 2s infinite;
}

@-webkit-keyframes move-chevron {
  25% {
    opacity: 1;
  }
  33.3% {
    opacity: 1;
    transform: translateY(2.28rem);
  }
  66.6% {
    opacity: 1;
    transform: translateY(3.12rem);
  }
  100% {
    opacity: 0;
    transform: translateY(4.8rem) scale(0.5);
  }
}

@keyframes move-chevron {
  25% {
    opacity: 1;
  }
  33.3% {
    opacity: 1;
    transform: translateY(2.28rem);
  }
  66.6% {
    opacity: 1;
    transform: translateY(3.12rem);
  }
  100% {
    opacity: 0;
    transform: translateY(4.8rem) scale(0.5);
  }
}

.grid-item {
  position: relative;
}

.fullscreen {
  fill: currentColor;
  color: var(--white-fg);
  background-color: var(--highlight-fg);
  padding: 0.5rem;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  height: 2.25rem;
  width: 2.25rem;
}

.fullscreen:hover {
  color: var(--highlight-fg);
  background-color: var(--white-fg);
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  grid-gap: 1rem;
  margin: 4rem 0 0;
}

.grid-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.footerlogo {
  display: inline-block;
  margin-right: 3rem;
  margin-bottom: 1.5rem;
}

.footerlogo[href="#"] {
  pointer-events: none;
  cursor: default;
}

.footerlogo img {
  height: auto;
  max-height: 4rem;
  width: 100%;
  max-width: 17rem;
  vertical-align: middle;
  margin-bottom: 2rem;
}
.to-go-games img {
  max-height: 7rem;
}

.footertext {
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--highlight-fg);
  color: var(--second-fg);
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}
sup {
  line-height: 0;
}

.bt.footerlink {
  font-weight: 400;
  display: inline-block;
  padding: 0.5rem 1rem;
  transition: all 300ms;
  color: var(--white-fg);
}

.bt.footerlink:hover {
  transition: all 300ms;
}

header {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.logo {
  max-width: 31.25rem;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.drop-shadow {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
  filter: drop-shadow(0px 0px 40px var(--first-color-trans))
    drop-shadow(0px 0px 40px var(--first-color-trans));
  position: relative;
  z-index: 3;
  margin-bottom: 3rem;
}

.divider {
  height: auto;
  width: 100%;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  z-index: 2;
}

.divider img {
  display: block;
}

.after-divider {
  flex-direction: column !important;
  position: relative;
}

.after-divider .container {
  background-color: var(--first-color);
}

.after-divider .flex-container {
  box-shadow: none;
  margin-top: 0;
  margin-bottom: 0;
}

.after-divider .rotate {
  transform: rotate(180deg);
}

.after-divider .flex-text {
  background: none;
}

footer.after-divider:after {
  display: none;
}

footer.after-divider {
  padding-bottom: 0;
}

section {
  position: relative;
  width: 100%;
  padding: 0px 0px;
  height: auto;
  display: flex;
  flex-direction: column;
}

.container {
  position: relative;
  transition: all 300ms;
  margin: 0px auto;
  width: 100%;
  padding: 12rem 3rem 18rem;
  z-index: 1;
}

#start-features {
  background: url("../img/slider/screenshot-01.jpg");
  overflow: hidden;
  position: relative;
  width: 100%;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
#start-wishlist,
#start-faq {
  background: url("../img/slider/screenshot-02.jpg");
  overflow: hidden;
  position: relative;
  width: 100%;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.after-divider .container {
  padding: 4rem 3rem;
}

#start-wishlist .container {
  padding-bottom: 0;
}

.flex-container {
  margin: 2rem auto;
  display: flex;
  width: 100%;
  max-width: 75rem;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.3);
}

.after-divider .flex-container {
  box-shadow: none;
  margin-top: 0;
  margin-bottom: 0;
}

.legal h2:after,
.legal h3:after {
  margin-left: 0;
}

.legal a {
  color: var(--highlight-fg);
}

.legal a:hover {
  color: var(--highlight-bg);
}

.legal h4 {
  margin-top: 0;
}

.legal ul {
  padding: 0 1rem 2.5rem 3.5rem;
}

#start-screenshots .flex-container,
#start-screenshots .container {
  margin-top: 0;

  padding-top: 0;
}

#start-features ul {
  padding: 0;
}

.reverse {
  flex-direction: row-reverse;
}

.flex-text {
  flex: 1 1 auto;
  background-color: var(--first-color-trans);
  padding: 2rem;
  overflow: hidden;
}

footer {
  position: relative;
  width: 100%;

  display: flex;
}

footer .container {
  padding-bottom: 0;
}

footer .flex-container {
  flex-direction: column;
  margin-bottom: 0;
}

footer .flex-text {
  padding-bottom: 12rem;
}

.container > img {
  width: 100%;
}
.sub {
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

h1 {
  color: #ffffff;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

h2 {
  font-weight: 600;
  color: var(--white-fg);
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--highlight-fg);
}

h3 {
  font-family: "Merriweather", sans-serif;

  font-size: 1.5rem;
  font-weight: 800;
  color: var(--highlight-fg);
  margin: 2rem 0 1rem;
  text-align: center;
}

.bear {
  width: auto;
  height: 2rem;
}

.bear img {
  width: 100%;
  height: 100%;
}

#start-faq h3 {
  margin-top: 3rem;
}

#start-faq li {
  list-style: none;
}
#start-faq ul {
  margin: 0 0 1rem 0;
  padding-left: 0;
}

#start-faq a {
  color: var(--white-fg);
}

h4 {
  font-weight: 400;
  color: var(--white-fg);
  font-size: 32px;
  text-align: center;
  margin-bottom: 20px;
}

h5 {
  font-size: 28px;
  color: var(--white-fg);
  margin-bottom: 5px;
  font-size: 20px;
}

p {
  text-align: justify;
  line-height: 1.25;
  font-weight: 400;
  margin-bottom: 1rem;
  margin-top: 0;
}

#start-wishlist p {
  text-align: center;
}
#start-features li b {
  text-transform: uppercase;
  color: var(--third-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
}

#start-features li {
  list-style-type: none;

  margin-bottom: 1rem;
}

.play {
  width: 100%;
  display: block;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.23%;
  height: 0;
  overflow: hidden;
  margin-top: -1px;
  margin-bottom: -1px;
  cursor: pointer;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
}
/*body:before {
  position: fixed;
  top: 0;
  left: 0;
  content: "";
  height: 100%;
  width: 100%;
  background: url("../img/kv-bg.webp") bottom center no-repeat;
  background-size: cover;
  z-index: -1;
}*/

.bgkv {
  background-image: url("../img/kv-bg.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.center {
  text-align: center;
}

.flex {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.flex .center {
  flex: 0 0 50%;
  justify-items: center;
}

.flex .center img {
  width: auto;
  max-height: 90px;
  height: 100%;
  display: block;
  padding: 0.5rem;
  margin: 1rem auto;
}

.faqanswer {
  display: none;
  padding-bottom: 3rem;
}

.togglefaq {
  text-decoration: none;
  color: var(--white-fg);
  display: block;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 300ms;
  text-indent: -2.25rem;
  padding-left: 3.25rem;
}

.togglefaq:hover,
.togglefaq.active {
  background-color: var(--third-color);
  color: var(--first-color);
}

.togglefaq:hover svg {
  color: var(--first-color);
}

.togglefaq svg {
  display: inline-block;
  vertical-align: middle;
  color: var(--white-fg);
  transition: all 300ms;
  width: auto;
  height: 1.5rem;
  margin-right: 0.5rem;
}

.icon-minus {
  color: var(--first-color) !important;
  transform: rotate(90deg);
  transition: all 300ms;
}

.legal section * {
  text-align: left;
}

#svg-sprite {
  display: none;
}
.ajax-loader {
  position: relative;
  top: 5.5rem;
  left: 50%;
  transform-origin: 50% 50%;
  transform: rotate(80deg);
  font-size: 2rem;
  width: 100%;
  height: 0;
  color: var(--fourth-color);
  z-index: 0;
}

.wishlist:hover .ajax-loader {
  color: var(--first-color);
}

.ajax-loader .paw {
  width: 1em;
  height: 1em;
  -webkit-animation: 2050ms pawAnimation ease-in-out infinite;
  animation: 2050ms pawAnimation ease-in-out infinite;
  opacity: 0;
}
.ajax-loader .paw svg {
  width: 100%;
  height: 100%;
}
.ajax-loader .paw .icon {
  fill: currentColor;
}
.ajax-loader .paw:nth-child(odd) {
  transform: rotate(-10deg);
}
.ajax-loader .paw:nth-child(even) {
  transform: rotate(10deg) translate(125%, 0);
}
.ajax-loader .paw:nth-child(1) {
  -webkit-animation-delay: 1.25s;
  animation-delay: 1.25s;
}
.ajax-loader .paw:nth-child(2) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.ajax-loader .paw:nth-child(3) {
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}
.ajax-loader .paw:nth-child(4) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.ajax-loader .paw:nth-child(5) {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}
.ajax-loader .paw:nth-child(6) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.no-cssanimations .ajax-loader .paw {
  opacity: 1;
}

@-webkit-keyframes pawAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes pawAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.parallax > .container > img:not(.logo) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.parallax .container {
  position: static;
  padding: 6rem 6rem 9rem;
}

.mobile-img {
  display: none;
}

@media screen and (max-width: 58.75rem) {
  .flex-container {
    flex-direction: column;
  }

  .parallax > .container > img:not(#logo) {
    display: none;
  }

  .parallax > .container > img.mobile-img {
    display: block !important;
    object-position: right top;
  }
  header {
    padding-bottom: 3rem;
  }

  .parallax .container {
    max-width: 35rem;
    margin-left: 0;
    padding-left: 2rem;
  }

  .bt.wishlist {
    max-width: 100%;
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 81.25rem) {
  /*----NAV----*/

  #primary-nav .menu {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    transition: all 300ms;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--second-color);
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.3);
  }

  .visible {
    display: flex;
    flex-direction: row;
    max-width: 75rem;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
  }
  .visible a {
    flex: 0 0 auto;
  }

  .bt#close,
  .bt#open {
    display: none !important;
  }

  .bt.mainnav {
    text-align: center;
    border-bottom: 0.5rem solid var(--second-color);
    padding-bottom: 0.25rem;
  }
  .bt.mainnav:hover {
    color: var(--highlight-fg) !important;
    border-bottom: 0.5rem solid var(--highlight-fg);
  }

  .bt.mainnav.current {
    border-bottom: 0.5rem solid var(--third-color);
    color: var(--third-color);
  }

  .bt.mainnav.current:hover {
    border-bottom: 0.5rem solid var(--highlight-fg);
  }

  .menu > .navlogo {
    display: none;
  }

  .navlogo img {
    max-height: 7rem;
    width: 100%;
    display: block;
    transition: all 300ms ease;
  }
}
@media screen and (max-width: 81.24rem) {
  header {
    padding-top: 5.9rem;
    min-height: 0;
  }
  /*-----NAV----*/
  #primary-nav .menu {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    transition: all 300ms;
    width: 100%;
    display: flex;
    padding: 0.5rem;
    align-items: center;
    background-color: var(--second-color);
  }

  #primary-nav .menu > .bt {
    position: relative;
    display: block;
    margin: 0 1rem 0 auto;
    line-height: 2rem;
    padding: 0px 0px;
    font-size: 2rem;
    font-weight: 800;
    text-align: right;
    transition: all 300ms;
    color: var(--white-fg);
  }
  #primary-nav .menu > .bt:hover {
    color: var(--highlight-fg) !important;
  }
  #primary-nav svg {
    position: fixed;
    width: 8rem;
    height: 8rem;
    right: -3.5rem;
    top: -1.25rem;
    transition: all 300ms;
    z-index: 1;
    transform: rotate(-85deg);
  }

  #primary-nav .svg-open {
    transform: scale(4.5) rotate(317deg);
    top: 9.5rem;
    right: -1rem;
    transition: all 300ms;
  }

  #primary-nav .menu .bt#close {
    transition: all 300ms;
    font-weight: 400;
  }

  .visible {
    transition: all 300ms;
    top: 6rem;
    position: fixed;
    left: 0;
    background-color: var(--second-color);
    padding: 2rem 0;
    width: 100%;
    height: 100%;
  }

  .bt.mainnav {
    padding: 0.5rem 1.5rem;
    line-height: 1.2;
    text-align: center;
  }

  .bt.mainnav:hover {
    color: var(--highlight-fg);
  }
  .invisible {
    left: 100%;
  }

  .visible > .navlogo {
    display: none;
  }

  .navlogo img {
    max-height: 5rem;
    width: 100%;
    display: block;
  }
}

@media screen and (max-width: 43.75rem) {
  body {
    font-size: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  h2:after {
    border: 3px solid var(--highlight-fg);
  }

  h3:after {
    border: 1px solid var(--highlight-fg);
  }
  .container,
  .flex-text {
    padding: 1.5rem !important;
  }

  .flex {
    flex-direction: column;
    gap: 2rem;
  }

  .flex .center {
    flex: 0 0 100%;
  }

  header {
    padding-top: 20em;
  }
  .parallax .container {
    max-width: 100%;
    margin-left: auto;
  }
}

@media only screen and (max-height: 31.25rem) {
  .bt.mainnav {
    font-size: 1rem;
  }

  .visible {
    padding: 0 0 1rem 0;
  }
}
