.home-slider-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: black;
  position: relative;
  display: flex;
  justify-content: center;
}
.bg-image-container {
  width: 100%;
  height: 101vh;
  filter: brightness(0.5);
  background-image: url("../../img/world-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform-style: preserve-3d;
  position: absolute;
}
.home-slider {
  position: relative;
  width: 90%;
  height: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.social-network-home-container {
  height: 300px;
  color: var(--white-button);
  position: absolute;
  bottom: 40px;
  left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.success-stories {
  position: absolute;
  left: 30px;
  bottom: 20px;
  color: var(--white-button);
}
.success-stories a {
  text-decoration: none;
  color: var(--white-button);
  text-transform: uppercase;
}
.success-stories__arrow {
  margin-left: 20px;
  transition: transform 1s;
}
.success-stories:hover .success-stories__arrow {
  transform: translateX(30px);
}

.home-carousel-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: static;
}
.home-carousel {
  width: 200px;
  height: 300px;
}
.card-home-slider {
  width: 200px;
  height: 300px;
}
.card-home-slider p {
  display: flex;
  flex-direction: column;
  font-size: 2em;
  margin: 10px 0px;
}
.home-carousel-container img {
  margin-bottom: 2em;
  width: 100px;
}
.scroll-down {
  text-decoration: none;
  color: white;
  position: absolute;
  right: 10px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-down__arrow {
  margin-top: 20px;
  transform: rotate(90deg);
  transition: transform 0.5s;
}
.scroll-down:hover .scroll-down__arrow {
  transform: translateY(15px) rotate(90deg);
}

@media screen and (min-width: 1024px) {
  .home-carousel-container img {
    width: 200px;
  }
  .card-home-slider p {
    font-size: 3em;
  }
  .home-carousel {
    width: 300px;
    height: 300px;
  }
  .card-home-slider {
    width: 300px;
    height: 300px;
  }
}
