@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

*, :after, :before {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

blockquote, body, header, main, section, footer, dd, dl, figure, h1, h2, h3, h4, ol, ul, p {
    margin: 0;
    padding: 0;
}

ol, ul {
    list-style: none;
}

body {
	background-color: #FFF;
	font-family: Poppins, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

a {
	color: #000;
	text-decoration: none;
}

header {
	background-color: #FFF;
	position: fixed;
	top: 0;
	width: 100%;
	height: 80px;
	z-index: 100;
}

header > a {
	display: flex;
	height: 80px;
	padding-left: 1rem;
	justify-content: center;
	align-items: center;
	float: left;
}

header > a > img {
	transition: filter .2s;
	height: 75%;
}

header > a:hover > img {
	filter: drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));
}

header > input + div {
	padding-right: 1rem;
	height: 100%;
	width: fit-content;
	display: flex;
	justify-content: center;
	align-items: center;
	float: right;
}

header > div > label {
	display: none;
    cursor: pointer;
    padding: 23px 23px;
    border-radius: 30px;
    justify-content: center;
    align-items: center;
    background-color: rgba(126, 91, 246, 1);
    transition: padding .2s, background-color .2s;
}

header > div > label:hover {
	padding: 24px 25px;
	background-color: rgba(126, 91, 246, .8);
}

header > div > label > span {
    background: #FFF;
    display: block;
    height: 3px;
    position: relative;
    width: 24px;
}

header > div > label > span::before,
header > div > label > span::after{
    background: #FFF;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
}

header > div > label > span::before{
    top: 7px;
}

header > div > label > span::after{
    top: -7px;
}


header > nav > ul {
	float: right;
	display: flex;
	z-index: 101;
}

header > nav > ul > li {
	width: 150px;
	height: 80px;
}

header > nav > ul > li > label > p,
header > nav > ul > li > a {
	display: flex;
	height: 100%;
	width: 100%;
	justify-content: center;
	align-items: center;
	color: rgb(75, 85, 99);
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-weight: 600;
	cursor: pointer;
	user-select: none;
}

header > nav > ul > li > label > p:hover {
	text-decoration: underline;
	color: rgb(17, 24, 39);
}

header > nav > ul > li > label > p > img {
	width: 20px;
	height: 20px;
	color: rgb(75, 85, 99);
	padding-left: 4px;
	transition: transform .5s;
}

header > nav > ul > li > label > p:hover > img {
	transform: rotate(-180deg) translateX(-4px) translateY(0px) translateZ(0px);
	color: rgb(17, 24, 39);
}

header > nav > ul > li > label {
	width: 100%;
	height: 100%;
}

header > input,
header > nav > ul > li > input {
	display: none;
}

header > nav > ul > li > a:hover {
	text-decoration: none !important;
}

header > nav > ul > li > a > span {
	color: white;
	text-decoration: none;
	background-color: rgba(126, 91, 246, 1);
	padding: 10px 20px;
	border-radius: 30px;
	transition: padding .2s, font-size .2s, line-height .2s, background-color .2s;
}

header > nav > ul > li > a:hover > span {
	padding: 11px 22px;
	text-decoration: none;
	background-color: rgba(126, 91, 246, .8);
	font-size: calc(1.125rem + 1px);
	line-height: calc(1.75rem + 1px);
}

header > nav > ul > li > div {
	display: none;
	position: relative;
	background-color: #FFF;
	border-radius: 20px;
	box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
	width: fit-content;
	height: fit-content;
	z-index: 102;
}

header label:hover + div {
	display: flex;
}

header > nav > ul > li > div:hover {
	display: flex;
}

