/* ***********************************************   Nav  ************************************************** */
span.material-symbols-outlined {
    color: #ff5950;
    width: 24px;
    height: 24px;
}

.dropdown {
    position: relative;
    display: flex;
    transition: 2s ease-in-out;
}

.dropdown:hover {
    cursor: default;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: transparent;
    min-width: 160px;
    z-index: 1;
    transition: 1s ease-in-out;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    text-decoration: none;
    display: block;
    text-align: center;
    transition: 0.2s ease-in-out;
}

.dropdown-content a:hover {
    color: #ff5950;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 50px;
    padding-left: 50px;
    padding-top: 20px;
    position: relative;
    z-index: 2;
}

a.btn.btn-light {
    background-color: #ff595056;
    border: none;
    width: 210px;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-right: 0px;
    transition: 0.2s ease-in-out;
    font-family: "source-sans-pro", sans-serif;
}

a.btn.btn-light:hover {
    background-color: #ff59507a;
    color: white;
}

.liens-nav {
    padding-top: 5px;
    display: flex;
    align-items: center;
}

.home {
    display: flex;
    justify-content: space-around;
}


.liens-nav a {
    color: rgb(255, 255, 255);
    font-family: "source-sans-pro", sans-serif;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 17px;
    padding: 0px 40px 1px 3px;
}

p.programmation {
    color: rgb(255, 255, 255);
    font-family: "source-sans-pro", sans-serif;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 17px;
    display: inline;
    padding: 0px 40px 0px 3px;
    transition: 0.2s ease-in-out;
}

p.programmation:hover {
    color: #ff5950;

}

.dropdown-content a {
    padding: none;
}

.span-home {
    position: relative;
}

span.home {
    position: absolute;
    bottom: 5px;
    right: -3px;
}

.contact {
    display: flex;
    justify-content: space-around;
}

a.lien {
    transition: 0.2s ease-in-out;
}

a.lien:hover {
    color: #ff5950;
}

/* *********************************************** header   ************************************************** */

.img {
    position: relative;
    background-image: url(../img/flat-lay-metal-surface.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 390px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.477);
    z-index: 1;
}

.h1 {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3%;
    margin-bottom: 0px;
}



.h1 img {
    transform: rotate(-25deg);
    animation: shake 2s infinite alternate;
}


.h1 img:last-child {
    transform: rotate(25deg);
    animation: shake 2s infinite alternate;
}

@keyframes shake {
    0% {
        transform: translate(0, 0);
    }

    10% {
        transform: translate(-2px, );
    }

    20% {
        transform: translate(2px, );
    }

    30% {
        transform: translate(-2px, );
    }

    40% {
        transform: translate(2px, );
    }

    50% {
        transform: translate(-2px, );
    }

    60% {
        transform: translate(2px, );
    }

    70% {
        transform: translate(-2px, );
    }

    80% {
        transform: translate(2px, );
    }

    90% {
        transform: translate(-2px, );
    }

    100% {
        transform: translate(0, );
    }

}

h1 {
    color: white;
    font-family: "devils-haircut", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 99px;
}

/* *********************************************** MAIN   ************************************************** */

.conteneur-groupe {
    display: grid;
    grid-auto-rows: 450px;
    grid-row-gap: 40px;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    align-items: center;
    margin-top: 4%;
    margin-right: 5%;
    margin-left: 5%;
    margin-bottom: 5%;
}

.groupe {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 75%;
    max-height: 90%;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.66);
    border-radius: 40px;
    margin-bottom: 20px;
}

.groupe.flipped {
    transform: rotateY(180deg);
}

.groupe img {
    position: relative;
    width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease-in-out;
}

.groupe:hover img {
    transform: scale(1.1);
}

.card {
    position: absolute;
    bottom: 0px;
    left: 0;
    background-color: rgb(0, 0, 0);
    width: 100%;
    height: 25%;
    border-radius: 0px 0px 40px 40px;
    display: flex;
    text-align: center;
    transition: 0.3s ease-in-out;
}

.groupe:hover .card {
    height: 38%;
}

