@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Outfit:wght@100..900&display=swap');
:root {
    --color-orange: rgb(237, 75, 32);
    --color-pink: rgb(254, 142, 190);
    --color-green: rgb(208, 241, 100);
    --color-light: #FFFAF5;
    --color-gradient-start: #FFFAF5;
    --color-gradient-end: #FFC1DC;
    --color-text-dark: #000;
    --color-text-light: #fff;
}

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

@font-face {
    font-family: 'Outfit';
    src: url('Outfit-Light.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
}

body {
    cursor: none;
    background-color: rgb(240, 219, 228);
    transition: all 0.5s ease;
    overflow-x: hidden;
    font-family: 'Outfit';
    width: 100vw;
}

section {
    width: 100vw;
}

body.overflow {
    overflow: hidden;
}

body.loaded {
    background-color: #fff
}

html {
    scroll-behavior: smooth;
}

.wrapper {
    padding: 0 5%;
}

ul,
li {
    list-style: none;
}

a {
    text-decoration: none;
}

.h2 {
    font-size: 50px;
    line-height: 60px;
    display: block;
}

.h2 b {
    font-weight: 700;
}


/* HEADER */

header {
    opacity: 0;
    transition: all 0.3s ease
}

.loaded header {
    opacity: 1;
}

header #logo {
    position: absolute;
    top: 30px;
    left: 5%;
}

header #logo svg {
    display: block;
    width: 130px;
    transition: stroke 0.3s, fill 0.3s ease-in-out;
}

header #logo:hover .icon {
    fill: var(--color-pink);
}

#navigation ul li {
    display: inline-block;
}

#navigation {
    margin: 0 0 0 0;
}

#navigation ul li a {
    color: #000;
    font-size: 20px;
    padding: 10px 20px;
}

#navigation ul li a:hover,
#navigation ul li a.active {
    color: var(--color-orange);
}


/* Style de base pour le bouton */

#navigation ul li.contact {
    background-color: var(--color-orange);
    color: #fff;
    border-radius: 60px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

#navigation ul li.contact a {
    color: #fff;
    display: block;
    text-align: center;
    padding: 10px 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

#navigation ul li.contact:hover {
    background-color: var(--color-pink);
    transform: scale(1.05);
}

#navigation ul li.contact a:hover {
    color: #fff;
}

header nav {
    position: absolute;
    top: 40px;
    right: 5%;
}

.h1 {
    font-size: 100px;
    font-weight: bold;
    transition: all 0.5s ease-in-out;
    transform: translateY(100px);
    -webkit-transform: translateY(100px);
    opacity: 0;
    display: block
}

h1 {
    margin-top: 20px;
    font-size: 16px;
    margin-top: 20px;
    font-weight: normal;
    transform: translateY(100px);
    -webkit-transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s ease-in-out;
    text-transform: uppercase;
}

h2 {
    font-size: 16px;
    font-weight: normal;
    text-transform: uppercase;
}

.loaded .h1,
.loaded h1 {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    opacity: 1;
}


/* --------- btns ---------- */

.btn:hover b {
    width: 80px;
}

.btn b {
    width: 60px;
    height: 60px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 40px;
    transition: all 0.3s ease;
}

.btn b:before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: #000;
    border-radius: 100%;
    position: absolute;
    right: 20px;
    top: 20px;
    transition: all 0.8s ease 0.6s;
}

.btn:hover b:before {
    right: 5px;
}

.btn {
    display: inline-block;
    margin: 0 10px;
    position: relative;
    background-color: var(--color-green);
    border-radius: 50px;
    color: #003420;
    font-size: 27px;
    font-style: normal;
    font-weight: 500;
    padding: 13px 50px 13px 90px;
    line-height: normal;
    cursor: pointer;
    transition: all 0.6s ease;
}

.btnToreveal .scd {
    display: none;
}

.btnToreveal.active.btn b {}

.btnToreveal.active.btn {
    background-color: var(--color-pink);
    color: #fff;
}

.btnToreveal.active .scd {
    display: block;
}

.btnToreveal.active .first {
    display: none;
}


/* ---------------------------------- */


/* ----------- TOP BANNER ----------- */


/* ---------------------------------- */

#sect-topBanner {
    text-align: center;
}

