:root {
	--green: #00434c;
	--ultralightgreen: #f2f5f6;
	--lightgreen: #e5eced;
	--lachs: #d76669;
	--lightlachs: #fac7a5;
	--yellow: #fed16e;
	--blue: #008bd2;
	--greengreen: #52ae32;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}
html, body {
	margin: 0;
	padding: 0;
}
body {
	font-weight: 400;
	font-family: MarkW02-Narrow,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 1.2rem;
}

h1, .teaser_box h2 {
	font-family: "lemonde-journal", serif;
	font-weight: 700;
	font-style: normal;
	font-size: 6rem;
	color: var(--green);
}
@media screen and (max-width: 1199px) {
	h1, .teaser_box h2 {
		font-size: 4rem;
	}
}
@media screen and (max-width: 767px) {
	h1, .teaser_box h2 {
		font-size: 2.8rem;
	}
}
.main_hl {
	margin-top: 0;
	text-align: center;
}
h2 {
	font-weight: 500;
	font-size: 2rem;
	position: relative;
	margin: 4rem 0;
}
h2::after {
	content: "";
	position: absolute;
	bottom: -26px;
	left: 0;
	width: 50px;
	height: 8px;
	background-color: var(--green);
}

p {
	line-height: 1.9rem;
}

.sr-only:not(:focus):not(:active) {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

button {
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	cursor: pointer;
	font-size: inherit;
}

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

p a {
	color: var(--green);
	text-decoration: underline;
	transition: all 0.2s ease-out;
	word-wrap: break-word;
}
p a:hover {
	color: var(--lachs);
}

.link {
	font-weight: 500;
	color: var(--green);
	position: relative;
}
.link:after {
	content: '';
	position: absolute;
	bottom: -0.4rem;
	left: 50%;
	width: 0;
	height: 4px;
	background-color: var(--green);
	transition: all 0.25s ease-out;
}
.link:hover:after {
	left: 0;
	width: 100%;
}
.link_white {
	color: #fff;
}
.link_white:after {
	background-color: #fff;
}

.button {
	font-weight: 500;
	text-transform: uppercase;
	color: var(--green);
	border: 6px solid var(--green);
	padding: 0.7em 1.2em;
	position: relative;
	z-index: 1;
	transition: all 0.25s ease-out;
}
.button_white {
	color: #fff;
	border-color: #fff;
}
.button_filled {
	background-color: var(--green);
	color: #fff;
}
.button_white:hover, .button_filled:hover {
	color: var(--green);
}
.button:before {
	content: '';
	position: absolute;
	background-color: #fff;
	width: 100%;
	height: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	transition: all 0.25s ease-out;
}
.button:hover:before {
	height: 100%;
}

/* # # # # HEADER # # # # */

.header {
	position: relative;
	width: 100%;
	max-width: 2600px;
	margin-right: auto;
	margin-left: auto; 
	padding: 40px 60px;
}
.home .header {
	height: 100vh;
}
@media screen and (max-width: 1199px) {
	.header {
		padding: 40px;
	}
}
@media screen and (max-width: 767px) {
	.header {
		padding: 20px;
	}
}
.header_image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}
.header_header {
	position: relative;
	z-index: 10;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
}
.header .logo_bo {
	pointer-events: all;
}
.header .logo_bo svg {
	display: block;
	width: 240px;
	fill: var(--green);
	transition: all .3s ease-in-out;
}
.menu_is_open .header .logo_bo svg {
	fill: #fff;
}
.home .header .logo_bo svg {
	width: 170px;
	fill: #fff;
}
@media screen and (max-width: 1199px) {
	.home .header .logo_bo svg {
		width: 140px;
	}
}
@media screen and (max-width: 767px) {
	.home .header .logo_bo svg {
		width: 100px;
	}
	.header .logo_bo svg {
		width: 180px;
	}
}

.header_title {
	position: absolute;
	top: 38vh;
	left: 0;
	width: 100%;
	display: grid;
	place-items: center;
	text-align: center;
	color: #fff;
}
.header_title h1 {
	max-width: 1000px;
	margin: 0;
	color: #fff;
}

.header_bottom {
	position: absolute;
	bottom: 45px;
	left: 0;
	width: 100%;
	text-align: center;
}
.header_bottom svg {
	width: 2rem;
	transition: all 0.3s ease-out;
}
.header_bottom a:hover svg {
	transform: translateY(4px);
}
/* burger menu */

.burger_menu {
	position: relative;
	width: 80px;
	height: 60px;
	margin-top: 5px;
	pointer-events: all;
}
.burger-menu__line {
	position: absolute;
	left: 0;
	display: block;
	width: 100%;
	height: 6px;
	background-color: var(--green);
	transition: all .3s ease-in-out;
}
.menu_is_open .burger-menu__line {
	background-color: #fff;
}
.home .burger-menu__line {
	background-color: #fff;
}
.burger-menu__line.line-1 {
	top: 16px;
}
.menu_is_open .burger_menu .line-1 {
	top: 0;
	transform: translateY(27px) translateX(0) rotate(45deg);
}
.burger-menu__line.line-2 {
	bottom: 16px;
}
.menu_is_open .burger_menu .line-2 {
	bottom: 0;
	transform: translateY(-27px) translateX(0) rotate(-45deg);
}

/* overlay nav */

.header_overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9;
	width: 100%;
	max-height: 0;
	padding: 0 60px;
	overflow: hidden;
	background-color: var(--green);
	transition: max-height 300ms cubic-bezier(0.77, 0, 0.175, 1);
}
.menu_is_open .header_overlay {
	max-height: 800px;
}
@media screen and (max-width: 767px) {
	.header_overlay {
		padding: 0 20px;
	}
}
.header_meta_menu {
	display: flex;
	justify-content: end;
	gap: 40px;
	margin-top: 62px;
	margin-right: 160px;
	padding: 0;
	list-style: none;
	font-size: 1.2em;
}
.header_main_menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 180px;
	margin-bottom: 80px;
	padding: 0;
	list-style: none;
}
.header_main-item {
	width: 22%;
}
.link-navigation {
	font-size: 2rem;
	color: #fff;
	display: inline-block;
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
	font-weight: 500;
	border-bottom: 6px solid #fff;
	transition: all .1s linear;
}
.link-navigation:hover {
	padding-bottom: 14px;
	border-width: 12px;
}
@media screen and (max-width: 767px) {
	.header_meta_menu {
		margin-top: 160px;
		margin-right: auto;
		justify-content: unset;
		font-size: unset;
	}
	.header_main_menu {
		margin-top: 40px;
	}
	.header_main-item {
		width: 100%;
		
	}
	.link-navigation {
		font-size: 1.8rem;
		padding-bottom: 10px;
	}
	.link-navigation:hover {
		padding-bottom: 4px;
	}
}

