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

* {
	margin: 0;
}

html {
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
}

body {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
	font-family: inherit;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

input,
button,
textarea,
select {
	font: inherit;
	color: inherit;
}

h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd {
	margin: 0;
}

ul[role='list'],
ol[role='list'] {
	list-style: none;
	padding: 0;
}

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

table {
	border-collapse: collapse;
	border-spacing: 0;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

@font-face {
	font-family: 'Afical Std';
	src: 
		url('../fonts/aficalneue-neue.woff2') format('woff2'),
		url('../fonts/aficalneue-neue.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Afical Stencil';
	src: 
		url('../fonts/aficalstencil-light.woff2') format('woff2'),
		url('../fonts/aficalstencil-light.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

body {
	font-family: 'Afical Std', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: black;
    padding: 80px 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100dvh;
    position: relative;
}
@media(max-width: 767px) {
    body {
        padding: 20px 0;
    }
}

video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.8;
}

header, main, footer {
    width: 100%;
}
h1 {
    font-weight: 400;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -1.2px;
}
.container {
    width: 100%;
    max-width: 1800px;
    padding: 0 20px;
    margin: 0 auto;
}
header {
    margin-bottom: auto;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

header .container h1 {
    width: 41%;
}
header .container svg:not(.logo) {
    margin-left: auto;
}

@media(max-width: 767px) {
    header .container {
        flex-wrap: wrap;
    }
    header .container h1 {
        display: none;
    }
    header .container svg {
        width: auto;
        height: 18px;
    }
    header .container svg.logo {
        height: 22px;
    }
    header .container svg:not(.logo) {
        margin-top: 3px;
    }
    header .container p {
        color: #fff;
        font-size: 16px;
        letter-spacing: -0.48px;
        line-height: 1.7;
        width: 100%;
        text-align: right;
        margin-top: 80px;
    }
}

main {
    margin-top: auto;
}

main .container h2 {
    margin-left: 41%;
    font-weight: 400;
    color: #fff; 
    font-size: 40px;
    line-height: 1;
    letter-spacing: -1.2px;
    font-family: 'Afical Stencil', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
@media(max-width: 767px) {
    main .container h2 {
        margin-left: 0;
        font-size: 32px;
        letter-spacing: -0.96px;
    }
}

footer {
    margin-top: 115px;
}

footer .container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: #fff;
    
}

footer .container p {
    font-size: 16px;
    letter-spacing: -0.48px;
    line-height: 1.7;
}

footer .container p:first-child {
    width: 41%;
}
footer .container p:first-child a {
    text-decoration: underline;
    color: #fff;
}
footer .container p:last-child {
    text-align: right;
    margin-left: auto;
}

footer .container div span {
    font-size: 16px;
    letter-spacing: -0.48px;
    line-height: 1.7;
    font-family: 'Afical Stencil', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    display: block;
}

footer .container div h3 {
    font-weight: 400;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
}
footer .container div h3 a {
    text-decoration: none;
    color: #fff;
}
@media(max-width: 767px) {
    footer {
        margin-top: 40px;
    }
    footer .container {
        flex-wrap: wrap;
    }
    footer .container p:first-child {
        order: 9;
        width: 100%;
        margin-top: 35px;
    }
    footer .container div {
        width: 100%;
    }
    footer .container div h3 {
        font-size: 24px;
        letter-spacing: -0.72px;
    }
    footer .container div span {
        margin-bottom: 10px;
    }
}

.is-visible-mobile {
    display: none;
}
@media(max-width: 767px) {
    .is-visible-mobile {
        display: block;
    }
    .is-hidden-mobile {
        display: none;
    }
}