header > nav > ul > li > div > ul {
	padding: 1rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

header > nav > ul > li > div > ul > li > a {
	border-radius: 10px;
	display: flex;
	gap: 1rem;
	padding: .5rem;
}

header > nav > ul > li > div > ul > li > a > div {
	display: flex;
	flex-direction: column;
}

header > nav > ul > li > div > ul > li > a > div > p {
	color: rgb(17, 24, 39);
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5rem;
	white-space: nowrap;
}

header > nav > ul > li > div > ul > li > a > div > p ~ p {
	color: rgb(107, 114, 128);
	font-size: .875rem;
	line-height: 1.25rem;
	margin-top: .25rem;
	font-weight: 300;
	white-space: nowrap;
}

header > nav > ul > li > div > ul > li > a > div:first-child {
	width: 48px;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
}

header > nav > ul > li > div > ul > li > a > div:first-child > img {
	width: 26px;
}

header > nav > ul > li > div > ul > li > a > div:last-child {
	position: absolute;
	top: 20%;
	left: 20%;
	width: 30%;
	height: 60%;
	border-radius: 10px;
	background-color: rgba(122, 88, 170, 0);

	transition: all .2s;
}

header > nav > ul > li > div > ul > li > a:hover > div:last-child {
	background-color: rgba(122, 88, 170, .15);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

header > nav > ul > li > div > ul > li > a {
	position: relative;
}

header > nav > ul > li + li > div {
	float: right;
}

header > nav + div {
	width: 100vw;
	height: 28px;
	background-color: #d63163;
	color: white !important;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	font-size: 1.125rem;
	line-height: 1.75rem;
	position: fixed;
	top: 80px;
	z-index: 100;
	border-bottom: 1px solid #FFF;
}

main {
	margin-top: 108px;
	width: 100%;
	height: fit-content;
	overflow: hidden;
}

main * {
	scroll-margin-top: 108px;
} 

#accueil > section:first-child {
	position: relative;
	padding: 2rem;
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	height: fit-content;
	min-height: calc(100vh - 108px);
	display: flex;
	gap: 2rem;

	background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url('https://weberauto.lu/images/mainbg.webp');

	background-repeat: no-repeat;
  	background-position: center;
  	background-size: 100% auto;
	
}

#accueil > section:first-child > div:first-child {
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 42rem;
}

#accueil > section:first-child > div:first-child > h2 > span {
	font-weight: 600;
	font-size: 3.75rem;
	line-height: 1;
	letter-spacing: 0em;
	color: rgb(255, 255, 255);
	display: block;
}

#accueil > section:first-child > div:first-child > h2 > span:last-child {
	font-weight: 700;
	color: rgb(0, 184, 255);
}

#accueil > section:first-child > div:first-child > p {
	margin-top: 1.25rem;
	font-size: 1.125rem;
	line-height: 1.75rem;
	color: rgb(255, 255, 255);
}

#accueil > section:first-child > div:first-child > p > a {
	font-weight: 700;
	color: rgb(0, 184, 255);
	text-decoration: none;
}

#accueil > section:first-child > div:first-child > p > a:hover {
	text-decoration: underline;
}


#accueil > section:first-child > div:last-child {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	align-items: center;
	justify-content: center;
}

#accueil > section:first-child > div:last-child > div {
	min-width: 26.7rem;
	padding: 2rem; /* 1rem? */
	border-radius: 1rem;
}

#accueil > section:first-child > div:last-child > div > h2 {
	font-weight: 700;
	letter-spacing: -.025em;
	font-size: 1.875rem;
	line-height: 2.25rem;
	color: rgb(255, 255, 255);
}

#accueil > section:first-child > div:last-child > div > p {
	line-height: 1.5rem;
	font-size: 1rem;
	margin-top: 1rem;
	color: rgb(245, 245, 245);
}

#accueil > section:first-child > div:last-child > div > a {
	margin-top: 1rem;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.5rem;
	padding: .5rem .75rem;
	border-radius: .25rem;
	width: 100%;
	text-align: center;
	color: #FFF;
	display: block;
}

#accueil > section:first-child > div:last-child > div:first-child {
	border: solid 2px rgb(0, 157, 218);
}

#accueil > section:first-child > div:last-child > div:first-child > a {
	background-color: rgb(0, 157, 218);
	border-radius: .25rem;
	border-bottom: 3px solid rgb(5, 105, 223);
}

#accueil > section:first-child > div:last-child > div:first-child > a:hover {
	background-color: rgb(6, 117, 248);
}

#accueil > section:first-child > div:last-child > div:last-child {
	border: solid 2px rgb(126, 91, 246);
}