#sect-topBanner .h2 {
    font-size: 25px;
    line-height: 33px;
    color: var(--color-pink);
    display: inline-block;
    max-width: 850px;
    font-weight: 300;
    transition: all 0.5s ease-in-out 0.2s;
    transform: translateY(100px);
    -webkit-transform: translateY(100px);
    opacity: 0;
}

.loaded #sect-topBanner .h2 {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    opacity: 1;
    padding: 0 30px;
}

#sect-topBanner .eyes {
    transition: all 0.2s ease-in-out 0s;
    /*opacity: 0;*/
}

#sect-topBanner .wrapper {
    padding: 200px 0;
}

.loaded #sect-topBanner .eyes {
    opacity: 1;
}

.hero {
    width: 100vw;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.slides-container {
    margin: 0 auto;
    display: flex;
    width: 100vw;
    overflow: hidden;
}

.slide {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.slide img,
.slide video {
    object-fit: cover;
    max-height: 70vh;
    aspect-ratio: 16 / 9;
    animation-name: fade;
    animation-duration: 5s;
    animation-timing-function: linear;
}

@keyframes fade {
    0% {
        opacity: .4;
        transform: scale(1.3);
        -webkit-transform: scale(1.3);
    }
    55% {
        opacity: 1
    }
    100% {
        opacity: .4
    }
}

#sect-topBanner .hero img,
#sect-topBanner .hero video {
    display: block;
    width: 100%;
}

#sect-topBanner .mainVisual {
    position: relative;
    transition: all 0.5s ease-in-out 0.4s;
    transform: translateY(100px);
    -webkit-transform: translateY(100px);
}

.loaded #sect-topBanner .mainVisual {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    opacity: 1;
}

#sect-topBanner .mainVisual .sticker {
    position: absolute;
    top: -100px;
    left: 50px;
    z-index: 3
}

#sect-topBanner .mainVisual #confettis1 {
    position: absolute;
    top: -150px;
    left: 0px;
    z-index: 2;
    width: 400px;
    height: 400px;
}

.arrows :hover {
    color: aliceblue;
    background-color: rgb(71, 65, 65);
}

.arrow-left,
.arrow-right {
    position: absolute;
    font-size: 1.5rem;
    top: 46%;
    cursor: pointer;
    display: none;
}

.arrow-left {
    left: 5vw;
}

.arrow-right {
    right: 5vw;
}


/* ---------------------------------- */


/* ----------- CONFETIS ----------- */


/* ---------------------------------- */

.dots {
    margin: 0 auto;
    position: absolute;
    right: 0;
    bottom: 20px;
    right: 40px;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
}

.dot:hover {
    background-color: pink;
}


/* STICKERS */

.turningCircle {
    background-color: var(--color-green);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    padding: 10px;
    animation: rotate infinite 15s linear;
}

.turningCircle:hover {
    animation: rotate infinite 5s linear;
}

#sect-contact .turningCircle {
    background-color: var(--color-orange);
}

.heartInSticker {
    width: 80px;
    transition: all 0.5s ease-out;
}

.cafeInSticker {
    width: 80px;
    transition: all 0.5s ease-out;
}

.sticker #newheart {
    animation: heartbeat 1.5s infinite;
    display: block;
    transform: scale(1);
    -webkit-transform: scale(1);
    transform-origin: center;
    position: absolute;
    margin-left: -40px;
    left: 50%;
    top: 50%;
    margin-top: -39px;
}

.sticker #newheart:hover {
    animation: heartbeat 0.5s infinite;
}

.sticker #newCafe {
    display: block;
    transform: scale(1);
    -webkit-transform: scale(1);
    transform-origin: center;
    position: absolute;
    margin-left: -34px;
    left: 50%;
    top: 50%;
    margin-top: -22px;
}

.stickerCafe #newCafe:before {
    display: block;
    content: '';
    background: url(../img/smoke.svg) no-repeat center center;
    width: 47px;
    position: absolute;
    bottom: 66px;
    left: 10px;
    opacity: 0;
    height: 0;
}

.stickerCafe:hover #newCafe:before {
    opacity: 1;
    animation: smoke 5s infinite;
    transition: all 0.5s ease;
    height: 108px;
}

