/* Fonts */
@font-face {
	font-family: 'Merriweather';
	font-style: normal;
	font-weight: 300;
	font-display: swap;
	src: local('Merriweather Light'),
		url('fonts/merriweather-300.woff2') format('woff2'),
		url('fonts/merriweather-300.woff') format('woff');
}
@font-face {
	font-family: 'Merriweather';
	font-style: italic;
	font-weight: 300;
	font-display: swap;
	src: local('Merriweather Light Italic'),
		url('fonts/merriweather-300italic.woff2') format('woff2'),
		url('fonts/merriweather-300italic.woff') format('woff');
}
@font-face {
	font-family: 'Merriweather';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: local('Merriweather Regular'),
		url('fonts/merriweather-regular.woff2') format('woff2'),
		url('fonts/merriweather-regular.woff') format('woff');
}
@font-face {
	font-family: 'Merriweather';
	font-style: italic;
	font-weight: 400;
	font-display: swap;
	src: local('Merriweather Italic'),
		url('fonts/merriweather-italic.woff2') format('woff2'),
		url('fonts/merriweather-italic.woff') format('woff');
}
@font-face {
	font-family: 'Merriweather';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: local('Merriweather Bold'),
		url('fonts/merriweather-700.woff2') format('woff2'),
		url('fonts/merriweather-700.woff') format('woff');
}
@font-face {
	font-family: 'Merriweather';
	font-style: italic;
	font-weight: 700;
	font-display: swap;
	src: local('Merriweather Bold Italic'),
		url('fonts/merriweather-700italic.woff2') format('woff2'),
		url('fonts/merriweather-700italic.woff') format('woff');
}
@font-face {
	font-family: 'Merriweather';
	font-style: normal;
	font-weight: 900;
	font-display: swap;
	src: local('Merriweather UltraBold'),
		url('fonts/merriweather-900.woff2') format('woff2'),
		url('fonts/merriweather-900.woff') format('woff');
}
@font-face {
	font-family: 'Merriweather';
	font-style: italic;
	font-weight: 900;
	font-display: swap;
	src: local('Merriweather UltraBold Italic'),
		url('fonts/merriweather-900italic.woff2') format('woff2'),
		url('fonts/merriweather-900italic.woff') format('woff');
}

/* Body */
[tabindex='-1']:focus {
	outline: 0;
}

/* Site */
:root {
	--scroll-width: 0;
	--scroll-gutter-x: var(--bs-gutter-x, 0.75rem);
	--star-0: #9DC7EE;
	--star-1: #F4B334;
	--site-head-top-height: 70px;
	--site-head-nav-height: 40px;
	--site-main-color: #00153E; /* #397ECD */
	--site-over-color: #08225E; /* #76AAE5 */
}
body>.site {
	font-family: Merriweather, serif;
	background: #F9FAFF;
	color: #17181E;
}
body.resize * {
	animation: none !important;
	transition: none !important;
}
.hidden {
	display: none;
}
ul.social {
	display: flex;
	align-items: center;
	justify-content: center;
}
ul.social>*+* {
	margin-left: 8px;
}

/* Logo */
.logo-header {
	--fill-0: var(--site-main-color);
	--fill-1: var(--site-main-color);
	--fill-2: var(--site-main-color);
	--fill-3: #FFD702;
	--fill-4: #F7D001;
}
.logo-azure {
	--fill-0: #1D5DA6;
	--fill-1: #1D5DA6;
	--fill-2: #397ECD;
	--fill-3: #76AAE5;
	--fill-4: #9DC7EE;
}
.logo-light {
	--fill-0: #FFF;
	--fill-1: #FFF;
	--fill-2: #E9EFF6;
	--fill-3: #A5BEDB;
	--fill-4: #618EC1;
}
.logo-black {
	--fill-0: #000;
	--fill-1: #000;
	--fill-2: rgba(0, 0, 0, .9);
	--fill-3: rgba(0, 0, 0, .6);
	--fill-4: rgba(0, 0, 0, .3);
}
.logo-white {
	--fill-0: #FFF;
	--fill-1: #FFF;
	--fill-2: rgba(255, 255, 255, .9);
	--fill-3: rgba(255, 255, 255, .6);
	--fill-4: rgba(255, 255, 255, .3);
}

