/*
 * Customisation et surcharge du Framework Bulma
 * 
 * 
 * @author LGI Sustainable innovation
 * @version 1
 * 
 */

html {
    scroll-behavior: smooth;
}

:root {
    --main-txt-color: #646464;
    --main-title-color: #383f51;
    --main-orange: #ff9424;
    --main-violet: #2049d9;
    --btn-violet: #2049d9;
    --violet-bg: hsl(204deg 83% 66% / 10%);
    --def-transition-duration: 0.2s;
}

@font-face {
    font-family: "lato-regular";
    src: url(../webfonts/Lato/Lato-Regular.ttf);
    font-display: swap;
}
@font-face {
    font-family: "Lato-bold";
    src: url(../webfonts/Lato/Lato-Bold.ttf);
    font-display: swap;
}
@font-face {
    font-family: "Montserra";
    src: url(../webfonts/Montserrat/Montserrat-VariableFont_wght.ttf);
    font-display: swap;
}

::selection {
    color: white;
    background-color: var(--main-violet);
}

body {
    font-family: "lato-regular", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif;
    font-weight: 400;
    color: var(--main-txt-color);
    overflow-x: hidden;
}
h1,
h2 {
    font-family: "Montserra", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif;
    font-weight: 900;
}

h1 {
    font-size: clamp(2rem, 5vw, 4rem) !important;
    color: var(--main-violet);
    text-align: center;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.4rem);
    text-align: center;
    margin-bottom: 10px;
}

h3 {
    font-weight: 600;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 10px;
}

p {
    font-size: clamp(1rem, 2vw, 18px);
    z-index: 10;
    color: var(--main-txt-color);
}

a {
    color: var(--main-violet);
    transition: 0.1s ease-out;
    font-size: clamp(16px, 2vw, 20px);
    z-index: 2;
}
a:hover {
    color: var(--main-orange);
}

hr {
    height: 4px;
    width: 100%;
    background-color: var(--main-orange);
    border-radius: 4px;
}

main :is(ul, li) {
    list-style: disc;
    font-size: clamp(14px, 2vw, 18px);
}

.button {
    width: fit-content;
    z-index: 2;
    background: var(--main-violet);
    border: none;
    color: white;
    border-radius: 35px;
    box-shadow: 9px 10px 10px 0px rgba(0, 0, 0, 0.15);
}

.button:hover {
    background: white;
    color: var(--main-violet);
}

a.orange-btn {
    background: var(--main-orange);
    padding: 10px 20px !important;
    border-radius: 28px;
    min-width: 200px;
}

a.orange-btn:hover {
    transform: translateX(3%);
}

/* -------------------------- */
/* Components */
/* -------------------------- */
.flex {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10%;
}

.flex > div {
    flex: 1;
}

.flex-column {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 10%;
}

.flex-mix {
    display: flex;
    justify-content: center;
    align-items: center;
}

.green-shadow {
    color: var(--main-txt-color);
    background-color: white;
    box-shadow: 0px 4px 28px 0px rgba(0, 0, 0, 0.13);
    border-radius: 10px;
    border: none;
}
.green-shadow:hover {
    background-color: var(--main-green);
}

.violet-border {
    color: var(--main-violet);
    background-color: white;
    border: 3px solid var(--main-violet);
    border-radius: 10px;
    box-shadow: 0px 4px 28px 0px rgba(0, 0, 0, 0.13);
}

.violet-border:hover {
    color: white;
    background-color: var(--main-violet);
    border: 3px solid var(--main-violet);
}

.violet-shadow {
    color: white;
    background-color: var(--main-violet);
    box-shadow: 0px 4px 28px 0px rgba(0, 0, 0, 0.13);
    border-radius: 10px;
}

.violet-shadow:hover {
    color: var(--main-txt-color);
    background-color: white;
}

.violet {
    color: var(--main-violet) !important;
}

.orange-h3 {
    color: var(--main-orange) !important;
    font-size: 1.4rem;
}

.is-4 {
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
}

