@import"https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css";
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"poppins",sans-serif;
}
header{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:40px 100px;
    z-index:1000;
}
header .logo{
    max-width:120px;
}
header .toggle{
    max-width:60px;
    cursor:pointer;
}
header .logo img,
header .toggle img{
    max-width:100%;
}
.banner{
    position:relative;
    width:100%;
    min-height:100vh;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.banner img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
}
.banner .content{
    position:relative;
    padding:100px 50px 100px 150px;
    box-sizing:border-box;
}
.banner .content h2{
    text-transform:uppercase;
    color:#fff;
    font-size:2.5em;
    font-weight:400;
    letter-spacing:0.1em;
}
.banner .content h2 span{
    font-weight:800;
}
.banner .content p{
    color:#fff;
    font-size:1.2em;
    font-weight:300;
    letter-spacing:0.02em;
    line-height:1.5em;
    margin:15px 0 35px;
}
.play{
    position:relative;
    display:inline-flex;
    justify-content:flex-start;
    align-items:center;
    color:#fff;
    text-transform:uppercase;
    font-weight:500;
    text-decoration:none;
    letter-spacing:2px;
    font-size:1.2em;
}
.play img{
    margin-left:13rem;
    max-width:50px;
}
.sci{
    position:absolute;
    top:50%;
    right:0;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    transform:translateY(-50%);
}
.sci li{
    list-style-type:none;
}
.sci li a{
    text-decoration:none;
    color:#999;
    margin-right:30px;
    font-size:3em;
}
.sci li a i{
    filter:invert(1);
    transform:scale(0.6);
}
.sci li a:hover{
    color:white;
}
.slide{
    position:absolute;
    bottom:50px;
    left:calc(50% - 250px / 2);
    width:250px;
    height:150px;
    background-size:cover;
    cursor:pointer;
    animation:animate 25s linear infinite;
}
@keyframes animate
{
    0%,100%{
        background-position:top;
    }
    45%,55%{
        background-position:bottom;
    }

}
.trailer{
    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:10000;
    background:rgba(0,0,0,0.95);
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    visibility:hidden;
    opacity:0;
}
.trailer.active{
     visibility:visible;
    opacity:1;
}
.trailer video source{
    max-width:900px;
    outline:none;
}
.trailer .close{
    position:absolute;
    top:30px;
    right:30px;
    cursor:pointer;
    filter:invert(1);
    max-width:32px;
}
@media (max-width:991px){
    header{
    padding:20px 50px;
    }
    header .logo{
        max-width:80px;
    }
    header .toggle{
        max-width:40px;
    }
    .banner{
        padding:100px 0px;
    }
    .banner img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    
    }
    .banner .content h2{
        font-weight:400;
        font-size:2em;
        letter-spacing:0.05em;
    }
    .banner .content p{
        font-size:1em;
    }
    .slide{
    position:absolute;
    bottom:10px;
    left:10rem;
    width: 250px;
    height: 150px;
    margin:20px 0;
}
.sci{
    position:absolute;
    top:initial;
    transform:translateY(-90%);
    right:initial;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:row;
    
}
.sci li{
    list-style-type:none;
    margin:0 1px;
    font-size:12px;
    
}
.trailer video{
    width:95%;

}
}