@font-face {
  font-family: namecat;
  src: url(../fonts/namecat.ttf) format("truetype");
}

a,
body,
div,
footer,
h1,
h2,
h3,
h4,
h5,
h6,
header,
html,
img,
nav,
p,
s,
span,
strong {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

footer,
header,
nav {
  display: block;
}

* {
  box-sizing: border-box;
}

body,
html {
  font-family: Poppins, sans-serif;
  font-weight: 400;
  background-color: #fff;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #ccc;
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0;
  color: #fff;
  font-weight: 700;
}

p {
  font-size: 15px;
  line-height: 30px;
  color: #fff;
}

img {
  width: 100%;
  overflow: hidden;
}

body,
html {
  background: #fff;
  font-family: Poppins, sans-serif;
}

p {
  font-size: 15px;
  color: #666;
  line-height: 30px;
  margin-bottom: 0;
}

::selection {
  background: #e75e8d;
  color: #fff;
}

::-moz-selection {
  background: #e75e8d;
  color: #fff;
}

/* MODAL STYLES
-------------------------------*/
#join-us-modal {
  /* modals are hidden by default */
  display: none;

  /* modal container fixed across whole screen */
  position: fixed;
  inset: 0;

  /* z-index must be higher than everything else on the page */
  z-index: 10000;

  /* semi-transparent black background exposed by padding */
  background-color: rgba(0, 0, 0, .75);
  padding: 40px;

  /* enables scrolling for tall modals */
  overflow: auto;
}

#join-us-modal.open {
  display: block;
}

#join-us-modal-body {
  padding: 20px 20px 0px 20px;
  background: #fff;
  max-width: 100%;
  max-width: 320px;
  overflow: hidden;
  margin: auto;
  position: relative;
}

#join-us-modal-body #join-us-modal-close {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 23px;
  color: #000;
}

body.join-us-modal-modal-open {
  /* body overflow is hidden to hide main scrollbar when modal window is open */
  overflow: hidden;
}

#join-us-modal .logo img {
  height: 100px;
  width: auto;
  margin: auto;
  display: block;
}

#join-us-modal .content {
  text-align: center;
  margin: 20px auto;
}

#join-us-modal .content strong {
  color: #e75e8d;
}

#join-us-modal .form-group {
  margin: 0px auto 20px auto;
}

#join-us-modal .form-group input {
  width: 100%;
  padding: 10px;
}

#join-us-modal .form-group button {
  width: 100%;
  border-radius: 10px;
  background-color: #39c;
  border: 1px solid #005b88;
  padding: 10px;
  color: white;
}

#join-us-modal .message {
  color: white;
  padding: 10px;
  text-align: center;
  border-radius: 10px;
}

#join-us-modal .message.hide {
  display: none;
}

#join-us-modal .message.error-message {
  background-color: red;
}

#join-us-modal .message.sent-message {
  background-color: green;
}

.main-button a {
  font-size: 24px;
  color: #fff;
  background-color: #e75e8d;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 25px;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.main-button a:hover {
  background-color: #fff;
  color: #e75e8d;
}

@-webkit-keyframes dot {
  50% {
    -webkit-transform: translateX(96px);
    transform: translateX(96px);
  }
}

@keyframes dot {
  50% {
    -webkit-transform: translateX(96px);
    transform: translateX(96px);
  }
}

@-webkit-keyframes dots {
  50% {
    -webkit-transform: translateX(-31px);
    transform: translateX(-31px);
  }
}

@keyframes dots {
  50% {
    -webkit-transform: translateX(-31px);
    transform: translateX(-31px);
  }
}

