.homeContainer {
  max-width: 1070px;
  width: 100%;
  min-height: 500px;
  position: relative;
  padding: 100px 20px 20px;
}

.homeSlider {
  max-width: 700px;
  width: 100%;
  max-height: 400px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  bottom: -40px;
  right: 0;
  animation: animateSliderHone;
  animation-duration: 3s;
  animation-delay: 3s;
  z-index: 2;
}

.homeDescription {
  position: relative;
  width: 50%;
  z-index: 2;
  padding: 80px 20px;
  overflow: hidden;
}
.homeDescription h3 {
  color: var(--white);
  font-weight: 200;
  padding: 10px 0;
  line-height: 1.2;
  transform: translateY(-150%);
  opacity: 0;
}
.homeDescription h3 b {
  color: var(--yellow);
}
.homeDescription h3.active {
  transform: translateY(0);
  opacity: 1;
  transition: 1s;
}
.homeDescription h2 {
  color: var(--white);
  font-weight: 400;
  letter-spacing: 1px;
  padding: 10px 0;
  transform: translateX(-150%);
  transition: 1s ease 0.3s;
  opacity: 0;
}
.homeDescription h2.active {
  opacity: 1;
  transform: translateX(0);
}
.homeDescription p {
  color: var(--white);
  font-weight: 200;
  transform: translateX(-80%);
  transition: 1s ease 0.5s;
  opacity: 0;
}
.homeDescription p.active {
  opacity: 1;
  transform: translateX(0);
}
.homeDescription a {
  margin: 20px 0;
  transform: scale(0);
  opacity: 0;
  transition: 1s ease 0.5s;
}
.homeDescription a.active {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 780px) {
  .homeSlider {
    position: relative;
    filter: brightness(0.6);
    bottom: auto;
    margin: 0 auto;
  }
  .homeDescription {
    width: 100%;
    padding: 20px;
    bottom: 150px;
  }
}
@media (max-width: 630px) {
  .homeDescription {
    padding: 40px 0;
    bottom: auto;
  }
}
@media (max-width: 580px) {
  .homeDescription {
    padding: 10px 0;
    bottom: auto;
  }
}
@keyframes animateSliderHone {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

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