@font-face {
  font-family: obraLetra;
  src: url("../../static/font/KCObraLetraRegular.woff") format("woff");
}

body {
  padding: 0;
  margin: 0;
  background-color: #130d0a;
  font-family: obraLetra, sans-serif;
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

#hero {
  height: 800px;
  overflow: hidden;
  position: relative;
}

#content {
  background-color: #130d0a;
}

.layer {
  background-position: bottom center;
  background-size: auto;
  background-repeat: no-repeat;
  width: 100%;
  height: 800px;
  position: fixed;
  z-index: -1;
  opacity: 1;
}

.layer.animated-1 {
  transition: all 1s ease-in-out !important;
  opacity: 1;
}

.layer.animated-1.animated {
  transition: all 1s ease-in-out !important;
  transform: scale(1.1);
  opacity: 0;
}

#hero-mobile {
  display: none;
  background: url("../../static/imgs/full-illustration.png") no-repeat center
    bottom/cover;
  height: 320px;
}

.first-section {
  padding: 50px 0 20px 0;
}

.text-header {
  font-size: 50px;
  text-align: center;
}

h1 {
  line-height: 120%;
  margin-bottom: 30px;
}

p {
  color: #ede0d5;
  font-size: 18px;
  line-height: 150%;
}

#hero,
.layer {
  min-height: 800px;
  max-width: 1900px;
  margin: 0 auto;
  overflow: hidden;
}

.layer-bg {
  background-image: url("../../static/imgs/ilu_bg.jpg");
}

.layer-1 {
  background-image: url("../../static/imgs/ilu_03.png");
  background-position: left bottom;
}

.layer-2 {
  background-image: url("../../static/imgs/ilu_02.png");
}

.layer-3 {
  background-image: url("../../static/imgs/ilu_man.png");
  background-position: right bottom;
}

.layer-4 {
  background-image: url("../../static/imgs/ilu_01.png");
}

.layer-overlay {
  background-image: url("../../static/imgs/ilu_overlay.png");
}

@media only screen and (max-width: 768px) {
  .wrapper {
    display: none;
  }
  #hero {
    display: none;
  }
  #hero-mobile {
    display: block;
  }

  .gif-introduction {
    flex-direction: column;
  }

  .gif-introduction-text {
    width: 90% !important;
    text-align: center;
    margin: 0 auto;
  }

  .gif-introduction-gif {
    width: 90% !important;
    padding: 20px 0;
    margin: 0 auto;
  }

  .information {
    flex-direction: column;
  }

  .information-block {
    width: 90% !important;
    height: auto !important;
    margin-bottom: 20px;
    margin-left: 5%;
    margin-right: 5%;
  }

  .information-text {
    width: 100% !important;
    text-align: center;
  }

  .frame {
    width: 100% !important;
  }
}

.tutorial-link {
  color: #fff;
  font-size: 18px;
  text-decoration: underline;
}

h1 {
  font-size: 4rem;
  font-family: obraLetra, serif;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

.tutorial-link:hover {
  color: #ede0d5;
}

.gif-introduction {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0;
}

.gif-introduction-text {
  width: 30%;
}

.gif-introduction-gif {
  width: 60%;
  position: relative;
}

.gif-introduction-gif * {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  animation: ease-in-out;
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  mask-position: center;
  height: auto;
  mask-image: url("../../static/imgs/mask-block-2.svg");
  -webkit-mask-image: url("../../static/imgs/mask-block-2.svg");
  transition: all 0.5s ease-in-out;
}

.gif-introduction-gif:hover * {
  transform: scale(1.1);
}

.divider {
  position: relative;
  margin-top: 50px;
  height: 2px;
  background-color: red;
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-image: url("../../static/imgs/mask-block-2.svg");
  -webkit-mask-image: url("../../static/imgs/mask-block-2.svg");
}

.information {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0;
  flex-wrap: wrap;
}

.information-block {
  width: 100%;
  height: calc(300px / 0.55 * 1);
  display: flex;
  align-items: center;
  transition: all 0.5s ease-in-out;
  flex-wrap: wrap;
  gap: 5%;
}

.information-block .information-text {
  width: 45%;
  text-align: center;
}

.information-block h1 {
  font-size: 30px;
  height: 10%;
  transition: all 0.5s ease-in-out;
}

.information-block p {
  font-size: 18px;
  text-align: center;
  line-height: 150%;
  transition: all 0.5s ease-in-out;
}

.information-block .frame {
  margin-top: 10px;
  width: 50%;
  min-height: 300px;
  transition: all 0.5s ease-in-out;
}

.information-block .frame:hover {
  transform: scale(1.05);
}

.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

body .footer {
  z-index: 1;
  --footer-background: #ed5565;
  display: grid;
  position: relative;
  grid-area: footer;
  min-height: 12rem;
}

body .footer .bubbles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1rem;
  background: var(--footer-background);
  filter: url("#blob");
}

