/* Global */
.container {
    width: 100%;
    max-width: 60rem;
    margin: 0 auto;
    padding: 0 1rem;
}
#page {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}
#page .content {
    flex: 1;
}
ol, ul {
    list-style: disc !important;
    padding-left: 1.5rem !important;
}

/* Footer */
.c-footer .c-footer__menu ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin-bottom: .5rem;
} 
.c-footer .c-footer__menu ul li {
    font-weight: 600;
}
.c-footer__socials-header {
    margin-bottom: .6rem;
}

/* Buttons */
input[type="button"] {
    background: transparent;
    border: 2px solid black;
    padding: 1rem 1.5rem !important;
    font-size: .75rem !important;
    font-family: 'Montserrat', Helvetica, sans-serif;
    font-weight: 600;
    font-size: .25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}
input[type="button"]:hover {
    background: #000;
    color: #fff;
}

/* Site Header */
#siteHeader {
    display: block;
    background-color: #fff;
}
#siteHeader > .container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
#siteHeader a.header-logo {
    display: block;
    height: 3rem;
    filter: invert(1);
}
#siteHeader a.header-logo:hover {
    opacity: .66;
}
@media screen and ( max-width: 30rem ) {
    #siteHeader a.header-logo {
        height: 2rem;
    }
}
#siteHeader a.header-logo img {
    height: 100%;
    width: auto;
}

/* Template: Page */
#page:not(.page_home) {
    background: rgb(245, 245, 245);
}
#page:not(.page_home) .c-footer {
    color: #fff;
}
#page .content .page-content {
    padding: 3rem 0;
    color: #000;
}
#page .content .page-content a {
    color: #000;
}
.page-content .entry-header {
    display: flex;
    flex-wrap: nowrap;
    text-align: center;
    justify-content: center;
    margin-bottom: 2rem;
}
.page-content .entry-header .entry-title {
    font-size: 1.75rem;
}

/* Page: Careers */
.single_job_listing .meta {
    list-style: none !important;
    padding-left: 0 !important;
}
ul.job_listings li.job_listing a .meta {
    display: none !important;
}
ul.job_listings li.job_listing a img.company_logo {
    left: 0.45em;
    bottom: .45em;
}
.single_job_listing .application .application_details {
    background-color: #fff;
}

/* Page: Frontpage */
.c-section-contact {
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    padding: 4rem 2rem !important;
}
.c-section-contact__details {
    flex-direction: row !important;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    max-width: 980px;
    padding: 1rem;
}
.c-section-contact__item {
    flex-basis: unset !important;
    width: 25% !important;
}
.c-section-merch {
    position: relative;
    padding: 2rem;
}
.c-header--top {
    position: relative !important;
}
.c-section-merch .c-header--top {
    margin: 0 auto;
}
.c-header--center {
    position: absolute;
    top: 50%;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    text-align: center;
}
.c-section-merch__content {
    display: none;
    flex-wrap: nowrap;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.c-section-merch__content > div {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    padding: 1rem;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.c-section-merch__content > div::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    z-index: 1;
}
.c-section-merch__content > div a {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 90%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 2;
}
.c-section-merch__content > div a h2 {
    font-weight: bold;
}
.c-section-merch__content > div:hover::after {
    background-color: rgba(0, 0, 0, .25);
}
.c-section-merch.js-active .c-section-merch__content {
    display: flex;
}
@media screen and (max-width: 768px) {
    .c-section-contact__item {
        width: 50% !important;
    }
}
@media screen and (min-width: 769px) {
    .c-section-contact .c-header {
        max-width: 70% !important;
    }
}