@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
}
header{
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 200px;
    transition: 0.5s ease;
}
header .brand{
    color: #fff;
    font-size: 1.6em;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}
header .navigation{
    position: relative;
}
header .navigation .navigation-items a{
    position: relative;
    color: #fff;
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    margin-left: 30px;
    transition: 0.3s ease;
}
header .navigation .navigation-items a::before{
    content: '';
    position: absolute;
    background-color: #fff;
    width: 0%;
    height: 3px;
    bottom: -5px;
    left: 0;
    transition: 0.3s ease;
}
header .navigation .navigation-items a:hover:before{
    width: 100%;
}

/* the main page starts */
section{
    padding: 100px 200px;
}
.home{
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: #383939;
}
.home video{
    z-index: 000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home:before{
    z-index: 777;
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.461);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.home .content{
    z-index: 888;
    color: #fff;
    width: 70%;
    margin-top: 50px;
    display: none;
}
.home .content.active{
    display: block;
}
.home .content h1{
    font-size: 3.7em;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 65px;
    margin-bottom: 20px;
}
.home .content h1 span{
    font-size: 1.1em;
    font-weight: 600;
}
.home .content p{
    margin-bottom: 40px;
    font-size: 0.93em;
}
.home .content a{
    background-color: #fff;
    padding: 12px 25px;
    color: #111212;
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    border-radius: 3px;
}
.home .media-icons{
    z-index: 888;
    position: absolute;
    right: 30px;
    display: flex;
    flex-direction: column;
    transition: 0.5s ease;
}
.home .media-icons a{
    color: #fff;
    font-size: 1.6em;
    transition: 0.2s ease;
}
.home .media-icons a:not(:last-child){
    margin-bottom: 20px;
}
.home .media-icons a:hover{
    transform: scale(1.2);
}
.menu-btn{
    display: none;
}
.slider-navigation{
    z-index: 888;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(80px);
    margin-bottom: 15px;
}
.slider-navigation .nav-btn{
    width: 12px;
    height: 12px;
    background: #fff;
    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: #000000;
    border: 1px solid #fff;
}
.slider-navigation .nav-btn:not(:last-child){
    margin-right: 15px;
}
.slider-navigation .nav-btn:hover{
    transform: scale(1.2);
}
.vdo-slide{
    position: absolute;
    width: 100%;
    clip-path: circle(0% at 0 50%);
    /* transition: clip-path 1s ease; */
}
.vdo-slide.active{
    clip-path: circle(150% at 0 50%);
    transition: clip-path 1s ease;
}




@media (max-width: 1040px){
    header{
    padding: 15px 35px;
    }
    section{
        padding: 100px 20px;
    }
    .home .media-icons{
        right: 15px;
    }
}


@media (max-width: 830px){
    header .navigation{
        display: none;
    }
    header .navigation.active{
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(0, 0, 0, 0.5);
    }
    header .navigation .navigation-items{
        background: #fff;
        width: 400px;
        max-width: 400px;
        margin: 20px;
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 5px;
        box-shadow: 0 5px 25px rgb(1, 1, 1 / 20%);
    }
    header .navigation .navigation-items a{
        color: #222;
        font-size: 1.1em;
        margin: 17px;
    }
    header .navigation .navigation-items a:hover:before{
        background-color: #222;
        height: 4px;
    }
    header .brand {
        font-size: 1.2em;
    }
    section {
        padding: 70px 20px;
    }
    .home .content h1 {
        font-size: 3.3em;
        line-height: 70px;
        margin-bottom: 10px;
    }
    .home .content p {
        margin-bottom: 30px;
    }
    .home .content a {
        padding: 10px 14px;
        font-size: 0.9em;
    }
    .home .media-icons a:not(:last-child) {
        margin-bottom: 10px;
    }
    .home .media-icons a {
        font-size: 1.3em;
    }
    .menu-btn{
        display: block;
        color: #fff;
        font-size: 1.3rem;
        transition: 0.2s ease;
    }
    .menu-btn.active{
        z-index: 999;
    }
}
