@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Poppins&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif !important; 
}

header{
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    padding: 15px 200px;
    transition: 0.5 ease;
    box-sizing: border-box;
}

header .brand{
    color: #fff !important;
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    box-sizing: border-box;
}

section{
    padding: 100px 200px;
    box-sizing: border-box;
}

.home{
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: #2696E9
}

.home:before{
    z-index: 777;
    content: '';
    position: absolute;
    background: rgba(16, 16, 16, 0.7);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    box-sizing: border-box;
}

.home .content{
    z-index: 888;
    color:#ffffff;
    width: 70%;
    margin-top: 50px;
    display: none;
    box-sizing: border-box;
}

.home .content.active{
    display: block;
    box-sizing: border-box;
}

.home .content h1{
    font-size: 4em;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 75px;
    margin-bottom: 40px;
    box-sizing: border-box;
}

.home .content h1 span{
    font-size: 1.2em;
    font-weight: 600;
    box-sizing: border-box;
}

.home .content p{
    font-size: 20px;
    margin-bottom: 65px;
    box-sizing: border-box;
}

.home video{
    z-index: 000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-sizing: border-box;
}


.slider-navigation{
    z-index: 888;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(80px);
    margin-bottom: 12px;
    box-sizing: border-box;
}

.slider-navigation .nav-btn{
    width: 12px;
    height: 12px;
    background: #ffffff !important;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
    transition: 0.3s ease;
}

.slider-navigation .nav-btn.active{
    background: #2696E9;
}

.slider-navigation .nav-btn:not(:last-child){
    margin-right: 20px;
}

.slider-navigation .nav-btn:hover{
    transform: scale(1.2);
}

.video-slide{
    position:absolute;
    width:100%;
    clip-path: circle(0% at 0 50%);
}

.video-slide.active{
    clip-path: circle(150% at 0 50%);
    transition: 2s ease;
    transition-property: clip-path;
}

@media (max-width: 1040px){
    header{
        padding: 12px 100px;
    }

    section{
        padding: 100px 100px;
    }

    .home .content h1{
        font-size: 3em;
        font-weight: 900;
        letter-spacing: 3.75px;
        line-height: 56.25px;
        margin-bottom: 30px;
    }
    
    .home .content h1 span{
        font-size: 1.2em;
        font-weight: 600;
    }
}

@media (max-width: 600px){
    header{
        padding: 12px 20px;
    }

    section{
        padding: 100px 20px;
    }

    .home .content p{
        font-size: 15px;
    }

    .home .content h1{
        font-size: 2em;
        font-weight: 900;
        letter-spacing: 2.5px;
        line-height: 37.5px;
        margin-bottom: 20px;
    }
    
    .home .content h1 span{
        font-size: 1.2em;
        font-weight: 600;
    }
}