* {
	border: none;
	margin: 0;
	padding: 0;
	font-size: 100%;
	color: inherit;
}

html, body {
	width: 100%;
	height: 100%;
	background: white;
	color: #011c41;
}
html {
	font-family: 'Roboto', arial, helvetica, sans-serif;
	font-weight: 350;
	font-size: 1.05vw;
	line-height: 1.4;
}
@media screen and (max-width: 1142px) {
	html {
		font-size: 12px;
	}
}
body {
	overflow-x: hidden;
}

#intro {
	position: fixed;
	inset: 0;
	z-index: 999;
	background: #011c41;
	opacity: 1;
	transition: opacity 1s;
	margin: 0;
}
html:has(#intro:not(.complete)) {
	overflow-y: hidden;
}
#intro.complete {
	opacity: 0;
	pointer-events: none;
}

#header_container {
	background: #011c41;
	color: white;
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
#header_container::before {
	padding-right: 1.25rem;
	margin: 2rem;
	background: transparent url('../images/scroll-chevron.svg') no-repeat scroll center right;
	background-size: auto 1rem;
	content: 'Scroll down';
	text-transform: uppercase;
	display: block;
	position: absolute;
	bottom: 0;
	color: white;
	z-index: 1;
	font-size: 0.75rem;
	font-weight: bold;
	transform-origin: bottom left;
	transform: rotate(90deg) translateX(-100%);
}
@media screen and (max-width: 780px) {
	#header_container::before {
		display: none;
	}
}
#navigation {
	display: table;
	width: 100%;
}
#logo, #main_menu, #header_contact {
	display: table-cell;
	vertical-align: middle;
	padding: 1rem 0;
}
#navigation:has(#header_contact .hand_picked_menu a) #logo,
#navigation:has(#header_contact .hand_picked_menu a) #main_menu,
#navigation:has(#header_contact .hand_picked_menu a) #header_contact {
	vertical-align: bottom;
}
#logo,
#header_contact {
	padding-left: 2rem;
	padding-right: 2rem;
}
#header_contact .hand_picked_menu:empty {
	display: none;
}
#main_menu {
	flex: 1;
}
#main_menu .hand_picked_menu,
#header_contact .hand_picked_menu {
	display: block;
	text-align: center;
	margin: 0;
	list-style: none;
	font-size: 0.75rem;
	font-weight: bold;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
#main_menu .hand_picked_menu li {
	display: inline-block;
	margin: 0.5em 1em;
}
#main_menu .hand_picked_menu a {
	color: inherit;
	text-decoration: none;
}
#main_menu .hand_picked_menu li:hover > a,
#main_menu .hand_picked_menu li.hover > a {
	color: #da162b;
}
#header_social_media_accounts {
	text-align: right;
}
#header_contact .hand_picked_menu {
	text-align: right;
	margin: 0.5em 0;
}
#header_contact .hand_picked_menu a {
	color: white;
	text-decoration: none;
}
#header_contact .hand_picked_menu a + a {
	margin-left: 0.5em;
}
#sub_menu {
	position: absolute;
	width: 100%;
	z-index: 1;
	pointer-events: none;
	color: #011c41;
	display: none;
	white-space: nowrap;
	opacity: 1;
	transition: opacity 0.5s;
}
#sub_menu .sub-menu {
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 100%;
	margin-right: -100%;
	opacity: 0;
	transition: opacity 0.25s;
	background: white;
	pointer-events: none;
	border-top: 1px solid #a9abae;
}
#sub_menu .sub-menu.shown {
	pointer-events: all;
	opacity: 1;
	z-index: 1;
}
#sub_menu .sub-menu-content {
	display: table;
	width: 100%;
	white-space: normal;
}
#sub_menu .sub-menu-content > blockquote,
#sub_menu .sub-menu-content > nav {
	display: table-cell;
	vertical-align: top;
	padding: 2rem 4rem;
}
#sub_menu .sub-menu-content > blockquote {
	width: 33.333333%;
	background: #d9e3e8;
	font-size: 0.75rem;
}
#sub_menu .sub-menu-content > nav {
	
}
#sub_menu .sub-menu-content > nav ul  {
	display: block;
	list-style: none;
	margin: 0;
	column-count: 2;
	column-gap: 5.833333rem;
	font-weight: 500;
	padding-right: 5.833333rem;
}
#sub_menu .sub-menu-content > nav li {
	margin-bottom: 0.25em;
	display: block;
	border-bottom: 1px solid #1781a1;
	transition: color 0.25s, border-color 0.25s;
}
#sub_menu .sub-menu-content > nav ul li a {
	color: inherit;
	display: block;
	text-decoration: none;
	padding: 0.5em 0;
}
#sub_menu .sub-menu-content > nav ul li:hover {
	color: #da162b;
	border-color: #da162b;
}
.social-media-accounts {
	white-space: nowrap;
}
.social-media-accounts a {
	display: inline-block;
}
.social-media-accounts a + a {
	margin-left: 0.5rem;
}
.social-media-accounts a img {
	display: block;
	width: 1rem;
	height: 1rem;
}

