.home-hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 130px);
    min-height: 520px;
    overflow: hidden;
    background: #000;
}

.cb-slideshow,
.cb-slideshow::after {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cb-slideshow::after {
    content: '';
    background: rgba(0, 0, 0, 0.28);
    z-index: 1;
}

.cb-slideshow li {
    list-style: none;
}

.cb-slideshow li span {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 0;
    animation: neterenHeroImage 36s linear infinite;
}

.cb-slideshow li:nth-child(1) span {
    background-image: url('../images/home-hero-1.jpg');
}

.cb-slideshow li:nth-child(2) span {
    background-image: url('../images/home-hero-2.jpg');
    animation-delay: 6s;
}

.cb-slideshow li:nth-child(3) span {
    background-image: url('../images/home-hero-3.jpg');
    animation-delay: 12s;
}

.cb-slideshow li:nth-child(4) span {
    background-image: url('../images/home-hero-4.jpg');
    animation-delay: 18s;
}

.cb-slideshow li:nth-child(5) span {
    background-image: url('../images/home-hero-5.jpg');
    animation-delay: 24s;
}

.cb-slideshow li:nth-child(6) span {
    background-image: url('../images/home-hero-6.jpg');
    animation-delay: 30s;
}

.cb-slideshow li > div {
    position: absolute;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    z-index: 2;
    width: calc(100% - 48px);
    max-width: 1100px;
    color: #fff;
    text-align: center;
    opacity: 0;
    transform: translate(-50%, calc(-50% + 30px));
    animation: neterenHeroText 36s linear infinite;
}

.cb-slideshow li:nth-child(2) > div {
    animation-delay: 6s;
}

.cb-slideshow li:nth-child(3) > div {
    animation-delay: 12s;
}

.cb-slideshow li:nth-child(4) > div {
    animation-delay: 18s;
}

.cb-slideshow li:nth-child(5) > div {
    animation-delay: 24s;
}

.cb-slideshow li:nth-child(6) > div {
    animation-delay: 30s;
}

.ustsatir {
    font-size: clamp(34px, 5vw, 76px);
    line-height: 0.95;
    font-weight: 700;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.55);
}

.altsatir {
    font-size: clamp(22px, 3.4vw, 52px);
    line-height: 1.05;
    margin-bottom: 12px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.55);
}

@keyframes neterenHeroImage {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    4% {
        opacity: 1;
    }

    16% {
        opacity: 1;
    }

    22% {
        opacity: 0;
        transform: scale(1.08);
    }

    100% {
        opacity: 0;
    }
}

@keyframes neterenHeroText {
    0% {
        opacity: 0;
        transform: translate(-50%, calc(-50% + 30px));
    }

    5% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }

    16% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }

    22% {
        opacity: 0;
        transform: translate(-50%, calc(-50% - 20px));
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 768px) {
    .home-hero {
        height: calc(100vh - 170px);
        min-height: 460px;
    }

	.cb-slideshow li > div {
		width: calc(100% - 48px);
	}
}