body .footer .bubbles .bubble {
  position: absolute;
  left: var(--position, 50%);
  background: var(--footer-background);
  border-radius: 100%;
  -webkit-animation: bubble-size var(--time, 4s) ease-in infinite
      var(--delay, 0s),
    bubble-move var(--time, 4s) ease-in infinite var(--delay, 0s);
  animation: bubble-size var(--time, 4s) ease-in infinite var(--delay, 0s),
    bubble-move var(--time, 4s) ease-in infinite var(--delay, 0s);
  transform: translate(-50%, 100%);
}

body .footer .content {
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 4rem;
  padding: 2rem;
  background: var(--footer-background);
}

body .footer .content a,
body .footer .content p {
  color: #f5f7fa;
  text-decoration: none;
}

body .footer .content b {
  color: white;
}

body .footer .content p {
  margin: 0;
  font-size: 0.75rem;
}

body .footer .content > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body .footer .content > div > div {
  margin: 0.25rem 0;
}

body .footer .content > div > div > * {
  margin-right: 0.5rem;
}

body .footer .content > div .image {
  align-self: center;
  width: 4rem;
  height: 4rem;
  margin: 0.25rem 0;
  background-size: cover;
  background-position: center;
}

@-webkit-keyframes bubble-size {
  0%,
  75% {
    width: var(--size, 4rem);
    height: var(--size, 4rem);
  }
  100% {
    width: 0rem;
    height: 0rem;
  }
}

@keyframes bubble-size {
  0%,
  75% {
    width: var(--size, 4rem);
    height: var(--size, 4rem);
  }
  100% {
    width: 0rem;
    height: 0rem;
  }
}

@-webkit-keyframes bubble-move {
  0% {
    bottom: -4rem;
  }
  100% {
    bottom: var(--distance, 10rem);
  }
}

@keyframes bubble-move {
  0% {
    bottom: -4rem;
  }
  100% {
    bottom: var(--distance, 10rem);
  }
}

ul {
  margin: 0px;
  padding: 0px;
}

.footer-section {
  padding: 60px 0 30px;
  background: #151414;
  position: relative;
}

.footer-cta {
  border-bottom: 1px solid #373636;
  padding-bottom: 60px;
}

.single-cta i {
  color: #ff5e14;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}

.cta-text {
  padding-left: 15px;
  display: inline-block;
}

.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.cta-text span {
  color: #757575;
  font-size: 15px;
}

.footer-content {
  position: relative;
  z-index: 2;
  padding: 0px 0 40px;
}

.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}

.footer-logo {
  margin-top: 30px;
  display: flex;
  align-items: center;
}

.footer-logo img {
  max-width: 64px;
}

.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #7e7e7e;
  line-height: 28px;
}

.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}

.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}

.facebook-bg {
  background: #3b5998;
}

.twitter-bg {
  background: #55acee;
}

.google-bg {
  background: #dd4b39;
}

.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}

.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #ff5e14;
}

.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}

.footer-widget ul li a:hover {
  color: #ff5e14;
}

.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}

.subscribe-form {
  position: relative;
  overflow: hidden;
}

.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2e2e2e;
  border: 1px solid #2e2e2e;
  color: #fff;
}

.subscribe-form button {
  position: absolute;
  right: 0;
  background: #ff5e14;
  padding: 13px 20px;
  border: 1px solid #ff5e14;
  top: 0;
}

.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}

.copyright-area {
  position: absolute;
  width: 100%;
  background: #202020;
  left: 0;
  padding: 30px 0;
}

.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}

.copyright-text p a {
  color: #ff5e14;
}

.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}

.footer-menu li:hover a {
  color: #ff5e14;
}

.footer-menu li a {
  font-size: 14px;
  color: #878787;
}