#mobile_menu {
	display: none;
	flex-direction: column;
	position: fixed;
	inset: 0;
	background: white;
	color: black;
	z-index: 1000;
	height: 100%;
	transition: transform 0.5s;
	transform: translateX(-100%);
	pointer-events: none;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 500;
}
.mobile-menu-button {
	font-size: 3rem;
	cursor: pointer;
	vertical-align: middle;
	text-align: right;
	padding: 0 1.5rem;
	font-weight: 300;
}
#mobile_menu_button {
	display: none;
}
.mobile-menu-button.close {
	color: #da162b;
}
#mobile_menu.shown {
	transform: translateX(0);
	pointer-events: all;
}
#mobile_menu_banner {
	display: flex;
	align-items: center;
}
#mobile_logo {
	padding: 1rem 2rem;
	flex: 1;
}
#mobile_nav {
	flex: 1;
	position: relative;
	color: #1a1a1a;
	background: #d9e3e8;
}
#mobile_nav > ul,
#mobile_nav > ul li {
	display: block;
	margin: 0;
	padding: 0;
}
#mobile_nav > ul {
	position: absolute;
	inset: 0;
	padding: 0 0 2rem 2rem;
	min-height: 100%;
	box-sizing: border-box;
	overflow: auto;
}
#mobile_nav > ul,
#mobile_nav > ul li {
	background: white;
}
#mobile_nav > ul li + li {
	border-top: 1px solid #1781a1;
}
#mobile_nav > ul li a {
	display: block;
	padding: 1rem 0;
	text-decoration: none;
	color: inherit;
}

#mobile_nav > ul.sub-menu {
	transform: translateX(-100%);
	transition: transform 0.5s;
}
#mobile_nav > ul.sub-menu,
#mobile_nav > ul.sub-menu li {
	background: #d9e3e8;
}
#mobile_nav > ul.sub-menu.shown {
	display: block;
	transform: translateX(0);
}
#mobile_nav > ul.sub-menu .sub-menu-close {
	display: block;
	margin-left: -2rem;
	padding: 0.5rem 0 0.5rem 2rem;
	background: white url('../images/arrow-left-grey.svg') no-repeat scroll 2rem 50%;
	background-size: 1.5rem;
	text-indent: -5rem;
	font-size: 1.5rem;
	cursor: pointer;
}
#mobile_nav > ul.sub-menu > li > a {
	font-size: 1.5em;
	margin-left: -2rem;
	padding-left: 2rem;
	padding-right: 4rem;
	background: #011c41 url('../images/arrow-right.svg') no-repeat scroll calc(100% - 2rem) 50%;
	background-size: 1.5rem;
	color: white;
}
#mobile_nav > ul.sub-menu > li > ul {
	text-transform: none;
	letter-spacing: 0;
	margin-left: 0;
}
#mobile_contact {
	background-color: #da162b;
	color: white;
	padding: 1.5rem 2rem;
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
}
#mobile_contact > * {
	margin: 0;
}
#mobile_contact .social-media-accounts {
	flex: 1;
}
#mobile_contact a {
	color: inherit;
	text-decoration: none;
}

@media screen and (max-width: 960px) {
	#mobile_menu {
		display: flex;
	}
	#navigation .mobile-menu-button {
		display: table-cell;
	}
	#main_menu {
		display: none;
	}
	#header_contact {
		display: none;
	}
}


#banner {
	flex: 1;
	display: flex;
	flex-direction: column;
}
#header,
#banner > * {
	position: relative;
}
#banner > #banner_image,
#banner > #banner_image img,
#banner > #banner_image video,
#banner > #banner_image .image-gallery-image {
	position: absolute;
	inset: 0;
}
#banner > #banner_image img,
#banner > #banner_image video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#banner > #banner_image::after {
	content: ' ';
	position: absolute;
	inset: 0;
	display: block;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0));
}
#banner > #banner_image img.background {
	width: 100% !important;
	height: 100% !important;
}
#banner_caption {
	flex: 1;
}
#banner_caption .limited-width {
	max-width: 37.333333rem;
	margin-left: 0;
}
#banner_caption .limited-width.narrow {
	max-width: 23.333333rem;
}
#banner_caption hr {
	background-color: white;
	color: white;
	position: absolute;
	left: 0;
	right: 5.833333rem;
}
#banner_caption .limited-width hr {
	right: auto;
	width: calc(min(100% - 5.833333rem, 37.333333rem + 5.833333rem));
}
#banner_caption .limited-width.narrow hr {
	width: calc(min(100% - 5.833333rem, 23.333333rem + 5.833333rem));
}
#banner_caption hr + * {
	margin-top: 2rem;
}
#banner_caption figure.lottie-animation {
	margin-top: 1.5rem;
	max-width: 8rem;
	max-height: 10rem;
}
figure + #page_name {
	margin-top: 2rem;
}
#page_name_subtitle {
	font-weight: 300;
}
#section_link {
	font-size: 0.75rem;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}
