.mv-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.mv-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s;
}

.mv-slide.active {
    opacity: 1;
}

.mv-slide-content {
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 10px;
     
}

.mv-slide-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff !important;

}

.mv-slide-content p {
    font-size: 20px;
    margin-bottom: 25px;
}

.mv-btn {
    background: #ffffff;
    color: #000;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}