.background{
    background-color: #000000;
}

.black-background{
    background-image: url(/public/images/black-bg.png.webp);
    background-color: #0a0a0a;
    background-position: center;
    color: #FFFEFD;
}
.grey-background{
    background-image: url(/public/images/black-bg.png.webp);
    background-color: #1F2122;
    background-position: center;
    color: #FFFEFD;
}
.white-background {
    background-image: url(/public/images/bg.png.webp);
    background-color: #FFFEFD;
    background-position: center;
    color: #1F2122;
}
.faded-background{
    background: linear-gradient(to bottom right, #232227, #000000);
    color: #FFFEFD;
}


h1{
    font-size: 5.6rem!important;
    font-weight: 700;
    letter-spacing: unset;
    /* font-family: poppins; */
    font-family: 'Syne', sans-serif;
    font-feature-settings: 'pnum' on, 'lnum' on;
    line-height: 85%;
}
h2{
    font-size: 4rem!important;
    font-weight: 700;
    letter-spacing: unset;
    font-family: 'Syne', sans-serif;
    font-feature-settings: 'pnum' on, 'lnum' on;
    line-height: 90%;
}
h3{
    font-size: 2.1rem!important;
    font-weight: 700;
    line-height: 125%;
    letter-spacing: unset;
    font-family: 'Syne', sans-serif;
    font-feature-settings: 'pnum' on, 'lnum' on;
}
h4{
    font-size: 1.8rem!important;
    font-weight: 100;
    line-height: 134%;
    letter-spacing: unset;
    font-family: 'Syne', sans-serif;
    font-feature-settings: 'pnum' on, 'lnum' on;
}
/*
p{
    color: #ffffff;
	font-size: 1.1rem!important;
}*/
p{
    font-size: 1.1rem!important;
    letter-spacing: -0.02em;
    /* color: #1F2122; */
    margin-top: 12px;
    line-height: 134%;
    font-weight: 100;
    /* font-family: 'Syne', sans-serif; */
    font-family: 'Poppins', sans-serif;
}
a{
    font-family: poppins!important;
    color: #000000;
}
li{
    font-family: poppins!important;
}

.navbar{
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
    padding-left: 5rem;
    padding-right: 5rem;
    font-size: 1.5rem;
    padding-top: 3rem;
    padding-bottom: 2rem;
    transition: all 0.3s ease-in-out;
    /* Annuler transition sur la box-shadow */
    transition-property: background, padding-top, padding-bottom, font-size;
}
.navbar-brand{
    font-family: poppins;
	font-weight: unset;
    padding: 0;
}
nav.scrolled {
    /* Modifier les propriétés CSS lorsque la classe "scrolled" est ajoutée */
    background: linear-gradient(to right, #433533, #1c1716);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    font-size: .875rem;
    /* Ajouter une transition pour la hauteur de la barre de navigation et la boîte d'ombre */
    transition: all 0.3s ease-in-out;
}
.navbar-brand.scrolled{
    font-size: 1.8rem;
    transition: all 0.3s ease-in-out;
}
.navbar-nav.scrolled{
	padding-top: unset;
	padding-bottom: unset;
}

.navbar-nav .nav-link {
    padding-top: 0.5rem;
    padding-bottom: unset;
}
.nav-link{
    --bs-navbar-nav-link-padding-x: 0.3rem;
    margin-left: 1rem;
    margin-right: 1rem;
    /* aligner l'image et le texte au centre */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}
.nav-link:hover{
    color: #c5c5c5;
    transition: all 0.3s ease-in-out;
}
.nav-icons{
    /* adapté à la taille du container enfant*/
    height: 1em;
    line-height: 1em;
    padding-right: 0.5rem;
}



.navbar-logo{
    width: auto;
    height: 50px;
    /* ombres sous l'image png */
    filter: drop-shadow(0 0 1rem rgba(0, 0, 0, 1));
}
.nav-item:hover{
    transition: all 0.3s ease-in-out;
}
.hover-underline-animation {
    position: relative;
}
.hover-underline-animation:after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
.nav-item:hover .hover-underline-animation:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}


/* android navbar */
.android-navbar{
    opacity: 0;
    pointer-events: none;
    position: fixed;
    bottom: 3%;
    /* placer au milieu */
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to top left, #232227, #000000);
    z-index: 999;
    border-radius: 28px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.8);
    padding: 0.6rem 0.5rem;
    transition: opacity 0.3s ease-out;
}
.visible{
    opacity: 1!important;
    pointer-events: auto;
}
.nav-container{
    flex-direction: row!important;
}
.a-container{
    text-decoration: none;
    display: block;
    padding-left: 5px;
    padding-right: 5px;
}
.circle-container{
    padding: 1rem;
    border-radius: 50%;
}
.a-container:hover .circle-container{
    background-color: #b3eaf1;
    transition: all 0.3s ease-in-out;
}
/* === active page === */
.active .circle-container{
    background-color: #b3eaf1;
    transition: all 0.3s ease-in-out;
}
.active .img-menu-1{
    display: none;
}
.active .img-menu-2{
    display: block;
    color: #000000;
}
.navbar-icons{
    font-size: 25px;
    font-weight: 100!important;
    color: #d0d0d0;
    /* adapté à la taille du container enfant*/
    height: 1em;
    line-height: 1em;
    transition: all 0.3s ease-in-out;
}
/* Accessibility speed page insight resolv */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}


