/* start file layout.scss*/
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');
body {
  margin: 0px;
  padding: 0px;
  position: relative;
  height: 100%;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0;
  overflow-x: hidden;
}
html {
  height: 100%;
}
.container {
  position: relative;
  margin: 0 auto;
  width: 1280px;
  padding: 0 50px;
  box-sizing: border-box;
}
video, .video-vimeo {
  -webkit-filter: brightness(108.5%);
}
input, select, textarea, button {
  padding: 0;
  margin: 0;
  font-family: 'IBM Plex Sans', sans-serif;
  outline: none;
  resize: none;
}
.heading {
  color: #130f49;
  font-weight: 700;
}
.heading--standard {
  font-size: 58px;
  line-height: 62px;
}
.heading--medium {
  font-size: 68px;
  line-height: 76px;
}
.heading--large {
  font-size: 78px;
  line-height: 86px;
}
.header {
  position: relative;
  margin: 40px 0 0;
  height: 60px;
}
.header__logo {
  position: absolute;
  left: 0;
}
.header__logo img {
  height: 60px;
}
.header__social {
  position: absolute;
  left: 260px;
  top: 15px;
}
.header__social a {
  display: inline-block;
  vertical-align: top;
  margin-left: 30px;
  opacity: 0.3;
}
.header__social a img {
  height: 30px;
}
.header__menu-icon {
  position: absolute;
  right: 0;
  top: 5px;
  width: 50px;
  height: 50px;
  text-align: center;
  z-index: 2;
  transition: 0.2s;
}
.header__menu-icon:after, .header__menu-icon:before {
  content: '';
  position: absolute;
  left: 10%;
  width: 80%;
  height: 4px;
  background: black;
  border-radius: 6px;
}
.header__menu-icon:after {
  top: 12px;
}
.header__menu-icon:before {
  bottom: 12px;
}
.owl-item {
  display: inline-block;
}
/* end file layout.scss*/
/* start file 404.scss*/
/* end file 404.scss*/
/* start file loading.scss*/
.loading {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: white;
  color: #000000;
  font-size: 24px;
}
.loading__video {
  position: relative;
  width: 200px;
  height: 200px;
}
.loading__video:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 10px;
  height: 100%;
  background: white;
  z-index: 1;
}
/* end file loading.scss*/
/* start file popup.scss*/
:root {
  --color-dark: black;
  --td: 150ms;
  --te: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.nav-main {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  top: 0;
  left: -100%;
  position: fixed;
  transition: left 0s calc(var(--td) * 2), transform 0s calc(var(--td) * 2);
  width: 100%;
  z-index: 1000;
}
.nav-main::before, .nav-main::after {
  content: "";
  background-color: white;
  height: 50%;
  left: 0;
  position: absolute;
  transform: translateX(-110%);
  transform-origin: 0 50%;
  transition: transform calc(var(--td) * 2) var(--td) var(--te);
  width: 100%;
  z-index: -100;
}
.nav-main::before {
  top: 0;
}
.nav-main::after {
  bottom: 0;
}
.nav-main .menu__item {
  opacity: 0;
  transform: translateX(-1rem);
  transition: opacity var(--td) var(--te), transform var(--td) var(--te);
}
[id=main-navigation-toggle] {
  opacity: 0;
  position: fixed;
  top: -100%;
  z-index: 1001;
}
[id=main-navigation-toggle] ~ label {
  cursor: pointer;
  position: absolute;
  right: 50%;
  margin-right: -590px;
  top: 5px;
  z-index: 1001;
}
@media screen and (max-width: 1200px) {
  [id=main-navigation-toggle] ~ label {
    display: inherit;
  }
}
@media screen and (max-width: 660px) {
  [id=main-navigation-toggle] ~ label {
    right: 30px;
    top: 25px;
  }
}
[id=main-navigation-toggle] ~ label span {
  display: block;
  height: 2rem;
  padding: 0.5rem;
  position: relative;
  transition: transform calc(var(--td) * 3) var(--te);
  width: 2rem;
}
[id=main-navigation-toggle] ~ label span::before, [id=main-navigation-toggle] ~ label span::after {
  background-color: var(--color-dark);
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  transition: transform calc(var(--td) * 3) var(--te);
  top: 0;
  width: calc(100% - 1rem);
}
[id=main-navigation-toggle] ~ label span::before {
  transform: rotate(0) translateY(-100%);
}
[id=main-navigation-toggle] ~ label span::after {
  transform: rotate(0) translateY(100%);
}
[id=main-navigation-toggle]:checked ~ label span {
  transform: rotate(1turn);
}
[id=main-navigation-toggle]:checked ~ label span::before {
  transform: rotate(45deg);
}
[id=main-navigation-toggle]:checked ~ label span::after {
  transform: rotate(-45deg);
}
[id=main-navigation-toggle]:checked ~ .nav-main {
  left: 0;
  transition: transform 0s;
}
[id=main-navigation-toggle]:checked ~ .nav-main::before, [id=main-navigation-toggle]:checked ~ .nav-main::after {
  transform: translateX(0);
  transition-delay: 0s;
}
[id=main-navigation-toggle]:checked ~ .nav-main::after {
  transition-delay: calc(var(--td) / 2);
}
[id=main-navigation-toggle]:checked ~ .nav-main .menu__item {
  opacity: 1;
  transform: translateX(0);
  transition: opacity calc(var(--td) * 2) var(--te), transform calc(var(--td) * 2) var(--te);
}
[id=main-navigation-toggle]:checked ~ .nav-main .menu__item:nth-child(1) {
  transition-delay: calc(var(--td) * 2 * (1 * 0.25));
  z-index: -1;
}
[id=main-navigation-toggle]:checked ~ .nav-main .menu__item:nth-child(2) {
  transition-delay: calc(var(--td) * 2 * (2 * 0.25));
  z-index: -2;
}
[id=main-navigation-toggle]:checked ~ .nav-main .menu__item:nth-child(3) {
  transition-delay: calc(var(--td) * 2 * (3 * 0.25));
  z-index: -3;
}
[id=main-navigation-toggle]:checked ~ .nav-main .menu__item:nth-child(4) {
  transition-delay: calc(var(--td) * 2 * (4 * 0.25));
  z-index: -4;
}
[id=main-navigation-toggle]:checked ~ .nav-main .menu__item:nth-child(5) {
  transition-delay: calc(var(--td) * 2 * (5 * 0.25));
  z-index: -5;
}
.menu {
  padding: 0;
  position: relative;
  text-align: center;
  z-index: 1;
}
.menu > .menu__item {
  font-size: 36px;
  font-weight: 700;
}
.menu__item {
  display: block;
  position: relative;
}
.menu__item:hover .menu__link::before, .menu__item:hover .menu__link::after {
  animation: blink 1s var(--td) steps(1, end) forwards infinite;
  transform: translateX(calc(100% - 0.5rem));
  transition-duration: calc(var(--td) * 3);
}
.menu__item:hover .menu__link::after {
  transition-delay: calc(var(--td) / 2);
}
.menu__link {
  color: black;
  display: inline-block;
  overflow: hidden;
  padding: 0.5rem 1rem 0.125rem;
  position: relative;
  text-decoration: none;
  transition: color var(--td) var(--te), opacity var(--td) var(--te), transform var(--td) var(--te);
  z-index: 1;
}
.menu:not(:focus-within):not(:hover) .menu__item .menu__link {
  opacity: 1;
  transform: translate(0, 0);
}
.menu__item {
  --pull: 30%;
}
.menu__item .menu__link {
  opacity: 0.25;
  transition-duration: calc(var(--td) * 3);
  transform: translate(0, calc(var(--pull) * -1));
}
.menu__item:hover > .menu__link {
  color: var(--color-secondary);
  opacity: 1;
  transform: translate(0, 0);
}
.menu__item:hover > .menu__link:hover {
  color: var(--color-light);
  transition-delay: 0s;
}
.menu__item:hover ~ .menu__item > .menu__link {
  transition-duration: calc(var(--td) * 3);
  transform: translate(0, var(--pull));
}
@keyframes blink {
  50%, 100% {
    opacity: 0;
  }
}
/* end file popup.scss*/
/* start file unavaliable.scss*/
/* end file unavaliable.scss*/
/* start module id 3 module name About file style.scss*/
.about {
  position: relative;
  margin-top: 50px;
  height: 620px;
  overflow: hidden;
}
.about__cutie {
  position: absolute;
  left: 0;
  top: 0;
  padding-right: 60px;
  width: 50%;
  max-height: 100%;
  box-sizing: border-box;
}
.about__info {
  margin-left: 50%;
  display: flex;
  width: 50%;
  height: 100%;
  align-items: center;
}
.about__info p {
  margin: 40px 0 0;
  padding: 0;
  font-size: 26px;
  color: #757390;
}
/* end module id 3 module name About file style.scss*/
/* start module id 4 module name Casinocuties file style.scss*/
.casinocuties {
  margin-top: 50px;
  text-align: center;
}
.casinocuties__info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 80px;
}
.casinocuties__info div {
  margin-top: 50px;
  font-size: 26px;
  color: #757390;
  text-align: left;
}
.casinocuties__characters {
  margin-top: 70px;
}
.casinocuties__characters iframe {
  width: 100%;
  height: 350px;
}
.casinocuties__characters iframe:nth-child(2) {
  margin-top: 140px;
}
/* end module id 4 module name Casinocuties file style.scss*/
/* start module id 6 module name Casinocuties characters file style.scss*/
/* end module id 6 module name Casinocuties characters file style.scss*/
/* start module id 5 module name Casinocuties texts file style.scss*/
/* end module id 5 module name Casinocuties texts file style.scss*/
/* start module id 9 module name Categories file style.scss*/
/* end module id 9 module name Categories file style.scss*/
/* start module id 8 module name Creature Rarity file style.scss*/
.creature-rarity {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 50px;
}
.creature-rarity__content {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
}
.creature-rarity__desc {
  margin: 40px 0 0;
  padding: 0;
  font-size: 26px;
  color: #757390;
}
.creature-rarity__caregories {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 50px;
}
.creature-rarity__caregories a {
  display: block;
  margin-top: 30px;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
  color: #130f49;
}
.creature-rarity__caregories a span {
  border-bottom: 6px solid;
  border-color: white;
}
.creature-rarity__caregories a.current span {
  border-color: #ffc21d;
}
.creature-rarity iframe {
  margin-top: -10%;
  height: 130%;
}
/* end module id 8 module name Creature Rarity file style.scss*/
/* start module id 7 module name Double block file style.scss*/
.double-block {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 100px;
}
.double-block div {
  position: relative;
  padding-left: 180px;
}
.double-block div:nth-child(2) {
  margin-top: 140px;
}
.double-block__icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 120px;
}
.double-block p {
  margin: 40px 0 0;
  padding: 0;
  font-size: 26px;
  color: #757390;
}
/* end module id 7 module name Double block file style.scss*/
/* start module id 2 module name Footer file style.scss*/
.footer {
  position: relative;
  padding: 50px 0;
}
.footer__rights p {
  margin: 0;
  font-size: 22px;
  color: #757390;
}
.footer__rights p strong {
  color: #130f49;
  font-weight: normal;
}
.footer__social {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -15px;
}
.footer__social a {
  display: inline-block;
  vertical-align: top;
  margin-left: 30px;
  opacity: 0.3;
}
.footer__social a img {
  height: 30px;
}
/* end module id 2 module name Footer file style.scss*/
/* start module id 11 module name Subscribe file style.scss*/
.subscribe {
  margin-top: 80px;
  padding: 50px 50px 70px;
  background: #dff5fe;
  border-radius: 12px;
  text-align: center;
}
.subscribe p {
  font-size: 26px;
  color: #757390;
}
.subscribe__form {
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin-top: 20px;
  padding-right: 180px;
  background: white;
  width: 100%;
  max-width: 900px;
  height: 80px;
  box-sizing: border-box;
  border-radius: 12px;
  overflow: hidden;
}
.subscribe__form input {
  padding-left: 30px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: none;
  font-size: 22px;
}
.subscribe__form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 160px;
  height: 100%;
  background: #130f49;
  border-radius: 12px;
  border: none;
  font-size: 19px;
  color: white;
}
/* end module id 11 module name Subscribe file style.scss*/
/* start module id 10 module name Timeline file style.scss*/
.roadmap {
  margin-top: 150px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 50px;
  text-align: center;
}
.roadmap:before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 100%;
  height: 6px;
  background: #eff3f5;
  border-radius: 6px;
}
.roadmap__item {
  text-align: center;
}
.roadmap__date {
  display: inline-block;
  vertical-align: top;
  width: 100px;
  height: 44px;
  border-radius: 12px;
  line-height: 44px;
  font-size: 20px;
  font-weight: 600;
  color: #130f49;
}
.roadmap__date--color-1 {
  background: #fce9c8;
}
.roadmap__date--color-2 {
  background: #d4c8fc;
}
.roadmap__date--color-3 {
  background: #fccad5;
}
.roadmap p {
  font-size: 26px;
  font-weight: 600;
  color: #130f49;
}
/* end module id 10 module name Timeline file style.scss*/
/* start module id 1 module name Top file style.scss*/
.start {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 100px;
}
.start__info {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
}
.start__info p {
  display: block;
  font-size: 28px;
  color: #130f49;
}
.start__info p strong {
  font-weight: normal;
  display: inline-block;
  position: relative;
}
.start__info p strong:before {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: -10px;
  width: auto;
  height: 6px;
  background: #ffc21d;
}
.start__button {
  display: inline-block;
  vertical-align: top;
  margin-top: 30px;
  padding: 0 40px;
  background: #130f49;
  border-radius: 12px;
  line-height: 74px;
  border: none;
  font-size: 19px;
  text-decoration: none;
  color: white;
}
.start__cutie {
  min-height: 700px;
  text-align: center;
}
/* end module id 1 module name Top file style.scss*/
.sb-form__loading-container {
  position: relative;
  margin: 30px 0px 0px;
  height: 95px;
  line-height: 95px;
  display: none;
}
.sb-form__report-container {
  position: relative;
  margin: 30px 0px 0px;
  height: 95px;
  line-height: 95px;
  color: #130f49;
  font-size: 24px;
  display: none;
}
.spinner {
  margin: 0px auto;
  width: 70px;
  text-align: center;
}
.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #130f49;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/* start file responsive.scss*/
@media screen and (max-width: 1300px) {
  .container {
    width: auto;
  }
  .heading--standard {
    font-size: 48px;
    line-height: 54px;
  }
  .heading--medium {
    font-size: 60px;
    line-height: 70px;
  }
  .heading--large {
    font-size: 62px;
    line-height: 72px;
  }
  .double-block {
    grid-gap: 80px;
  }
  .double-block__icon {
    width: 110px;
  }
  .double-block div {
    padding-left: 140px;
  }
  [id=main-navigation-toggle] ~ label {
    right: 40px;
    margin-right: 0;
  }
}
@media screen and (max-width: 1200px) {
  .start {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
  .start__info {
    padding: 100px 50px 0;
    box-sizing: border-box;
    text-align: center;
  }
  .start__cutie {
    min-height: 600px;
  }
  .casinocuties__info {
    margin-top: 50px;
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }
  .casinocuties__info div {
    margin: 0;
    text-align: center;
  }
  .double-block {
    grid-template-columns: 1fr;
    grid-gap: 80px;
  }
  .double-block__icon {
    width: 120px;
  }
  .double-block div {
    padding-left: 160px;
  }
  .double-block div:nth-child(2) {
    margin: 0;
  }
  .about {
    display: inline-block;
    vertical-align: top;
    height: auto;
    overflow: inherit;
  }
  .about__cutie {
    display: inline-block;
    vertical-align: top;
    position: relative;
    padding-right: 0;
    width: 100%;
    max-height: 600px;
  }
  .about__info {
    display: inline-block;
    vertical-align: top;
    margin-left: 0;
    width: 100%;
    height: auto;
    text-align: center;
  }
  .creature-rarity {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .creature-rarity iframe {
    margin-top: 0;
    max-height: 600px;
  }
}
@media screen and (max-width: 1000px) {
  .heading--standard {
    font-size: 42px;
    line-height: 46px;
  }
  .heading--medium {
    font-size: 42px;
    line-height: 46px;
  }
  .heading--large {
    font-size: 42px;
    line-height: 46px;
  }
}
@media screen and (max-width: 660px) {
  .header__social {
    display: none;
  }
  [id=main-navigation-toggle] ~ label {
    right: 30px;
    top: 6px;
  }
  .container {
    padding: 0 30px;
  }
  .start__info {
    padding: 60px 0;
  }
  .start__info p {
    font-size: 22px;
  }
  .start__cutie {
    min-height: auto;
  }
  .about__info p {
    font-size: 22px;
  }
  .about__cutie {
    max-height: 500px;
  }
  .casinocuties__info div {
    font-size: 22px;
  }
  .double-block {
    text-align: center;
  }
  .double-block__icon {
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 30px;
    width: 120px;
  }
  .double-block .heading {
    display: inline-block;
    width: 100%;
  }
  .double-block p {
    font-size: 22px;
  }
  .double-block div {
    padding-left: 0;
  }
  .creature-rarity {
    grid-gap: 0;
  }
  .creature-rarity__desc {
    font-size: 22px;
  }
  .creature-rarity__caregories a {
    font-size: 26px;
  }
  .creature-rarity iframe {
    height: 400px;
  }
  .roadmap {
    margin-top: 80px;
  }
  .subscribe {
    padding: 30px 30px 40px;
  }
  .subscribe p {
    font-size: 18px;
  }
  .subscribe__form {
    padding-right: 0;
    height: auto;
    background: transparent;
    border-radius: 0;
  }
  .subscribe__form:before {
    display: none;
  }
  .subscribe__form input {
    padding: 0;
    height: 72px;
    background: white;
    font-size: 18px;
    border-radius: 12px;
    text-align: center;
  }
  .subscribe__form button {
    margin-top: 20px;
    position: relative;
    top: auto;
    width: 100%;
    height: 80px;
  }
  .footer {
    text-align: center;
  }
  .footer__rights p {
    font-size: 20px;
  }
  .footer__social {
    position: relative;
    right: auto;
    top: auto;
    margin-top: 30px;
  }
  .footer__social a {
    margin: 0 15px;
  }
}
/* end file responsive.scss*/


