.homepage-header {
    position: relative;
    overflow: hidden;
    min-height: 490px;
}

.home-bg-text {
    position: relative;
    bottom: 0px;
    width: 100%;
    padding: 140px 0px;
}

.home-bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orange-overlay .home-bg-image::before {
    content: "";
    position: absolute;
    background: linear-gradient(269deg, rgba(63, 63, 63, 0.00) 26.06%, rgba(239, 115, 0, 0.70) 67.54%);
    top: 0px;
    left: 0px;
    width: 80%;
    height: 100%;
}
.black-overlay  .home-bg-image::before{
    content: "";
    position: absolute;
    background: linear-gradient(269deg, rgba(63, 63, 63, 0.00) 25.64%, #3F3F3F 67.54%);
    top: 0px;
    left: 0px;
    width: 80%;
    height: 100%;

}
.home-bg-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.home-bg-content * {
    color: var(--white);
}
.home-bg-content{
    max-width: 650px;
}
.home-bg-content h1 {
    color: var(--white);
    text-transform: uppercase;
}
.home-bg-content p{
    margin-bottom: 35px;
    max-width: 550px;
}
.home-bg-text-content ul li,.home-bg-text-content ol li,.home-bg-text-content p {
    color: var(--white);
}
.home-carousel .slick-slide{
    position: relative;
}
.home-carousel .slick-dots{
    position: absolute;
    bottom: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}
.home-carousel .slick-dots li::marker{
    color: transparent;
}
.home-carousel .slick-dots li button{
    width: 14px;
    height: 14px;
    border-radius: 50%;
    font-size: 0px;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
}
.home-carousel .slick-dots li button:focus-visible{
    outline: none;
}
.home-carousel .slick-dots li.slick-active button{
    background: var(--orange);
    width: 20px;
    height: 20px;
}
.home-carousel .slick-dots li:not(:last-child){
    margin-right: 15px;
}