@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 0.938em/1.5em "PT Sans", sans-serif;
    color: #000;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 950px;
    border: solid 1px #000;
    background: #fff;
    padding: 5rem 5rem 3rem;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1.5rem;
    font-size: 3.2em;
    line-height: 1;
}
h1, h2, h3, .location p {
    color: #124D95;
    font-weight: 400;
}
.big {
    font-size: 2.1em;
    color: #9AADBA;
    line-height: 1.3;
}
.intro {
    font-size: 1.125em;
}
h2 {
    font-size: 2.1em;
    line-height: 1;
    text-transform: uppercase;
}
h3 {
    font-size: 1.188em;
    line-height: 1.3;
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
ul {
    padding: 0 0 1.5rem;
    list-style: none;
    width: 49%;
}
li {
    padding: 0 0 0 30px;
}
ul li:before {
    content: "\25a0";
    font-size: 0.8em;
    margin: 0 0 0 -20px;
    float: left;
    color: #124D95;
}
figure {
    margin: 3rem -5rem 1rem 0;
}
.location {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 68%;
    position: relative;
    padding: 1rem 0 2rem;
}
.location:before {
    position: absolute;
    content: "";
    left: 36%;
    top: 20px;
    width: 2px;
    height: 53%;
    background: #124D95;
}
.location p {
    line-height: 1.5;
}
section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.mail {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 59%;
}
.mail p {
    font-size: 0.875em;
    line-height: 1.3;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    figure {
        margin: 1rem 0;
    }
    p {
        text-align: left;
    }
    p :is(a, span) {
        display: inline-block;
    }
    h1 {
        font-size: 2.3em;
    }
    .big {
        font-size: 1.7em;
    }
    li br {
        display: none;
    }
}
@media only screen and (max-width:780px) {
    ul {
        width: 100%;
    }
    ul:first-of-type {
        padding-bottom: 0;
    }
    .location, .mail {
        width: 100%;
    }
}
@media only screen and (max-width:550px) {
    .location::before {
        display: none;
    }
    h2 {
        padding-bottom: 1rem;
    }
}
@media only screen and (max-width:350px) {
    h1 {
        font-size: 1.7em;
    }
}