/* === Img menu And Text hover === */
.img-menu-1{
	display: block;
}
.img-menu-2{
	display: none;
    color: #000000;
}
.a-container:hover .img-menu-1{
	display: none;
}
.a-container:hover .img-menu-2{
	display: block;
}




/* ========== buttons ========== */

.btn{
    border: none;
    /* border-radius: 12px;*/
    border-radius: 23px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.8);
	color: #000000;
    padding: 0.8rem 1.6rem;
}
.btn:hover{
	color: #000000;
	transition: 0.2s ease all;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.8);
	transform: scale(1.05);
}
.btn-light-blue{
    /* background: linear-gradient(to bottom right, #b3eaf1, #7da5aa); */
    background: linear-gradient(to bottom right, #b3eaf1, #7ab6be);
    --bs-btn-active-color: #ffffff;
    color: #ffffff;
}
.btn-light-blue:hover{
    background: linear-gradient(to bottom right, #cff9ff, #91d3db);
    color: #ffffff;
}
.btn-faded{
    /* dégradé en diagonale */
    background: linear-gradient(to bottom right, #38373d, #000000);
    color: #ffffff;
	--bs-btn-active-color: #ffffff;
    border: none;
}
.btn-faded:hover{
    background: linear-gradient(to bottom right, #232227, #000000);
    color: #ffffff;
}
.btn-delete{
    background: linear-gradient(to bottom right, #a10000, #000000)!important;
    color: #ffffff;
    --bs-btn-active-color: #ffffff;
    border: none;
}
.btn-delete:hover{
    background: linear-gradient(to bottom right, #750000, #000000)!important;
    color: #ffffff;
}
.on-white-bg{
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}
.on-white-bg:hover{
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2)
}



/* === Checkbox === */
.form-check-input:checked {
    background-color: #38373d;
    border-color: #000000;
}
.form-control:focus {
    border-color: #B3EAF1;
    box-shadow: 0 0 0 0.25rem rgba(179, 234, 241, 0.548);
}


/* ========= Footer ========= */
footer{
    padding: 60px 0 120px 0;
}
.footer-container{
    max-width: 1600px;
}
.footer-container-text{
    margin-top: 5rem;
    margin-bottom: 5rem;
}
.footer-link{
    font-size: 20px;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    display: block;
    font-weight: 100;
}
.footer-link:hover{
    color: rgba(255, 255, 255, 0.5);
}
.footer-hr{
    color: #ffffff;
    opacity: 1;
    margin-bottom: 2rem;
}
.footer-link-second{
    font-size: 15px;
    color: #D0D0D0;
    margin-right: 50px;
}
.footer-text{
    font-size: 15px!important;
    color: #D0D0D0;
    margin: 0;
}
.footer-logo{
    width: auto;
    height: 40px;
}



/* === Menu mobile list === */
.navbar-toggler{
	border: none;
	color: #f1f1f1;
	padding-right: unset;
}
.navbar-toggler:focus{
	outline: none;
	box-shadow: none;
}

/* === Burger Menu Icon mobile === */
.burger {
	margin: 5px;
	position: relative;
	width: 35px;
	height: 26.25px;
	background: transparent;
	cursor: pointer;
	justify-content: right;
}
.burger input {
	display: none;
}
.burger span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: white;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: .25s ease-in-out;
}
.burger span:nth-of-type(1) {
	width: 35px;
	top: 0px;
	transform-origin: left center;
}
  
.burger span:nth-of-type(2) {
	width: 25px;
	top: 50%;
	transform: translateY(-50%);
	transform-origin: left center;
} 
.burger span:nth-of-type(3) {
	width: 15px;
	top: 100%;
	transform-origin: left center;
	transform: translateY(-100%);
}
.burger input:checked ~ span:nth-of-type(1) {
	width: 35px;
	transform: rotate(45deg);
	top: 0px;
	left: 5px;
}
.burger input:checked ~ span:nth-of-type(2) {
	width: 0%;
	opacity: 0;
}
.burger input:checked ~ span:nth-of-type(3) {
	width: 35px;
	transform: rotate(-45deg);
	top: 24.72px;
	left: 5px;
}

/* === footer === */
.footer-title {
    font-size: 2rem!important;
    font-weight: 100;
    line-height: 134%;
    letter-spacing: unset;
    font-family: 'Syne', sans-serif;
    font-feature-settings: 'pnum' on, 'lnum' on;
}

/* === Alerts === */
.alert-container{
    justify-content: center;
}
.alert{
    border-radius: 25px;
    padding: 0.8rem 1.6rem;
}
.alert-success{
    background-color: #b3eaf1;
    border: 2px solid #7ab6be;
    color: #000000;
}
.alert-danger{
    background-color: #ec616d;
    border: 2px solid #a82835;
    color: #ffffff;
}
@media screen and (max-width: 1600px) {
    .footer-container{
        max-width: 1400px;
    }
}
@media screen and (max-width: 1400px) {
    .footer-container{
        max-width: 1200px;
    }
}
@media screen and (max-width: 1200px) {
    .footer-container{
        max-width: 1000px;
    }
}

@media screen and (min-width: 1024px) {
    body {
        cursor: none !important;
    }
    .custom-cursor {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        border: 2px solid #b3eaf1;
        position: fixed;
        transform: translate(-50%, -50%);
        pointer-events: none;
        transition: width 0.3s,height 0.3s, border-color 0.3s, opacity 0.3s;
        z-index: 9999;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 0;
        left: 0;
    }
    .select-cursor{
        width: 50px;
        height: 50px;
        border: 3px solid #b3eaf1;
        transition: width 0.3s,height 0.3s, border-color 0.3s, opacity 0.3s;
        cursor: none!important;
    }
    /* Ajout de cette ligne pour masquer le curseur de base */
    button:hover, a:hover {
        cursor: none!important;
    }
    .custom-cursor.large-cursor {
        display: none;
    }
}
@media screen and (max-width: 992px) {
    h1{
        font-size: 3.2rem!important;
    }
    h2{
        font-size: 3rem!important;
    }
    h3{
        font-size: 2.5rem!important;
    }
    .navbar{
        background-color: #0a0a0a;
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
		padding-left: 1rem;
		padding-right: 1rem;
	}
    .a-container{
        padding-left: 8px;
        padding-right: 8px;
    }
    .navbar-logo{
        width: auto;
        height: 40px;
    }
    .nav-item{
        margin-left: auto!important;
        margin-right: auto!important;
    }
    .nav-link{
        margin-bottom: 0.5rem;
    }
    /* android navbar */
    .android-navbar{
        padding: 0.6rem 0.5rem;
        margin-bottom: 1%;
    }
    .a-container{
        padding-left: 5px;
        padding-right: 5px;
    }
    .circle-container{
        padding: 0.8rem;
    }
    .navbar-icons{
        font-size: 27px;
    }
    .footer-container{
        max-width: 800px;
    }
}

@media screen and (max-width: 768px) {
	h1{
        font-size: 2rem!important;
    }
    h2{
        font-size: 1.6rem!important;
    }
    h3{
        font-size: 1.4rem!important;
    }
    h4{
        font-size: 1.2rem!important;
    }
    p{
        font-size: 1rem!important;
    }
    .nav-item{
        margin-left: 0!important;
        margin-right: 0!important;
    }
    .nav-link{
        justify-content: start!important;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        margin-top: 0rem!important;
        margin-bottom: 0rem!important;
    }
    .navbar-icons {
        font-size: 22px;
    }
    .btn{
        font-size: 0.8rem;
    }
    .icon_arrow {
        color: #ffffff;
        width: 15px;
        height: 15px;
        transition: all .3s;
    }
    .footer-container{
        max-width: 576px;
    }
    .footer-container-text{
        margin-top: 3rem;
        margin-bottom: 2rem;
    }
    .mobile-m0{
        margin-bottom: 0!important;
    }
    .footer-link{
        margin-bottom: 0.8rem;
    }
    #footer-bottom{
        display: block!important;
    }
    .footer-link-second{
        margin-right: 0;
    }
}


@media screen and (max-width: 480px) {
    .footer-container{
        max-width: 300px;
    }
    .footer-link{
        font-size: 1em;   
    }
    #footer-bottom{
        text-align: center;
    }
    .footer-link-second{
        font-size: 0.8em;
    }
    .footer-text{
        font-size: 0.8em!important;
    }
}


*::selection {
    background: #b3eaf1;
    color: #FFFEFD;
}




/* ========== Scroll Bar ========== */
/* Style de la barre de défilement principale */
::-webkit-scrollbar {
    width: 16px; /* Largeur de la barre de défilement */    
}

/* Style de la poignée (thumb) de la barre de défilement */
::-webkit-scrollbar-thumb {
    background-color: #c2c2c2; /* Couleur de la poignée */
    /* border-radius: 10px; */ /* Bordures arrondies de la poignée */
    width: 5px; /* Largeur de la poignée de défilement */
    box-shadow: inset 0 0 0 7px #0a0a0a; /* Utilisation de box-shadow pour masquer une partie de la poignée */
}
::-webkit-scrollbar-thumb:hover{
    background-color: #b3eaf1;
    transition: all 0.3s ease-in-out;
    box-shadow: inset 0 0 0 5px #0a0a0a;
}  
/* Style de la piste (track) de la barre de défilement */
::-webkit-scrollbar-track {
    background-color: #0a0a0a; /* Couleur de la piste */
}
/* Style de la poignée (thumb) de la barre de défilement au survol */
::-webkit-scrollbar-thumb:hover {
    background-color: #b3eaf1; /* Couleur de la poignée au survol */
}















  

  /* old */
  /* ========== Scroll Bar ========== 
::-webkit-scrollbar {
	width: 12px;
}
::-webkit-scrollbar-track {
	background: #202020;
}
::-webkit-scrollbar-thumb {
	background: #373737;
	border-radius: 10px;
}*/