/*
Theme Name: Dopslide
Author: A&F Développement
Author URI: https://af-developpement.com/
Version: 1.1
*/

/*@font-face {
    font-family: 'Gotham';
    font-style: normal;
    font-weight: 500;
    src: url(./assets/fonts/Gotham/Gotham-Medium.otf) format('opentype');
}*/

*{
    margin: 0;
    padding: 0;
    border: 0;
    font-size: clamp(12px, 1rem, 1.5rem);
    font-family: "GeneralSans", sans-serif;
    vertical-align: baseline;
    box-sizing: border-box;
}

:root{
    --orange: rgb(251, 105, 48);
    --noir: rgb(26, 26, 26);
    --rose: rgb(255, 88, 88);
    --blanc: rgb(255, 255, 255);
    --gris: rgb(169, 169, 169);
    --bleu: #0046FD;
}

body{
    background: #EDF2F9;
}


@keyframes blurFadeIn {
    0% {
        top: 10px;
        filter: blur(10px);
        opacity: 0;
    }
    100% {
        top: 0;
        filter: blur(0);
        opacity: 1;
    }
}

#title{
    text-align: center;
}

.animated-text {
    position: relative;
    display: inline-block;
    font-size: 40px;
    font-weight: bold;
    opacity: 0;
    animation: blurFadeIn 0.6s ease forwards;
}

h2.animation-title{
    margin-bottom: 50px;
    line-height: normal;
}

h2 .animated-text{
    font-size: 30px;
    line-height: normal;
}

h1 .shiny,
h2 .shiny{
    color: var(--bleu);
}


.word-container {
    display: inline-block;
    white-space: nowrap;
}

.scrolling-text-container {
    position: relative;
    height: 35px;
    overflow: hidden;
    display: inline-block;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 10px;
    transition: .3s;
}

.text-item {
    position: absolute;
    display: flex;
    flex-direction: row;
    gap: 10px;
    opacity: 0;
    transform: translateY(100%); /* Start from the bottom */
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.text-item svg{
    width: 14px;
    height: 14px;
    background: var(--orange);
    padding: 3px;
    border-radius: 50%;
}

.text-item span{
    width: fit-content;
    font-size: 14px;
    letter-spacing: -0.02em;
    line-height: 16px;
    text-align: center;
    color: #fff;
    white-space: nowrap;
}

.text-item.active {
    opacity: 1;
    transform: translateY(0); /* Move to center */
}

.text-item.exit {
    opacity: 0;
    transform: translateY(-100%); /* Move upwards */
}

*{
    margin: 0;
    padding: 0;
    border: 0;
    font-size: clamp(12px, 1rem, 1.5rem);
    font-family: "Montserrat", sans-serif;
    vertical-align: baseline;
    box-sizing: border-box;
}

body{
    line-height: 1.5;
}

.container{
    width: 100%;
    max-width: 1440px;
    padding: 0 30px;
    margin: 0 auto;
}

.btn{
    height: 43px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    padding: 0 28px;
    text-decoration: none;
    border-radius: 5px;
    color: #fff;
    font-family: "DM Sans", "DM Sans Placeholder", sans-serif;
    font-size: 13.45px;
    font-weight: 400;
    letter-spacing: 0.14px;
    line-height: 21px;
    text-align: right;
    text-transform: none;
    position: relative;
    width: fit-content;
    background: linear-gradient(15deg, #0046FD, #7DA0FB);
    overflow: hidden;
}

.btn.shadow{
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.btn.center{
    margin: 0 auto;
}

.btn.blanc{
    background: var(--blanc);
    color: black;
    border: .5px solid #000000;
}

.btn.orange{
    background-color: rgba(251, 105, 48);
}

.bulle{
    position: relative;
    width: fit-content;
}

.bulle::after{
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    transform: translate(20%, -30%);
    background-image: url("assets/svg/pastille-btn.svg");
    background-size: contain;
    background-repeat: no-repeat;
    /*
    background-color: var(--rose);
    border-radius: 100%;
    border: 1px solid var(--blanc);
     */
}

.btn > span:first-child{
    transform: translateY(20px);
    transition: .5s;
}

.btn > .clone span{
    transform: translateY(-55px);
    transition: .5s;
    display: inline-block;
    opacity: 0;
}

.btn:hover .clone span{
    opacity: 1;
    transform: translateY(-20px);
}

.btn:hover > span:first-child{
    transform: translateY(54px);
}

@keyframes slide_btn {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100px);
    }
}


a.btn-whatsapp{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bleu);
    border-radius: 50%;
    color: #fff;
    height: 50px;
    width: 50px;
}

