* {
    box-sizing: border-box;
}

body {
    min-height: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    font-family: var(--body-font-family);
    font-size: var(--body-font-size);
    line-height: var(--body-line-height);
    background-color: var(--body-background-colour);
    color: var(--body-colour);
    font-weight: 400;
    font-optical-sizing: auto;
}

em {
    color: var(--primary-colour);
}

h1,
h4,
.supertitle {
    color: var(--primary-colour);
    font-family: "Figtree", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.15rem;
}

.supertitle+h2 {
    margin-top: 0;
}

h2,
h3 {
    font-size: var(--spacing);
    line-height: 1.3;
    font-weight: 400;
}

h4 {
    color: #fff;
}

a {
    color: var(--primary-colour);
    display: inline-block;
    position: relative;
}

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

svg {
    width: var(--spacing);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.responsive-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.responsive-container iframe,
.responsive-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

div>*:first-child,
section>*:first-child,
main>*:first-child,
article>*:first-child {
    margin-top: 0;
}

div>*:last-child,
section>*:last-child,
main>*:last-child,
article>*:last-child {
    margin-bottom: 0;
}

a.button,
button {
    position: relative;
    text-transform: uppercase;
    display: inline-block;
    border: none;
    outline: none;
    text-align: center;
    font-family: "Figtree", sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.05rem;
    text-decoration: none;
    display: block;
    padding: calc(var(--spacing) / 4) var(--spacing);
    cursor: pointer;
    border-radius: calc(var(--inner-spacing) / 4);
    transition: background 0.3s ease-out;
    overflow: hidden;
    background: var(--primary-colour);
    color: var(--body-background-colour);
}

a.button:hover,
button:hover {
    background: var(--light-primary-colour);
}

hr {
    opacity: 0.25;
    margin: calc(var(--spacing) * 2) 0;
}