.sticker .heartInSticker.clicked {
    animation: none!important;
    transform: scale(20)!important;
    -webkit-transform: scale(20)!important;
    opacity: 0;
}

.sticker {
    cursor: pointer;
}


/* ----------------------------------------- */


/* ----------- ABOUT - BIENVENUE ----------- */


/* ----------------------------------------- */

#sect-about {
    padding: 150px 0 250px 0;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, #ffffff00 0%, #FFC1DC 100%);
}

#sect-about .text {
    font-size: 19px;
    line-height: 41px;
    max-width: 900px;
    margin: 0 auto 60px auto;
}

#sect-about h2 {
    font-size: 13px;
}

#sect-about .h2 {
    font-weight: 400;
    margin-bottom: 20px;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    font-size: 60px;
}

#sect-about .services {
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
}

#sect-about .service {
    border-radius: 20px;
    width: 23%;
    cursor: pointer;
    position: relative;
    align-self: baseline;
}

#sect-about .service div.title {
    opacity: 0;
    background-color: var(--color-orange);
    position: absolute;
    transition: all 0.2s ease;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-content: center;
    color: #fff;
    font-size: 22px;
}

#sect-about .service:hover div.title {
    opacity: 1;
}

#sect-about .service div {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
}

#sect-about .service img {
    display: block;
    width: 100%;
}

.layer.active {
    position: fixed;
    width: 100vw;
    display: block;
    top: 0;
    height: 100vh;
    background-color: #61616130;
    left: 0;
    z-index: 5;
}

.popup {
    display: flex;
    text-align: left;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    overflow: scroll;
    background-color: var(--color-orange);
    padding: 50px 6%;
    border-radius: 20px 0 0 20px;
    color: #fff;
    min-height: 100vh;
    align-items: center;
    z-index: 12;
    width: 46%;
    transition: all 0.4s ease;
    transform: translate(50vw, 0);
    -webkit-transform: translate(50vw, 0);
}

.popup.active {
    transform: translate(0vw, 0);
    -webkit-transform: translate(0vw, 0);
    box-shadow: 0px 0px 200px #00000075;
}

.popup .close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
}

.popup .close img {
    display: block;
    width: 100%;
}

.popup h4 {
    font-size: 30px;
    margin-bottom: 20px;
    display: block;
}

.popup div {}


/* -------------------------------------- */


/* ----------- HOME PORTOFLIO ----------- */


/* -------------------------------------- */

#sect-realisation {
    padding: 100px 0;
    position: relative;
}

#sect-realisation #confettis2 {
    position: absolute;
    top: -150px;
    right: 0px;
    z-index: 2;
    width: 600px;
    height: 400px;
}

#sect-realisation .h2 {
    background-color: var(--color-orange);
    /* padding: 20px; */
    display: inline-block;
    position: absolute;
    top: -50px;
    rotate: 3deg;
    margin-left: -1%;
    padding: 0px 20px 7px 6vw;
    color: #fff;
}

#sect-realisation .introReal {
    max-width: 1100px;
    margin: 0 auto;
}

#sect-realisation .columnText {
    font-size: 19px;
    line-height: 41px;
}

#sect-realisation .portfolioThumbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#sect-realisation .portfolioThumbs .thumb {
    width: 30%;
    margin-bottom: 3%;
    position: relative;
}

#sect-realisation .portfolioThumbs .thumb .tag {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
}

#sect-realisation .portfolioThumbs .thumb .wrapperThumb {
    border-radius: 20px;
    overflow: hidden;
}

#sect-realisation .portfolioThumbs .thumb img,
#sect-realisation .portfolioThumbs .thumb video {
    width: 100%;
    display: block;
}

.wrapperHover {
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    width: 100%;
    height: 100%;
    background-color: var(--color-orange);
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    transition: all 0.7s ease;
    align-content: center;
}

#sect-realisation .portfolioThumbs .thumb:nth-child(2),
#sect-realisation .portfolioThumbs .thumb:nth-child(5) {
    transform: translateY(60px);
    -webkit-transform: translateY(60px);
}

#sect-realisation .portfolioThumbs .thumb:nth-child(3),
#sect-realisation .portfolioThumbs .thumb:nth-child(6) {
    transform: translateY(20px);
    -webkit-transform: translateY(20px);
}