.color1 {
    background: linear-gradient(
        265deg,
        #ff4040 0%,
        #e34692 25%,
        #b659f0 50.52%,
        #4982fc 76.04%,
        #4cbfff 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.is-large {
    font-size: clamp(1rem, 2vw, 1.2rem) !important;
    padding: 23px 40px;
}

.orange-title {
    position: relative;
    color: var(--main-orange);
    font-family: "Montserra", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    margin-left: 90px;
}

.orange-title:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -90px;
    transform: translate(0%, -50%);
    width: 72px;
    height: 3px;
    background-color: var(--main-orange);
}

section:has(section.color-bg) {
    background-color: var(--violet-bg);
}

@media screen and (max-width: 730px) {
    .flex-mix,
    .flex {
        flex-direction: column;
    }
    .flex {
        gap: 40px;
    }
}

/* -------------------------- */
/* scroller div */
/* -------------------------- */

.scroller {
    /* max-width: 1000px; */
    width: 95%;
}

.scroller__inner {
    padding-block: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    height: 200px;
}

.scroller[data-animated="true"] {
    overflow: hidden;
    -webkit-mask: linear-gradient(
        90deg,
        transparent,
        white 20%,
        white 80%,
        transparent
    );
    mask: linear-gradient(
        90deg,
        transparent,
        white 20%,
        white 80%,
        transparent
    );
}

.scroller[data-animated="true"] .scroller__inner {
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 60s)
        var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
    --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
    --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
    --_animation-duration: 40s;
}

.scroller[data-speed="slow"] {
    --_animation-duration: 80s;
}

.scroller img {
    max-width: 160px;
    object-fit: contain;
}

@keyframes scroll {
    to {
        transform: translate(calc(-50% - 0.5rem));
    }
}

@media screen and (max-width: 550px) {
    .scroller__inner {
        height: 150px;
        gap: 3rem;
    }
}

/* -------------------------- */
/* ---video container -------------- */
/* -------------------------- */

.container-video-home {
    max-width: 670px;
    margin: 50px auto;
}

.container-video-home .video-container {
    position: relative;
    padding-bottom: 56.25%;
    border: -1px;
    height: 0;
    background: url(../../images/newsroom/video-bg.webp) center/cover;
    aspect-ratio: 16/9;
    border-radius: 5px;
    overflow: hidden;
}

.consent-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.671);
    backdrop-filter: blur(5px);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.consent-banner p {
    font-size: 17px !important;
    font-weight: 600;
    padding: 50px;
    color: black;
}

.consent-banner a {
    color: var(--main-color-blue);
    text-decoration: none;
    border-bottom: 1px solid var(--main-color-blue);
    transition: 0.1s ease-out;
}

.consent-banner a:hover {
    color: rgb(255, 255, 255);
    text-decoration: none;
    border-bottom: 2px solid var(--main-color-blue);
}

.consent-button {
    width: 135px;
    height: 40px;
    color: white;
    border-radius: 5px;
    padding: 10px 25px;
    font-weight: 400;
    font-family: "ginora", "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS",
        sans-serif, Geneva, Verdana, sans-serif;
    background: transparent;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5),
        7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
    outline: none;
    background: var(--main-color-blue);
    border: none;
    z-index: 1;
    background-image: none !important;
}

.consent-button:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: var(--main-color-lightBlue);
    border-radius: 5px;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5),
        7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.consent-button:hover {
    color: #fff;
}
.consent-button:hover:after {
    left: 0;
    width: 100%;
}
.consent-button:active {
    top: 2px;
}
@media screen and (max-width: 730px) {
    .container-video-home {
        width: 300px;
    }
    .consent-banner p {
        font-size: 12px !important;
        padding: 20px 30px;
    }
}

/* -------------INTERSECTION OBSEVER------------------------------ */

/* Selecteur sur les atttributs "reveal-" */
[class*="reveal-"] {
    opacity: 0;
    transform: translateY(30px);
}
[class*="revealGD-"] {
    opacity: 0;
    transform: translateX(-40%);
}
[class*="revealDG-"] {
    opacity: 0;
    transform: translateX(40%);
}

[class*="revealHR-"] {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 1.5s cubic-bezier(0.5, 0, 0, 1) !important;
}

[class*="revealHRtoR-"] {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: bottom left;
    transition: transform 1.5s cubic-bezier(0.5, 0, 0, 1) !important;
}

.reveal-visible {
    opacity: 1;
    transform: scaleX(1) translate(0px, 0px);
    transition: transform 1s cubic-bezier(0.5, 0, 0, 1),
        opacity 1.5s cubic-bezier(0.5, 0, 0, 1);
}

