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

@font-face {
    font-family: 'Futura-Bold';
    src: url('fonts/FuturaLT-Bold.woff2') format('woff2'),
        url('fonts/FuturaLT-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Kabel';
    src: url('fonts/Neue_Kabel_Book.woff2') format('woff2'),
        url('fonts/Neue_Kabel_Book.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Kabel';
    src: url('fonts/Neue_Kabel_Book_Italic.woff2') format('woff2'),
        url('fonts/Neue_Kabel_Book_Italic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Neue Kabel';
    src: url('fonts/Neue_Kabel_ExtraBold.woff2') format('woff2'),
        url('fonts/Neue_Kabel_ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Kabel';
    src: url('fonts/Neue_Kabel_ExtraBold_Italic.woff2') format('woff2'),
        url('fonts/Neue_Kabel_ExtraBold_Italic.woff') format('woff');
    font-weight: 800;
    font-style: italic;
}

:root {
    --primary: #D99F6C;
    --secondary: #ececec;
    --ternary: #8C5D42;
    --color-body: #fdfdfd;
    --color-text: black;
    --color-nav: #000000d0;
    --color-black: #1b1b1b;
    --nav-height: 3rem;
    --padding-full: 4rem 2rem;
    --padding-bloc: 4rem;
    --font-text: 'Neue Kabel', sans-serif;
    --font-title: 'Futura-Bold', sans-serif;
}

.black {
    --color-body: #1b1b1b;
    --color-text: white;
    background-color: var(--color-body);
    z-index: -1;
}

.black a {
    color: var(--primary);
}

.grey {
    --color-body: #ececec;
    background-color: var(--color-body);
    z-index: -1;
}

.primary {
    --color-body: #D99F6C;
    background-color: var(--color-body);
    --color-text: black;
    --ternary: #43464d;
    z-index: -1;
    --primary: #ffffff;
}

@media screen and (max-width: 768px) {
    :root {
        --padding-full: 2rem 1rem;
        --nav-height: 3rem;
        --padding-bloc: 1rem;
    }
}

h1,
h2,
h3,
h4,
p {
    color: var(--color-text);
}

::-webkit-scrollbar {
    width: 1.2rem;
}

::-webkit-scrollbar-track {
    background-color: transparent;
    margin-block-start: 2.5rem;
    border-radius: 100vw;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 100vw;
    border: #fdfdfd solid 5px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(235, 135, 135, 0.8);
}

body {
    background-color: var(--color-body);
    position: relative;
}

.nodisplay {
    display: none;
}

h1 {
    font-size: 2.1em;
    font-family: var(--font-title);
    font-weight: 700;
    font-style: normal;
    margin-bottom: 1em;
    text-align: center;
    letter-spacing: .03em;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 1.4em;
    }
}

h2 {
    font-size: 1.5em;
    font-family: var(--font-title);
    font-weight: 700;
    font-style: normal;
    margin-bottom: 1em;
    color: var(--ternary);
    text-align: center;
    letter-spacing: .03em;
}

@media screen and (max-width: 768px) {
    h2 {
        font-size: 1.2em;
    }
}

.black h2 {
    color: var(--secondary);
}

h3 {
    font-size: 1.3em;
    font-family: var(--font-title);
    font-weight: 700;
    font-style: normal;
    margin-bottom: 2em;
    text-align: center;
}

@media screen and (max-width: 768px) {
    h3 {
        font-size: 1.1em;
    }
}

h4 {
    font-size: 1em;
    font-family: var(--font-title);
    font-weight: 700;
    font-style: normal;
    margin-bottom: 2em;
    text-align: center;
}

p {
    font-size: 1em;
    font-family: var(--font-text);
    font-weight: 500;
    font-style: normal;
    line-height: 1.5rem;
}

strong {
    font-weight: 800;
}

a {
    text-decoration: none;
    font-family: var(--font-text);
    font-weight: bold;
    color: var(--ternary);
    position: relative;
    cursor: pointer;
    font-style: normal;
}

a:hover {
    text-decoration: underline;
}

ul {
    margin: 1em 0;
}

li {
    font-family: var(--font-text);
    font-weight: 400;
    font-style: normal;
    line-height: 2;
    margin-bottom: 1rem;
    color: var(--color-text);
}

li p {
    text-align: left;
}

.black .littlebox a{
    color: var(--ternary);
}

.littlebox.grey, .littlebox.primary {
    z-index: 1;
}

.littlebox li {
    margin-left: 1rem;
}

img {
    object-fit: cover;
}

button {
    position: relative;
    cursor: pointer;
    padding: 1.2rem 2rem;
    margin: 1.5rem 2.5rem;
    border-radius: 36px;
    border: var(--ternary) 2px solid;
    color: var(--ternary);
    background-color: transparent;
    transition: .2s;
    font-size: 1.2em;
    font-family: var(--font-text);
    font-weight: 800;
    letter-spacing: .05em;
    font-style: normal;
}

.black button {
    border: var(--secondary) 2px solid;
    color: var(--secondary);
}

button::before {
    content: "";
    position: absolute;
    top: -1rem;
    bottom: -1rem;
    left: -1rem;
    right: -1rem;
    background: transparent;
}

button:hover {
    color: white;
    background-color: var(--ternary);
    transition: .2s;
}

.black button:hover {
    background-color: var(--ternary);
}

.bouttonPlein {
    color: white;
    background-color: var(--ternary);
    transition: .2s;
}

.bouttonPlein:hover {
    color: var(--ternary);
    background-color: transparent;
    transition: .2s;
}

.black .bouttonPlein {
    color: white;
    background-color: var(--ternary);
    transition: .2s;
}

.black .bouttonPlein:hover {
    color: var(--color-text);
    background-color: var(--primary);
    transition: .2s;
    border: white 2px solid;
}

@media screen and (max-width: 768px) {
    button {
        padding: 1rem 1.8rem;
        margin: 1.5rem 1.5rem;
        font-size: 1rem;
    }

    .flex button:first-child {
        margin: 1rem 1rem 1rem 0;
    }

    .flex button:last-child {
        margin: 1rem 0 1rem 1rem;
    }

    button::before {
        content: "";
        position: absolute;
        top: -1rem;
        bottom: -1rem;
        left: -0.5rem;
        right: -0.5rem;
        background: transparent;
    }
}

header {
    height: var(--nav-height);
}

nav {
    position: fixed;
    height: var(--nav-height);
    width: 100%;
    background-color: var(--color-nav);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 200;
    display: flex;
    justify-content: center;
}

.nav-links {
    position: relative;
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: center;
    animation: oppaNav 1s ease-in-out;
}

@keyframes oppaNav {
    from {
        transform: translateY(-10%);
        opacity: 0;
    }

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

.aLink {
    margin: 0em 2em;
}

nav a {
    text-decoration: none;
    margin-right: 0px;
}

nav a:hover {
    text-decoration-line: none;
}

nav p {
    color: #cecece;
    text-transform: capitalize;
    font-size: 1rem;
    transition: .2s;
}

nav p:hover {
    color: white;
    transition: .1s;
}

.menu-hamburger {
    display: none;
    width: 2.5em;
    position: fixed;
    top: 1.5em;
    transform: translateY(-50%);
    left: .5rem;
    cursor: pointer;
}

.nav-links.mobile-menu {
    margin-left: 0vw;
    transition: ease-out 0.2s;
}

.nav-logo{
    position: fixed;
    height: var(--nav-height);
    aspect-ratio: 1;
    display: none;
    left: calc(100% - 3rem);
}

/* navbar */

@media screen and (max-width: 768px) {
    nav {
        position: fixed;
        height: var(--nav-height);
        width: 100%;
        background-color: var(--primary);
        opacity: 1;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: 2;
        display: flex;
        justify-content: center;
    }

    .nav-links {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: calc(100vh - var(--nav-height));
        margin-top: var(--nav-height);
        align-items: center;
        width: 100%;
        margin-left: -200vw;
        background-color: black;
        transition: ease-out 0.3s;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }

    .aLink {
        margin: 1.5em .5em;
    }

    nav p {
        color: #cecece;
        text-transform: capitalize;
        font-size: 1.5rem;
        transition: .2s;
    }
}

@media screen and (max-width: 768px) {
    .menu-hamburger {
        display: block;
    }
    .nav-logo{
        display: flex;
    }
}

#oppaUn {
    visibility: hidden;
    animation: apparition .4s ease-out forwards;
    animation-delay: .2s;
}

#oppaDeux {
    visibility: hidden;
    animation: apparition .4s ease-out forwards;
    animation-delay: .3s;
}

#oppaTrois {
    visibility: hidden;
    animation: apparition .5s ease-out forwards;
    animation-delay: .5s;
}

#oppaQuatre {
    visibility: hidden;
    animation: apparitionGauche 1s ease-in-out forwards;
    animation-delay: .6s;
}