#accueil > section:first-child > div:last-child > div:last-child > a {
	background-color: rgb(126, 91, 246);
	border-radius: .25rem;
	border-bottom: 3px solid rgb(80, 27, 218);
}

#accueil > section:first-child > div:last-child > div:last-child > a:hover {
	background-color: rgb(89, 30, 243);
}

#accueil > section:nth-child(6) {
	width: 100vw;
	height: fit-content;
	background-color: #FFF;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 5rem 2rem;
	text-align: center;
}

#accueil > section:nth-child(6) > p {
	font-weight: 800;
	font-size: 1.5rem;
	line-height: 2.25rem;
	color: rgb(17, 24, 39);
}

#accueil > section:nth-child(6) > p > span {
	color: rgb(24, 119, 242);
	font-size: 2.5rem;
	line-height: 1;
}

#accueil > section:nth-child(6) > a > img {
	margin-top: .5rem;
	height: 6rem;
}

#accueil > section:nth-child(8) {
	 width: 100vw;
	 height: fit-content;
	 background-color: rgb(255, 237, 230);
}

#accueil > section:nth-child(8) > div {
	width: fit-content;
	max-width: 42rem;
	padding: 2rem;
	margin: 4rem auto;
}

#accueil > section:nth-child(8) > div > h2 {
	text-align: center;
}

#accueil > section:nth-child(8) > div > ul {
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
	gap: .5rem;
}

#accueil > section:nth-child(8) span {
	font-weight: 700;
}





#accueil > #cours-de-theorie,
#accueil > #conduite-accompagnee,
#accueil > #code-de-la-route,
#accueil > #permis-de-conduire {
	scroll-margin-top: 108px;
	background-color: #FFF;
	height: fit-content;
	width: 100vw;
}

#accueil > #code-de-la-route > div,
#accueil > #permis-de-conduire > div,
#accueil > #cours-de-theorie > div:first-child,
#accueil > #conduite-accompagnee > div {
	width: 100%;
	height: fit-content;
	position: relative;
	display: flex;
}

#accueil > #cours-de-theorie > div:first-child {
	background-color: rgb(103, 61, 230);
}

#accueil > #conduite-accompagnee > div {
	background-color: rgb(61, 103, 230);
	flex-direction: row-reverse;
}

#accueil > #code-de-la-route > div {
	background-color: rgb(31, 41, 55);
}

#accueil > #permis-de-conduire > div {
	background-color: rgb(55, 31, 41);
}


#accueil > #cours-de-theorie > div:first-child > div:nth-child(2),
#accueil > #conduite-accompagnee > div > div:nth-child(2) {
	padding: 2rem;
	max-width: 68rem;
	color: #FFF;
}

#accueil > #cours-de-theorie > div:first-child > div:nth-child(2) > h2,
#accueil > #conduite-accompagnee > div > div:nth-child(2) > h2 {
	font-size: 3rem;
	line-height: 1;
	letter-spacing: -.025em;
	font-weight: 700;
}

#accueil > #cours-de-theorie > div:first-child > div:nth-child(2) > p,
#accueil > #conduite-accompagnee > div > div:nth-child(2) > p {
	font-size: 1.25rem;
	line-height: 2rem;
	margin-top: 1.5rem;
}

#accueil > #cours-de-theorie > div:first-child > div:nth-child(3),
#accueil > #conduite-accompagnee > div > div:nth-child(3) {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #FFF;
}

#accueil > #cours-de-theorie > div:first-child > div:nth-child(3) > div,
#accueil > #conduite-accompagnee > div > div:nth-child(3) > div {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

#accueil > #cours-de-theorie > div:first-child > div:nth-child(3) > div > p,
#accueil > #conduite-accompagnee > div > div:nth-child(3) > div > p {
	font-weight: 700;
	letter-spacing: -.025em;
	font-size: 1.875rem;
	line-height: 2.25rem;
}

.stripe-border {
	width: 100%;
	height: 2rem;
	display: block;
}

.theoryreferrer{
	color: rgb(47, 28, 106);
	font-size: 16px;
	padding-left: 2rem;
}

.theoryreferrer:hover{
	text-decoration: underline;
}


