section:not(:first-child) {
    -webkit-margin-after: 2.5rem;
    margin-block-end: 2.5rem;
}

.header--logoGray {
    display: none !important;
}

/*********************
      START: HEADLINE
*********************/
.headline {
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    position: relative;
    display: flex;
    align-items: center;
    -webkit-margin-after: 3.75rem;
    margin-block-end: 3.75rem;
    z-index: 0;
}

.headline--background__video {
    position: absolute;
    z-index: -2;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.headline--overlay {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
    background-image: -webkit-gradient(to left, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
    background-image: -ms-linear-gradient(to left, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    z-index: -1;
}

.headline--content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s;
}

.headline--content.parallax {
    opacity: 0;
}


.headline--content>img {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.headline--content__tools {
    -webkit-margin-before: 3rem;
    margin-block-start: 3rem;
    width: 100%;
    height: 60px;
    position: relative;
}

.headline--content__tools__inner {
    position: absolute;
    width: 50px;
    color: var(--cwh);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--cwh);
    border-radius: var(--borderRadius50);
    -webkit-border-radius: var(--borderRadius50);
    -moz-border-radius: var(--borderRadius50);
    -ms-border-radius: var(--borderRadius50);
    -o-border-radius: var(--borderRadius50);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.headline--content__tools__inner.reserve {
    left: 51.5%;
    justify-content: flex-end;
}

.headline--content__tools__inner.menu {
    right: 51.5%;
    justify-content: flex-start;
}

.headline--content__tools__inner a,
.headline--content__tools__inner a:hover,
.headline--content__tools__inner a:focus {
    color: var(--cwh) !important;
}

.headline--content__tools__inner:hover {
    width: 100px;
    border-radius: var(--borderRadius24);
    -webkit-border-radius: var(--borderRadius24);
    -moz-border-radius: var(--borderRadius24);
    -ms-border-radius: var(--borderRadius24);
    -o-border-radius: var(--borderRadius24);
}

.headline--content__tools__inner.reserve img {
    -webkit-margin-end: -2px;
    margin-inline-end: -2px;
}

.headline--content__tools__inner.menu img {
    -webkit-margin-start: -3px;
    margin-inline-start: -3px;
}

.headline--content__tools__inner h4 {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    bottom: 12px;
}

.headline--content__tools__inner:hover h4 {
    opacity: 1;
    visibility: visible;
}

.headline--content__tools__inner.reserve h4 {
    right: 20px;
}

.headline--content__tools__inner.menu h4 {
    left: 20px;
}

.headline--socailNetwork {
    display: flex;
    align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: var(--cwh);
    position: absolute;
    bottom: 3rem;
    left: 5rem;
}

.headline--socailNetwork>img {
    -webkit-margin-start: 0.5rem;
    margin-inline-start: 0.5rem;
    -webkit-margin-before: 0.4rem;
    margin-block-start: 0.4rem;
}

/*********************
      END: HEADLINE
*********************/

/*********************
      START: GROUPING
*********************/
ul.grouping--content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 450px;
    overflow-x: hidden;
}

ul.grouping--content li {
    background-color: var(--cdj);
    width: 49.2%;
    height: 100%;
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

ul.grouping--content li::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: var(--cmso);
    z-index: 3;
}

ul.grouping--content li:nth-child(odd),
ul.grouping--content li:nth-child(odd)::before,
ul.grouping--content li:nth-child(odd)>img.menu--image__default {
    border-radius: 0px 12px 12px 0px;
}


ul.grouping--content li:nth-child(even),
ul.grouping--content li:nth-child(even)::before,
ul.grouping--content li:nth-child(even)>img.menu--image__default,
ul.grouping--content li:nth-child(2) .grouping--menu {
    border-radius: 12px 0px 0px 12px;
}

ul.grouping--content li>img.menu--image__default {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    vertical-align: middle;
    height: 100%;
}

ul.grouping--content li>a {
    color: var(--cwh);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

ul.grouping--content li.onHover {
    width: 59.2% !important;
}

ul.grouping--content li.deHover {
    width: 39.2%;
}

ul.grouping--content li.onHover .grouping--menu {
    display: block;
}

.grouping--menu {
    display: none;
    position: absolute;
    height: 100%;
    top: 0;
    z-index: 4;
}

ul.grouping--content li:nth-child(1) .grouping--menu {
    left: 0;
    width: 30%;
    margin-right: auto;
}

ul.grouping--content li .grouping--menu {
    right: 0;
    width: 100%;
    background-color: rgba(170, 170, 170, 0.5);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

@-moz-document url-prefix() {
    ul.grouping--content li .grouping--menu {
        right: 0;
        width: 100%;
        background-color: rgba(170, 170, 170, 0.5);
        animation: appear cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
        -webkit-animation: appear cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    }

    ul.grouping--content li.onHover>img.menu--image__default {
        -webkit-filter: blur(5px);
        filter: blur(5px);
        animation: appear cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
        -webkit-animation: appear cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    }

    ul.grouping--content li.onHover>a {
        display: none;
        animation: appear cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
        -webkit-animation: appear cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    }
}

ul.grouping--content li:nth-child(2) .grouping--menu .grouping--menu__inner p {
    font-size: 100%;
    text-align: center;
    overflow: hidden;
}

.grouping--menu__inner {
    height: 100%;
    color: var(--cbl);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 1rem;
}

.grouping--menu__inner a {
    text-align: center;
    font-weight: 500;
    position: relative;
    width: 100%;
    cursor: pointer;
    color: var(--cbl);
    font-family: "SegoeUI-Regular";
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80%;
}

.grouping--menu__inner a:hover {
    color: var(--cbl);
}

ul.grouping--content li.onHover .grouping--menu .grouping--menu__inner a,
ul.grouping--content li.onHover .grouping--menu .grouping--menu__inner p {
    animation: appear cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    -webkit-animation: appear cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes appear {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes appear {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* appear */

ul.grouping--content li.onHover .grouping--menu .grouping--menu__inner a:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

ul.grouping--content li.onHover .grouping--menu .grouping--menu__inner a:nth-child(2),
ul.grouping--content li.onHover .grouping--menu .grouping--menu__inner p {
    -webkit-animation-delay: 0.25s;
    animation-delay: 0.25s;
}

ul.grouping--content li.onHover .grouping--menu .grouping--menu__inner a:nth-child(3) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

ul.grouping--content li.onHover .grouping--menu .grouping--menu__inner a:nth-child(4) {
    -webkit-animation-delay: 0.75s;
    animation-delay: 0.75s;
}

ul.grouping--content li.onHover .grouping--menu .grouping--menu__inner a:nth-child(5) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

ul.grouping--content li.onHover .grouping--menu .grouping--menu__inner a:nth-child(6) {
    -webkit-animation-delay: 1.25s;
    animation-delay: 1.25s;
}

ul.grouping--content li.onHover .grouping--menu .grouping--menu__inner a:nth-child(7) {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

ul.grouping--content li.onHover .grouping--menu .grouping--menu__inner a:nth-child(9) {
    -webkit-animation-delay: 1.75s;
    animation-delay: 1.75s;
}

ul.grouping--content li.onHover .grouping--menu .grouping--menu__inner a:nth-child(9) {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

ul.grouping--content li.onHover .grouping--menu .grouping--menu__inner a:nth-child(10) {
    -webkit-animation-delay: 2.25s;
    animation-delay: 2.25s;
}

.grouping--menu__inner a:not(:last-child)::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-image: url(../img/icons/horizontal-line-gray.svg);
}

ul.grouping--content li .menu--image .menu--image__item {
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    right: 0 !important;
    vertical-align: middle;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0;
    z-index: 1;
}

ul.grouping--content li .menu--image .menu--image__item.activate {
    opacity: 1;
}

ul.grouping--content li:nth-child(odd) .menu--image .menu--image__item {
    border-start-start-radius: var(--borderRadius12);
    border-end-start-radius: var(--borderRadius12);
}

ul.grouping--content li:nth-child(even) .menu--image .menu--image__item {
    border-start-end-radius: var(--borderRadius12);
    border-end-end-radius: var(--borderRadius12);
}

/* reveal */
.reveal {
    position: relative;
    opacity: 0;
}

.reveal.active {
    opacity: 1;
}

/* reveal */
/* fade-left */
.active.fade-left {
    animation: fade-left .5s ease-in;
    -webkit-animation: fade-left .5s ease-in;
}

@keyframes fade-left {
    0% {
        opacity: 0;
        transform: translateX(100%);
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }
}

@-webkit-keyframes fade-left {
    0% {
        opacity: 0;
        transform: translateX(100%);
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }
}

/* fade-left */

/* fade-right */
.active.fade-right {
    animation: fade-right .5s ease-in;
    -webkit-animation: fade-right .5s ease-in;
}

@keyframes fade-right {
    0% {
        opacity: 0;
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }
}

@-webkit-keyframes fade-right {
    0% {
        opacity: 0;
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }
}

/* fade-right */

/*********************
      END: GROUPING
*********************/

/*********************
      START: NOUELLEMEAN
*********************/
.nouvelleMean {
    position: relative;
    overflow-x: hidden;
}

.nouvelleMean::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 105%;
    top: -50px;
    right: 0;
    z-index: -1;
    background-image: url(../img/icons/vector-1.svg);
    background-position: right;
    background-size: cover;
}

.nouvelleMean--content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nouvelleMean--text,
.nouvelleMean--video {
    width: 49.2%;
}

.nouvelleMean--text {
    display: flex;
    flex-direction: column;
    color: var(--cwh);
}

.nouvelleMean--text p {
    -webkit-margin-before: 1.5rem;
    margin-block-start: 1.5rem;
    -webkit-margin-after: 2rem;
    margin-block-end: 2rem;
    width: 90%;
}

.nouvelleMean--text a {
    color: var(--cwh);
}

.nouvelleMean--video {
    vertical-align: middle;
    border-start-end-radius: var(--borderRadius12);
    border-end-end-radius: var(--borderRadius12);
    overflow-y: hidden;
}

/* fade-top */
.active.fade-top {
    animation: fade-top 1s ease-in;
    -webkit-animation: fade-top 1s ease-in;
}

@keyframes fade-top {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fade-top {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* fade-top */

/* fade-bottom */
.active.fade-bottom {
    animation: fade-bottom 1s ease-in;
    -webkit-animation: fade-bottom 1s ease-in;
}

@keyframes fade-bottom {
    0% {
        opacity: 0;
        transform: translateY(-50px);
        -webkit-transform: translateY(-50px);
        -moz-transform: translateY(-50px);
        -ms-transform: translateY(-50px);
        -o-transform: translateY(-50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }
}

@-webkit-keyframes fade-bottom {
    0% {
        opacity: 0;
        transform: translateY(-50px);
        -webkit-transform: translateY(-50px);
        -moz-transform: translateY(-50px);
        -ms-transform: translateY(-50px);
        -o-transform: translateY(-50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }
}

/* fade-bottom */

/*********************
      END: NOUELLEMEAN
*********************/

/*********************
      START: EVENTS
*********************/
.events--content {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem;
    width: 100%;
    background-color: var(--csi);
    border-radius: var(--borderRadius12);
    -webkit-border-radius: var(--borderRadius12);
    -moz-border-radius: var(--borderRadius12);
    -ms-border-radius: var(--borderRadius12);
    -o-border-radius: var(--borderRadius12);
}

.events--img,
.events--text {
    width: 49.2%;
}

.events--img {
    margin-top: auto;
    margin-bottom: auto;
    display: block;
}

.events--img>img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    vertical-align: middle;
}

.events--text {
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 1rem;
}

.events--text::before {
    content: "";
    position: absolute;
    width: inherit;
    height: 80%;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    background-repeat: no-repeat;
    background-size: contain;
    background-image: linear-gradient(to left,
            rgba(188, 188, 188, 0.95) 0%,
            rgba(188, 188, 188, 0.95) 100%),
        url(../img/icons/events-icon.svg);
    background-image: -webkit-gradient(to left,
            rgba(188, 188, 188, 0.95) 0%,
            rgba(188, 188, 188, 0.95) 100%),
        url(../img/icons/events-icon.svg);
    background-image: -ms-linear-gradient(to left,
            rgba(188, 188, 188, 0.95) 0%,
            rgba(188, 188, 188, 0.95) 100%),
        url(../img/icons/events-icon.svg);
}

.events--text__header {
    color: var(--cpa);
}

.events--text__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    -webkit-margin-before: 2rem;
    margin-block-start: 2rem;
}

.events--text__footer>div {
    display: flex;
    align-items: center;
    -webkit-margin-before: 0.75rem;
    margin-block-start: 0.75rem;
}

.events--text__item:not(:last-child) {
    -webkit-margin-after: 3rem;
    margin-block-end: 3rem;
}

.events--title {
    display: flex;
    align-items: center;
}

.events--info {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    -webkit-margin-after: 0.5rem;
    margin-block-end: 0.5rem;
    -webkit-margin-before: 0.5rem;
    margin-block-start: 0.5rem;
    width: 100%;
}

.events--info .line {
    width: 50%;
}

.events--text__active .events--title p,
.events--text__deactive .events--title p {
    width: 15px;
    height: 15px;
    -webkit-margin-end: 0.5rem;
    margin-inline-end: 0.5rem;
    -webkit-margin-before: 0.5rem;
    margin-block-start: 0.5rem;
    border-radius: var(--borderRadius50);
    -webkit-border-radius: var(--borderRadius50);
    -moz-border-radius: var(--borderRadius50);
    -ms-border-radius: var(--borderRadius50);
    -o-border-radius: var(--borderRadius50);
}

.events--text__active .events--title p {
    background-color: var(--cpa);
}

.events--text__deactive .events--title p {
    background-color: var(--cbo);
}

.events--text__deactive .events--title h4 {
    position: relative;
}

.events--text__deactive .events--title h4::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    top: 65%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    border: 1px solid var(--cbl);
}

.events--text__deactive>.events--title>div {
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-margin-start: 1rem;
    margin-inline-start: 1rem;
    padding: 0.5rem 0.75rem;
    color: var(--cpa);
    background-color: var(--clo);
    border-radius: var(--borderRadius7);
    -webkit-border-radius: var(--borderRadius7);
    -moz-border-radius: var(--borderRadius7);
    -ms-border-radius: var(--borderRadius7);
    -o-border-radius: var(--borderRadius7);
}

/*********************
      END: EVENTS
*********************/

/*********************
      START: MAP
*********************/
.map {
    position: relative;
}

#map {
    width: 100%;
    height: 240px;
}

.gm-svpc,
.gm-style-cc>div,
.gm-style-cc>div>a,
.gm-style-cc>div>span,
.gm-style-cc>div>button,
.gmnoprint,
.gm-control-active.gm-fullscreen-control,
#map .gm-style img[alt="Google"] {
    display: none !important;
}

/*********************
      END: MAP
*********************/

/*********************
      START: MEDIA
*********************/
@media screen and (min-width: 2560px) {
    .headline--socailNetwork {
        left: 15%;
    }

    ul.grouping--content {
        height: 750px;
    }
}

@media screen and (min-width: 1920px) and (max-width: 2559px) {
    .headline--socailNetwork {
        left: 7rem;
    }

    ul.grouping--content {
        height: 650px;
    }
}

@media screen and (max-width: 1200px) {

    .events--img,
    .events--text {
        width: 49%;
    }

    .events--img img {
        height: auto;
    }
}

@media screen and (max-width: 992px) {
    .headline--socailNetwork {
        left: 4rem;
    }

    ul.grouping--content {
        flex-direction: column;
        height: auto;
    }

    ul.grouping--content li:not(:last-child) {
        -webkit-margin-after: 1rem;
        margin-block-end: 1rem;
    }

    ul.grouping--content li:nth-child(odd),
    ul.grouping--content li:nth-child(odd)::before,
    ul.grouping--content li:nth-child(odd)>img.menu--image__default,
    ul.grouping--content li:nth-child(odd) .menu--image .menu--image__item {
        border-radius: 12px;
    }


    ul.grouping--content li:nth-child(even),
    ul.grouping--content li:nth-child(even)::before,
    ul.grouping--content li:nth-child(even)>img.menu--image__default,
    ul.grouping--content li:nth-child(2) .grouping--menu {
        border-radius: 12px;
    }

    ul.grouping--content li:nth-child(1) .grouping--menu {
        border-top-left-radius: 12px;
        border-bottom-left-radius: 12px;
    }

    ul.grouping--content li,
    ul.grouping--content li.onHover,
    ul.grouping--content li.deHover {
        width: 100% !important;
    }

    .events--img {
        display: none;
    }

    .events--text {
        width: 100%;
    }

    .events--text::before {
        width: 30%;
    }
}

@media screen and (max-width: 768px) {
    .headline--socailNetwork {
        left: 3rem;
    }
}

@media screen and (max-width: 576px) {
    .headline--socailNetwork {
        left: 2rem;
    }

    .nouvelleMean--content {
        flex-direction: column-reverse;
    }

    .nouvelleMean::before {
        content: unset;
    }

    .nouvelleMean--text {
        -webkit-margin-before: 1.5rem;
        margin-block-start: 1.5rem;
        position: relative;
    }

    .nouvelleMean--text::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 105%;
        top: -50px;
        right: 0;
        z-index: -1;
        background-image: url(../img/icons/vector-1.svg);
        background-position: right;
        background-size: cover;
    }

    .nouvelleMean--video {
        border-radius: var(--borderRadius12);
    }

    .nouvelleMean--text p {
        width: 100%;
    }

    .nouvelleMean--text,
    .nouvelleMean--video {
        width: 100%;
    }

    .events--text {
        padding: 2rem 0;
    }
}

@media screen and (orientation:landscape) and (max-width: 576px){
    .headline--content>img {
        width: 30%;
    }

    .headline--content__tools {
        -webkit-margin-before: 1.5rem;
        margin-block-start: 1.5rem;
    }

    .headline--socailNetwork{
        bottom: 4rem;
    }
}

@media screen and (max-width: 425px) {
    .headline--content>img {
        width: 50%;
    }

    .events--text__footer {
        flex-direction: column;
    }
}

@media screen and (max-width: 375px) {
    .headline--socailNetwork {
        left: 1rem;
    }
}

/*********************
      END: MEDIA
*********************/