*{
    font-family: sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

header {
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 200px 15px 200px;
    transition: 0.5s ease;
}

header .brand {
    color: white;
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

header .navigation {
    position: relative;
}

header .navigation .navigation-item a{
    position: relative;
    color: white;
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    margin-left: 30px;
    transition: 0.3s ease;
}

header .navigation .navigation-item a::before{
    content: "";
    position: absolute;
    background-color: white;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    transition: 0.5s ease;
    
}

header .navigation .navigation-item a:hover:before{
    width: 100%;
}

section{
    padding: 100px 200px;
}

.home {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: #2696E9;

}

.home::before {
    content: "";
    z-index: 777;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:rgba(0, 68, 255, 0.295) ;
}

.home .content {
    z-index: 888;
    color: #fff;
    width: 70%;
    margin-top: 50px;
    display: none;
}

.home .content.active{
    display: block;
}

.home .content h1 {
    font-size: 4em;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 75px;
    margin-bottom: 40px;
}

.home .content h1 span{
    font-size: 1.2em;
    font-weight: 600;
}

.home .content p {
    margin-bottom: 65px;
}

.home .content a {
    background-color: rgba(255, 255, 255, 0.089);
    border: 2px solid #fff;
    padding: 15px 35px;
    /* color: #1688ac; */
    color: #fff;
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
    transition: 1s ease;
}

.home .content a:hover{
    background-color: #fff;
    color: #000;
}

.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.5s ease;
}

.home .media-icons a:not(:last-child){
    margin-bottom: 20px;
}

.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: 12px;
}

.Slider-navigation .nav-btn {
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
}

.Slider-navigation .nav-btn.active {
    background-color: dodgerblue;
}

.Slider-navigation .nav-btn:not(:last-child){
    margin-right: 20px;
}

.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;
}

.home .media-icons a:hover {
    transform: scale(1.3);
}

@media(max-width:1024px){
    header{
        padding: 12px 20px;
    }

    section{
        padding: 100px 20px;
    }

    .home .media-icons {
        right: 15px;
        
    }

    header .navigation {
        display: none;
    }

    header .navigation.active {
        /* display: none; */
        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-item a{
        color: #222;
        font-size: 1.2em;
        margin: 20px;
    }

    header .navigation .navigation-item a::before{
        background-color: black;
        height: 3px;
    }

    header .navigation.active .navigation-item{
        background-color: white;
        width: 600px;
        max-width: 600px;
        margin: 20px;
        padding: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 5px;
        box-shadow: 0px 0px 15px black;
    }

    .menu-btn {
        background: url(../image/menu_icon_153999.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 30px;
        border-radius: 40%;
        box-shadow: 0px 0px 5px silver;
        padding: -3px;
        width: 30px;
        height: 30px;
        cursor: pointer;
        transition: 0.3s ease;
        /* color: white;
        font-size: 25px;
        cursor: pointer; */
    }

    .menu-btn.active{
        z-index: 999;
        background: url(../image/485-4856652_close-menu-icon-white-png-transparent-png.png);
        background-size: 55px;
        border-radius: 50%;
        padding: -3px;
        background-repeat: no-repeat;
        background-position: center;
        transition: 0.3s ease;
    }
    
    body{
        overflow-x:hidden;
    }
  
 
}

@media(max-width:720px){
    h1{
        font-size: 30px !important;
    }
}