.hero-slider {

    position: relative;

    width: 100%;

    height: 480px;

    overflow: hidden;

}

.slide {

    position: absolute;

    width: 100%;
    height: 100%;

    opacity: 0;

    transition: opacity .8s ease;

}

.slide.active {

    opacity: 1;
    z-index: 1;

}

.slide img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: brightness(.55);

}

.slide-content {

    position: absolute;

    top: 50%;
    left: 10%;

    transform: translateY(-50%);

    color: white;

    max-width: 550px;

}

.slide-content h1 {

    font-size: 52px;

    margin-bottom: 20px;

}

.slide-content p {

    font-size: 22px;

    margin-bottom: 30px;

    line-height: 1.5;

}

.slider-btn {

    display: inline-block;

    background: #00A86B;

    color: white;

    padding: 16px 34px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: bold;

    transition: .3s;

}

.slider-btn:hover {

    background: #01875f;

}

.dots {

    position: absolute;

    bottom: 25px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 12px;

}

.dot {

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: white;

    opacity: .4;

    cursor: pointer;

}

.dot.active {

    opacity: 1;

}