@font-face {
    font-family: 'Didot';
    src: url('../fonts/Didot.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Didot.woff2') format('woff2'),
         url('../fonts/Didot.woff') format('woff'),
         url('../fonts/Didot.otf') format('opentype'),
         url('../fonts/Didot.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

body {
	font-family: "Helvetica", Arial, sans-serif;
	color: #000;
	line-height: 1.6;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
	background-color: #b7e3ed;
}

.page__top {
	flex: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
    padding-top: 9rem;
    max-width: 75%;
    margin-left: auto;
    margin-right: auto;
}

.page__bottom {
	background-color: #c8eaf1;
	flex: 1;
	padding: 3.625rem 0 5.625rem;
	position: relative;
    overflow: hidden;
}

.headline {
    margin-bottom: 2rem;
}

.headline__line {
    display: block;
    margin-bottom: 0.5rem;
	font-size: clamp(2rem, 4vw, 3.75rem);
    line-height: 1;
}

.headline__line--serif {
	font-family: "Didot", "Times New Roman", serif;
	font-weight: normal;
}

.headline__line--bold {
	font-family: "Helvetica", Arial, sans-serif;
	font-weight: bold;
    letter-spacing: -1.86px;
    top: -6px;
    position: relative;
}

.content__text {
    max-width: 700px;
    margin-bottom: 2rem;
    font-size: clamp(16px, 2vw, 20px);
}

.content__text--bold{
    font-weight: bold;
}

.content__footnote {
    margin-top: 2rem;
    font-size: 9px;
    margin-bottom: 1rem;
}

.logos {
    margin: 0 auto;
}

.logos__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.logos__item {
    list-style: none;
    margin: 0;
}

.logo {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.logo__image {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

.cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 2rem 0 1.5rem;
    text-transform: uppercase;
    justify-content: center;
    text-align: center;
}

.cta .headline__line{
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .logos{
        width: 100%;
        max-width: 91%;
    }
    .logos__list{
        display: flex !important;
        flex-flow:row wrap;
        justify-content: space-between;
    }
    .cta{
        padding: 2.5rem 0 1.75rem;
    }
}

/* Mobile styles */
@media (max-width: 991.5px) {
    .page__top {
        padding: 3rem 1rem 0;
    }

    .page__bottom {
        padding: 2rem 0rem;
    }

    .logos__list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .logos__item {
        width: 100%;
    }

    .logo {
        min-height: 60px;
        padding: 0.5rem;
    }
}

@media (max-width: 576px) {
    .page__top{
        max-width: 100%;
    }
    .content__footnote{
        padding-top: 0;
        margin-top: 1rem;
    }
}
@media (min-width: 1540px){
    .logos{
        max-width: 74rem;
    }
}