#remich img,
#grevenmacher img {
	height: 16px;
}

#remich,
#grevenmacher {
	width: 100%;
	height: fit-content;
	padding: 2rem;
	display: flex;
	gap: 2rem;
}

#remich > div:last-child,
#grevenmacher > div:last-child {
	flex-grow: 1;
}

#remich > div:last-child > iframe,
#grevenmacher > div:last-child > iframe {
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 30px;
}

#remich > div:first-child,
#grevenmacher > div:first-child {
	width: fit-content;
	height: fit-content;
	padding: 2rem;
	border-radius: 8px;
	box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px 0px;
}

#remich > div:first-child > h3,
#grevenmacher > div:first-child > h3 {
	font-weight: 700;
	letter-spacing: -.025em;
	font-size: 1.875rem;
	line-height: 2.25rem;
	color: rgb(17, 24, 39);
}

#remich table,
#grevenmacher table {
	text-align: center;
	border-collapse: collapse;
	width: 100%;
	color: rgb(114, 117, 134);
}

#remich tr,
#grevenmacher tr {
	border-bottom: 1px solid rgb(17, 24, 39);
	padding: 10px;
}

#remich td,
#grevenmacher td,
#remich th,
#grevenmacher th {
	padding-top: .5rem;
	padding-bottom: .5rem;
}

#remich .active,
#grevenmacher .active {
	font-weight: 700;
	color: rgb(17, 24, 39);
}

#remich th,
#grevenmacher th {
	color: rgb(17, 24, 39);
	text-transform: uppercase;
	font-weight: 500;
}

#remich tr:first-child,
#grevenmacher tr:first-child,
#remich tr:last-child,
#grevenmacher tr:last-child {
	border-bottom: none;
}






main .code .inner-container {
	padding: 3rem 1.5rem;
	max-width: 80rem;
	display: flex;
	height: fit-content;
	align-items: flex-start;
	margin-left: auto;
	margin-right: auto;
}

main .code .text {
	padding-left: 2.5rem;
	width: 50%;
	color: rgb(209, 213, 219);
	height: fit-content;
}

main .code .subheading {
	letter-spacing: .05em;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.5rem;
}

main .code h2 {
	color: #FFF;
	font-size: 2.25rem;
	line-height: 2.5rem;
	letter-spacing: -.025em;
	font-weight: 800;
	margin-top: .5rem;
}

main .code .body-text {
	font-size: 1.125rem;
	line-height: 1.75rem;
	margin-top: .75rem;
}

main .code .button {
	display: block;
	margin-top: 2rem;
	padding: .5rem .75rem;
	background-color: #FFF;
	color: rgb(55, 65, 81);
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.5rem;
	width: fit-content;
	border-radius: 3px;
	border-bottom: 3px solid rgb(229, 229, 229);
	cursor: pointer;
}

main .code .svg-container {
	justify-content: center;
	align-items: center;
}

main .code .svg-container img {
	filter: invert(100%);
	opacity: .1;
}




