.homepage-banner {
  position: relative;
}
.homepage-banner .slick-prev {
  left: 25px;
  z-index: 1;
}
.homepage-banner .slick-next {
  right: 25px;
  z-index: 1;
}
.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.slick-dots {
  bottom: 0;
}
.homepage-banner .slide + .slide {
  display: none;
}
.homepage-banner .slick-initialized .slide {
  display: block;
}
.homepage-banner .slide {
  height: 688px;
  position: relative;
  overflow: hidden;
}
.homepage-banner .slide-background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  transform: scale(1.2); /* last frame state of the animation */
}

.homepage-banner .slick-current .slide-background {
  animation: ken_burns 10s ease; /* animation need to finish before slide change */
  animation-fill-mode: forwards; /* when animation ends, keep the last frame state */
}
@keyframes ken_burns {
  0% {
    transform-origin: bottom left;
    transform: scale(1.0);
  }
  100% {
    transform: scale(1.2);
  }
}

.banner-top {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.banner-top h1,
.banner-top h2 {
  color: #ffffff;
  font-size: 62px;
  max-width: 800px;
  line-height: 1;
} 
.banner-top h1 span,
.banner-top h2 span {
  color: #ffffff;
}
.banner-top p {
  color: #ffffff;
  max-width: 444px;
}
.banner-button a {
  color: #4A4D4E;
  background-color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  padding: 14px 25px 12px;
  border-radius: 5px;
  transition: 0.3s all;
}
.banner-bottom {
  display: flex;
  align-items: flex-end;
}
.banner-bottom-col {
  width: 50%;
  box-sizing: border-box;
}
.banner-bottom-col h2 {
  font-size: 37px;
  line-height: 1.2;
}
.banner-bottom-col span {
  color: #E60000;
}
.banner-bottom-img {
  position: absolute;
  height: 568px;
  bottom: -284px;
  right: 0;
}
.banner-bottom-out {
  min-height: 300px;
  display: flex;
  align-items: center;
}
.banner-button {
  margin-top: 30px;
}

/* Responsive */

@media only screen and (min-width: 1800px) {
  .banner-bottom-img {
    left: calc(50% + 200px);
  }
}

@media only screen and (max-width: 1280px) {
  .banner-bottom-img {
    height: 400px;
    bottom: -200px;
  }
}
@media only screen and (max-width: 922px) {
  .banner-bottom-img {
    height: 300px;
    bottom: -150px;
  }
}
@media only screen and (max-width: 768px) {
  .banner-bottom-img {
    height: 250px;
    bottom: -125px;
  }
  .banner-bottom-out {
    padding-top: 80px;
    min-height: 100%;
  }
  .banner-bottom-col {
    width: 100%;
  }
  .banner-top h1,
  .banner-top h2 {
    font-size: 32px;
  } 
  .banner-top p {
    font-size: 16px;
  }
  .banner-bottom-col h2 {
    font-size: 24px;
  }
  .slide {
    height: 550px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-bottom-out {
    padding-top: 60px;
    min-height: 100%;
  }
  .banner-top {
    justify-content: flex-start;
    padding-top: 80px;
  }
  .banner-bottom-img {
    height: 190px;
    bottom: -95px;
  }
  .homepage-banner .slide-background {
    background-position: center;
  }
}