/*=== VARIABLES ===*/
:root {
    --k-studio: #13BA90;
    --k-led: #175EF3;
    --k-events: #D8093B;
    --k-yellow: #E8DA32;
}

@font-face {
    font-family: 'GeogrotesqueCyr';
    src: url('/wp-content/themes/bmvcom/assets/fonts/GeogrotesqueCyr-Bold.ttf');
    font-weight: bold;
}

@font-face {
    font-family: 'GeogrotesqueCyr';
    src: url('/wp-content/themes/bmvcom/assets/fonts/GeogrotesqueCyr-BoldItalic.ttf');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'GeogrotesqueCyr';
    src: url('/wp-content/themes/bmvcom/assets/fonts/GeogrotesqueCyr-ExtLtIta.ttf');
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: 'GeogrotesqueCyr';
    src: url('/wp-content/themes/bmvcom/assets/fonts/GeogrotesqueCyr-ExtraLight.ttf');
    font-weight: 200;
}

@font-face {
    font-family: 'GeogrotesqueCyr';
    src: url('/wp-content/themes/bmvcom/assets/fonts/GeogrotesqueCyr-Italic.ttf');
    font-style: italic;
}

@font-face {
    font-family: 'GeogrotesqueCyr';
    src: url('/wp-content/themes/bmvcom/assets/fonts/GeogrotesqueCyr-Light.ttf');
    font-weight: 300;
}

@font-face {
    font-family: 'GeogrotesqueCyr';
    src: url('/wp-content/themes/bmvcom/assets/fonts/GeogrotesqueCyr-LightItalic.ttf');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'GeogrotesqueCyr';
    src: url('/wp-content/themes/bmvcom/assets/fonts/GeogrotesqueCyr-Medium.ttf');
    font-weight: 500;
}

@font-face {
    font-family: 'GeogrotesqueCyr';
    src: url('/wp-content/themes/bmvcom/assets/fonts/GeogrotesqueCyr-MediumItalic.ttf');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'GeogrotesqueCyr';
    src: url('/wp-content/themes/bmvcom/assets/fonts/GeogrotesqueCyr-Regular.ttf');
    font-weight: normal;
}

@font-face {
    font-family: 'GeogrotesqueCyr';
    src: url('/wp-content/themes/bmvcom/assets/fonts/GeogrotesqueCyr-SemBdIta.ttf');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'GeogrotesqueCyr';
    src: url('/wp-content/themes/bmvcom/assets/fonts/GeogrotesqueCyr-SemiBold.ttf');
    font-weight: bold;
}

@font-face {
    font-family: 'GeogrotesqueCyr';
    src: url('/wp-content/themes/bmvcom/assets/fonts/GeogrotesqueCyr-Thin.ttf');
    font-weight: 100;
}

@font-face {
    font-family: 'GeogrotesqueCyr';
    src: url('/wp-content/themes/bmvcom/assets/fonts/GeogrotesqueCyr-ThinItalic.ttf');
    font-weight: 100;
    font-style: italic;
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: clip;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

::-webkit-scrollbar {
    width: 0;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'GeogrotesqueCyr', sans-serif;
}

.not-home {
    margin-top: 8rem;
}

section { position: relative; }

.wrapper {
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;
    margin: 0 auto;
}

/*=== LOAD | RELOAD ANIMATION ===*/
#page-load {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 1;
    pointer-events: none;
    z-index: 9999;
}

#page-reload {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    transition: opacity .2s ease-in-out;
}

#page-reload.active {
    opacity: 1;
}

/*=== CTA YELLOW ===*/
.yellow-cta {
    display: flex;
    justify-content: space-evenly;
    align-items: baseline;
    color: #FFFFFF;
    font-size: 25px;
    text-transform: uppercase;
    font-weight: bold;
    font-style: italic;
    line-height: 1;
    width: 100%;
    max-width: fit-content;
    padding: 0.5rem 1rem 0.5rem 1rem;
    border: 1px solid var(--k-yellow);
    border-radius: 30px;
    transition: all .2s ease-in-out;
}

.footer .yellow-cta {
    animation: pulse 2s infinite cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.yellow-cta svg {
    fill: #FFFFFF;
    width: 1rem;
    height: 1rem;
    transition: all .2s ease-in-out;
}

.yellow-cta:hover {
    color: #000000;
    background-color: var(--k-yellow);
}

.yellow-cta:hover svg {
    fill: #000000;
    transform: translateX(5px);
}

/*=== HEADER ===*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: .2rem 1rem;
    background-color: #000000;
    border-bottom: 1px solid #e9da31;
    box-shadow: 0px 5px 15px -10px #000000;
    backdrop-filter: blur(5px);
    z-index: 20;
    transition: opacity .4s .2s ease-in-out, top .4s .2s ease-in-out;
}

.header.home-header {
    top: -100%;
    background-color: transparent;
}

.header.scrolled {
    opacity: 0;
}

.header:hover {
    opacity: 1;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.header-wrapper-logo {
    width: 8rem;
    height: 8rem;
    z-index: 1;
}

.header.home-header .header-wrapper-logo {
    width: 5rem;
    height: 5rem;
}

.header-wrapper-logo.open { width: 5rem; }

.header-wrapper-logo img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.header nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    transition: all .4s ease-in-out;
}

.header nav .menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header nav .menu li { line-height: 1.2; }

.header nav .menu li a {
    position: relative;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    padding: .75rem 1rem;
    transition: color .2s ease-in-out;
}

.header nav .menu li:not(:nth-child(6)) a::before {
    background: var(--k-yellow);
    content: "";
    inset: 0;
    position: absolute;
    transform: scaleX(0) skewX(-10deg);
    transform-origin: right;
    transition: transform .2s ease-in-out;
    z-index: -1;
}

.header nav .menu li:nth-child(2) a::before { background: var(--k-led); }
.header nav .menu li:nth-child(3) a::before { background: var(--k-studio); }
.header nav .menu li:nth-child(4) a::before { background: var(--k-events); }

.header nav .menu li:nth-child(1) a:hover,
.header nav .menu li:nth-child(5) a:hover { color: #000000; }

.header nav .menu li:nth-child(6) a:hover { color: var(--k-yellow); }

.header nav .menu li:not(:nth-child(6)) a:hover::before,
.header nav .menu li:not(:nth-child(6)).current-menu-item a::before {
    transform: scaleX(1) skewX(-10deg);
    transform-origin: left;
}

.header nav .menu li:nth-child(1).current-menu-item a,
.header nav .menu li:nth-child(5).current-menu-item a { color: #000000; }

.header nav .menu li:nth-child(6) a::before {
    content: "";
    position: absolute;
    top: -2.4rem;
    left: 0;
    width: 11rem;
    height: 5.5rem;
    background-image: url(/wp-content/themes/bmvcom/assets/images/paper-plane.webp);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
    transition: transform .2s ease-in-out;
}

.header.home-header nav .menu li:nth-child(6) a::before {
    top: -1.15rem;
    width: 12rem;
    height: 3.5rem;
}

.header nav .menu li:nth-child(6) a:hover::before {
    transform: translateX(5px);
}

.header nav .menu li:nth-child(6).current-menu-item a { color: var(--k-yellow); }

.header nav.open {
    top: 0;
    opacity: 1;
    pointer-events: all;
}

.header nav.open .menu li:nth-child(6) a::before {
    top: -.8rem;
    left: 3rem;
}

.header-wrapper-burger {
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: .5rem;
    width: 3rem;
    height: 3rem;
    line-height: 1;
    cursor: pointer;
    z-index: 1;
}

.header-wrapper-burger span {
    display: block;
    width: 3rem;
    height: .25rem;
    background-color: #FFFFFF;
    line-height: 1;
    border: 1px solid #FFFFFF;
    border-radius: 5px;
    transition: all .2s ease-in-out;
}

.header-wrapper-burger.open span:nth-child(1) {
    transform: translate(0px, 11px) rotate(45deg);
}
.header-wrapper-burger.open span:nth-child(2) {
    opacity: 0;
}
.header-wrapper-burger.open span:nth-child(3) {
    transform: translate(0px, -11px) rotate(-45deg);
}

/*=== CTA CONTACT ===*/
.fixed-cta-contact {
    position: fixed;
    top: 50%;
    display: flex;
    color: #000000;
    right: -7rem;
    box-shadow: 0 0 8px 0 #6d6d6d6b;
    font-size: 24px;
    line-height: 0;
    background-color: var(--k-yellow);
    padding: 1.5rem 3rem 2rem 3rem;
    border: 1px solid var(--k-yellow);
    border-radius: 20px 20px 0 0;
    transform: rotate(-90deg);
    z-index: 22;
    transition: all .2s ease-in-out;
}

.fixed-cta-contact.active {
    right: -7rem;
    box-shadow: 0 0 8px 0 #6d6d6d6b;
}

.fixed-cta-contact:hover {
    color: #000000;
    right: -6.5rem;
}

/*=== KOMIS LED ===*/
.page-template-komis-led { background-color: #000000; }

.hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: 90vh;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

 .komis-led .hero::before {
    background: transparent linear-gradient(360deg, #094997 0, #05254C00 100%) 0 0 no-repeat padding-box;
    mix-blend-mode: multiply;
}

.emotions-led img {
    max-width: 22%;
    left: calc(50% - 11%) !important;
}

main.komis-studio::before {
    content: "";
    position: absolute;
    top: 15rem;
    left: -50%;
    width: 100%;
    height: 70rem;
    background-image: url(/wp-content/themes/bmvcom/assets/images/trame-verte-campagnes-videos.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
}

/* .komis-studio .hero::before,
.emotions-studio::before{
    background-color: #119174;
    mix-blend-mode: multiply;
} */

/* .komis-events .hero::before,
.emotions-events::before {
    background-color: #D30024;
    mix-blend-mode: multiply;
} */

/* .komis-studio .hero::after,
.emotions-studio::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 101%;
    height: 100%;
    background-color: #119174;
    mix-blend-mode: hue;
    z-index: 1;
    transform: translate3d(0, 0, 0);
} */

.hero .separator {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 10rem;
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.500437675070028) 50%, rgba(0,0,0,0) 100%);
}

.hero .wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    padding: 0 0 10rem 0;
    z-index: 2;
}

/*.hero .wrapper h1 {
    color: #FFFFFF;
    font-size: 80px;
    font-weight: bold;
    margin: 0 0 4rem 0;
}*/

.hero .wrapper img {
    width: 100%;
    max-width: 25rem;
    object-fit: contain;
    margin: 0;
}

.hero .wrapper h2 {
    color: #FFFFFF;
    font-size: 60px;
    font-weight: bold;
    text-align: center;
    width: 80%;
    line-height: 1;
    margin: 0 0 1rem 0;
}

.hero .wrapper h3 {
    color: #FFFFFF;
    font-size: 25px;
    font-weight: 500;
    text-align: center;
    line-height: 1;
    width: 92%;
}

.counters {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 8rem 0 0 0;
}

.counters .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.counter-item {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    width: calc(100% / 3);
}

.counter-item {
    z-index: 1;
    text-shadow: 0 0 15px black;
}

.counter-title {
    color: #FFFFFF;
    font-size: 70px;
    font-weight: bold;
}

.counter-desc {
    color: #FFFFFF;
    font-size: 25px;
    font-weight: 300;
    text-align: center;
    line-height: 1.2;
    margin: 0;
    max-width: 65%;
}

.komis-events .counter-desc { max-width: 90%; }

.komis-led .counter-item:nth-child(2) .counter-title,
.komis-led .counter-item:nth-child(2) .counter-desc { color: var(--k-yellow); }

.komis-events .counter-item:nth-child(2n) .counter-title,
.komis-events .counter-item:nth-child(2n) .counter-desc { color: var(--k-yellow); }

.counters-information {
    width: 100%;
    max-width: 50%;
    margin: 2rem auto;
    text-align: center;
    color: #FFFFFF;
    font-size: 25px;
}

/*=== NOS SOLUTIONS ===*/
.solutions {
    position: relative;
    margin: 4rem 0 0 0;
    padding: 8rem 0 8rem 0;
    background-image: url(/wp-content/uploads/2023/11/solution-bg-blue.webp);
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
}

.solutions::before {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 100%;
    height: 100%;
    background-image: url(/wp-content/themes/bmvcom/assets/images/trame-led-bleu-solutions.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
}
.references-slider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 5rem;
    height: 100%;
    background: linear-gradient(-270deg, black, transparent);
}
.references-slider::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    width: 5rem;
    height: 100%;
    background: linear-gradient(270deg, black, transparent);
}