.nav-container {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  transition: all 0.5s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-button a {
  color: rgb(65, 38, 36);
  font-size: 1.8rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  font-family: obraLetra;
  transition: all 0.5s ease-in-out;
  margin: 0 15px;
}

.nav-button i {
  font-size: 1.5rem;
  color: rgb(65, 38, 36);
  transition: all 0.5s ease-in-out;
  margin-left: 5px;
}

.nav-button:hover i {
  color: #fff;
}

.nav-button:hover a {
  color: #fff;
}

.nav-button {
  background-image: url("../imgs/nav-button.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 0 0 3px rgb(65, 38, 36);
  cursor: pointer;
  display: flex;
  margin: 0 5px;
  transition: all 0.5s ease-in-out;
  align-items: center;
  padding: 10px 5px;
  margin: 0 10px;
}

.nav-button.gold {
  background-image: url("../imgs/nav-button-g.svg");
}

.transparent-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding: 20px 0;
}

.scroll-to-top-button {
  position: fixed;
  bottom: 20px;
  right: 40px;
  z-index: 1000;
  background-image: url("../../static/imgs/mask-circle.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease-in-out;
  text-decoration: none !important;
}

.scroll-to-top-button i {
  font-size: 2rem;
  color: white;
  transition: all 0.5s ease-in-out;
}

.scroll-to-top-button:hover {
  transform: rotate(360deg);
}

.scroll-to-top-button:hover i {
  transform: rotate(-360deg);
}

.frame {
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.masked-image {
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  mask-position: center;
  width: 100%;
  height: auto;
  mask-image: url("../../static/imgs/mask-block-2.svg");
  -webkit-mask-image: url("../../static/imgs/mask-block-2.svg");
}

.nav-container-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
  pointer-events: none;
}

.hamburger-menu {
  pointer-events: auto;
  position: fixed;
  top: 20px;
  right: 20px;
  display: none;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.5s ease-in-out;
}

.hamburger-menu div {
  pointer-events: auto;
  width: 25px;
  height: 2px;
  background-color: white;
  margin: 5px;
}

.nav-links-mobile {
  pointer-events: none;
  display: none;
  flex-direction: column;
  align-items: center;
  transition: all 0.5s ease-in-out;
}

.nav-links-mobile .nav-bar-item {
  pointer-events: auto;
  color: white;
  font-size: 2em;
  text-decoration: none;
  margin: 20px 0;
  transition: all 0.5s ease-in-out;
}

.nav-overlay {
  pointer-events: none;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 999;
  transition: all 0.5s ease-in-out;
}

@media screen and (max-width: 600px) {
  .nav-container {
    display: none;
  }
  .nav-container-mobile,
  .hamburger-menu {
    display: flex;
    flex-direction: column;
  }
}

/* -------------------------------- 
// VARIABLES
-------------------------------- */
.wrapper {
  width: 300px;
  height: 300px;
  position: absolute;
  top: 25%;
  left: 40%;
  animation-name: room_click;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  z-index: 1;
}

@keyframes room_click {
  20% {
    top: 0;
    left: 25%;
  }
  40% {
    top: 0%;
    left: 45%;
  }
  60% {
    top: 30%;
    left: 25%;
  }
  80% {
    top: 30%;
    left: 45%;
  }
  100% {
    top: 50%;
    left: 35%;
  }
}
.hand {
  width: 150px;
  height: 150px;
  position: absolute;
  bottom: 0;
  right: 60px;
}

.touch {
  color: #fff;
  text-shadow: 2px 2px 6px #000;
  font-size: 8vh;
  position: absolute;
  top: 0%;
  left: 43%;
  -webkit-animation: click 1.5s infinite -250ms;
  animation: click 1.5s infinite -250ms;
}

@-webkit-keyframes click {
  0% {
    -webkit-transform: rotate(-45deg) scale3d(1.1, 1.1, 1);
  }
  30% {
    -webkit-transform: rotate(-45deg) scale3d(1, 1, 1);
  }
  80% {
    -webkit-transform: rotate(-45deg) scale3d(1, 1, 1);
  }
  100% {
    -webkit-transform: rotate(-45deg) scale3d(1.1, 1.1, 1);
  }
}
@keyframes click {
  0% {
    transform: rotate(-45deg) scale3d(1.1, 1.1, 1);
  }
  30% {
    transform: rotate(-45deg) scale3d(1, 1, 1);
  }
  80% {
    transform: rotate(-45deg) scale3d(1, 1, 1);
  }
  100% {
    transform: rotate(-45deg) scale3d(1.1, 1.1, 1);
  }
}
.inball,
.outball {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #808080;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transform: scale3d(0.1, 0.1, 1);
  transform: scale3d(0.1, 0.1, 1);
  -webkit-animation: grow 1.5s infinite;
  animation: grow 1.5s infinite;
}

.inball {
  border: 40px solid #f3f2f1;
  background: transparent;
  -webkit-animation-delay: 250ms;
  animation-delay: 250ms;
}

@-webkit-keyframes grow {
  0% {
    -webkit-transform: scale3d(0.1, 0.1, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    opacity: 0;
  }
}
@keyframes grow {
  0% {
    transform: scale3d(0.1, 0.1, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
    opacity: 0;
  }
}
