@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@200;400&family=Playball&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;1,100;1,200&family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cambo&family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Montserrat:wght@100&family=Playball&display=swap');


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-title: #D958BD;
    --color-sub-title: #D958BD;
    --color-button: #D958BD;
    --color-a: #E75f92;
    --color-links: #004aad;
    --color-border-circle:#8D7393;
    --color-fond-button: #192740;
    --color-message:#80ff80;
    --color-error:#ffdb9b;
}
/*Customisation Desktop*/

/*Basic - General*/
#wrapper {
    max-width: 480px;
    margin: 0 auto;
}

html {
    scroll-behavior: smooth;
    font-size: 1em;
}

body {
    font-family: 'Crimson Text', sans-serif;
    color: #222;
    font-weight: 500;
    line-height: 1.5rem;
    width: 100%;
    overflow-x: hidden;
}

main {
    margin: 20px;
}

ul {
    list-style-type: none;
    align-items: center;
    justify-content: center;
}

a {
    text-decoration: none;
}

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


strong {
    font-weight: 900;
}


::-webkit-scrollbar {
    display: none;
}


/*Navigation custom - Mobile*/
.en-tete {
    background: rgba(0, 0, 0, 0.9);
}

header a {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #fff;
    font-family: 'poppins, sans serif'
}

header span {
    color: var(--color-title);
}

.Logo {
    padding:1%;
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-btn {
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 1.5em;
}

.open-btn {
    opacity: 0.3;
    position: absolute;
    top: 12px;
    right: 10px;
    color: #fff;
}

.close-btn {
    opacity: 0.3;
    position: absolute;
    top: 15px;
    right: 10px;
    color: #fff;
    z-index: 3;
}

.open-btn:hover,
.close-btn:hover {
    cursor: pointer;
    opacity: 1;
}

.rotate {
    transform: rotate(180deg);
    transition: transform 0.5s ease;
}
.nav{
    display: none;
}

.nav-mobile {
    position: absolute;
    width: 100%;
    background-color: transparent;
    backdrop-filter: blur(5px);
    top: 0;
    left: 0;
    height: 100vh;
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    z-index: 2;
}

.nav-mobile.visible {

    transform: translate(0);
}

.nav-white.visible {
    transition-delay: .2s;
}

.list {
    padding: 15px;

}

.list div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    color: #000;
}

.list i:hover {
    cursor: pointer;
}

.list li {

    transition: all 0.4s ease;
}

ul.list div>li:hover {
    cursor: pointer;
    background: var(--color-title);
    color: #fff;
}

.list li {
    margin: 8px 0;
}

.list li a {
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
}

.list li a:hover {
    cursor: pointer;
    color: #ccc;
}

.list li .sub-menu a {
    font-size: 1em;
    color: #000;
    white-space: nowrap;
    opacity: 0.6;
    transition: all 0.3 ease;
}

.list li a:hover {
    opacity: 1;
}

.list li .sub-menu {
    padding-left: 15px;

}

.sub-menu {
    display: none;

}

.sub-menu.visible {
    display: block;

}


/*Page Prestations custom*/
.container.content {
    margin: 50px 0;
}
.container:nth-child(4) .container-image:nth-child(1) img {
    border-color: 1px solid red;
}

.btn-top {
    height: 35px;
    width: 35px;
    background: #ffde59;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 2%;
    bottom: 2%;
    cursor: pointer;
    z-index: 1;

}

.price {
    padding: 15px 0 0 0;
}

.price span,
.localisation_prestation span {
    color: var(--color-button);
    padding-right: 10px;
    font-size: 18px;
    font-weight: bold;
}

.price,
.localisation_prestation {
    font-size: 15px;
    font-weight: 00;
}

.launch-button {
    padding: 10px 0;
}

.launch-button a {
    z-index: 1;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 15px;

}

#launch-formulaire .launch-button p {
    color: #fff;
}

#launch-formulaire .launch-button p:hover {
    color: var(--color-a);
}

.launch-button button {
    display: block;
    background-color: var(--color-button);
    padding: 0px 15px;
    box-shadow: 8px 10px 4px 0px #000;
    cursor: pointer;
    width: 260px;
    margin-bottom: 25px;
}

.launch-button .arrow {
    color: #ffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform: rotate(90deg);
    pointer-events: none;
}