.solutions .splide__arrow,
.references .splide__arrow {
    background: transparent;
    opacity: 1;
}

.solutions .splide__arrow--next { right: -2rem; }

.solutions .splide__arrow svg,
.references .splide__arrow svg {
    fill: #FFFFFF;
    width: 2.2rem;
    height: 2.2rem;
}

.solutions .splide__arrow svg path {
    filter: drop-shadow(0 0 0 var(--k-yellow));
    animation: slider-arrow-shadow 2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

.solution-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 2rem;
    grid-row-gap: 0;
}
/* .solution-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
} */

.solution-img {
    width: 45rem;
}

.solutions-img img {
    width: 100%;
    max-width: unset;
}

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

.section-title {
    color: #FFFFFF;
    font-size: 45px;
    font-weight: bold;
    width: 100%;
}

.section-desc {
    color: #FFFFFF;
    font-size: 25px;
    font-weight: 300;
    margin: 0;
    width: 100%;
    max-width: 35rem;
}

.solution-content-title {
    color: #FFFFFF;
    font-size: 45px;
    font-weight: bold;
    width: 100%;
    max-width: 20rem;
    line-height: .8;
}

.solution-content-desc {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 300;
    width: 100%;
    max-width: 20rem;
}

/*=== ACCOMPAGNEMENT ===*/
.accompagnements {
    position: relative;
    padding: 4rem 0 8rem 0;
}