.thumb:hover .wrapperHover {
    opacity: 1;
}

.wrapperHover .eye {}

.wrapperHover p {
    color: #fff;
    opacity: 0;
    margin-top: 10px;
    font-weight: 700;
    font-size: 30px;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    transition: all 0.3s ease;
    display: none;
}

.thumb:hover .wrapperHover p {
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
}


/*#sect-realisation .introReal .columnText {
    column-count: 2;
    column-gap: 50px;
}*/

#sect-realisation .introReal .columnText {
    text-align: center;
    max-width: 1000px;
}

.ctaWrap {
    padding: 50px 0;
    text-align: center;
    transition: all 0.5s ease;
}

.cta {
    background-color: #FFC1DC;
    color: #fff;
    border-radius: 50px;
    font-size: 34px;
}


/* -------------------------------------- */


/* ----------- HOME TEAM ---------------- */


/* -------------------------------------- */

#sect-team {
    text-align: center;
}

#sect-team .h2 {
    font-weight: 400;
    margin-bottom: 40px;
    display: block;
}

#sect-team .team {
    position: relative;
    text-align: left;
    height: auto;
    width: 50%;
}

#sect-team .team img {
    display: block;
    width: 100%;
}

#sect-team .team .mathilde {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    width: 50%;
    height: 100%;
}

#sect-team .team .sarah {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 100%;
}

#sect-team .team h4 {
    position: absolute;
    color: #000;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    background-color: #fff;
    padding: 10px 50px;
    bottom: 60px;
    transition: all 0.3s ease;
}

#sect-team .team .mathilde h4 {
    /* left: 0; */
    transform: rotate(-2.5deg);
    -webkit-transform: rotate(-2.5deg);
    right: 0;
}

#sect-team .team .sarah h4 {
    left: 0;
    transform: rotate(2deg);
    -webkit-transform: rotate(2deg);
}

#sect-team .team h4:hover {
    transform: scale(1.05) rotate(4deg)!important;
    -webkit-transform: scale(1.05) rotate(4deg)!important
}

#sect-team #confettis4 {
    right: -100%;
    position: absolute;
    top: 0;
    width: 100%;
    min-height: 400px;
}


/* ---------------------------- */


/* ----------- ECO ------------ */


/* ---------------------------- */

#sect-eco {}

#sect-eco .inside {
    background-color: var(--color-orange);
    width: 90%;
    border-radius: 0 30px 30px 0;
    color: #fff;
    display: flex;
    padding: 50px 50px 50px 50px;
    position: relative;
}

#sect-eco .inside .title {
    min-width: calc(5% + 340px);
}

#sect-eco .inside .title .h2 {
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    background: var(--color-green);
    transform: rotate(-6.577deg);
    position: absolute;
    left: -1%;
    padding: 5px 20px 5px 5%;
}

#sect-eco .inside .text {
    font-size: 19px;
    line-height: 35px;
}

#sect-eco .inside .eyes {
    position: absolute;
    bottom: 20px;
    right: 20px;
}


/* plante eco oko */

.plant {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 0;
    position: absolute;
    right: 60px;
    top: 0;
}

.stem {
    width: 3px;
    height: 200px;
    background-color: var(--color-green);
    transform-origin: bottom;
    transform: scaleY(0);
    /* Animation: initial height 0 */
}

.leaves {
    position: relative;
}

.leaf {
    position: absolute;
    opacity: 1;
}

.leaf img {
    display: block
}

.leaf1 {
    bottom: 0px;
    left: -27px;
    scale: 0;
    transform-origin: bottom;
    transform: rotate(45deg) scale(0);
}

.leaf2 {
    bottom: 0px;
    left: -27px;
    scale: 0;
    transform-origin: bottom;
    rotate: -30deg;
}

.leaf3 {
    bottom: 0px;
    left: -27px;
    scale: 0;
    transform-origin: bottom;
    rotate: 50deg;
}


/* ----------------------------------------- */


/* ---------------- CONTACT ---------------- */


/* ----------------------------------------- */

#sect-contact {
    background: linear-gradient(180deg, #ffffff00 0%, #FFC1DC 100%);
    text-align: center;
    padding: 200px 0 150px 0;
    position: relative;
}

