@font-face {
  font-family: 'Inter';
  src: url('/comparajocuri-fonts/comparajocuri-inter-regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('/comparajocuri-fonts/comparajocuri-inter-bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('/comparajocuri-fonts/comparajocuri-inter-semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}

html {
  font-family: "Inter", sans-serif;
  color: #fff;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

h1 {
  font-size: 36px;
}

@media (max-width: 1220px) {
  h1 {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  h1 {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 20px;
  }
}

h2 {
  font-size: 32px;
}

@media (max-width: 1220px) {
  h2 {
    font-size: 32px;
  }
}

@media (max-width: 991px) {
  h2 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-size: 20px;
}

p {
  font-size: 15px;
}

nav ul li a:hover {
  text-decoration: underline;
}

.ptb40 {
  padding: 40px 0;
}

.mb80 {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .mb80 {
    margin-bottom: 40px;
  }
}

.hmb {
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .hmb {
    margin-bottom: 25px;
  }
}

.pmb {
  margin-bottom: 20px;
}

.padb80 {
  padding-bottom: 80px;
}

.play-now {
  border-radius: 100px;
  box-shadow: 0 0 10px 0 rgba(243, 117, 78, 0.5);
  background: #cf6316;
  color: #fff;
  width: 100%;
  height: 37px;
  text-align: center;
  font-size: 16px;
  line-height: 37px;
  font-weight: 900;
  font-family: "Neuton", sans-serif;
  text-transform: uppercase;
  transition: 0.3s;
}

.play-now:hover {
  background: #13101c;
}

.form input {
  width: 100%;
  height: 46px;
  background-color: #fff;
  text-indent: 20px;
}

.form textarea {
  width: 100%;
  height: 72px;
  padding: 20px;
}

.form textarea::placeholder,
.form input::placeholder {
  font-family: "Lora", sans-serif;
  color: #999999;
}

.terms {
  padding: 80px 0;
}

.terms .container {
  padding: unset;
}

.terms h1 {
  margin-bottom: 40px;
}

.terms h2 {
  margin: 20px 0;
}

.terms li {
  font-size: 20px;
}

/*menu-mobile*/
.mobile-menu {
  display: none;
}

.menu-wrap .toggler {
  position: absolute;
  top: 0;
  right: 20px;
  cursor: pointer;
  z-index: 2;
  width: 50px;
  height: 50px;
  opacity: 0;
}

.menu-wrap .hamburger {
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 1;
  padding: 10px;
  width: 47px;
  height: 39px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/*hamburger middle line */
.menu-wrap .hamburger>span {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: transform 0.4s ease;
  padding: unset !important;
}

/*Hamburger top and bottom line*/
.menu-wrap .hamburger>span::before,
.menu-wrap .hamburger>span::after {
  content: "";
  position: absolute;
  top: -10px;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.menu-wrap.open .hamburger>span,
.menu-wrap.open .hamburger>span::before,
.menu-wrap.open .hamburger>span::after {
  background-color: #fff;
}

/*moves line down*/
.menu-wrap .hamburger>span::after {
  top: 10px;
}

/*toggler animation*/
.menu-wrap.open .hamburger>span {
  transform: rotate(135deg);
}

/*turns line into X */
.menu-wrap.open .hamburger>span::before,
.menu-wrap.open .hamburger>span::after {
  top: 0;
  transform: rotate(90deg);
}

/* Rotate on hover when checked*/
.menu-wrap.open:hover+.hamburger>span {
  transform: rotate(225deg);
}

/* Show Menu */
body header .menu-wrap.open .menu {
  visibility: visible;
}

body header .menu-wrap.open .menu>div {
  transform: scale(1.1);
  transition-duration: 0.5s;
}

body header .menu-wrap.open .menu>div>div {
  opacity: 1;
  transition: opacity 0.4s ease;
}

.menu-wrap .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  visibility: hidden;
  justify-content: center;
}

.menu-wrap .menu>div {
  background-color: rgba(39, 39, 38, 0.9);
  width: 200vw;
  height: 200vw;
  overflow: hidden;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex: none;
  transform: scale(0);
  transition: all 0.4s ease;
}

.menu-wrap .menu>div>div {
  max-width: 90vw;
  max-height: 100vh;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menu-wrap .menu>div>div>ul>li {
  list-style: none;
  font-size: 1.5rem;
  padding: 1rem;
}

.menu-wrap .menu>div>div>ul>li>a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.4s ease;
}

.menu div div ul {
  flex-direction: column;
  gap: 10px;
}

.status {
  display: none;
  line-height: 46px;
  font-weight: bold;
}

.form.active .status {
  display: block;
}

/**************************/

@media (max-width: 1200px) {
  body .container {
    padding: 0 20px;
  }
}

@media (max-width: 960px) {
  body .desktop-menu {
    display: none;
  }

  body .mobile-menu {
    display: block;
  }
}

@media (max-width: 768px) {

  body .terms {
    padding: 40px 0;
  }

  body .terms h1 {
    margin-bottom: 20px;
  }

  img {
    width: 100%;
  }

  body footer .external-links,
  body footer .links-nav ul,
  body footer .links-polytics ul {
    flex-wrap: wrap;
    gap: 20px;
  }

  body .padb80 {
    padding-bottom: 40px;
  }

  body .wrapper-header.other {
    background-position: center;
    padding-bottom: 20px;
  }

}

/* ---- reset ---- */
body {
  margin: 0;

}

canvas {
  display: block;
  vertical-align: bottom;
}

/* ---- particles.js container ---- */
#particles-js {
    z-index: 0;
    position: fixed;
    height: 100vh;
    top: 0;
    left: 0;
    width: 100vw;
}

/* ---- stats.js ---- */
.count-particles {
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13E8E9;
  font-size: .8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
  display: none;
}

.js-count-particles {
  font-size: 1.1em;
}

#stats,
.count-particles {
  -webkit-user-select: none;
  margin-top: 5px;
  margin-left: 5px;
}

#stats {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.count-particles {
  border-radius: 0 0 3px 3px;
}

nav,
footer,
main,
aside {
  display: block;
  position: relative;
  z-index: 1;
}

header{
  display: block;
  position: relative;
  z-index: 2;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}