.embla {
  overflow: hidden;
}

.embla__container {
  display: flex;
  will-change: transform;
}

.embla__slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 0;
}

.home-slider.embla {
  position: relative;
}

.home-slider .embla__container {
  display: flex;
}

.home-slider .embla__slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 0;
}

.home-slider .embla__slide .home-slider-item {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #FFF;
  padding-top: 40px;
  padding-left: 85px;
  padding-bottom: 25%;
  position: relative;
  height: 100%;
}
.embla__buttons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: unset;
  margin-top: 0;
  pointer-events: none;
  z-index: 10;
}

.embla__button {
  pointer-events: auto;
  position: absolute;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  text-decoration: none;
}

.embla__button:hover,
.embla__button:focus-within {
  background-color: #ec9f00;
  color: #005a73;
  transform: scale(1.1);
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2);
  outline: none;
}

.embla__button:focus-within {
  outline: 2px solid #ec9f00;
  outline-offset: 2px;
}

.embla__button:active {
  background-color: #d89000;
  transform: scale(1.05);
}

.embla__button--prev {
  left: 40px;
}

.embla__button--next {
  right: 40px;
}

.embla__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.embla__button:disabled:hover,
.embla__button:disabled:focus {
  background-color: rgba(0, 0, 0, 0.25);
  color: #fff;
  transform: none;
  box-shadow: none;
}

.embla__button::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  border-radius: 50%;
  background-color: #ec9f00;
  animation-name: pulse;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-delay: 0.25s;
}

@keyframes pulse {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  50% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

@media screen and (max-width: 1199px) {
  .home-slider .embla__slide .home-slider-item {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 767px) {
  .home-slider .embla__buttons {
    display: none !important;
  }

  .home-slider-content {
    top: 50%;
    transform: translateY(-50%);
  }

  .home-slider .embla__slide .home-slider-item {
    padding-bottom: 52%;
    padding-left: 20px;
    padding-top: 55px;
    padding-right: 20px;
  }

  .home-slider-title {
    font-size: 22px !important;
    line-height: 30px !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  .embla__button:hover {
    transform: scale(1.1);
  }
}

@media (hover: none) and (pointer: coarse) {
  .embla__button:active {
    transform: scale(1.05);
  }
}

.embla--auto-scroll .embla__slide {
  transition: opacity 0.3s ease;
}

.embla--auto-scroll:hover .embla__slide {
  transition-duration: 0.1s;
}

.embla--loading {
  opacity: 0;
}

.embla--loaded {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