#sect-contact .btn {
    margin-bottom: 20px;
    transition: all 1s ease;
    min-width: 360px;
}

#sect-contact h2 {
    font-size: 13px;
}

.sticker {
    width: 200px;
}

.sticker img.textInSticker {
    display: block;
    width: 100%;
}

#sect-contact .sticker {
    position: absolute;
    top: 70px;
    left: 220px;
}

#sect-contact #confettis3 {
    position: absolute;
    top: 10px;
    left: 20px;
    width: 400px;
    height: 300px;
}

#sect-contact .inside {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

#sect-contact .h2 {
    font-weight: 400;
    margin-bottom: 40px;
    display: block;
    font-size: 60px;
    margin-top: 10px;
}

#sect-contact .intro {
    font-size: 19px;
    line-height: 41px;
    margin-bottom: 30px;
}


/* ----------------------------------------- */


/* ---------------- FAQ ---------------- */


/* ----------------------------------------- */

#sect-faq {
    padding: 100px 0;
}

#sect-faq .h2 {
    font-weight: 400;
    margin-bottom: 40px;
    display: block;
}

#sect-faq .h2 span {
    rotate: 3deg;
    display: inline-block;
    background-color: var(--color-pink);
    margin-left: -6%;
    /* padding-left: 6%; */
    padding: 0px 20px 7px 6%;
    color: #fff;
}

.questionAns {
    border-bottom: 2px solid var(--color-pink);
    padding: 20px 0;
    overflow: hidden;
}

.questionAns .question {
    font-size: 30px;
    font-weight: 500;
    padding: 20px 0;
    position: relative;
    cursor: pointer;
    padding-right: 80px;
}

.questionAns .question:after {
    content: '';
    background: url(../img/arrow.png) no-repeat center center / 100%;
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 20px;
    top: 20px;
    transition: transform 0.3s ease-in-out;
}

.questionAns.active .question:after {
    transform: rotate(90deg);
}

.questionAns .answer {
    font-size: 19px;
    line-height: 41px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.questionAns.active .answer {
    max-height: 500px;
    /* Ajustez selon le contenu maximum */
}


/* ----------------------------------------- */


/* ---------------- CLIENTS ---------------- */


/* ----------------------------------------- */

#sect-clients {
    background-color: var(--color-pink);
    overflow: hidden;
    padding: 30px 0;
}

#sect-clients ul {
    text-align: center;
}

#sect-clients ul li {
    display: inline-block;
    margin: 0 20px;
    vertical-align: middle;
}

#sect-clients ul li img {
    display: block;
    max-height: 80px;
    min-height: 60px;
    max-width: 180px;
}


/* ----------------------------------------- */


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


/* ----------------------------------------- */

footer {
    background-color: var(--color-orange);
    padding: 50px 0;
}

footer .footer {
    display: flex;
    color: #fff;
    flex-wrap: nowrap;
    justify-content: space-between;
}

footer .footer .logo img {
    width: 100px
}

footer .footer .socials li svg {
    width: 50px;
    display: inline-block;
    height: 50px;
}

footer .footer .socials li .socialsvg {
    transition: fill 0.3s ease-in-out;
}

footer .footer .socials li:hover .socialsvg {
    fill: var(--color-green)
}

footer .footerContacts p,
footer .footerContacts address,
footer .footerContacts a {
    color: #fff;
    font-style: normal;
    font-size: 15px;
    line-height: 22px;
}

footer .footerContacts address {
    margin-bottom: 20px;
}

footer .socials li {
    display: inline-block;
    margin-left: 10px;
}

footer .socials li img {
    width: 50px;
}

footer .copy {
    margin-top: 20px;
}

footer .copy p {
    color: #fff;
    font-size: 14px;
}


/* ----------------------------------------- */


/* ---------------- PORTFOLIO PAGE  ---------------- */


/* ----------------------------------------- */

#sect-portfolio {
    padding: 120px 0px;
}

#sect-portfolio .filters {
    margin-bottom: 50px;
    transition: all 0.5s ease-in-out 0.2s;
    transform: translateY(100px);
    opacity: 0;
}

.loaded #sect-portfolio .filters {
    transform: translateY(0px);
    opacity: 1;
}