/* Stars */
[data-stars]:empty {
	display: inline-block;
	position: relative;
	font-style: normal;
	line-height: 1;
}
[data-stars]:empty:before {
	content: '\2605\2605\2605\2605\2605';
	color: var(--star-0);
}
[data-stars]:empty:after {
	content: '\2605\2605\2605\2605\2605';
	color: var(--star-1);
	position: absolute;
	overflow: hidden;
	width: 0;
	left: 0;
}
[data-stars^='1']:empty:after { width: 20% }
[data-stars^='2']:empty:after { width: 40% }
[data-stars^='3']:empty:after { width: 60% }
[data-stars^='4']:empty:after { width: 80% }
[data-stars^='5']:empty:after { width: 100% }

/* Images */
img.lazy {
	opacity: 0;
}
img.load {
	opacity: 1;
	transition: opacity 1s;
}
.image-cover,
.image-contain {
	position: relative;
}
.image-cover>img,
.image-cover>svg,
.image-contain>img,
.image-contain>svg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 0;
	height: 0;
	max-width: 100%;
	min-width: 100%;
	max-height: 100%;
	min-height: 100%;
	object-fit: cover;
}
.image-contain>img,
.image-contain>svg {
	object-fit: contain;
}
.image-contain.left>img,
.image-contain.left>svg {
	object-position: left;
}
.image-contain.right>img,
.image-contain.right>svg {
	object-position: right;
}

/* Videos */
.wp-video>video {
	height: auto;
	max-width: 100%;
	max-height: 80vh;
}

/* Text content */
[data-text]:empty:after {
	content: attr(data-text);
}
[data-text-after]:after {
	content: attr(data-text-after);
}
[data-text-before]:before {
	content: attr(data-text-before);
}

