/* animation.css */
.fade-in {
    opacity: 0;
    animation: fadeIn 5s forwards;
}

.fade-in-long {
    opacity: 0;
    animation: fadeIn 10s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.slide-in-right {
    opacity: 0;
    transform: translateX(100%);
    animation: slideInRight 2s forwards;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
  
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(100%);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
.slide-in-top {
    opacity: 0;
    transform: translateY(100%);
    animation: slideInTop 2s forwards;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@keyframes slideInTop {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0%);
    }
}

.text-container {
    display: flex;
    justify-content: left;
    align-items: center;
}

.typing {
    overflow: hidden;
    white-space: nowrap;
    animation: typing 3s steps(20) forwards;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* cookie.css */
.cookie-message {
    position: fixed;
    bottom: 2%;
    left: 70%;
    right: 1%;
    padding: 50px;
    box-shadow: 0 0 9000px #000;
    border-radius: 20px;
    background: linear-gradient(80deg, #383838, #383838 5%, rgba(238, 238, 238, 1) 10%, rgba(238, 238, 238, 1) 90%, #383838 95%, #383838 100%);
    z-index: 99999999;
}

.cookie-message p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
    text-align: justify;
}

.cookie-message button {
    background-color: #000000;
    color: #fff;
    border: none;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
}

.cookie-message button:hover {
    background-color: #383838;
}

/* detail.css */
.min-h-screen {
    min-height: 100vh
}

.max-w-screen-md {
    max-width: 768px
}

.mx-auto {
    margin-left: auto;
    margin-right: auto
}

.bg-white {
    --bg-opacity: 1;
    background-color: #fff;
    background-color: rgba(255, 255, 255, var(--bg-opacity))
}

.h-48 {
    height: 12rem
}

.rounded-lg {
    border-radius: .5rem
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06)
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap
}

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

.flex-col {
    flex-direction: column
}

.p-4 {
    padding: 1rem
}

.w-8 {
    width: 2rem
}

.w-full {
    width: 100%
}

.max-w-screen-md {
    max-width: 90%;
}

.radius30 {
    border-radius: 30px;
}

/* footer.css */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");



.footer {
    margin-top: 100px;
    position: relative;
    width: 100%;
    background: #383838;
    min-height: 100px;
    padding: 20px 50px;
    display: flex;
    justify-content: left;
    align-items: left;
    flex-direction: column;
}

.link-footer {
    color: #fff;
    opacity: 0.75;
}

.link-footer:hover {
    color: #fff;
}

.social-icon,
.footer-menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}

.social-icon__item,
.menu__item {
    list-style: none;
}

.social-icon__link {
    font-size: 2rem;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
}

.social-icon__link:hover {
    transform: translateY(-10px);
}

.menu__link {
    font-size: 1.2rem;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
    text-decoration: none;
    opacity: 0.75;
    font-weight: 300;
}

.menu__link:hover {
    opacity: 1;
}

.footer p {
    color: #fff;
    margin: 15px 0 10px 0;
    font-size: 1rem;
    font-weight: 300;
}

.wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("/img/vague.png");
    background-size: 1000px 100px;
}

.wave#wave1 {
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animateWaves 4s linear infinite;
}

.wave#wave2 {
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation: animate 4s linear infinite !important;
}

.wave#wave3 {
    z-index: 1000;
    opacity: 0.2;
    bottom: 15px;
    animation: animateWaves 3s linear infinite;
}

.wave#wave4 {
    z-index: 999;
    opacity: 0.7;
    bottom: 20px;
    animation: animate 3s linear infinite;
}

@keyframes animateWaves {
    0% {
        background-position-x: 1000px;
    }

    100% {
        background-positon-x: 0px;
    }
}

@keyframes animate {
    0% {
        background-position-x: -1000px;
    }

    100% {
        background-positon-x: 0px;
    }
}

.color-h5 {
    color: #fff !important;
}

.location_widget>li {
    display: inline-block;
}

p,
ul li,
ol li {
    font-weight: 300;
}

ol li,
ul li {
    list-style: outside none none;
}

.location_widget a {
    border: 0.1px solid #fff;
    border-radius: 6px;
    color: #fff;
    display: inline-block;
    font-size: 13px;
    margin-bottom: 4px;
    padding: 7px 12px;
}

.blk-button__link {
    cursor: pointer;
    color: var(--fg-actions);
    background-color: var(--bg-actions);
    font-size: 1em;
    text-decoration: none;
    margin: 0 0.3275em 0.375em 0;
    padding: 0.625em;
    border: 1px solid var(--border-actions);
    border-radius: 1.5em;
    outline: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: perspective(0) translateZ(0);
    box-sizing: border-box;
    max-width: 100%;
    transition: box-shadow .3s ease, transform .1s ease;
}

