@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --couleur1: #E0144C;
    --couleur2: #fce7ed;
}

.scrollbar {
    height: 768px;
}

::-webkit-scrollbar {
    width: 8px;
    height: 0px
}

::-webkit-scrollbar-thumb {
    background-color: var(--couleur1);
    border: 4px solid var(--couleur1);
}

::-webkit-scrollbar-track {
    background-color: var(--couleur2);
}

html {
    scroll-behavior: smooth;
}

h4 a {
    color: #E0144C;
    transition: .3s;
    padding: 4px 8px;
}

h4 a:hover {
    background-color: #E0144C;
    color: #fff;
}

h3 {
    font-family: "Bebas Neue";
    color: #E0144C;
    font-size: 22px;
}

h4 {
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.5;
}

*, ::before, ::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
}

body {
    position: relative;
}

.loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 20;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.loader-logo {
    background-color: var(--couleur1);
    width: 27px;
    height: 15px;
    margin: 4px auto;
    -webkit-animation: loading 1.2s linear infinite;
    animation: loading 1.2s linear infinite
}

@-webkit-keyframes loading {
    0% {
        background-color: var(--couleur1);
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    90% {
        background-color: #f7dde3;
        -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
        transform: scale(0.8);
    }

    100% {
        background-color: var(--couleur1);
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes loading {
    0% {
        background-color: var(--couleur1);
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    90% {
        background-color: #f7dde3;
        -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
        transform: scale(0.8);
    }

    100% {
        background-color: var(--couleur1);
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.loader-logo:nth-child(2) {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}

.loader-logo:nth-child(3) {
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
}

.fondu-out {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .5s;
    -o-transition: opacity .5s;
    transition: opacity .5s;
}

.shadow {
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

header {
    height: 80px;
    width: 150px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: background-color ease .3s, box-shadow ease .3s;
}

body.scrolly header {
    background-color: #FFF;
    -webkit-box-shadow: 0 3px 6px rgba(224, 20, 76, 0.16), 0 3px 6px rgba(224, 20, 76, 0.23);
    box-shadow: 0 3px 6px rgba(224, 20, 76, 0.16), 0 3px 6px rgba(224, 20, 76, 0.23);
}

.boxes-header {
    width: 1024px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

header .logo {
    margin: 0;
    padding: 0 10px 0 0;
    height: 80px;
    -webkit-transition: -webkit-transform linear .1s;
    transition: -webkit-transform linear .1s;
    -o-transition: transform linear .1s;
    transition: transform linear .1s;
    transition: transform linear .1s, -webkit-transform linear .1s;
}

.boxes-header nav {
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.boxes-header nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.boxes-header nav ul a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 10px 14px;
    -webkit-transform: all ease .5s;
    -ms-transform: all ease .5s;
    transform: all ease .5s;
}

.boxes-header nav ul a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--couleur1);
    left: 0;
    bottom: 0;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: -webkit-transform 1s ease;
    transition: -webkit-transform 1s ease;
    -o-transition: transform 1s ease;
    transition: transform 1s ease;
    transition: transform 1s ease, -webkit-transform 1s ease;
}

.boxes-header nav ul a:hover::after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
}

.boxes-header nav ul a li {
    text-transform: uppercase;
    font-family: Roboto;
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    -webkit-transition: color ease .5s;
    -o-transition: color ease .5s;
    transition: color ease .5s;
}

body.scrolly nav ul a li {
    color: black;
}

.boxes-header nav ul a:hover li {
    color: var(--couleur1);
}

header label {
    position: absolute;
    right: 0;
    top: 0;
    width: 80px;
    height: 80px;
    visibility: hidden;
}

#menu-mobile {
    position: absolute;
    top: 80px;
    right: 0px;
    background: #fff;
    width: 240px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
    -webkit-box-shadow: 0 3px 6px rgba(224, 20, 76, 0.16), 0 3px 6px rgba(224, 20, 76, 0.23);
    box-shadow: 0 3px 6px rgba(224, 20, 76, 0.16), 0 3px 6px rgba(224, 20, 76, 0.23);
}

#check {
    display: none;
}

#check:checked~#menu-mobile {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.burger-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -webkit-transition: background-color .5s ease;
    -o-transition: background-color .5s ease;
    transition: background-color .5s ease;
    cursor: pointer;
}

.display-menu {
    text-transform: uppercase;
    font-family: 'Bebas Neue';
    font-size: 14px;
    font-weight: 700;
    color: var(--couleur2);
    padding-bottom: 4px;
    letter-spacing: 3px;
    padding-left: 4px;
    text-align: center;
    -webkit-transition: color .5s ease;
    -o-transition: color .5s ease;
    transition: color .5s ease;
}

body.scrolly .display-menu {
    color: #000;
}

.burger-menu:hover .display-menu {
    color: #fff;
}

.burger-menu span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    top: 0px;
    left: 0px;
    background-color: var(--couleur2);
    z-index: 1;
    -webkit-transform-origin: 4px 0px;
    -ms-transform-origin: 4px 0px;
    transform-origin: 4px 0px;
    -webkit-transition: background-color 0.5s ease, opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    transition: background-color 0.5s ease, opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    -o-transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background-color 0.5s ease, opacity 0.55s ease;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background-color 0.5s ease, opacity 0.55s ease;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background-color 0.5s ease, opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

body.scrolly .burger-menu span {
    background-color: #000;
}

body.scrolly .burger-menu:hover span {
    background-color: var(--couleur2);
}

.burger-menu:hover {
    background-color: var(--couleur1);
}

.burger-menu:hover span {
    background-color: #fff;
}

#check:checked~.burger-spans {
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);

}

