.carousel {
  width: 100%;
  height: calc(100vh - 100px);
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .carousel {
    height: calc(100vh - 80px);
  }
}
.carousel .slide {
  width: 100%;
  position: relative;
  height: calc(100vh - 100px);
}
@media screen and (max-width: 1023px) {
  .carousel .slide {
    height: calc(100vh - 80px);
  }
}
.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel .content-holder {
  padding: 20px 40px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  background-color: rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1023px) {
  .carousel .content-holder {
    width: calc(100% - 80px);
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px;
  }
}
.carousel header {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 1px;
  color: white;
  margin: 20px auto;
}
@media screen and (max-width: 1023px) {
  .carousel header {
    font-size: 24px;
    margin: 10px auto;
  }
}
.carousel p {
  color: white;
  font-weight: lighter;
  letter-spacing: 0.5px;
  line-height: 1.7;
  opacity: 0.7;
  font-size: 14px;
}

.dots-holder {
  position: absolute;
  right: 20px;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 1;
}
.dots-holder .dot {
  display: block;
  width: 15px;
  height: 15px;
  border: 2px solid #4d4d4d;
  margin-bottom: 20px;
  transform: scale(0.8);
  transition: transform 0.5s, background-color 0.3s;
}
.dots-holder .dot.active {
  transform: scale(1);
  background-color: #4d4d4d;
}

.carousel-buttons-holder {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.carousel-buttons-holder button {
  display: block;
  width: 60px;
  height: 60px;
  border: 0px;
  background-color: white;
  margin-top: 5px;
  cursor: pointer;
}
.carousel-buttons-holder button img {
  position: relative;
  right: 30%;
  width: 100%;
}

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