.sj-slider {
    display: flex;
    height: 500px;
    position: relative;
    width: 100%;
    overflow: hidden;
    flex-wrap: wrap;
}
.sj-slider-images {
    width: 100%;
    height: 500px;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
}
.sj-slider-img {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    position: absolute;
    transition: opacity 0.5s ease-in-out;
}
.sj-slider-left {
    width: 50%;
}
.sj-slider-right {
    width: 50%;
    background-color: #466c7dba;
    position: relative;
    z-index: 2;
    padding: 50px 50px 50px 100px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.sj-slider-thumbs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.sj-slider-thumb {
    width: 90px;
    height: 90px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid #fff;
}
.sj-slider-text {
    text-align: left;
}
.sj-slider-text h5 {
    font-size: 24px;
    margin: 0 0 10px 0;
    color: #ffffff;
}
.sj-slider-text p {
    font-size: 16px;
    max-width: 80%;
    margin: 0 0 10px 0;
}
.sj-slider-button {
    color: white;
    background-color: #00000066;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
}
@media screen and (max-width: 768px) {
    .sj-slider {
        flex-direction: column;
        height: auto;
    }
    .sj-slider-img {
        position: relative;
        height: 300px;
    }
    .sj-slider-left {
        width: 100%;
        padding: 20px;
        align-items: center;
        text-align: center;
    }
    .sj-slider-text p {
        margin: 0 auto;
    }
}