#check:checked~.burger-menu span {
    opacity: 1;
    -webkit-transform: rotate(45deg) translate(5px, -2px);
    -ms-transform: rotate(45deg) translate(5px, -2px);
    transform: rotate(45deg) translate(5px, -2px);
}

#check:checked~.burger-menu span:nth-last-child(2) {
    opacity: 0;
    -webkit-transform: rotate(0deg) translateX(-33px);
    -ms-transform: rotate(0deg) translateX(-33px);
    transform: rotate(0deg) translateX(-33px);
}

#check:checked~.burger-menu span:nth-last-child(1) {
    -webkit-transform: rotate(-45deg) translate(0px, 3px);
    -ms-transform: rotate(-45deg) translate(0px, 3px);
    transform: rotate(-45deg) translate(0px, 3px);
}

#menu-mobile ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

#menu-mobile nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

#menu-mobile li {
    width: 100%;
    padding: 16px 20px;
    text-align: center;
    -webkit-transition: background-color ease .3s;
    -o-transition: background-color ease .3s;
    transition: background-color ease .3s;
}

#menu-mobile a {
    font-family: Montserrat;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    color: #000;
    -webkit-transition: color ease .3s;
    -o-transition: color ease .3s;
    transition: color ease .3s;
}

#menu-mobile li:hover {
    background-color: var(--couleur1);
}

#menu-mobile a:hover {
    color: #fff;
}

.espacemusicien {
    z-index: 101;
    float: right;
    position: absolute;
    padding: 7px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    right: 40px;
    top: 0px;
    font-size: 12px;
    text-transform: uppercase;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    -webkit-transition: padding ease .2s;
    -o-transition: padding ease .2s;
    transition: padding ease .2s;
}

.espacemusicien a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    -webkit-transition: color ease .2s;
    -o-transition: color ease .2s;
    transition: color ease .2s;
}

.espacemusicien:hover {
    background-color: var(--couleur1);
    padding: 10px 20px;
}

.espacemusicien:hover a {
    color: #fff
}

.logo img {
    height: 80px;
    width: 150px;
    -webkit-transform: translateX(-4px);
    -ms-transform: translateX(-4px);
    transform: translateX(-4px)
}

.logo:hover {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
}

.background {
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 0;
    margin: 0;
    padding: 0;
    top: 0;
}

.background img {
    height: 100vh;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    object-position: top center;
    -o-object-position: top center;
    overflow: hidden;
    -webkit-transition: -webkit-transform 1.5s;
    transition: -webkit-transform 1.5s;
    -o-transition: transform 1.5s;
    transition: transform 1.5s;
    transition: transform 1.5s, -webkit-transform 1.5s;
}

.bloc {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.bloc iframe {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    object-fit: cover;
}

@media (min-aspect-ratio: 16/9) {
    .bloc iframe {
        height: 56.25vw;
    }
}

@media (max-aspect-ratio: 16/9) {
    .bloc iframe {
        width: 177.78vh;
    }
}

@keyframes vol {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1);
    }

    55% {
        transform: scale(1.2);
    }

    70% {
        transform: scale(1);
    }

    85% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.unmute:hover {
    color: var(--couleur2);
}

