/*
 * Customisation et surcharge du Framework Bulma
 * 
 * 
 * @author LGI Sustainable innovation
 * @version 1
 * 
 */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 10rem;
}

:root {
    --bg-gray: #f4f6f7;
    --main-color-blue: #007bc4;
    --main-color-lightBlue: #eb6112;
    --main-color-orange: #eb6112;
    --main-color-green: #009640;
    --main-color-gray: #a29f9d;
    --main-txt-color: #808080;
}

@font-face {
    font-family: "Montserrat";
    src: url(../webfonts/Montserrat/Montserrat-VariableFont_wght.ttf);
    font-display: swap;
}
@font-face {
    font-family: "SourceSans";
    src: url(../webfonts/Source_Sans_3/SourceSans3-VariableFont_wght.ttf);
    font-display: swap;
}

::selection {
    color: white;
    background-color: #007bc4;
}

body {
    font-family: "SourceSans", "Gill Sans", "Gill Sans MT", Calibri,
        "Trebuchet MS", sans-serif, Geneva, Verdana, sans-serif;
    font-weight: 400;
}
h1,
h2 {
    font-family: "Montserrat", "Gill Sans", "Gill Sans MT", Calibri,
        "Trebuchet MS", sans-serif, Geneva, Verdana, sans-serif !important;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 4.5vw, 3.5rem) !important;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--main-color-orange);
    text-align: center;
}

p {
    font-size: clamp(16px, 2vw, 18px) !important;
    z-index: 10;
    line-height: 25px;
    color: var(--main-txt-color);
}

a {
    color: #00bcd4;
    transition: 0.15s ease-out;
    font-size: clamp(16px, 2vw, 20px) !important;
    z-index: 10;
}

strong,
li {
    color: var(--main-txt-color);
}

.button {
    width: fit-content;
    z-index: 10;
}

hr {
    background-color: var(--bg-gray);
    width: 50%;
    margin: auto;
    height: 2px;
    margin-top: 50px;
}

/* -------------------------- */
/* Components */
/* -------------------------- */
.orange {
    color: var(--main-color-orange);
}

.blue {
    color: var(--main-color-blue);
}

.is-primary {
    background-color: transparent !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    border: 3px solid white !important;
    transition: 0.15s ease-out;
}

.is-primary:hover {
    border: 3px solid var(--main-color-blue) !important;
    background-color: var(--main-color-blue) !important;
}

.is-large {
    font-size: clamp(16px, 2vw, 19px) !important;
    padding: 23px 40px !important;
}

/* -------------------------- */
/* ---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/home/nnes-plenio-1423600-forest-top-white.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 {
    min-width: 1rem;
    width: 135px;
    height: 40px;
    color: white;
    border-radius: 5px;
    padding: 10px 25px;
    font-weight: 400;
    font-family: "Montserrat", "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;
    }
}

/* ------------------ */
/* ---------------POP-up ---------------- */
/* ------------------ */

.pop {
    width: 300px;
    height: 300px;
    position: fixed;
    bottom: 10px;
    right: 15px;
    background-color: white;
    border-radius: 4px;
    border: 2px solid var(--main-color-gray);
    transition: 0.3s ease-out;
    transform: translateY(120%);
    z-index: 1000;
}

.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 {
    text-align: center;
    font-weight: 400;
    font-size: 18px !important;
    line-height: 25px;
    color: var(--main-color-blue);
    user-select: none;
}
.pop button {
    transition: 0.1s ease-out;
}
.pop button:hover {
    transform: scale(1.1);
}

.pop-container i {
    position: absolute;
    top: -15px;
    right: 15px;
    font-size: 20px;
    z-index: 10;
    cursor: pointer;
    transition: 0.05s ease-out;
}

.pop-container i:hover {
    transform: scale(1.1);
}

/* -------------INTERSECTION OBSEVER------------------------------ */

/* Selecteur sur les atttributs "reveal-" */
[class*="reveal-"] {
    opacity: 0;
    transform: translateY(-30px);
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0px);
    transition: 1s 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 */
.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;
}

/* -------------------------- */
/* Navbar */
/* -------------------------- */

.section.container:has(.navbar).active {
    position: fixed;

    box-shadow: 0px 10px 5px -5px rgba(0, 0, 0, 0.15);
}
.section.container:has(.navbar).active .navbar {
    min-height: 90px !important;
    transition: 0.5s ease-out;
}

.section.container:has(.navbar).active img {
    width: 95px;
}

