@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

body {
    margin: 0 auto !important;
    width: 100%;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.main-container {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.video-container {
    position: absolute;
    inset: 0;
}

.video-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    /* Make clicks pass through the video so CTA is always clickable */
    pointer-events: none;
}

/* Anchor styled as a button */
.cta {
    position: absolute;
    justify-self: center;
    width: 60%;
    bottom: 0;
    display: block;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    padding: 1% 0;
    background: lightblue;
    text-decoration: none;
    color: #000;
    z-index: 9999; /* Above iframe */
}

.no-display{
    display: none !important;
}

@media (max-width: 1300px) {
    .cta {
        position: absolute;
        width: 100%;
        bottom: 0;
        display: block;
        text-align: center;
        font-size: 1.3rem;
        font-weight: 700;
        padding: 6% 0;
        background: lightblue;
        text-decoration: none;
        color: #000;
        z-index: 9999; /* Above iframe */
    }
}


.main-container {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container {
  width: 100%;
  height: 100%;
}

.video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the video fills the screen */
}

#video-top,#video-btn{
    display: none;
}

.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    margin: 0;
}

.modal-content {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 20px;
    width: 80%;
}

.modal-content .pop-title{
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
}
.modal-content .pop-content{
    font-size: 0.9rem;
    font-weight: 400;
    margin: 20px 0 25px 0;
    line-height: 1.5;
}

.btn-container{
    width: 100%;
    display: flex;
    justify-content: end;
}

button{
    min-height: 30px;
}

.btn {
    padding: 0 15px;
    margin-left: 6px;
    font-size: .7rem;
    cursor: pointer;
    border-radius: 10px;
    border: none;
}

.btn-primary {
    background-color: #033effc9;
    color: white;
}

.btn-secondary {
    background-color: grey;
    color: white;
}
