*{
    margin: 0 auto;
    box-sizing: border-box;
}
@font-face {
    font-family: 'Montserrat';
    src: url("font/Montserrat-Medium.ttf");
}
html,body{
    background-color: black;
}
img, svg, a, button{
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
body{
    font-family: 'Montserrat';
    color: white;
    min-width: 100vw;
    min-height: 100vh;
    overflow: hidden;
}
ul, ol{
    padding: 0;
    list-style-type: none;
}
textarea{
    font-family: 'Montserrat';

}
.mobile{
    display: block;
}
.desktop{
    display: none;
}
header .top-bar{
    width: 100%;
    height: 10vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-evenly;
    padding: 20px;
    z-index: 102;
}
header .top-bar:not(.index){
    background-color: black;
}
#ham{
    z-index: 999;
    position: absolute;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    cursor: pointer;
}
#ham div{
    transition: all .4s ease;
    width: 25px;
    height: 2px;
    border-radius: 5px;
    background-color: white;
    margin: 3px 0;
    transform-origin: left;
}
#ham.times #mid{
    opacity: 0;
}
#ham.times #top{
    transform: rotate(40deg);
}
#ham.times #bot{
    transform: rotate(-40deg);
}
header .top-bar .ham-box, header .top-bar .lang-box, header .top-bar .logo-box{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
header .top-bar .ham-box, header .top-bar .lang-box{
    width: 20%;
}
header .top-bar .lang-box{
    position: relative;
}
header .top-bar .lang-box .other{
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 0px;
    transition: all 0.2s ease;
}
header .top-bar .lang-box:hover .other{
    visibility: visible;
    opacity: 1;
    bottom: -50%;
}
header .top-bar .lang-box:hover .other a{
    color: white;
    text-decoration: none;
}

header .top-bar .logo-box{
    width: 50%;
}
header .top-bar .logo-box img{
    width: 100%;
    max-width: 300px;
}
header .sidebar{
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -100%;
    transition: .3s ease;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-evenly;
    text-align: center;
    background-color: black;
    z-index: 101;
}
header .sidebar.show{
    left: 0;
}
header .sidebar nav ul{
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    height: 80%;

}
header .sidebar nav ul li{
    width: 100%;
    padding: 20px;
    text-transform: uppercase;
    font-size: 20px;
}
header .sidebar ul li a{
    width: 100%;
    padding: 20px;
    text-transform: uppercase;
    font-size: 20px;
    color: white;
    text-decoration: none;
}
header .sidebar .ref{
    display: flex;
    flex-flow: column nowrap;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
header .sidebar .ref .b{
    margin: 15px auto;
}

header .sidebar .ref a{
    text-transform: capitalize;
    color: white;
}
header .sidebar .ref img{
    width: 30px;
    margin: 5px;
}
.content{
    width: 100vw;
    height: 100vh;
    transition: .3s ease;
    display: flex;
    align-items: center;
}
.content a.button{
    font-size: 10px;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 15px;
    text-align: center;
    text-transform: uppercase;
    color: white;
    border: 2px solid white;
}
.content a.button i{
    font-size: 14px;
    margin-left: 10px;
}
.hidden{
    display: none;
    visibility: hidden;
}
.placeholder{
    font-size: 25px;
}


@media screen and (orientation: landscape){
    .mobile{
        display: none;
    }
    .desktop{
        display: block;
    }
    header .top-bar{
        height: 15vh;
        position: absolute;
        background-color: unset;
    }
    header .top-bar .logo-box img{
        width: 100%;
        max-width: 150px;
    }
    header .top-bar .ham-box, header .top-bar .lang-box{
        width: 10%;
    }
    header .top-bar .logo-box{
        width: 70%;
    }
    header .sidebar{
        width: 20vw;
    }
    
    .content{
        margin-left: 0;
        position: relative;
    }
    .content.pushed{
        margin-left: 20vw;
    }
    .content::before{
        position: absolute;
        height: 100%;
        box-shadow: 2px 0 6px 1px #ffffff00;
        content: '';
        border-right: 2px solid rgba(255, 255, 255, 0);
        transition: all ease 1s;
        z-index: 100;
        left: -20vw;
        width: 20vw;
        top: 0;
        opacity: 0;
    }
    .content.pushed::before{
        box-shadow: 2px 0 6px 1px #ffffff94;
        border-right: 2px solid white;
        opacity: 1;
    }
    
    .flex{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .flex.row{
        flex-flow: row nowrap;
    }
    header .top-bar:not(.index){
        background-color: unset;
    }
}