.hero-slide .site-container {
    padding: 0px 20px;
}
.hero-slide {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.hero-slide:after {
    content: "";
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero-caption {
    position: relative;
    z-index: 9;
    max-width: 727px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 120px 0px;
}

/* Default hidden state */
.hero-slide .slide-title,
.hero-slide .slide-text,
.hero-slide .hero-btns {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}
.swiper-button-next,.swiper-button-prev {
    background-color: #fdab3e;
    color: #000;
    border-radius: 4px;
    height: 50px !important;
    width: 30px !important;
    transition: all .5s ease;
}
.swiper-button-next:after,.swiper-button-prev:after {
    font-size: 24px!important;
}
.swiper-button-next:hover,.swiper-button-prev:hover {
    background-color: #000!important;
    color: #fff!important;
}
/* Default hidden state */
.hero-slide .hero-caption > * {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}
.swiper-slide-active .hero-caption > * {
    opacity: 1;
    transform: translateY(0);
}
.swiper-slide-active .slide-title {
    transition-delay: 0.2s;
}
.swiper-slide-active .slide-text {
    transition-delay: 0.5s;
}
.swiper-slide-active .hero-btns {
    transition-delay: 0.8s;
}
@media only screen and (max-width: 767px) {
.hero-caption {
    padding: 60px 0px;
    gap: 10px;
}
.swiper-button-next, .swiper-button-prev {
    height: 40px !important;
    width: 25px !important;
}
.swiper-button-prev {
    left: 3px!important;
}
.swiper-button-next {
    right: 3px !important;
}
}