#appaSlide {
    visibility: hidden;
    animation: apparitionGauche .5s ease-in-out forwards;
}

@keyframes apparition {
    from {
        visibility: visible;
        scale: .95;
        transform: translateY(10%);
        opacity: 0;
    }

    to {
        visibility: visible;
        scale: 1;
        transform: translateY(-0%);
        opacity: 1;
    }
}

@keyframes apparitionGauche {
    from {
        visibility: visible;
        transform: translateX(-10%);
        opacity: 0;
    }

    to {
        visibility: visible;
        transform: translateX(-0%);
        opacity: 1;
    }
}

.container {
    left: 50%;
    transform: translateX(-50%);
    max-width: 2560px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.box {
    position: relative;
    min-height: 43rem;
    margin: .5em 0em .5em 0em;
    text-align: center;
}

/* box */

@media screen and (max-width: 2560px) {

    .box {
        position: relative;
        min-height: 35rem;
        margin: .5em 0em .5em 0em;

    }
}

@media screen and (max-width: 1440px) {
    .box {
        position: relative;
        min-height: 30rem;
        margin: .5em 0em .5em 0em;

    }
}

@media screen and (max-width: 768px) {
    .box {
        position: relative;
        min-height: auto;
        margin: .5em 0em .5em 0em;

    }
}

/* demi */


.full {
    position: relative;
    width: 100%;
    padding: var(--padding-full);
}

.full2 {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    padding: 2rem;
}

.demi {
    position: relative;
    width: calc(50% - 0px);
    padding: 2rem;
}

.demi h2,
.demi h3 {
    margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
    .full {
        position: relative;
        width: 100%;
        padding: var(--padding-full);
    }

    .demi {
        position: relative;
        width: 100%;
    }
}

section {
    padding: 2rem;
    margin: 2rem 0;
    width: 100%;
}

.center {
    text-align: center;
}

.texteseul {
    margin: 2rem 5rem;
    text-align: center;
}

.textecool {
    margin: 2rem 5rem;
    text-align: center;
    font-size: 2em;
    line-height: 1.3;
}

@media screen and (max-width: 768px) {
    .texteseul {
        margin: 2rem 1rem;
    }

    .textecool {
        margin: 2rem 2rem;
        font-size: 1.2em;
    }
}

.textebig {
    text-align: center;
    font-size: 2em;
    line-height: 1.3;
}

.text-left {
    text-align: left;
}

.flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.nowrap {
    flex-wrap: nowrap;
}

@media screen and (max-width: 768px) {
    .nowrap {
        flex-wrap: wrap;
    }
}

.column {
    flex-direction: column;
}

.around {
    justify-content: space-around;
}

.center {
    justify-content: center;
}

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

.reverse {
    flex-direction: row-reverse;
}

.alignTop {
    align-items: baseline;
}

.alignCenter {
    align-items: center;
}

.left {
    justify-content: left;
}

.flex .texteMoitie {
    margin: 2rem;
    max-width: calc(50% - 4rem);
    text-align: center;
}

.alignLeft {
    text-align: left;
}

.alignRight {
    text-align: right;
}

.flex .theImage {
    position: sticky;
    top: calc(var(--nav-height) + 1rem);
    margin-bottom: calc(var(--nav-height) + 1rem);
    max-width: 30rem;
    height: 20rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}


.visu {
    position: relative;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.visu img {
    width: 100%;
    height: 100%;
}

.visu iframe {
    width: 100%;
    height: 100%;
}

.visuBackground {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.theImage img {
    height: 100%;
}

@media screen and (max-width: 768px) {

    .flex .texteMoitie {
        margin: 2rem 0;
        max-width: 100%;
        text-align: center;
    }

    .flex .theImage {
        position: relative;
        max-width: 100%;
        height: calc(100vw - 4rem);
        overflow: hidden;
    }
}

.heroPicture{
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 2rem;
    min-height: calc(100vh - var(--nav-height));
    width: 100%;
    padding: 2rem 4rem;
    background: linear-gradient(-35deg, #f6ac71 0%, #ffffff00 30%);
}

@media screen and (min-width: 1440px){
    .heroPicture{
        gap: 4rem;
        padding: 4rem 8rem;
        height: calc(100vh - var(--nav-height));
        min-height: auto;
        max-height: 60rem;
    }
}

@media screen and (max-width: 768px){

    .heroPicture{
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 1rem;
        min-height: 0;
        height: 100%;
        padding: 2rem;
    }
}

.heroPicture .content{
    grid-area: 1 / 1 / 7 / 3;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    overflow-y: scroll;
}

.heroPicture h1, .heroPicture ul, .heroPicture p{
    text-align: left;
}

@media screen and (max-width: 768px){
    .heroPicture h1, .heroPicture ul, .heroPicture p{
        text-align: center;
    }
}

.heroPicture p{
    margin: 0;
}

.heroPicture h1{
    margin-bottom: 1rem;
}

@media screen and (min-width: 1440px){
    .heroPicture p{
        font-size: 2em;
        line-height: 1.3;
    }
}

.heroPicture .visuel:nth-child(2){
    grid-area: 2 / 3 / 5 / 4;
}

.heroPicture .visuel:nth-child(3){
    grid-area: 1 / 4 / 3 / 5;
}

.heroPicture .visuel:nth-child(4){
    grid-area: 3 / 4 / 6 / 5;
}

.heroPicture .visuel{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
}

.heroPicture .visuel img{
    position: absolute;
    width: 100%;
    height: 100%;
}


@media screen and (max-width: 768px){

    .heroPicture .content{
        grid-area: 1 / 1 / 2 / 3;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        overflow-y: visible;
    }

    .heroPicture .visuel:nth-child(2){
        grid-area: 3 / 1 / 5 / 2;
    }
    
    .heroPicture .visuel:nth-child(3){
        grid-area: 2 / 2 / 4 / 3;
    }
    
    .heroPicture .visuel:nth-child(4){
        grid-area: 4 / 2 / 6 / 3;
    }

    .heroPicture .visuel{
        position: relative;
        width: 100%;
        height: fit-content;
        max-height: 20rem;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 12px;
        overflow: hidden;
    }

    .heroPicture .visuel img{
        position: relative;
    }
}

.listHero{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    white-space: nowrap;
}

.heroPicture .listHero{
    display: flex;
    justify-content: left;
    margin: 1rem 0;
    font-size: .8rem;
}

@media screen and (min-width: 1440px){

    .heroPicture .listHero{
        font-size: 1rem;
    }
}

.listHero li{
    position: relative;
    margin: 1rem 0rem;
    list-style: none;
    margin: 1rem 0;
}

.listHero a{
    color: var(--ternary);
}

.black .listHero a{
    color: var(--primary);
}

.listHero a::before{
    content: "";
    position: absolute;
    left: 0;
    top: -2rem;
    right: 0;
    bottom: -2rem;
    background-color: transparent;
}

.listHero li::after{
    content: "/";
    position: relative;
    color: var(--primary);
    margin: 0 1rem;
}

.listHero li:last-child::after{
    display: none;
}

@media screen and (max-width: 768px){

    .listHero{
        display: block;
    }
    .listHero li{
        width: 100%;
        text-align: left;
        border-bottom: var(--primary) 1px solid;
    }
    
    .heroPicture .listHero{
        font-size: 1rem;
    }
    
    .listHero li::after{
        content:url(/img/site/fleche.svg);
        position: absolute;
        left: calc(100% - 2rem);
        top: -1rem;
        transform: translateX(-50%);
        width: 2rem;
        aspect-ratio: 1;
        rotate: -45deg;
        padding: 0;
    }

    .listHero li:last-child::after{
        content:url(/img/site/fleche.svg);
        display: block;
    }
  
}

.heroHeadFull {
    position: relative;
    width: 100%;
    min-height: 70vh;
    max-height: 50rem;
    overflow: hidden;
}

@media screen and (max-width: 768px) {

    .heroHeadFull {
        min-height: auto;
    }
}

.heroBoxPhone{
    position: relative;
    min-height: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding-top: 4rem;
}

.iconScroll{
    display: none;
    position: absolute;
    justify-self: baseline;
    top: calc(100% - 7rem);
    left: calc(50% - 2.5rem);
    width: 5rem;
    aspect-ratio: 1;
    background-image: url('/img/site/fleche-vers-le-bas.svg');
    background-repeat: no-repeat;
    background-position: center;    
    animation: animFleche 5s ease-in-out infinite;
}

.heroArtiste .iconScroll{
    display: block;
    background-image: url('/img/site/fleche-vers-le-bas-blanc.svg');
    z-index: 30;
}

@keyframes animFleche {
    from {
        transform: translateY(-10%);
        opacity: 0;
    }

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


@media screen and (max-width: 768px) {

    .heroBoxPhone{
        min-height: 70vh;
        padding: 3rem 4rem;
        padding-top: 1rem;
        background-color: var(--primary);
        justify-content: center;
    }

    .iconScroll{
        display: block;
        top: calc(100% - 5rem);
        left: calc(50% - 1.5rem);
        width: 3rem;
    }
    
}

.black .heroContent {
    text-shadow: .2em .2em .4em rgba(0, 0, 0, 0.5);
}

.heroContent {
    display: flex;
    flex-direction: column;
    margin: auto var(--padding-bloc);
}

.heroSimple {
    position: relative;
    width: 100%;
    height: 50vh;
    max-height: 30rem;
    margin-bottom: 4rem;
    padding: 2rem 4rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.heroArtiste{
    position: relative;
    height: calc(80vh - var(--nav-height));
    max-height: 50rem;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    align-items: center;
    gap: 2rem;
    padding: 4rem;
}

.heroArtiste::before{
    position: absolute;
    content: "";
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(356deg, #faddb3 0%, #f6ac71 100%);
}

.heroArtiste::after{
    position: absolute;
    content: "";
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    background: linear-gradient(356deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 30%);
}

@media screen and (max-width: 768px) {

    .heroArtiste{
        height: calc(70vh - var(--nav-height));
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(5, 1fr);
        align-items: center;
        gap: 1rem;
        padding: 2rem;
        overflow: hidden;
    }
}

.heroArtiste .content {
    position: relative;
    height: 100%;
    width: 100%;
    text-shadow: .2em .2em .4em black;
}

.heroArtiste .content:nth-child(1){
    grid-area: 1 / 1 / 1 / 4;
    grid-row: span 1;
}

.heroArtiste .content:nth-child(1) p{
    position: relative;
    line-height: 1;
    font-size: 7rem;
    font-family: var(--font-title);
    font-weight: 500;
    white-space: nowrap;
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {

    .heroArtiste .content:nth-child(1){
        grid-area: 1 / 1 / 1 / 2;
        
    }
    .heroArtiste .content:nth-child(1) p{
        line-height: 1;
        font-size: 3rem;
        white-space: wrap;
        font-family: var(--font-title);
        font-weight: 500;
        margin-bottom: 0;
        text-align: center;
    }
}

.heroArtiste .content:nth-child(2){
    grid-area: 2 / 1 / 2 / 2;
    grid-row: span 2;
}

.heroArtiste .content:nth-child(2) p{
    font-size: 1.5rem;
    text-shadow: 4px 4px 8px black, 2px 2px 4px black;
}

@media screen and (max-width: 768px) {

    .heroArtiste .content:nth-child(2) p{
        text-align: center;
    }
}

.heroArtiste .visuel{
    position: absolute;
    margin: 0rem;
    width: calc(100%);
    height: 100%;
    z-index: -1;
}

.imgBottom {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.imgBottom img {
    position: absolute;
    width: 10rem;
    top: calc(100% - 1rem);
    right: 3rem;
    rotate: 180deg;
}

.backfilterwight {
    margin: -2rem;
    padding: 2rem;
    padding-bottom: 0rem;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    background-color: #ffffff90;
    box-shadow: #ffffff90 0px 20px 20px;
}

.boxvalette img {
    width: 100%;
}

@media screen and (max-width: 768px) {

    .boxvalette {
        height: auto;
    }
}

.littlebox {
    width: 20rem;
    padding: 1rem;
    margin: .5rem;
    border-radius: 12px;
}

a.littlebox {
    cursor: pointer;
}

@media screen and (max-width: 768px) {

    .littlebox {
        width: 100%;
    }
}

.minibox {
    width: 17rem;
    padding: 2rem;
}

.cerclefull {
    margin: 2rem auto;
    width: calc(100% - 4rem);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}

.visuOnTop{
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
}

.grey .visuOnTop::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #ececec 0%, rgba(0,0,0,0) 30%);
    z-index: 10;
}

.black .visuOnTop::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #1b1b1b 0%, rgba(0,0,0,0) 30%);
    z-index: 10;
}

.primary .visuOnTop::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #D99F6C 0%, rgba(0,0,0,0) 30%);
    z-index: 10;
}

.littlebox .visuOnTop{
    margin: -1rem;
    width: calc(100% + 2rem);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.boxlink {
    transition: .3s;
    z-index: 2;
    cursor: pointer;
}

.boxlink:hover {
    text-decoration: none;
    box-shadow: 2px 5px 15px var(--primary);
}

.demande {
    position: relative;
}

.demande p {
    margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {

    .demande {
        position: relative;
        height: auto;
        padding-bottom: 0;
    }
}

.galerie {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.caroussel {
    margin: 1rem 0;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.slider-inner {
    display: inline-flex;
    animation: 45s slide infinite linear;
}

.immmg {
    position: relative;
    margin: 0 1rem;
    height: 12rem;
    width: auto;
    overflow: hidden;
    background-color: #ececec;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
}

.visuInfc {
    position: relative;
    margin: 0 2rem;
    height: 4rem;
    width: auto;
    overflow: hidden;
    background-color: transparent;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.immmg img {
    position: relative;
    width: 100%;
    min-height: 100%;
    left: calc(50% - 1rem);
    top: 0%;
    transform: translate(-50%, 0%);
}


#fondpart {
    position: absolute;
    min-height: 150%;
    min-width: 150%;
    left: 50%;
    top: 66%;
    transform: translate(-50%, -50%);
    z-index: -20;
    filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: .5;
}

.imagefond {
    position: absolute;
    min-height: 130%;
    min-width: 130%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -20;
}

.fondzicos {
    filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: .3;
}

.articleslinks {
    padding: 2rem;
    width: 100%;
}

.teasarticle {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

@media screen and (max-width: 768px) {

    .articleslinks {
        width: 100%;
        overflow-x: scroll;
    }

    .teasarticle {
        display: flex;
        justify-content: left;
        flex-wrap: nowrap;
        width: fit-content;
    }
}

.teasarticle .unarticleteas {
    position: relative;
    height: 23rem;
    width: 15rem;
    margin: 0 1rem;
    border-radius: 12px;
    background-color: var(--secondary);
    padding: 1rem;
    box-shadow: #ffffff 5px 5px 10px;
    overflow: hidden;
    transition: .4s;
}

.teasarticle .unarticleteas:hover {
    box-shadow: #cecece 1px 3px 6px;
    transition: .1s;
}

.grey .unarticleteas{
    box-shadow: #cecece 1px 3px 6px;
}

.grey .unarticleteas:hover{
    box-shadow: #ffffff 1px 3px 6px;
}

.unarticleteas .lapp {
    width: calc(100% + 2rem);
    height: 8rem;
    margin: -1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.unarticleteas .lapp img {
    width: 100%;
    min-height: 100%;
}

.unarticleteas h3 {
    font-size: 1.5rem;
    text-align: left;
}

.unarticleteas p {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
}


.articleslinks a:hover {
    text-decoration-line: none;
}

.blocUnarticle {
    display: flex;
    margin: 0 1rem;
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
    .blocUnarticle {
        display: flex;
        flex-direction: column;
        margin-bottom: 1rem;
        justify-content: center;
    }
}

.blocUnarticle p {
    position: relative;
    width: calc(100%);
    margin-left: 1rem;
}

@media screen and (max-width: 768px) {
    .blocUnarticle p {
        position: relative;
        width: calc(100%);
        margin-left: 0rem;
    }
}

.unarticle .visuUnarticle {
    position: relative;
    width: 11rem;
    height: 9rem;
    overflow: hidden;
    border-radius: 10px;
}

.unarticle .visuUnarticle img {
    position: relative;
    height: 100%;
    min-width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
    .unarticle .visuUnarticle {
        position: relative;
        width: 9rem;
        height: 9rem;
        overflow: hidden;
        margin: 1rem 0;
        left: calc(50% - 1rem);
        transform: translateX(-50%);
    }
}

.unarticleteas a {
    position: absolute;
    top: calc(100% - 2.5rem);
    left: 50%;
    transform: translateX(-50%);
}

.blocteaseroption {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.teasoption {
    border-bottom: 1px #cecece solid;
    padding-bottom: .5rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 1rem;
}

.visuelOption .teasoption {
    border-bottom: 0px #cecece solid;
    padding-bottom: .5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 1rem;
}

.visuteasoption {
    height: 7rem;
    width: 7rem;
    border-radius: 100%;
    background-color: #efefef;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: #cecece 5px 5px 10px;
}

.ecriteasoption {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-around;
    text-align: left;
    padding: 1rem 0;
    max-width: 10rem;
    margin: 1rem;
    margin-bottom: .5rem;
}

.visuelOption .ecriteasoption p {
    text-align: center;
    max-width: 10rem;
    margin-bottom: .5rem;
    margin-top: 1rem;
}

.visuteasoption img {
    height: 100%;
    min-width: 100%;
}

@media screen and (max-width: 768px) {

    .teasoption {
        width: 100%;
        border-bottom: 1px #cecece solid;
        padding-bottom: .5rem;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-around;
        margin: 1rem;
    }

    .visuelOption .teasoption {
        margin: 0rem;
        }

    .teasoption:nth-child(even) {
        flex-direction: row-reverse;
    }

    .ecriteasoption p {
        text-align: center;
        max-width: 100%;
    }

    .visuteasoption {
        height: 8rem;
        width: 8rem;
        border-radius: 50%;
        background-color: #efefef;
        margin-right: 0rem;
        margin-bottom: .5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }
}

.choixoption .teasoption {
    border-bottom: none;
    padding-bottom: 0rem;
    margin: 0;
    padding: .5rem;
    width: 100%;
}

.choixoption .visuteasoption {
    margin-bottom: 1rem;
}

.choixoption .ecriteasoption p {
    margin-bottom: 0rem;
    text-align: center;
}

.unAvis {
    width: 20rem;
    height: fit-content;
    background-color: var(--secondary);
    padding: 1rem;
    margin: 1rem;
    border-radius: 12px;
}

@media screen and (max-width: 768px) {
    .unAvis {
        width: 100%;
    }
}

.black .unAvis {
    background-color: #000;
}

.etoiles {
    position: relative;
    margin-bottom: 1rem;
}
  
.etoile {
    color: gold;
    font-size: 1em;
    margin-right: 5px;
}

.unAvis p {
    font-style: italic;
}

.choixsetup {
    width: 100%;
    overflow-y: scroll;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.blocsetup {
    width: 35rem;
    margin-right: 1rem;
    text-align: center;
    padding: 1rem 0;
    margin-bottom: .5rem;
}

.blocsetup p {
    margin: 0 2rem;
    margin-bottom: 2rem;
}

.visusetup {
    width: calc(100% - 2rem);
    margin-left: 1rem;
    height: 18rem;
    overflow: hidden;
}

.blocsetup img {
    position: relative;
    width: 100%;
    min-height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lesartistes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem 2rem;
    width: 100%;
    padding: 2rem 8rem;
    padding-top: 8rem;
    grid-auto-flow: dense;
    overflow: hidden;
}

@media screen and (max-width: 1200px) {

    .lesartistes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 1rem;
    width: 100%;
    padding: 2rem 4rem;
    padding-top: 8rem;
    }
}

@media screen and (max-width: 768px) {

    .lesartistes {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 1rem;
        width: 100%;
        padding: 2rem 0rem;
        padding-top: 8rem;
    }
}

.artiste {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    background-color: var(--color-black);
    border-radius: 42px;
    transition: .3s;
}

.artiste.artisteGroup {
    grid-column: span 2;
    aspect-ratio: auto;
}

@media screen and (max-width: 768px) {

    .artiste.artisteGroup {
        height: 12rem;
    }
}

a.artiste:hover {
    text-decoration: none;
}


.artiste:hover {
    background-color: var(--primary);
    transition: .3s;

}

.contentArtiste {
    position: relative;
    border-radius: 42px;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    padding: 1rem;
}

.artiste h4,
.artiste p {
    margin-bottom: .5em;
    color: white;
}

.artiste .visuArtiste {
    position: absolute;
    top: calc(50% - 2rem);
    left: 50%;
    transform: translate(-50%, -50%);
    height: calc(100% + 4rem);
    border-bottom-right-radius: 42px;
    border-bottom-left-radius: 42px;
    overflow: visible;
}

@media screen and (max-width: 1200px) {

    .artiste .visuArtiste {
        position: absolute;
        top: calc(50% - 2rem);
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: calc(100% + 2rem);
        border-bottom-right-radius: 42px;
        border-bottom-left-radius: 42px;
        overflow: visible;
    }
}

@media screen and (max-width: 768px) {

    .artiste .visuArtiste {
        position: absolute;
        top: calc(50% - 2rem);
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: calc(100% + 2rem);
        border-bottom-right-radius: 42px;
        border-bottom-left-radius: 42px;
        overflow: visible;
    }
}

.artiste .visuArtiste img {
    position: relative;
    z-index: -1;
    overflow: visible;
}

.artiste ul {
    padding: 0 1rem;
}

.artiste ul p {
    padding: 0 1rem;
    text-align: left;
    font-size: .8rem;
}

.artiste li {
    list-style: circle;
    margin-bottom: .5rem;
}

.artiste .boxprix {
    position: static;
    margin-top: 5rem;
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
}

.artiste .theprix {
    position: absolute;
    bottom: 2rem;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
}

.bestseller {
    position: absolute;
    top: 0rem;
    right: 0rem;
    width: 5rem;
    height: 5rem;
    z-index: 100;
}

.bestseller img {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.audioBloc h4{
    text-align: left;
    margin-bottom: .5em;
    margin-top: 2rem;
}

.audio-container {
    width: 100%;
    height: 4rem;
    font-family: var(--font-title);
    margin: 1rem 0;
    background: transparent;
    padding: .5rem 0;
    border-bottom: 1px solid var(--secondary);
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.player {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.play-btn {
    background-color: var(--primary);
    border: none;
    padding: 1rem;
    border-radius: 50%;
    height: 100%;
    aspect-ratio: 1;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    margin: 0;
}

.primary .play-btn {
    background-color: hwb(30 39% 40%);
}

.play-btn img{
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 1rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.progress-bar {
    flex: 1;
    height: 5px;
    background: #cecece;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
    margin: 0 1rem;
    z-index: 2;
}

.progress-bar::before {
    content: "";
    position: absolute;
    left: 0;
    top: -1rem;
    right: 0;
    bottom: -1rem;
    background-color: transparent;
}
.progress {
    height: 100%;
    width: 0;
    background: var(--ternary);
    border-radius: 5px;
}

.time {
    font-size: 14px;
    color: #666;
}

.unePlaylist {
    max-width: 20rem;
    min-height: 20rem;
    margin: 1rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.lesmusiciens {
    overflow: hidden;
    width: 100%;
    text-align: justify;
}

.lesmusiciens ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
}

.lesmusiciens ul li:nth-child(2) {
    width: 30rem;
}

.lesmusiciens video {
    width: 30rem;
}

.lesmusiciens img {
    width: 30rem;
}

.lesmusiciens audio {
    width: 90%;
    margin-top: -2rem;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (max-width: 768px) {

    .lesmusiciens ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .lesmusiciens ul li:nth-child(2) {
        width: 100%;
    }

    .lesmusiciens video {
        position: relative;
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
    }

    .lesmusiciens img {
        position: relative;
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
    }

    .lesmusiciens audio {
        width: 80%;
        margin-top: -2rem;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

}

.meilleurloc .article {
    background-color: var(--primary);
}

.lesarticles {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6rem 2rem;
    width: 100%;
    padding: 0 2rem;
}

.article {
    position: relative;
    background-color: var(--secondary);
    border-radius: 24px;
    width: 100%;
    min-height: 10rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr 2fr;
}

.article.packArticle {
    grid-column: span 2;
}

@media screen and (max-width: 1024px) {

    .lesarticles {
        grid-template-columns: repeat(2, 1fr);
    gap: 6rem 1rem;
    padding: 0 2rem;
    }
}

@media screen and (max-width: 768px) {

    .lesarticles {
        
        overflow: hidden;
        grid-template-columns: repeat(1, 1fr);
    gap: 6rem 1rem;
    padding: 0 2rem;
    padding-top: 4rem;
    }
}

.black .article {
    background-color: var(--primary);
}

.article div:nth-child(2){
    padding: 1rem;
    margin-bottom: 1rem;
}

.article .visuArticle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items:end;
    top: -4rem;
    margin-bottom: -4rem;
}

.visuArticle img {
    position: absolute;
    height: 100%;
    -webkit-filter: drop-shadow(3px 6px 6px rgba(0, 0, 0, 0.3));
}

@media screen and (max-width: 768px) {

    .visuArticle img {
        height: auto;
        width: calc(100% - 6rem);
    }
}

.article h4 {
    margin-bottom: 1rem;
}

.panier {
    width: 50rem;
    margin: 0 auto;

}

@media screen and (max-width: 768px) {

    .panier {
        width: 100%;
    }
}


.elementdevis {
    width: 1fr;
    margin: .5rem;
    padding: 2rem;
    border-radius: 12px;
}

.choixmix {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 7rem;
    width: 100%;
    margin-bottom: .5rem;
    transition: .2s;
    padding: 1rem;
    overflow: hidden;
    text-align: left;
}

.txtchoixmix {
    margin-right: 1rem;
}

.txtchoixmix p:nth-child(1) {
    font-weight: 700;
    margin-bottom: .5em;
}

.visuchoixmix {
    position: relative;
    width: 5rem;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visuchoixmix img {
    min-width: fit-content;
    height: 100%;
}

@media screen and (max-width: 768px) {

    .visuchoixmix {
        position: absolute;
        top: 50%;
        transform: translate(50%, -50%);
        right: 20%;
        width: 10rem;
        height: 10rem;
        z-index: -1;
        opacity: .2;
    }

    .choixmix:nth-child(3) .visuchoixmix {
        right: 35%;
    }

    .txtchoixmix {
        margin-right: 0rem;
    }
}

@media screen and (max-width: 768px) {
    .panier .choixmix {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-bottom: .5rem;
        transition: .2s;
    }
}

.panier input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    height: 100%;
    width: 100%;
    border: solid 1px var(--ternary);
    border-radius: 15px;
    cursor: pointer;
    transition: .2s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.panier input[type="radio"]:hover {
    transition: .1s;
    background-color: rgba(0, 0, 0, 0.03);
}

.panier input[type="radio"]:checked {
    transition: .2s;
    border: solid 2px var(--primary);
    background-color: rgba(235, 135, 135, 0.2);
}

.panier input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    height: 100%;
    width: 100%;
    border: solid 1px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    cursor: pointer;
    transition: .2s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.panier input[type="checkbox"]:hover {
    transition: .1s;
    background-color: rgba(0, 0, 0, 0.03);
}

.panier input[type="checkbox"]:checked {
    transition: .2s;
    border: solid 2px var(--primary);
    background-color: rgba(235, 135, 135, 0.2);
}

.choixdevis {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 6em;
    width: 13rem;
    margin: .5rem;
    transition: .2s;
    text-align: center;
    overflow: hidden;
    border-radius: 12px;
    padding: 1rem;
}

.choixdevis p {
    line-height: 1.1em;
}

.choixoption {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 6em;
    width: 9rem;
    margin: 1rem;
    transition: .2s;
    text-align: center;
    overflow: hidden;
    border-radius: 15px;
}

@media screen and (max-width: 768px) {

    .choixdevis {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 6em;
        width: calc(50% - 0.4rem);
        margin: .1rem .1rem .2rem .1rem;
        transition: .2s;
        text-align: center;
    }
}

.box-option{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

@media screen and (max-width: 768px){
    .box-option{
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.choix-option{
    position: relative;
    width: 100%;
    padding-top: 1rem;
    border-radius: 12px;
}

.choix-option p{
    font-size: .8rem;
    margin-bottom: 0;
    padding: 0 .5rem;
}

.choix-option .visu{
    margin: 0 auto;
    margin-bottom: 1rem;
    width: 5rem;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.choixsalle {
    position: relative;
    min-height: 7em;
    width: 12rem;
    padding: 1rem;
    margin: 0 .5rem;
    margin-bottom: .5em;
    transition: .2s;
    overflow: hidden;
    border-radius: 15px;
}

.choixsalle p:nth-child(2) {
    font-size: 1.2em;
    font-weight: 700;
    text-align: center;
    margin-bottom: .5em;
}

.visudevis {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.2;
    left: 0rem;
    top: 0;
}

.visudevis img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    min-height: 100%;
    filter: saturate(0);
}

.visudevis video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    min-height: 100%;
}

.datelieu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 1rem;
}

.datelieu input[type="date"] {
    position: relative;
    width: 100%;
    height: 4em;
    border: none;
    border-radius: 12px;
    padding: 0 1rem;
    text-align: center;
    font-size: 1rem;
}

.datelieu input[type="text"] {
    position: relative;
    width: 100%;
    height: 4em;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    text-align: left;
    padding-left: 1em;
}

@media screen and (max-width: 768px) {
    .datelieu {
        grid-template-columns: repeat(1, 1fr);
    }
}

.devis-contact{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media screen and (max-width: 768px) {
    .devis-contact{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }
}

.coordo input {
    width: 100%;
    height: 4em;
    border: var(--secondary) 1px solid;
    border-radius: 12px;
    font-family: var(--font-text), sans-serif;
    font-size: 1rem;
    text-align: left;
    padding: 1em;
}

.panier input[type="submit"] {
    position: relative;
    width: calc(100% - 1rem);
    padding: 1rem;
    font-family: Roca, sans-serif;
    font-size: 1.5rem;
    color: black;
    text-align: center;
    background-color: var(--primary);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    margin-left: .5rem;
    transition: .2s;
}

.panier input[type="submit"]:hover {
    position: relative;
    background-color: var(--ternary);
    transition: .2s;
}

@media screen and (max-width: 768px) {

    .panier input[type="radio"] {
        appearance: none;
        -webkit-appearance: none;
        height: 100%;
        width: 100%;
        border: solid 3px rgba(0, 0, 0, 0.15);
        border-radius: 15px;
        cursor: pointer;
        transition: .2s;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .choixsalle {
        position: relative;
        min-height: 7em;
        width: 100%;
        padding: 1rem;
        margin-bottom: .5em;
        transition: .2s;
    }

    .coordo input[type="text"] {
        width: 15em;
        height: 4em;
        border: #cecece 3px solid;
        border-radius: 10px;
        text-align: center;
        font-size: 1rem;
        text-align: left;
        padding-left: 1em;
    }

    .coordo input[type="number"] {
        width: 15em;
        height: 4em;
        border: #cecece 3px solid;
        border-radius: 10px;
        text-align: center;
        font-size: 1rem;
        text-align: left;
        padding-left: 1em;
    }

    .coordo input[type="Email"] {
        width: 20em;
        height: 4em;
        border: #cecece 3px solid;
        border-radius: 10px;
        text-align: center;
        font-size: 1rem;
        text-align: left;
        padding-left: 1em;
    }

    .coordot {
        margin-bottom: 1.5em;
    }
}

/*fin de Panier*/

.unpartenaire {
    width: 100%;
}

.boxpartenaire {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding: 1rem 0rem;
    overflow: hidden;
}

.cartepartenaine {
    position: relative;
    top: 0rem;
    left: 0rem;
    padding: 0rem;
    margin: 0 1rem;
    width: 17rem;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.cartepartenaine table tr td {
    font-size: .8rem;
    font-family: neue-kabel, sans-serif;
    font-weight: 500;
    font-style: normal;
    line-height: 1.5rem;
}

.cartepartenaine table tr td:nth-child(1) {
    font-weight: 700;
    text-align: left;
}

.cartepartenaine table tr td:nth-child(2) {
    text-align: right;
}

.bloctextpartenaire {
    margin: 0 1rem;
    width: 30rem;
}

.visuelunpartenaire {
    position: sticky;
    top: 0rem;
    width: 15rem;
    height: 15rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.visuelunpartenaire img {
    width: 15rem;
    height: auto;
}

.fondunpartenaire {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -5;
}

.fondunpartenaire img {
    width: 100%;
    min-height: 100%;
    filter: opacity(20%);
}

@media screen and (max-width: 768px) {
    .boxpartenaire {
        position: relative;
        width: calc(100% - 2rem);
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 1rem;
        padding: 1rem 0rem;
        margin: 1rem;
        overflow: hidden;
        text-align: center;
    }

    .bloctextpartenaire {
        margin: 0 0rem;
        width: 100%;
    }

    .cartepartenaine {
        position: relative;
        top: 0rem;
        left: 0rem;
        padding: 0rem;
        margin: 1rem 0rem;
        width: 100%;
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border-radius: 15px;
        overflow: hidden;
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .cartepartenaine table {
        width: calc(100% - 10rem);
    }

    .visuelunpartenaire {
        position: sticky;
        top: 0rem;
        width: 15rem;
        height: 15rem;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        width: 100%;
    }

    .fondunpartenaire {
        position: absolute;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: -5;
    }

    .fondunpartenaire img {
        width: auto;
        min-height: auto;
        min-width: 100%;
        height: 100%;
        filter: opacity(20%);
    }
}

/* fin de partenaire*/


.demo3mix {
    padding: 1em;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.demomix {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 22rem;
    margin-top: 6rem;
    text-align: center;
}

.visudemo {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 15rem;
    height: 15rem;
    background-color: #cecece;
    border-radius: 100%;
    box-shadow: #7f7f7f 5px 5px 20px,
        inset #b8b8b8 10px 10px 30px;
}

.demomix:nth-child(2) h2 {
    position: relative;
    top: -3.7rem;
}

.visudemo img {
    position: relative;
    top: 66%;
    left: 50%;
    transform: translate(-50%, -100%);
    width: 17rem;
    margin-bottom: -7.5rem;
}

.demo3mix audio {
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    margin-top: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

@media screen and (max-width: 768px) {
    .demomix {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        margin-top: 8rem;
    }

    .visudemo {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        width: 18rem;
        height: 18rem;
        background-color: #cecece;
        border-radius: 100%;
        box-shadow: #7f7f7f 5px 5px 20px,
            inset #b8b8b8 10px 10px 30px;
    }

    .visudemo img {
        position: relative;
        top: 66%;
        left: 50%;
        transform: translate(-50%, -100%);
        width: 17rem;
        margin-bottom: -4.5rem;
    }
}

.presentationvalette {
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0em;
}

.presentationvalette .presDJ {
    width: 60%;
}

.presDJimg {
    position: sticky;
    width: 35%;
    height: calc(100vh - 2rem - 2.5rem);
    top: calc(2.5rem + 2rem);
    transform: translate(0%, 0%);
}

.presDJimg img {
    position: relative;
    max-width: 110%;
    max-height: 100vh;
    left: 50%;
    top: 100%;
    transform: translate(-50%, -100%);
}

.presDJimg .bloc {
    position: absolute;
    width: 50vw;
    height: 40vh;
    top: 66%;
    left: calc(100% + 2rem);
    transform: translate(-100%, -50%);
    background-color: rgba(235, 135, 135, 0.4);
    z-index: -5;
}

/* presentationvalette */

@media screen and (max-width: 768px) {

    .presentationvalette {
        justify-content: center;
        padding: 1em;
    }

    .presentationvalette .presDJ {
        width: 100%;
    }

    .presDJimg {
        position: relative;
        width: 100%;
        height: auto;
        top: 0%;
        transform: translate(0%, -100%);
        margin-bottom: -100%;
    }

    .presDJimg img {
        position: relative;
        max-width: auto;
        max-height: auto;
        left: 50%;
        top: 100%;
        transform: translate(-50%, -100%);
        opacity: .2;
    }

    .presDJimg .bloc {
        position: absolute;
        width: 20vw;
        height: calc(95% + 7rem);
        top: -7rem;
        left: calc(100% + 2rem);
        transform: translate(-100%, 0%);
        background-color: #e3691730;
        z-index: 20;
    }
}

.infc {
    display: flex;
    justify-content: space-between;
}

.blocclient {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 0 1rem;
}

.infc .enstud video {
    position: sticky;
    top: 5rem;
    width: 17rem;
    max-width: 50vw;
    margin: 0 1rem;
}

.leclient {
    display: flex;
    justify-content: center;
    align-self: self-start;
    flex-direction: column;
    margin: 1rem .5rem;
    width: 12rem;
    text-align: center;
}

.visuclient {
    position: relative;
    width: 8rem;
    height: 8rem;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 12px;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 1rem;
    transition: .5s;
}

.visuclient:hover {
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
    transition: .1s;
    width: 8.1rem;
    height: 8.1rem;
}

.leclient img {
    position: relative;
    width: 100%;
}


@media screen and (max-width: 768px) {

    .blocclient {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        margin: 0 0rem;
    }

    .infc .enstud video {
        display: none;
        position: relative;
        top: calc(0% + 4rem);
        left: 100%;
        width: 75%;

    }

    .leclient {
        display: flex;
        justify-content: center;
        align-self: self-start;
        flex-direction: column;
        margin: 1rem .5rem;
        width: 10rem;
        text-align: center;
    }

    .leclient img {
        position: relative;
        width: 100%;
    }
}

/* demo3mix */

@media screen and (max-width: 768px) {


    .demo3mix {
        padding: 2rem;
    }

    .demo3mix ul.mix3 {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .demo3mix .mix3 li {
        width: 100%;
        margin-bottom: 2em;
    }

    .demo3mix .mix3 li img {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        margin-bottom: 2rem;
    }

    .demo3mix .mix3 li h2 {
        text-align: center;
        margin-bottom: 1em;
    }

    .demo3mix .mix3 audio {
        width: 80%;
        margin-top: 1rem;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* lepanier */


/* footer */


footer {
    position: relative;
    width: 100%;
    height: auto;
    padding: 2rem 1rem;
    background-color: var(--color-black);
}

.thefooter {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.firstfooter {
    width: 100%;
    margin-top: -2rem;
    padding-bottom: -2rem;
    border-bottom: #808080 1px solid;
}

.blocfooter {
    width: 20rem;
    margin: 0 1rem;
}

.blocfooter p {
    color: var(--color-body);
}

.blocfooter:nth-child(1) {
    width: 15rem;
}

.blocfooter:nth-child(2) {
    width: 35rem;
}

.blocfooter:nth-child(3) {
    width: 15rem;
    text-align: center;
    color: #808080;
}

.blocfooter:nth-child(3) p {
    font-size: .8rem;
}

#slogant {
    position: relative;
    top: calc(100% - 2rem);
    transform: translateY(-100%);
}

.linkfooter {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
    .blocfooter {
        width: 100%;
        margin: 1rem 1rem;
        text-align: center;
    }

    #slogant {
        position: relative;
        top: 0rem;
        transform: translateY(0%);
        margin-top: 1rem;
    }

    .blocfooter:nth-child(1) {
        width: 100%;
    }

    .blocfooter:nth-child(2) {
        width: 100%;
    }

    .blocfooter:nth-child(3) {
        width: 100%;
    }

    .linkfooter {
        display: flex;
        width: 100%;
        justify-content: space-around;
        flex-wrap: wrap;
    }
}

/*partenaire1*/

@media screen and (max-width: 768px) {

    .partenaired .imgdj {
        position: absolute;
        top: 50%;
        left: 85%;
        transform: translate(-50%, -50%);
        height: 50%;
        z-index: 1;
    }

    .partenaireg .imgdj {
        position: absolute;
        top: 50%;
        left: 15%;
        transform: translate(-50%, -50%);
        height: 50%;
        z-index: 1;
    }

    .partenaire3 .imgdj {
        position: absolute;
        top: 50%;
        left: 85%;
        transform: translate(-50%, -50%);
        height: 50%;
        z-index: 1;
    }

    .partenairevideo video {
        position: absolute;
        width: 30%;
        top: 50%;
        transform: translateY(-50%);
    }
}

.postmail {
    position: fixed;
    top: 5em;
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
    min-height: 70vh;
    padding: 4em;
    background-color: rgba(205, 205, 205, 0.623);
    z-index: 100;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.postmail p:nth-child(2) {
    margin-bottom: 2em;
}

.lineImage {
    width: calc(100% + (2*var(--padding-full)));
    margin: 0 calc(var(--padding-full) - (var(--padding-full)*2));
    height: 15rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lineImage img {
    width: 100%;
    height: fit-content;
}

.masterImage {
    width: 100%;
    margin: 4rem 0;
    max-height: calc(100vh - var(--nav-height));
    max-height: 50rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.full .masterImage {
    margin: 0rem 0;
}

@media screen and (max-width: 768px) {
    .masterImage {
        width: 100%;
        margin: 4rem auto;
        height: fit-content;
        aspect-ratio: 16/9;
        max-height: calc(50vh - var(--nav-height));
    }
}

.masterImage img {
    width: 100%;
    height: 100%;
}

.masterVideo {
    width: 100%;
    min-height: 5rem;
    padding: 2rem 8rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .masterVideo {
        width: 100%;
        padding: 4rem 0;
        height: fit-content;
        max-height: 50rem;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.masterVideo video {
    width: 100%;
    aspect-ratio: 16/9;
}

.masterVideo iframe {
    width: 100%;
    aspect-ratio: 16/9;
}

alignLeft .lineArticle {
    width: calc(100% + (4*var(--padding-full)));
    margin: 0 calc(var(--padding-full) - (var(--padding-full)*3));
    height: 20rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lineArticle img {
    width: calc(100% + (4*var(--padding-full)));
    height: fit-content;
}

.lineImage {
    position: relative;
    width: calc(100% + var(--padding-full));
    height: 20rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lineImageFull {
    position: relative;
    width: calc(100% + var(--padding-full));
    height: calc(100vh - var(--nav-height));
    max-height: 60rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bblogg {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 2rem;
    padding: 2rem;
    gap: 2rem;
}

.bblogg .content:nth-child(1){
    grid-area: 1 / 1 / 2 / 4 ;
}

.bblogg .content:nth-child(2){
    grid-area: 1 / 4 / 2 / 5;
}

@media screen and (max-width: 768px) {

    .bblogg {
        grid-template-columns: repeat(1, 1fr);
        padding: 2rem 1rem;
        text-align: center;
    }

    .bblogg .content:nth-child(1){
        grid-area: 1 / 1 / 2 / 2 ;
    }
    
    .bblogg .content:nth-child(2){
        grid-area: 2 / 1 / 3 / 2;
    }

}

.bblogg h1, .bblogg p {
    color: white;
    text-shadow: 2px 2px 4px black;
}

.redacteur {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.redacteur img{
    position: relative;
    width: 7rem;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.redacteur p {
    color: white;
    text-shadow: 2px 2px 4px black;
}

@media screen and (max-width: 768px) {
    .redacteur {
        flex-direction: row;
        text-align: left;
        border: blue 2px solid;
    }
    .redacteur div:nth-child(2) {
        margin-left: 1rem;
    }
    .redacteur img{
        margin-bottom: 0;
    }
}

.blog {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    width: 100%;
}

.blog .textblog {
    width: 73vw;
    padding: 2rem;
}

.blog .textblog h2,
.blog .textblog h3 {
    text-align: left;
    margin-bottom: 1rem;
}


.menublog {
    width: 25vw;
    padding-top: 2rem;
    padding-bottom: 2rem;
    height: 100%;
}

.questionsblog {
    position: sticky;
    top: calc(2.5rem + 1rem);
    padding-left: 2rem;
    padding-right: 1rem;
    border-left: #cecece 1.5px solid;
}

.questionsblog a h3 {
    text-align: left;
}

.questionsblog a h3::after {
    content: none;
    position: relative;
    bottom: 0px;
    padding-left: 0px;
}

.questionsblog h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    text-align: left;
}

.unarticle {
    position: relative;
    margin-bottom: 3rem;
    padding: 1rem;
    box-shadow: 2px 5px 15px var(--secondary);
    border-radius: 10px;
    overflow: hidden;
    transition: .5s;
}

.blogplaylist ul {
    position: relative;
    display: flex;
    overflow: scroll;
}

.blogplaylist li {
    position: relative;
    margin-left: 1rem;
    margin-right: 1rem;
    min-width: 14rem;
}



@media screen and (max-width: 768px) {
    .blog {
        position: relative;
        display: flex;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        overflow: hidden;
    }

    .blog .textblog {
        width: 100%;
        padding: 1rem;
    }

    .menublog {
        width: 100vw;
        padding-top: 2rem;
        padding-bottom: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
        height: 100%;
    }

    .blogplaylist ul {
        position: relative;
        display: block;
        overflow: hidden;
    }

    .blogplaylist li {
        position: relative;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-bottom: 1rem;
        min-width: none;
    }
}

.mtpfond {
    overflow: hidden;
}

.mtpfond img {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, -100%);
    opacity: .1;
    filter: blur(0px);
    min-height: auto;
    min-width: auto;
    width: 70%;
}

.flexarticle {
    position: relative;
    display: flex;
    justify-content: space-around;
    margin: 1rem 0;
    border-left: 1.5px solid var(--secondary);
    padding: 0 1rem;
    flex-wrap: wrap;
}

.letexteblabla {
    margin: 2rem 1rem;
    max-width: 45rem;
}

.visuTextBlog {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 1rem;
}

.petiteVisu {
    width: 20rem;
    height: 20rem;
}

.visuTextBlog img {
    width: 100%;
    height: fit-content;
}

.flexarticle .stoparticle {
    overflow-x: scroll;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.flexarticle .letexteblabla ul {
    margin-left: 2rem;
}

li::marker {
    color: var(--primary);
}

.primary li::marker {
    color: black;
}

.letexteblabla li {
    list-style: decimal;
    margin-bottom: 1rem;
    font-style: normal;
    line-height: 1.5rem;
}

.flexarticle .letexteblabla ul ul li {
    list-style: circle;
    margin-left: 0rem;
    font-style: normal;
}

.flexarticle .letexteblabla ul.bigList {
    margin-left: 0rem;
}

.bigList {
    padding: 0em;
    list-style: circle inside;
    margin-bottom: 4rem;
}

ul.bigList li{
    border-bottom: 1px solid var(--secondary);
    padding-bottom: 1rem;
}

.black ul.bigList li{
    border-bottom: 1px solid var(--primary);
}


.lockBloc {
    padding: 0em;
}

ul .dropdown-item {
    position: relative;
    list-style: none;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 50px -10px, rgba(255, 255, 255, 0.543) -3px -3px 6px 1px inset;
    border-bottom: 1px solid var(--secondary);
    border-radius: 12px;
    padding-bottom: 0rem;
}

ul .dropdown-item:nth-child(1) {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 50px -10px, rgba(255, 255, 255, 0.543) -3px -3px 6px 1px inset, rgba(0, 0, 0, 0.1) 0px -12px 20px -12px;
}

.black ul .dropdown-item {
    box-shadow: rgba(0, 0, 0, 1) 0px 18px 50px -10px;
    border-bottom: 1px solid var(--ternary);
    border-radius: 12px;
    padding-bottom: 0rem;
}

.black ul .dropdown-item:nth-child(1) {
    box-shadow: rgba(0, 0, 0, 1) 0px 18px 50px -10px, rgba(0, 0, 0, 1) 0px -6px 30px -10px;
}

.lockBloc li {
    margin: 2rem 1rem;
    margin-bottom: 0rem;
    border-bottom: 1px solid var(--secondary);
}

.biglist li {
    margin: 2rem 1rem;
    margin-bottom: 0rem;
    padding: 1rem 0rem;
}

.bigList li p {
    font-size: 1.1em;
}

.lockBloc li p {
    font-size: 1.1em;
}

.lockBloc.grey li {
    border-bottom-color: #c6c6c6;
}

.lockBloc .dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    background-color: var(--color-body);
    padding: 0 1rem;
    top: var(--nav-height);
    z-index: 100;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.bigList .dropdown-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background-color:none;
    padding: 0rem 1rem;
    padding-bottom: 0rem;
    z-index: 100;
    width: 100%;
    height: 100%;
    z-index: 3;
    cursor: pointer;
}

.dropdown-header h3, .dropdown-header h4 {
    margin-bottom: 0;
    flex-grow: 1;
    padding: 1rem;
}

@media screen and (max-width: 768px){
    .bigList .dropdown-header h3{
        font-size: 1rem;
    }
}

.dropdown-header h4{
    font-family: var(--font-text);
    font-weight: 500;
}

.dropdown-header .icon {
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

.lockBloc .dropdown-item {
    margin-bottom: 0rem;
    cursor: pointer;
    box-shadow: none;
}

.bigList .dropdown-item {
    padding-bottom: 0;
}

.lockBloc .dropdown-item h3 {
    margin-bottom: 0em;
}

.dropdown-item .contentDropdown{
    display: none;
    z-index: -1;
    background-color: var(--color-body);
    transition: .3s;
    margin: 1rem 0;
    padding-bottom: 2rem;
}

.bigList .dropdown-item .contentDropdown{
    margin: 1rem 2rem;
}

.flexarticle .docarticle div {
    top: 4rem;
    position: sticky;
    width: calc(10vw - 6rem);
}

.articlenew .visunew {
    top: 6rem;
    left: 50%;
    position: absolute;
    width: calc(45vw - 0rem);
    z-index: -1;
    opacity: .3;
    overflow: hidden;
    max-height: calc(100% - 6rem - 5rem);
    display: flex;
    justify-content: center;
    align-items: center;
}

.visunew img {
    top: 0rem;
    position: relative;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .flexarticle {
        width: 100%;
    }

    .flexarticle img {
        top: 0rem;
        margin-bottom: 0rem;
        position: sticky;
        width: 100%;
    }

    .flexarticle .docarticle div {
        top: 0rem;
        position: relative;
        width: 100%;
    }
}

article h2 {
    position: relative;
    max-width: 100%;
    margin-bottom: 1.5rem;
}

article p {
    margin-bottom: 2rem;
    text-align: justify;
}

.fullfull {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    margin-bottom: 1rem;
    height: 20rem;
}

.gif {
    position: relative;
    display: flex;
    justify-content: left;
    overflow: hidden;
    margin-bottom: 1rem;
    width: 100%;
}

.gif div img {
    position: relative;
    width: 25rem;
    min-height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.fullfull img {
    position: relative;
    width: 100%;
    min-height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.formuloc {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.formuloc input {
    height: 3rem;
    width: 14rem;
    border-radius: 12px;
    border: #cecece 1px solid;
    padding: 1rem;
    background-color: #00000000;
    transition: 1s;
    font-size: .9rem;
    font-family: Roca, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.formuloc input:hover {

    border: #cecece 2px solid;
    transition: .1s;
}

.formuloc div {
    margin: 2rem;
}

.formuloc div p {
    margin: 0rem;
    margin-top: .3rem;
}

.footerarticle {
    background-color: var(--secondary);
    height: 4rem;
    margin-top: 1rem;
    margin-left: -1rem;
    width: calc(100% + 2rem);
}

.footerarticle p {
    position: relative;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    top: 50%;
    transform: translateY(-50%);
}

.footerarticle a {
    color: #808080;
    margin-right: 1rem;
}

@media screen and (max-width: 768px) {

    .flexarticle {
        position: relative;
        display: flex;
        justify-content: center;
        margin-bottom: 4rem;
        border-left: 1px solid #cecece;
        flex-wrap: wrap;
    }

    .flexarticle .letexteblabla {
        margin-right: 0rem;
        width: 100%;
    }



    .footerarticle {
        background-color: #eeeeee;
        height: auto;
        margin-left: -1rem;
        margin-top: -1rem;
    }

    .footerarticle p {
        position: relative;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        top: 0%;
        transform: translateY(-0%);
    }

    .footerarticle a {
        color: #808080;
        margin-bottom: 1rem;
        margin-right: 2rem;
        margin-top: 1rem;
    }

}

.visuarticle {
    width: 100%;
    height: 30rem;
    overflow: hidden;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visuarticle img {
    width: 100%;
}

.introcuve {
    margin-top: 2.5rem;
    height: auto;
    width: 100%;
    padding-top: 1rem;
    padding-left: 2rem;
}



.comparison-container {
    position: relative;
    width: 100%;
    aspect-ratio: 2.35/1;
    overflow: hidden;
}
.comparison-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}
.overlay img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: inset(0 50% 0 0);
}
.slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: .5rem;
    height: 100%;
    background-color: white;
    cursor: ew-resize;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 8px white;
}
.slider::before {
    position: absolute;
    content: url(/img/site/horizontalement.svg);
    width: 4rem;
}