.groupe p.ville {
    opacity: 0;
    left: 15px;
    position: absolute;
    top: 50;
    margin-top: 21px;
    margin-bottom: 50px;
    font-family: "source-sans-pro", sans-serif;
    font-size: 20px;
    color: #8041ff;
    font-weight: bold;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.groupe:hover p.ville {
    visibility: visible;
    opacity: 1;
}

.groupe:hover p.nom {
    top: -20px;
    font-size: 50px;
}

p.nom {
    font-family: "source-sans-pro", sans-serif;
    font-size: 25px;
    text-transform: uppercase;
    margin-bottom: 0px;
    margin-top: 10px;
    line-height: 10px;
    color: #ff5950;
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 10px;
    transition: 0.3s ease-in-out;
}

.nom-ville {
    display: flex;
    justify-content: space-between;
    height: 50px;
}

form {
    position: relative;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: 20px;
    width: 100%;
    z-index: 5;
}

form input {
    width: 50%;
    height: 50px;
    border-radius: 25px;
    border: 5px solid #ff5950;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: 0px;
    font-size: 20px;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    padding-left: 25px;
    line-height: 50px;

}

img.instagram {
    display: none;
}

a.lien-instagram {
    display: none;
}

input::placeholder {
    font-family: "source-sans-pro", sans-serif;
    font-size: 22px;
    color: #0000003d;
    padding-left: 5px;
}

.date {
    border-radius: 7px;
    margin-left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.date p {
    color: rgba(255, 255, 255, 0);
    margin-bottom: 0px;
    font-family: "source-sans-pro", sans-serif;
    font-weight: bold;
    color: rgb(255, 255, 255);
    transition: 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.groupe:hover .date p {
    font-size: 25px;
    visibility: visible;
    opacity: 1;
}

.date-heure {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 5px;
}

.heure p {
    margin-bottom: 0px;
    color: white;
    margin-right: 15px;
    font-family: "source-sans-pro", sans-serif;
    font-weight: bold;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.groupe:hover .heure p {
    font-size: 35px;
    visibility: visible;
    opacity: 1;
}



/* *********************************************** Footer    ************************************************** */

.img-footer {
    position: relative;
    background-image: url(../img/footer-picture2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.overlay-footer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.184);
    z-index: 1;
}

.logo-footer {
    position: relative;
    z-index: 2;
    width: 30%;
    margin-top: 9%;
    margin-left: 3%;
}

.info-footer {
    background-color: #111111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 329px;
}

.info-footer .info {
    display: flex;
    justify-content: space-between;
    width: 600px;
    margin-left: 89px;
}

h4 {
    font-family: "source-sans-pro", sans-serif;
}

.a-propos p {
    color: #888888;
    font-family: "source-sans-pro", sans-serif;
}

.nav-footer a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    transition: 0.2s ease-in-out;
    font-family: "source-sans-pro", sans-serif;
}

.nav-footer a:hover {
    color: #888888;
}

.billets-achat {
    margin-right: 89px;
}

.billets-achat p {
    text-align: center;
    line-height: 35px;
    font-family: "source-sans-pro", sans-serif;
    font-weight: bold;
    font-size: 36px;
    color: white;
}

.billets-achat a.boutton {
    margin-left: 50%;
    transform: translateX(-50%);
    font-family: "source-sans-pro", sans-serif;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    padding-left: 0px;
}

.copyright-reseau-sociaux {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 103px;
    background-color: black;
}

.copyright {
    margin-left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.copyright p {
    color: #888888;
}

.copyright2023 {
    display: flex;
    margin-left: 50%;
    transform: translateX(-50%);
}

.copyright2023 p {
    color: #888888;
    margin-left: 5px;
}

.reseau-sociaux img {
    width: 25px;
    height: 25px;
    margin-right: 40px;
}

h4 {
    color: white;
}

span.arrow {
    color: #ffffff;
}

#back-to-top {
    display: none;
    position: fixed;
    bottom: 136px;
    right: 12px;
    background-color: #ff5950;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    z-index: 50;
}


#back-to-top.show {
    display: block;
}


/* ******************************************MOBILE*********************************************** */


@media screen and (max-width: 1200px) {

    html,
    body {
        overflow-x: hidden;
    }

    body {
        position: relative
    }

    .lieux-date {
        width: 400px;
    }

    a.btn.btn-light {
        width: 132px;
    }

    .conteneur-groupe {
        grid-template-columns: repeat(2, 1fr);
    }

    .billets-achat p {
        font-size: 30px;
        margin-bottom: 0px;
    }

    .billets-achat a.boutton {
        margin-top: 10px;
    }

    .copyright-reseau-sociaux {
        width: 100%;
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
        height: 178px;
        background-color: #111111;
    }

    .reseau-sociaux a img {
        margin-right: 30px;
    }

    .reseau-sociaux a img:last-child {
        margin-right: 0px;
    }

    .reseau-sociaux {
        width: 25%;
        display: flex;
        justify-content: space-around;
        margin-bottom: 30px;
    }

    .copyright {
        margin-left: 0%;
        transform: translateX(0%);
        text-align: center;
        width: 100%;
    }

    .copyright p {
        margin-bottom: 10px;
    }

    .copyright2023 {
        display: flex;
        justify-content: center;
        margin-left: 0%;
        transform: translateX(0%);
        width: 100%;
        margin-top: 10px;
    }

    .conteneur-laisser-passer {
        height: 308px;
    }

    .conteneur-laisser-passer p {
        font-size: 18px;
    }

    h4.laisser-passer {
        font-size: 35px;
    }

    .groupe:hover .date p {
        font-size: 20px;
    }

    .groupe:hover .heure p {
        font-size: 30px;
    }

    .groupe:hover p.ville {
        font-size: 29px;
    }

    .img {
        height: 362px;
    }

}

.menu-burger {
    flex-direction: column;
    cursor: pointer;
    display: none;
    transition: 0.2s ease-in-out;
}

.bar {
    width: 45px;
    height: 3px;
    background: white;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(225, 101, 47, .2);
    transition: all .4s ease-in-out;
}

.bar::before,
.bar::after {
    content: "";
    position: absolute;
    width: 45px;
    height: 3px;
    background: white;
    border-radius: 3px;

    transition: all .4s ease-in-out;
}

.bar::before {
    transform: translateY(-16px);

}

.bar::after {
    transform: translateY(16px);

}

.menu-croix.open .bar {
    transform: translateX(-50px);
    background: transparent;
    box-shadow: none;
    animation: fadeOut 50ms ease-in;
}

@keyframes fadeOut {
    from {
        background: white;
    }

    to {
        background: transparent;
    }
}


.menu-croix.open .bar::before {
    transform: rotate(45deg) translate(35px, -35px);
}

.menu-croix.open .bar::after {
    transform: rotate(-45deg) translate(35px, 35px);
}


@media screen and (max-width: 959px) {

    html,
    body {
        overflow-x: hidden;
    }

    body {
        position: relative
    }

    .menu-burger {
        display: flex;
        position: relative;
        justify-content: center;
        align-items: center;
        width: 60px;
        height: 60px;
        cursor: pointer;
        transition: all .5s ease-in-out;
        z-index: 15;
    }

    .nav {
        margin-right: 0px;
    }

    .liens-nav {
        display: none;
        justify-content: flex-start;
        align-items: flex-end;
        flex-direction: column;
        background-color: #000000;
        position: fixed;
        top: -30px;
        right: 0;
        width: 100%;
        padding: 20px;
        z-index: 10;
        height: 100vh;
        padding-top: 88px;
    }

    .logo {
        position: relative;
        z-index: 15;
    }

    form {
        z-index: 1;
    }

    span.home {
        bottom: 15px
    }

    .dropdown-content {
        position: relative;
    }

    a.btn.btn-light {
        margin-right: 38px;
        order: 3;
        margin-top: 27px;
        width: 165px;
    }

    .contact,
    .btn {
        margin-top: 10px;
    }

    .liens-nav {
        margin-top: 30px;
    }

    .liens-nav a {
        color: #fff;
        font-size: 18px;
        margin-bottom: 10px;
        text-decoration: none;
        text-align: center;
    }

    .dropdown {
        order: 2;
        margin-top: 10px;
    }

    .contact {
        order: 1;
    }

    .menu-burger.open+.liens-nav {
        display: flex;
    }

    .menu-burger.open .dropdown:hover .contact,
    .menu-burger.open .dropdown:hover .btn {
        margin-top: 120px;
    }

    .nav {
        margin-right: 17px;
    }

    form input {
        width: 48%;
        border: 4px solid #ff5950;
        margin-top: -15px;
        font-size: 20px;

    }

    input::placeholder {
        font-family: "source-sans-pro", sans-serif;
        font-size: 22px;
        color: #0000003d;
        padding-left: 3px;
    }

    .h1 {
        margin-top: 5%;
        margin-bottom: 0px;
        z-index: 1;
    }

    h1 {
        font-size: 74px;
    }

    .h1 img {
        width: 90px;
        height: 90px;
    }

    .h1 img:last-child {
        width: 90px;
        height: 90px;
    }

    .info-footer {
        flex-direction: column;
        height: 650px;
        justify-content: space-evenly;
    }

    .info {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .info-footer .info {
        margin-left: 0px;
    }

    .a-propos p {
        text-align: center;
    }

    h4 {
        text-align: center;
    }

    .nav-footer a {
        display: block;
        text-align: center;
    }

    .billets-achat {
        margin: 0px;
    }

    a.lien-groupe {
        padding: 10px 96px;
    }

    .background {
        background-image: none;
    }

    .background .overlay {
        background-color: white;
    }

    .conteneur-groupe {
        grid-template-columns: repeat(1, 1fr);
        grid-row-gap: 17px;
        margin-top: 4%;
    }

    .img {
        height: 356px;
    }

    form input {
        width: 65%;
        margin-top: 18px;
        border: 5px solid #ff5950;
    }

    .nav {
        margin-right: 0px;
    }
}


@media screen and (min-width:480px) and (max-width: 767px) {

    html,
    body {
        overflow-x: hidden;
    }

    body {
        position: relative
    }

    form input {
        margin-top: 0px;
    }

    input::placeholder {
        font-size: 20px;
    }

    .groupe:hover p.nom {
        font-size: 42px;
    }

    .groupe:hover .date p {
        font-size: 18px;
    }

    .nav {
        margin-right: 0px;
    }

    .menu-burger {
        display: flex;
        position: relative;
        justify-content: center;
        align-items: center;
        width: 60px;
        height: 60px;
        cursor: pointer;
        transition: all .5s ease-in-out;
        z-index: 15;
    }

    .nav {
        margin-right: 0px;
    }

    .liens-nav {
        display: none;
        justify-content: flex-start;
        align-items: flex-end;
        flex-direction: column;
        background-color: #000000;
        position: fixed;
        top: -30px;
        right: 0;
        width: 100%;
        padding: 20px;
        z-index: 10;
        height: 100vh;
        padding-top: 88px;
    }

    .logo {
        position: relative;
        z-index: 15;
    }

    form {
        z-index: 1;
    }
}

@media screen and (min-width: 360px)and (max-width: 479px) {

    html,
    body {
        overflow-x: hidden;
    }

    body {
        position: relative
    }

    .bar::before {
        transform: translateY(-12px);
    }

    .bar::after {
        transform: translateY(12px);
    }

    .nav {
        margin-right: 0px;
        padding-right: 15px;
        padding-left: 15px;
        padding-top: 8px;
    }

    form input {
        margin-top: 0px;
        border: 4px solid #ff5950;
        padding-left: 8px;
    }

    input::placeholder {
        font-size: 20px;
    }

    .liens-nav {
        margin-top: 0px;
        padding-right: 10px;
    }

    .liens-nav a.lien {
        padding-right: 10px;
        margin-bottom: 0px;
    }

    p.programmation {
        padding-right: 10px;
    }

    .liens-nav a.btn.btn-light {
        margin-right: 9px;
        margin-top: 7px;
    }

    span.home {
        bottom: 6px;
    }

    .billets-achat p {
        font-size: 20px;
    }

    .copyright p {
        font-size: 13px;
    }

    .reseau-sociaux a {
        margin-right: 10px;
    }

    .reseau-sociaux a:last-child {
        margin-right: 0px;
    }

    .img {
        height: 279px;
    }

    .groupe:hover p.nom {
        font-size: 35px;
    }

    .groupe:hover .date p {
        font-size: 18px;
    }

    .groupe:hover .heure p {
        display: none;
    }

    .groupe {
        max-height: 87%;
        width: 89%;
    }

    .conteneur-groupe {
        grid-row-gap: 0px;
    }

    .nav {
        margin-right: 0px;
    }

    .menu-burger {
        display: flex;
        position: relative;
        justify-content: center;
        align-items: center;
        width: 60px;
        height: 60px;
        cursor: pointer;
        transition: all .5s ease-in-out;
        z-index: 15;
    }

    .nav {
        margin-right: 0px;
    }

    .liens-nav {
        display: none;
        justify-content: flex-start;
        align-items: flex-end;
        flex-direction: column;
        background-color: #000000;
        position: fixed;
        top: -30px;
        right: 0;
        width: 100%;
        padding: 20px;
        z-index: 10;
        height: 100vh;
        padding-top: 88px;
    }

    .logo {
        position: relative;
        z-index: 15;
    }

    form {
        z-index: 1;
    }

    h1 {
        font-size: 67px;
    }

    .liens-nav {
        margin-top: 0px;
        padding-right: 20px;
        padding-top: 100px;
    }

    #back-to-top {
        bottom: 14px;
        padding: 5px 7px;
    }
}


@media screen and (min-width: 320px)and (max-width: 359px) {

    html,
    body {
        overflow-x: hidden;
    }

    body {
        position: relative
    }

    .bar::before {
        transform: translateY(-12px);
    }

    .bar::after {
        transform: translateY(12px);

    }

    .nav {
        margin-right: 0px;
        padding-right: 15px;
        padding-left: 15px;
        padding-top: 8px;
    }

    .liens-nav {
        margin-top: 0px;
        padding-right: 10px;
    }

    .liens-nav a.lien {
        padding-right: 10px;
        margin-bottom: 0px;
    }

    p.programmation {
        padding-right: 10px;
    }

    .liens-nav a.btn.btn-light {
        margin-right: 9px;
        margin-top: 7px;
    }

    span.home {
        bottom: 6px;
    }

    a.fleche {
        top: 84%;
    }

    a.lien-groupe {
        padding: 10px 30px;
        font-size: 16px;
    }

    .billets-achat p {
        font-size: 20px;
    }

    .copyright p {
        font-size: 13px;
    }

    .reseau-sociaux a {
        margin-right: 10px;
    }

    .reseau-sociaux a:last-child {
        margin-right: 0px;
    }

    .logo img {
        width: 113px;
    }

    form input {
        margin-top: 0px;
        border: 4px solid #ff5950;
        padding-left: 8px;
    }

    input::placeholder {
        font-size: 20px;
    }

    .liens-nav {
        margin-top: 0px;
        padding-right: 10px;
    }

    .liens-nav a.lien {
        padding-right: 10px;
        margin-bottom: 0px;
    }

    p.programmation {
        padding-right: 10px;
    }

    .liens-nav a.btn.btn-light {
        margin-right: 9px;
        margin-top: 7px;
    }

    span.home {
        bottom: 6px;
    }

    .billets-achat p {
        font-size: 20px;
    }

    .copyright p {
        font-size: 13px;
    }

    .reseau-sociaux a {
        margin-right: 10px;
    }

    .reseau-sociaux a:last-child {
        margin-right: 0px;
    }

    .img {
        height: 279px;
    }

    .groupe:hover p.nom {
        font-size: 35px;
    }

    .groupe:hover .date p {
        font-size: 18px;
    }

    .groupe:hover .heure p {
        display: none;
    }

    .groupe {
        max-height: 87%;
        width: 89%;
    }

    .conteneur-groupe {
        grid-row-gap: 0px;
    }

    .nav {
        margin-right: 0px;
    }

    .menu-burger {
        display: flex;
        position: relative;
        justify-content: center;
        align-items: center;
        width: 60px;
        height: 60px;
        cursor: pointer;
        transition: all .5s ease-in-out;
        z-index: 15;
    }

    .nav {
        margin-right: 0px;
    }

    .liens-nav {
        display: none;
        justify-content: flex-start;
        align-items: flex-end;
        flex-direction: column;
        background-color: #000000;
        position: fixed;
        top: -30px;
        right: 0;
        width: 100%;
        padding: 20px;
        z-index: 10;
        height: 100vh;
        padding-top: 88px;
    }

    .logo {
        position: relative;
        z-index: 15;
    }

    form {
        z-index: 1;
    }

    h1 {
        font-size: 67px;
    }

    .liens-nav {
        margin-top: 0px;
        padding-right: 20px;
        padding-top: 100px;
    }

    #back-to-top {
        bottom: 14px;
        padding: 5px 7px;
    }
}