.slider {
    position: relative;
    overflow: hidden;
    height: calc(100vh - 82px);
    width: 100%;
}

.dots {
    position: relative;
    left: 50%;
    top: -50px;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    margin-bottom: -12px;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: #fff;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    display: flex;
    justify-content: center;
    color: white;
    z-index: 1;
}

.slide>img {
    position: absolute;
    z-index: -1;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

/* .slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.5);
} */

.slide.current {
    opacity: 1;
}

.slide .content h1 {
    margin-bottom: 10px;
}

.buttons button#next {
    height: 50px;
    width: 50px;
    position: absolute;
    top: 46%;
    right: 15px;
    z-index: 99999;
}

.content {
    z-index: 1;
    margin-top: 100px;
}

.buttons button#prev {
    height: 50px;
    width: 50px;
    position: absolute;
    top: 46%;
    left: 15px;
    z-index: 99999;
}

.buttons button {
    border: 2px solid #fff;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    padding: 13px 15px;
    border-radius: 50%;
    outline: none;
}

.buttons button:hover {
    background-color: #fff;
    color: #333;
}

.slider-text {
    line-height: 105px;
    font-weight: 600;
    font-size: 7rem;
}

.slider-text-2 {
    line-height: 60px;
    margin: 15px 0px 15px;
    font-size: 60px;
    font-family: 'Narziss-2', sans-serif;
    letter-spacing: -2px;

}

.slider-logo {
    max-width: 250px;
    display: block;
    margin-bottom: 15px;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
}

@media (max-width: 500px) {
    .slider {
        height: calc(80vh - 82px);
    }

    .slider-text-2 {
        line-height: 33px;
        font-size: 26px;
        margin-bottom: 5px;
    }

    .slider-logo {
        max-width: 150px;
    }

    .slide.current .content {
        max-width: 100%;
        padding-top: 50px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .content {
        z-index: 1;
    }
}

.slider-text-2 {
    position: relative;
    animation: slideRight 1.5s ease forwards;
}

@keyframes slideRight {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

.slider-logo {
    position: relative;
    animation: slideTop 1.5s ease forwards;
}

@keyframes slideTop {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.rev-btn-1 {
    position: relative;
    animation: slideBottom 1.5s ease forwards;
}

@keyframes slideBottom {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0%);
    }
}