a.btn-whatsapp svg{
    width: 25px;
    height: 25px;
}

h1, h1 mark{
    font-size: 40px;
    line-height: normal;
    text-align: center;
    color: rgb(26, 26, 26);
    max-width: 1070px;
    margin: 0 auto;
}

h1 mark{
    color: #0046FD;
    background: none;
}

/* SLICK -------------------------------------------------------------------------------------------*/

.slick-prev,
.slick-next{
    background-color: #000;
    border-radius: 50%;
    padding: 2rem;
    opacity: .8;
}

.slick-prev:hover,
.slick-next:hover{
    opacity: 1;
}

.slick-prev{
    left: 18px;
    z-index: 1;
}

.slick-next{
    right: 18px;
    z-index: 1;
}

.slick-prev:before,
.slick-next:before{
    font-family: 'slick', sans-serif;
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: #1f8a70;
    -webkit-font-smoothing: antialiased;
}

.slick-prev:before,
.slick-next:before{
    content: url(assets/svg/chevron-thin-right.svg);
    position: absolute;
    top: 50%;
    font-family: 'slick', sans-serif;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

.slick-prev:before{
    transform: rotate(180deg) translate(-50%, 50%);
}

.slick-next:before{
    transform: translate(-50%, -50%);
}

.slick-dots li button:before{
    color: #fff;
}

.slick-dots li.slick-active button:before{
    color: #F00;
}


/* HEADER --------------------------*/

header{
    margin: 20px 0 0 0;
    right: 0;
    top: 0;
    z-index: 9;
    position: sticky;
    top: 20px;
}

header .header-desktop{
    display: none;
    flex: none;
    height: auto;
    z-index: 1;
    width: 100%;
}

header .header-desktop .content-header{
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    box-shadow: rgba(93, 94, 94, 0.1) 0px 0px 0px 1px, rgba(70, 71, 74, 0.03) 0px 1px 1px -0.5px, rgba(69, 70, 74, 0.04) 0px 2px 2px -1px, rgba(66, 68, 71, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px, rgba(62, 64, 66, 0.03) 0px 10px 10px -5px, rgba(58, 59, 61, 0.03) 0px 24px 24px -8px;
    width: 100%;
    opacity: 1;
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 33px;
    flex-wrap: nowrap;
    height: min-content;
    justify-content: center;
    overflow: visible;
    padding: 20px 25px;
    position: relative;
}

header .content-header a{
    display: flex;
    width: fit-content;
}

header .content-header a svg{
    width: 81px;
    height: 18px;
}

header .header-desktop .content-nav{
    display: flex;
    align-items: center;
    flex: 1 0 0px;
    flex-direction: row;
    gap: 10px;
    height: min-content;
    justify-content: center;
    overflow: visible;
    padding: 0;
}

header .header-desktop .content-nav nav{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex: 1 0 0px;
}

header .header-desktop .content-nav ul{
    display: flex;
    list-style: none;
    gap: 32px;
}

header .header-desktop .content-nav li a{
    display: flex;
    font-size: 15px;
    font-weight: 500;
    line-height: 1em;
    text-align: center;
    color: var(--noir);
    text-decoration: none;
}

header .header-desktop .content-nav .content-contact{
    display: flex;
    align-items: center;
    flex: 1 0 0px;
    flex-direction: row;
    gap: 10px;
    height: min-content;
    justify-content: flex-end;
    overflow: visible;
    padding: 0;
}

header .header-desktop .content-nav .content-contact a.btn-whatsapp{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bleu);
    border-radius: 50%;
    color: #fff;
    height: 50px;
    width: 50px;
}

header .header-desktop .content-nav .content-contact a.btn-whatsapp svg{
    width: 25px;
    height: 25px;
}

header .header-mobile{
    width: 100%;
}

header .header-mobile .content-header{
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    transform: none;
    transform-origin: 50% 50% 0px;
    box-shadow: rgba(93, 94, 94, 0.1) 0px 0px 0px 1px, rgba(70, 71, 74, 0.03) 0px 1px 1px -0.5px, rgba(69, 70, 74, 0.04) 0px 2px 2px -1px, rgba(66, 68, 71, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px, rgba(62, 64, 66, 0.03) 0px 10px 10px -5px, rgba(58, 59, 61, 0.03) 0px 24px 24px -8px;
    width: 100%;
    opacity: 1;
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    overflow: hidden;
    padding: 0 6px 0px 20px;
    position: relative;
    justify-content: center;
    transition: height 0.3s ease;
}

header .header-mobile .content-header .top-header{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 50px;
    align-items: center;
}

header .header-mobile .content-header .top-header a.logo{
    padding: 12px 0;
}

header .header-mobile .content-header .top-header a.logo svg{
    width: 81px;
    height: 18px;
}

header .header-mobile .content-header .top-header svg{
    width: 46px;
    height: 30px;
}

header .header-mobile .content-nav {
    max-height: 0;  /* Début caché */
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: max-height 0.5s ease-in-out; /* Transition plus fluide */
}

header .header-mobile .content-nav.active {
    max-height: 500px; /* Ajuste cette valeur selon le contenu */
}

header .header-mobile .content-nav nav{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex: 1 0 0px;
    margin-top: 33px;
}

header .header-mobile .content-nav ul{
    display: flex;
    list-style: none;
    flex-direction: column;
    gap: 32px;
}

header .header-mobile .content-nav li a{
    display: flex;
    font-size: 15px;
    font-weight: 500;
    line-height: 1em;
    text-align: center;
    color: var(--noir);
    text-decoration: none;
}

header .header-mobile .content-nav .content-contact{
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 0 10px;
}

header .header-mobile .content-nav .content-contact a.btn-whatsapp{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bleu);
    border-radius: 50%;
    color: #fff;
    height: 50px;
    width: 50px;
}

header .header-mobile .content-nav .content-contact a.btn-whatsapp svg{
    width: 25px;
    height: 25px;
}

/* BOUTON FIXE --------------------------*/

@keyframes vague {
    from {transform: scale(0); opacity: 1}
    to {transform: scale(1.2); opacity: 0}
}

.contact-fixe{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}
/*
.contact-fixe .background{
    background: white;
    border: 1px solid rgba(0, 70, 253, 0.3);
    border-radius: 100%;
    position: relative;
}
*/
.contact-fixe .vague{
    animation: vague 2s infinite;
    width: 65px;
    height: 65px;
    background: var(--bleu);
    opacity: 1;
    border-radius: 100%;
    z-index: 2;
}

.contact-fixe a.btn-whatsapp{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* CUSTOM FORM  ------------------------- */

.custom-contact-wrapper{
    margin-top: 130px;
}

.custom-contact-wrapper > div{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 0 30px;
}

.custom-contact-wrapper > div img{
    height: 100%;
}

.custom-contact-wrapper > div .wpcf7{
    max-width: 1052px;
    width: 100%;
}

.custom-contact-wrapper .custom-section{
    background-color: #fff;
    border-radius: 30px;
    margin-top:25px;
}

.custom-contact-wrapper fieldset + .custom-section{
    margin-top: 0;
}

.custom-contact-wrapper .custom-section .titre{
    padding:17px 21px;
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 15px;
    width: 100%;
    color:#424143;
    display: flex;
}

.custom-contact-wrapper .custom-section.active .titre{
    background: linear-gradient(82.57deg, #0046FD 44.06%, #FFFFFF 177.12%);
    border-radius: 30px;
    color:#fff;
}

.custom-contact-wrapper .custom-section:not(.active) .content-section{
    display: none;
}

.custom-contact-wrapper .custom-section .content-section{
    padding:21px 25px;
}

.custom-contact-wrapper .custom-section .content-section label,
.custom-contact-wrapper .custom-section .content-section input[type="radio"] + span{
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 15px;
    color:#424143;
    display: flex;
}

.custom-contact-wrapper .custom-section .content-section input[type="radio"] + span{
    margin-bottom: 0;
}

.custom-contact-wrapper .custom-section .content-section .besoin-option{
    padding: 0 10px;
    display: flex;
}

.custom-contact-wrapper .custom-section .content-section .wpcf7-radio input{
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 28px;
    height: 28px;
    border: 3px solid #0554F2;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.custom-contact-wrapper .custom-section .content-section .wpcf7-radio label{
    display: flex;
    align-items: center;
    gap:23px;
    cursor: pointer;
}

.custom-contact-wrapper .custom-section .content-section .wpcf7-radio input:checked{
    background-color: #0046FD;
    border-color:#0046FD;
}

.custom-contact-wrapper input[name="email"],
.custom-contact-wrapper input[type="tel"]{
    color:#0046FD;
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    border:1px solid #0146FD;
    border-radius: 40px;
    padding:16px 25px;
    max-width: 630px;
    margin:0 auto;
    display: flex;
    width: 100%;
}

.custom-contact-wrapper input[name="email"]::placeholder,
.custom-contact-wrapper input[type="tel"]::placeholder{
    color:#0046FD;
}

.custom-contact-wrapper input[type="submit"],
.custom-contact-wrapper .next-step-btn{
    margin-left: auto;
    display: flex;
    margin-top: 40px;
    background: #0046FD;
    border-radius: 13px;
    color:#fff;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    padding:11px 46px;
    cursor: pointer;
}

.revient-wrapper{
    margin-top: 80px;
    padding:0 30px;
}

.revient-wrapper > div{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap:90px;
}

.revient-wrapper .revient-vers-vous a{
    font-size: 25px;
    line-height: 1;
}

.revient-wrapper .revient-vers-vous{
    display: flex;
    align-items: center;
    gap:20px;
}


/* FOOTER --------------------------*/

footer .footer-top{
    padding: 50px 30px 30px;
    width: 100%;
    flex-wrap: nowrap;
    height: min-content;
    background-color: var(--bleu);
    opacity: 1;
    margin-top: 150px;
}

footer .footer-top .container{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    justify-content: space-between;
    gap: 50px;
}

footer .footer-top .container .top-footer{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

footer .footer-top .contact-infos{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
}

footer .footer-top .contact-infos .titre{
    font-weight: 700;
}

footer .footer-top .contact-infos span{
    font-family: 'Montserrat';
    font-weight: 500;
    line-height: 100%;
    font-size: 14px;
    color: #FFF;
}

footer .footer-top .reseaux-sociaux{
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

footer .footer-top .reseaux-sociaux > a{
    display: flex;
}

footer .footer-top .reseaux-sociaux > a img,
footer .footer-top .reseaux-sociaux > a svg{
    width: 30px;
    height: 30px;
}

footer .footer-top .container .bottom-footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

footer .footer-top .container .bottom-footer > a{
    display: flex;
}

footer .footer-top .container .bottom-footer > a svg{
    display: flex;
    width: 180px;
}

footer .footer-top .container .bottom-footer .menu{
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
}

footer .footer-top .container .bottom-footer .menu .menu-header-menu-container{
    display: flex;
}

footer .footer-top .container .bottom-footer .menu .menu-header-menu-container ul{
    display: flex;
    list-style: none;
    flex-direction: column;
    gap: 10px;
}

footer .footer-top .container .bottom-footer .menu .menu-header-menu-container ul li a{
    font-family: 'Montserrat';
    font-weight: 500;
    line-height: 100%;
    font-size: 14px;
    display: flex;
    text-align: center;
    color: #FFF;
    text-decoration: none;
}

footer .footer-top .container .bottom-footer .menu .content-contact{
    display: flex;
    align-items: center;
}

footer .footer-top .container .bottom-footer .menu .content-contact a{
    background: #FFF;
    color: black;
    border-radius: 50px;
    padding: 17px 38px;
    display: flex;
    border: none;
    text-transform: none;
    font-family: 'Montserrat';
    font-weight: 500;
    line-height: 100%;
    font-size: 14px;
}

footer .footer-bottom{
    background-color: #424143;
    padding: 12px 0 14px;
}

footer .footer-bottom .container{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

footer .footer-bottom .content-footer{
    display: flex;
    flex-direction: column;
    gap: 40px;
}


footer .footer-bottom .content-footer a.logo{
    display: flex;
}

footer .footer-bottom .content-footer a.logo svg{
    width: 101px;
    height: 22px;
}

footer .footer-bottom .content-footer .content-menu{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

footer .footer-bottom .content-footer .content-menu .content-nav,
footer .footer-bottom .content-footer .content-menu .content-nav .menu ul{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

footer .footer-bottom .content-footer .content-menu .content-nav .menu ul li a{
    font-family: 'Montserrat';
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1em;
    text-decoration: none;
    color: var(--gris);
}

footer .footer-bottom .content-footer .content-menu .content-nav .reseaux a{
    display: flex;
}

footer .footer-bottom .content-footer .content-menu .content-nav .reseaux a svg{
    width: 18px;
    height: 18px;
}

footer .footer-bottom .mentions{
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    align-items: center;
}

footer .footer-bottom .mentions span{
    font-family: 'Montserrat';
    font-weight: 300;
    font-size: 14px;
    line-height: 100%;
    color: #FFF;
}

footer .footer-bottom .mentions .links{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

footer .footer-bottom .mentions .links a{
    display: flex;
    font-family: 'Montserrat';
    font-weight: 300;
    font-size: 14px;
    line-height: 100%;
    color: #FFF;
    text-decoration: none;
}

footer .container{
    max-width: unset;
    padding: unset;
    margin: unset;
}

#projets-archive{
    display: flex;
    align-items: center;
    margin: 50px 0;
}

#projets-archive .head{
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    margin-bottom: 50px;
}

#projets-archive .head > div{
    width: 50%;
}

#projets-archive .head h1{
    display: flex;
    text-align: center;
    flex-direction: column;
}

#projets-archive .head .sous-titre{
    font-size: 40px;
    font-weight: 600;
}

#projets-archive .head .left{
    line-height: 20px;
}

#projets-archive .head .right{
    text-align: right;
}

#projets-archive .head .right span{
    font-size: 60px;
    color: var(--bleu);
    position: relative;
    width: fit-content;
    display: block;
    float: right;
}

#projets-archive .head .right span:before{
    content: "";
    width: 15px;
    height: 15px;
    display: block;
    background: var(--bleu);
    border-radius: 50px;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    left: -20px;
}

