/*****************
    Reset rules
*****************/
html, body, div {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Catamaran', sans-serif, Helvetica, Courier;
    line-height: 1.5;
}

html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

img {
    box-sizing: content-box;
}

/*******************
    Base rules
*******************/
html, body {
    background: #FFF;
}

h1 {
    font-size: 1em;
    margin: 0;
}

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

a:hover {
    color: #DE6D6D;
}

ul {
    list-style: none;
    padding: 0;
}

@media (min-width: 992px) {

    html, body, main {
        height: 100%;
        width: 100%;
    }
}

/*******************
    Navigation
*******************/
header {
    padding-bottom: 10px;
}

.page-header {
    font-family: Arial;
    font-size: 1.4em;
    font-weight: bold;
}

.page-header:hover {
    color: inherit;
}

nav {
    font-size: 0.85em;
}

nav .category {
    font-weight: bold;
}

nav .active {
    color: #DE6D6D;
}

@media (max-width: 991px) {

    .navigation-bar {
        padding: 10px 20px;
    }
}

@media (min-width: 992px) {

    .navigation-bar {
        /* background: rgba(255, 255, 255, 0.6); */
        bottom: 13px;
        left: 0;
        margin-left: 40px;
        padding: 35px 20px 20px 20px;
        position: absolute;
        top: 0;
        z-index: 10;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        pointer-events: none;
    }

    .navigation-bar a{
        pointer-events: all;
    }

    nav {
        margin-top: 16px;
    }

    .navigation-list{
        margin-bottom: 4px;
    }
    .navigation-list > li {
        margin-bottom: 8px;
    }
   
}

/*******************
    Content
*******************/
.container {
    padding: 20px;
}

.image-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.info-box {
    display: inline-block;
    vertical-align: top;
    line-height: 1.0;
    padding: 5px 10px 0 0;
}

.info-box-headline {
    font-size: 0.75em;
    font-weight: bold;
    font-style: italic;
}

.info-box-small-text {
    font-size: 0.70em;
}

@media (max-width: 991px) {

    .image {
        max-height: 95vh;
        margin: 0 auto;
        display: block;
    }
}

@media (min-width: 992px) {

    .container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        height: 100%;
        padding: 95px 20px 50px 20px;
    }
    
    .container.about{
        display: block;
        margin-left: 40px;
        max-width: 700px;
    }

    .container-horizontal {
        white-space: nowrap;
        width: auto;
        overflow-x: scroll;
        overflow-y: hidden;
    }

    
    

    .image-responsive-horizontal {
        display: inline-block;
        max-height: 90vh;
        /* max-height: 597px; */
        max-width: inherit;
    }

    .image-container {
        display: inline;
    }
}

.underline {
    text-decoration: underline;
}

.social-link-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    margin-bottom: 16px;
}

.social-icon {
    height: 29px;
    margin-right: 10px;
}


