@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --white: #fff;
    --white-bg: 255, 255, 255;
    --black: #17141B;
    --secondary: #453E4F;
    --clickable: 172, 27, 105;
    --border: #D4D4D4;
    --linear: linear-gradient(90deg, rgba(247,167,17,1) 0%, rgba(238,112,30,1) 25%, rgba(228,21,21,1) 50%, rgba(172,27,105,1) 75%, rgba(82,39,132,1) 100%);
    --background-img: radial-gradient(30% 30% at 0% 7%, #F7A711 39%, #073AFF00 100%),radial-gradient(30% 30% at 23% 45%, #EE701E 3%, #EE701E00 100%),radial-gradient(30% 30% at 110% 109%, #AC1B69 23%, #EE701E00 98%),radial-gradient(75% 75% at 11% 13%, #EE701E 35%, #EE701E00 81%),radial-gradient(50% 50% at 11% 28%, #E41515 0%, #EE701E00 100%),radial-gradient(40% 40% at 31% 69%, #AC1B69 66%, #39469700 100%),radial-gradient(50% 50% at 42% 103%, #AC1B69 0%, #AC1B69 56%, #39469700 100%),radial-gradient(50% 50% at 44% 3%, #AC1B69 0%, #AC1B69 56%, #39469700 100%),radial-gradient(50% 50% at 34% 38%, #AC1B69 0%, #AC1B69 56%, #39469700 100%),radial-gradient(75% 75% at 50% 50%, #394697 0%, #394697 100%);
}

[data-theme=dark],
[data-bs-theme=dark] {
    --white: #0d1117;
    --white-bg: 13, 17, 23;
    --black: #fff;
    --secondary: #C1C1C1;
    --clickable: 218, 54, 141;
    --border: #4A4353;
    --linear: linear-gradient(90deg, rgba(247,167,17,1) 0%, rgba(238,112,30,1) 25%, rgba(228,21,21,1) 50%, rgba(172,27,105,1) 75%, rgba(82,39,132,1) 100%);
    --background-img: radial-gradient(30% 30% at 0% 7%, #F7A711 39%, #073AFF00 100%),radial-gradient(30% 30% at 23% 45%, #EE701E 3%, #EE701E00 100%),radial-gradient(30% 30% at 110% 109%, #AC1B69 23%, #EE701E00 98%),radial-gradient(75% 75% at 11% 13%, #EE701E 35%, #EE701E00 81%),radial-gradient(50% 50% at 11% 28%, #E41515 0%, #EE701E00 100%),radial-gradient(40% 40% at 31% 69%, #AC1B69 66%, #39469700 100%),radial-gradient(50% 50% at 42% 103%, #AC1B69 0%, #AC1B69 56%, #39469700 100%),radial-gradient(50% 50% at 44% 3%, #AC1B69 0%, #AC1B69 56%, #39469700 100%),radial-gradient(50% 50% at 34% 38%, #AC1B69 0%, #AC1B69 56%, #39469700 100%),radial-gradient(75% 75% at 50% 50%, #394697 0%, #394697 100%);
}

* {
    margin: 0;
    padding: 0;
}

ul {
    padding-left: revert;
}

html,
body {
    width: 100%;
    height: auto;

    scroll-behavior: smooth;
    font-family: "Montserrat", sans-serif;
}

body {
    background: var(--background-img);
    background-size: cover;
}

header,
body .main,
footer {
    display: flex;
    justify-content: center;
}

header,
footer {
    background: rgba(var(--white-bg), .9);

    /* Dark Mode */
    transition: background-color 150ms linear;
}

header {
    border-bottom: 1px solid var(--border);
}

.container {
    display: flex;
    justify-content: space-between;
    width: 1180px;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
}

header .container {
    align-items: center;
    flex-direction: row;
    margin: 10px 0;
}

header .container a.logo {
    max-height: 80px;
    z-index: 550;
}

header .container img {
    height: 15vw;
    max-height: 80px;
}

header .container .navcontainer {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-size: 17px;
}

header .container .navcontainer .mobileMenuIcon {
    display: none;
    cursor: pointer;
    z-index: 550;
    color: var(--black);
}

html[navbarOpened=true] body {
    overflow: hidden;
}
html[navbarOpened=true] header .container .navcontainer .mobileMenuIcon #off,
html[navbarOpened=false] header .container .navcontainer .mobileMenuIcon #on {
    display: none;
}
html[navbarOpened=true] header .container .navcontainer nav {
    left: 0;
}
html[navbarOpened=true] header .container .navcontainer nav > * {
    margin-left: 0!important;
}

header .container nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 35px;
}

header .container nav a {
    text-decoration: none;
    color: var(--black);
    font-weight: 700;
}