.accompagnements::before {
    content: "";
    position: absolute;
    top: 8rem;
    left: -30%;
    width: 100%;
    height: 55rem;
    background-image: url(/wp-content/themes/bmvcom/assets/images/trame-led-bleu-solutions.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
}

.accompagnements .section-title { margin-bottom: 1rem; }

.accompagnements .section-title,
.accompagnements .section-desc {
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.accompagnements-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 2rem;
    grid-row-gap: 0;
    margin: 4rem 0 0 0;
}
.komis-studio .accompagnements-grid,
.komis-events .accompagnements-grid {
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
}

.accordion-list {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    position: relative;
    width: 100%;
    max-width: 30rem;
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    border-radius: 30px;
    padding: 1rem 2rem;
    line-height: 1.4;
    cursor: pointer;
    transition: background-color .2s ease-in-out, border-color .2s ease-in-out;
}

.accordion-icon {
    position: absolute;
    top: calc(32px - .5rem);
    right: 1rem;
    width: 1rem;
    height: 1rem;
    transform: rotate(90deg);
    transition: transform .2s ease-in-out;
}

.accordion-item.open .accordion-icon {
    transform: rotate(30deg);
}

.accordion-icon svg,
.accordion-item.open .accordion-icon svg,
.accordion-item:hover .accordion-icon svg { fill: #FFFFFF; }

.accordion-led .accordion-icon svg { fill: var(--k-led); }

.accordion-title {
    font-size: 20px;
    font-weight: bold;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .2s ease-in-out;
}

.accordion-content p {
    margin: -.1rem 0 0 0;
    font-weight: 300;
    font-size: 20px;
}

.accordion-led .accordion-item { border-color: var(--k-led); }

.accordion-led .accordion-item.open,
.accordion-led .accordion-item:hover {
    border-color: #FFFFFF;
    background-color: var(--k-led);
}

.accompagnements-img {
    position: absolute;
    top: 0;
    right: -10rem;
    z-index: -1;
    width: 70%;
}
.accompagnements-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.komis-events .accordion-list,
.komis-studio .accordion-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 1rem;
}
/*=== PAGE KOMIS STUDIO ===*/
.page-template-komis-studio { background-color: #000000; }

.accordion-studio .accordion-item { border-color: var(--k-studio); }

.accordion-studio .accordion-icon svg { fill: var(--k-studio); }

.accordion-studio .accordion-item.open  .accordion-icon svg { fill: #FFFFFF; }

.accordion-studio .accordion-item.open,
.accordion-studio .accordion-item:hover {
    border-color: #FFFFFF;
    background-color: var(--k-studio);
}

.services.campagnes-videos {
    position: relative;
    margin-top: 4rem;
    padding: 4rem 0 0 0;
    /*background-image: url(/wp-content/uploads/2023/11/service-campagne-vert.webp);
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;*/
    background: linear-gradient(60deg, rgba(17,145,116,0) 35%, rgba(17,145,116,1) 100%);
    clip-path: polygon(0 4rem,100% 0,100% 100%,0 100%);
}

/*.services.campagnes-videos::before {
    content: "";
    position: absolute;
    top: -35rem;
    left: -50%;
    width: 100%;
    height: 70rem;
    background-image: url(/wp-content/themes/bmvcom/assets/images/trame-verte-campagnes-videos.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
}*/

.services .wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    min-height: 70vh;
}

.services-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    z-index: 1;
}

.services-content h4 {
    color: #FFFFFF;
    font-size: 50px;
    line-height: 1;
    font-weight: 600;
    text-shadow: 0 0 8px black;
}

.services-content p {
    color: #FFFFFF;
    font-size: 22px;
    width: 100%;
    max-width: 78%;
    margin: 1rem 0 0 0;
    z-index: 1;
    text-shadow: 0 0 8px black;
}

.habillage-complet .services-content h4 {
    background-color: #00000047;
    padding: 2rem 2rem 1rem 2rem;
}

.habillage-complet .services-content p {
    background-color: #00000047;
    margin: 0;
    padding: 0 2rem 2rem 2rem;
    max-width: 512px;
}

.services-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.services-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.campagnes-videos .services-img-wrapper img.campagnes-videos-img-2 { transform: translate(-35px, 5px); }
.campagnes-videos .services-img-wrapper img.campagnes-videos-img-3 { transform: translate(-20px, 50px); }
.campagnes-videos .services-img-wrapper img.campagnes-videos-img-4 { transform: translate(350px, 100px); }
.campagnes-videos .services-img-wrapper img.campagnes-videos-img-5 { transform: translate(50px, 30px); }

.services.creations-visuelles {
    background-image: url(/wp-content/uploads/2023/11/creations-visuelles.webp);
    background-size: 100%;
    background-position: center left;
    background-repeat: no-repeat;
    clip-path: polygon(0 0,100% 4rem,100% 100%,0 100%);
    margin-top: -4rem;
}

.creations-visuelles .services-content p { max-width: 70%; }

.services.branding {
    position: relative;
    clip-path: polygon(0 4rem,100% 0,100% 100%,0 100%);
    margin-top: -4rem;
    background-color: #000000;
}

.branding .services-content p { max-width: 80%; }

.branding .services-img-wrapper img:nth-child(2) { transform: translate(0, 75px) scale(.8); }

.branding .services-img-wrapper img { top: -6rem; }

.services.branding::before {
    content: "";
    position: absolute;
    top: -8rem;
    left: -50%;
    width: 100%;
    height: 70rem;
    background-image: url(/wp-content/themes/bmvcom/assets/images/trame-verte-campagnes-videos.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
}

/*.komis-studio .accompagnements { margin-top: 8rem; }*/

.komis-studio .accompagnements::before {
    top: 4rem;
    left: unset;
    right: -30%;
    background-image: url(/wp-content/themes/bmvcom/assets/images/trame-accompagnement-studio.webp);
    transform: rotate(131deg);
}

/*=== KOMIS EVENTS ===*/
.page-template-komis-events {
    background-color: #000000;
}

.affichage-dynamique {
    position: relative;
    margin-top: 4rem;
    background-image: url(/wp-content/uploads/2023/11/events-bg-guitare.webp);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.affichage-dynamique .services-img-wrapper img {
    position: absolute;
    top: unset;
    bottom: -14px;
    left: 100px;
    width: 80%;
    transform: rotate(-4.7deg);
}

@media screen and (max-height: 670px) {
    .affichage-dynamique .services-img-wrapper img {
        bottom: -115px;
    }
}

.habillage-complet {
    position: relative;
    clip-path: polygon(0 0,100% 4rem,100% 100%,0 100%);
    margin-top: -4rem;
}

.habillage-complet-stade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/wp-content/uploads/2024/02/habillage_stade.webp);
    background-size: 100%;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.habillage-complet-bache {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url(/wp-content/uploads/2024/02/habillage_stade_bache.webp); */
    /* background-image: url(/wp-content/uploads/2024/08/habillage_stade_bachev2.png); */
    background-image: url(/wp-content/uploads/2024/08/habillage_stade_bachev2-crop.png);
    background-size: contain;
    background-position: 0 100%;
    background-repeat: no-repeat;
    z-index: -1;
}

.habillage-complet-shine {
    width:100%;
    height:100%;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    z-index:-1;
    background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(128,186,232,0) 99%, rgba(125,185,232,0) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,0)), color-stop(50%,rgba(255,255,255,0.8)), color-stop(99%,rgba(128,186,232,0)), color-stop(100%,rgba(125,185,232,0))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,0.8) 50%,rgba(128,186,232,0) 99%,rgba(125,185,232,0) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,0.8) 50%,rgba(128,186,232,0) 99%,rgba(125,185,232,0) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,0.8) 50%,rgba(128,186,232,0) 99%,rgba(125,185,232,0) 100%); /* IE10+ */
    background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,0.8) 50%,rgba(128,186,232,0) 99%,rgba(125,185,232,0) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#007db9e8',GradientType=1 );
}

.accordion-events .accordion-item { border-color: var(--k-events); }

.accordion-events .accordion-icon svg { fill: var(--k-events); }

.accordion-events .accordion-item.open  .accordion-icon svg { fill: #FFFFFF; }

.accordion-events .accordion-item.open,
.accordion-events .accordion-item:hover {
    border-color: #FFFFFF;
    background-color: var(--k-events);
}

.komis-events .accompagnements {
    margin-top: -4rem;
    position: relative;
    background: #000000;
    padding: 8rem 0 8rem 0;
    clip-path: polygon(0 4rem,100% 0,100% 100%,0 100%);
}

.komis-events .accompagnements::before {
    top: -15rem;
    left: unset;
    right: -35%;
    height: 44rem;
    background-image: url(/wp-content/uploads/2023/11/trame-red-events.webp);
    transform: rotate(-15deg);
}

.komis-events .accompagnements::after {
    content: "";
    position: absolute;
    top: 15rem;
    left: -35%;
    right: unset;
    width: 100%;
    height: 44rem;
    background-image: url(/wp-content/uploads/2023/11/trame-red-events.webp);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
    transform: rotate(100deg);
}

/*=== L'AGENCE KOMIS ===*/
.page-template-komis-agence { background-color: #000000; }

.page-template-komis-agence .hero::before {
    background: linear-gradient(0deg, black, transparent);
}

.agence-services { position: relative; }

.agence-services::after {
    content: "";
    position: absolute;
    top: 12rem;
    right: -50%;
    width: 100%;
    height: 40rem;
    background-image: url(/wp-content/themes/bmvcom/assets/images/trame-agence-grille.webp);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
}

.agence-services .wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
}

.agence-services-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
}

.agence-services-item img {
    width: 100%;
    max-width: 35%;
    height: 8rem;
    object-fit: contain;
}

.agence-services-item span {
    color: #FFFFFF;
    font-size: 35px;
    font-weight: 600;
    text-align: center;
    line-height: 1;
}

.informations { margin: 8rem 0 0 0; }

.informations .wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
}

.informations-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 2rem;
}

.informations-chiffres {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    color: #FFFFFF;
    font-size: 55px;
    font-weight: 600;
    line-height: 1;
    margin: 0;
}

.informations-chiffres span:not(.counter-animated) {
    font-size: 25px;
    font-weight: 400;
}

.informations-pole-link {
    width: 100%;
    max-width: 35%;
}

.terrain { margin: 8rem 0 0 0; }

.terrain .wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
}

.terrain-content {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
}

.terrain-content h4,
.equipe h4 {
    color: var(--k-yellow);
    font-size: 45px;
    font-weight: 600;
    width: 100%;
    max-width: 65%;
    line-height: 1;
    margin: 0 0 2rem 0;
}

.terrain-img { position: relative; }

.terrain-img::before {
    content: "";
    position: absolute;
    top: -2rem;
    left: 0;
    width: 96%;
    height: 70%;
    background-image: url(/wp-content/themes/bmvcom/assets/images/trame-agence-grille.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
}

.terrain-img img { width: 90%; }

.terrain-item + .terrain-item {
    margin: 2rem 0 0 0;
}

.terrain-item span {
    color: var(--k-yellow);
    font-size: 20px;
    font-weight: 600;
}

.terrain-item p {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
    width: 100%;
    max-width: 70%;
    margin: 0;
}

.equipe { margin: 8rem 0 0 0; }

.equipe .wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
}

