.pares-video-box {
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    
}

.pares-video-thumbnail {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: block;
}

.pares-video-overlay {
    padding: 20px;
   
    
}

.pares-video-title {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.pares-video-text {
    font-size: 14px;
    color: #ccc;
}

.pares-video-thumbnail {
    position: relative;
    cursor: pointer;
}

.pares-video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #3AA3BE;
    border: none;
    font-size: 40px;
    color: white;
    border-radius: 50%;
    padding: 10px 20px;
    cursor: pointer;
}

.pares-video-play-button: hover{

    background-color: #369AB2!important;
}

.pares-video-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.pares-video-modal-content {
    position: relative;
    width: 80%;
    max-width: 800px;
    margin: 5% auto;
    background: #000;
    padding: 20px;
}

.pares-video-close {
    color: #fff;
    position: absolute;
    top: 10px; right: 20px;
    font-size: 30px;
    cursor: pointer;
}

.pares-video-iframe-container iframe {
    width: 100%;
    height: 450px;
}