#section_link a {
	color: inherit;
	text-decoration: none;
}
#section_link.section-title a {
	border-bottom: 1px solid white;
	display: inline-block;
	line-height: 1rem;
	padding-bottom: 0.75rem;
}
#section_link.section-title a::before {
	content: ' ';
	height: 1px;
	left: 0;
	margin-top: 1.75rem;
	width: 6rem;
	position: absolute;
	background: white;
}
#logo a {
	display: inline-block;
	position: relative;
}
#logo a::before {
	content: ' ';
	display: block;
	background: url('../images/crl-logo-light.svg') no-repeat scroll 0 0;
	background-size: contain;
	inset: 0;
	position: absolute;
	opacity: 1;
	pointer-events: none;
}
#logo img {
	opacity: 0;
}
#header {
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0));
	z-index: 2;
}
#header.sticky {
	position: fixed;
	left: 0; right: 0; top: 0;
	transition: transform 0.5s;
	transform: translateY(0);
}
#header.hidden {
	transform: translateY(-100%);
}
#header,
#header_contact {
	transition: background-color 0.5s;
}
#header::after {
	content: '';
	position: absolute;
	height: 2rem;
	background: linear-gradient(rgba(0, 0, 0, 0.1), transparent);
	width: 100%;
	transition: opacity 0.25s;
	opacity: 0;
	pointer-events:  none;
}
#header:hover,
#header.opaque,
#header:has(#menu_search.shown) {
	background: white;
	color: #1a1a1a;
}
#header:hover::after,
#header.opaque::after,
#header:has(#menu_search.shown)::after {
	opacity: 1;
}
#header.hidden::after {
	opacity: 0;
}
#header:hover #header_contact,
#header.opaque #header_contact,
#header:has(#menu_search.shown) #header_contact {
	background-color: #da162b;
}
#header:hover #logo a::before,
#header.opaque #logo a::before,
#header:has(#menu_search.shown) #logo a::before {
	opacity: 0;
}
#header:hover #logo img,
#header.opaque #logo img,
#header:has(#menu_search.shown) #logo img {
	opacity: 1;
}
#header:hover #sub_menu {
	display: block;
}
#header:hover.sticky.hidden #sub_menu {
	opacity: 0;
	pointer-events: none;
}

#footer_contact_form {
	border-top: 1px solid #a9abae;
	margin-top: 6rem;
	margin-bottom: 6rem;
}
#content:has(> .vertical-padding.shaded:last-child) + #footer_contact_form {
	margin-top: 0;
}
#footer_contact_form_image.background-image-container .background-image {
	border-right: 4.5rem solid white;
}
#footer_contact_form_image.background-image-container .content {
	padding-right: 4.5rem;
}
@media screen and (max-width: 780px) {
	#footer_contact_form_image.background-image-container .background-image {
		border-right: none;
	}
	#footer_contact_form_image.background-image-container .content {
		padding-right: 0;
	}
}
#footer_contact_form_image.background-image-container:has(.background-image:empty) {
	height: min-content;
}
#footer_contact_form_image.background-image-container .background-image:empty::after {
	display: none;
}
#footer_contact_form_form.vertical-padding {
	padding-bottom: 0;
}

#footer_contact_form.two-column-block .column.horizontal-padding:first-child {
	padding-right: 0;
}
#footer_contact_form.two-column-block .column.horizontal-padding:last-child {
	padding-left: 0;
}

#footer_social_media_accounts a {
	position: relative;
}
#footer_social_media_accounts a::before {
	content: ' ';
	position: absolute;
	inset: 0;
	background: #011c41;
	mix-blend-mode: screen;
	pointer-events: none;
}

footer .hand_picked_menu {
	display: block;
	margin: 0;
	list-style: none;
	text-align: right;
	font-weight: bold;
	font-size: 0.9rem;
	letter-spacing: -0.01em;
}
footer .hand_picked_menu li {
	display: inline-block;
}
footer .hand_picked_menu li + li {
	margin-left: 2rem;
}
footer .hand_picked_menu a {
	color: inherit;
	text-decoration: none;
}
#footer_logo_and_subscription_menu {
	display: flex;
}
#footer_subscription_menu {
	flex: 1;
	font-size: 1.25rem;
}
#footer_subscription_menu a {
	color: #da162b;
	text-decoration: underline;
}
#footer_subscription_menu a + a {
	margin-left: 1em;
}
#footer_legals_content {
	font-size: 0.75rem;
	display: flex;
}
#footer_responsibility {
	flex: 1;
}
#cookie_permissions_container {
	position: fixed;
	z-index: 2;
	bottom: 1rem;
	right: 1rem;
	display: inline-block;
	max-width: calc(100% - 2rem);
	text-align: right;
	box-sizing: border-box;
}
#cookie_permissions_form_container {
	opacity: 0.8;
	text-align: center;
	box-sizing: border-box;
	padding: 1.5rem 3rem;
	background: white;
	box-shadow: black 0 0 1rem;
	font-size: 0.75rem;
	transition: opacity 0.25s;
}
#cookie_permissions_form_container:hover {
	opacity: 1;
}
#cookie_permissions .cookie-permissions-caption {
	font-weight: bold;
	font-size: 0.9rem;
}