.launch-button .arrow span {
    display: block;
    width: 4vw;
    height: 4vw;
    border-bottom: 2px solid #fff;
    border-right: 2px solid#fff;
    transform: rotate(225deg);
    margin: -2px;
    animation: animate 2s infinite;
}

.launch-button .arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.launch-button .arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: rotate(225deg) translate(-10px, -10px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(225deg) translate(3px, 3px);
    }
}

.links {
    color: #004aad;
    font-weight: 700;
    font-style: italic;
}

/*Navigation custom - column mobile*/
.column-btn {
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 25px;
}

.open-column {
    position: fixed;
    opacity: 0.5;
    top: 12%;
    right: 1%;
}

.nav-column {
    background-color: transparent;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 10.5%;
    right: 0;
    height: 100vh;
    width: 100vw;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.nav-column.visible {
    transform: translate(0);
}

.close-column {
    opacity: 0.9;
    position: absolute;
    top: 2%;
    right: 4%;
    color: #CCC;
}

.open-column:hover,
.close-column:hover {
    opacity: 1;
}

/*Page qui-suis-je?*/
.text-background button a {
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.text-background button:hover {
    background-color: inherit;
    transition: all 0.7s ease;
    border: 2px solid #FFDE59;
}

.text-background a:hover {
    color: var(--color-button);
}

/*Page Ecosystèmes custom - Mobile*/
main.container {
    padding-bottom: 20px;
    text-justify: justify;
}

.container.statut {
    margin-bottom: 10px;
}

.container h1 {
    text-decoration: underline;
    font-size: 20px;
    font-weight: 900;
    color: #E75F92;
    font-family: 'playball';
    margin-bottom: 10px;
}
.container.reveal-l h2{
    text-decoration: underline;
}
.container.statut h1,.container.statut h2,
.container.prestations h1,.container.prestations h2 {
    text-decoration: underline;
    font-weight: 900;
    font-size: 22px;
    color: #E75F92;
    font-family: 'playball';
    margin-bottom: 10px;
}

.container h3 {
    text-decoration: underline;
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    color: #E75F92;
    font-family: 'playball';
}

.links a {
    color: var(--color-links);
}

/*Page contact en Desktop*/
.contact {
    position: relative;
    min-height: 100vh;
    padding: 25px 0px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: url('../img/Photos/Background_main.png');
    background-size: cover;
    background-position: top center;
    z-index: 1;
}

.contact .content {
    max-width: 320px;
    text-align: center;
}

.contact .content h2 {
    font-size: 26px;
    font-family: 'playball';
    font-weight: 500;
    color: #fff;
    margin-bottom: 30px;
}

.container-contact {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;


}

.container-contact .contactInfo {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 50px;
    margin-left: 20px;



}

.container-contact .contactInfo .box {
    position: relative;
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-direction: row;
    width: 50%;

}

.container-contact .contactInfo .box .icon {
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color-button);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
}

.container-contact .contactInfo .box .text {
    display: flex;
    flex-direction: column;
    margin-left: 5px;
    font-size: 14px;
    color: #000;
    font-weight: 300;
}

.container-contact .contactInfo .box .text h3 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.contactForm {
    width: 80%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    box-shadow: 0px 0px 5px 5px #ffffff;
    padding: 20px 40px;
    border-radius: 5px;
}

.form-control {
    position: relative;
    margin: 20px 0 40px;
    width: 80%;
}

.contactForm h2 {
    font-family: 'playball';
    text-align: center;
    font-size: 25px;
    color: #fff;
    font-weight: 500;
}

.btn {
    cursor: pointer;
    display: inline-block;
    width: 100%;
    background: var(--color-button);
    color: #fff;
    padding: 15px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    border: 0;
    border-radius: 5px;
    border: 2px solid #D958BD;
    outline: none;
}

.btn:hover {
    background-color: var(--color-fond-button);
    transition: all 0.7s ease;
    border: 2px solid var(--color-fond-button);
    color: #FFDE59;
}

.btn:focus {
    outline: 0;
}

.btn:active {
    transform: scale(0.98);
}

.text {
    margin-top: 30px;
}

.form-control input,
.form-control textarea {
    background-color: transparent;
    border: 0;
    border-bottom: 2px solid #fff;
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 18px;
    color: #fff;
    resize: none;
}

.form-control input:focus,
.form-control input:valid,
.form-control textarea:focus,
.form-control textarea:valid {
    outline: 0;
    border-bottom-color: var(--color-button);
}

.form-control label {
    position: absolute;
    top: 15px;
    left: 0;
}

.form-control label span {
    display: inline-block;
    font-size: 12px;
    min-width: 5px;
    transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: #fff;
}

.form-control input:focus+label span,
.form-control input:valid+label span,
.form-control textarea:focus+label span,
.form-control textarea:valid+label span {
    color: var(--color-sub-title);
    transform: translateY(-30px);
}
.confirmation{
    background: var(--color-message);
    padding:5px 40px;
    min-width: 50px;
    position: absolute;
    right:-21px;
    top:-20px;
    overflow: hidden;
    border-radius: 4px;
    border-left: 8px solid #00ff40;
    opacity: 0;
    pointer-events: none;
}
.error{
    background: var(--color-error);
    padding:5px 40px;
    min-width: 50px;
    position: absolute;
    right:-21px;
    top:-21px;
    overflow: hidden;
    border-radius: 4px;
    border-left: 8px solid #ffa502;
    opacity: 0;
    pointer-events: none;
}
.confirmation.hide,
.error.hide{
    display: none;
}
.confirmation.showMsg,
.error.showMsg{
    opacity: 1;
    pointer-events: auto;
}
.confirmation.show,
.error.show{
    animation: show_slide 1s ease forwards;
}
@keyframes show_slide {
    0%{
        transform: translateX(100%);
    }
    40%{
        transform: translateX(-10%);
    }
    80%{
        transform: translateX(0%);
    }
    100%{
        transform: translateX(-21px);
    }
}
.confirmation.hide,
.error.hide{
    animation: hide_slide 1s ease forwards;
}
@keyframes hide_slide {
    0%{
        transform: translateX(-21px);
    }
    40%{
        transform: translateX(0%);
    }
    80%{
        transform: translateX(-10%);
    }
    100%{
        transform: translateX(100%);
    }
}
.confirmation .fa-check{
    position:absolute;
    left:10px;
    top:50%;
    transform: translateY(-50%);
    color:#00ff40;
    font-size: 25px;
}
.error .fa-triangle-exclamation{
    position:absolute;
    left:10px;
    top:50%;
    transform: translateY(-50%);
    color:#ce8500;
    font-size: 25px; 
}
.confirmation .msg-confirm{
    padding:5px 10px;
    font-size:18px;
    color:#fff;
}
.error .msg-error{
    padding:5px 10px;
    font-size:18px;
    color:#ce8500;
}
.confirmation .close-confirm{
    position:absolute;
    right:0;
    top:51%;
    transform: translateY(-51%);
    background:#fff;
    padding:5px 10px;
  
}
.confirmation i:hover{
    cursor: pointer;
}
.error .close-confirm{
    position:absolute;
    right:0;
    top:51%;
    transform: translateY(-51%);
    background:#ffd080;
    padding:5px 10px;
    cursor: pointer;
}

.confirmation.close-confirm:hover{
    background:#08bc35;
}
.error.close-confirm:hover{
    background:#ffc766;
}
.confirmation.close-confirm .fa-times{
    color:#00ff40;
    font-size: 18px;
    line-height: 36px;
}
.error.close-confirm .fa-times{
    color:#ce8500;
    font-size: 18px;
    line-height: 36px;
}


/*Fin page contact*/


/*Footer custom - Mobile*/
footer {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #192740;
    z-index: 0;
}


footer h2 {
    color: #fff;
    font-size: 32px;
}

footer h3 {
    color: #fff;
    font-size: 24px;
    padding-bottom: 10px;
}

footer .column:first-child p {
    font-family: 'playball';
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
}

footer .column {
    margin: 25px 0 25px 20px;
}

footer .column a,
footer .column p {
    color: #fff;
}

footer .column a:hover {
    color: var(--color-a);
}

footer .column span {
    color: var(--color-title)
}

footer .column img {
    margin-left: 5%;
    width: 90%;
}

footer .contact-details {
    color: #fff;
    display: flex;
}

footer .contact-details li {
    width: 180px;
}

footer .contact-details i {

    margin-right: 3%;
}

footer .social-media ul {
    display: flex;
    justify-content: flex-start;
    gap: 5px;
    padding-bottom: 2%;
}

footer .social-media ul li a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    text-align: center;
    background-color: #ffff;
    border-radius: 50px;
    transition: 0.6s;
}