#projets-archive .projets{
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px
}


#projets-archive .projets .projet{
    padding: 20px;
    background-color: #FFF;
    transition: all 0.3s ease;
    border-radius: 20px;
}

#projets-archive .projets .projet:hover{
    scale: 1.05;
}

#projets-archive .projets .projet a{
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#projets-archive .projets .projet .image{
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 5.93px 5.93px 8.46px 0px rgba(0, 0, 0, 0.5);
}

#projets-archive .projets .projet .image > img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

#projets-archive .projets .projet .image .play_button{
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#projets-archive .projets .projet .image .play_button img{
    width: 30%;
    height: auto;
}

#projets-archive .projets .projet .bottom{
    width: 100%;
    object-fit: cover;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#projets-archive .projets .projet .bottom .content-categ{
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

#projets-archive .projets .projet .bottom .content-categ .category{
    padding: 4px 12px;
    border-radius: 5px;
    background-color: #7988B2;
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 12.03px;
    line-height: 100%;
    color: #FFF;
}

#projets-archive .projets .projet .bottom .text{
    width: 100%;
    display: flex;
    align-items: center;
    text-decoration: none;
    background: unset;
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: #424143;
    padding: unset;
}

#projets-archive .projets .projet .bottom .logo{
    height: 70px;
    aspect-ratio: 1 / 1;
    display: block;
}