/* Les elements 2 et plus seront révélés avec un délai, ce qui n'est pas le cas de reveal-1 */
.revealHR-2 {
    transition-delay: 0.3s;
}
.revealHRtoR-2 {
    transition-delay: 0.3s;
}
.reveal-2 {
    transition-delay: 0.1s;
}
.reveal-3 {
    transition-delay: 0.2s;
}
.reveal-4 {
    transition-delay: 0.3s;
}
.reveal-5 {
    transition-delay: 0.4s;
}
.reveal-6 {
    transition-delay: 0.5s;
}
.reveal-7 {
    transition-delay: 0.55s;
}
.reveal-8 {
    transition-delay: 0.6s;
}

/* ------------------ */
/* ------------------------Accordeon */
/* ------------------ */

.accordion-header {
    cursor: pointer;
}
.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion:last-child .accordion-header {
    border-bottom: none;
}

.accordion h4 {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    color: var(--main-txt-color);
    user-select: none;
}
.accordion i {
    color: var(--main-violet);
    font-size: 1em;
    margin-right: 15px;
}

/* ------------------ */
/* ------------------------Navbar */
/* ------------------ */

#hero {
    background-color: var(--main-violet);
    height: 90px;
    box-shadow: 0px 10px 5px -5px rgba(0, 0, 0, 0.15);
}

#main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    height: 100%;
}

#main-header nav {
    width: 100%;
}
#main-header nav > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

#main-header nav > ul > li {
    align-content: center !important;
}

#main-header nav > ul > li > a {
    position: relative;
    text-decoration: none;
    color: white;
    display: inline-block;
    padding: 2rem 0;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: "Montserra", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif;
    transition: transform 0.2s ease-out;
}
#main-header nav > ul > li > a:not(.orange-btn)::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 3%;
    bottom: 32%;
    left: 0;
    background: var(--main-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
#main-header nav > ul a:not(.orange-btn):hover::before {
    transform: scaleX(1);
}

#main-header nav > ul a:hover {
    color: white;
}

#main-header nav > ul a {
    transition-property: color;
}

.burger-icon {
    display: none;
    text-align: end;
}

.ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 100;
    pointer-events: all;
}
.hamRotate.active {
    transform: rotate(45deg);
}
.hamRotate180.active {
    transform: rotate(180deg);
}
.line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: white;
    stroke-width: 5.5;
    stroke-linecap: round;
}
.line.active {
    stroke: white;
}
.ham1 .top {
    stroke-dasharray: 40 139;
}
.ham1 .bottom {
    stroke-dasharray: 40 180;
}
.ham1.active .top {
    stroke-dashoffset: -98px;
}
.ham1.active .bottom {
    stroke-dashoffset: -138px;
}

.submenu {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    z-index: 100;
    border-top: 4px solid var(--main-orange);
}
li:hover .submenu {
    display: block;
}
li:hover .submenu:hover {
    display: block;
}
.submenu li {
    list-style: none;
}
.submenu li a {
    text-decoration: none;
    color: var(--main-violet);
    padding: 10px;
    display: block;
    font-weight: 700;
    font-family: "Montserra", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif;
    font-size: 1rem;
    transition: color 0.2s ease-out;
}
.submenu li a:hover {
    color: var(--main-orange) !important;
}

@media screen and (max-width: 925px) {
    #main-header nav ul {
        display: none;
    }
    .burger-icon {
        display: block;
        pointer-events: none;
    }

    #main-header nav {
        pointer-events: none;
    }
}

/* ------------------ */
/* ------------------------Navbar-Mobile */
/* ------------------ */

.navbar-menu-burger.active {
    transform: translateX(0%);
}