main .convincer {
	max-width: 80rem;
	height: fit-content;
	background-color: #FFF;
	padding: 7rem 2rem;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

main .convincer > h2 > span:first-child {
	font-weight: 800;
	font-size: 1.875rem;
	line-height: 2.25rem;
	color: rgb(17, 24, 39);
}

main .convincer > h2 > span:last-child {
	font-size: 3rem;
	line-height: 1;
	display: block;
	margin-top: .5rem;
	font-weight: 800;
	color: rgb(17, 24, 39);
}

main .convincer > p {
	line-height: 2rem;
	font-size: 1.125rem;
	max-width: 36rem;
	margin-top: 1.25rem;
	color: rgb(75, 85, 99);
	margin-left: auto;
	margin-right: auto;
}

article a {
	font-weight: 700;
	text-decoration: underline;
}

article p {
	margin-top: 1rem;
}

article section:first-child {
	width: 100%;
	height: fit-content;
	background-color: rgb(255, 237, 230);
}

article section:first-child > div {
	padding: 2rem;
	max-width: 64rem;
	margin-left: auto;
	margin-right: auto;
}

article section:first-child > div > nav > ol > li {
	display: inline;
}

article section:first-child > div > nav > ol {
	text-align: center;
}

article h1 {
	width: 100%;
	max-width: 42rem;
	font-weight: 900;
	font-size: 2rem;
	text-align: center;
	padding-top: 1rem;
	padding-bottom: 4rem;
	margin-left: auto;
	margin-right: auto;
}

article h1 span {
	padding-top: .5rem;
	display: block;
	font-weight: 700;
	font-size: 1.5rem;
	text-align: center;
}

.article-section {
	background-color: #FFF;
	max-width: 36rem;
	margin-left: auto;
	margin-right: auto;
	padding: 2rem;
}

article h2 {
	margin: 2rem 0;
}

article h3,
article h4 {
	margin: 2rem 0;
}

.normal-list {
	margin-top: 1rem;
}

.normal-list a {
	font-weight: 700;
	text-decoration: underline;
}

.scroll-list {
	height: 50vh;
	overflow-y: scroll;
	margin: 2rem 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.scroll-list li {
	padding: 1rem;
	margin-right: 2rem;
	background-color: rgb(250, 250, 250);
	border-radius: 10px;
}

.scroll-list h4 {
	margin-top: 0;
}


footer {
	width: 100%;
	height: fit-content;
	background-color: #000;
	padding-top: 3rem;
	padding-bottom: 3rem;
	display: flex;
	flex-direction: column;
	gap: 3rem;
	align-items: center;
	justify-content: center;
	color: rgb(238, 231, 216);
	text-align: center;
}

footer > ul {
	display: flex;
	gap: 1rem;
}

footer > img {
	width: 175px;
	filter: invert(100%);
}

footer > ul > li > a > img {
	width: 25px;
}



@media (max-width: 1023px) {

	#accueil > section:first-child {
		background-size: auto 100%;
	}

	
	#accueil > #cours-de-theorie > div:first-child > div:last-child > div,
	#accueil > #conduite-accompagnee > div > div:last-child > div {
		flex-direction: row;
		padding-bottom: 2rem;
	}

	#accueil > #cours-de-theorie > div:first-child > div:nth-child(2),
	#accueil > #conduite-accompagnee > div > div:nth-child(2) {
		margin-left: auto;
		margin-right: auto;
		text-align: center;
		max-width: 42rem;
	}

	#accueil > #cours-de-theorie > div:first-child,
	#accueil > #conduite-accompagnee > div {
		flex-direction: column;
	}





	main .code .text {
		padding-left: 0;
		width: auto;
		color: rgb(209, 213, 219);
		height: fit-content;
	}

	main .code .svg-container {
		display: none;
	}

	main .code h2 {
		font-size: 1.875rem;
		line-height: 2.25rem;
	}

	#remich > div:first-child,
	#grevenmacher > div:first-child {
		margin-left: auto;
		margin-right: auto;
	}

	
	#remich > div:last-child,
	#grevenmacher > div:last-child {
		width: 100%;
		min-height: 420px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	#remich > div:last-child > iframe,
	#grevenmacher > div:last-child > iframe {
		width: 642px;
		height: 420px;
	}

	#remich > div:first-child > h3,
	#grevenmacher > div:first-child > h3 {
		text-align: center;
	}


	#remich,
	#grevenmacher {
		flex-direction: column;
	}

	






	#accueil > section:first-child {
		flex-direction: column;
		gap: 4rem;
	}

	#accueil > section:first-child > div:first-child {
		padding-top: 4rem;
		justify-content: flex-start;
		text-align: center;
		margin-left: auto;
		margin-right: auto;
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

	#accueil > section:first-child > div:first-child > p {
		font-size: 1.25rem;
	}

	#accueil > section:first-child > div:last-child {
		flex-direction: column;
		text-align: center;
	}

	#accueil > section:first-child > div:last-child > div {
		max-width: 36rem;
	}
}







