@import url('https://fonts.googleapis.com/css?family=Rubik:200,300,400,500,700');
*,
*:after,
*::before {
    box-sizing: border-box;
    margin:0px;
    padding:0px;
}
body{
    background: #000;
    font-family: 'Rubik', sans-serif;
    color:#fff;
    overflow-x: hidden;
    font-size:14px;
    position: relative;
}
.text-shadow {
    text-shadow: 2px 2px 5px rgba(0,0,0,.6);
}
#landingpage {
    background: #000;
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
}
.video-background,
.video-background iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.video-background:before{
    content: "";
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
    background:url(../images/background/square-pattern.png);
    z-index:10;
}
.video-background iframe{
    opacity: 0.5;
}
.body-landingpage section{
    position: relative;
    z-index: 10;
}
#main{
    padding-top:50px;
}
#main h3{
    font-weight:800;
}
#main h2{
    font-weight: 300;
}
.linkbox{
    /*background:linear-gradient(-45deg, rgba(255,255,255,0.2),rgba(255,255,255,0.1));*/
    color:#fff;
    text-decoration: none;
    border-radius: 3px;
    transition: .3s ease;
}
.linkbox:hover{
    text-decoration: none;
    color:#fff;
    transform:scale(1.1) translateY(-5px);
    z-index:10;
    background: #fff;
    color:#333;
}
.linkbox .icon{
    margin:0 0 15px;
    font-size:30px;
}
.linkbox .icon img{
    width:80px;
}
.linkbox .text{
    font-size:11px;
    text-transform: uppercase;
}
#navbar{
    position: fixed;
    top:0;
    left:0;
    right:0;
    z-index:99;
    transition: .3s ease;
}
.logo h4{
    text-transform: uppercase;
    font-size:25px;
    letter-spacing: 1.5px;
}
.logo h5{
    font-size:12px;
    text-transform: uppercase;
}
.logo-garuda h4{
    font-size:18px;
}
#navbar.float{
    background:#c0392b;
}
#navbar.float .logo{
    color:#fff;
}
.heading h2{
    font-style: italic;
    font-size:30px;
}
#visi{
    background:#C0392B;
    color:#fff;
    padding:30px 0 150px; 
    margin-top:150px;
    opacity: 0.8;
}
#visi h2{
    font-size:55px;
}
#visi h4{
    font-weight: 200;
}
#visi .heading h4{
    font-weight: 600;
}
#visi hr{
    width: 100px;
    border:none;
    border-bottom:2px solid #fff;
    margin:30px auto;
}
.flag-divider{
    position: absolute;
    top:0%;
    left:0;
    transform: translateY(-100%); 
    width:100%;
}
footer{
    position: relative;
    z-index: 10;
    background:#fff;
    color:#333;
    padding:30px 0;
    line-height:180%;
    color:#888;
    font-weight: 300;
}
@media (min-aspect-ratio: 16/9) {
    /*.video-background { height: 300%; top: -100%; }*/
}
@media (max-aspect-ratio: 16/9) {
    /*.video-background { width: 300%; left: -100%; }*/
}
@media (max-width: 768px){
    #navbar{
        position: relative;
    }
    #navbar .row{
        justify-content:center!important;
    }
    #navbar .logo{
        margin-bottom: 30px;
    }
    #main{
        padding:15px 0;
    }
    #main h2{
        font-size:20px;
    }
    .linkbox .text{
        font-size:14px;
    }
    #visi .heading h4{
        font-size:20px;
    }
    #visi .heading h5{
        font-size:18px;
    }
    #visi h2{
        font-size:30px;
    }
    #visi h4{
        font-size:16px;
    }
    .flag-divider{
        width:auto;
    }
}