.navbar-menu-burger {
    background-color: #ffffff;
    background-image: linear-gradient(
            168deg,
            rgb(253 253 253 / 70%),
            rgb(250 199 201 / 81%) 42.6%,
            rgb(196 198 245 / 94%) 67.71%
        ),
        url(../../images/logo/Logosimpleorange.png);
    background-position: -30% 44%;
    background-repeat: no-repeat;
    background-size: auto;
    transform: translateX(-100%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100vw;
    height: 150vh;
    padding: 5% 40px;
    transition: 0.5s ease-out;
}

.navbar-menu-burger .navbar-start {
    margin: auto;
    text-align: center;
    margin: 1rem 0rem;
}

.navbar-menu-burger .navbar-start li {
    list-style: none;
    margin-bottom: 10px;
}
.navbar-menu-burger .navbar-start li a {
    font-size: 1.3rem !important;
}
.navbar-menu-burger .header-Social {
    text-align: center;
}
.navbar-menu-burger .header-Social i {
    font-size: 2rem;
}

.navbar-menu-burger .navbar-start .navbar-link {
    padding-bottom: 0.8rem;
}

.navbar-menu-burger .header-Social {
    margin-top: 40px;
}

.navbar-menu-burger .navbar-start a,
.navbar-menu-burger .navbar-start div {
    font-size: 18px;
    font-weight: 500;
}

.navbar-menu-burger a:hover {
    color: black;
}

.navbar-burger {
    height: 6.25rem;
    scale: 1.5;
}

@media screen and (max-width: 750px) {
    .navbar-item {
        padding: 0px;
    }
}

/* -------------------------- */
/* Footer */
/* -------------------------- */

.EUDisclaimer {
    text-align: justify;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 30px;
}

.footer-img img {
    width: 100%;
}

footer {
    /* border-image: conic-gradient(pink 0 0) fill 0 0 100vw; */
    padding: 3rem 1.5rem !important;
    background-color: var(--violet-bg) !important;
}
footer,
footer p,
footer h3,
footer i {
    color: black;
}
footer,
footer p,
.copyright a {
    font-size: 14px !important;
}

footer a:hover {
    color: var(--main-coral);
}

footer .columns h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

footer .is-3,
footer .is-6:has(.contact-container) {
    margin-top: 35px;
}

footer .is-3:last-child div {
    margin: auto;
    width: fit-content;
}

footer .is-3 h3 {
    margin-bottom: 28px;
}
footer .is-3 li {
    margin-bottom: 13px;
    padding-left: 1rem;
    background-color: var(--btn-violet);
    padding-block: 5px;
    width: 80%;
    border: 1px solid var(--btn-violet);
}
footer .is-3 li a {
    color: white !important;
}
footer .is-3 li a:hover {
    color: var(--btn-violet) !important;
}
footer .is-3 li:has(a:hover) {
    background-color: white;
}

footer .is-6 > div:has(.button) {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

footer .is-6 > div:has(.button) h3 {
    margin: 0;
    font-size: 1.6rem;
}

.footer-item.social .header-social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: -8px;
}

.footer-item.social .header-social i {
    background-color: black;
    color: white;
    border-radius: 8px;
    font-size: 1rem;
    margin: 10px;
    padding: 8px 10px;
}

footer .fa-regular {
    margin-right: 14px;
    color: black;
    transition: transform 0.15s ease-out;
}

.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.footer-icon div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.footer-icon div img {
    max-height: 70px;
}

@media screen and (max-width: 750px) {
    footer .is-6 {
        text-align: center;
    }

    .footer-item.social .header-social {
        justify-content: center;
    }
    footer .is-3 li {
        margin-inline: auto;
        text-align: center;
    }
    .footer-icon div {
        flex-direction: column;
    }
    .footer-icon p {
        text-align: center;
    }
    .contact-info-footer {
        flex-direction: column;
        gap: 10px;
    }

    .contact-info-footer a {
        margin-left: 0px;
    }

    .copyright {
        flex-direction: column;
        gap: 20px;
    }
    .copyright div {
        text-align: center;
    }

    footer .is-6 > div:has(.button) {
        flex-direction: column;
        gap: 20px;
    }
    footer .columns h3 {
        text-align: center;
    }
}

/* -------------------------- */
/* HOME */
/* -------------------------- */

.homepage {
    height: 100vh;
    background: url(../../images/home/homepage.webp) center/cover;
    position: relative;
    overflow: hidden;
}

.homepage > div {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.homepage .h1 {
    font-size: clamp(2rem, 6vw, 4rem) !important;
    text-shadow: 0px 4px 4px #383f512b;
    width: 100%;
    font-weight: 900;
    line-height: 65px;
    font-family: "Montserra", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif;
}

.flex.home {
    margin-block: 40px;
}

.flex.home div:has(h2) {
    width: 50%;
}

.number-container .is-3 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-direction: column;
    padding: 30px;
}

.number-container i {
    color: var(--main-violet);
    font-size: 100px;
}

.number-container p {
    font-size: 1.5rem;
    color: var(--main-title-color);
}
.number-container span {
    font-size: 2.5rem;
}

.homepage > div:nth-child(2) {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding-inline: 5rem;
    padding-bottom: 5rem;
}

.copyright-txt {
    font-size: 10px;
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 2px 8px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.7);
}