.header-area {
  background-color: transparent;
  position: fixed;
  height: 70px;
  top: 15px;
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.header-area .main-nav {
  min-height: 80px;
  background: 0 0;
  display: flex;
  padding: 15px 0;
  border-radius: 50px;
}

.header-area .main-nav .logo {
  border-right: 1px solid #27292a;
  flex-basis: 25%;
  margin-right: 5%;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header-area .main-nav .logo img {
  width: 191px;
}

.header-area .main-nav .nav {
  display: inline-flex;
  flex-basis: 70%;
  justify-content: flex-end;
  vertical-align: middle;
  text-align: right;
  margin-top: 0;
  margin-right: 0;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area.header-sticky {
  min-height: 70px;
  z-index: 200;
}

@media (max-width: 1200px) {
  .header-area .main-nav:before {
    display: none;
  }
}

@media (max-width: 992px) {
  .header-area {
    top: 0;
  }

  .header-area .main-nav {
    background-color: transparent;
    border-radius: 0;
  }

  .header-area .main-nav .nav {
    height: auto;
    flex-basis: 100%;
  }

  .header-area .main-nav .logo {
    position: absolute;
    left: 30px;
    top: 15px;
  }

  .header-area {
    padding: 0 15px;
    height: 80px;
    box-shadow: none;
    text-align: center;
  }

  .header-area .container {
    padding: 0;
  }

  .header-area .logo {
    margin-left: 0;
  }

  .header-area .main-nav {
    overflow: hidden;
  }

  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0;
  }

  .header-area.header-sticky .nav {
    margin-top: 65px !important;
    text-align: center;
  }
}

footer p {
  text-align: center;
  padding: 10px 0;
  color: #fff;
  font-weight: 300;
}

footer p a {
  color: #fff;
  transition: all 0.3s;
}

footer p a:hover {
  color: #ec6090;
}

body {
  overflow-x: hidden;
}

@media (max-width: 767px) {
  body .page-content {
    padding: 0 30px;
  }

  .game-name {
    text-align: center;
  }

  .game-name h4 {
    font-size: 35px;
  }
}

@media (max-width: 992px) {
  .header-area .main-nav #subscribe {
    display: none;
  }
}

@media (max-width: 1200px) {
  .header-area .main-nav .logo {
    margin-right: 30px;
    border-right: none;
  }
}

.notify-me {
  z-index: 120;
  border: none;
  color: #000;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  background-color: #f1f1f1;
  border-radius: 8px;
  border: 5px solid #fff;
  transition: all 0.3s ease-in-out;
  animation: change-bg-color 5s linear infinite;
}

.notify-me:hover {
  border: 5px solid #e75e8d;
  animation: none;
}

.notify {
  animation: notify 3s linear infinite;
}

@keyframes notify {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes change-bg-color {
  0% {
    background-color: rgb(51, 153, 204);
  }

  50% {
    background-color: rgb(231, 94, 141);
  }

  100% {
    background-color: rgb(51, 153, 204);
  }
}

.page-content {
  box-sizing: border-box;
  border: 5px solid #000;
}

.page-content h1 {
  background-color: #000;
  text-align: center;
  width: fit-content;
  color: #fff;
  margin: 0 auto 50px auto;
  padding: 20px;
  border-radius: 20px;
  font-family: namecat;
}

.page-content p {
  font-size: 24px;
  line-height: 32px;
  font-family: Poppins;
}

.highlight {
  background-color: #fa2164;
  color: #fff;
  padding: 5px;
  border-radius: 10px;
  margin-bottom: 20px;
  width: fit-content;
}

.page-1 {
  margin-top: 11rem;
  border-radius: 20px 20px 0 0 !important;
  border-bottom: 0 !important;
  position: relative;
}

.page-1 .game-logo {
  position: absolute;
  left: 50%;
  top: 17rem;
  width: 33%;
  transform: translate(-50%, -50%);
}

.page-1 .game-logo img {
  width: 100%;
  filter: grayscale(100%);
  -webkit-filter: drop-shadow(1px 1px 1px #222);
  filter: drop-shadow(1px 1px 1px #222);
}

.page-1 .icon-cat {
  position: absolute;
  top: -4.4rem;
  right: 2rem;
  width: 82px;
}

.page-1 .icon-flag {
  position: absolute;
  top: -4.4rem;
  width: 80px;
}

.page-1 .icon-flag-it {
  position: absolute;
  left: 2rem;
}

.page-1 .icon-flag-en {
  position: absolute;
  left: 8rem;
}

.page-1 .icon-flag img.selected {
  filter: drop-shadow(0px 0px 12px rgba(52, 152, 204, 0.8));
}

.page-1 .game-image {
  background-size: contain;
  background-image: url(../img/game-cover.jpg);
  height: 820px;
  background-position: center bottom;
  background-repeat: no-repeat;
  border-radius: 14px 14px 0 0;
  background-color: #39c;
}

.cards-wrapper {
  position: relative;
  top: 200px;
  height: 500px;
}

.cards-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 200%;
  z-index: 100;
}

.card {
  background: #fff;
  position: absolute;
  height: 311px;
  width: 268px;
  top: -172px;
  left: -134px;
  border-top: 5px solid #000;
  border-right: 5px solid #000;
  border-bottom: 5px solid #000;
  border-left: 5px solid #000;
  border-radius: 10px;
  transition: transform 0.5s;
  transform-style: preserve-3d;
  transform-origin: center;
  transform: scale(1.5);
}

.card .card-content {
  position: absolute;
  background-size: contain;
  height: 100%;
  width: 100%;
  z-index: 2;
  background-color: #fff;
}

.page-2 {
  margin: 0 !important;
  border-radius: 0 !important;
  border-bottom: 0 !important;
  background-color: #39c;
}

.page-3 {
  margin: 0 !important;
  border-radius: 0 !important;
  border-bottom: 0 !important;
  overflow: hidden;
}

.game-presentation h1 {
  color: #fff;
  font-family: namecat;
  font-size: 55px;
  padding: 10px;
  background-color: #000;
  border-radius: 20px;
  text-align: center;
  display: block;
  margin: 50px auto 50px auto;
  width: 300px;
}

.game-presentation .game-description {
  margin: 50px 30px 50px 50px;
}

.game-presentation .game-description p {
  font-size: 24px;
  padding: 4px;
  font-family: Poppins;
}

.game-presentation .game-description p span,
.game-presentation .game-description p strong {
  font-weight: 700;
}

.page-4 {
  border-radius: 0 !important;
  border-bottom: 0 !important;
}

.page-4 .game-info {
  overflow: hidden;
}

.page-4 .game-info .col {
  padding: 20px;
  border-right: 5px solid #000;
  font-family: namecat;
}

.page-4 .game-info .col:first-child {
  background-color: #39c;
}

.page-4 .game-info .col:nth-child(2) {
  background-color: #fbbd58;
}

.page-4 .game-info .col:last-child {
  border-right: 0;
  background-color: #fa2164;
}

.page-4 .game-info .col p {
  font-size: 32px;
  text-align: center;
  margin: 20px auto;
  text-transform: capitalize;
  color: #fff;
}

.page-4 .game-info .col p strong {
  font-size: 2.75rem;
}

.page-5 {
  border-radius: 0 !important;
  background-color: #ededed !important;
  border-top: 0 !important;
}

.page-5 .game-cats {
  padding: 50px 0 0 0;
  background-image: url(../img/bg-cats.gif);
  background-size: cover;
  background-color: #39c;
  background-repeat: no-repeat;
  overflow: hidden;
}

.page-5 .game-cats h1 {
  background-color: #000;
  width: 230px;
  color: #fff;
  margin: auto;
  padding: 10px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  font-family: namecat;
}

.page-5 .game-cats h2 {
  font-size: 44px;
  text-align: center;
  margin: 50px;
  font-family: Poppins;
  font-weight: 700;
  color: #fff;
}

.page-5 .game-cats #cats {
  position: relative;
  height: 750px;
}

.page-5 .game-cats #cats .cats-row {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.page-5 .game-cats #cats .cats-row img {
  width: 100%;
}

.page-5 .game-cats #cats .cats-row:nth-child(1) {
  top: 0;
}

