/* Slider Container */
.slider .container > div {
    position: relative;
    overflow: hidden;
}

/* Navigation Buttons */
.slider .buttons > div {
    position: absolute;
    z-index: 5;
    top: 50%;
    right: 15px;
    color: white;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.23);
    border: 2px solid white;
    cursor: pointer;
    border-radius: 50%;
}
.slider .buttons .left {
    right: auto;
    left: 15px;
}

/* Content */
.slider .content {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slider .content .oneSlider {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 10px;
    min-width: 100%;
    min-height: 80vh;
    position: relative;
}
.slider .content .oneSlider img.sliderBackground{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 100%;
    min-height: 100%;
}
.slider h1{
    font-size: 36px;
    margin-bottom: 15px;
    letter-spacing: .5px;
    word-spacing: 2px;
}
.slider span{
    margin: 19px 0 16px;
    display: block;
    font-weight: 900;
    font-size: 17px;
    text-decoration: underline;
}
.slider p{
    margin:0 auto 20px;
    background-color: white;
    max-width: 250px;
    border-radius: 10px;
    padding: 10px;
}
.slider p i{
    font-style: normal;
    font-family: monospace;
    font-weight: bold;
    font-size: 20px;
    word-spacing: 0.5px;
    word-spacing: 2px;
    color: var(--main-color);
}
.slider .img-mokup{
    width: 284px;
    max-width: 70%;
    margin-bottom: 16px;
}
.slider a{
    border-width: 2px !important;
    display: block;
    max-width: 140px;
    font-weight: bold;
    text-decoration: none;
    margin: auto;
}

/* Content Text */
.slider .content .oneSlider > div {
    position: relative;
    text-align: center;
    z-index: 2;
}
/* .slider .content .oneSlider > div:not(.background)::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(7.5px) brightness(.8);
}
.slider .content .oneSlider > div:not(.background) > div{
    position: relative;
    z-index: 2;
} */
/* Overlay */
.slider .container .oneSlider .background {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 55%);
}
/* Dots (Optional) */
.dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}
.dot.active {
    background-color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .slider .buttons > div {
        width: 30px;
        height: 30px;
    }
    .slider .content .oneSlider {
        padding: 20px 5px;
    }
    .slider h1{
        font-size: 22px;
    }
    .slider p{
        font-size: 14px;
    }
}

@media (max-height: 600px) {
    .slider .content .oneSlider {
        min-height: 60vh;
    }
}
