:root {
    --content-width: 65rem;
    --bg-color: white;
    --color-link: #454545;
    /*    font-size: calc(1vw + 1vh + .5vmin);*/
    font-size: 16px;
}

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



html {
    font-family: futura-pt, futura, sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol";
    font-weight: 300;
    color: #454545;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

}

body {
    background: var(--bg-color);
}

li {
    list-style: none;
}

a {
    color: currentColor;
    text-decoration: none;
}

strong,
b {
    font-weight: 500;
}

img {
    width: 100%;
}

.grayscale {
    filter: grayscale(100%);
}

.page {
    padding: 0vh 5vw 5vh;
}

.page > * {
    /*    max-width: var(--content-width);*/
    margin: 0 auto;
}

.header {
    background: var(--bg-color);
    position: fixed;
    z-index: 10;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 10vw);
}

.menu {
    /*    margin-bottom: 3%;*/
    display: flex;
    flex-flow: row wrap;
    font-weight: 400;
}

.menu div {
    position: relative;
    text-transform: uppercase;
    font-size: .8rem;
}

.menu div:first-child {
    margin-right: 1rem;
}

.header .logo {
    display: block;
    font-size: 5rem;
    /*    29vw*/
    line-height: 1;
    position: relative;
    left: -7px;

    /*    text-shadow: 0 0 1px #454545;*/
}

.back {}

.address {
    display: none;
}


section {
    overflow: hidden;
    margin-bottom: 4rem;
}

/* Page Loader */

.js .loading::before {
    content: '';
    position: fixed;
    z-index: 100000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
}

.js .loading::after {
    content: '';
    position: fixed;
    z-index: 100000;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    pointer-events: none;
    border-radius: 50%;
    opacity: 0.4;
    background: var(--color-link);
    animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
    to {
        opacity: 1;
        transform: scale3d(0.5, 0.5, 1);
    }
}



/*
.menu a[aria-current] {
    border-bottom: 2px solid #000;
}
*/

main {
    min-height: calc(100vh - 10rem);

}

.intro {
    padding: 10vh 0;
    text-align: center;
}

.intro h1 {
    position: relative;
    margin-bottom: 1rem;
    font-weight: 900;
    font-size: calc(1vw + 2rem);
    z-index: 1;
}

.tags {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.075em;
    font-size: .75rem;
    font-weight: 600;
}

.text {
    line-height: 1.5em;
}

.text p,
.text figure,
.text ul,
.text ol {
    margin-bottom: 1.5em;
}

.text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.text > *:first-child {
    margin-top: 0;
}

.text a {
    position: relative;
    white-space: nowrap;
    font-weight: 500;
    z-index: 1;
    display: inline-block;
    border-bottom: 2px solid #000;
}

.text figure {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.text img {
    width: 100%;
}

.footer {
    text-align: center;
    /*    max-width: var(--content-width);
    */
    margin: 0 auto;
    text-transform: uppercase;
}

.footer__logo {
    font-size: 15vw;

    display: inline-block;

    width: 100%;
}

.footer-nav ul {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

.footer-nav ul li {
    /*
    display: flex;
    flex-flow: column nowrap;
*/
    margin: 10px;
}

.footer > a {
    margin-bottom: 1.5rem;
    width: 16.5rem;
    padding-top: .5rem;
}

.footer-nav a {}

.footer-nav a:hover {}

.bottom li.social a {
    text-indent: -9999px;
    background: center / contain no-repeat url(../img/insta.svg);
    width: 1.5rem;
    height: 1.5rem;
    display: inline-block;
}

.bottom {
    width: calc(100% - 10vw);
    display: flex;
    justify-content: space-between;
    background-color: var(--bg-color);
    position: fixed;
    bottom: 0;
    z-index: 9;
    padding: .5rem 0;
    font-size: .8rem;
    align-items: center;
    margin: 0;
    font-weight: 400;
}

.bottom > * {
    width: 33%;
    text-align: center;
}

.copywrite {
    text-align: left;
}

.site-credit {
    text-align: right;
}

@media screen and (min-width: 30rem) {}


@media screen and (min-width: 40rem) {

    .address {
        display: block;
    }

    /*
    #client-list span {
        font-size: 2rem;
    }
*/
}
