* {
    box-sizing: border-box;
    border: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

video {
    display: block;
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

p {
    margin: 0;
}

button {
    padding: 0;
    background-color: transparent;
    outline: none;
}

ul, ol {
    padding: 0;
    margin: 0;
    list-style: none outside none;
}

a {
    text-decoration: none;
}

@font-face {
    font-family: 'GillSans';
    src: url('/resources/fonts/GillSansLight.woff2') format('woff2');
}

@font-face {
    font-family: 'Garamond-Pro-Regular';
    src: url('/resources/fonts/garamond_pro-regular.otf') format('otf');
}

.header {
    position: relative;
    z-index: 2;
    padding-top: 24px;
    background: transparent;
}

.header__logo
{
    width: 184px;
}

.header__logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.hero {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
}

.content {
    width: 100vw;
    height: 100vh;
    background-color: #FFF;
    padding: 24px;
    max-width: 1540px;
}

.content--container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

@media screen and (min-width: 640px) {
    .content {
        padding: 40px 70px; 
    }
}

@media screen and (min-width: 1024px) {
    .content {
        padding: 40px 70px;
    }
}

.content-wrapper {
    display: flex;
    justify-content: center;
    align-content: center;
}

.title {
    font-family: "Garamond-Pro-Regular", serif;
    color: #252D31;
    text-align: center;
    margin-bottom: 24px;
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: 56px;
    text-transform: uppercase;
}

.link {
    text-align: center;
}

.description {
    font-family: "GillSans", sans-serif;
    color: #252D31;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    margin-bottom: 24px;
    
}

.image {
    max-height: 15px;
    height: 100%;
}

.image--container {
    width: 100%;
    text-align: left;
}

.button {
    cursor: pointer;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.25px;
}

.button--primary {
    background-color: #E7F1F8;
    color: #252D31;
    padding: 10px 32px;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 1.5px;
    text-transform: none;
    max-width: 560px;
    margin: 0 auto;
    font-family: "GillSans";
    font-weight: bold;
}

.button--primary:hover {
    background-color: #CED0D1;
}

.button--primary:active {
    background-color: #CED0D1;
}