.section.container:has(.navbar) {
    position: absolute;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    box-shadow: 0px 10px 5px -5px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    max-width: 100% !important;
    width: 100%;
}

.navbar img {
    width: 150px;
    object-fit: cover;
    max-height: 100%;
}

.navbar {
    min-height: 170px;
    align-items: center;
    padding: 0 10%;
}

.navbar a {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--main-color-blue);
    font-family: "Montserrat", "Gill Sans", "Gill Sans MT", Calibri,
        "Trebuchet MS", sans-serif, Geneva, Verdana, sans-serif;
    font-weight: 400;
}

.navbar-end > .navbar-item:nth-child(2) {
    color: white;
    background-color: #eb6112;
    border-radius: 4px;
    animation: background-animation 3s infinite alternate;
}

.navbar-end > .navbar-item:nth-child(2) .navbar-dropdown a:first-child {
    color: var(--main-color-lightBlue) !important;
    font-weight: 700 !important;
}

.navbar-end .navbar-item:nth-child(2) > a {
    color: white;
    background-color: #bb744b00 !important;
}

@keyframes background-animation {
    0% {
        background-color: #eb6112;
    }
    50% {
        background-color: #ffa500;
    }
    100% {
        background-color: #eb6112;
    }
}

.navbar a:after {
    font-size: 12px;
    right: 20px;
}

.navbar a:hover:after {
    border-color: var(--main-color-gray);
}

.navbar a:hover {
    color: var(--main-color-gray);
    background-color: white !important;
    transition: 0.1s ease-out;
}

.navbar-dropdown {
    background-color: var(--bg-gray);
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-dropdown .navbar-item {
    color: rgb(85, 85, 85);
    font-size: 12px !important;
    font-weight: 500 !important;
    padding: 1rem 3rem 1rem 1rem !important;
    border-bottom: 1px solid rgb(214, 214, 214);
    border-left: 3px solid var(--bg-gray);
}

.navbar-dropdown .navbar-item:hover {
    background-color: white !important;
    border-left: 3px solid var(--main-color-blue);
}

@media screen and (max-width: 1250px) {
    .section.container:has(.navbar) {
        padding: 0 !important;
    }
    .navbar-item {
        padding: 0.25rem !important;
    }

    .navbar {
        padding: 0 7%;
    }
}
@media screen and (max-width: 1024px) {
    .navbar {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 4%;
    }

    .navbar-brand {
        align-items: center;
        width: 90%;
    }

    .navbar-burger {
        transform: scale(1.5);
    }

    .navbar-dropdown .navbar-item:hover {
        background-color: white !important;
        border-left: none;
    }

    .navbar-dropdown .navbar-item {
        padding: 5px 3rem 5px 2rem !important;
    }

    .navbar-menu-burger .navbar-start a,
    .navbar-menu-burger .navbar-start div {
        font-size: 15px !important;
    }
}

.border-nav {
    height: 170px;
    background-color: white;
}

/* ------------------ */
/* ------------------------Navbar-Mobile */
/* ------------------ */

.navbar-menu-burger.is-active {
    transform: translateX(0%);
}

.navbar-menu-burger {
    background: var(--main-color-blue);
    background: linear-gradient(
        0deg,
        rgb(240, 240, 240) 0%,
        rgb(235, 234, 234) 15%,
        rgb(241, 241, 241) 30%,
        rgb(243, 243, 243) 48%,
        rgb(245, 245, 245) 66%,
        rgba(255, 255, 255, 1) 100%
    );
    transform: translateX(-100%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100vw;
    height: 150vh;
    padding: 15px 40px;
    transition: 0.5s ease-out;
}

.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;
}

/* -------------------------- */
/* Footer */
/* -------------------------- */

footer {
    background-color: var(--main-color-blue) !important;
    color: white;
    padding: 3rem 1.5rem !important;
}

footer h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
}

footer,
footer p {
    font-size: 14px !important;
    color: white;
}

footer a i {
    color: white;
    font-size: 40px;
}

footer a i:hover {
    color: var(--main-color-orange);
}

footer a {
    color: white;
    font-size: 16px !important;
}

footer a:hover {
    color: #eb6112;
}

.Copyright {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 750px) {
    .footer {
        padding: 0 0 30px 0 !important;
    }
}

/* -------------------------- */
/* HOME */
/* -------------------------- */