header .container nav a:hover {
    background: var(--linear);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body .main {
    height: 40vh;
    gap: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
}

body .main.home {
    height: 80vh;
}

body .main .container {
    gap: 50px;
    display: flex;
    flex-direction: column;
}

body .main h1 {
    font-weight: 500;
    font-size: 60px;
}

body .main h1 span {
    font-weight: 700;
}

.cta {
    padding: 0 30px;
    height: 45px;

    box-sizing: border-box;
    display: flex;
    align-items: center;

    background: linear-gradient(var(--black), var(--black)) text,
        linear-gradient(var(--white), var(--white)) padding-box,
        var(--linear) border-box;

    border-radius: 20px;
    border: 3px solid;

    cursor: pointer;

    color: transparent;
    font-weight: 700;
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
}

.cta:hover {
    background: var(--linear) text,
            linear-gradient(var(--white), var(--white)) padding-box,
            var(--linear) border-box;
}

.cta2 {
    color: var(--black);
    font-size: 50px;
    text-align: center;
    margin: 30px auto 0 auto;
    width: auto;
}

body section:nth-child(odd) {
    color: var(--black);
    background: var(--white);
}

body section:nth-child(even) {
    color: #fff;
}

body section .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;

    width: 1180px;
    /*min-height: 90vh;*/
    padding: 100px 0;

    margin: 0 auto;
}

h2 {
    font-weight: 700;
    font-size: 35px;
}

body section .content {
    font-size: 18px;
}

.numbersgroup {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.numbersgroup .number {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 240px;
    text-align: center;
}

.numbersgroup .number .img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    font-size: 60px;
    background: var(--white);
    border-radius: 50%;
}

.numbersgroup .number .img i {
    background: var(--linear);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.numbersgroup .number .title {
    font-weight: 700;
    font-size: 20px;
}

body section#content .content .articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 20px;
}

body section#content .content div hr {
    margin: 20px 0;
}

body section#content .content .articles .article {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    height: fit-content;
}

body section#content .content .articles .article .img {
    width: 100%;
    aspect-ratio: 16 / 9;
    z-index: 480;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--background-img);

    overflow: hidden;
    transition: 0.5s;

    border-radius: 10px;
}

body section#content .content .articles .article .img img {
    max-width: 100%;
    width: 100%;
    transition: .2s;
}

body section#content .content .articles .article:hover .img img {
    max-width: 110%;
    width: 110%;
}

body section#content .content .articles .article .texts {
    padding: 10px 0;
    color: var(--black);
}

body section#content .content .articles a {
    text-decoration: none;
}

body section#content .content .articles .article .texts .title {
    font-weight: bold;
    font-size: 23px;
    color: rgba(var(--clickable));
}

body section#content .content .articles .article .texts .desc {
    margin-bottom: 5px;
}

body section#content .content .articles .article .texts .date {
    font-weight: 700;
    color: var(--secondary);
}

footer {
    border-top: 1px solid var(--border);
    color: var(--black);
}

footer .container {
    margin: 10px auto 0 auto;
    width: 1180px;
}

footer .container > * {
    padding: 20px 0;
    width: 100%;
}

