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

body {
  font-family: "Lato", sans-serif;
}

:root {
  --black-color: #111111;
  --white-color: #ffffff;
}

.container {
  width: 100%;
  height: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .container {
    display: flex;
    flex-direction: row;
  }
}
.container .section {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  color: var(--white-color);
  font-size: 14px;
  flex: 1;
  background-size: 110% !important;
  transition: all 0.3s ease;
  overflow: hidden;
}
@media (min-width: 768px) {
  .container .section {
    padding: 50px;
  }
}
.container .section .break-mobile {
  display: block;
}
@media (min-width: 1100px) {
  .container .section .break-mobile {
    display: none;
  }
}
.container .section .break-desktop {
  display: none;
}
@media (min-width: 1100px) {
  .container .section .break-desktop {
    display: block;
  }
}
.container .section p {
  padding: 30px 0;
  max-width: 600px;
  font-family: "Noto Sans";
}
@media (min-width: 768px) {
  .container .section p {
    padding: 40px 0;
    font-family: "Lato";
  }
}
.container .section .logo-wrapper {
  height: 22px;
  display: flex;
  align-items: end;
}
@media (min-width: 768px) {
  .container .section .logo-wrapper {
    height: 43px;
  }
}
.container .section:hover img.background-img {
  transform: scale(1);
}
.container .section img.background-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
  transform: scale(1.1);
}
.container .section button {
  padding: 12px 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  letter-spacing: 0.09em;
}
@media (min-width: 768px) {
  .container .section button {
    font-size: 15px;
    padding: 12px 42px;
  }
}
@media (min-width: 768px) {
  .container .section {
    flex: 1;
    font-size: 18px;
    padding: 40px 0;
    letter-spacing: 0.041em;
  }
}
.container .section.mizon {
  color: var(--black-color);
}
.container .section.mizon .logo-wrapper img {
  height: 22px;
}
@media (min-width: 768px) {
  .container .section.mizon .logo-wrapper img {
    height: 37px;
  }
}
.container .section.mizon button {
  background-color: var(--black-color);
  color: var(--white-color);
}
.container .section.mizon button:hover {
  background-color: var(--white-color);
  color: var(--black-color);
}
.container .section.village-factory .logo-wrapper img {
  height: 22px;
}
@media (min-width: 768px) {
  .container .section.village-factory .logo-wrapper img {
    height: 43px;
  }
}
.container .section.village-factory button {
  background-color: var(--white-color);
  color: var(--black-color);
}
.container .section.village-factory button:hover {
  background-color: var(--black-color);
  color: var(--white-color);
}

.skeleton-container {
  display: flex;
  flex-direction: column;
}

.skeleton-card {
  width: 100%;
  height: 50vh;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .skeleton-container {
    display: flex;
    flex-direction: row;
  }
  .skeleton-card {
    width: 50%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
  }
}
.skeleton-box {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background-color: #DDDBDD;
}
.skeleton-box::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  bottom: 0;
  transform: translateX(-100%);
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.1333333333) 20%, rgba(255, 255, 255, 0.3333333333) 60%, rgba(255, 255, 255, 0));
  animation: shimmer 0.5s infinite;
  content: "";
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}/*# sourceMappingURL=style.css.map */