img {
    border-radius: 8px;
}

footer img,
.scroller img {
    border-radius: 0px;
}

@media screen and (max-width: 750px) {
    .flex.home div:has(h2) {
        width: 100%;
    }
    .flex.home div:has(img) {
        margin-top: 0%;
    }
    .homepage > div:nth-child(2) {
        align-items: center;
    }
}

/* ------------------------------------------------ */
/* --------------------NEWS PAGE---------------------------- */
/* ------------------------------------------------ */
.news-categorie {
    text-align: center;
    margin: 2rem 0rem 4rem;
}
.news-categorie img {
    margin-top: 2rem;
    max-width: 950px;
    width: 100%;
}
.content-date {
    text-align: center;
    font-weight: bold;
    color: var(--main-orange);
}

.news-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
}

.news-card > div:has(img) {
    width: 40%;
}
.news-card img {
    aspect-ratio: 16/9;
    object-fit: cover;
}

.news-card-txt {
    width: 55%;
}

.news-card h3 {
    color: var(--main-title-color);
    font-size: clamp(16px, 2vw, 1.5rem);
    line-height: 28px;
    font-family: "lato-bold";
}
.news-card span {
    color: var(--secondary-violet);
    /* font-size: clamp(16px, 2vw, 24px); */
    line-height: 28px;
    font-weight: 500;
}

.news-card p {
    font-size: clamp(14px, 2vw, 18px);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-container .date {
    color: var(--main-green);
    font-weight: 700;
    font-size: clamp(12px, 2vw, 14px);
}

.list-news {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.list-news-container .columns a {
    margin-block: 80px;
    display: flex;
}

.list-news a {
    display: block;
    width: 30%;
}
.sideListNews {
    display: flex;
    margin-top: 2rem;
}

.sideListNews h2 {
    font-size: clamp(1rem, 2vw, 1.2rem);
}
.sideListNews span {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}
.sideListNews p {
    font-size: clamp(1rem, 2vw, 1rem);
}

.sideBox h4 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: var(--main-violet);
    font-weight: 500;
}

.newsBox {
    margin-inline: 0.5rem;
    padding: 0rem 1rem;
    box-shadow: none;
}

@media screen and (max-width: 750px) {
    .news-card {
        flex-direction: column;
        gap: 20px;
    }

    .news-card > div:has(img) {
        width: 100%;
    }

    .news-card-txt {
        width: 100%;
    }
    .sideListNews {
        flex-direction: column;
        gap: 50px;
    }
}

/* ------------------------------------------------ */
/* --------------------ABOUT---------------------------- */
/* ------------------------------------------------ */

.wp-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.wp-card {
    width: 45%;
    min-width: 300px;
    padding: 3rem;
    min-height: 250px;
    background-color: var(--btn-violet);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    font-family: "lato-regular", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow: hidden;
}

.wp-card:last-child {
    width: 95%;
}

.wp-card p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: white;
    max-width: 800px;
    width: 100%;
    margin: 0px auto;
    text-align: center;
}
.wp-card h3 {
    color: var(--main-orange);
    width: 100%;
}
.wp-card li {
    color: white;
}
.wp-card ul {
    margin-block: 0px;
    margin-right: 0px;
}

.wp-card-hover {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 3rem;
    background-color: var(--violet-bg);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: top 0.5s ease-out;
    z-index: 10;
    box-shadow: 10px 4px 6px rgba(0, 0, 0, 1);
}
.wp-card:hover .wp-card-hover {
    top: 0;
}

.wp-card-hover p {
    font-size: 1.2rem;
}

@media screen and (max-width: 750px) {
    .wp-card-hover {
        padding: 1rem;
    }
}

/* ------------------------------------------------ */
/* --------------------SNETP LABEL---------------------------- */
/* ------------------------------------------------ */

