body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.main {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: black;
}
.main .main-desktop {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .main .main-desktop {
    display: none;
  }
}
.main .main-desktop .background {
  width: 100%;
  height: 100%;
}
.main .main-desktop .background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.main .main-mobile {
  display: none;
  width: 100%;
  height: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .main .main-mobile {
    display: block;
  }
}
.main .main-mobile .background {
  position: absolute;
  width: 100%;
  height: 100%;
}
.main .main-mobile .background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.main .main-mobile .content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
.main .main-mobile .content .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
.main .main-mobile .content .text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 0;
  gap: 30px;
}

/*# sourceMappingURL=style.css.map */