/* menu.css */
/* Scroll menu */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

.scroll-link {
    cursor: pointer;
}

.scroll-link:active {
    transform: scale(0.9);
}

/* Dropdown Button */
.dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: #383838;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    z-index: 1;
    background-color: #fff !important;
    padding-top: 12px;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: #383838 !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

.text-left-17 {
    padding-left: 17px !important;
}

.m-t-40 {
    margin-top: -40px !important;
}

.m-t-15 {
    margin-top: -15px !important;
}

.text-bottom-17 {
    padding-bottom: 17px !important;
}




/* Menu */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");

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

body {
    background: #272727;
    font-family: "Montserrat", sans-serif;
}

.navMenu {
    display: block;
    position: absolute;
    top: 60%;
    /* 77% */
    left: 50%;
    /* 50% */
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 99999999999;
}

.navMenu a,
button {
    color: #333333;
    text-decoration: none;
    font-size: 1em;
    text-transform: uppercase;
    font-weight: 500;
    /*display: content;
    width: 80px;*/
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.navMenu a:hover {
    color: #383838;
}

.navMenu .dot {
    width: 6px;
    height: 6px;
    background: #383838;
    z-index: 9999999999999999999999 !important;
    border-radius: 0%;
    /*50%*/
    margin-top: -10px;
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.navMenu a:nth-child(1):hover~.dot {
    -webkit-transform: translateX(30px);
    /* dot de départ de la gauche */
    transform: translateX(30px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 1;
}

.navMenu a:nth-child(2):hover~.dot {
    -webkit-transform: translateX(120px);
    /* deplacement dot vers la droite */
    transform: translateX(120px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 1;
}

.navMenu a:nth-child(3):hover~.dot {
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 1;
}

.navMenu a:nth-child(4):hover~.dot {
    -webkit-transform: translateX(285px);
    transform: translateX(285px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 1;
}

/* navbar.css */
.eltdf-top-bar {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    height: 32px;
    font-size: 13px;
    line-height: 1;
    color: #fff;
    background-color: #383838;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 115
}

.eltdf-page-header {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    z-index: 110;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.eltdf-page-header a img {
    display: block
}

.eltdf-vertical-align-containers {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.eltdf-vertical-align-containers .eltdf-position-left {
    position: relative;
    height: 100%;
    float: left;
    z-index: 2;
}

.eltdf-top-bar .widget {
    margin: 0 0 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
}

.eltdf-vertical-align-containers .eltdf-position-center-inner,
.eltdf-vertical-align-containers .eltdf-position-left-inner,
.eltdf-vertical-align-containers .eltdf-position-right-inner {
    display: inline-block;
    vertical-align: middle;
}

.eltdf-top-bar .eltdf-position-right-inner a {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.eltdf-page-header .eltdf-vertical-align-containers {
    padding: 0 30px;
}

.eltdf-page-header .eltdf-menu-area {
    position: relative;
    height: 70px;
    background-color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.eltdf-top-bar .eltdf-vertical-align-containers .eltdf-position-left-inner,
.eltdf-top-bar .eltdf-vertical-align-containers .eltdf-position-right-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.eltdf-top-bar .eltdf-position-right-inner a:hover {
    color: #fff;
    opacity: .8;
}

.eltdf-top-bar a {
    color: #fff;
}

.eltdf-social-icon-widget-holder:hover {
    -webkit-animation: eltdf-social-icon-animation .5s cubic-bezier(.61, 1.26, .48, 1.29);
    animation: eltdf-social-icon-animation .5s cubic-bezier(.61, 1.26, .48, 1.29);
}

@-webkit-keyframes eltdf-social-icon-animation {

    0%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(-1px);
        transform: translateY(-1px)
    }
}

@keyframes eltdf-social-icon-animation {

    0%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(-1px);
        transform: translateY(-1px)
    }
}

@-webkit-keyframes eltdf-icon-animation {

    0%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px)
    }
}

@keyframes eltdf-icon-animation {

    0%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px)
    }
}

.eltdf-main-menu>ul>li:hover>a {
    color: #383838
}

.eltdf-top-bar>.eltdf-vertical-align-containers {
    padding: 0 30px
}

a img {
    border: none
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: #848484;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden !important
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 24px;
    line-height: 1.25em;
    color: #383838;
    font-family: Roboto, sans-serif;
    margin: 25px 0;
    font-weight: 500;
    -ms-word-wrap: break-word;
    word-wrap: break-word
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-transform: inherit
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
    color: #383838
}

a,
p a {
    color: #383838;
    text-decoration: none;
    -webkit-transition: color .2s ease-out;
    -o-transition: color .2s ease-out;
    transition: color .2s ease-out
}

a:hover,
p a:hover {
    color: #fff;
}

.eltdf-vertical-align-containers {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.eltdf-vertical-align-containers .eltdf-position-left {
    position: relative;
    height: 100%;
    float: left;
    z-index: 2
}

.eltdf-vertical-align-containers .eltdf-position-center {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 1
}

.eltdf-vertical-align-containers .eltdf-position-right {
    position: relative;
    height: 100%;
    float: right;
    text-align: right;
    z-index: 2
}

.eltdf-vertical-align-containers .eltdf-position-center-inner,
.eltdf-vertical-align-containers .eltdf-position-left-inner,
.eltdf-vertical-align-containers .eltdf-position-right-inner {
    display: inline-block;
    vertical-align: middle
}

.eltdf-page-header .eltdf-grid .eltdf-vertical-align-containers {
    padding: 0;
    -webkit-transition: background-color .3s ease;
    -o-transition: background-color .3s ease;
    transition: background-color .3s ease
}

.eltdf-page-header .eltdf-logo-area {
    position: relative;
    height: 70px;
    overflow: hidden;
    background-color: #fff
}

.eltdf-page-header .eltdf-logo-area .eltdf-logo-wrapper a {
    max-height: 70px
}

.eltdf-page-header .eltdf-menu-area {
    position: relative;
    height: 70px;
    background-color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.eltdf-page-header .eltdf-menu-area .eltdf-logo-wrapper a {
    max-height: 70px
}

.eltdf-logo-wrapper {
    display: inline-block;
    vertical-align: middle;
    line-height: 1
}

.eltdf-logo-wrapper a {
    position: relative;
    display: inline-block;
    vertical-align: top;
    max-width: 100%
}

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

.eltdf-logo-wrapper a img {
    height: 100%;
    width: auto;
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease
}

.eltdf-logo-wrapper a img.eltdf-normal-logo {
    opacity: 1
}

.eltdf-logo-wrapper a img.eltdf-dark-logo {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%)
}

.eltdf-logo-wrapper a img.eltdf-light-logo {
    opacity: 0;
    -webkit-transform: translateY(-200%);
    -ms-transform: translateY(-200%);
    transform: translateY(-200%)
}

/* popup.css */
/* boutton ouvrir pop up */

#bu-bu,
.bu-bu {
    float: left;
    width: 200px;
    max-width: 300px;
    margin-top: 12px;
    border: 2px solid #f7f7f7;
    background-color: #383838;
    padding: 10px;
    cursor: pointer;
    color: #f7f7f7;
    font-family: tahoma;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 3px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

#bu-bu:hover,
.bu-bu:hover {
    background-color: #292929;
    color: #fff;
}

/* projet.css */
:root {
    --surface-color: #fff;
    --curve: 40;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #fef8f8;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 5vw;
    padding: 0;
    list-style-type: none;
}

.card {
    position: relative;
    display: block;
    height: 100%;
    border-radius: calc(var(--curve) * 1px);
    overflow: hidden;
    text-decoration: none;
}

.card__image {
    width: 100%;
    height: auto;
}

.card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    border-radius: calc(var(--curve) * 1px);
    background-color: var(--surface-color);
    transform: translateY(100%);
    transition: .2s ease-in-out;
}

.card:hover .card__overlay {
    transform: translateY(0);
}

.card__header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2em;
    padding: 2em;
    border-radius: calc(var(--curve) * 1px) 0 0 0;
    background-color: var(--surface-color);
    transform: translateY(-100%);
    transition: .2s ease-in-out;
}

.card__arc {
    width: 80px;
    height: 80px;
    position: absolute;
    bottom: 100%;
    right: 0;
    z-index: 1;
}

.card__arc path {
    fill: var(--surface-color);
}

.card:hover .card__header {
    transform: translateY(0);
}

.card__thumb {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.card__title {
    font-size: 1em;
    margin: 0 0 .3em;
    color: #383838;
}

.card__tagline {
    display: block;
    margin: 1em 0;
    font-family: "MockFlowFont";
    font-size: .8em;
    color: #706a6d;
}

.card__status {
    font-size: .8em;
    color: #706a6d;
}

.card__description {
    padding: 0 2em 2em;
    margin: 0;
    color: #706a6d;
    font-family: "MockFlowFont";
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/* slider.css */
.custom-slider {
    display: none;
}

.slide-container {
    max-width: 100%;
    position: relative;
    margin: auto;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 30px;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 3s ease;
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

.slide-text {
    position: absolute;
    color: #383838;
    font-size: 15px;
    padding: 3px;
    margin-left: -15px;
    width: 100%;
    text-align: center;
}

.slide-index {
    color: #ffffff;
    font-size: 13px;
    padding: 15px;
    position: absolute;
    top: 0;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

.dot-slider {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: #999999;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 3s ease;
}

.active,
.dot-slider:hover {
    background-color: #111111;
}

.fade {
    animation: slide 5s infinite;
}

@keyframes fade {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

/* style.css */
/* Les espaces top */
.espace-10 {
    margin-top: 10px;
}

.espace-20 {
    margin-top: 20px;
}

.espace-30 {
    margin-top: 30px;
}

.espace-50 {
    margin-top: 50px;
}

.espace-60 {
    margin-top: 60px;
}

.espace-70 {
    margin-top: 70px;
}

.espace-80 {
    margin-top: 80px;
}

.espace-100 {
    margin-top: 100px;
}

.espace-150 {
    margin-top: 150px;
}

.espace-200 {
    margin-top: 200px;
}

.espace-300 {
    margin-top: 300px;
}

.flex-end {
    justify-content: flex-end !important;
    margin-left: -1.25rem;
    margin-top: 2rem;
}

.espace-g-30 {
    margin-left: 30px;
}

.col-left {
    float: left !important;
    margin-top: 10px;
}

.espace-b-60 {
    margin-bottom: 60px;
}

.col-right {
    float: right !important;
}

.m-right {
    float: right !important;
    margin-right: -100px !important;
}

.col-center {
    float: center !important;
}

/* Coller le bouton a droite */
.colle-right-10 {
    position: relative;
    display: inline-block;
}

/* Les couleurs */
.color-fff {
    color: #fff !important;
}

.color-fff:hover {
    color: #fff !important;
}

.trait-fff::after {
    background: #fff !important;
}

.color-000 {
    color: #000 !important;
}

.color-383838 {
    color: #383838 !important;
}
.color-383838:hover {
    color: #383838 !important;
}



/* Image + Texte cote à cote */
@media (min-width: 1200px) {
    .flotte {
        float: left;
    }

    .her50 {
        width: 50%;
        padding-left: 40px;
    }
}

.text-icon {
    padding-left: 45px;
    padding-top: 5px;
    font-weight: bold;
}

@media (max-width: 1200px) {
    .text-icon {
        margin-top: -48px;
    }
}

/* Card espace */
.min-h-screen {
    min-height: 260px !important;
}

/* Centre item */
.centre {
    display: flex;
    align-items: center;
    justify-content: center;
}

.decal-img {
    margin-left: -200px;
}

@media (min-width: 1000px) {
    .check-sup {
        display: none;
    }
}

.decal-left {
    margin-left: 20px !important;
}

/* separator */
.separator {
    border-top: 1px solid #fff;
    width: 100%;
}

.marge-left {
    padding-left: 20px;
}
.marge-right {
    padding-right: 20px;
}

.marge-bottom {
    padding-bottom: 20px;
}

p {
    color: #000;
}

label {
    color: #000;
}

.justify {
    text-align: justify !important;
}

/* menu-pages.css */
/* Option en plus / Menu déroulant sur le header pour ajouter des pages sur le site */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    color: #fff;
    height: 60px;
    padding: 0 20px;
}

.navbar-left {
    flex: 1;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: #FFF;
    color: #000;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #FFF;
    width: 330%;
    z-index: 1;
}

.dropdown-content a {
    color: #000;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.navbar-center {
    flex: 3;
    text-align: center;
}

.navbar-center h1 {
    margin: 0;
}

.navbar-right {
    flex: 1;
    text-align: right;
}

.navbar-right img {
    margin: 0 10px;
}

.icon-menu-size {
    font-size: 33px !important;
}

/* inscription.css */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

h1 {
    color: #383838;
}

form {
    padding-top: 10px;
    padding-bottom: 2px;
    background-color: #fff;
}

label {
    display: inline;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"] {
    padding: 5px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

input[type="submit"] {
    padding: 5px 10px;
    background-color: #383838;
    color: #fff;
    border: none;
}

/* envoi_newsletter.css */
.confirmation {
    background-color: #f2f2f2;
    text-align: center;
    margin-top: 20%;
    padding: 20px;
}

.confirmation h2 {
    font-size: 24px;
    color: #333;
    margin-top: 0;
}

.confirmation p {
    font-size: 18px;
    color: #666;
}

.confirmation a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #383838;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.confirmation a:hover {
    background-color: #383838;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.float {
    animation: float 2s ease-in-out infinite;
}