footer .social-media a {
    color: black;
}

footer .social-media ul li a:hover {
    transform: translate(0, -5px);
}

footer .social-media ul li:nth-child(1) a:hover {
    background-color: #3b5998;
    color: #fff
}

footer .social-media ul li:nth-child(2) a:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

footer .social-media ul li .fa:hover a {
    font-size: 30px;
    line-height: 35px;
    transition: 0.6s;
    color: #fff;
}

footer .social-media a,
footer .columun a {
    cursor: pointer;
}

footer .mentions {
    background-color: #000;
    color: #fff;
}

footer .mentions ul {
    display: flex;
    flex-direction: column;
    gap: 1%;
}

footer .mentions ul li {
    text-decoration: underline;
}

footer .mentions ul li a {
    font-size: 12px;
    color: #fff;
}

footer .copyright {
    z-index: 1;
    max-width: 480px;
    background-color: #000;
    color: #fff;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
}

footer .copyright p {
    text-align: center;
    font-size: 16px;
}

.hero {
    background-image: url('../img/Photos/Background_main.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: -2;
}

.container-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 90vh;
    text-align: center;
}

.container-hero h1 {
    color: var(--color-title)
}

.container-hero h2 {
    font-family: 'playball';
    color: #fff;
    margin: 5px 0 15px 0;
}

