html {
    box-sizing: border-box;
}

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

/* Author : Felix Zemmel <felix@zemmel.es> */
/* Date : 2015.09.27 */
/* File : css/style.css */
/* Made with Bourbon 4.2.4 + Neat 1.7.2 */
/* http://bourbon.io/ */
/* VARIABLES */
body,
html {
    min-height: 100%;
    margin: 0;
    padding: 0;
    line-height: 1;
}

body {
    background-color: #ffffff;
    color: #7e0000;
    font-family: "fira-sans", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    border-left: 20px solid #7e0000;
}

.content {
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 40px;
    max-width: 1440px;
}

@media screen and (min-width: 768px) {
    .content {
        grid-template-columns: 1fr 1fr;
    }
}

h1 {
    margin: 0;
    padding: 0 0 20px;
}

h2,
h3,
h4 {
    font-weight: 700;
    margin: 0;
    text-align: center;
}

@media screen and (min-width: 768px) {
    h2,
    h3,
    h4 {
        text-align: left;
    }
}

h2 {
    font-weight: 400;
    margin: 0 0 30px;
    text-transform: uppercase;
    font-size: 20px;
}

h3 {
    margin: 30px 0 15px;
    font-size: 18px;
}

h4 {
    text-align: left;
    font-size: 14px;
}

img {
    max-width: 100%;
    height: auto;
}

address,
p,
ul,
dl {
    font-style: normal;
    line-height: 1.5;
    margin: 0 0 20px;
    padding: 0;
    font-size: 16px;
}

ul {
    list-style: none;
}

ul li {
    display: block;
    margin: 0;
    padding: 0;
}

ul li:before {
    content: "- ";
}

dl {
    width: 300px;
}

dl dt,
dl dd {
    display: inline-block;
    margin: 0;
}

dl dt {
    width: 75px;
}

dl dd {
    width: 220px;
}

address span {
    display: block;
}