.header {
    padding-top: 5rem;
    background: url(../../images/home/pexels-pixabay-270756-1-scaled.webp)
        center/cover;
    max-width: 100% !important;
    min-height: calc(100dvh - 163.98px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.header h1,
.header p {
    color: white;
    text-align: center;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 80%;
}

.header-figure-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 19vw;
}

.header-figure {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.figure {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 500;
}
.figure-text {
    font-size: 24px;
}

@media screen and (max-width: 750px) {
    .header-figure-container {
        flex-direction: column;
    }
}

.header2 {
    background: url(../../images/home/nnes-plenio-1423600-forest-top-white.webp)
        top/cover;
    max-width: 100% !important;
    min-height: calc(100dvh - 122px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 65px;
}

.header-container2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.card-home img {
    cursor: pointer;
    border-radius: 5px;
    /* width: 90%; */
}

/* VERSO CARD */

.card-revers-container-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 19vw;
}

.card-revers-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.pile {
    perspective: 1000px;
    perspective-origin: 100% 100%;
    transform-style: preserve-3d;
    width: 250px;
    height: 250px;
    position: relative;
    padding: 2em;
    cursor: pointer;
    margin: 0 80px 0 0;
}

.pile:hover #recto {
    transform: rotateY(180deg);
}

.pile:hover #verso,
.pile:hover #verso2,
.pile:hover #verso3 {
    transform: rotateY(360deg);
}

.card {
    display: block;
    width: 250px;
    height: 250px;
    color: #000;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.7s;
    border-radius: 32px;
    -webkit-perspective: 0;
    perspective: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

#recto {
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

#verso,
#verso2,
#verso3 {
    z-index: 0;
    -webkit-transform: rotateY(180deg) translate3d(0, 0, 1px);
    transform: rotateY(180deg) translate3d(0, 0, 1px);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    padding: 30px;
}

#verso {
    background: var(--main-color-blue);
}
#verso2 {
    background: var(--main-color-green);
}
#verso3 {
    background: var(--main-color-orange);
}

@media screen and (max-width: 750px) {
    .card-revers-container {
        flex-direction: column;
    }

    .pile {
        margin: 0;
    }
}

/* -------------------- */

/*  ----------------------------------------------------  */

.is-primary.news {
    background-color: transparent !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    border: 3px solid var(--main-color-blue) !important;
    transition: 0.15s ease-out;
    color: var(--main-color-blue);
    align-items: center;
}

.is-primary.news:hover {
    border: 3px solid var(--main-color-blue) !important;
    background-color: var(--main-color-blue) !important;
}

.is-large.news {
    font-size: 19px !important;
    padding: 23px 40px !important;
}

/* partners */

.partners {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.partners a {
    width: 185px;
    height: 185px;
    background-color: #f4f6f7;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partners img {
    filter: grayscale(100);
    opacity: 0.6;
    transition: 0.15s ease-out;
    aspect-ratio: 8/7;
    object-fit: cover;
}
.partners img:hover {
    filter: grayscale(0);
    opacity: 1;
    background-color: white;
}
.partners a:hover {
    background-color: white;
}

@media screen and (max-width: 750px) {
    .partners a {
        width: 130px;
        height: 130px;
    }
}

/* ----------------- */
/* -----------ABOUT page ------------ */
/* ----------------- */

.header-light {
    height: 40vh;
    max-width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

/* ----------------- */
/* -----------WP page ------------ */
/* ----------------- */

.pillars-container {
    margin-top: 80px;
}

.pillars-container .is-8 {
    background-color: #f4f6f7;
    width: 100%;
}

.pillars-container .is-4 {
    padding: 0;
}

.pillars-container .columns {
    flex-direction: column;
}

.pillars-container .content {
    margin: 0;
}

.pillars {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2px;
}

.pillars li {
    border-bottom: 1px solid #dfe5e8;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
    color: #5f727f;
    padding: 10px 30px;
    cursor: pointer;
    background-color: #dfe5e8;
    border-radius: 3px 3px 0 0;
    user-select: none;
}

.pillars li.is-active {
    background-color: #f4f6f7;
    border-bottom: none;
    color: #5f727f;
    user-select: none;
}

.tab-content {
    display: none;
    margin-top: 40px;
}
.tab-content.is-active {
    display: flex;
}
.tab-content img {
    margin: 0 40px 40px 40px;
}

.tab-content span {
    text-align: justify;
    margin-right: 30px;
}

@media screen and (max-width: 750px) {
    .tab-content.is-active {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .pillars li {
        font-size: clamp(12px, 2vw, 16px);
        line-height: 25px;
        padding: 10px;
    }
}

/* ----------------- */
/* -----------networks page ------------ */
/* ----------------- */

.networks .card-revers-container-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 19vw;
}

.networks .column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.networks .card-revers-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.networks .card img {
    cursor: auto;
}

.networks .card a:hover {
    text-decoration: underline;
    color: var(--main-color-orange);
    transition: 0s;
}

.networks .pile {
    perspective: 1000px;
    perspective-origin: 100% 100%;
    transform-style: preserve-3d;
    width: 190px;
    height: 190px;
    position: relative;
    padding: 2em;
    cursor: auto;
    margin: 0 0px 0 0;
}

.networks .pile:hover #recto {
    transform: rotateY(180deg);
}

.networks .pile:hover #verso {
    transform: rotateY(360deg);
}

