.stage {
  position: relative;
  margin: 0 0 65px;
}
.stage .stage__image {
  height: 600px;
}
@media only screen and (max-width: 768px) {
  .stage .stage__image {
    height: auto;
  }
}
.stage .stage__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .stage .stage__image img {
    height: initial;
    aspect-ratio: 4/3;
  }
}
@media only screen and (max-width: 576px) {
  .stage .stage__image img {
    height: initial;
    aspect-ratio: 1/1;
  }
}
.stage .container {
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .stage .container {
    background-color: #0099C2;
  }
}
.stage .container .stage__title {
  max-width: 680px;
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  bottom: -300px;
  transition: bottom 1s;
  left: 0;
  padding: 30px 20px 80px 20px;
  z-index: 2;
  font-size: 60px;
  line-height: 72px;
  font-weight: normal;
  color: #0099C2;
  border-radius: 10px 10px 0 0;
}
@media only screen and (max-width: 1400px) {
  .stage .container .stage__title {
    left: 100px;
  }
}
@media only screen and (max-width: 992px) {
  .stage .container .stage__title {
    max-width: initial;
    width: 100%;
    left: initial;
    bottom: initial;
    position: relative;
    padding: 30px 0;
    background-color: transparent;
    color: #ffffff;
    font-size: 40px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 576px) {
  .stage .container .stage__title {
    font-size: 24px;
    line-height: 28px;
  }
}
.stage .slick-dots {
  margin: 0;
  position: absolute;
  left: 0;
  bottom: -40px;
  width: 100%;
  text-align: center;
}
.stage .slick-dots li {
  display: inline-block;
  margin: 0 15px 0 0;
  line-height: 0px;
}
.stage .slick-dots li:last-of-type {
  margin: 0;
}
.stage .slick-dots li.slick-active button {
  background-color: #0099C2;
}
.stage .slick-dots li button {
  width: 15px;
  height: 15px;
  border: 1px solid #0099C2;
  border-radius: 50%;
  background-color: transparent;
  font-size: 0px;
}
.stage .slick-arrow {
  position: absolute;
  top: calc(50% - 40px);
  transform: translateY(-50%);
  z-index: 1;
  width: 80px;
  height: 80px;
  border: none;
  background-color: rgba(255, 255, 255, 0.4);
  font-size: 0px;
  border-radius: 50%;
}
@media only screen and (max-width: 576px) {
  .stage .slick-arrow {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
  }
}
.stage .slick-arrow:before {
  content: " ";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../Images/Slideshow-Chevron.svg);
  background-position: center center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 576px) {
  .stage .slick-arrow:before {
    background-size: 12px;
  }
}
.stage .slick-arrow.slick-prev {
  left: 100px;
}
@media only screen and (max-width: 1400px) {
  .stage .slick-arrow.slick-prev {
    left: 20px;
  }
}
.stage .slick-arrow.slick-next {
  right: 100px;
}
@media only screen and (max-width: 1400px) {
  .stage .slick-arrow.slick-next {
    right: 20px;
  }
}
.stage .slick-arrow.slick-next:before {
  transform: rotate(-180deg);
}

.stage .slick-current .container .stage__title {
  bottom: 0;
  transition: bottom 1s;
}