.equipe .equipe-title { margin-bottom: 1rem; }

.equipe .equipe-subtitle {
    color: #FFFFFF;
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.equipe-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
}

.equipe-item span:nth-child(1) {
    display: block;
    width: 100%;
    color: var(--k-yellow);
    font-size: 18px;
    font-weight: 600;
}

.equipe-item span:nth-child(2) {
    display: block;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 300;
    max-width: 12rem;
    line-height: 1;
}

.equipe-item img {
    width: 100%;
    max-width: 12rem;
    margin-top: 1rem;
}

.equipe-carte-france { position: relative; }

.equipe-carte-france::before {
    content: "";
    position: absolute;
    top: -3rem;
    right: -25%;
    width: 130%;
    height: 100%;
    background-image: url(/wp-content/themes/bmvcom/assets/images/trame-agence-grille.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
}

.equipe-carte-france svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.icone-k {
    position: absolute;
    top: 33.5%;
    left: 43%;
    width: 25px;
}

.icone-k-nord {
    position: absolute;
    top: 7%;
    left: 53%;
    width: 25px;
}

.icone-k-normandie {
    position: absolute;
    top: 19%;
    left: 39%;
    width: 25px;
}

.icone-k-troyes {
    position: absolute;
    top: 37%;
    left: 65%;
    width: 25px;
}

.icone-k-grenoble {
    position: absolute;
    top: 58%;
    left: 77%;
    width: 25px;
}

.icone-siege {
    position: absolute;
    bottom: 26%;
    left: 46%;
    width: 90px;
}

.equipe-carte-legende { margin: -2rem 0 0 2rem; }

.equipe-carte-info {
    color: #FFFFFF;
    font-size: 25px;
    font-weight: 300;
    width: 100%;
    /*max-width: 20rem;*/
    margin: 2rem 0 0 2rem;
}

.legende-equipe,
.legende-references p {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    gap: 0.5rem;
    line-height: 1;
    margin: 0;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 300;
}

.legende-equipe img {
    width: 18px;
    height: 18px;
}

.legende-references {
    display: flex;
    gap: 2rem;
    margin: 1rem 0 0 0;
}

.legende-references-circle {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 20px;
}

.legende-references-circle.circle-yellow { background-color: var(--k-yellow); }
.legende-references-circle.circle-red { background-color: var(--k-events); }

/*=== CONTACT ===*/
.page-template-komis-contact { background: linear-gradient(180deg, rgba(0,0,0,1) 0, rgba(128,128,128,1) 100%); }

.contact-hero { margin: 4rem 0 0 0; }

.contact-hero .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contact-hero h1 {
    color: #FFFFFF;
    font-size: 55px;
    font-weight: 600;
}

.contact-hero h2 {
    color: #FFFFFF;
    font-size: 35px;
    font-weight: 300;
    max-width: 26rem;
    text-align: center;
    line-height: 1;
}

.contact-hero h3 {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 600;
    max-width: 18rem;
    text-align: center;
    line-height: 1;
    margin: .5rem 0 0 0;
}

.formulaire { margin: 4rem 0 0 0; }

.formulaire::before {
    content: "";
    position: absolute;
    top: -6rem;
    right: -15%;
    width: 70%;
    height: 80%;
    background-image: url(/wp-content/themes/bmvcom/assets/images/trame-agence-grille.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
}

.formulaire .wrapper {
    display: grid;
    grid-template-columns: 1fr .6fr;
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.formulaire-adresse p,
.formulaire-adresse a {
    color: #FFFFFF;
    font-size: 22px;
    margin: .8rem 0 0 0;
}

.formulaire-adresse img {
    mix-blend-mode: screen;
    margin: 0 0 1rem 0;
}

.form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.formulaire-contact .rgpd-checkbox, .wpcf7-response-output{
    color: white;
}

.formulaire-contact .rgpd-checkbox a {
    color: var(--k-yellow);
}

.form-input + .form-input,
.form-textarea { margin: 1.5rem 0 0 0; }

.form-input input,
.form-textarea textarea,
.form-input select {
    padding: .8rem 2rem !important;
    border: 2px solid var(--k-yellow);
    border-radius: 38px;
    background-color: #000000;
    color: #FFFFFF;
    resize: none;
}

.form-input select {
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-input ::placeholder,
.form-textarea ::placeholder { color: #FFFFFF; }

.wpcf7 input:not([type=submit]):focus, .wpcf7 select:focus, .wpcf7 textarea:focus {
    background-color: #000000;
    border: 2px solid var(--k-yellow);
    color: #FFFFFF;
}

.form-submit input {
    padding: 1rem 2rem !important;
    border: 2px solid var(--k-yellow);
    border-radius: 38px;
    background-color: #000000;
    color: #FFFFFF;
    font-size: 22px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    margin: 1rem 0 0 0;
    transition: all .2s ease-in-out;
}

.form-submit input:hover {
    background-color: var(--k-yellow);
    color: #000000;
    border: 2px solid var(--k-yellow);
}

    /*=== RÉALISATIONS ===*/
.realisations {
    position: relative;
    margin: 4rem 0 0 0;
}

.realisations::before {
    content: "";
    position: absolute;
    top: 8rem;
    left: -30%;
    width: 100%;
    height: 55rem;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
}

.komis-led .realisations::before { background-image: url(/wp-content/themes/bmvcom/assets/images/trame-led-bleu-solutions.svg); }

.komis-studio .realisations::before {
    background-image: url(/wp-content/themes/bmvcom/assets/images/trame-verte-campagnes-videos.svg);
    top: -6rem;
    left: -42%;
    transform: rotate(-48deg);
}

.komis-events .realisations::before { background-image: url(/wp-content/uploads/2023/11/trame-red-events.webp); }


.realisations::after {
    content: "";
    position: absolute;
    bottom: -25rem;
    right: -30%;
    width: 100%;
    height: 55rem;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -2;
}

.komis-led .realisations::after { background-image: url(/wp-content/themes/bmvcom/assets/images/trame-led-bleu-solutions.svg); }

.komis-studio .realisations::after {
    background-image: url(/wp-content/themes/bmvcom/assets/images/trame-verte-campagnes-videos.svg);
    bottom: -10rem;
    right: -35%;
    transform: rotate(120deg);
}

.komis-events .realisations::after { background-image: url(/wp-content/uploads/2023/11/trame-red-events.webp); }


.realisations-title {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0 0 4rem 0;
}

.realisations-title h3 {
    position: relative;
    color: #FFFFFF;
    font-size: 55px;
    font-weight: 300;
    width: fit-content;
    line-height: 1;
}

.realisations-title h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
}

.komis-led .realisations-title h3::after { background-color: var(--k-led); }
.komis-studio .realisations-title h3::after { background-color: var(--k-studio); }
.komis-events .realisations-title h3::after { background-color: var(--k-events); }

.realisations-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    align-items: center;
    justify-content: center;
    align-content: center;
    position: relative;
}

.synapses {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    fill: #FBEC2F;
    animation: fill 2s linear alternate infinite;
}

@keyframes fill {
    from {
        fill-opacity: 1;
        scale: 1;
    }
    to {
        fill-opacity: .5;
        scale: .98;
    }
}
/*.realisations-vignettes {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 2rem;
}*/

.realisations-vignettes .splide__track { width: 100%; }

.realisations-vignettes .splide__arrow {
    background: none;
}

.realisations-vignettes .splide__arrow--next {
    right: -1em;
}
.realisations-vignettes .splide__arrow--prev {
    left: -1em;
}

.realisations-vignettes .splide__arrow svg {
    fill: var(--k-yellow);
    width: 2.5rem;
    height: 2.5rem;
}

.realisations-vignettes-item {
    position: relative;
    border: 3px solid var(--k-yellow);
    border-radius: 23px;
    width: 100%;
    max-width: 15rem;
    height: 8rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform .2s ease-in-out;
}

.realisations-vignettes-item:hover {
    transform: scale(1.02);
}

.realisations-vignettes-item img,
.realisations-display img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.realisations-vignettes-new {
    display: none;
}

.realisations-vignettes-new.active {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--k-yellow);
    border-radius: 0 0 10px 0;
    padding: 0.4rem 1.5rem;
    line-height: 1;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
}

.realisations-display-wrapper {
    position: relative;
    border: 3px solid var(--k-yellow);
    border-radius: 23px;
    width: 100%;
    max-width: 49.5rem;
    height: 28rem;
    margin: 0 auto;
    overflow: hidden;
}

.realisations-display-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0;
    transform: scale(.5) translateX(100%);
    transition: opacity .4s ease-in-out, transform .4s ease-in-out;
}

.realisations-display-wrapper .video {
    position: relative;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: opacity .4s ease-in-out, transform .4s ease-in-out;
}

.realisations-display-wrapper.active .video {
    opacity: 0;
    transform: scale(.5) translateX(-100%);
}

.realisations-display-wrapper.active .realisations-display-content {
    opacity: 1;
    transform: scale(1) translateX(0);
}

.realisations-display-wrapper.active .realisations-display-close {
    opacity: 1;
    pointer-events: all;
}

.realisations-display-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    background: transparent;
    padding: 0;
    line-height: 0;
    backdrop-filter: blur(25px);
    border-radius: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease-in-out;
    animation: pulse-animation 1s infinite;
}

