:root {
    --white-hsl: 0, 0%, 100%;
    --black-hsl: 0, 0%, 0%;
    --safeLightAccent-hsl: 42.85714286, 3.86740331%, 64.50980392%;
    --safeDarkAccent-hsl: 42.85714286, 3.86740331%, 64.50980392%;
    --darkAccent-hsl: 240, 2.60869565%, 22.54901961%;
}

:root {
    --siteBackgroundColor: hsla(var(--white-hsl), 1);
    --paragraphMediumColor: hsla(var(--black-hsl), 1);
    --textColorWhite: hsla(var(--white-hsl), 1);
    --backgroundOverlayColor: hsla(var(--darkAccent-hsl), 1);
    --primaryButtonTextColor: hsla(var(--white-hsl), 1);
    --primaryButtonBackgroundColor: hsla(var(--safeLightAccent-hsl), 1);
}

:root {
    --base-font-size: 16px;
    --heading-font-font-family: Poppins;
    --heading-font-font-style: normal;
    --heading-font-font-weight: 500;
    --heading-font-text-transform: none;
    --heading-font-letter-spacing: 0em;
    --heading-font-line-height: 1.4em;
    --body-font-font-family: Poppins;
    --body-font-font-style: normal;
    --body-font-font-weight: 300;
    --body-font-text-transform: none;
    --body-font-letter-spacing: 0em;
    --body-font-line-height: 1.8em;
    --heading-1-size: 4rem;
    --heading-2-size: 2.8rem;
    --heading-3-size: 2.2rem;
    --heading-3-size-value: 2.2;
    --heading-4-size: 1.2rem;
    --large-text-size: 1.4rem;
    --normal-text-size: 1rem;
    --small-text-size: .9rem;
    --normal-meta-size: 1rem;
}

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

html,
body {
    font-size: var(--base-font-size);
}

body {
    background-color: var(--siteBackgroundColor);
    color: var(--paragraphMediumColor);
    overflow-wrap: break-word;
    margin: 0;
    background-color: #38383b;
}

h1,
h2,
h3,
h4 {
    font-family: var(--heading-font-font-family);
    font-style: var(--heading-font-font-style);
    font-weight: var(--heading-font-font-weight);
    line-height: var(--heading-font-line-height);
    letter-spacing: var(--heading-font-letter-spacing);
    text-transform: var(--heading-font-text-transform);
}

h3 {
    color: var(--textColorWhite);
    font-size: calc(var(--heading-3-size-value) * 1rem);
    line-height: calc(var(--heading-font-line-height) * (1 + (1 - var(--heading-3-size))/25));
}

p {
    color: var(--textColorWhite);
    line-height: var(--body-font-line-height);
    margin: 1rem 0;
}

a {
    background: 0 0;
}

section .content a {
    line-height: normal;
    border-style: solid;
    border-width: 0;
    padding: 1.2rem 2.4rem;
    font-size: 16px;
    border-radius: 0.4rem;
    color: var(--primaryButtonTextColor);
    background-color: var(--primaryButtonBackgroundColor);
    border-color: var(--primaryButtonTextColor);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.section-background-overlay {
    background-color: var(--backgroundOverlayColor);
}

header {
    z-index: 10;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    line-height: 1;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    pointer-events: none;
    transition: transform 140ms ease-in-out;
}

.header-bar {
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
    padding-top: 2vw;
    padding-bottom: 2vw;
    padding-left: 3vw;
    padding-right: 3vw;
    pointer-events: auto;
}

.header-dropshadow {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: .15;
}

.header-inner {
    max-width: 1200px;
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto;
}

.header-display-desktop {
    position: relative;
    display: flex;
    width: 100%;
    box-sizing: border-box;
    justify-content: flex-start;
    align-items: center;
}

.header-title-nav-wrapper {
    display: flex;
    flex-wrap: nowrap;
    flex: 1 0 67%;
    align-items: center;
}

.header-title {
    flex-grow: 0;
    flex-shrink: 0;
    backface-visibility: hidden;
}

.header-title-logo {
    width: auto;
    font-size: 0;
}

.header-title-logo a {
    display: inline-block;
    max-width: 100%;
    max-height: 98px;
}

.header-title-logo img {
    width: auto;
    max-width: 100%;
    max-height: 98px;
}

.header-menu {
    position: fixed;
    z-index: 1;
    display: flex;
    flex-direction: column;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    will-change: opacity, visibility;
    user-select: none;
    text-align: center;
    pointer-events: auto;
    font-size: 1.2em;
    line-height: 1;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

main {
    font-family: var(--body-font-font-family);
    font-style: var(--body-font-font-style);
    font-weight: var(--body-font-font-weight);
    line-height: var(--body-font-line-height);
    letter-spacing: var(--body-font-letter-spacing);
    text-transform: var(--body-font-text-transform);
    -webkit-font-smoothing: antialiased;
}

main>section:first-child {
    padding-top: 142px;
    padding-top: 115px
}

section {
    position: relative;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    align-items: center;
    padding-bottom: 0;
    min-height: 40vh;
}

section .content {
    z-index: 4;
    text-align: center;
    max-width: 1200px;
    padding: 24px;
}

.section-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.section-background img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: relative;
}

section .image-block {
    clear: both;
    justify-content: center;
    display: flex;
    height: 100%;
    width: 100%;
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
}

section .image-block img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
}

.section-background,
.section-background .section-background-content,
.section-background .section-background-canvas,
.section-background .section-background-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

footer {
    min-height: 1vh;
    align-items: center;
    color: var(--paragraphMediumColor);
    position: relative;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

@media screen and (min-width: 1272px) {
    h3 {
        font-size: calc(var(--heading-3-size-value) * 1rem);
    }

    section .content {
        padding: 62px 0;
    }

    main>section:first-child {
        padding-top: 440px;
    }
}