body.scrolly .background img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.bienvenue {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.bienvenue::before {
    position: absolute;
    z-index: -101;
    content: "";
    background-color: #000;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
}

.bienvenue h1 {
    position: absolute;
    bottom: 280px;
    left: 50%;
    font-size: 36px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

body.scrolly .bienvenue>h1 {
    opacity: 0;
}

.toBottom {
    position: absolute;
    margin-left: 50vw;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 20px;
    z-index: 2;
    margin-bottom: 40px;
    border-radius: 50%;
    -webkit-transition: opacity ease .5s;
    -o-transition: opacity ease .5s;
    transition: opacity ease .5s;
}

body.scrolly .toBottom {
    opacity: 0;
}

.fa-chevron-down {
    position: relative;
    font-size: 2em;
    padding: 20px 20px 30px 20px;
    color: rgba(255, 255, 255, .5);
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-transition: color .5s;
    -o-transition: color .5s;
    transition: color .5s;
}

.fa-chevron-down::after {
    position: absolute;
    content: '\f078';
    font-family: Font Awesome 5 Free;
    font-weight: 900;
    top: 32px;
    right: 20px;
    color: rgba(255, 255, 255, .5);
    -webkit-transition: color .5s;
    -o-transition: color .5s;
    transition: color .5s;
}

.toBottom:hover .fa-chevron-down,
.toBottom:hover .fa-chevron-down::after {
    color: var(--couleur1);
}

@-webkit-keyframes bounce {
    0% {
        -webkit-transform: scale(1, 1) translateY(0);
        transform: scale(1, 1) translateY(0);
    }

    10% {
        -webkit-transform: scale(1, 1, .9) translateY(0);
        transform: scale(1, 1, .9) translateY(0);
    }

    30% {
        -webkit-transform: scale(1, 1.2) translateY(10px);
        transform: scale(1, 1.2) translateY(10px);
    }

    50% {
        -webkit-transform: scale(1, 1) translateY(0);
        transform: scale(1, 1) translateY(0);
    }

    57% {
        -webkit-transform: scale(1, 1) translateY(2px);
        transform: scale(1, 1) translateY(2px);
    }

    64% {
        -webkit-transform: scale(1, 1) translateY(0);
        transform: scale(1, 1) translateY(0);
    }

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

@keyframes bounce {
    0% {
        -webkit-transform: scale(1, 1) translateY(0);
        transform: scale(1, 1) translateY(0);
    }

    10% {
        -webkit-transform: scale(1, 1, .9) translateY(0);
        transform: scale(1, 1, .9) translateY(0);
    }

    30% {
        -webkit-transform: scale(1, 1.2) translateY(10px);
        transform: scale(1, 1.2) translateY(10px);
    }

    50% {
        -webkit-transform: scale(1, 1) translateY(0);
        transform: scale(1, 1) translateY(0);
    }

    57% {
        -webkit-transform: scale(1, 1) translateY(2px);
        transform: scale(1, 1) translateY(2px);
    }

    64% {
        -webkit-transform: scale(1, 1) translateY(0);
        transform: scale(1, 1) translateY(0);
    }

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

.part {
    scroll-margin-top: 110px;
    background: #f9f4f4;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    scroll-margin-top: 80px;
    padding: 40px 0;
}

.pink {
    background: #f7dde3;
}

.boxes-part {
    width: 100%;
    max-width: 1044px;
    margin-left: 20px;
    margin-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

p {
    text-align: justify;
    font-family: Roboto;
    font-size: 16px;
    letter-spacing: 2px;
    line-height: 1.5;
    padding-bottom: 30px;
}

p strong {
    font-family: "Bebas Neue";
    letter-spacing: 0;
    font-size: 26px;
    font-weight: normal;
    color: var(--couleur1);
}

h1 {
    font-family: "Bebas Neue";
    letter-spacing: 2px;
    text-align: center;
    text-transform: none;
    font-size: 28px;
    margin-bottom: 40px;
    color: #fff;
    background: var(--couleur1);
    padding: 3px 10px 0 10px;
    -webkit-transition: opacity 1s ease;
    -o-transition: opacity 1s ease;
    transition: opacity 1s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

button, input[type="submit"], input[type="reset"] {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}

button {
    font-family: Roboto;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2px;
    padding: 10px;
    border: 1px solid #000;
    text-transform: uppercase;
    background: #000;
    color: white;
    -webkit-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}

button a {
    font-family: Roboto;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2px;
    padding: 10px;
    border: 1px solid #000;
    text-transform: uppercase;
    background: #000;
    color: white;
    -webkit-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;

}

button:hover {
    background: var(--couleur1);
    border: 1px solid var(--couleur2);
}

button a:hover {
    background: var(--couleur1);
    border: 1px solid var(--couleur2);
}

.boxes-actus {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
}

.box-affiche {
    position: relative;
    margin: 0 20px 0;
}

.border-affiche {
    width: 342px;
    overflow: hidden;
}

.box-affiche img {
    width: 342px;
    height: 484;
    -webkit-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}

.box-affiche img:hover {
    transform: scale(1.02);
}

.box-affiche button {
    position: absolute;
    top: 250px;
    right: -22px;
}

.box-texte a {
    padding: 0;
}

.box-texte {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    padding-left: 0px;
    margin: 0 20px;
    text-align: center;
}

.box-texte p {
    text-align: center;
}

.box-pub {
    display: flex;
    flex: 1;
    min-width: 500px;
    margin: 0 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.box-pub h1 {
    margin-top: 0px;
}

#compte {
    color: var(--couleur1);
    background-color: #FFF;
    font-family: 'Bebas Neue';
    font-weight: 500;
    font-size: 42px;
    padding: 4px 12px 0 12px;
    margin-bottom: 28px;
    margin-top: 4px;
    border-top: 10px dashed var(--couleur1);
    border-bottom: 10px dashed var(--couleur1);
}

.warpper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 0 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tab {
    cursor: pointer;
    margin: 0px 14px;
    padding: 10px 20px;
    background: #fff;
    display: inline-block;
    color: var(--couleur1);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.tab:hover {
    background: var(--couleur1);
    padding-bottom: 16px;
}

.tab h2 {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    -webkit-transition: color .3s ease;
    -o-transition: color .3s ease;
    transition: color .3s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
}

.tab:hover h2 {
    color: #fff;
}

.tab p {
    padding-bottom: 6px;
    padding-top: 0;
    line-height: 0;
    font-style: italic;
}

.tab:hover p {
    color: #fff;
}

.pso-panels, .agenda-panels, .medias-panels, .soutien-panels, .artistes-panels {
    background: #ffffff;
    width: 100%;
    overflow: hidden;
}

.pso-panel, .agenda-panel, .medias-panel, .soutien-panel, .artistes-panel {
    display: none;
    -webkit-animation: fadein .5s;
    animation: fadein .5s;
    padding-bottom: 40px;
}

@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.radio {
    display: none;
}

#pso-one:checked~.pso-panels #pso-one-panel,
#pso-two:checked~.pso-panels #pso-two-panel,
#pso-three:checked~.pso-panels #pso-three-panel,
#pso-four:checked~.pso-panels #pso-four-panel,
#artistes-one:checked~.artistes-panels #artistes-one-panel,
#artistes-two:checked~.artistes-panels #artistes-two-panel {
    display: block;
}

#agenda-one:checked~.agenda-panels #agenda-one-panel,
#agenda-two:checked~.agenda-panels #agenda-two-panel,
#medias-one:checked~.medias-panels #medias-one-panel,
#medias-two:checked~.medias-panels #medias-two-panel,
#medias-three:checked~.medias-panels #medias-three-panel,
#soutien-one:checked~.soutien-panels #soutien-one-panel,
#soutien-two:checked~.soutien-panels #soutien-two-panel,
#soutien-three:checked~.soutien-panels #soutien-three-panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#medias-two:checked~.medias-panels #medias-two-panel {
    flex-direction: column;
    align-items: center;
    padding-bottom: 32px;
}


#pso-one:checked~.tabs #pso-one-tab,
#pso-two:checked~.tabs #pso-two-tab,
#pso-three:checked~.tabs #pso-three-tab,
#pso-four:checked~.tabs #pso-four-tab,
#agenda-one:checked~.tabs #agenda-one-tab,
#agenda-two:checked~.tabs #agenda-two-tab,
#medias-one:checked~.tabs #medias-one-tab,
#medias-two:checked~.tabs #medias-two-tab,
#medias-three:checked~.tabs #medias-three-tab,
#soutien-one:checked~.tabs #soutien-one-tab,
#soutien-two:checked~.tabs #soutien-two-tab,
#soutien-three:checked~.tabs #soutien-three-tab,
#artistes-one:checked~.tabs #artistes-one-tab,
#artistes-two:checked~.tabs #artistes-two-tab {
    background: var(--couleur1);
    color: #fff;
    -webkit-box-shadow: 0 0.5rem 0.8rem #00000060;
    box-shadow: 0 0.5rem 0.8rem #00000060;
    padding-bottom: 16px;
}

#pso-one-panel img {
    width: 100%;
    height: 500px;
    -o-object-fit: cover;
    object-fit: cover;
}

#pso-two-panel img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    object-position: right bottom;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.border-pam {
    width: 300px;
    height: 300px;
    margin: 0 40px 0 0;
    overflow: hidden;
    float: left;
}

#pso-one-panel p {
    text-indent: 60px;
}

#pso-two-panel img:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.pso-panel p {
    padding: 20px 40px 0 40px;
    width: 100%;
}