#projets-archive .projets .projet .bottom .logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#projets-archive #load-more{
    margin: 50px auto 0;
}

.number-defile {
    position: relative;
    overflow: hidden;
    width: 30px;
    height: 19px;
    margin-bottom: -3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.number-defile .number-defile-wrapper{
    position: absolute;
    display: inline-flex;
    flex-direction: column;
    top: 0;
    transition: 2s cubic-bezier(0, 0, 0, 1.04);
}

.number-defile.active .number-defile-wrapper{
    top: 0;
}

/* SINGLE PROJET --------------------------*/

#single-project .header-single-projet{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: start;
    margin: 30px 0;
}

#single-project .header-single-projet .back{
    display: flex;
}

#single-project .header-single-projet .back a{
    display: flex;
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 15px;
    line-height: 100%;
    text-decoration: unset;
    color: #424143;
    align-items: center;
    gap: 13px;
}

#single-project .header-single-projet .back svg{
    height: 15px;
}


#single-project .header-single-projet .content-header{
    display: flex;
    flex-direction: column;
    gap: 44px;
}

#single-project .header-single-projet .content-header .content-video{
    width: 100%;
    padding: 5px;
    background: #FFF;
    border-radius: 10px;
    box-shadow: 6.98px 6.98px 9.98px 0px #00000066;
}