.realisations-display-close svg {
    fill: #FFFFFF;
    height: 2rem;
}

.realisations-display-close:hover,
.realisations-display-close:focus {
    background-color: var(--k-events);
}

#realisation-legende {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--k-yellow);
    width: 100%;
    padding: 0.5rem 1rem;
    line-height: normal;
    text-align: center;
    color: #000000;
    font-size: 16px;
    font-weight: 800;
}

.realisation-galerie {
    height: 100%;
    width: 100%;
    overflow: hidden;
    display: none;
}

.realisation-galerie ul li img {
    width: 100%;
    height: 28rem;
    object-fit: cover;
}

.realisations-cta {
    margin: 4rem 0 0 0;
    text-align: center;
}

.realisations-cta span {
    display: block;
    color: var(--k-yellow);
    font-size: 35px;
    text-transform: uppercase;
    font-weight: 200;
    font-style: italic;
    margin: 0 0 1rem 0;
    line-height: 1;
}

.realisations-cta .yellow-cta { margin: 0 auto; }

/*=== PLUS D'ÉMOTIONS ===*/
.emotions { margin: 8rem 0 0 0; }

.emotions-title {
    color: #FFFFFF;
    font-size: 45px;
    text-align: center;
    margin: 0 0 2rem 0;
    line-height: 1;
}

.emotions-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 8rem;
    grid-row-gap: 0px;
}

.emotions-item {
    position: relative;
    display: block;
    width: 100%;
    height: 18rem;
    text-align: center;
    color: #FFFFFF;
    font-size: 25px;
    font-weight: 500;
}

.emotions-item:hover { color: #FFFFFF; }

.emotions-item img {
    position: absolute;
    top: 0;
    left: calc(50% - 17.5%);
    width: 35%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
}

.emotions-item span {
    display: block;
    margin: 1rem 0 0 0;
}

/*=== RÉFERENCES ===*/
.references { margin: 10rem 0 0 0; }

.references-title {
    color: #FFFFFF;
    font-size: 45px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

.references-subtitle {
    display: flex;
    justify-content: center;
}

.references-subtitle p {
    text-align: center;
    color: #FFFFFF;
    font-size: 25px;
    width: 100%;
    max-width: 70%;
}

    /*=== FOOTER ===*/
.footer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #000000;
    color: #FFFFFF;
    margin: 8rem 0 0 0;
    z-index: 20;
}

.page-template-home .footer { margin: 0; }

.footer-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: 1rem 0;
    padding: 0 1rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid var(--k-yellow);
    padding: 0 0 2rem 0;
}

.footer-cta span {
    color: var(--k-yellow);
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 200;
    font-style: italic;
}

.footer-bottom {
    display: grid;
    grid-template-columns: repeat(5, auto);
    grid-template-rows: 1fr;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    padding: 2rem 0 0 0;
}

.footer-adresse img {
    width: 100%;
    max-width: 5rem;
    margin: 0 0 .5rem 0;
}

.footer-adresse p {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
    padding: 0;
    margin: 0;
    max-width: 14rem;
}

.footer-adresse p a { color: #FFFFFF; }

.footer-lse {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
    width: 100%;
}

.footer-lse a {
    position: relative;
    display: block;
    width: calc(100% / 3);
}


.footer-lse a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity .38s ease-in-out, transform .4s ease-in-out;
}

.footer-lse a img:nth-child(1) { opacity: 0;}

.footer-lse a img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    transform: perspective(1200px) rotateX(0deg);
    transform-origin: bottom;
}

.footer-lse a:hover img:nth-child(1) { opacity: 1; }

.footer-lse a:hover img:nth-child(2) {
    /*opacity: 0;*/
    transform: perspective(1200px) rotateX(-180deg);
}

.footer nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer nav .menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer nav .menu li a {
    position: relative;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    padding: .2rem .4rem;
    z-index: 1;
    transition: color .2s ease-in-out;
}

.footer nav .menu li a:hover,
.footer nav .menu li.current-menu-item a { color: #000000; }

.footer nav .menu li a::before {
    background: var(--k-yellow);
    content: "";
    inset: 0;
    position: absolute;
    transform: scaleX(0) skewX(-10deg);
    transform-origin: right;
    transition: transform .2s ease-in-out;
    z-index: -1;
}

.footer nav .menu li a:hover::before,
.footer nav .menu li.current-menu-item a::before {
    transform: scaleX(1) skewX(-10deg);
    transform-origin: left;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.footer-social a {
    display: flex;
    width: 2rem;
    height: 2rem;
}

.footer-social a svg {
    fill: #FFFFFF;
    width: 100%;
    height: 100%;
    transition: fill .2s ease-in-out, transform .2s ease-in-out;
}

.footer-social a:hover svg {
    fill: var(--k-yellow);
    transform: translateY(-2px);
}

.footer-mentions {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.footer-mentions a {
    position: relative;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
}
.footer-mentions a.bmvcom { font-size: 12px; }

.footer-mentions a.bmvcom::after {
    content: "";
    position: absolute;
    right: -2.5rem;
    top: -2.5rem;
    width: 4rem;
    height: 3rem;
    background-image: url(/wp-content/themes/bmvcom/assets/images/wings.webp);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(45deg);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease-in-out;
}

.footer-mentions a.bmvcom:hover::after { opacity: 1;}


/*=== RESPONSIVE ===*/

/*== 1200 ==*/
@media screen and (max-width: 1200px) {
    .solutions .solution-img { width: 100%; }
    .solutions .splide__arrow--next { right: 1rem; }

}

/*== 1100 ==*/
@media screen and (max-width: 1100px) {
    .footer-lse { flex-direction: column; }

    .footer-lse a { width: calc(100% / 2); }

    .footer-lse a:hover img:nth-child(2) {
        opacity: 0;
        transform: perspective(1200px) rotateX(0deg);
    }
}

/*== 1030 ==*/
@media screen and (max-width: 1030px) {
    .header nav .menu {
        gap: .5rem;
        transition: all .2s ease-in-out;
    }

    .counter-title { font-size: 50px; }
}

/*== 880 ==*/
@media screen and (max-width: 880px) {
    .header-wrapper-logo {
        width: 5rem;
        height: 5rem;
    }

    .header nav {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100vh;
        align-items: center;
        background-color: #000000;
        opacity: 0;
        pointer-events: none;
    }

    .header nav .menu {
        flex-direction: column;
        gap: 3rem;
        padding: 0;
        /* height: 100%; */
    }

    .header nav .menu li a { font-size: 18px; }

    .header-wrapper-burger {
        display: flex;
    }

    .counters .wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4rem;
    }

    .counter-item { width: 100%; }
    .counter-desc { max-width: 100%; }

    .services .wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, 1fr);
        grid-row-gap: 4rem;
    }

    .branding.services .wrapper { grid-row-gap: 0; }

    .services-content p,
    .creations-visuelles .services-content p {
        max-width: 100%;
        font-size: 16px;
    }

    section:not(.affichage-dynamique, .habillage-complet) .services-content { grid-area: 2 / 1 / 3 / 2; }
    .habillage-complet .services-content { grid-area: 1 / 1 / 3 / 2; }

    section:not(.affichage-dynamique) .services-img { grid-area: 1 / 1 / 2 / 2; }

    .services-content {
        text-shadow: 0 0 15px black;
        z-index: 1;
    }

    .services-content h4 {
        font-size: 35px;
    }

    .affichage-dynamique .services-img-wrapper img {
        bottom: 13px;
        transform: rotate(0.30deg);
    }
    .affichage-dynamique .wrapper {
        backdrop-filter: brightness(0.4);
    }

    .creations-visuelles .wrapper {
        backdrop-filter: brightness(0.6);
    }

    .accompagnements { padding-bottom: 0 !important; }

    .accompagnements-grid {
        grid-template-columns: repeat(1, 1fr);
        grid-row-gap: 2rem;
    }

    .accompagnements::before {
        top: 4rem;
        left: 0;
    }

    .accordion-item { max-width: 100%; }

    .accompagnements-img {
        position: unset;
        width: 100%;
    }

    .emotions-wrapper { grid-column-gap: 2rem; }

   /* .realisations-vignettes {
        display: -webkit-inline-box;
        overflow-x: scroll;
    }*/

    .realisations-display-wrapper { height: 14rem; }

    .footer-bottom {
        grid-template-columns: repeat(2, auto);
        grid-template-rows: auto;
    }

    .footer-lse a { width: calc(100% / 1.5); }
}