/* # # # # MAIN # # # # */

main {
	max-width: 1440px;
	margin: 0 auto 4rem;
	padding: 80px 60px;
}
@media screen and (max-width: 1199px) {
	main {
		padding: 40px;
	}
}
@media screen and (max-width: 767px) {
	main {
		padding: 20px;
	}
}

.content_wrapper {
	max-width: 700px;
	margin: 0 auto;
}

main img {
	max-width: 100%;
	display: block;
}

figure {
	margin: 0;
}
figcaption {
	font-size: small;
	padding: 0.5rem;
}

/* teaser */

.teaser_box {
	margin: 100px 0;
	position: relative;
}
.teaser_box_frame {
	width: 53%;
	aspect-ratio: 1 / 1;
	border: 15px solid var(--green);
	padding: 4vw;
	position: relative;
  z-index: 2;
}
.teaser_box_frame h2 {
	margin-top: 0;
	color: var(--green);
}
.teaser_box_frame .button {
	font-size: 1.2em;
	display: inline-block;
}
.teaser_box_image {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 53%;
	overflow: hidden;
}
.teaser_box_image img {
	width: 100%;
	object-fit: cover;
	height: 50%;
}
.teaser_box_notice {
	width: 47%;
	padding: 4vw;
}
.teaser_box_notice p {
	margin: 0;
}
.notice {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 1.2em;
	height: 1.2em;
	background-color: var(--lachs);
	color: #fff;
	border-radius: 50%;
}
@media screen and (max-width: 767px) {
	.teaser_box {
		margin: 60px 0;
	}
	.teaser_box_frame {
		width: 100%;
	}
	.teaser_box_image {
		position: relative;
		top: 0;
		right: auto;
		width: 80%;
		margin: -40px 0 0 10%;
		z-index: 1;
	}
	.teaser_box_notice {
		width: 100%;
		padding: 40px 0 0 0;
	}
}