.networks .card {
    display: block;
    width: 190px;
    height: 190px;
    color: #000;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.7s;
    border-radius: 32px;
    -webkit-perspective: 0;
    perspective: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.networks #recto {
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

.networks #verso {
    z-index: 0;
    -webkit-transform: rotateY(180deg) translate3d(0, 0, 1px);
    transform: rotateY(180deg) translate3d(0, 0, 1px);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    padding: 12px;
}

.networks #verso {
    background: var(--bg-gray);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    user-select: none;
}

.networks #verso strong {
    color: var(--main-color-blue);
}
.networks #verso span {
    color: var(--main-color-orange);
    font-size: 14px;
}
.networks #verso p {
    font-size: 14px !important;
}

@media screen and (max-width: 750px) {
    .networks .card-revers-container {
        flex-direction: column;
    }

    .networks .pile {
        margin: 0;
    }

    .abstract ul {
        margin-top: 30px;
    }
}

/* ----------------- */
/* -----------cluster event page ------------ */
/* ----------------- */

.button.blue {
    color: var(--main-color-blue);
    border: 3px solid var(--main-color-blue) !important;
}
.button.orange {
    color: var(--main-color-orange);
    border: 3px solid var(--main-color-orange) !important;
}
.button.orange:hover {
    color: white;
    background: var(--main-color-orange) !important;
}

.profil-card {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 6rem;
}
.profil-card img {
    border-radius: 150px;
    margin-top: 10px;
    aspect-ratio: 1;
    object-fit: cover;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.profil-info h3 {
    color: #252525;
}

.profil-info h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    width: fit-content;
    font-weight: 700;
    color: var(--main-color-orange);
}

.profil-info h4::after {
    content: "";
    display: block;
    width: 40%;
    height: 2px;
    background-color: #e3e4e5;
    margin-top: 0.5rem;
}

.profil-info p {
    font-size: 14px !important;
}

.abstract {
    min-height: 15vh;
    max-width: 100%;
    background-color: var(--main-color-orange);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    color: white;
    font-weight: 600;
    font-size: clamp(16px, 2vw, 32px);
}

.abstract ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    font-size: 16px;
    gap: 50px;
    flex-wrap: wrap;
}

.abstract li {
    border-radius: 4px;
    user-select: none;
}

.abstract a {
    font-size: 0.9rem !important;
    color: white !important;
    width: 100%;
    padding: 8px 20px;
    border-radius: 4px;
    border: 2px solid white;
    letter-spacing: 0.5px;
}

.abstract a:hover {
    background-color: white;
    color: var(--main-color-orange) !important;
}

.abstract-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ----------------- */
/* -----------Newsroom page ------------ */
/* ----------------- */

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-header {
    padding-top: 10px;
    margin-top: 10px;
    cursor: pointer;
    user-select: none;
}
.accordions .accordion:nth-child(N + 2) {
    border-top: 1px solid var(--main-color-blue);
}

.accordion-header:hover {
    text-decoration: underline;
    color: var(--main-color-blue);
}

.accordion:last-child .accordion-header {
    border-bottom: none;
}

.accordion h4 {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    color: #1c3f63;
    user-select: none;
}
.accordion i {
    color: var(--main-color-blue);
    font-size: 1em;
    margin-right: 15px;
}

.is-9 .accordions {
    border: 2px solid var(--main-color-blue);
    border-radius: 4px;
    padding: 10px 30px;
    width: 100%;
}

.accordion-content {
    margin-top: 30px;
}

.accordion-content h4 {
    color: var(--main-color-blue);
    font-size: clamp(18px, 3vw, 34px);
    text-align: center;
    line-height: 50px;
    padding-bottom: 30px;
}