.center p {
    text-align: center;
}

.indent p {
    text-indent: 60px;
}

#pso-two-panel p {
    text-indent: 0;
}

#pso-three-panel p strong {
    text-indent: 0;
    text-align: center;
}

#agenda-one-panel {
    background-image: url("../img/backgrounds/cosmos.jpg");
    background-repeat: none;
    background-position: center center;
    background-size: cover;
    padding: 20px;
}

.saison button {
    background-color: var(--couleur1);
    color: var(--couleur2);
    margin-top: 8px;
    word-wrap: break-word;
    max-width: calc(100vw - 40px);
}
.concert {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.date-chef {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 120px;
    margin-right: 10px;
}

.date-chef-border {
    width: 120px;
    height: 120px;
    overflow: hidden;
}

.date-chef img {
    width: 120px;
    height: 120px;
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
}

.date-chef:nth-child(1) img {
    margin-bottom: 10px;
}

.date-chef-border:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.border-horizontal {
    display: none;
}

.agenda-affiche {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 320px;
}

.agenda-affiche-border {
    width: 320px;
    height: 320px;
    overflow: hidden;
}

.agenda-affiche img {
    width: 320px;
    height: 320px;
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
}

.agenda-affiche-border:hover img {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}

.agenda-affiche h2 {
    color: #fff;
    font-family: "Bebas Neue";
    letter-spacing: 2px;
    padding: 10px 0 0 0;
}

.agenda-affiche h2 strong {
    color: var(--couleur1)
}

.agenda-affiche p {
    color: #fff;
    text-indent: 0;
    padding: 20px 0 0 0
}

.agenda-affiche button {
    border: 1px solid #fff;
    -webkit-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
    margin-top: 8px;
}

.agenda-affiche button:hover {
    border: 1px solid var(--couleur1);
}

#agenda-two-panel {
    background-image: url("../img/backgrounds/cosmos.jpg");
    background-repeat: none;
    background-position: center center;
    background-size: cover;
    padding: 20px 20px 0 20px;
}

