.slider {
    width: 100%;
    position: relative;
}
.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
}
.swiper {
    height: 800px;
}
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}
.slide-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 12.94%, rgba(0, 0, 0, 0.3) 100%);
}
.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    height: 100%;
    display: flex;
    width: 80%;
    margin: auto;
}
.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}
.slide-content p {
    font-size: 1.5rem;
}

.custom-prev, .custom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 10;
}
.custom-prev {
    left: 20px;
}
.custom-next {
    right: 20px;
}
.custom-prev img, .custom-next img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}
.custom-prev:hover img {
    transform: translateX(-5px);
}
.custom-next:hover img {
    transform: translateX(5px);
}

.highlight {
    color: red;
}

.slide-content .left{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-content .right {
    display: flex;
    align-items: center;
    width: 50%;
}

.slide-content .right {
    flex-direction: column;
    justify-content: center;
}

.slide-content .left h1{
    font-size: 3rem;
    text-align: left;

    text-transform: uppercase;
    font-weight: 700;
}

.slide-content .left p{
    font-size: 1.1rem;
    margin: 0;
    text-align: left;
}

#success-message {
    width: 100%;
    DISPLAY: flex;
    justify-content: center;
}

#success-message p {
    margin: 10px;
    font-size: 1.4rem;
    position: absolute;
    max-width: 350px;
}

@media (max-width: 1000px) {

    .slide-content .right {
        width: 100%;
        height: 50%;
    }

    .slide-content .right #success-message{
    }

    .slide-content .left {
        width: 100%;
    }

    .slide-content .left h1{
        font-size: 2rem;
    }

    .slide-content{
        flex-direction: column;
    }
}

@media (max-width: 500px) {
    .custom-prev, .custom-next{
        display: none;
    }

    .swiper {
        height: calc(100vh - 80px);
    }

    .slide-content .left p{
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .slide-content .left h1 {
        margin: 20px 0 10px 0;
    }
}