.page-5 .game-cats #cats .cats-row:nth-child(2) {
  top: 25%;
}

.page-5 .game-cats #cats .cats-row:nth-child(3) {
  top: 50%;
}

.page-6 {
  border-radius: 0 !important;
  background-color: #ddd6d5 !important;
  border-top: 0 !important;
}

.page-6 .components {
  padding: 0;
}

.page-6 .components h1 {
  background-color: #000;
  width: 320px;
  color: #fff;
  margin: 55px auto 0 auto;
  padding: 10px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
}

.page-6 .components h2 {
  color: #000;
  margin: auto;
  display: flex;
  justify-content: center;
}

.page-6 .components-image {
  background-image: url(../img/inside-the-box/components.jpg);
  background-size: cover;
  background-position: center;
  height: 720px;
}

.page-7 {
  border-radius: 0 !important;
  border-bottom: 0 !important;
}

.page-7 .who-is-gattara .content {
  width: 72%;
}

.page-7 .who-is-gattara {
  padding: 50px;
  background-image: url(../img/gattara.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 270px;
}

.page-7 .who-is-gattara p {
  font-family: Poppins;
  font-size: 24px;
  padding: 10px;
}

.page-8 {
  border-radius: 0 !important;
}

.page-8.game-rules {
  overflow: hidden;
}

.page-8 .game-rules .col-lg:nth-child(1) {
  border-right: 5px solid #000;
}

.page-8 .game-rule {
  margin: 50px 20px 20px 20px;
}

.page-8 .game-rules img {
  margin: auto;
  display: block;
}

.page-8 .game-rules .col-lg:nth-child(1) img {
  width: 92%;
}

.page-8 .game-rules .col-lg:nth-child(2) img {
  width: 72%;
  margin-top: 40px;
}

.page-8 .game-rules .disclaimer {
  text-align: center;
  color: #999;
  display: block;
  font-size: 12px;
}

.page-8 .game-rules .info {
  margin-top: 20px;
}

.page-8 .game-rules .info p {
  font-size: 20px;
}

.page-8 .game-rules .info p img {
  width: 20px !important;
  float: left;
  margin: 5px 12px 0 0 !important;
}

.game-presentation .game-rules p {
  font-size: 32px;
  line-height: 32px;
  font-family: Poppins;
}

.page-10 {
  border-radius: 0 !important;
  background-color: orange !important;
  color: #fff;
  position: relative;
}

.page-10 h1 {
  font-size: 32px;
  position: absolute;
  width: max-content;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.page-10 h2 {
  font-size: 28px;
  text-align: center;
  padding: 0 25px 0 25px;
  margin-top: 82px;
  color: #000;
}

.page-10 h3 {
  font-size: 25px;
  text-align: center;
  padding: 25px;
  color: #000;
}

.page-10 img {
  width: 30%;
}

.page-10 .contact-me {
  text-align: center;
  color: white;
  padding: 10px;
  background-color: #000;
}

.page-10 .social-icons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  padding: 20px 0px 20px 0px;
}

.page-10 .social-icons img {
  width: 42px;
}

.page-10 .share {
  padding: 0px 0px 20px 0px;

}

.page-10 p {
  font-size: 16px;
  color: black;
  text-align: center;
  padding: 20px;
  color: white;
  background-color: #000;
}

.page-10 .share img {
  width: 72px;
  margin: 20px auto 0px auto;
  display: block;
}

footer .container {
  background-color: #fff;
}

footer .container a,
footer .container p {
  color: #000 !important;
}

.marquee {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.marquee h1 {
  display: inline-block;
  animation: marquee 30s linear infinite;
  background: 0 0;
  margin: 0;
  color: #fff;
  font-family: namecat;
  white-space: nowrap;
  font-size: 55px;
}

.meow-cards {
  background-color: #fa2164;
  color: #fff;
  border-radius: 12px;
  padding: 2px 5px;
  font-weight: 400 !important;
}

@keyframes marquee {
  0% {
    transform: translateX(100vw);
  }

  100% {
    transform: translateX(-100%);
  }
}

@media only screen and (max-width: 991px) {
  .page-1 .game-image {
    background-size: contain;
    height: 620px;
  }

  .page-1 .game-logo {
    top: 13rem;
    width: 52%;
  }

  .page-8 .game-rules .col-lg:nth-child(1) {
    border-bottom: 5px solid #000;
    border-right: 0;
  }

  .page-5 .game-cats h2 {
    font-size: 2.2rem;
  }

  .page-10 h3 {
    font-size: 20px;
  }

  .page-5 .game-cats #cats {
    height: 480px;
  }

  .page-5 .game-cats #cats .cats-row:nth-child(1) {
    top: -10%;
  }

  .page-5 .game-cats #cats .cats-row:nth-child(2) {
    top: 20%;
  }

  .page-5 .game-cats #cats .cats-row:nth-child(3) {
    top: 55%;
  }
}