.agenda-programme p {
    color: #fff;
    padding: 0 0 20px 10px
}

.agenda-programme p strong {
    font-family: Roboto;
    font-size: 16px;
    letter-spacing: 2px;
}

.agenda-programme h2 {
    color: #fff;
    padding: 0 0 20px 8px;
    font-family: "Bebas Neue";
    letter-spacing: 2px;
}


.agenda-programme h2 strong {
    color: var(--couleur1)
}

.saison p {
    color: #fff;
}

#medias-one-panel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #fff;
}

#medias-one-panel p {
    color: #000;
    text-align: center;
    padding: 30px 0 40px 0;
}

#medias-two-panel {
    text-align: center;
    padding: 30px 40px 0 40px;
}

#medias-two-panel .iframe-container, .box-pub .iframe-container {
    display: flex;
    width: 100%;
    max-width: 600px;
    margin: 0 20px 0 20px;
    overflow: hidden;
}

#medias-two-panel span, .box-pub span {
    position: relative;
    height: 100%;
    width: 100%;
    padding-bottom: calc((9 / 16) * 100%);
    overflow: hidden;
    z-index: 1;
}

#medias-two-panel iframe, .box-pub iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


#medias-three-panel {
    text-align: center;
    padding: 30px 40px 0 40px;
}

.box-photos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.border-photos {
    width: 140px;
    height: 140px;
    margin: 0 4px 8px;
    overflow: hidden;
}

.border-photos img {
    width: 200px;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
}

.box-photos:nth-child(2) img {
    -o-object-position: bottom right;
    object-position: bottom right;
}

.border-photos:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.institutions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.border-institutions {
    height: 100px;
    margin: 10px 5px 0 5px;
    overflow: hidden;
    -ms-grid-column-align: center;
    justify-self: center;
    -webkit-transition: -webkit-box-shadow ease .3s;
    transition: -webkit-box-shadow ease .3s;
    -o-transition: box-shadow ease .3s;
    transition: box-shadow ease .3s;
    transition: box-shadow ease .3s, -webkit-box-shadow ease .3s;
}

.border-institutions img {
    height: 100px;
    -webkit-transition: -webkit-transform .2s ease;
    transition: -webkit-transform .2s ease;
    -o-transition: transform .2s ease;
    transition: transform .2s ease;
    transition: transform .2s ease, -webkit-transform .2s ease;
    background: #fff;
}

.border-institutions:hover {
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.border-institutions:hover img {
    -webkit-transform: scale(1.04);
    -ms-transform: scale(1.04);
    transform: scale(1.04);
}

.soutien-panel {
    padding: 30px 40px 0 40px;
}

.soutien-logos {
    background: #f7dde3;
    padding: 0 10px 10px 10px;
    margin-bottom: 40px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.crowdfunding {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding-top: 10px;
}

.artistes-panel {
    padding: 30px 40px 0 40px;
}

.institutions .center a, #artistes a {
    color: var(--couleur1);
    padding: 4px 8px;
    -webkit-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}

.institutions .center a:hover, #artistes a:hover {
    color: #fff;
    background: var(--couleur1);
}

#form-contact {
    width: 100%;
    padding: 0 20px;
}

#contact input {
    border: 1px solid transparent;
    border-bottom: 1px solid #000;
    padding: 10px;
    background: none;
    width: 100%;
    font-size: 16px;
    font-family: Roboto;
    letter-spacing: 2px;
    margin-bottom: 40px;
    -webkit-transition: background-color ease .5s;
    -o-transition: background-color ease .5s;
    transition: background-color ease .5s;
}