@media (max-width: 815px) {
    
    #accueil > section:first-child {
	    background: linear-gradient( rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75) ), url('https://weberauto.lu/images/mainbgvert.jpg');

        background-repeat: no-repeat;
        background-position: center;
        background-size: auto 100%;
    }
    
    

	#remich h3,
	#grevenmacher h3 {
		font-weight: 600 !important;
		font-size: 1.25rem !important;
		line-height: 1.75rem !important;
	}


	.stripe-border {
		height: 1.1rem;
	}

	#accueil > #cours-de-theorie > div:first-child > div:nth-child(2) > h2,
	#accueil > #conduite-accompagnee > div > div:nth-child(2) > h2 {
		font-size: 2rem;
		line-height: 1;
		letter-spacing: -.025em;
		font-weight: 700;
	}

	#accueil > #cours-de-theorie > div:first-child > div:nth-child(2) > p,
	#accueil > #conduite-accompagnee > div > div:nth-child(2) > p {
		font-size: 1rem;
		line-height: 1.5rem;
		margin-top: 1rem;
	}

	#accueil > #cours-de-theorie > div:first-child > div:last-child > div > p,
	#accueil > #conduite-accompagnee > div > div:last-child > div > p {
		font-weight: 600;
		font-size: 1.1rem;
		line-height: 1.75rem;
		letter-spacing: -.025rem;
	}



	

	header > div > label {
		display: flex;
	}

	header > input:checked ~ nav > ul {
		display: flex;
	}

	header > input:checked ~ div > label > span {
	    background: transparent;
	}

	header > input:checked ~ div > label > span::before {
	    transform: rotate(-45deg);
	    top:0;
	}

	header > input:checked ~ div > label > span::after {
	    transform: rotate(45deg);
	    top:0;
	}

	header > input ~ div > label > div {
		display: none;
	    position: fixed;
	    top: 108px;
	    left: 0;
	    width: 100vw;
	    height: calc(100vh - 108px);
	    background-color: rgba(0, 0, 0, .5);
	    z-index: 100;
	}

	header > input:checked ~ div > label > div {
	    display: flex;
	}
	
	header > nav > ul {
		display: none;
		position: fixed;
		top: 108px;
		left: 0;
		max-height: calc(80vh - 86px);
		overflow: scroll;
		flex-direction: column;
		width: 100vw;
		background-color: #FFF;
	}

	header > nav > ul > li {
		width: 100%;
		height: fit-content;
	}

	header > nav > ul > li > label > p,
	header > nav > ul > li > a {
		height: 80px;
	}

	header > nav > ul > li > p {
		height: 100%;
	}
	
	header > nav > ul > li > div {
		display: flex;
		max-height: 0;
		border-radius: 0;
		box-shadow: none;
		width: 100%;
		transition: max-height .5s;
		overflow: hidden;
		border-top: 1px solid rgba(0, 0, 0, 0.1);
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	}

	header > nav > ul > li > div > ul {
		padding: 1rem;
		display: flex;
		flex-direction: column;
		gap: 1rem;
		width: 100%;
	}

	header > nav > ul > li > div > ul > li {
		display: flex;
		justify-content: center;
	}

	header > nav > ul > li > div > ul > li > a {
		border-radius: 10px;
		display: flex;
		gap: 1rem;
		padding: .5rem;
		width: 300px;
	}

	header > nav > ul > li > input:checked + label + div {
		max-height: 100vh;
	}

	#accueil > section:first-child > div:last-child {
		text-align: left;
	}

	#accueil > section:first-child > div:last-child > div {
		min-width: 0;
		max-width: 26.7rem;
	}

	#accueil > section:first-child > div:last-child > div > h2 {
		font-weight: 600;
		font-size: 1.25rem;
		line-height: 1.75rem;
	}

	#accueil > section:first-child {
		flex-direction: column;
		gap: 2rem;
	}

	#accueil > section:first-child > div:first-child {
		padding-top: 2rem;
		max-width: 28rem;
		padding-left: 1rem;
		padding-right: 1rem;
		text-align: left;
	}

	#accueil > section:first-child > div:first-child > h2 > span {
		font-size: 1.85rem;
		line-height: 2.5rem;
	}

	#accueil > section:first-child > div:first-child > h2 > span:last-child {
		font-size: 2rem;
		line-height: 2.5rem;
	}

	#accueil > section:first-child > div:first-child > p {
		font-size: 1rem;
		line-height: 1.5rem;
	}
}