/*== 600px ==*/
@media screen and (max-width: 600px) {
    .header nav.open .menu li:nth-child(6) a::before { display: none; }
    .not-home { margin-top: 5rem; }

    .fixed-cta-contact {
        top: 50%;
        font-size: 18px;
        padding: 1.2rem 3rem 2rem 3rem;
        z-index: 18;
    }

    .fixed-cta-contact.active { right: -6.5rem; }

    .hero {
        height: 95vh;
        align-items: center;
    }

    .hero .wrapper { padding: 0; }

    .hero .wrapper h1 {
        font-size: 45px;
        margin: 0 0 1rem 0;
    }

    .hero .wrapper h2 { font-size: 25px; }
    .hero .wrapper h3 { font-size: 18px; }

    .solution-content-title {
        text-align: center;
        padding: 2rem 0;
    }

    .counter-item { gap: 1rem; }

    .counter-title { font-size: 40px; }

    .counter-desc { font-size: 22px; }

    .counters-information {
        padding: 0 1rem;
        max-width: 100%;
        font-size: 22px;
    }

    .section-title { font-size: 30px; }
    .section-desc { font-size: 18px; }

    .solutions {
        padding: 4rem 0 1rem 0;
        background-size: cover;
    }
    .solution-item { grid-template-columns: repeat(1, 1fr) }
    .solutions .splide__arrow--prev { left: 0; }
    .solutions .solution-img { width: 100%; }

    .agence-services .wrapper {
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 0rem;
    }

    .agence-services-item img { height: 5rem; }
    
    .agence-services-item span { font-size: 18px; }

    .realisations-parent-wrapper { height: 15rem; }

    .synapses {
        top: -5%;
        left: -5%;
        width: 110%;
        height: 110%;
    }

    .realisations-title h3 { font-size: 35px; }

    .realisations-vignettes .splide__arrow svg {
        width: .8rem;
        height: .8rem;
    }

    /*.realisations-child {
        display: -webkit-inline-box;
        overflow-x: scroll;
        !*scrollbar-color: #e8da32 white;*!
        !*scrollbar-width: thin;*!
        padding: 0 0 1rem 0;
    }*/

    /*.realisations-child::-webkit-scrollbar-track { background-color: darkgray; }
    .realisations-child::-webkit-scrollbar { height: 2px; }
    .realisations-child::-webkit-scrollbar-thumb {
        background: var(--k-yellow);
        border-radius: 0;
    }*/

    .realisations-vignettes-item {
        max-width: 100%;
    }

    #real-img-legende {
        font-size: 14px;
        font-weight: 500;
        padding: 0.4rem 0.5rem 0.2rem 0.5rem;
    }

    .realisations-child-item  { width: 15rem; }

    .habillage-complet-stade { background-size: cover; }

    .habillage-complet-bache {
        height: 15rem;
        background-size: 100%;
        background-position: center center;
        background-repeat: no-repeat;
        transform: scale(3.5);
        z-index: -1;
    }

    .solution-content-title { font-size: 35px; }

    .komis-events .realisations::after {
        opacity: .6;
        bottom: -34rem
    }

    .emotions-wrapper {
        grid-template-columns: repeat(1, 1fr);
        grid-row-gap: 4rem;
    }

    .emotions-title {
        font-size: 35px;
        margin: 0;
    }

    .emotions-item span {
        margin: 0;
        z-index: 5;
    }

    .references-title {
        font-size: 35px;
    }

    .references-subtitle p {
        font-size: 20px;
        max-width: 100%;
    }

    .services.campagnes-videos { padding: 4rem 0; }

    .komis-events .accordion-list,
    .komis-studio .accordion-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .informations .wrapper,
    .terrain .wrapper,
    .equipe .wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .terrain-content h4,
    .equipe h4,
    .terrain-item p { max-width: 100%; }

    .equipe-item span:nth-child(2) { max-width: 12rem; }

    .equipe-carte-legende,
    .equipe-carte-info { margin: 2rem 0 0 0; }

    .counters-information,
    .terrain-content h4,
    .equipe h4 {
        font-size: 35px;
        line-height: 1;
    }

    .equipe-item span:nth-child(2) { font-size: 14px; }

    .equipe-carte-info {
        font-size: 22px;
        max-width: 100%;
    }

    .formulaire .wrapper { grid-template-columns: 1fr; }

    .contact-hero h1 { font-size: 35px; }

    .contact-hero h2 { font-size: 22px; }

    .contact-hero h3 { font-size: 18px; }

    .footer { z-index: 19; }

    .footer-top {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .footer-bottom {
        grid-template-columns: repeat(1, auto);
    }

    .footer-lse,
    .footer-social {
        justify-content: flex-start;
        align-items: flex-start;
    }
}


/*=== ANIMATIONS ===*/
@keyframes fade-down-arrow {
    0% {
        transform: translate(0, -5px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(0, 5px);
        opacity: 0;
    }
}

@keyframes slider-arrow-shadow {
    0% {
        filter: drop-shadow(-40px 0 0 var(--k-yellow));
        transform: translateX(5px);
    }

    50% {
        filter: drop-shadow(-5px 0 0 var(--k-yellow));
        transform: translateX(0);
    }

    100% {
        filter: drop-shadow(0 0 0 var(--k-yellow));
        transform: translateX(5px);
    }
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 var(--k-events);
    }
    100% {
        box-shadow: 0 0 0 10px rgba(216, 9, 59, 0);
    }
}


/*=== HOME PAGE ===*/

.page-home {
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.page-home .home-logo {
    position: fixed;
    top: 1rem;
    left: 1rem;
    width: 5rem;
    opacity: 0;
    z-index: 20;
}

.page-home .home-hero {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: #000000;
    z-index: -1;
}

.page-home .home-hero video {
    opacity: 0;
    scale: 0;
    max-width: 1400px;
}

#skip-intro {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    background-color: transparent;
    border: 1px solid #FFFFFF;
    padding: 0.5rem 1rem;
    font-family: 'GeogrotesqueCyr', sans-serif;
    font-size: 14px;
    font-weight: 900;
    font-style: italic;
    z-index: 19;
}

#home-panneau-led {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 300vh;
    background-color: #000000;
    opacity: 0;
}

.home-panneau-led-container {
    position: fixed;
    top: calc(50% - 240px);
    /*top: calc(50% - 290px);*/
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0;
    grid-row-gap: 0;
    z-index: 11;
    width: 100%;
    height: 100%;
    max-width: 789px;
    max-height: 480px;
}

.led-screen-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    mix-blend-mode: overlay;
    z-index: 10;
}

#cta-scroll {
    position: fixed;
    right: calc(50% - 2rem);
    bottom: 1rem;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 22;
    cursor: pointer;
    opacity: 0;
    transition: opacity .2s ease-in-out;
}

#cta-scroll.scrolled {
    right: 1rem;
}

#cta-scroll.to-top .cta-scroll-arrow {
    transform: scale(-1);
}

main:not(.page-home) #cta-scroll {
    width: fit-content;
    margin: 0 auto;
}

.cta-scroll-title {
    color: yellow;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
    mix-blend-mode: difference;
}

.cta-scroll-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.cta-scroll-arrow span:nth-child(1) {
    line-height: 0;
    animation: fade-down-arrow 1s .2s ease-in-out infinite;
}
.cta-scroll-arrow span:nth-child(2) {
    line-height: 0;
    margin: -2.5rem 0 0 0;
    animation: fade-down-arrow 1s ease-in-out infinite;
}