#sect-portfolio .filters span {
    display: inline-block;
    color: var(--color-orange);
    text-transform: uppercase;
    padding: 10px 20px;
    border: 1px solid var(--color-orange);
    border-radius: 20px;
    font-size: 16px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#sect-portfolio .filters span.active {
    background-color: var(--color-orange);
    color: #fff;
}

#sect-portfolio .filters span:hover {
    background-color: var(--color-orange);
    /* Couleur légèrement plus foncée */
    transform: scale(1.05);
    /* Agrandissement léger */
    color: #FFF
}

#sect-portfolio .filters i {
    display: inline-block;
    width: 29px;
    margin: 0 10px;
    height: 26px;
    vertical-align: middle;
    background: url(../img/star.png) no-repeat 100%;
}

.portfolioResults {
    display: flex;
    flex-wrap: wrap;
    column-gap: 5%;
    transition: all 0.5s ease-in-out 0.3s;
    transform: translateY(100px);
    opacity: 0;
}

.loaded .portfolioResults {
    transform: translateY(0px);
    opacity: 1;
}

.portfolioResults .portfolioItem {
    width: 30%;
    margin-bottom: 40px;
    display: none;
}

.portfolioResults .portfolioItem a {
    position: relative;
    display: block
}

.portfolioResults .portfolioItem.activePortfolio {
    display: block
}

.portfolioResults .portfolioItem .visual {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 10px;
}

.portfolioResults .portfolioItem .visual img,
.portfolioResults .portfolioItem .visual video {
    display: block;
    width: 100%;
}

.portfolioResults .portfolioItem h3 {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #000;
}

.tags span {
    color: var(--color-pink);
    font-size: 13px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    border: 1px solid var(--color-pink);
    border-radius: 20px;
    padding: 4px 8px;
    margin-right: 5px;
    margin-bottom: 2px;
    display: inline-block;
}

#sect-portfolio .h1 {
    text-transform: uppercase;
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 30px;
}

#sect-portfolioDetail {
    padding-top: 200px;
}

#sect-portfolioDetail .mainBanner img,
#sect-portfolioDetail .mainBanner video {
    display: block;
    width: 100%;
}

#sect-portfolioDetail .portfolioContent {
    display: flex;
    align-items: center;
    padding: 100px 0;
}

#sect-portfolioDetail .portfolioContent aside {
    padding-right: 50px;
    width: 45%;
    min-width: 45%;
}

#sect-portfolioDetail .portfolioContent aside img,
#sect-portfolioDetail .portfolioContent aside video {
    width: 100%;
}

#sect-portfolioDetail .portfolioContent main {}

#sect-portfolioDetail .portfolioContent main .title {
    margin-bottom: 50px;
}

#sect-portfolioDetail .portfolioContent main .h2 {
    font-size: 45px;
    font-weight: 500;
    line-height: normal;
}

#sect-portfolioDetail .portfolioContent main .about {
    font-size: 19px;
    line-height: 40px;
}

.portfolioVisuals {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 4%;
}

.portfolioVisuals img,
.portfolioVisuals video {
    display: block;
    width: 100%;
}

.portfolioVisuals div {
    margin-bottom: 4%;
    border-radius: 10px;
}

.portfolioVisuals div.size50 {
    width: 48%;
}

.portfolioVisuals div.size100 {
    width: 100%;
}

#sect-portfolioDetail .portfolioQuote {
    padding-top: 50px;
    margin-bottom: 100px;
}

#sect-portfolioDetail .portfolioQuote bloquote {
    color: var(--color-pink);
    font-size: 44px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: 70%;
    padding-top: 80px;
    background: url(../img/quote.png) no-repeat top left / 80px;
    display: block;
    margin-bottom: 10px;
}

#sect-portfolioDetail .portfolioQuote author {
    font-size: 32px;
    font-weight: 400;
}

#sect-portfolioDetail .linksPrevNext {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

#sect-portfolioDetail .linksPrevNext a.next {
    font-size: 25px;
    color: #000;
    position: relative;
}

#sect-portfolioDetail .linksPrevNext a.next:before {
    content: '';
    width: 50px;
    height: 38px;
    position: absolute;
    background: url(../img/arrowGreen.png) no-repeat left center / 100%;
}

