*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    height:100%;
    overflow:hidden;
    font-family:Montserrat,sans-serif;
}

.slider{
    width:100%;
    height:100vh;
    position:relative;
}

.slide{
    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    transition:.5s;
}

.slide.active{
    opacity:1;
    visibility:visible;
}

.slide iframe{
    width:100%;
    height:100%;
    border:none;
}

#prev,
#next{
    position:fixed;
    top:50%;
    transform:translateY(-50%);
    z-index:999;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    font-size:24px;
    background:white;
}

#prev{
    left:20px;
}

#next{
    right:20px;
}

.cta-slide{
    display:flex;
    justify-content:center;
    align-items:center;
    background:#0F1B2D;
    color:white;
    text-align:center;
}

.cta-content{
    max-width:800px;
    padding:40px;
}

.cta-content h1{
    font-size:4rem;
    margin-bottom:20px;
}

.cta-content p{
    font-size:1.2rem;
    line-height:1.8;
    margin-bottom:30px;
}

.buttons{
    display:flex;
    gap:15px;
    justify-content:center;
    flex-wrap:wrap;
}

.btn{
    padding:15px 30px;
    background:#FFA500;
    color:white;
    text-decoration:none;
    border-radius:5px;
}

.secondary{
    background:transparent;
    border:2px solid white;
}