#single-project .header-single-projet .content-header .content-video .wp-bloc-video,
#single-project .header-single-projet .content-header .content-video .wp-bloc-video video{
    border-radius: 10px;
}

#single-project .header-single-projet .content-header .commentaire{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 50px 30px;
    background-color: #FFF;
    height: fit-content;
    align-items: center;
    border-radius: 20px;
    box-shadow: 6.98px 6.98px 9.98px 0px #00000066;
}

#single-project .header-single-projet .content-header .commentaire .image-commentaire{
    display: flex;
}

#single-project .header-single-projet .content-header .commentaire .content-commentaire{
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 21.16px;
    line-height: 100%;
    color: #000;
}

#single-project .header-single-projet .content-header .commentaire .button-commentaire a{
    align-items: center;
}

#single-project .header-single-projet .right{
    display: flex;
    align-items: flex-end;
}

#single-project .header-single-projet .right h1{
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    color: #424143;
}

#single-project .header-single-projet .right .time{
    color: #0046FD;
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 25.63px;
}

#single-project .header-single-projet .left{
    display: flex;
    justify-content: center;
    align-items: center;
}

#single-project .header-single-projet .left .image-single-projet{
    display: flex;
}

#single-project .header-single-projet .left .image-single-projet img{
    width: 95px;
    height: 95px;
}