.accordion-content p {
    margin-top: 30px;
    text-align: justify;
    font-size: 16px !important;
}

@media screen and (max-width: 730px) {
    .accordion-content .consent-banner p {
        font-size: 12px !important;
        margin-top: 0;
    }
}

.accordion-content p strong {
    font-size: 20px;
}

.accordion-content li {
    list-style: inside;
    margin-left: 40px;
    margin-top: 30px;
    text-align: justify;
}

.accordeon-info {
    background-color: var(--bg-gray);
    padding: 40px 60px 60px 60px;
    margin: 30px;
    font-size: 13px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.accordion-panel {
    margin-bottom: 25px;
}

.accordeon-info p {
    line-height: 37px;
    text-align: center;
}

.accordeon-info a,
.accordeon-info p strong {
    font-size: 14px !important;
}

.accordeon-info:after {
    content: "”";
    position: absolute;
    bottom: 56%;
    right: 29%;
    color: #00bcd459;
    height: 20px;
    width: 40px;
    font-size: 20rem;
}

.newsroom-icon a {
    background-color: var(--main-color-blue);
    width: 70px;
    height: 70px;
    border-radius: 100px;
    position: relative;
    transition: 0.15s ease-out;
}
.newsroom-icon a:hover {
    background-color: white;
    border: 2px solid var(--main-color-blue);
}
.newsroom-icon i {
    color: white;
    font-size: 25px;
    background-color: var(--main-color-blue);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.15s ease-out;
}
.newsroom-icon a:hover i {
    color: var(--main-color-blue);
    background-color: white;
}

.accordion-content-tag-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.accordion-content-tag {
    background-color: var(--main-color-blue);
    width: fit-content;
    color: white;
    padding: 5px 18px;
    border-radius: 20px;
    cursor: pointer;
    user-select: none;
    transition: all 0.15s ease-out;
}

.accordion-content-tag:hover {
    background-color: #40aeee;
}

.accordion-content-tag.active {
    box-shadow: 2px 2px 10px rgb(163 163 163);
    background-color: #40aeee;
}

@media screen and (max-width: 750px) {
    .accordeon-info {
        padding: 0px;
        margin: 0px;
    }
}
/* ----------------- */
/* -----------Newsroom page ------------ */
/* ----------------- */

.list-news-container {
    background-color: var(--bg-gray);
    max-width: 100% !important;

    padding: 100px 0;
}

.list-news {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 70px;
}

/* ---Article blog */

.sidebox-container {
    position: sticky;
    top: 17%;
}

.box.newsBox.light {
    width: 100%;
    min-height: 100px !important;
    background-color: var(--bg-gray);
    box-shadow: none;
    border-radius: 0px;
    padding: 35px;
}

.sidebox-container a:nth-child(n + 2) .box.newsBox.light {
    border-top: 1px solid #d4d4d4;
}
.box.sideBox.news {
    padding: 0px;
}
.box.sideBox.news h4 {
    color: #3c3950;
    font-weight: 700 !important;
    font-size: 20px;
    margin-bottom: 30px;
}

/* .newsBox-info > div {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
} */

.newsBox-info > div i {
    float: left;
    margin-right: 20px;
}

.box.sideBox.news h2 {
    font-size: 15px;
    text-align: start;
    color: var(--main-color-gray);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box.sideBox.news i {
    font-size: 30px;
}

.box.sideBox.news span {
    font-size: 15px;
    color: #bcbcbc;
    font-weight: 500 !important;
}

.box.sideBox.news {
    box-shadow: none;
}

.news-title-container h2 {
    margin-bottom: 100px;
}

/* ------------------- */
/* -----------News content --------------- */
/* ------------------- */
.content {
    margin-top: 50px;
}
/* .content strong {
  font-weight: 400 !important;
  font-size: 20px !important;
} */
.content strong {
    font-size: 16px !important;
}

.content h2 {
    color: var(--main-color-orange);
}

.content p {
    margin-top: 20px;
    font-size: 16px !important;
    text-align: justify;
}
.content a {
    font-size: 16px !important;
}

.special {
    padding-left: 150px;
    text-align: left;
    font-style: italic;
    font-weight: 500;
    margin: 40px 0 !important;
    line-height: 20px;
}

.content ul {
    margin: 0;
}

.content li {
    margin-top: 20px;
    margin-left: 40px;
}

.tags a {
    color: rgb(48, 47, 47);
}

.tags a:hover {
    color: var(--main-color-blue);
}

.tags p {
    color: rgb(48, 47, 47);
}