footer .logos,
footer .links nav,
footer .certifs,
footer .legals {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .logos img {
    height: 15vw;
    max-height: 95px;
}

footer .links nav {
    padding: 10px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    font-size: 17px;
}

.navlink {
    color: rgba(var(--clickable));
    text-decoration: none;
    font-weight: 700;
}

.navlink:hover {
    background: var(--linear);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

footer .certifs img {
    height: 10vw;
    max-height: 80px;
    min-height: 60px;
}

footer .legals {
    font-weight: 600;
    row-gap: 20px;
}

footer .legals .links {
    display: flex;
    flex-wrap: wrap;
    column-gap: 35px;
}

.paginator {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.pagination {
    box-sizing: border-box;
    display: inline-block;

    background: var(--linear) padding-box,
        var(--linear) border-box;
    border: 2px solid transparent;
    border-radius: 18px;
    overflow: hidden;
}

.pagination__item {
    display: inline-block;
    padding: 10px 8px;
    min-width: 20px;

    background: var(--white);
    color: var(--black);

    text-decoration: none;
    text-align: center;

    transition: all 0.3s ease;
}

.pagination__item:not(:last-child) {
    padding-right: 8px;
    margin-right: 2px;
}

.pagination__item:hover {
    background: transparent;
    color: var(--white);
}

.pagination__item.pagination__item--previous-page,
.pagination__item.pagination__item--next-page {
    font-weight: 600;
}

.pagination__item.pagination__item--current-page {
    background: transparent;
    color: var(--white);
    font-weight: bold;
}

.pagination__item.pagination__item--disabled {
    color: var(--white);
    background: rgba(var(--clickable));
    pointer-events: none;
    opacity: .6;
    font-weight: normal;
}

.pagination__item.pagination__item--separator:hover,
.pagination__item.pagination__item--disabled:hover {
    background: transparent;
}

iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
}

ul.contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
ul.contact li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5px;
}
ul.contact li i {
    width: 20px;
}

section.showarticle {
    color: var(--black)!important;
    background: var(--white);
}

section.showarticle .content {
    padding: 50px 0;
    gap: 20px;
}

section.showarticle .content img {
    width: max-content;
    max-height: 400px;
}

section.showarticle .content h1 {
    font-size: 40px;
    margin-top: 20px;
}

.swiper {
    width: 100%;
    height: 100%;
}

.teamPerson {
    height: auto;
}

.teamPerson .img {
    width: 100%;
    aspect-ratio: 1/1;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    transition: 0.5s;

    border-radius: 10px;

    margin-bottom: 10px;
}

.teamPerson .img img {
    width: 100%;
    transition: .2s;
}

.teamPerson:hover .img img {
    max-width: 110%;
    width: 110%;
}

.teamPerson .texts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.teamPerson .texts .name {
    font-weight: 700;
    font-size: 18px;
}

.teamPerson .texts .job {
    font-size: 16px;
    opacity: .8;
}

.teamPerson .texts .citation {
    font-size: 14px;
    opacity: .5;
}

@media (max-width: 1270px) {
    body section .content {
        gap: 30px;
    }
    body section .content,
    .container {
        width: 90vw;
        margin-left: 20px!important;
        margin-right: 20px!important;
    }
    body .main h1,
    h3 {
        font-size: 40px;
    }
    body section .content p {
        font-size: 18px;
    }
    .numbersgroup .number {
        width: min-content;
    }
    .numbersgroup .number .img {
        width: 100px;
        height: 100px;
        font-size: 50px;
    }
    body section#content .content .articles .article {
        gap: 20px;
    }
    body section#content .content .articles .article .texts {
        position: inherit;
        opacity: 1;
    }
    footer .links nav {
        flex-direction: column;
        gap: 10px;
    }

    header .container .navcontainer .mobileMenuIcon {
        display: block;
    }
    header .container .navcontainer nav {
        position: fixed;
        top: 0;
        left: 100%;
        background: var(--white);
        width: 100%;
        height: 100%;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        z-index: 500;
        transition: .5s;
    }

    header .container nav > * {
        transition: .6s;
    }

    header .container nav > *:nth-child(1) {
        margin-left: 100%;
    }

    header .container nav > *:nth-child(2) {
        margin-left: 200%;
    }

    header .container nav > *:nth-child(3) {
        margin-left: 300%;
    }

    header .container nav > *:nth-child(4) {
        margin-left: 400%;
    }

    header .container nav > *:nth-child(5) {
        margin-left: 500%;
    }

    header .container nav a:nth-child(6) {
        margin-left: 600%;
    }
}

.swap,
.mobileMenuIcon {
    position: relative;
    display: inline-grid;
    -webkit-user-select: none;
    user-select: none;
    place-content: center;
    cursor: pointer;
}

.swap>*,
.mobileMenuIcon > * {
    grid-column-start: 1;
    grid-row-start: 1;
    transition-duration: .3s;
    transition-timing-function: cubic-bezier(0,0,.2,1);
    transition-property: transform,opacity;
}

.swap input,
.mobileMenuIcon input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.swap .swap-on,.swap .swap-indeterminate,.swap input:indeterminate~.swap-on,
.swap input:checked~.swap-off,.swap-active .swap-off,.swap input:indeterminate~.swap-off {
    opacity: 0;
}

.swap input:checked~.swap-on,.swap-active .swap-on,.swap input:indeterminate~.swap-indeterminate {
    opacity: 1;
}

.swap-rotate .swap-on,.swap-rotate .swap-indeterminate,.swap-rotate input:indeterminate~.swap-on {
    transform: rotate(45deg);
}

.swap-rotate input:checked~.swap-off,.swap-active:where(.swap-rotate) .swap-off,.swap-rotate input:indeterminate~.swap-off {
    transform: rotate(-45deg);
}

.swap-rotate input:checked~.swap-on,.swap-active:where(.swap-rotate) .swap-on,.swap-rotate input:indeterminate~.swap-indeterminate {
    transform: rotate(0deg);
}

.swap-flip {
    transform-style: preserve-3d;
    perspective: 16em;
}

.swap-flip .swap-on,.swap-flip .swap-indeterminate,.swap-flip input:indeterminate~.swap-on {
    transform: rotateY(180deg);
    backface-visibility: hidden;
    opacity: 1;
}

.swap-flip input:checked~.swap-off,.swap-active:where(.swap-flip) .swap-off,.swap-flip input:indeterminate~.swap-off {
    transform: rotateY(-180deg);
    backface-visibility: hidden;
    opacity: 1;
}

.swap-flip input:checked~.swap-on,.swap-active:where(.swap-flip) .swap-on,.swap-flip input:indeterminate~.swap-indeterminate {
    transform: rotateY(0);
}

.swap svg {
    width: 25px;
    height: 25px;
    fill: var(--black);
}

[data-theme=dark] .darkLogo,
[data-bs-theme=dark] .darkLogo {
    display: none!important;
}

[data-theme=dark] .whiteLogo,
[data-bs-theme=dark] .whiteLogo {
    display: block!important;
}

.whiteLogo {
    display: none!important;
}