#sect-portfolioDetail .linksPrevNext a.next {
    padding-right: 60px;
    align-self: center;
}

#sect-portfolioDetail .linksPrevNext a.next:before {
    right: 0;
    top: -5px;
}

.logos {
    overflow: hidden;
    padding: 60px 0;
    background: white;
    white-space: nowrap;
    position: relative;
}

.logos:hover .logos-slide {
    animation-play-state: paused;
}

.logos-slide {
    display: inline-block;
    animation: 35s slide infinite linear;
}

.logos-slide img {
    min-width: 100px;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

@media screen and (max-width: 1000px) {
    .h1 {
        font-size: 90px;
    }
    .h2 {
        font-size: 50px;
        line-height: 50px;
    }
}

@media screen and (max-width: 800px) {
    #sect-eco .inside {
        display: block;
    }
    #sect-eco .inside .title .h2 {
        position: relative;
        margin-left: -30px;
        display: inline-block;
    }
    #sect-contact .sticker {
        left: 20px;
    }
    #sect-portfolioDetail .portfolioContent {
        display: block;
        padding: 50px 0 0 0;
    }
    #sect-portfolioDetail .portfolioQuote bloquote {
        width: 100%;
    }
    #sect-portfolioDetail .portfolioContent main {
        padding: 0 0 50px 0;
    }
    #sect-portfolioDetail .portfolioQuote author {
        font-size: 20px
    }
    .turningCircle,
    .sticker {
        width: 150px;
        height: 150px;
    }
    #sect-realisation .portfolioThumbs .thumb {
        transform: translateY(0px) !important;
    }
    #sect-about .services .service {
        transform: translateY(0px) !important;
    }
    #confettis1 {
        display: none;
    }
    #confettis2 {
        display: none;
    }
    #confettis3 {
        display: none;
    }
    #confettis4 {
        display: none;
    }
    #sect-portfolioDetail .linksPrevNext {
        display: block;
    }
    #sect-portfolioDetail .linksPrevNext a.next:before {
        width: 30px;
        height: 30px;
    }
    #sect-portfolioDetail .linksPrevNext a.next {
        padding-right: 40px;
        margin-top: 20px;
        display: inline-block;
    }
    .wrapperHover {
        display: none;
    }
}

@media screen and (max-width: 700px) {
    #sect-realisation .portfolioThumbs .thumb,
    .portfolioResults .portfolioItem {
        width: 47%;
    }
    #sect-realisation .portfolioThumbs .thumb .tag {
        width: 70px;
        top: -10px;
        right: -10px;
    }
    #sect-portfolio .filters span {
        font-size: 14px;
        padding: 10px
    }
    .h1,
    #sect-portfolio .h1 {
        font-size: 40px;
    }
    .portfolioResults .portfolioItem h3 {
        font-size: 18px;
    }
    #navigation ul li {
        display: block;
    }
    #navigation ul {
        text-align: right;
    }
    #navigation ul li a {
        font-size: 18px;
    }
    .btn {
        font-size: 20px;
        padding: 13px 30px 13px 70px;
    }
    .btn b {
        width: 52px;
        height: 52px;
    }
    #sect-portfolioDetail .portfolioQuote bloquote {
        font-size: 24px;
    }
    .notInMobile {
        display: none;
    }
    #navigation ul li.contact a {
        margin-top: 10px
    }
    #sect-contact .btn {
        min-width: 100px;
        padding: 13px 30px 13px 65px;
    }
    #sect-about {
        padding: 80px 0;
    }
    #sect-portfolioDetail .portfolioContent main .h2 {
        font-size: 25px;
    }
    #sect-portfolioDetail .portfolioContent main .title {
        margin-bottom: 20px;
    }
    .sticker {
        transform: scale(0.7);
    }
    #sect-topBanner .mainVisual .sticker {
        position: absolute;
        top: -90px;
        left: 0;
        z-index: 3;
    }
    .h2 {
        font-size: 35px;
    }
    #sect-eco .inside .title {
        min-width: 0;
        margin-bottom: 20px;
    }
    #sect-topBanner .h2 br {
        display: none;
    }
    #sect-topBanner .wrapper {
        padding-bottom: 100px;
    }
    .wrapper {
        padding: 0 6%
    }
    .popup {
        width: 96%;
        transform: translate(100vw, 0);
    }
    #sect-team .team {
        width: 100%;
    }
    #sect-team .team h4 {
        font-size: 20px;
    }
    #sect-contact {
        padding: 80px 0;
        padding-top: 140px;
    }
    .questionAns .question {
        font-size: 20px;
    }
    #sect-contact .sticker {
        left: 0;
        top: 0
    }
    .questionAns {
        padding: 10px 0;
    }
    #sect-eco .inside {
        width: 100%;
        border-radius: 0;
    }
    .cursor {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    #sect-about .service {
        margin-top: 0!important;
    }
    #sect-about .services {
        flex-wrap: wrap;
    }
    #sect-about .services .service {
        width: 47%;
        margin-bottom: 5%;
    }
    /*#sect-realisation .introReal .columnText {
        column-count: 1;
    }*/
    footer .footer {
        display: block;
    }
    footer .footer .logo {
        margin-bottom: 20px;
    }
    footer .footer .footerContacts,
    footer .footer .logo {
        margin-bottom: 20px;
    }
}