.tag-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-container a {
    font-family: "Lato-bold", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue";
    color: var(--main-violet);
    border: 2px solid;
    border-radius: 16px;
    padding: 10px 24px;
}

.tag-container a:hover {
    background-color: var(--main-violet);
    color: white;
}

/* ------------------------------------------------ */
/* --------------------EVEN CARD---------------------------- */
/* ------------------------------------------------ */

.figure-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-block: 3rem;
    color: black;
}
.figure-card {
    display: flex;
    gap: 20px;
}
.figure-card .icon {
    width: 33px;
    margin-top: 10px;
}
.figure-card .icon img {
    width: 33px;
}

.figure-card div:last-child {
    flex: 1;
}

@media screen and (max-width: 750px) {
    .figure-container {
        grid-template-columns: 1fr;
    }
}

/* ------------------------------------------------ */
/* --------------------EVEN CARD---------------------------- */
/* ------------------------------------------------ */

.event-card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 3rem;
}

a:has(.event-card) {
    width: 100%;
}

.event-card {
    position: relative;
    background-color: var(--violet-bg);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    padding: 2rem;
    width: 100%;
    border-radius: 100px 20px 20px 100px;
    padding-left: 5rem;
    transition: box-shadow 0.1s ease-out;
}
a:has(.event-card):hover .event-card {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.event-card-date {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 16%;
}
.event-card-date p {
    line-height: normal;
}
.event-card-date span {
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 45px;
}

.event-card-txt > div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.event-card-txt {
    max-width: 600px;
    width: 70%;
}
.event-card-txt h3 {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    text-align: left;
    color: var(--main-txt-color);
}

.event-card-txt hr {
    margin-left: 10px;
    width: 45px;
    height: 1px;
    background-color: var(--main-title-color);
    margin: 0 0 0 10px;
}

.arrow {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translate(0%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}

@media screen and (max-width: 750px) {
    .arrow {
        display: none;
    }

    .event-card {
        border-radius: 4px;
        padding: 1rem;
    }
    .event-card-date span {
        line-height: 20px;
    }
}

/* ------------------------------------------------ */
/* --------------------ANIM GSAP TXT HOME---------------------------- */
/* ------------------------------------------------ */

.ml10 {
    position: relative;
    font-weight: 900;
    font-size: 4em;
}

.ml10 .text-wrapper {
    position: relative;
    display: inline-block;
    padding-top: 0.2em;
    padding-right: 0.05em;
    padding-bottom: 0.1em;
    overflow: hidden;
}

.ml10 .letter {
    display: inline-block;
    line-height: 1em;
    transform-origin: 0 0;
}

/* ------------------ */
/* ---------------POP-up ---------------- */
/* ------------------ */

.pop {
    max-width: 380px;
    width: 80%;
    height: 215px;
    border-radius: 25px;
    position: fixed;
    bottom: 10px;
    right: 15px;
    background: white;
    transition: transform 0.3s ease-out;
    transform: translateY(120%);
    z-index: 999;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.pop-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 0px 30px 50px;
    margin-top: 30px;
    position: relative;
}

.pop-container p {
    font-size: 1.2rem !important;
    line-height: 25px;
    color: #363636;
    user-select: none;
}

.pop-container span {
    align-self: flex-start;
    font-size: 2rem !important;
    line-height: 25px;
    color: var(--main-orange);
    user-select: none;
    font-family: "Montserrat_semibold", "Gill Sans", "Gill Sans MT", Calibri,
        "Trebuchet MS", sans-serif, Geneva, Verdana, sans-serif;
}

.pop button {
    padding: 14px 35px;
    transition: background 0.15s ease-out;
    border-radius: 50px;
    background: var(--main-yellow);
    border: none;
    color: var(--main-white);
    font-size: 1.2rem;
    cursor: pointer;
    font-family: "Montserrat_semibold", "Gill Sans", "Gill Sans MT", Calibri,
        "Trebuchet MS", sans-serif, Geneva, Verdana, sans-serif;
}
.pop button:hover {
    background: var(--main-blue-light);
}

.pop-container i {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 20px;
    z-index: 10;
    cursor: pointer;
    color: #363636;
    transition: transform 0.2s ease-out;
}

.pop-container i:hover {
    transform: scale(1.2) rotate(90deg);
}