#contact input:focus-visible, #contact textarea:focus-visible {
    border: 2px solid var(--couleur1);
    padding: 9px;
    background: #fff;
    outline: none;

}

#contact textarea {
    border: 1px solid transparent;
    border-bottom: 1px solid #000;
    padding: 10px;
    background: none;
    width: 100%;
    height: 174px;
    font-size: 16px;
    font-family: Roboto;
    letter-spacing: 2px;
    margin-bottom: 10px;
    -webkit-transition: background-color ease .5s;
    -o-transition: background-color ease .5s;
    transition: background-color ease .5s;
}

#form-contact input:not([type=submit]):hover, #form-contact textarea:hover {
    background: #fff;
    border-bottom: 2px solid var(--couleur1);
    padding-bottom: 9px;
}

#envoi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 37px;
    width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

#contact input[type=submit] {
    text-transform: uppercase;
    border: none;
    padding: 0;
    font-size: 14px;
    font-family: Roboto;
    letter-spacing: 2px;
}

#contact input[type=submit]:hover {
    border: none;
}

.coordonnees {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 20px 60px 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px;
    color: #000;
    -webkit-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}

.items p {
    font-size: 13px;
    letter-spacing: 1px;
    text-align: center;
    padding: 0;
    color: #000;
    -webkit-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}

.items .fa-phone, .items .fa-envelope, .items .fa-globe, .items .fa-map-marker-alt {
    margin-bottom: 20px;
    font-size: 40px;
}

.items:hover {
    color: #fff;
    background-color: var(--couleur1);
}

.items:hover p {
    color: #fff;
}

#big-footer {
    background: #000;
    padding-bottom: 80px;
}

#big-footer h1 {
    background: #444;
    color: #fff;
}

#big-footer p {
    text-align: center;
    color: #ccc;
    padding-bottom: 0;
    letter-spacing: 6px;
    font-size: 14px;
}

.social .fa-facebook-f, .social .fa-instagram, .social .fa-twitter, .social .fa-youtube {
    font-size: 48px;
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 80px;
    color: #ccc;
    margin: 0 20px 40px 20px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    cursor: pointer;
}

.social .fa-facebook-f:hover, .social .fa-instagram:hover, .social .fa-twitter:hover, .social .fa-youtube:hover {
    color: var(--couleur1);
}

footer {
    position: fixed;
    z-index: 12;
    bottom: 0;
    left: 0;
    height: 40px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px);
    -webkit-transition: -webkit-transform ease 1s;
    transition: -webkit-transform ease 1s;
    -o-transition: transform ease 1s;
    transition: transform ease 1s;
    transition: transform ease 1s, -webkit-transform ease 1s;
}

