@font-face {
    font-family: FertigoPro;
    src: url(./../assets/fonts/Fertigo_PRO.otf);
}

@font-face {
    font-family: SourceSansPro;
    src: url(./../assets/fonts/source_sans_pro/SourceSansPro-Regular.ttf);
}

.main {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
    color: #e9e9e9;
    height: 100vh;
}

.back {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #252323;
    z-index: -2;
}

.container {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 70%;
    margin: auto;
    max-width: 960px;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    overflow: hidden;
    padding: 15%;
    padding-bottom: 100px;
    padding-top: 200px;
}

.container .content {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: flex-start;
}

.container .content ul {
    margin-top: 6rem;
}

.container .content ul li {
    margin-right: 10px;
    margin-left: 10px;
}

body {
    margin: 0;
    padding: 0;
    font-family: SourceSansPro;
    text-transform: uppercase;
}

@media screen and (min-width: 700px) {

    footer ul li:not(:last-child)::after,
    .container .content ul li:not(:last-child)::after {
        content: "|";
        margin-left: 1rem;
    }
}


header {
    display: flex;
    flex: 0;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 0px;
    position: relative;
}

header .logo {
    position: absolute;
    left: -7rem;
    top: -4rem;
    width: 7rem;
    height: 7rem;
}

.inline {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

h1,
h2 {
    margin: 0;
    padding: 0;
    font-size: 2rem;
}

h2 {
    padding: 0 5px 0 5px;
}

.spacer {
    width: 4px;
    height: 100%;
    background: #ccc;
    flex: 1;
    margin-right: 1rem;
    margin-left: 1rem;
    display: flex;
}

h1 {
    font-family: FertigoPro;
    font-size: 3rem;
    margin-bottom: 1rem;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.5rem;
}

ul.inline {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}

.slide {
    z-index: -1;
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

header .sub {
    flex-direction: row;
    display: flex;
}

.slide img {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: center;
    transition: opacity 1s ease;
}

.slide img.active {
    opacity: 1;
}

footer ul li {
    margin-right: 10px;
    margin-left: 10px;
    font-size: 1rem;
}

ul li a:hover {
    text-shadow: #fff 1px 1px 1px;
    cursor: pointer;
}

a {
    color: #e9e9e9;
    text-decoration: none;
}

@media screen and (max-width: 700px) {
    .inline {
        align-items: flex-end;
        justify-content: center;
        flex-direction: row;
        margin-bottom: 1rem;
    }

    header .logo {
        position: relative;
        width: 4rem;
        height: 4rem;
        top: -10px;
        left: 0;
    }

    header .spacer {
        display: none;
    }

    header h1,
    header h2 {
        margin: 0;
        padding: 0;
        font-size: 1.4rem;
    }

    header h2 {
        padding: 0 5px 0 5px;

    }

    header .sub {
        margin-top: .5rem;
        flex-direction: column;
    }

    header .spacer {
        width: 2px;
        height: 100%;
        background: #ccc;
        flex: 1;
        margin-right: 1rem;
        margin-left: 1rem;
    }

    header h1 {
        font-family: FertigoPro;
        font-size: 2rem;
    }

    .container ul {
        flex-direction: column;
    }

    .container ul li:not(:last-child)::after {
        content: "";

    }

    .container {
        display: flex;
        flex-direction: column;
        flex: 1;
        width: 70%;
        margin: auto;
        max-width: 960px;
        justify-content: center;
        align-items: flex-start;
        height: 100%;
        overflow: hidden;
        padding: 5%;
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .container .content ul.inline {
        font-size: 1.2rem;
    }
}

.hidden,
ul.hidden {
    display: none !important;
}