@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap');

* {
    margin: 0px;
    padding: 0px;
    /*box-sizing: border-box;*/
    font-family: 'poppins', 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 100px;
    transition: 0.5s ease;
}

header .brand {
    color: #ffffff;
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

header .navigation {
    position: relative;
}

header .navigation .navigation-items a {
    position: relative;
    color: #ffffff;
    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: rgb(59, 255, 245);
    width: 0;
    height: 3px;
    bottom: 0px;
    left: 0px;
    transition: 0.3s ease;
}

header .navigation .navigation-items a:hover::before {
    width: 100%;
    color: cyan;
}
header .navigation .navigation-items a:hover{
    color:cyan;
}

section {
    padding: 100px 200px;
}

.home {
    position: relative;
    width: 100%;
    min-height: 88vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: #000000; 
}

.home:before {
    z-index: 777;
    content: '';
    position: absolute;
     background: rgba(0, 0, 0, 0.3); 
    width: 100%;
    height: 100%;
    top: 0;
    left:0;
}

.home .content {
    z-index: 888;
    color: #fff;
    width: 70%;
    /*margin-top: 50px;*/
}

.home .content h6 {
    font-size: 4em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 75px;
    margin-bottom: 0px;
}

.home .content h6 span {
    font-size: 1.2em;
    font-weight: 500;
}

.home .content p {
    margin-bottom: 5px;
    font-size:24px;
}

.home .content a{
   
    padding: 10px 35px;
    color: #000;
    margin-top:50px;
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
    background-color:#fff;
    border:1px solid white;
    /*opacity:0.4;*/
}
.home .content a:hover{
     background-color:#000;
     color: #fff;
}

.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.3s ease;
}

.home .media-icons a:not(:last-child) {
    margin-bottom: 20px;

}

.home .media-icons a:hover {
    transform: scale(1.3);
}
 
 .video-slide{
    position: absolute;
    width: 100%;
    clip-path: circle(0% at 0 50%);
} 
 .video-slide.active {
     clip-path: circle(140% at 0 50%);
     transition: 0.5s ease;
     transition-property: clip-path;
}   

.home video {
    z-index: 000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-navigation {
    z-index: 888;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(80px);
    margin-bottom: 20px;
}

/*.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{

} */
.slider-navigation .nav-btn:not(:last-chlid) {
    margin-right: 20px;
}
.slider-navigation .nav-btn:hover{
    transform: scale(1.2);
}

@media (max-width:1322px) {
    header .navigation .navigation-items a {
        font-size: 14px;
        margin: 10px;
    }

}

@media (max-width:998px) {
    header {
        padding: 12px 20px;
    }

    section {
        padding: 100px 20px;
    }

    .home .media-icons {
        right: 15px;
    }
    
    /*today start work */
    
    .video-slide{
        display: none;
    }
    .home{
        background-color: #56ddfc;
    }
    .home .content h6{
         font-size:10px;
         font-weight: 600;
         text-transform: uppercase;
         letter-spacing: 1px;
         /*line-height: px;*/
         margin-bottom: 10px;
    }
    .home .content p {
    margin-bottom: 20px;
    font-size:16px;
    }
    
    .slider-navigation .nav-btn{
        display:none;
    }
    
    
    /*today end work */

    header .navigation {
        display: none;
    }

    header .navigation.active {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(1, 1, 1, 0.5);
    }

    header .navigation .navigation-items a {
        color: #222;
        font-size: 1.2em;
        margin: 20px;
    }

    header .navigation .navigation-items a::before {
        background: #222;
        height: 5px;
    }

    header .navigation.active .navigation-items {
        background: #fff;
        width: 600px;
        max-width: 600px;
        margin: 20px;
        padding: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 5px;
        box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
    }


    .menu-btn {
        background: url(white-menu-iconnn.jpg)no-repeat;
        background-size: 60px;
        background-position: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        transition: 0.3s ease;
    }

    .menu-btn.active {
        z-index: 999;
        background: url(cross.png)no-repeat;
        background-size: 60px;
        background-position: center;
        transition: 0.3s ease;
    }
}


.whatsapp_float {
    position: fixed;
    bottom: 40px;
    right: 20px;

}

.whatsapp_float :hover {
    margin-bottom: 20px;

}

.whatsapp_float_btn {
    border-radius: 50%;
    transition: all 0.3s ease;
}

.whatsapp_float_btn :hover {
    padding: 5px;
    background-color: green;
}