html, 
body {
    height: 100%;
    margin:0;
    padding:0;
}

body{
    min-height: 100%;
    text-decoration: none;
    font-family: 'Montserrat';
}

body a {
    text-decoration: none;
}
hr.hr-blurry {
    margin: 30px 0;
    height: 1px;
    border: none;
    background: -webkit-gradient(linear, 0 0, 100% 0, from(transparent), to(transparent), color-stop(50%, black));
}
header {
    position: relative;
    background-color: black;
    height: 95vh;
    min-height: 25rem;
    width: 100%;
    overflow: hidden;
}

header video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

header .container {
    position: relative;
    z-index: 2;
}

header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.5;
    z-index: 1;
}
.lang-nav-top {
    color:#fff !important;
    position:absolute;
    right:0px;
    z-index: 2;
    display:inline-block;
    padding:5px;
    font-size:13px;
    text-shadow: 3px 0px 7px rgba(0,0,0,0.8), 
      -3px 0px 7px rgba(0,0,0,0.8), 
      0px 4px 7px rgba(0,0,0,0.8);
}
.lang-nav-top, .lang-nav-top a {
    color:#fff !important;
}
.main-footer {
    background-color:#222;
    color:#fff;
}
.main-footer a{
    color:#fff;
}
.text-justify {
    text-align: justify;
}
.reveal {
    position: relative;
    opacity: 0;
}

.reveal.active {
    opacity: 1;
}
.active.fade-bottom {
    animation: fade-bottom 0.5s ease-in;
}
.active.fade-left {
    animation: fade-left 0.5s ease-in;
}
.active.fade-right {
    animation: fade-right 1s ease-in;
}
@keyframes fade-bottom {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes fade-left {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-right {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.info-box{
    min-width:200px;
}
.info-box-label, .info-box-count {
    display:block;
    clear:both;
}
.info-box-label{
    
}

@media (pointer: coarse) and (hover: none) {
    header {
        background: url('') black no-repeat center center scroll;
    }

    header video {
        display: none;
    }
}
.cursor-pointer {
    cursor:pointer
}