#single-project .title-single-projet{
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 30px;
    line-height: 100%;
    color: #424143;
    margin: unset;
    text-align: left;
}

#single-project > p {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 15px;
    color: #494949;
    padding: 10px 10px 10px 0;
}

#single-project > h2{
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 25px;
    line-height: 100%;
    color: #0046FD;
    padding: 20px 0;
    line-height: normal;
}

#single-project > h3{
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: #494949;
    padding: 10px 0;
}

.video-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
}

.video-cover .cover-content {
    text-align: center;
    color: white;
    position: relative;
    width: 100%;
    height: 100%;
}

.video-cover img {
    max-width: unset;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.video-cover .time {
    position: absolute;
    width: 100%;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 15px;
    bottom: 0;
    left: 0;
}

.video-cover .time span{
    display: flex;
    justify-content: flex-end;
    color: #FFF;
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 25.63px;
}

.video-cover .time .barre{
    width: 100%;
    height: 10px;
    background-color: white;
    border-radius: 5px;
}

.wp-block-video video,
.wp-block-video {
    position: relative;
    border-radius: 10px;
    max-height: 820px;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.modal-reservation{
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: .5s;
    opacity: 0;
    visibility: hidden;
}

.modal-reservation.active{
    visibility: visible;
    opacity: 1;
}

.modal-reservation .modal-content{
    max-width: 90%;
    max-height: 90%;
    height: 600px;
    width: 500px;
    position: relative;
}

.modal-reservation .modal-content .close{
    position: absolute;
    top: -40px;
    right: 0;
    width: 30px;
    height: 30px;
    background-color: var(--bleu);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: .5s;
    cursor: pointer;
}

.modal-reservation .modal-content .close:hover{
    transform: rotate(360deg);
}

.modal-reservation.active{
    opacity: 1;
}



@media screen and (min-width : 768px){
    h1, h1 mark{
        font-size: 66px;
    }

    .animated-text{
        font-size: 66px;
    }

    h2 .animated-text{
        font-size: 45px;
    }

    .container{
        padding: 0 60px;
    }

    .modal-reservation .modal-content .close{
        right: -40px;
    }


    /* BOUTON FIXE --------------------------*/

    .contact-fixe{
        bottom: 30px;
        right: 30px;
    }

    #projets-archive .projets {
        grid-template-columns: 1fr 1fr;
    }

    /* SINGLE PROJET --------------------------*/

    #single-project .header-single-projet{
        padding: 50px 0 80px;
    }

    #single-project .header-single-projet .right h1{
        font-size: 120px;
    }


    .wp-block-video video,
    .wp-block-video {
        aspect-ratio: 16/9;
    }

}