.circle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #fff;
}

.circle {
    position: relative;
    width: 40px;
    height: 40px;
    background-color: rgb(0, 0, 0);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.eye {
    position: relative;
    width: 110px;
    display: inline-block;
    height: 110px;
    overflow: hidden;
    border-radius: 50%
}

.eye img {
    display: block;
    width: 101%!important;
    position: absolute
}

.eye .top,
.eye .bot {
    width: 100%;
    height: 50%;
    position: absolute;
    background-color: var(--color-pink);
    transition: all 0.5s ease-in-out;
    left: 0;
}

@keyframes blink {
    0%,
    90%,
    100% {
        transform: translateY(-100%);
    }
    95% {
        transform: translateY(0);
    }
}

.eye .top {
    animation: blink 5s infinite;
    top: 0;
    transform-origin: bottom;
    transform: translateY(-100%);
}

@keyframes blink-bottom {
    0%,
    90%,
    100% {
        transform: translateY(100%);
    }
    95% {
        transform: translateY(0);
    }
}

.eye .bot {
    animation: blink-bottom 5s infinite;
    bottom: 0;
    transform-origin: top;
    transform: translateY(100%);
}


/* Classe active pour l'animation */

.eye.blink .top {
    transform: translateY(0);
}

.eye.blink .bot {
    transform: translateY(0);
}


/* Animation Keyframes */

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* Animation Keyframes */

@keyframes heartbeat {
    0%,
    100% {
        transform: scale(1) rotate(-5deg);
    }
    25% {
        transform: scale(1.2) rotate(0deg);
    }
    50% {
        transform: scale(1) rotate(-5deg);
    }
}

@keyframes smoke {
    0%,
    100% {
        opacity: 1;
        filter: blur(2px);
        transform: translateY(0);
    }
    25% {
        opacity: 0.8;
        filter: blur(3px);
        transform: translateY(3px);
    }
    50% {
        opacity: 1;
        filter: blur(2px);
        transform: translateY(5px);
    }
}


/* Style pour le cercle du curseur */

.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background-color: rgba(254, 142, 190, 0.5);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: transform 0.8s ease-out;
    mix-blend-mode: multiply
}

.confetti {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.8;
}


/* FROM WYSIWYG */

.fromWYSIWYG {}

.fromWYSIWYG h1 {
    font-size: 50px!important;
    line-height: 50px!important;
    margin-bottom: 30px;
    transform: translateY(0px)!important;
    opacity: 1!important;
}

.fromWYSIWYG p,
.fromWYSIWYG li {
    font-size: 18px;
    line-height: 39px;
}

.fromWYSIWYG p {
    margin-bottom: 20px;
}

.popup .fromWYSIWYG p,
.popup .fromWYSIWYG li {
    font-size: 15px;
    line-height: 30px;
}

.fromWYSIWYG h2 {
    font-size: 45px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 20px;
}

.fromWYSIWYG h3 {
    font-size: 30px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 20px;
}

.fromWYSIWYG ul li {
    list-style: disc inside;
}

.fromWYSIWYG ol li {
    list-style: auto inside;
}