* {
    box-sizing: border-box;
    min-width: 0;
    min-height: 0;
}

html, body {
    margin: 0;
    padding: 0;
    background-color: #000;
    min-width: 100%;
    min-height: 100%;
    color: #fff;
    font-size: 24px;
    font-family: 'Teko', sans-serif;
    font-weight: 400;
}

a {
    color: #ae9701;
}

h1, h2, h3, h4, strong, .button {
    font-weight: 600;
}

p {
    font-size: 24px;
    line-height: 30px;
}

.responsive-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.responsive-container iframe, .responsive-container embed {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}

nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 1rem;
    z-index: 10;
}

nav ul, nav ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    width: 1rem;
    height: 1rem;
    display: block;
    background-color: #ae9701;
    position: relative;
    transform: rotate(45deg);
    margin-bottom: 1rem;
}

nav a:before {
    display: block;
    padding-right: 0;
    content: attr(title);
    position: absolute;
    left: -100px;
    transform: rotate(-45deg) translateX(20%);
    margin: 0;
    width: 100px;
    top: 56px;
    color: #fff;
    text-decoration: none;
    opacity: 0;
    transition: all 0.3s ease-out;
    text-align: right;
}

nav ul li a:hover:before {
    opacity: 1;
    transform: rotate(-45deg) translateX(0);
}

nav ul li a:after {
    position: absolute;
    display: block;
    content: '';
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) scale(0);
    z-index: 10;
    background-color: #fff;
    transition: all 0.1s ease-out;
    width: 0.5rem;
    height: 0.5rem;
}

nav li.active a:after, nav ul li a:hover:after {
    transform: translateX(-50%) translateY(-50%) scale(1);
    animation-play-state: running;
    animation-duration: 3s;
    animation-name: nav;
    animation-iteration-count: infinite
}

nav a:active, nav a:focus {
    outline: none;
}

@keyframes nav {
    0% {
        transform: translateX(-50%) translateY(-50%) scale(1);
    }
    25% {
        transform: translateX(-50%) translateY(-50%) scale(0.75);
    }
    50% {
        transform: translateX(-50%) translateY(-50%) scale(1);
    }
    75% {
        transform: translateX(-50%) translateY(-50%) scale(0.75);
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
}

section {
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    position: relative;
    display: flex;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background: url('/storage/app/media/new/bg.jpg') center center no-repeat;
    background-size: cover;
    position: relative;
    padding: 2.5rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 5rem 0 !important;
    }
}

section:before, section:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.65rem;
    background: url('/storage/app/media/new/top.png') center center repeat-x;
    z-index: 9;
    background-size: cover;
}

section:after {
    background: url('/storage/app/media/new/bottom.png') center center repeat-x;
    top: inherit;
    bottom: 0;
    background-size: cover;
}

section .container {
    position: relative;
    z-index: 1;
}

section .simpleParallax {
    max-height: 100%;
}

section video.background {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

footer {
    background-color: #f1f1f1;
    color: #fff;
    font-size: 0.75rem;
}

footer a {
    color: #ae9701;
}

footer p {
    font-size: 0.85rem;
}

footer img {
    max-width: 100px;
}

@media (max-width: 768px) {
    footer .grid > div:nth-child(1) {
        grid-row: 3;
    }
    footer .grid > div:nth-child(3) {
        grid-row: 1;
    }
}
