.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 690px;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .7s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide picture,
.slide img {
    width: 100%;
    height: 100%;
    display: block;
}

.slide img {
    object-fit: cover;
    object-position: center;
}


/* OKLAR */

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 54px;
    height: 54px;

    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.75);

    background: rgba(0,0,0,.18);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;

    cursor: pointer;

    z-index: 5;

    transition: .25s;
}

.slider-arrow:hover {
    background: rgba(0,0,0,.45);
}

.slider-prev {
    left: 28px;
}

.slider-next {
    right: 28px;
}


/* DOTS */

.slider-dots {
    position: absolute;

    left: 50%;
    bottom: 20px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 9px;

    z-index: 5;
}

.slider-dots .dot {
    width: 11px;
    height: 11px;

    padding: 0;

    border: 2px solid #fff;

    background: transparent;

    cursor: pointer;
}

.slider-dots .dot.active {
    background: #fff;
}


/* TABLET */

@media (max-width: 1200px) {

    .slider-track {
        height: 580px;
    }

}


/* MOBİL */

@media (max-width: 768px) {

    .slider-track {
        height: auto;
        min-height: 0;
    }

    .slide {
        position: absolute;
    }

    .slide.active {
        position: relative;
    }

    .slide picture,
    .slide img {
        height: auto;
    }

    .slide img {
        width: 100%;
        object-fit: contain;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;

        font-size: 15px;
    }

    .slider-prev {
        left: 12px;
    }

    .slider-next {
        right: 12px;
    }

    .slider-dots {
        bottom: 12px;
    }

}


/* KÜÇÜK TELEFON */

@media (max-width: 480px) {

    .slider-arrow {
        width: 36px;
        height: 36px;
    }

    .slider-dots .dot {
        width: 9px;
        height: 9px;
    }

}