/* Header */
.site-head {
	position: relative;
	white-space: nowrap;
	user-select: none;
	-webkit-user-select: none;
}
.site-head a {
	color: inherit;
	text-decoration: none;
}
.site-head ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.site-head label {
	margin: 0;
}
.site-head .span {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.site-head .logo {
	width: 112px;
	height: 50px;
}
.site-head .icon {
	width: 24px;
	height: 24px;
}
.site-head .social {
	opacity: 1;
}
.site-head .container {
	position: relative;
}
.site-head [type=radio],
.site-head [type=checkbox] {
	display: none;
}
.site-head [for=menu] use {
	opacity: 1;
	transition: opacity .5s;
}
.site-head [for=menu] use+use {
	opacity: 0;
}
.site-head .parent {
	position: relative;
}
.site-head .parent>label:after {
	content: '';
	display: inline-block;
	border-left: .25em solid transparent;
	border-right: .25em solid transparent;
	border-top: .375em solid;
	margin: 0 0 .125em .25em;
}
.site-head>.container>.span>:empty {
	display: none;
}
.site-head-top {
	font-size: 16px;
	background: #FFF;
}
.site-head-nav {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 700;
	font-size: 16px;
	color: #FFF;
	background: var(--site-main-color);
}
.site-head-top .span {
	height: var(--site-head-top-height);
}
.site-head-top .icon {
	--fill: var(--site-main-color);
	--fill-1: #FFF;
}
.site-head-nav .icon {
	--fill: #FFF;
}
.site-head-top .book>img {
	width: 38px;
	height: 50px;
}
.site-head-top .book>span {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	text-align: right;
	margin-right: 6px;
}
.site-head-top .book>span>* {
	display: block;
}
.site-head-top .book>span>*+* {
	font-weight: 400;
	font-size: 12px;
	opacity: .5;
}
.site-head-top .lang {
	font-size: 16px;
	font-weight: 700;
}
.site-head-top .level {
	position: absolute;
	top: -.3125em;
	left: calc(-.5em - 1px);
	right: calc(-.5em - 1px);
	padding: 1.75em .5em .2em .5em;
	border: 1px solid var(--site-main-color);
	border-radius: 6px;
	background: #FFF;
	z-index: 705;
	opacity: 0;
	visibility: hidden;
	transition: .5s;
}
.site-head-top .parent>label {
	position: relative;
	z-index: 706;
	opacity: 1;
	transition: .5s;
}
.site-head-top .parent>label:after {
	color: var(--site-main-color);
	opacity: .7;
	transition: .5s;
}
.site-head-top .parent>label:focus {
	pointer-events: none;
	opacity: .5;
}
.site-head-top .parent>label:focus:after {
	transform: rotate(-180deg);
	margin-bottom: .25em;
	opacity: 1;
}
.site-head-top .parent>label:focus~.level {
	visibility: visible;
	opacity: 1;
}
.site-head-top .search {
	pointer-events: none;
	margin-right: 1em;
	width: 34px;
	height: 34px;
}
.site-head-top .search>* {
	display: inline-block;
	vertical-align: middle;
}
.site-head-top .search .icon {
	position: relative;
	width: 22px;
	height: 22px;
	margin: 6px 0 6px -32px;
	opacity: 1;
	transition: opacity .5s;
}
.site-head-top .search input {
	pointer-events: auto;
	background: #FFF;
	border: 1px solid var(--site-main-color);
    border-radius: 6px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1;
	padding: 6px 20px 6px 12px;
	width: 34px;
	height: 34px;
	opacity: 0;
	transition: opacity .5s;
}
.site-head-top .search input:focus {
	position: absolute;
	opacity: 1;
}
.site-head-top .search input:focus+.icon {
	pointer-events: auto;
	margin-left: 6px;
	opacity: .5;
}

/* Footer */
.site-foot {
	background: #141416;
	color: #E5E3FD;
	font-size: 14px;
	padding: 10px 0;
}
.site-foot a {
	color: inherit;
	text-decoration: none;
}
.site-foot h4
.site-foot .h4 {
	font-weight: 700;
	font-size: 16px;
	color: #FFF;
}
.site-foot ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.site-foot .logo {
	width: 112px;
	height: 50px;
}
.site-foot .icon {
	width: 24px;
	height: 24px;
	--fill: #E5E3FD;
	--fill-1: #141416;
}
.site-foot-top {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	background: #141416;
}
.site-foot-top .menu {
	display: flex;
	align-items: center;
	justify-content: center;
}
.site-foot-top .menu>*+* {
	margin-left: 1.5em;
}
.site-foot-top>.container>.span {
	padding: 30px 0 20px;
	border-bottom: 1px solid #81838C;
}
.site-foot-top>.container>.span>*+* {
	margin-top: 12px;
}
.site-foot-nav li {
	margin-top: .75em;
	font-weight: 300;
	line-height: 1.1;
}
.site-foot-inf {
	font-weight: 300;
}
.site-foot-inf a {
	text-decoration: underline;
}
.site-foot-inf .menu {
	margin: 2em 0;
}
.site-foot>.container>* {
	padding: 30px 0;
}
.site-foot>.container>*+* {
	border-top: 1px solid #81838C;
}
.site-foot>.container>*>:last-child {
	margin-bottom: 0;
}

/* Navs & Tabs */
.list-navs {
	--gutter: 5px;
	list-style: none;
	margin: 10px calc(-1 * var(--gutter));
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	user-select: none;
	-webkit-user-select: none;
}
.list-navs>* {
	margin: var(--gutter);
}
.list-navs>*>* {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	white-space: nowrap;
	padding: 0 9px;
	border: 1px solid #A1ABD0;
	border-radius: 6px;
	min-height: 40px;
	color: #232227;
	background: #FFF;
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	cursor: pointer;
	transition: background .3s, color .3s;
}
.list-navs>:hover>*,
.list-navs>.active>* {
	color: #FFF;
	background: var(--site-main-color);
}
.list-navs>.active>* {
	cursor: default;
}
.list-tabs {
	margin: 1rem 0;
}
.list-tabs>:not(.active) {
	display: none;
}

/* Cookies */
.cookies {
	z-index: 99999;
	position: fixed;
	left: 0; right: 0; bottom: 0;
	font-family: Merriweather, serif;
	visibility: hidden;
	transition: 1s;
	user-select: none;
	-webkit-user-select: none;
}
.cookies.active {
	visibility: visible;
}
.cookies>.content {
	background: var(--site-main-color);
	padding-top: .25em;
	padding-bottom: .25em;
	opacity: 0;
	transform: translateY(100%);
	transition: .9s .1s;
}
.cookies.active>.content {
	opacity: 1;
	transform: translateY(0);
}
.cookies p {
	color: #FFF;
	font-size: .875rem;
	line-height: 1.4;
	margin: 1em 0;
}
.cookies a {
	color: #FFF;
	text-decoration: underline;
}
.cookies button {
	float: right;
	width: auto;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.4;
	margin-left: .5em;
	padding: .44444em .88888em .33333em;
	border: 0;
	border-radius: 24px;
	white-space: nowrap;
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
	text-transform: uppercase;
	background: #FFF;
	color: var(--site-main-color);
}

/* Media */
@media (min-width: 576px) {
	:root {
		--scroll-gutter-x: calc((100vw - 540px) / 2 + var(--bs-gutter-x, 0.75rem) - var(--scroll-width) / 2);
	}
}
@media (min-width: 768px) {
	:root {
		--scroll-gutter-x: calc((100vw - 720px) / 2 + var(--bs-gutter-x, 0.75rem) - var(--scroll-width) / 2);
	}
}
@media (max-width: 991px) {
	/* Site */
	body.locked {
		overflow: hidden;
	}
	/* Header */
	.site-head .desktop {
		display: none;
	}
	.site-head-top .search {
		margin-right: .5em;
	}
	.site-head-top .search input:focus {
		width: calc(100% - var(--bs-gutter-x, 0.75rem) * 2 - 42px);
		top: calc(100% + (var(--site-head-nav-height) - 34px) / 2);
		left: calc(var(--bs-gutter-x, 0.75rem) - 1px);
		z-index: 703;
	}
	.site-head-nav .span {
		height: var(--site-head-nav-height);
	}
	.site-head-nav .menu {
		position: absolute;
		left: 0; right: 0;
		top: var(--site-head-nav-height);
		overflow-y: scroll;
		font-size: 22px;
		text-align: center;
		background: var(--site-main-color);
		padding: 1em 12px 5em;
		border-top: 1px solid #70A2DB;
		height: calc(100vh - var(--site-head-nav-height));
		opacity: 0;
		visibility: hidden;
		transition: .5s;
	}
	.site-head-nav .menu>*+* {
		margin-top: .5em;
	}
	.site-head-nav .menu>*>a,
	.site-head-nav .parent>label {
		font-weight: 700;
	}
	.site-head-nav .level {
		font-size: 18px;
		font-weight: 300;
		max-height: 0;
		overflow: hidden;
		transition: .5s;
	}
	.site-head-nav .level>* {
		margin-top: 3px;
	}
	.site-head-nav .level>.active {
		opacity: .5;
	}
	.site-head-nav .parent>label:after {
		opacity: .7;
		transition: .5s;
	}
	.site-head-nav input:checked~.level {
		max-height: 100vh;
	}
	.site-head-nav input:checked~label:after {
		transform: rotate(-180deg);
		margin-bottom: .25em;
	}
	#menu:checked+.site-head [for=menu] use {
		opacity: 0;
	}
	#menu:checked+.site-head [for=menu] use+use {
		opacity: 1;
	}
	#menu:checked+.site-head-nav .menu {
		visibility: visible;
		opacity: 1;
	}
	/* Footer */
	.site-foot {
		text-align: center;
	}
	.site-foot-top .span>*+* {
		margin-top: 20px;
	}
	.site-foot-top>.container>.span {
		padding-bottom: 30px;
	}
	.site-foot-nav>*+* {
		margin-top: 20px;
	}
	.site-foot-inf .menu>*+* {
		margin-top: 12px;
	}
	/* Cookies */
	.cookies button {
		font-size: 1rem;
		margin-left: .25em;
	}
}
@media (min-width: 992px) {
	:root {
		--scroll-gutter-x: calc((100vw - 960px) / 2 + var(--bs-gutter-x, 0.75rem) - var(--scroll-width) / 2);
	}
	/* Header */
	.site-head .mobile,
	.site-head-nav .span {
		display: none;
	}
	.site-head-top .search {
		position: relative;
	}
	.site-head-top .search input:focus {
		right: 0;
		width: 200px;
	}
	.site-head-nav .menu {
		height: var(--site-head-nav-height);
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.site-head-nav .menu>* {
		height: 100%;
		display: flex;
		align-items: center;
	}
	.site-head-nav .level {
		position: absolute;
		top: 100%;
		left: calc(-1em - 1px);
		padding: .75em 1em;
		min-width: calc(100% + 2em);
		font-size: 14px;
		color: #17181E;
		background: #FFF;
		border: 1px solid var(--site-main-color);
		border-top-width: 0;
		border-radius: 0 1em 5px 5px;
		opacity: 0;
		visibility: hidden;
		transition: .5s;
	}
	.site-head-nav .parent:last-child>.level {
		border-radius: 1em 0 5px 5px;
		right: calc(-1em + 1px);
		left: auto;
	}
	.site-head-nav .level>*+* {
		margin-top: .5em;
	}
	.site-head-nav .level a {
		display: block;
		transition: color .2s;
	}
	.site-head-nav .level a:hover,
	.site-head-nav .level .active>a {
		color: var(--site-main-color);
	}
	.site-head-nav .parent>label:after {
		opacity: .7;
		transition: .5s;
	}
	.site-head-nav .parent>label:focus:after {
		transform: rotate(-180deg);
		margin-bottom: .25em;
	}
	.site-head-nav .parent>label:focus {
		pointer-events: none;
	}
	.site-head-nav .parent>label:focus~.level {
		visibility: visible;
		opacity: 1;
	}
	/* Footer */
	.site-foot-top .span {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.site-foot-top .menu {
		width: 100%;
		margin-left: 3em;
		justify-content: flex-start;
	}
	.site-foot-nav {
		display: flex;
		justify-content: space-between;
	}
	.site-foot-nav>* {
		width: 23%;
	}
	.site-foot-inf .menu {
		display: flex;
		align-items: center;
	}
	.site-foot-inf .menu>*+* {
		margin-left: 1.5em;
	}
	/* Navs & Tabs */
	.list-navs {
		--gutter: 10px;
	}
}
@media (min-width: 1200px) {
	:root {
		--scroll-gutter-x: calc((100vw - 1140px) / 2 + var(--bs-gutter-x, 0.75rem) - var(--scroll-width) / 2);
	}
}
@media (min-width: 1400px) {
	:root {
		--scroll-gutter-x: calc((100vw - 1320px) / 2 + var(--bs-gutter-x, 0.75rem) - var(--scroll-width) / 2);
	}
}

/* Fixes */
input[type=text],
input[type=email],
input[type=search],
input[type=submit],
input[type=password] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
	-webkit-appearance: none;
}