/* basket */

.basket_bar {
	position: sticky;
	top: 60px;
	z-index: 5;
	display: flex;
	justify-content: end;
	align-items: start;
	height: 0;
	padding: 0 65px;
	pointer-events: none;
}
.basket_wrapper {
	display: flex;
	align-items: center;
	pointer-events: all;
}
.basket {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background-color: var(--green);
	display: flex;
	align-items: center;
	background-image: url('images/icons/icon_basket-white.svg');
	background-repeat: no-repeat;
	background-size: 60%;
	background-position: center;
}
.basket_info_wrapper {
	position: relative;
	display: flex;
	align-items: center;
	transform: translateX(15px);
}
.basket_info_wrapper > * {
	position: absolute;
	right: 0;
	border-radius: 20px;
	padding: 4px 20px;
	opacity: 0;
	transform: scale(0.5);
	pointer-events: none;
	transition: all 0.3s ease-out;
}
.basket_info_wrapper > *.show {
	opacity: 1;
	transform: scale(1);
	pointer-events: all;
}
.basket_login {
	background-color: var(--lachs);
	color: #fff;
}
.basket_counter {
	background-color: var(--yellow);
	color: var(--green);
}
@media screen and (max-width: 1199px) {
	.basket_bar {
		padding: 0 45px;
	}
}
@media screen and (max-width: 767px) {
	.basket_bar {
		height: auto;
		padding: 0 25px;
		top: 20px;
	}
}

/* # # # # FORM # # # # */

.index_search_form {
	display: flex;
	justify-content: space-between;
	gap: 2vw;
}
.index_search_form > * {
	display: flex;
	flex-direction: column;
	width: 100%;
	white-space: nowrap;
}
.index_search_form_check {
	width: auto;
}

.label_text {
	display: block;
	padding-bottom: 0.5rem;
}

input, select, textarea {
	width: 100%;
	padding: 1rem;
	border: 4px solid var(--green);
	outline: none;
	font-size: inherit;
	font-family: inherit;
	background-color: #fff;
	margin: 0;
}
input:focus {
	border-color: var(--blue);
}
select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
}
input[type="checkbox"] {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	width: 58px;
	height: 34px;
	padding: 5px;
	border: none;
	border-radius: 2rem;
	display: flex;
	align-items: center;
	transition: all 0.25s ease-out;
	cursor: pointer;
	background-color: var(--lightgreen);
/*	opacity: 0.25;*/
}
@media screen and (min-width: 767px) {
	.index_search_form input[type="checkbox"] {
		margin: 1rem auto 0 auto;
	}
}
input[type="checkbox"]:after {
	content: '';
	/*width: 0.4rem;
	height: 0.8rem;
	border-right: 4px solid var(--green);
	border-bottom: 4px solid var(--green);
	display: block;
	transform: rotate(45deg) translate(-0.7rem, -0.3rem);*/
	width: 24px;
	height: 24px;
	background-color: var(--green);
	border-radius: 50%;
	position: relative;
	left: 0;
	background-color: #fff;
	transition: all 0.25s ease-out;
}
input[type="checkbox"]:checked {
/*	opacity: 1;*/
	background-color: var(--green);
}
input[type="checkbox"]:checked:after {
	left: 50%;
}
@media screen and (max-width: 767px) {
	.index_search_form {
		flex-wrap: wrap;
		gap: 4vw;
	}
}

.checkbox_row {
	display: flex;
	align-items: center;
	gap: 1rem;
}

/* login */

.login_wrapper {
	max-width: 400px;
	margin: 0 auto;
}
.login_form {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
	margin: 3rem 0;
}

/* # # # # TREE # # # # */