body.scrolly footer {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.boxes-footer {
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #fff;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
}

.boxes-footer .fa-facebook-f, .boxes-footer .fa-instagram, .boxes-footer .fa-twitter, .boxes-footer .fa-youtube {
    font-size: 28px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    margin: 0 0;
    color: #000;
    background: #fff;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.16), 0 1px 33px rgba(0, 0, 0, 0.23);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    cursor: pointer;
}

.boxes-footer .fa-facebook-f:hover, .boxes-footer .fa-instagram:hover, .boxes-footer .fa-twitter:hover, .boxes-footer .fa-youtube:hover {
    color: #fff;
    background: var(--couleur1);
}

@media screen and (max-width: 960px) {
    header label {
        visibility: visible;
    }

    .boxes-header nav {
        display: none;
    }

    p {
        font-size: 12px;
        letter-spacing: 1px;
    }

    p strong {
        letter-spacing: 0;
        font-size: 18px;
    }

    h1 {
        font-size: 22px;
        margin: 0 10px 40px;

    }

    h4 {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .boxes-actus {
        flex-direction: column;
        align-items: center;
    }

    .box-affiche {
        position: relative;
        margin: 0 10px 0 10px;
    }

    .border-affiche {
        width: 100%;
        max-width: 400px;
        overflow: hidden;
    }

    .box-affiche img {
        width: 100%;
        max-width: 280px;
    }

    .box-pub {
        min-width: 100%;
        padding: 0 10px;
    }

    .box-pub h1 {
        margin-top: 40px;
    }


    .box-affiche button {
        position: relative;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 10px;
    }

    .warpper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        padding: 0 10px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
    }

    .tabs {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
    }

    .tab {
        cursor: pointer;
        margin: 0px 2px 4px 2px;
        padding: 10px 4px;
        background: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .tab:nth-child(1) {
        margin: 0 2px 4px 0;
    }

    .tab:nth-last-child(1) {
        margin: 0 0 4px 2px;
    }

    .tab:hover {
        background: var(--couleur1);
        padding-bottom: 10px;
    }

    #pso-one:checked~.tabs #pso-one-tab,
    #pso-two:checked~.tabs #pso-two-tab,
    #pso-three:checked~.tabs #pso-three-tab,
    #pso-four:checked~.tabs #pso-four-tab,
    #agenda-one:checked~.tabs #agenda-one-tab,
    #agenda-two:checked~.tabs #agenda-two-tab,
    #medias-one:checked~.tabs #medias-one-tab,
    #medias-two:checked~.tabs #medias-two-tab,
    #medias-three:checked~.tabs #medias-three-tab,
    #soutien-one:checked~.tabs #soutien-one-tab,
    #soutien-two:checked~.tabs #soutien-two-tab,
    #soutien-three:checked~.tabs #soutien-three-tab,
    #artistes-one:checked~.tabs #artistes-one-tab,
    #artistes-two:checked~.tabs #artistes-two-tab {
        background: var(--couleur1);
        color: #fff;
        -webkit-box-shadow: 0 0.5rem 0.8rem #00000060;
        box-shadow: 0 0.5rem 0.8rem #00000060;
        padding-bottom: 14px;
        margin-bottom: 0;
    }

    #me .tab h2 {
        font-weight: 500;
        font-size: 12px;
        text-align: center;
    }

    .tab:hover h2 {
        color: #fff;
    }

    .tab p {
        font-size: 11px;
        text-align: center;
    }

    .pso-panel, .agenda-panel, .medias-panel, .soutien-panel, .artistes-panel {
        padding-bottom: 14px;
    }

    #pso-one-panel img {
        height: 240px;
    }

    #pso-two-panel img {
        width: 180px;
        height: 140px;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: left center;
        object-position: left center;
        -webkit-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
    }

    .border-pam {
        background-color: var(--couleur2);
        text-align: center;
        width: 100%;
        height: 140px;
        margin: 10px 0 10px 0;
    }

    #pso-one-panel p {
        text-indent: 40px;
    }

    .pso-panel p {
        padding: 10px 10px 0 10px;
        width: 100%;
    }

    .indent p {
        text-indent: 40px;
    }

    #pso-two-panel, #pso-three-panel, #pso-four-panel {
        padding-top: 4px;
    }

    #agenda-one-panel {
        padding: 10px 10px 0 10px;
        position: relative;
    }

    .concert {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;

    }

    .informations {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 80%;
        margin-right: 10px;
        margin-bottom: 20px;
    }

    .date-chef {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 80px;
        margin-right: 10px;
        margin-bottom: 20px;
    }

    .date-chef-border {
        width: 80px;
        height: 80px;
        overflow: hidden;
        margin-right: 10px;
    }

    .date-chef img {
        width: 80px;
        height: 80px;
        -webkit-transition: -webkit-transform .3s ease;
        transition: -webkit-transform .3s ease;
        -o-transition: transform .3s ease;
        transition: transform .3s ease;
        transition: transform .3s ease, -webkit-transform .3s ease;
    }

    .date-chef>img {
        margin-bottom: 10px;
    }

    .date-chef-border:hover img {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    .agenda-affiche {
        width: calc(100% - 100px);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-left: 10px;
    }

    .agenda-affiche p, .agenda-affiche h2, .agenda-affiche a {
        text-align: left;
        width: 100%;
    }

    .agenda-affiche-border {
        display: none;
    }

    .agenda-affiche-mobile {
        width: 100%;
    }

    .border-horizontal {
        display: block;
        width: 100%;
        padding-bottom: calc(630/1702 * 100%);
        margin-bottom: 10px;
        overflow: hidden;
        position: relative
    }

    .border-horizontal img {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        margin: 0;
        padding: 0;
        -webkit-transition: -webkit-transform .3s ease;
        transition: -webkit-transform .3s ease;
        -o-transition: transform .3s ease;
        transition: transform .3s ease;
        transition: transform .3s ease, -webkit-transform .3s ease;
    }

    .border-horizontal:hover img {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    .agenda-affiche img {
        width: 170px;
        height: 170px;
        -webkit-transition: -webkit-transform .3s ease;
        transition: -webkit-transform .3s ease;
        -o-transition: transform .3s ease;
        transition: transform .3s ease;
        transition: transform .3s ease, -webkit-transform .3s ease;
    }

    .agenda-affiche-border:hover img {
        -webkit-transform: scale(1.03);
        -ms-transform: scale(1.03);
        transform: scale(1.03);
    }

    .agenda-affiche h2 {
        color: #fff;
        font-family: "Bebas Neue";
        letter-spacing: 2px;
        padding: 0;
    }

    .agenda-affiche h2 strong {
        color: var(--couleur1)
    }

    .agenda-affiche p {
        color: #fff;
        text-indent: 0;
        padding: 10px 0 0 0
    }

    .agenda-affiche button {
        margin-top: 8px;
    }

    .agenda-affiche button:hover {
        border: 1px solid var(--couleur1);
    }

    #agenda-two-panel {
        padding: 14px 10px 4px 10px;
    }

    #agenda-two-panel p {
        padding-bottom: 10px;
    }

    .agenda-programme p {
        padding: 0 0 10px 0;
    }

    .agenda-programme p strong {
        font-family: Roboto;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .agenda-programme h2 {
        padding: 0 0 10px 0;
        letter-spacing: 2px;
    }

    .saison p {
        color: #fff;
    }

    #medias-one-panel, #medias-three-panel {
        padding-top: 10px;
    }

    #medias-one-panel p {
        color: #000;
        text-align: center;
        padding: 10px 10px 20px 10px;
    }

    #medias-two-panel {
        text-align: center;
        padding: 20px 10px 0 10px;
    }

    #medias-two-panel p {
        padding: 0 0 10px 0;
    }

    #medias-three-panel p {
        padding: 0 0 10px 0;
    }

    #medias-three-panel {
        text-align: center;
        padding: 10px 10px 0 10px;
    }

    .box-photos {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .border-photos {
        width: 100px;
        height: 100px;
        margin: 4px 4px;
        overflow: hidden;
    }

    .border-photos img {
        width: 100px;
        height: 100px;
        -o-object-fit: cover;
        object-fit: cover;
        -webkit-transition: -webkit-transform .3s ease;
        transition: -webkit-transform .3s ease;
        -o-transition: transform .3s ease;
        transition: transform .3s ease;
        transition: transform .3s ease, -webkit-transform .3s ease;
    }

    .box-photos:nth-child(2) img {
        -o-object-position: bottom right;
        object-position: bottom right;
    }

    .border-photos:hover img {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    .institutions {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .border-institutions {
        height: 80px;
        overflow: hidden;
        -ms-grid-column-align: center;
        justify-self: center;
        -webkit-transition: -webkit-box-shadow ease .3s;
        transition: -webkit-box-shadow ease .3s;
        -o-transition: box-shadow ease .3s;
        transition: box-shadow ease .3s;
        transition: box-shadow ease .3s, -webkit-box-shadow ease .3s;
    }

    .border-institutions img {
        height: 80px;
        -webkit-transition: -webkit-transform .2s ease;
        transition: -webkit-transform .2s ease;
        -o-transition: transform .2s ease;
        transition: transform .2s ease;
        transition: transform .2s ease, -webkit-transform .2s ease;
        background: #fff;
    }

    .border-institutions:hover {
        -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    }

    .border-institutions:hover img {
        -webkit-transform: scale(1.04);
        -ms-transform: scale(1.04);
        transform: scale(1.04);
    }

    .soutien-panel {
        padding: 14px 10px 0 10px;
    }

    .soutien-panel p {
        padding-bottom: 10px;
    }

    .soutien-panel h1 {
        margin-bottom: 20px;
    }

    .soutien-logos {
        margin-bottom: 20px;
    }

    .crowdfunding {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        padding-top: 10px;
    }

    .artistes-panel {
        padding: 14px 10px 0 14px;
    }

    .artistes-panel p {
        padding-bottom: 10px;
    }

    #form-contact {
        padding: 0 10px;
    }

    #contact input {
        padding: 10px;
        width: 100%;
        font-size: 12px;
    }

    #contact textarea {
        height: 162px;
        font-size: 12px;
    }

    .coordonnees {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0 10px 40px 10px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
    }

    .items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 10px;
    }

    .items p {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .items .fa-phone, .items .fa-envelope, .items .fa-globe, .items .fa-map-marker-alt {
        margin-bottom: 10px;
        font-size: 28px;
    }

    #big-footer {
        background: #000;
        padding-bottom: 80px;
    }

    #big-footer h1 {
        background: #444;
        color: #fff;
    }

    #big-footer p {
        text-align: center;
        color: #ccc;
        padding: 0 10px;
        letter-spacing: 3px;
        font-size: 12px;
    }

    .social .fa-facebook-f, .social .fa-instagram, .social .fa-twitter, .social .fa-youtube {
        font-size: 32px;
        width: 60px;
        height: 60px;
        text-align: center;
        line-height: 60px;
        color: #ccc;
        margin: 0 10px 40px 10px;
        -webkit-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
        cursor: pointer;
    }

    .social .fa-facebook-f:hover, .social .fa-instagram:hover, .social .fa-twitter:hover, .social .fa-youtube:hover {
        color: var(--couleur1);
    }

}

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

    .tab h2 {
        font-size: 10px;
    }

    .border-photos {
        width: 80px;
        height: 80px;
    }

    .border-photos img {
        width: 80px;
        height: 80px;
    }
}