/* stylelint-disable selector-class-pattern */

* {
	box-sizing: border-box;
	border: 0 solid;
}

html {
	-webkit-text-size-adjust: 100%;
	font-size: 20px;
	tab-size: 4;
	font-feature-settings: normal;
	font-variation-settings: normal;
}

body {
	line-height: inherit;
	color: var(--color-text);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	width: 100vw;
	margin: 0;
	padding: 0;
	font-family: FontMedium, area-normal, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	transition: background-color 0.5s ease-in-out;
	overflow-x: hidden;
}

hr {
	height: 0;
	color: inherit;
	border-top-width: 1px;
}

abbr:where([title]) {
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
}

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

b,
strong {
	font-weight: bolder;
	font-family: FontExtra, sans-serif;
}

code,
kbd,
samp,
pre {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-size: 1em;
}

small {
	font-size: 80%;
}

sub,
sup {
	vertical-align: baseline;
	font-size: 75%;
	line-height: 0;
	position: relative;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

table {
	text-indent: 0;
	border-color: inherit;
	border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
	margin: 0;
	padding: 0;
}

button,
select {
	text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
	background-color: #0000;
	background-image: none;
}

:-moz-focusring {
	outline: auto;
}

:-moz-ui-invalid {
	box-shadow: none;
}

progress {
	vertical-align: baseline;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

summary {
	display: list-item;
}

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

fieldset {
	margin: 0;
	padding: 0;
}

legend {
	padding: 0;
}

ol,
ul,
menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

textarea {
	resize: vertical;
}

input::placeholder,
textarea::placeholder {
	opacity: 1;
	color: #9ca3af;
}

button,
[role="button"] {
	cursor: pointer;
}

:disabled {
	cursor: default;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
	vertical-align: middle;
	display: block;
}

img,
video {
	max-width: 100%;
	height: auto;
}

[hidden] {
	display: none;
}

.visible {
	visibility: visible;
}

.invisible {
	visibility: hidden;
}

.static {
	position: static;
}

.fixed {
	position: fixed;
}

.absolute {
	position: absolute;
}

.relative {
	position: relative;
}

.sticky {
	position: sticky;
}

.top-1 {
	top: 0.5rem;
}

.col-span-1 {
	grid-column: span 1 / span 1;
}

.col-span-6 {
	grid-column: span 6 / span 6;
}

.col-start-1 {
	grid-column-start: 1;
}

.my-10 {
	margin-top: 7rem;
	margin-bottom: 7rem;
}

.mt-10 {
	margin-top: 7rem;
}

.block {
	display: block;
}

.inline {
	display: inline;
}

.flex {
	display: flex;
}

.grid {
	display: grid;
}

.hidden {
	display: none !important;
}

.h-fit {
	height: fit-content;
}

.h-full {
	height: 100%;
}

.w-1 {
	width: 0.5rem;
}

.w-auto {
	width: auto;
}

.w-full {
	width: 100%;
}

.flex-1 {
	flex: 1;
}

.grow {
	flex-grow: 1;
}

.transform {
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.resize {
	resize: both;
}

.grid-cols-6 {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.flex-row {
	flex-direction: row;
}

.flex-col {
	flex-direction: column;
}

.items-center {
	align-items: center;
}

.justify-start {
	justify-content: flex-start;
}

.justify-end {
	justify-content: flex-end;
}

.justify-center {
	justify-content: center;
}

.justify-between {
	justify-content: space-between;
}

.gap-1 {
	gap: 0.5rem;
}

.gap-3 {
	gap: 1rem;
}

.gap-4 {
	gap: 1.5rem;
}

.gap-5 {
	gap: 2rem;
}

.gap-7 {
	gap: 4rem;
}

.space-x-2 > :not([hidden]) ~ :not([hidden]) {
	--tw-space-x-reverse: 0;
	margin-right: calc(0.75rem * var(--tw-space-x-reverse));
	margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}

.overflow-hidden {
	overflow: hidden;
}

.whitespace-nowrap {
	white-space: nowrap;
}

.rounded {
	border-radius: 0.25rem;
}

.border {
	border-width: 1px;
}

.border-b {
	border-bottom-width: 1px;
}

.border-t {
	border-top-width: 1px;
}

.bg-dark {
	--tw-bg-opacity: 1;
	background-color: rgb(34 34 34 / var(--tw-bg-opacity));
}

.bg-grey-500 {
	--tw-bg-opacity: 1;
	background-color: rgb(100 116 139 / var(--tw-bg-opacity));
}

.bg-light {
	--tw-bg-opacity: 1;
	background-color: rgb(220 220 220 / var(--tw-bg-opacity));
}

.bg-cover {
	background-size: cover;
}

.bg-center {
	background-position: center;
}

.object-cover {
	object-fit: cover;
}

.p-5 {
	padding: 2rem;
}

.px-5 {
	padding-left: 2rem;
	padding-right: 2rem;
}

.py-1 {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

.py-5 {
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.pb-4 {
	padding-bottom: 1.5rem;
}

.pb-5 {
	padding-bottom: 2rem;
}

.pb-6 {
	padding-bottom: 3rem;
}

.pt-1 {
	padding-top: 0.5rem;
}

.pt-5 {
	padding-top: 2rem;
}

.pt-10 {
	padding-top: 7rem;
}

.pb-3 {
	padding-bottom: 1rem;
}

.text-center {
	text-align: center;
}

.text-2xl {
	font-size: 1.5rem;
	line-height: 2rem;
}

.text-3xl {
	font-size: 1.875rem;
	line-height: 2.25rem;
}

.text-4xl {
	font-size: 2.25rem;
	line-height: 2.5rem;
}

.text-5xl {
	font-size: 3rem;
	line-height: 1;
}

.text-base {
	font-size: 1rem;
	line-height: 1.5rem;
}

.text-sm {
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.text-xl {
	font-size: 1.25rem;
	line-height: 1.75rem;
}

.font-medium {
	font-weight: 500;
}

.uppercase {
	text-transform: uppercase;
}

.lowercase {
	text-transform: lowercase;
}

.text-light {
	--tw-text-opacity: 1;
	color: rgb(220 220 220 / var(--tw-text-opacity));
}

.underline {
	text-decoration-line: underline;
}

.opacity-20 {
	opacity: 0.2;
}

.opacity-50 {
	opacity: 0.5;
}

.shadow {
	--tw-shadow: 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a;
	--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.blur {
	--tw-blur: blur(8px);
	filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.brightness-0 {
	--tw-brightness: brightness(0);
	filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.drop-shadow {
	--tw-drop-shadow: drop-shadow(0 1px 2px #0000001a) drop-shadow(0 1px 1px #0000000f);
	filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.invert {
	--tw-invert: invert(100%);
	filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.filter {
	filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.transition {
	transition-property:
		color,
		background-color,
		border-color,
		text-decoration-color,
		fill,
		stroke,
		opacity,
		box-shadow,
		transform,
		filter,
		-webkit-backdrop-filter,
		backdrop-filter;
	transition-duration: 0.15s;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

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

@font-face {
	font-family: FontRegular;
	src: url(../fonts/National-Regular.woff2) format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: FontMedium;
	src: url(../fonts/National-Medium.woff2) format("woff2");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: FontExtra;
	src: url(../fonts/National-Extrabold.woff2) format("woff2");
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

:root {
	--color-white: #fff;
	--color-light-grey: #f9f9f9;
	--color-blue: #102e68;
	--color-dark: #000;
	--color-green: #2ebb93;
	--color-light-green: #dbf8ef;
}

.bg-white {
	background-color: var(--color-white);
}

.bg-light-grey {
	background-color: var(--color-light-grey);
}

.bg-blue {
	background-color: var(--color-blue);
}

.bg-dark {
	background-color: var(--color-dark);
}

.bg-green {
	background-color: var(--color-green);
}

.bg-light-green {
	background-color: var(--color-light-green);
}

.text-white {
	color: var(--color-white);
}

.text-light-grey {
	color: var(--color-light-grey);
}

.text-blue {
	color: var(--color-blue);
}

.text-dark {
	color: var(--color-dark);
}

.text-green {
	color: var(--color-green);
}

.text-light-green {
	color: var(--color-light-green);
}

.transition-container {
	opacity: 0;
	transition: opacity 1s;
}

.fade-in {
	opacity: 1;
}

.fade-out {
	opacity: 0;
}

html.lenis {
	height: auto;
}

.lenis.lenis-smooth {
	scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}

.lenis.lenis-stopped {
	overflow: hidden;
}

.lenis.lenis-scrolling iframe {
	pointer-events: none;
}

.js .loading::before,
.js .loading::after {
	content: "";
	z-index: 1000;
	position: fixed;
}

.js .loading::before {
	width: 100%;
	height: 100%;
	background: var(--color-bg);
	top: 0;
	left: 0;
}

.js .loading::after {
	width: 60px;
	height: 60px;
	opacity: 0;
	transform-origin: center;
	background: var(--color-yellow);
	margin: -30px 0 0 -30px;
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
	animation: 2s linear alternate forwards loaderAnim;
	top: 50%;
	left: 50%;
	transform: rotate(45deg);
}

@keyframes loaderAnim {

	40% {
		opacity: 0;
		transform: translateY(40px) rotate(45deg);
	}

	60% {
		opacity: 1;
		transform: translateY(0) rotate(45deg);
	}

	80% {
		opacity: 1;
		transform: translateY(0) rotate(45deg);
	}

	100% {
		opacity: 0;
		transform: translateY(-40px) rotate(45deg);
	}
}

a {
	color: var(--color-link);
	cursor: pointer;
	outline: none;
	text-decoration: none;
}

a:hover {
	color: var(--color-link-hover);
	outline: none;
}

a:focus {
	background: #d3d3d3;
	outline: none;
}

a:focus:not(:focus-visible) {
	background: none;
}

a:focus-visible {
	background: none;
	outline: 2px solid #f00;
}

.unbutton {
	font: inherit;
	cursor: pointer;
	background: none;
	border: 0;
	margin: 0;
	padding: 0;
}

.unbutton:focus {
	outline: none;
}

.vh-full-desktop {
	height: 100vh;
}

.vh-half-desktop {
	height: 50vh;
}

nav li {
	height: 100%;
	padding-top: 0.5rem;
	padding-bottom: 0.4rem;
	font-size: 1rem;
	line-height: 1.25;
}

nav li:first-child {
	padding-left: 2rem;
}

nav li:last-child {
	padding-right: 2rem;
}

nav li.active {
	background-color: var(--color-dark);
	color: var(--color-white);
	padding-left: 2rem;
	padding-right: 2rem;
}

.text-800 {
	font-family: FontExtra, sans-serif;
}

.sticky-container {
	padding: 50vh 0.5rem 0.5rem;
	flex-direction: column;
}

.sticky-container div {
	justify-content: left;
}

@media (min-width: 1024px) {

	.sticky-container {
		flex-direction: row;
	}

	.sticky-container div:nth-child(1) {
		justify-content: left;
	}

	.sticky-container div:nth-child(2) {
		justify-content: center;
	}

	.sticky-container div:nth-child(3) {
		justify-content: right;
	}
}

.z999 {
	z-index: 999;
}

.top-0 {
	top: 0;
}

.content__item::before {
	position: absolute;
	top: 0;
	left: 0;
}

.button {
	pointer-events: auto;
	cursor: pointer;
	font-family: inherit;
	font-size: inherit;
	border: none;
	margin: 0;
	display: inline-block;
	position: relative;
}

.button::before,
.button::after {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.button--hyperion {
	overflow: hidden;
}

.button--hyperion span {
	display: block;
	position: relative;
}

.button--hyperion > span,
.button--hyperion > span > span {
	overflow: hidden;
}

.button--hyperion:hover > span > span {
	animation: 0.3s forwards MoveUpInitial, 0.3s 0.1s forwards MoveUpEnd;
}

@keyframes MoveUpInitial {

	to {
		transform: translate3d(0, -105%, 0);
	}
}

@keyframes MoveUpEnd {

	from {
		transform: translate3d(0, 100%, 0);
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

.button--hyperion::before {
	content: "";
	transform-origin: 100%;
	transition: transform 0.3s cubic-bezier(0.16, 0.8, 0.2, 1);
}

.button--hyperion:hover::before {
	transform-origin: 0%;
	transform: scale3d(0, 1, 1);
}

.sticky-child {
	opacity: 1;
	transition: opacity 0.2s ease-out;
}

.sticky-child-1 {
	transition-delay: 0.1s;
}

.grid {
	width: 100%;
	grid-template-columns: repeat(6, 1fr);
	display: grid;
}

.grid__item {
	will-change: transform;
	grid-column: var(--c);
	grid-row: var(--r);
	position: relative;
}

.grid__item-img {
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	will-change: transform, opacity;
	background-position: 50%;
	background-size: cover;
	position: relative;
}

span.author {
	white-space: nowrap;
}

.pop-in {
	width: calc(50vw - 1rem);
	height: 100vh;
	z-index: 9999;
	background-color: var(--color-dark);
	color: var(--color-light);
	transition: left 0.3s ease-in-out;
	position: fixed;
	top: 0;
	left: 100vw;
}

.pop-in.active {
	left: calc(50vw + 1rem);
}

.book__hero_element {
	transition: translate 0.2s;
	transition-delay: 0.2s;
}

@media (min-width: 768px) {

	.md\:text-2xl {
		font-size: 1.5rem;
		line-height: 2rem;
	}

	.md\:text-3xl {
		font-size: 1.875rem;
		line-height: 2.25rem;
	}

	.md\:text-4xl {
		font-size: 2.25rem;
		line-height: 2.5rem;
	}

	.md\:text-5xl {
		font-size: 3rem;
		line-height: 1;
	}

	.md\:text-xl {
		font-size: 1.25rem;
		line-height: 1.75rem;
	}
}

@media (min-width: 1024px) {

	.lg\:col-span-2 {
		grid-column: span 2 / span 2;
	}

	.lg\:col-span-3 {
		grid-column: span 3 / span 3;
	}

	.lg\:col-span-4 {
		grid-column: span 4 / span 4;
	}

	.lg\:col-start-1 {
		grid-column-start: 1;
	}

	.lg\:col-start-2 {
		grid-column-start: 2;
	}

	.lg\:col-start-4 {
		grid-column-start: 4;
	}

	.lg\:col-start-3 {
		grid-column-start: 3;
	}

	.lg\:w-1\/3 {
		width: 33.3333%;
	}

	.lg\:justify-start {
		justify-content: flex-start;
	}

	.lg\:justify-end {
		justify-content: flex-end;
	}

	.lg\:justify-center {
		justify-content: center;
	}

	.lg\:text-2xl {
		font-size: 1.5rem;
		line-height: 2rem;
	}

	.lg\:text-3xl {
		font-size: 1.875rem;
		line-height: 2.25rem;
	}

	.lg\:text-4xl {
		font-size: 2.25rem;
		line-height: 2.5rem;
	}

	.lg\:text-5xl {
		font-size: 3rem;
		line-height: 1;
	}

	.lg\:text-6xl {
		font-size: 3.75rem;
		line-height: 1;
	}

	.lg\:text-7xl {
		font-size: 4.5rem;
		line-height: 1;
	}
}

@media (min-width: 1280px) {

	.xl\:col-span-2 {
		grid-column: span 2 / span 2;
	}

	.xl\:text-2xl {
		font-size: 1.5rem;
		line-height: 2rem;
	}

	.xl\:text-4xl {
		font-size: 2.25rem;
		line-height: 2.5rem;
	}

	.xl\:text-5xl {
		font-size: 3rem;
		line-height: 1;
	}

	.xl\:text-6xl {
		font-size: 3.75rem;
		line-height: 1;
	}

	.xl\:text-7xl {
		font-size: 4.5rem;
		line-height: 1;
	}

	.xl\:text-8xl {
		font-size: 6rem;
		line-height: 1;
	}

	.xl\:text-xl {
		font-size: 1.25rem;
		line-height: 1.75rem;
	}
}

@media (min-width: 1536px) {

	.\32 xl\:text-3xl {
		font-size: 1.875rem;
		line-height: 2.25rem;
	}

	.\32 xl\:text-6xl {
		font-size: 3.75rem;
		line-height: 1;
	}

	.\32 xl\:text-8xl {
		font-size: 6rem;
		line-height: 1;
	}

	.\32 xl\:text-9xl {
		font-size: 8rem;
		line-height: 1;
	}

	.\32 xl\:text-xl {
		font-size: 1.25rem;
		line-height: 1.75rem;
	}
}

.news a {
	text-decoration: underline;
}

.fixed-link {
	top: calc(100vh - 5rem);
	right: 0;
}

.site-footer {
	background-color: var(--color-dark);
	color: #fff;
}

.book h1 {
	text-transform: lowercase;
}

#partenaire img {
	height: fit-content;
}

.site-main {
	min-height: 100vh;
}

.bloc-wysiwyg p {
	font-size: 1rem;
	line-height: 1.5rem;
}

.bloc-wysiwyg p strong {
	font-family: FontExtra, sans-serif;
}

@media (min-width: 1024px) {

	.bloc-wysiwyg p {
		font-size: 1.5rem;
		line-height: 2rem;
	}
}

.accordion {
	display: flex;
	flex-direction: column;
}

.accordion-panel {
	display: none; /* Masquer le contenu de l'accordéon par défaut */
}

.accordion-header {
	margin-top: 4rem;
}

.accordion-button {
	text-align: left;
	cursor: pointer;
	border: none;
	outline: none;
	transition: 0.2s ease;
}

.accordion-button:hover {
	opacity: 0.6;
}

.accordion-panel {
	margin-bottom: 4rem;
}

.accordion-panel a {
	text-decoration: underline;
	cursor: pointer;
	pointer-events: auto;
}

/* Menu */

.site-header {
	transition: background-color 0.5s ease-in-out;
}

.site-header div {
	z-index: 999;
}

body.menu-open {
	overflow: hidden;
	height: 100vh;
}

.mobile-menu-button {
	width: 40px;
	height: 40px;
	position: relative;
	background: none;
	border: none;
	cursor: pointer;
}

.hamburger {
	transform: translateY(18px);
}

.hamburger,
.hamburger::before,
.hamburger::after {
	content: "";
	display: block;
	background: #000;
	height: 3px;
	width: 30px;
	position: absolute;
	transition: all 0.3s;
}

.hamburger::before {
	top: -10px;
}

.hamburger::after {
	bottom: -10px;
}

.menu-open .hamburger {
	background: transparent;
}

.menu-open .hamburger::before {
	transform: rotate(45deg);
}

.menu-open .hamburger::after {
	transform: rotate(-45deg);
}

.menu-open .hamburger::before {
	top: 0;
}

.menu-open .hamburger::after {
	bottom: 0;
}

#mobile-navigation {
	position: fixed;
	top: 40px;
	left: 0;
	width: 100%;
	height: calc(100vh - 40px);
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: center;
	transition: transform 0.3s ease-in-out;
}

#mobile-navigation a {
	font-size: 2rem;
	font-family: FontExtra, sans-serif;
}

#mobile-navigation ul li {
	padding: 1rem 2rem;
}

#mobile-navigation ul li.active {
	background-color: transparent;
	color: var(--color-dark);
}

.menu-open #mobile-menu {
	transform: translateY(0);
}

.site-branding {
	padding-left: 10px;
}

.site-branding a {
	font-size: 1.2rem;
	font-family: FontExtra, sans-serif;
}

.site-branding,
.mobile-menu-button {
	display: flex;
}

#site-navigation {
	display: none;
}

footer ul {
	flex-direction: column;
	padding: 2rem 0;
}

footer nav ul li {
	padding-left: 2rem;
}

@media (min-width: 1024px) {

	#site-navigation {
		display: flex;
	}

	.site-branding,
	.mobile-menu-button,
	#mobile-navigation {
		display: none;
	}

	footer ul {
		flex-direction: row;
		padding: 0;
	}
}

.grid .grid__item:nth-child(1) {
	--r: 1;
	--c: 1;
}

.grid .grid__item:nth-child(2) {
	--r: 2;
	--c: 8;
}

.grid .grid__item:nth-child(3) {
	--r: 2;
	--c: 5;
}

.grid .grid__item:nth-child(4) {
	--r: 3;
	--c: 3;
}

.grid .grid__item:nth-child(5) {
	--r: 4;
	--c: 7;
}

.grid .grid__item:nth-child(6) {
	--r: 5;
	--c: 8;
}

.grid .grid__item:nth-child(7) {
	--r: 6;
	--c: 2;
}

.grid .grid__item:nth-child(8) {
	--r: 7;
	--c: 3;
}

.grid .grid__item:nth-child(9) {
	--r: 8;
	--c: 7;
}

.grid .grid__item:nth-child(10) {
	--r: 9;
	--c: 1;
}

.grid .grid__item:nth-child(11) {
	--r: 9;
	--c: 6;
}

.grid .grid__item:nth-child(12) {
	--r: 10;
	--c: 4;
}

.about-shortlinks {
	position: relative;
}

@media (min-width: 1024px) {

	.about-shortlinks {
		position: fixed;
	}
}

.book-meta {
	flex-direction: column;
}

@media (min-width: 1024px) {

	.book-meta {
		flex-direction: row;
	}
}

.logos-partnaires {
	flex-direction: column;
}

@media (min-width: 1024px) {

	.logos-partnaires {
		flex-direction: row;
	}
}

/** homepage **/
.home-parallax-bg {
	height: 200vh;
}

.home-parallax-bg .grid__item-img {
	margin-top: 1rem;
}

.homepage-review-name {
	position: sticky;
	top: 34vh;
	text-align: center;
}

/* todo: add class on h1 and rename class */
.homepage-review-name h1 img {
	filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.homepage-review-baseline-text {
	text-transform: lowercase;
	text-rendering: geometricprecision;
	font-kerning: auto;
	-webkit-font-smoothing: subpixel-antialiased;
	-moz-osx-font-smoothing: auto;
	text-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

@media screen and (orientation: landscape) and (max-height: 600px) {

	.home-parallax-bg .grid .grid__item {
		grid-row: unset;
	}
}

@media screen and (orientation: portrait) {

	.home-parallax-bg {
		height: 130vh;
	}

	.homepage-review-name {
		top: 30vh;
	}

	.home-parallax-bg .grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.home-parallax-bg .grid__item-img {
		margin-top: 0.25rem;
	}
}

@media screen and (orientation: landscape) and (min-width: 1024px) and (max-width: 1340px) {

	.homepage-review-name h1 img {
		max-width: 60vw;
	}
}

#wpadminbar + main.transition-container > .site header.site-header {
	padding-top: 32px;
}