.cta-scroll-arrow span svg {
    fill: yellow;
    width: 2rem;
    height: 2rem;
}
.cta-scroll-arrow span:nth-child(2) svg {
    width: 4rem;
    height: 4rem;
}


/*== SECTION BLUE ==*/
.section-blue {
    height: 150rem;
    background-image: url(/wp-content/themes/bmvcom/assets/images/home/backgrounds/section-bleu-bg-deg.webp);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.trame-black-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #39393c;
    opacity: 0;
}

.logo-komis-multi {
    position: absolute;
    top: calc(50% - 47%);
    left: calc(50% - 47%);
    width: 95%;
    height: 95%;
    object-fit: contain;
    transform: scale(30);
    opacity: 0;
}

.section-blue-vague-top,
.section-green-vague-top {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
}

.block-right.block-blue {
    position: fixed;
    width: 30rem;
    height: 20rem;
    background-color: #175EF355;
    border: 1px solid #ffffff;
    bottom: 2rem;
    right: 2rem;
    z-index: 13;
    opacity: 0;
    /* TEST */
    width: 90%;
    height: 80vh;
    bottom: 0;
    right: 0;
    left: 0;
    border: 0px;
    background-color: transparent;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.block-right.block-blue::before {
    content: "";
    position: absolute;
    top: -2.5rem;
    left: calc(50% - 6rem);
    width: 12rem;
    height: 4rem;
    background-image: url(/wp-content/themes/bmvcom/assets/images/OLD/k-led.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 0 0;
}

.block-right {
    padding: 1rem 2rem;
}

.block-right h2 {
    color: #FFFFFF;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 20px;
    font-style: italic;
}

.block-right h2 span {
    text-transform: uppercase;
    font-size: 30px;
}

.block-right p {
    color: #FFFFFF;
    text-align: center;
    font-size: 20px;
    font-style: italic;
    margin: 1rem 0 0 0;
    line-height: 1;
}

.block-right a {
    display: block;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    border-radius: 40px;
    font-size: 20px;
    padding: 0.5rem 2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 1rem auto 0 auto;
    width: fit-content;
    animation: pulse 2s infinite cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

@keyframes pulse {
    30%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
	0% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
	}

	10% {
		box-shadow: 0 0 2px 8px rgb(255 255 255 / 32%);
	}

	20% {
		box-shadow: 0 0 4px 10px rgb(255 255 255 / 1%);
	}
}

.block-right.block-blue a { background-color: #2e61af; }
.block-right.block-green a { background-color: var(--k-studio); }
.block-right.block-orange a { background-color: var(--k-events); }

.blue-grad-led {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    z-index: 9;
}

.brands-life-led {
    position: absolute;
    top: calc( 50% - 45%);
    left: calc( 50% - 45%);
    width: 90%;
    height: 90%;
    pointer-events: none;
    opacity: 0;
    z-index: 9;
    object-fit: contain;
}

.trame-fleches {
    position: absolute;
    top: 11rem;
    right: -125rem;
    width: 1000px;
    opacity: 0;
    transform: scale(4);
    z-index: 10;
}

.page-home .section-blue .section-text{
    background: rgb(0 0 0 / 50%);
    padding: 15px;
    border-radius: 15px;
    /*border: 3px solid #fff;*/
}

/*== SECTION GREEN ==*/
.section-green {
    height: 180rem;
    background-image: url(/wp-content/themes/bmvcom/assets/images/home/backgrounds/section-verte-bg-deg.webp);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.section-green-zigzag {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.block-right.block-green {
    position: fixed;
    width: 30rem;
    height: 20rem;
    background-color: #13BA9055;
    border: 1px solid #ffffff;
    bottom: 2rem;
    right: 2rem;
    z-index: 12;
    opacity: 0;
    /* TEST */
    width: 90%;
    height: 80vh;
    bottom: 0;
    right: 0;
    left: 0;
    border: 0px;
    background-color: transparent;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.block-right.block-green::before {
    content: "";
    position: absolute;
    top: -2.5rem;
    left: calc(50% - 6rem);
    width: 12rem;
    height: 4rem;
    background-image: url(/wp-content/themes/bmvcom/assets/images/OLD/k-studio.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 0 0;
}

.logiciel {
    position: fixed;
    top: calc(50% - 240px);
    /*top: calc(50% - 290px);*/
    left: calc(50% - 394px);
    width: 100%;
    height: 100%;
    max-width: 789px;
    max-height: 480px;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
}

.roue-chromatique {
    position: fixed;
    top: calc(50% - 60px);
    left: calc(50% - 60px);
    width: 120px;
    height: 120px;
    opacity: 0;
    z-index: 11;
    /*transform: translate(80px, -50px) skew(4deg, 0deg) rotateX(20deg);
    -webkit-transform: translate(80px, -50px) skew(4deg, 0deg) rotateX(20deg);*/
    /*filter: drop-shadow(4px 8px 8px #00000080);*/
}

.stylet {
    position: fixed;
    top: calc(50% - 220px);
    left: calc(50% - 55px);
    image-orientation: unset;
    width: 220px;
    height: 220px;
    opacity: 1;
    z-index: 11;
}

.orange-grad-led {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    z-index: 10;
}

.brands-life-events {
    position: absolute;
    top: calc( 50% - 45%);
    left: calc( 50% - 45%);
    width: 90%;
    height: 90%;
    pointer-events: none;
    opacity: 0;
    z-index: 10;
    object-fit: contain;
}

.page-home .section-green .section-text{
    background: rgb(0 0 0 / 50%);
    padding: 15px;
    border-radius: 15px;
    /*border: 3px solid #13ba91;*/
}

/*== SECTION ORANGE ==*/
.section-orange {
    position: relative;
    height: 200rem;
    background-color: #000000;
}

.section-orange::before {
    content: "";
    position: absolute;
    top: -19.5rem;
    left: 0;
    width: 100%;
    height: 20rem;
    background: linear-gradient(0deg, rgba(0,0,0,1) 30%, rgba(255,255,255,0) 100%);
}

.lumiere-scene {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.scene {
    position: fixed;
    top: 65%;
    left: 0;
    width: 100%;
}

.pupitre {
    position: fixed;
    top: calc(62% - 5rem);
    left: calc(31% - 5rem);
    width: 10rem;
    height: 10rem;
    object-fit: contain;
}

.public-front {
    position: fixed;
    top: calc(90% - 10rem);
    left: 0;
    width: 100%;
    height: 25rem;
    object-fit: contain;
}

.public-back {
    position: fixed;
    top: calc(95% - 10rem);
    left: 0;
    width: 100%;
    height: 25rem;
    object-fit: contain;
}

.ecran-gauche {
    position: fixed;
    top: calc(45% - 8rem);
    left: calc(50% - 4rem);
    width: 8rem;
    height: 16rem;
    object-fit: contain;
}

.ecran-droite {
    position: fixed;
    top: calc(45% - 8rem);
    left: calc(50% - 4rem);
    width: 8rem;
    height: 16rem;
    object-fit: contain;
}

.block-right.block-orange {
    position: fixed;
    width: 30rem;
    height: 20rem;
    background-color: #D8093B55;
    border: 1px solid #ffffff;
    bottom: 2rem;
    right: 2rem;
    z-index: 11;
    opacity: 0;
    /* TEST */
    width: 90%;
    height: 80vh;
    bottom: 0;
    right: 0;
    left: 0;
    border: 0px;
    background-color: transparent;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.block-right.block-orange::before {
    content: "";
    position: absolute;
    top: -2.5rem;
    left: calc(50% - 6rem);
    width: 12rem;
    height: 4rem;
    background-image: url(/wp-content/themes/bmvcom/assets/images/OLD/k-events.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 0 0;
}

.page-home .section-orange .section-text{
    background: rgb(0 0 0 / 50%);
    padding: 15px;
    border-radius: 15px;
    /*border: 3px solid #d8083b;*/
}

/*== SECTION FOOTER ==*/
.section-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    height: calc(100vh - 320px);
    background-color: #000000;
    z-index: 15;
}

.section-footer::before {
    content: "";
    position: absolute;
    top: -19.5rem;
    left: 0;
    width: 100%;
    height: 20rem;
    background-image: url(/wp-content/themes/bmvcom/assets/images/home/elements/public-back.webp);
}

.section-footer .wrapper { padding-top: 6rem; }

.section-footer-title span {
    color: #FFFFFF;
    font-size: 6rem;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
}

.footer-titles-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.section-footer-lse {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    gap: 2rem;
    margin: 1rem 0 1rem 0;
}

.section-footer img {
    width: 100%;
    height: 4rem;
    object-fit: contain;
}

@media screen and (max-height: 740px) and (min-width: 800px) {
    .footer-titles-wrapper {
        flex-direction: row;
        column-gap: 1rem;
    }
    .section-footer-title span { font-size: 3rem; }
}

@media screen and (max-width: 600px) {
    .header.home-header .header-wrapper-logo {
        width: 4rem;
        height: 4rem;
    }

    /*#cta-scroll { right: .2rem; }*/
    .cta-scroll-arrow span:nth-child(2) svg {
        width: 2rem;
        height: 2rem;
    }

    .home-panneau-led-container {
        top: calc(50% - 117px);
        max-height: 235px;
    }

    .block-right {
        width: calc(100% - 2rem) !important;
        right: 0 !important;
        padding: 1rem;
        -webkit-justify-content: flex-end !important;
        align-items: flex-end !important;
        -webkit-align-items: flex-end !important;
    }

    .block-right h2 span {
        font-size: 20px;
        line-height: 1;
    }

    .block-right p {
        font-size: 16px;
        margin: .5rem 0 0 0;
    }

    .block-right a {
        font-size: 18px;
        padding: .5rem 1.5rem;
    }

    .trame-fleches { top: 5.5rem; }

    .section-green-zigzag { object-fit: cover; }

    .logiciel {
        top: calc(50% - 117px);
        left: calc(50% - 204px);
        max-height: 235px;
    }

    .roue-chromatique {
        top: calc(50% - 40px);
        left: calc(50% - 45px);
        width: 80px;
        height: 80px;
    }

    .stylet {
        top: calc(50% - 150px);
        left: calc(50% - 70px);
        image-orientation: unset;
        width: 150px;
        height: 150px;
    }

    .lumiere-scene { height: 15rem; }

    .scene {
        top: 75%;
        height: 12rem;
    }

    .pupitre {
        position: fixed;
        top: calc(70% - 4rem);
        left: calc(32% - 4rem);
        width: 8rem;
        height: 8rem;
    }

    .ecran-gauche {
        position: fixed;
        top: calc(48% - 4rem);
        left: calc(50% - 3rem);
        width: 6rem;
        height: 8rem;
    }

    .ecran-droite {
        position: fixed;
        top: calc(48% - 4rem);
        left: calc(50% - 3rem);
        width: 6rem;
        height: 8rem;
    }

    .section-footer {
        height: auto;
        padding: 2rem 0;
    }

    .section-footer .wrapper {
        padding-top: 14rem;
    }

    .section-footer-title span { font-size: 3rem; }

    .footer-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

@media screen and (max-height: 880px) and (min-width: 600px) {
    .block-right::before {
        top: -4.5rem !important;
    }

    .block-right h2 span {
        font-size: 22px;
    }

    .block-right p {
        font-size: 18px;
        margin: .5rem 0 0 0
    }

    .block-right a {
        font-size: 18px;
        margin: 0.5rem auto 0 auto;
    }
}

@media screen and  (max-height: 780px) and (min-width: 600px) {
    .home-panneau-led-container {
         scale: .8 !important;
    }

    .block-right::before {
        left: calc(50% - 4rem) !important;
        width: 8rem !important;
        top: -3rem !important;
    }
}

/*
    OLD KOMIS
*/
/*
.page--komis .logo-komis {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 20;
}


!*
    HERO SECTION
*!
#section-hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200vh;
    background-color: #000000;
!*  background-image: url(/wp-content/themes/bmvcom/assets/images/backgrounds/brands-to-life-bg-min.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;*!
}

#section-hero .brands-title-container {
    position: fixed;
    top: 31.5vh;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

#section-hero .brands-title {
    color: #FFFFFF;
    font-size: 11rem;
    text-transform: uppercase;
    font-weight: bold;
    display: flex;
    line-height: 1;
}

#section-hero .brands-title span {
    display: block;
}

!*.section--hero__background {
    position: relative;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}*!

.section--hero__container {
    position: fixed;
    top: 25vh;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0;
    grid-row-gap: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    max-width: 789px;
    max-height: 488px;
}

.trame-led-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    mix-blend-mode: overlay;
    z-index: 10;
}

.trame-blue-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    background: #315aa0;
}

.trame-gradient-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    !*background: rgb(43,116,170);*!
!*    background: linear-gradient(45deg, rgba(43,116,170,1) 10%, rgba(121,60,126,1) 90%);*!
}

!*.trame-hue-background.gradiant-bg {
    background: rgb(43,116,170);
    background: linear-gradient(45deg, rgba(43,116,170,1) 10%, rgba(121,60,126,1) 90%);
}*!

.logo-komis-white {
    position: absolute;
    top: 33.3333%;
    left: 40%;
    width: 10rem;
    height: 10rem;
    opacity: 0;
    z-index: 9;
    transform: scale(1.6);
}

.logo-komis-multi {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    z-index: 9;
    transform: scale(1.3);
}

.trame-fleches-verte {
    position: absolute;
    top: 11rem;
    right: -125rem;
    width: 2476px;
    opacity: 0;
    transform: scale(4);
    z-index: 8;
}

!*
    SECTION BLUE
*!
.section--blue {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200vh;
    background: #315aa0;
}

.section--blue__vague--top {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
}

.section--blue__vague--bottom {
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    rotate: 180deg;
    transform-origin: bottom;
}

.block-right {
    position: fixed;
    width: 30rem;
    height: 20rem;
    background-color: #4242b7c4;
    border: 1px solid #ffffff;
    right: 2rem;
    z-index: 11;
}

.block-right.block-blue::before {
    content: "";
    position: absolute;
    top: -1.6rem;
    left: 9rem;
    width: 12rem;
    height: 100%;
    background-image: url(/wp-content/themes/bmvcom/assets/images/k-led.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 0 0;
}

.section--green {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 800vh;
    background: #02666e;
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,145,143,1) 50%);
}

.section--green .block-right.block-green {
    background-color: #019584c4;
}

.section--green .block-right.block-green::before {
    content: "";
    position: absolute;
    top: -1.6rem;
    left: 9rem;
    width: 12rem;
    height: 100%;
    background-image: url(/wp-content/themes/bmvcom/assets/images/k-studio.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 0 0;
}

.section--red {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: boldvh;
    background: #000000;
    !*background: linear-gradient(180deg, rgba(2,102,110,1) 0%, rgba(0,0,0,1) 20%, rgba(0,145,143,1) 40%);*!
}

.section--red .block-right.block-red {
    background-color: #c71b1bc4;
}

.section--red .block-right.block-red::before {
    content: "";
    position: absolute;
    top: -1.6rem;
    left: 9rem;
    width: 12rem;
    height: 100%;
    background-image: url(/wp-content/themes/bmvcom/assets/images/k-events.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 0 0;
}

.trame-light {
    position: fixed;
    bottom: 110%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trame-scene {
    position: fixed;
    bottom: -100%;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.trame-public-front,
.trame-public-back {
    position: fixed;
    bottom: -100%;
    width: 105%;
    height: auto;
    object-fit: cover;
}

.trame-public-back {
    bottom: -110%;
}

.trame-screen {
    position: fixed;
    top: 30vh;
    width: 9.9rem;
    opacity: 0;
    z-index: 1;
    transform: perspective(400px) scale(.5) rotateY(0deg);
}

.trame-presentatrice {
    position: fixed;
    top: 45%;
    left: 25%;
    z-index: 5;
    opacity: 0;
}

.home--footer {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #000000;
    z-index: 10;
    padding: 15rem 0 0 0;
}

.home--footer::before {
    content: "";
    position: absolute;
    top: -12rem;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/wp-content/themes/bmvcom/assets/images/public-back.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 0 0;
}

.home--footer__title {
    color: #FFFFFF;
    font-size: 8vw;
    line-height: 1;
    display: block;
    position: fixed;
    left: 2rem;
    opacity: 0;
}

@media screen and (max-width: boldpx) {
    #section-hero .brands-title-container {
        top: 38vh;
    }

    #section-hero .brands-title {
        font-size: 5rem;
        -webkit-text-stroke: 2px;
    }

    .section--hero__container {
        top: 32.5vh;
    }

    .section--blue .block-right {
        width: 100%;
        right: 0;
    }
}*/

/*@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}*/
