.video-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
}

.video-modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 80%;
    max-width: 700px;
    top: 50%;
    transform: translateY(-50%);
}

.close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

#videoFrame {
    width: 100%;
    height: 400px;
}


.cta-section {
    position: relative;
    width: 100%;
    height: 400px; /* Adjust the height as needed */
    background-size: cover;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 150, 143, 0.50);
    backdrop-filter: blur(7px);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.cta-section .intro {
    font-size: 18px;
    margin-bottom: 10px;
}

.cta-section .title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-section .description {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-section .cta-button .btn {
    margin: 5px;
}

a.btn.btn-primary,
a.btn.btn-primary:hover,
a.btn.btn-primary:active,
a.btn.btn-primary:visited {
    background-color: #8331A7;
    border-color: #8331A7;
    color:#fff;
}