.index_tree {
	margin-top: 4rem;
}
.index_tree ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	color: var(--green);
}
.index_tree li {
	display: block;
	position: relative;
	background-color: var(--ultralightgreen);
	transition: all 0.3s ease-out;
}
.it_lvl-1 > li {
	margin: 2rem 0;
}
.index_tree summary {
	display: flex;
	align-items: center;
	cursor: pointer;
	font-weight: 700;
	text-transform: uppercase;
	padding: 3rem;
	transition: all 0.25s ease-out;
	position: relative;
}
@media screen and (max-width: 767px) {
	.index_tree summary {
		padding: 2rem 1rem;
	}
}
.index_tree summary:before {
	content: '';
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-image: url(images/icons/icon_arrow.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 70%;
	transition: all 0.25s ease-out;
	transform-origin: center;
}
.index_tree summary:hover {
	background-color: var(--lightgreen);
}
.index_tree details[open] > summary:before {
	transform: rotate(90deg);
}
@media screen and (max-width: 767px) {
	.index_tree summary:before {
		width: 30px;
		height: 30px;
	}
}

.it_lvl-1 > li > details > summary {
	font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
	.it_lvl-1 > li > details > summary {
		font-size: 1.2rem;
	}
}
.it_lvl-1 > li > details > summary:before {
	background-size: 100%;
}
.index_tree > ul > li > details[open] > summary {
	background-color: var(--green);
	color: #fff;
}
.index_tree > ul > li > details[open] > summary:before {
	filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(320deg) brightness(102%) contrast(100%);
}
.index_tree > ul > li > details > ul > li {
	border: 4px solid var(--green);
	border-top: none;
}
.it_lvl-3 li {
	padding: 1rem 3rem 1rem 6rem;
}
.it_lvl-3 li:hover {
	background-color: var(--lightgreen);
	cursor: pointer;
}
.it_lvl-3 li:before {
	content: '';
	position: absolute;
	top: 0.65rem;
	left: 2.5rem;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--lachs);
	background-image: url(images/icons/icon_basket-white.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 70%;
	transition: all 0.25s ease-out;
}
.loggedin .it_lvl-3 li:before {
	background-color: transparent;
	background-image: url(images/icons/icon_basket.svg);
}
.it_lvl-3 li.selected:before {
	background-color: var(--green);
	background-image: url(images/icons/icon_basket-selected.svg);
}
@media screen and (max-width: 767px) {
	.it_lvl-1 > li > details > summary {
		font-size: 1.2rem;
	}
	.it_lvl-3 li {
		padding: 1rem 1rem 1rem 3rem;
	}
	.it_lvl-3 li:before {
		top: 0.8rem;
		left: 0.9rem;
		width: 30px;
		height: 30px;
	}
}

.it_lvl-1 > li > details > summary:after {
	content: '';
	position: absolute;
	right: 1rem;
	height: 80%;
	aspect-ratio: 1 / 1;
	background-repeat: no-repeat;
	background-position: center right;
	transition: all 0.25s ease-out;
}
.it_lvl-1 > li:nth-child(1) > details > summary:after {
	background-image: url(images/icons/icon_gymno.svg);
}
.it_lvl-1 > li:nth-child(2) > details > summary:after {
	background-image: url(images/icons/icon_dico.svg);
}
.it_lvl-1 > li:nth-child(3) > details > summary:after {
	background-image: url(images/icons/icon_mono.svg);
}
.it_lvl-1 > li > details[open] > summary:after {
	filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(320deg) brightness(103%) contrast(106%);
}
@media screen and (max-width: 767px) {
	.it_lvl-1 > li > details > summary:after {
		right: 0;
		height: 60%;
	}
}

.index_tree summary::marker,
.index_tree summary::-webkit-details-marker {
	display: none;
}
.index_tree summary:focus {
	outline: none;
}
.index_tree summary:focus-visible {
	outline: 1px dotted #000;
}

/* # # # # FOOTER # # # # */

.footer {
	width: 100%;
	max-width: 2600px;
	margin-right: auto;
	margin-left: auto;
	padding: 60px 60px 100px;
	background-color: var(--green);
}
.footer_nav {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 40px;
}
.footer_logos {
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
}
.footer_logos svg {
	width: 240px;
	height: auto;
}
.footer_menu {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	font-size: 1.2em;
	gap: 40px;
}
@media screen and (max-width: 767px) {
	.footer {
		padding: 20px 20px 40px 20px;
	}
	.footer_logos {
		gap: 20px;
	}
	.footer_logos svg {
		width: 200px;
	}
	.footer_menu {
		font-size: unset;
		gap: 20px;
	}
}