@media only screen and (max-width: 768px) {
  .container {
    max-width: fit-content;
  }

  .page-1 .game-logo {
    top: 13rem;
    width: 48%;
  }

  .page-7 .who-is-gattara {
    background-size: 232px;
  }

  .page-7 .who-is-gattara .content {
    width: 75%;
  }
}

@media only screen and (max-width: 620px) {
  .page-content p {
    font-size: 18px !important;
    line-height: 26px !important;
  }

  .page-7 .who-is-gattara {
    background-size: 200px;
    padding: 20px;
  }

  .page-1 .game-logo {
    top: 7rem;
  }

  .page-5 .game-cats h2 {
    font-size: 1.8rem;
    margin: 50px auto 80px auto;
  }

  .cards-content {
    width: 250%;
  }

  .page-4 .game-info .col {
    padding: 12px;
  }

  .game-presentation .game-description {
    margin: 0 30px 50px 50px;
  }

  .page-10 h1 {
    font-size: 25px;
  }

  .page-10 h3 {
    font-size: 25px;
  }

  .page-10 img {
    width: 55%;
  }
}

@media only screen and (max-width: 540px) {
  .page-1 {
    margin-top: 14rem;
  }

  .notify-me {
    font-size: 20px !important;
  }

  .page-1 .game-logo {
    top: 5rem;
  }

  .page-1 .game-image {
    height: 540px;
    background-size: 111%;
  }

  .page-7 .who-is-gattara {
    background-size: 162px;
  }

  .page-4 .game-info .col p strong {
    font-size: 2.2rem;
  }

  .cards-wrapper {
    top: 155px;
    height: 400px;
  }

  .cards-content {
    width: 280%;
  }

  .card {
    width: 268px;
    height: 268px;
  }

  .game-presentation .game-description {
    margin: 0 20px 20px 20px;
  }

  .page-4 .game-info .col p {
    margin: 10px auto;
  }

  .page-10 {
    border-top: 0;
  }

  .page-10 img {
    width: 77%;
  }

  .page-5 .game-cats h2 {
    font-size: 1.5rem;
  }

  .page-6 .components-image {
    height: 520px;
  }

  .page-5 .game-cats #cats .cats-row img {
    width: 150%;
  }

  .meow-cards {
    padding: 2px;
  }

  .marquee h1 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 440px) {
  .notify-me {
    font-size: 25px !important;
    padding: 5px 10px !important;
  }

  .game-description p {
    line-height: 24px !important;
  }

  .who-is-gattara h1 {
    margin: 0 auto 30px auto;
  }

  .page-1 .game-logo {
    width: 57%;
  }

  .page-1 .game-image {
    height: 540px;
    background-size: 132%;
  }

  .page-4 .game-info .col {
    padding: 5px;
  }

  .game-presentation .game-description {
    margin: 0 10px 10px 10px;
  }

  .page-7 .who-is-gattara .content {
    width: 100%;
  }

  .page-7 .who-is-gattara {
    padding-bottom: 200px;
    background-size: 200px;
    background-position: right 132%;
  }

  .meow-cards {
    background-color: transparent;
    color: #fa2164;
  }

  .cards-wrapper {
    height: 350px;
  }

  .cards-content {
    width: 350%;
  }

  .page-6 .components-image {
    background-size: 960px;
  }

  .game-description p.highlight {
    font-size: 18px !important;
    margin-bottom: 10px;
    text-align: center;
  }

  .page-10 h1 {
    font-size: 18px;
  }

  footer p:first-child {
    margin: 20px 0 0 0;
  }

  footer p:last-child {
    margin: 0 0 20px 0;
  }

  footer p {
    padding: 5px 0;
    font-size: 12px;
    line-height: 18px;
  }

  .page-8 .game-rules .col-lg img {
    width: 100% !important;
  }

  .page-8 .game-rules .disclaimer {
    margin-top: 20px;
  }

  .page-10 h3 {
    font-size: 14px !important;
  }
}

@media only screen and (max-width: 390px) {
  .marquee h1 {
    font-size: 25px;
  }

  .page-1 .game-image {
    background-size: 155% !important;
  }

  .notify-me {
    font-size: 18px !important;
    padding: 10px 20px !important;
  }

  .page-5 .game-cats #cats .cats-row img {
    width: 165%;
  }

  .page-4 .game-info .col p {
    font-size: 16px !important;
  }
}

@media only screen and (max-width: 360px) {
  .page-1 .game-logo {
    width: 72%;
  }

  .notify-me {
    font-size: 22px !important;
  }

  .game-presentation p {
    font-size: 16px !important;
  }

  .page-4 .game-info .col p {
    font-size: 14px !important;
  }

  .cards-content {
    width: 390%;
  }

  .page-8 .game-rules .disclaimer {
    font-size: 14px !important;
  }
}