.hero-slider {
  width: 100%;
  height: 100vh;
  max-height: 270px;
  overflow: hidden;
}

.hero-slider .carousel-cell {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  /*box-shadow: inset 0px 0px 10px rgba(0,0,0,0.5);*/
}

.is-selected h2 {
  animation: fadeIn 1s;
}

.is-selected h3 {
  animation: fadeIn 1.5s;
}

.is-selected h4 {
  animation: fadeIn 2s;
}

.is-selected h5 {
  animation: fadeIn 2.5s;
}

.is-selected .btn {
  animation: fadeIn 3s;
}

.hero-slider .carousel-cell .inner {
  position: relative;
  color: white;
  text-align: center;
  padding: 0 0 5% 0;
  animation: fadeIn 2s;
}

.hero-slider .flickity-prev-next-button {
  width: 25px;
  height: 25px;
  background: transparent;
  top: inherit;
  bottom: 10%;
  border-radius: 0;
  background-color: #10a35e;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.hero-slider .flickity-prev-next-button:hover {
  background-color: #078a4d;
}

.hero-slider .flickity-prev-next-button svg {
  width: 16px;
  height: 18px;
  left: 20%;
  right: 0%;
  top: 14%;
  padding: 0;
}

.hero-slider .flickity-prev-next-button.next {
  left: 7%;
}

.hero-slider .flickity-prev-next-button.previous {
  left: 0%;
}

.carousel-cell-image {
  transition: opacity 0.4s;
  opacity: 0;
}

.carousel-cell-image.flickity-lazyloaded,
.carousel-cell-image.flickity-lazyerror {
  opacity: 1;
}

.hero-slider .flickity-prev-next-button .arrow {
  fill: white;
}

.hero-slider .flickity-page-dots {
  bottom: 30px;
}

.hero-slider .flickity-page-dots .dot {
  width: 20px;
  height: 4px;
  margin: 0 2px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.5);
  border: 0 solid white;
  border-radius: 0;
  display: none;
}

.hero-slider .flickity-page-dots .dot.is-selected {
  background: #fff;
  border: 0 solid #fff;
}

@media (min-width: 1280px) {}

@media (max-width: 992px) {}

@media (max-width: 768px) {}

@media (max-width: 576px) {}