*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.slider {
  height: calc(100 * var(--vh));
}
@media screen and (min-width: 768px) {
  .slider {
    background-image: url("../images/background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: calc(100 * var(--vh));
}

.image-container {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .image-container {
    -webkit-box-shadow: 20px 0 40px 10px rgba(178, 187, 198, 0.2);
            box-shadow: 20px 0 40px 10px rgba(178, 187, 198, 0.2);
  }
}
.image-container img {
  max-width: 100vw;
  height: auto;
  width: auto;
  max-height: calc(100 * var(--vh));
}
@-webkit-keyframes swipe {
  0% {
    -webkit-transform: translateX(-2%);
            transform: translateX(-2%);
  }
  50% {
    -webkit-transform: translateX(25%);
            transform: translateX(25%);
  }
  100% {
    -webkit-transform: translateX(-2%);
            transform: translateX(-2%);
  }
}
@keyframes swipe {
  0% {
    -webkit-transform: translateX(-2%);
            transform: translateX(-2%);
  }
  50% {
    -webkit-transform: translateX(25%);
            transform: translateX(25%);
  }
  100% {
    -webkit-transform: translateX(-2%);
            transform: translateX(-2%);
  }
}
.image-container .swipe {
  position: absolute;
  right: -5.5%;
  bottom: -4%;
  z-index: 2;
  width: 20%;
}
.image-container .swipe .icon {
  width: 100%;
}
.image-container .swipe .hand {
  width: 46.2%;
  position: absolute;
  left: 16%;
  top: 15%;
  -webkit-animation: swipe 2s ease-in-out infinite;
          animation: swipe 2s ease-in-out infinite;
}
.image-container .eyes {
  position: absolute;
  left: 48.8%;
  top: 33%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 165%;
  max-width: none;
}
@-webkit-keyframes owl {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  80% {
    -webkit-transform: translateY(-250%);
            transform: translateY(-250%);
    opacity: 1;
  }
  81% {
    -webkit-transform: translateY(-250%);
            transform: translateY(-250%);
    opacity: 0;
  }
  82% {
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    opacity: 0;
  }
  83% {
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-29%);
            transform: translateY(-29%);
  }
}
@keyframes owl {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  80% {
    -webkit-transform: translateY(-250%);
            transform: translateY(-250%);
    opacity: 1;
  }
  81% {
    -webkit-transform: translateY(-250%);
            transform: translateY(-250%);
    opacity: 0;
  }
  82% {
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    opacity: 0;
  }
  83% {
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-29%);
            transform: translateY(-29%);
  }
}
.image-container .owl {
  position: absolute;
  bottom: -30%;
  left: 0;
  width: 100%;
  pointer-events: none;
}
.image-container .iframe {
  position: absolute;
  left: 50%;
  bottom: 20px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 40px);
  height: 64.5%;
  border-radius: 20px;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}
.image-container .iframe-mv {
  width: 100%;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.image-container .iframe iframe {
  height: calc(100% - 48px);
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.swiper-slide-active .owl {
  -webkit-animation: owl 1.5s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards;
          animation: owl 1.5s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards;
}

.form {
  display: none;
  position: fixed;
  bottom: 12px;
  right: 0;
  z-index: 1;
  width: 350px;
  height: 80vh;
  overflow-y: scroll;
  background-color: #fff;
  -webkit-box-shadow: 0 18px 36px 2px rgba(1, 94, 234, 0.3);
          box-shadow: 0 18px 36px 2px rgba(1, 94, 234, 0.3);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 20px 0px 0px 20px;
}
@media screen and (min-width: 768px) {
  .form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.form iframe {
  height: 100%;
}