.container-text .reveal-l,
.container .reveal-l {
    color: var(--color-title);
}

.container-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.container-item .item {
    margin: 20px 0;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    filter:brightness(100%);
}

.container-item .item p {
    text-align: center;
}

.container-item .item img {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    border-color: 10px solid #FFDE59;
    text-align: center;
    transition: 0.6s;
    
}

.container-item .item:hover img {
    cursor: pointer;
    transform: translate(0, -10px);
    transition: transform 0.2s linear;
    background-color: rgba(0, 0, 0, 0.2);
    border-color: 1px solid #FFDE59;
    opacity: 1;
}

.container-item .item:hover p {
    color: #FFDE59;
}

.item button:hover {
    background-color: inherit;
    box-shadow: none;
    transition: all 0.7s ease;
    border: 2px solid #FFDE59;
    color: #D958BD;
}

.item button:hover a {
    color: #D958BD;
}

.gallery {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery img {
    width: 100%;
    height: auto;
}

.content p {
    color: #555;
    line-height: 30px;
    letter-spacing: 1.2px;
    text-align: justify;
    width: 100%;
}

.container-text,
.container-item {
    margin: 10px;
}

.container-text h2,
.container-text h3,
.container h2 {
    padding-bottom: 10px;
}
.container-text h2 {
    text-decoration: underline;
}

.container-image img,
.gallery img {
    padding-top: 10px;
    border-radius: 15px;
    max-width: 100%;
    height: auto;
}
.cercle-dashed{
    display: none;
}

.container-item button {
    display: block;
    background-color: var(--color-button);
    max-width: 273px;
    margin-top: 10px;
    padding: 5px 15px;
    border-radius: 12px;
    border: 2px solid var(--color-button);
    outline: none;
    cursor: pointer;
}

.container-item a {
    color: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.container-item p {
    font-weight: bold;
    width: 150px;
}

.container-item button:hover,
.launch-button button:hover {
    background-color: var(--color-fond-button);
    box-shadow: none;
    transition: all .7s ease;
    border: 2px solid #ffDE59;
    color: var(--color-button);
}

.container-item button:hover a,
.launch-button button:hover p {
    color: #D958BD;
}

.prestations-heading,
.gallery-heading {

    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.5rem;
}
/********************************************************************************/
@media screen and (min-width: 1024px) and (max-width:2000px) {
    
    #wrapper {
        max-width: 2000px;
    }
    body {
        font-size: 20px;
        font-weight: 500;
        line-height: 1.5rem;
    }
    main{
        margin:150px 10% 0;
    }
    html {
        font-size:2em;
    }
    .hero {
        background-image: url('../img/Photos/Background_main.png');
        background-repeat: no-repeat;
        background-size:cover;
        background-position: center center;
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: -2;
    }
    .container-hero p {
        line-height: 30px;
    }
    .en-tete,
    .nav-mobile{
        display: none;
    }
    .nav{
        display: block;
        width: 100%;
        height: 10vh;
        background-color: transparent;
        background: rgba(0, 0, 0, 0.8);
        position:fixed;
        top:0;
        left:0;
        right:0;
        transition:all .3s ease-in-out; 
        z-index:2;
    }
    .nav ul{
        width:80vw;
        margin:0 0 0 -9%;
        height: 10vh;
        display: flex;
        align-items: center;  

       
    }
    .nav a{
        color:#fff;
        padding:7px 15px;
        transition: all .3s ease;
        text-transform: uppercase;
    }
    .container-nav{
        max-width: 100vw;  
    }
    .nav.active{
        background-color:var(--color-fond-button);
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    .nav.active a{
        color:#fff;
    }
   
    .nav a.current,
    .nav a:hover{
        color:var(--color-title);
        
    }
    /*Barre de navigation*/
    .Logo {
        gap: 0px;
        width: 20%;
    }
    .container-nav{
        display: flex;
    }
    
    .container-nav ul li{
        display: inline-block;
        position:relative;
    }
    .container-nav ul li a{
        display: block;
        text-align: center;
    }
    .container-nav .dropdown a{
        color:#000;
    }
    .container-nav ul.dropdown li a:hover {
        background: var(--color-fond-button);
        color:var(--color-a) ;
    }
    .container-nav ul li ul.dropdown li{
        display: block;
    }
    .container-nav ul li ul.dropdown{
        width: 100%;
        height: auto;
        position:absolute;
        left:30px;
        z-index:999;
        display: none;
        background-color:#fff;
        
    }
    
    .container-nav .dropdown li a{
        text-align: left;
        font-size: 14px;
    }
    .container-nav ul li:hover ul.dropdown{
        display: block;

    }
    /* Fin Barre de navigation*/
    .container-hero {
        height: 70vh;
    }
    .container-hero h1 {
        font-size:64px;
        padding-bottom:20px;
    }
    .container-hero h2 {
        font-size:32px;
    }
    /*Custom des containers*/
    .content p{
        letter-spacing: 0;
    }
    .container.content{
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        position: relative;
    }
    .container.content.politique,
    .container.content.mentions{
        display: block;
    }
    .container .container-text,
    .container .container-image{
        width: 50%;
    }
    .container .container-image{
        position: relative;  
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .container .container-image img{
        padding:0;
        max-width: 80%;
        width: 100%;
        height: auto;
        border-radius: 50%;
    }
   
    .overlay {
        position: absolute;
        top: 0;
        left: 10%;
        max-width: 80%;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 8px solid var(--color-border-circle); /* Couleur et épaisseur des pointillés */
        pointer-events: none; /* Assurez-vous que l'overlay n'interfère pas avec les événements de l'image */
    }
    .dotted {
        position: absolute;
        top: 5%;
        left: 15%;
        max-width: 70%;
        width: 100%;
        height: 90%;
        border-radius: 50%;
        border: 8px dotted var(--color-border-circle); /* Couleur et épaisseur des pointillés */
        pointer-events: none; /* Assurez-vous que l'overlay n'interfère pas avec les événements de l'image */
    }
    .container-item {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .container-item .item {
        width: 18%;
        display: flex;
    }
    .container-item .item p {
       height:60px;
    }
    .container-item .item img {
        height: 80px;
        width: 80px;
    }
    .container .prestations-heading{
        position: absolute;
        width: 100%;
        margin:0 auto;
        text-decoration: underline;
        top:37px;  
    }
    .container .gallery-heading{
        position: absolute;
        width: 100%;
        margin:0 auto;
        text-decoration: underline;
        top:37px;  
    }
   
   
    
    /*Fin custom containers*/
   /*Galerry Home*/
    .gallery{
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap:wrap;
        margin-top:100px;
       
    }
    .container-item{
        margin-top:100px;
    }
    .gallery{
        margin-top:px;
    }
    .gallery .item-gallery{
        width: 320px;
        height: 250px;
        padding:5px 5px;
        flex-shrink: 0;
    }
    .gallery .item img{
        width:100%;
        height: auto;
    }
    /*Fin gallery home*/
    /*Page prestations*/
    .launch-button .arrow span {
        width: 1.5vw;
        height: 1.5vw;
    }
    #Fleurs_de_Bach .container-image img:first-child{
        position:absolute;
        top:88%;
        right:67%;
        width: 200px; 
        height: 200px;
    }
    /*Qui suis-je?*/
    #Qui_suis_je{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    #Qui_suis_je .container-image img{
        width: 40%;
        height: auto;
        
    }
    .container-text.text-background{
        position:absolute;
        border-radius:15px;
        min-height: 457px;
        left:30%;
        padding:0 45px;
        flex-direction: row-reverse;
        background: linear-gradient(180deg, #D95FD9 0%, rgba(140, 48, 140, 0.42) 100%);
        margin-top:-24px;

    
    }  
    .container-text.text-background h2{ 
        text-decoration: none;
        color:#fff;
    }
    .container-text.text-background p { 
        margin:15px 0 15px 0; 
        font-size: 1em;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        color: #fff;
    }
    .container-text.text-background button{
        position:absolute;
        margin-top:-18px;
        background-color:#D958BD;
        font-size: 20px;
        max-width: 237px;
        max-height: 112px;
        cursor: pointer;
        padding: 0px 16px;
        border-radius:25px;
        border: 2px solid #D958BD;
        outline: none;
        box-shadow: 0; 
    }
    .container-text.text-background button a{
        color:#fff;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: normal; 
    }
    .container-text.text-background button:hover{
        background-color:var(--color-fond-button);
        transition:all 0.7s ease;
        border: 2px solid #FFDE59;
    }
    .container-text .text-background a:hover{
        color:#D958BD;
    }
    /*Fin Qui suis-je?*/
    /*Contact*/
    .contact {
        position: relative;
        background:url('../img/Photos/Background_main.png')no-repeat center center fixed;
        background-size:cover;
        left:-12.5%;
        bottom:-10%;
        margin-top:-31px;
        width: 100vw;
        height: 100vh;
        z-index: 1;
    }
 
    .contact .content h2 {
        font-size: 58px;
        display: inline-block;
        margin-bottom:10vh;
        text-align: center;
    }
    
    .container-contact {
        width: 80%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .container-contact .contactInfo {
        display: flex;
        flex-direction: column;
        margin-bottom: 50px;
        margin-left: 20px;
    
    }
    .container-contact .contactInfo .box {
        position: relative;
        display: flex;
        align-items: baseline;
        justify-content: flex-start;
        flex-direction: row;
        width: 100%;
        gap:10px;
    }
   
    .container-contact .contactInfo .box .icon {
        min-width: 60px;
        height: 60px;
        font-size: 30px;
    }
    .container-contact .contactInfo .box .text{
        align-self: baseline;
    }
    .container-contact .contactInfo .box .text h3 {
        font-size: 2em;
    }
    .container-contact .contactInfo .box .text p {
        font-size: 1.7em;
        line-height: 1.5em;
    }

    .contactForm {
        width: 50%;
    }


    .form-control {
        position: relative;
        margin: 20px 0 40px;
        width: 80%;
    }
    .contactForm h2 {
        font-size: 2em;
    }
    .form-control label {
        top: -5px;
    }
    .form-control label span {
        font-size: 1em;
    }
    /*Fin Contact*/ 
    /*Footer*/
    footer{
        display: flex;
        background: #192740;
        min-height:40vh;

    }
    .container.footer{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .column {
        flex: 1;
        margin-right: 20px; /* Espace entre les colonnes */
        max-width: 25%; /* Largeur maximale des colonnes */
    }

    footer h2{
        font-size: 64px;
    }
    footer .column:nth-child(2),
    footer .column:nth-child(3)
    {
        display: flex;
        flex-direction: column;
       
    }
    footer .column h3 {
        font-size: 26px;
    }
    footer .column:first-child {
        max-width: 50%;
    }
    
    footer .column:first-child p {
    font-size: 32px;
    margin-bottom: 20px;
    }
    footer .column img {
        margin-left: 5%;
        width: 60%;
    
    }
    footer .contact-details{
        display: flex;
        flex-direction:row;
        align-items: flex-start;
      
    }
    footer .contact-details li{
        width: 225px;
        line-height: 30px;
        
    }
    footer .social-media li{
        padding: 0 5px 20px 0;
    }
    footer .social-media ul li a{
        width: 35px;
        height: 35px;
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-self: center;
    }
    footer .mentions ul{
       flex-direction: row;
       justify-content: flex-start;
       margin-left:10px;
    }
    footer .mentions ul li a{
        font-size:1em;
        margin:0 10px;
     }
    .container.footer.mentions,
    .container.footer.copyright{
        display: block;
    }
    footer .copyright {
        max-width: 100vw;
    }
    footer .copyright p{
        font-size:1.5em;
    }  
    
}