@media screen and (min-width: 992px){
    header{
        min-height: 84px;
    }

    header .header-mobile{
        display: none;
    }

    header .header-desktop{
        display: flex;
    }

    header .content-header a svg{
        width: 180px;
        height: 40px;
    }

    header .header-desktop .content-header{
        justify-content: space-between;
    }

    header .header-desktop .content-nav .content-contact{
        justify-content: unset;
    }

    header .header-desktop .content-nav{
        flex: unset;
        gap: 50px;
    }

    header .header-desktop .content-nav ul{
        gap: 50px;
    }

    header .header-desktop .content-nav li a{
        font-weight: 300;
        font-size: 20px;
    }

    header .content-header a.btn{
        font-size: 20px;
    }

    footer .container{
        max-width: 1240px;
        padding: 0 20px;
        margin: 0 auto;
    }

    footer .footer-top {
        padding: 77px 0 27px;
    }

    footer .footer-top .container{
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 182px;
    }

    footer .footer-top .container .bottom-footer{
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    footer .footer-top .container .bottom-footer > a svg{
        width: 240px;
    }

    footer .footer-top .container .bottom-footer .menu{
        gap: 44px;
    }

    footer .footer-top .container .bottom-footer .menu .menu-header-menu-container{
        align-items: center;
    }

    footer .footer-top .container .bottom-footer .menu .menu-header-menu-container ul{
        flex-direction: row;
        gap: 44px;
    }

    footer .footer-top .container .bottom-footer .menu .menu-header-menu-container ul li a{
        font-size: 25px;
    }

    footer .footer-top .container .bottom-footer .menu .content-contact a{
        font-size: 19px;
    }

    footer .footer-bottom .mentions .links a,
    footer .footer-bottom .mentions span{
        font-size: 20px;
    }

    footer .footer-bottom .container{
        gap: 40px;
    }

    footer .footer-bottom .content-footer{
        flex-direction: row;
        align-items: center;
    }

    footer .footer-top .contact-infos span{
        font-size: 25px;
    }

    footer .footer-top .reseaux-sociaux > a img,
    footer .footer-top .reseaux-sociaux > a svg{
        width: 45px;
        height: 45px;
    }



    footer .footer-bottom .content-footer .content-menu{
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    footer .footer-bottom .content-footer .content-menu .content-nav,
    footer .footer-bottom .content-footer .content-menu .content-nav .menu ul{
        flex-direction: row;
    }

    footer .footer-bottom .content-footer .content-menu .content-nav .reseaux{
        display: flex;
        align-items: center;
    }

    footer .footer-bottom .mentions{
        flex-direction: row;
        justify-content: center;
    }

    footer .footer-bottom .mentions .links{
        flex-direction: row;
        align-items: center;
    }

    footer .footer-bottom .mentions .links a:before{
        content: "-";
        margin-right: 10px;
    }

    #projets-archive .projets {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    #projets-archive .head{
        gap: 50px;
        margin-bottom: 100px;
    }

    #projets-archive{
        display: flex;
        align-items: center;
        margin: 50px 0;
    }

    #single-project .header-single-projet .a{
        font-size: 20px;
    }

    #single-project .header-single-projet .content-header{
        flex-direction: row;
    }

    #single-project .header-single-projet{
        margin: unset;
    }

    #single-project .header-single-projet .back a{
        font-size: 20px;
    }

    #single-project .header-single-projet .back a svg{
        height: 20px;
    }

    #single-project .header-single-projet .back svg{
        height: unset;
    }

    #single-project .header-single-projet .content-header .content-video{
        width: 75%;
    }

    #single-project .header-single-projet .content-header .commentaire{
        width: 25%;
    }

    #single-project .title-single-projet{
        font-size: 50px;
        max-width: 72.5%;
    }

    #single-project > h2{
        font-size: 35px;
        padding: 30px 0;
        max-width: 72.5%;
        line-height: normal;
    }

    #single-project > h3{
        font-size: 25px;
        padding: 15px 0;
        max-width: 72.5%;

    }

    #single-project > p {
        font-size: 15px;
        max-width: 72.5%;
    }
}

#wpadminbar{
    display: none;
}
