/* boilerplate start */

:root{
    /* --dark-green-1: #212d27;
    --dark-green-2: #54792a;
    --green: #a3b98f;
    --beige: #fdf3c8;
    --pink: #fce7d6;
    --brown: #573f26; */

    /* --dark-green-1-rgb: 33, 45, 39;
    --dark-green-2-rgb: 84, 121, 42;
    --green-rgb: 163, 185, 143;
    --beige-rgb: 253, 243, 200;
    --pink-rgb: 252, 231, 214;
    --brown-rgb: 87, 63, 38; */

    /* --dark-green-rgb: 84, 121, 42;
    --green-rgb: 163, 185, 143;
    --beige-rgb: 253, 243, 200;
    --pink-rgb: 252, 231, 214;
    --brown-rgb: 87, 63, 38; */

    --dark-green: #141c11;
    --violet: #b37ba4;
    --blue: #507a81;
    --green: #5c6b28;
    --yellow: #e7e8a6;
    --gold: #efbc63;
    --orange: #da9432;
    --brown: #8c4511;

    --tmp: #d8912c;

    --white: #ffffff;

    --dark-green-rgb: 20, 28, 17;
    --violet-rgb: 179, 123, 164;
    --blue-rgb: 80, 122, 129;
    --green-rgb: 92, 107, 40;
    --yellow-rgb: 231, 232, 166;
    --gold-rgb: 239, 188, 99;
    --orange-rgb: 218, 148, 50;
    --brown-rgb: 140, 69, 17;

    --white-rgb: 255, 255, 255;

    --unit: 1vw;

    --gap-factor: .1rem;

    --gap-xs: calc(1 * var(--gap-factor));
    --gap-s: calc(2 * var(--gap-factor));
    --gap-m: calc(5 * var(--gap-factor));
    --gap-l: calc(10 * var(--gap-factor));
    --gap-xl: calc(20 * var(--gap-factor));
    --gap-xxl: calc(35 * var(--gap-factor));

    font-size: var(--unit);
}

@font-face {
    font-family: Lexend-Deca;
    src: url(./fonts/LexendDeca-VariableFont_wght.ttf);
}

html{
    scroll-behavior: smooth;
}

body{
    background-color: var(--yellow);
    padding: 0;
    margin: 0;
    font-family: Lexend-Deca;
    scroll-behavior: smooth;
}

h1{
    font-size: 4rem;
    font-weight: 400;
    margin: 0;
}

h2{
    font-size: 3rem;
    font-weight: 300;
    margin: 0;
}

h3{
    font-size: 2rem;
    font-weight: 300;
    margin: 0;
}

h4{
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0;
}

h6{
    font-size: .75rem;
    font-weight: 300;
    margin: 0;
}

ul{
    padding-inline-start: 2.25rem;
}

.hidden{
    display: none;
}

.no-select{
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.green{
    color: var(--green);
}

.blue{
    color: var(--blue);
}

section > .section-h1{
    margin-bottom: var(--gap-xl);
}

/* boilerplate end */

/* navbar start */

#navbar{
    position: fixed;
    top: 0;
    width: 100%;
    min-height: 5rem;
    backdrop-filter: blur(3rem) brightness(70%);
    -webkit-backdrop-filter: blur(3rem) brightness(70%);
    z-index: 100;
    display: flex;
    align-items: center;
}

#navbar #navbar-mob-toggle{
    display: none;
}

#navbar #navbar-ul{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 3.5rem;
    row-gap: 1.5rem;
    list-style-type: none;
    padding-inline-start: 0rem;
    margin-left: 2.5rem;
}

#navbar .navbar-li a, #navbar-lang-option-wrapper a{
    text-decoration: none;
    color: var(--white);
    transition: color .2s;
    display: block;
    position: relative;
    cursor: pointer;
}

#navbar .navbar-li a.selected, #navbar-lang-option-wrapper a.selected{
    color: var(--yellow);
}

#navbar-lang-option-wrapper a.lang-option{
    display: inline-block;
}

#navbar-lang-option-wrapper{
    position: absolute;
    right: var(--gap-xxl);
    top: 50%;
    transform: translateY(-50%);
}

#navbar .navbar-li a::after, #navbar-lang-option-wrapper a::after{
    content: "";
    height: .2rem;
    width: 0%;
    top: 100%;
    left: 50%;
    transform: translate(-50%);
    border-radius: 100rem;
    background-color: var(--yellow);
    position: absolute;
    transition: width .2s;
}

#navbar .navbar-li a:hover:after, #navbar-lang-option-wrapper a:hover:after{
    width: 100%;
}

#navbar .navbar-li a:hover, #navbar-lang-option-wrapper a:hover{
    color: var(--yellow);
}

#navbar #navbar-logo-a{
    text-decoration: none;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: var(--gap-l);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: var(--gap-s);
    margin: var(--gap-l) var(--gap-xl);
}

#navbar #navbar-logo-a svg{
    height: 4rem;
}

#navbar #navbar-logo-a > span > span{
    color: var(--yellow);
}

/* navbar end */

/* hero start */

#hero{
    height: calc(100vh + 9.9rem);
    position: relative;
}

#hero #hero-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left bottom;
    position: fixed;
    z-index: -1;
    /* mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%); */
}

#hero #mission{
    left: 45%;
    position: absolute;
    top: calc(calc(100vh + 5rem) / 2);
    display: block;
    width: 40rem;
    text-align: right;
    color: var(--white);
    transform: translateY(-50%);
    margin: 0;
    font-weight: 400;
}

#hero #mission span:nth-child(1){
    font-weight: 500;
}

#hero #mission span:nth-child(2){
    font-weight: 300;
}

#hero #mission span:nth-child(3){
    font-weight: 200;
}

#hero #mission span:nth-child(4){
    font-weight: 100;
}

#hero #hero-vision-wave{
    position: absolute;
    bottom: -.1rem;
    left: 0;
    width: 100%;
}

#hero #hero-vision-wave path{
    fill: var(--yellow);
}

/* hero end */

/* vision start */

#vision{
    background-color: var(--yellow);
    position: relative;
    padding: var(--gap-xxl) var(--gap-xxl);
}

#vision #vision-wrapper{
    position: relative;
    display: grid;
    grid-template-columns: 80% 20%;
}

#vision #vision-wrapper #vision-vision{
    margin: 0;
}

#vision #vision-wrapper #vision-vision span:nth-child(1){
    font-weight: 600;
}

#vision #vision-wrapper #vision-vision span:nth-child(3){
    font-weight: 400;
}

#vision #vision-wrapper #vision-vision span:nth-child(5){
    font-weight: 200;
}

#vision #vision-wrapper #vision-elaboration{
    display: block;
    position: relative;
    height: fit-content;
    top: 50%;
    transform: translateY(-50%);
}

#vision #vision-esg-wave{
    position: absolute;
    top: 99%;
    left: 0;
    width: 100%;
    transform: rotate(180deg);
    z-index: 1;
}

#vision #vision-esg-wave path{
    fill: var(--yellow);
}

/* vision end */

/* esg start */

#esg{
    position: relative;
    color: var(--yellow);
    padding: var(--gap-xxl);
    padding-top: calc(var(--gap-xxl) + 9.9rem);
    padding-bottom: calc(var(--gap-xxl) + 5rem);
    backdrop-filter: blur(.5rem) brightness(80%);
    -webkit-backdrop-filter: blur(.5rem) brightness(80%);
}

#esg #esg-wrapper{
    position: relative;
    display: grid;
    grid-template-columns: 20% 38% 42%;
}

#esg #esg-wrapper #esg-definition{
    position: relative;
    height: fit-content;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(var(--yellow-rgb), .9);
    font-weight: 300;
}

#esg #esg-wrapper #esg-esg h1{
    font-weight: 200;
    width: fit-content;
}

#esg #esg-timeline {
    position: relative;
    margin-top: var(--gap-xxl);
    margin-bottom: var(--gap-xxl);
}

#esg #esg-timeline #esg-timeline-elements{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20rem;
}

#esg #esg-timeline #esg-timeline-elements .esg-timeline-line{
    height: .2rem;
    width: calc(calc(100% - 2 * 2.5rem) / 3);
    background-color: var(--yellow);
    border-radius: 1rem;
}

#esg #esg-timeline #esg-timeline-elements .esg-timeline-dot{
    width: 2.5rem;
    aspect-ratio: 1 / 1;
    border-radius: 100rem;
    border: .2rem solid var(--yellow);
    position: relative;
}

#esg #esg-timeline #esg-timeline-elements .esg-timeline-dot *{
    position: absolute;
    display: block;
    left: 50%;
    transform: translateX(-50%);
}

#esg #esg-timeline #esg-timeline-elements .esg-timeline-dot .esg-timeline-dot-time{
    font-size: 2rem;
    font-weight: 400;
}

#esg #esg-timeline #esg-timeline-elements .esg-timeline-dot.content-top .esg-timeline-dot-time{
    top: calc(100% + var(--gap-l));
}

#esg #esg-timeline #esg-timeline-elements .esg-timeline-dot.content-bottom .esg-timeline-dot-time{
    bottom: calc(100% + var(--gap-l));
}

#esg #esg-timeline #esg-timeline-elements .esg-timeline-dot .esg-timeline-dot-title{
    font-size: 1.5rem;
    font-weight: 400;
    width: 20rem;
    text-align: center;
}

#esg #esg-timeline #esg-timeline-elements .esg-timeline-dot.content-top .esg-timeline-dot-title{
    bottom: calc(100% + var(--gap-l));
}

#esg #esg-timeline #esg-timeline-elements .esg-timeline-dot.content-bottom .esg-timeline-dot-title{
    top: calc(100% + var(--gap-l));
}

#esg #esg-timeline #esg-timeline-elements .esg-timeline-dot .esg-timeline-dot-text{
    width: 23rem;
    color: rgba(var(--yellow-rgb), .8);
    text-align: center;
}

#esg #esg-timeline #esg-timeline-elements .esg-timeline-dot.content-top .esg-timeline-dot-text{
    bottom: calc(100% + 2 * var(--gap-l) + 1.5rem);
}

#esg #esg-timeline #esg-timeline-elements .esg-timeline-dot.content-bottom .esg-timeline-dot-text{
    top: calc(100% + 2 * var(--gap-l) + 1.5rem);;
}

/* esg end */

/* compliance start */

#compliance{
    position: relative;
    background-color: var(--dark-green);
    color: var(--yellow);
    padding: var(--gap-xxl);
    padding-top: var(--gap-xxl);
    padding-bottom: var(--gap-xxl);
}

#compliance #esg-compliance-wave{
    position: absolute;
    width: 100%;
    bottom: 100%;
    left: 0;
    transform: rotate(180deg);
    z-index: 1;
}

#compliance #esg-compliance-wave path{
    fill: var(--dark-green);
    width: 100%;
}

#compliance #compliance-cards{
    display: grid;
    gap: var(--gap-xl);
    grid-template-columns: repeat(3, 1fr);
}

#compliance #compliance-cards .compliance-card{
    padding: var(--gap-l);
    background-color: var(--green);
    border-radius: .5rem;
    cursor: pointer;
    transition: transform .3s;
}

#compliance #compliance-cards .compliance-card:hover{
    transform: translateY(-1rem);
}

#compliance #compliance-cards .compliance-card .compliance-card-num{
    color: rgba(var(--yellow-rgb), .3);
    font-weight: 200;
    margin-bottom: var(--gap-m);
}

#compliance #compliance-cards .compliance-card .compliance-card-title{
    font-weight: 500;
    margin-bottom: var(--gap-m);
}

#compliance #compliance-cards .compliance-card .compliance-card-desc{
    color: rgba(var(--yellow-rgb), .7);
    display: none;
}


#compliance #compliance-TBLbf-wave{
    position: absolute;
    left: 0;
    top: 99%;
    width: 100%;
    transform: rotate(180deg);
    z-index: 1;
}

#compliance #compliance-TBLbf-wave path{
    fill: var(--dark-green);
}

/* compliance end */

/* TBLbf start (Triple Bottom Line Base Framework) */

#TBLbf{
    position: relative;
    padding: var(--gap-xxl);
    padding-top: calc(var(--gap-xxl) + 5rem);
    padding-bottom: calc(var(--gap-xxl) + 7.6rem);
    background-color: var(--brown);
    color: var(--yellow);
}

#TBLbf #TBLbf-text-wrapper{
    display: grid;
    grid-template-columns: 70% 30%;
    position: relative;
    height: 4rem;
    margin-bottom: var(--gap-xl);
}

#TBLbf #TBLbf-text-wrapper #TBLbf-triple-bottom-line-desc{
    position: relative;
    bottom: 100%;
    transform: translateY(4rem);
    right: 0;
    height: fit-content;
    width: 100%;
    text-align: right;
    color: rgba(var(--yellow-rgb), .7);
}

#TBLbf #TBLbf-visual{
    /* background-color: var(--yellow); */
    width: 100%;
    border-radius: 1rem;
    padding: var(--gap-l);
    height: fit-content;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

#TBLbf #TBLbf-visual #TBLbf-visual-circle-wrapper{
    aspect-ratio: 1 / 1;
    position: relative;
    width: calc(calc(100vw - 2 * var(--gap-xxl)) / 2);
}

#TBLbf #TBLbf-visual .TBLbf-visual-circle{
    aspect-ratio: 1 / 1;
    width: calc(calc(2 / 3 * 100) * 1%);
    border-radius: 100rem;
    position: absolute;
}

#TBLbf #TBLbf-visual #TBLbf-visual-people{
    background: rgba(var(--blue-rgb), .5);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

#TBLbf #TBLbf-visual #TBLbf-visual-planet{
    background: rgba(var(--green-rgb), .7);
    top: calc(calc(1 / 3 * 100) * 1%);
    left: 0rem;
    z-index: 2;
    /* transform: translate(-25%, -50%); */
}

#TBLbf #TBLbf-visual #TBLbf-visual-profit{
    background: rgba(var(--orange-rgb), .4);
    top: calc(calc(1 / 3 * 100) * 1%);
    right: 0rem;
    z-index: 1;
    /* transform: translate(25%, -150%); */
}

#TBLbf #TBLbf-visual .TBLbf-visual-circle span{
    position: absolute;
    font-size: 3rem;
    color: var(--yellow);
    font-weight: 200;
}

#TBLbf #TBLbf-visual #TBLbf-visual-people span{
    left: 50%;
    top: 25%;
    transform: translate(-50%, -50%);
}

#TBLbf #TBLbf-visual #TBLbf-visual-planet span{
    left: 25%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#TBLbf #TBLbf-visual #TBLbf-visual-profit span{
    right: 25%;
    top: 50%;
    transform: translate(50%, -50%);
}

#TBLbf #TBLbf-visual #TBLbf-visual-tbl-categ-wrapper{
    height: fit-content;
    box-sizing: border-box;
    margin-left: var(--gap-xxl);
    display: grid;
    grid-template-columns: min-content auto min-content;
    row-gap: calc(var(--gap-xxl) * 2);
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

body.cn #TBLbf #TBLbf-visual #TBLbf-visual-tbl-categ-wrapper{
    grid-template-columns: max-content auto auto;
}

#TBLbf #TBLbf-visual #TBLbf-visual-tbl-categ-wrapper h1{
    font-weight: 200;
}

#TBLbf #TBLbf-visual #TBLbf-visual-tbl-categ-wrapper .TBLbf-visual-tbl-categ-div{
    text-align: center;
}

#TBLbf-SDG-goals-wave{
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0rem;
    z-index: 1;
}

#TBLbf-SDG-goals-wave path{
    fill: var(--orange);
}

/* TBLbf end (Triple Bottom Line Base Framework) */

/* SDG-goals start (Sustainable Development Goals) */

#SDG-goals{
    padding: var(--gap-xxl);
    background-color: var(--orange);
    color: var(--dark-green);
    position: relative;
}

#SDG-goals #SDG-goals-wrapper{
    width: 100%;
    display: flex;
    gap: var(--gap-l);
    justify-content: center;
    flex-wrap: wrap;
    height: fit-content;
    background: rgba(var(--yellow-rgb), 0);
    border-radius: .5rem;
    /*padding: var(--gap-l);*/
    grid-column: span 2;
    margin-bottom: var(--gap-xl);
    box-sizing: border-box;
}

.sdg-goal{
    aspect-ratio: 1 / 1;
    width: 14rem;
    position: relative;
    border-radius: .5rem;
    display: grid;
    grid-template-columns: min-content auto;
    grid-template-rows: min-content auto;
    color: var(--white);
    box-sizing: border-box;
    padding: var(--gap-l);
}

.sdg-goal .sdg-num{
    font-size: 2.5rem;
    line-height: 2.5rem;
    font-weight: 400;
    margin-right: var(--gap-l);
}

.sdg-goal .sdg-img{
    margin: auto;
    grid-column: span 2;
    width: 80%;
    height: 80%;
    object-fit: contain;
    object-position: center;
    background-color: transparent !important;
}

.sdg-goal .sdg-img path{
    stroke: none;
    fill: var(--white);
}

#SDG-goals #SDG-goals-timeline {
    position: relative;
    margin-top: var(--gap-xxl);
    margin-bottom: var(--gap-xxl);
}

#SDG-goals #SDG-goals-timeline #SDG-goals-timeline-elements{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 22rem;
}

#SDG-goals #SDG-goals-timeline #SDG-goals-timeline-elements .SDG-goals-timeline-line{
    height: .2rem;
    width: calc(calc(100% - 2 * 2.5rem) / 3);
    background-color: var(--dark-green);
    border-radius: 1rem;
}

#SDG-goals #SDG-goals-timeline #SDG-goals-timeline-elements .SDG-goals-timeline-dot{
    width: 2.5rem;
    aspect-ratio: 1 / 1;
    border-radius: 100rem;
    border: .2rem solid var(--dark-green);
    position: relative;
}

#SDG-goals #SDG-goals-timeline #SDG-goals-timeline-elements .SDG-goals-timeline-dot *{
    position: absolute;
    display: block;
    left: 50%;
    transform: translateX(-50%);
}

#SDG-goals #SDG-goals-timeline #SDG-goals-timeline-elements .SDG-goals-timeline-dot .SDG-goals-timeline-dot-time{
    font-size: 2rem;
    font-weight: 400;
}

#SDG-goals #SDG-goals-timeline #SDG-goals-timeline-elements .SDG-goals-timeline-dot.content-top .SDG-goals-timeline-dot-time{
    top: calc(100% + var(--gap-l));
}

#SDG-goals #SDG-goals-timeline #SDG-goals-timeline-elements .SDG-goals-timeline-dot.content-bottom .SDG-goals-timeline-dot-time{
    bottom: calc(100% + var(--gap-l));
}

#SDG-goals #SDG-goals-timeline #SDG-goals-timeline-elements .SDG-goals-timeline-dot .SDG-goals-timeline-dot-title{
    font-size: 1.5rem;
    font-weight: 400;
    width: 30rem;
    text-align: center;
}

#SDG-goals #SDG-goals-timeline #SDG-goals-timeline-elements .SDG-goals-timeline-dot.content-top .SDG-goals-timeline-dot-title{
    bottom: calc(100% + var(--gap-l));
}

#SDG-goals #SDG-goals-timeline #SDG-goals-timeline-elements .SDG-goals-timeline-dot.content-bottom .SDG-goals-timeline-dot-title{
    top: calc(100% + var(--gap-l));
}

#SDG-goals #SDG-goals-timeline #SDG-goals-timeline-elements .SDG-goals-timeline-dot .SDG-goals-timeline-dot-text{
    width: 33rem;
    color: rgba(var(--dark-green-rgb), .8);
    text-align: center;
}

#SDG-goals #SDG-goals-timeline #SDG-goals-timeline-elements .SDG-goals-timeline-dot.content-top .SDG-goals-timeline-dot-text{
    bottom: calc(100% + 2 * var(--gap-l) + 1.5rem);
}

#SDG-goals #SDG-goals-timeline #SDG-goals-timeline-elements .SDG-goals-timeline-dot.content-bottom .SDG-goals-timeline-dot-text{
    top: calc(100% + 2 * var(--gap-l) + 1.5rem);;
}

#SDG-goals-esg-cube-wave{
    width: 100%;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 1;
}

#SDG-goals-esg-cube-wave path{
    fill: var(--orange);
}

/* SDG-goals end (Sustainable Development Goals) */

/* esg-cube start */

#esg-cube{
    padding: var(--gap-xxl);
    padding-top: calc(var(--gap-xxl) + 7.15rem);
    position: relative;
    background-color: var(--yellow);
    color: var(--dark-green);
}

#esg-cube-visual-wrapper{
    display: grid;
    grid-template-columns: auto var(--gap-xl) 50%;
}

#esg-cube-visual-left-side{
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: var(--gap-xl);
}

#esg-cube-visual-left-side .left-side-h2{
    margin-bottom: var(--gap-l);
    font-weight: 400;
}

#esg-cube-visual-toggle-switch{
    width: calc(100% - 2 * var(--gap-l));
    height: 5rem;
    background-color: rgba(var(--gold-rgb), 1);
    border-radius: 100rem;
    padding: var(--gap-l);
    cursor: pointer;
    position: relative;
    transition: .2s;
}

#esg-cube-visual-toggle-switch:hover{
    background-color: rgba(var(--gold-rgb), .7);
}

#esg-cube-visual-toggle-switch:active{
    background-color: rgba(var(--gold-rgb), 1);
}

#esg-cube-visual-toggle-switch.tbl-active{
    background-color: rgba(var(--dark-green-rgb), 1);
}

#esg-cube-visual-toggle-switch.tbl-active:hover{
    background-color: rgba(var(--dark-green-rgb), .9);
}

#esg-cube-visual-toggle-switch.tbl-active:active{
    background-color: rgba(var(--dark-green-rgb), 1);
}

#esg-cube-visual-toggle-switch-toggle{
    height: 100%;
    width: fit-content;
    border-radius: 100rem;
    background-color: var(--dark-green);
    color: var(--yellow);
    padding: 0 var(--gap-l);
    box-sizing: border-box;
    position: relative;
    transition: .3s;
    left: 0%;
    transform: translateX(0%);
}

#esg-cube-visual-toggle-switch.tbl-active #esg-cube-visual-toggle-switch-toggle{
    background-color: var(--gold);
    color: var(--dark-green);
    left: 100%;
    transform: translateX(-100%);
}

#esg-cube-visual-toggle-switch-toggle h1{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    font-weight: 200;
}

#esg-cube-visual-toggle-switch.esg-active #esg-cube-visual-toggle-switch-toggle-tbl{
    display: none;
}

#esg-cube-visual-toggle-switch.tbl-active #esg-cube-visual-toggle-switch-toggle-esg{
    display: none;
}

#esg-cube-visual-toggle-switch-label-wrapper{
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: calc(100% - 2 * var(--gap-l));
    top: 50%;
    transform: translateY(-50%);
}

#esg-cube-visual-toggle-switch.tbl-active #esg-cube-visual-toggle-switch-label-wrapper{
    color: var(--yellow);
}

#esg-cube-visual-toggle-switch-label-wrapper h2{
    font-size: 3rem;
    margin: var(--gap-l);
}

#esg-cube-visual-toggle-switch-label-wrapper h2:nth-child(2){
    opacity: 50%;
}

#esg-cube-visual{
    position: relative;
}

#esg-cube-visual-els{
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

#esg-cube-visual-els-E,
#esg-cube-visual-els-S,
#esg-cube-visual-els-G,
#esg-cube-visual-els-Ec{
    color: rgba(var(--yellow-rgb), .7);
    position: absolute;
    left: 50%;
    top: 50%;
}

#esg-cube-visual-els-E{
    transform: translate(calc(-100% - var(--gap-l)), -100%);
}

#esg-cube-visual-els-S{
    transform: translate(var(--gap-l), -100%);
}

#esg-cube-visual-els-G{
    transform: translate(-50%, var(--gap-m));
}

.tbl-active #esg-cube-visual-els-G{
    display: none;
}

#esg-cube-visual-els-Ec{
    transform: translate(-50%, var(--gap-m));
}

.esg-active #esg-cube-visual-els-Ec{
    display: none;
}

#esg-cube-visual-els-Environment,
#esg-cube-visual-els-Social,
#esg-cube-visual-els-Governance,
#esg-cube-visual-els-Economy{
    color: var(--yellow);
    position: absolute;
}

#esg-cube-visual-els-Environment{
    left: 25%;
    top: 40%;
    transform: rotate(-60deg);
}

body.cn #esg-cube-visual-els-Environment{
    left: 33%;
    top: 40%;
}

#esg-cube-visual-els-Social{
    right: 31%;
    top: 40%;
    transform: rotate(60deg);
}

body.cn #esg-cube-visual-els-Social{
    right: 33%;
    top: 40%;
}

#esg-cube-visual-els-Governance{
    top: 61%;
    left: 50%;
    transform: translateX(-50%);
}

.tbl-active #esg-cube-visual-els-Governance{
    display: none;
}

#esg-cube-visual-els-Economy{
    top: 61%;
    left: 50%;
    transform: translateX(-50%);
}

.esg-active #esg-cube-visual-els-Economy{
    display: none;
}

#esg-cube-visual .sdg-goal{
    left: 0%;
    top: 0%;
    transform: scale(.4, .4);
    transform-origin: 0% 0%;
    position: absolute;
    transition: .3s;
    cursor: pointer;
}

#esg-cube-visual.tbl-active #sdg-goal-1,
#esg-cube-visual.tbl-active #sdg-goal-2,
#esg-cube-visual.tbl-active #sdg-goal-3,
#esg-cube-visual.tbl-active #sdg-goal-4,
#esg-cube-visual.tbl-active #sdg-goal-5,
#esg-cube-visual.tbl-active #sdg-goal-6,
#esg-cube-visual.tbl-active #sdg-goal-10,
#esg-cube-visual.tbl-active #sdg-goal-11,
#esg-cube-visual.tbl-active #sdg-goal-16{
    transform: scale(.3, .3);
}

#esg-cube-visual.esg-active #sdg-goal-1,
#esg-cube-visual.esg-active #sdg-goal-2,
#esg-cube-visual.esg-active #sdg-goal-3,
#esg-cube-visual.esg-active #sdg-goal-4,
#esg-cube-visual.esg-active #sdg-goal-5,
#esg-cube-visual.esg-active #sdg-goal-6,
#esg-cube-visual.esg-active #sdg-goal-8,
#esg-cube-visual.esg-active #sdg-goal-10,
#esg-cube-visual.esg-active #sdg-goal-11,
#esg-cube-visual.esg-active #sdg-goal-16{
    transform: scale(.3, .3);
}

#esg-cube-visual .sdg-goal:hover{
    transform: scale(.8, .8) translate(-25%, -25%) !important;
    z-index: 2 !important;
}

#esg-cube-visual .esg-cube-visual-els-goals{
    height: 100%;
    width: 100%;
    position: absolute;
}

/* esg-active environment sdg goals start */

#esg-cube-visual.esg-active #sdg-goal-7{ /* new */
    left: 36%;
    top: 6%;
    z-index: 1;
}

#esg-cube-visual.esg-active #sdg-goal-12{
    left: 22%;
    top: 11%;
    z-index: 1;
}

#esg-cube-visual.esg-active #sdg-goal-13{
    top: 25%;
    left: 11%;
    z-index: 1;
}

#esg-cube-visual.esg-active #sdg-goal-14{
    top: 39%;
    left: 8%;
    z-index: 1;
}

#esg-cube-visual.esg-active #sdg-goal-15{
    left: 8%;
    top: 53%;
    z-index: 1;
}

/* esg-active environment sdg goals end */

/* esg-active social sdg goals start */

#esg-cube-visual.esg-active #sdg-goal-1{
    left: 52.5%;
    top: 3%;
    z-index: 1;
}

#esg-cube-visual.esg-active #sdg-goal-2{
    left: 52.5%;
    top: 13.5%;
    z-index: 1;
}

#esg-cube-visual.esg-active #sdg-goal-3{
    top: 8%;
    left: 63%;
    z-index: 1;
}

#esg-cube-visual.esg-active #sdg-goal-4{
    top: 18.5%;
    left: 63%;
    z-index: 1;
}

#esg-cube-visual.esg-active #sdg-goal-5{
    top: 15.5%;
    left: 73.5%;
    z-index: 1;
}

#esg-cube-visual.esg-active #sdg-goal-6{
    top: 26%;
    left: 73.5%;
    z-index: 1;
}

#esg-cube-visual.esg-active #sdg-goal-8{
    top: 27%;
    left: 84%;
    z-index: 1;
}

#esg-cube-visual.esg-active #sdg-goal-10{
    top: 37%;
    left: 75%;
    z-index: 1;
}

#esg-cube-visual.esg-active #sdg-goal-11{
    top: 37.5%;
    left: 85.5%;
    z-index: 1;
}

#esg-cube-visual.esg-active #sdg-goal-16{
    top: 48%;
    left: 80%;
    z-index: 1;
}

/* esg-active social sdg goals end */

/* esg-active governance sdg goals start */

#esg-cube-visual.esg-active #sdg-goal-9{
    top: 74%;
    left: 23%;
    z-index: 1;
}

#esg-cube-visual.esg-active #sdg-goal-17{
    top: 74%;
    left: 64%;
    z-index: 1;
}

/* esg-active governance sdg goals end */

/* tbl-active environment sdg goals start */

#esg-cube-visual.tbl-active #sdg-goal-12{
    left: 33%;
    top: 7%;
    z-index: 1;
}

#esg-cube-visual.tbl-active #sdg-goal-13{
    top: 17%;
    left: 18%;
    z-index: 1;
}

#esg-cube-visual.tbl-active #sdg-goal-14{
    top: 33%;
    left: 8%;
    z-index: 1;
}

#esg-cube-visual.tbl-active #sdg-goal-15{
    left: 8%;
    top: 50%;
    z-index: 1;
}

/* tbl-active environment sdg goals end */

/* tbl-active social sdg goals start */

#esg-cube-visual.tbl-active #sdg-goal-1{
    left: 52.5%;
    top: 3%;
    z-index: 1;
}

#esg-cube-visual.tbl-active #sdg-goal-2{
    left: 52.5%;
    top: 13.5%;
    z-index: 1;
}

#esg-cube-visual.tbl-active #sdg-goal-3{
    top: 8%;
    left: 63%;
    z-index: 1;
}

#esg-cube-visual.tbl-active #sdg-goal-4{
    top: 18.5%;
    left: 63%;
    z-index: 1;
}

#esg-cube-visual.tbl-active #sdg-goal-5{
    top: 15.5%;
    left: 73.5%;
    z-index: 1;
}

#esg-cube-visual.tbl-active #sdg-goal-6{
    top: 26%;
    left: 73.5%;
    z-index: 1;
}

#esg-cube-visual.tbl-active #sdg-goal-10{
    top: 27%;
    left: 84%;
    z-index: 1;
}

#esg-cube-visual.tbl-active #sdg-goal-11{
    top: 37%;
    left: 75%;
    z-index: 1;
}

#esg-cube-visual.tbl-active #sdg-goal-16{
    top: 37.5%;
    left: 85.5%;
    z-index: 1;
}

/* tbl-active social sdg goals end */

/* tbl-active governance sdg goals start */

#esg-cube-visual.tbl-active #sdg-goal-7{
    top: 71%;
    left: 20%;
    z-index: 1;
}

#esg-cube-visual.tbl-active #sdg-goal-8{
    top: 80%;
    left: 36%;
    z-index: 1;
}

#esg-cube-visual.tbl-active #sdg-goal-9{
    top: 80%;
    left: 52%;
    z-index: 1;
}

#esg-cube-visual.tbl-active #sdg-goal-17{
    top: 71%;
    left: 68%;
    z-index: 1;
}

/* tbl-active governance sdg goals end */

#esg-cube-eu-taxo-wave{
    left: 0;
    position: absolute;
    top: 100%;
    z-index: 1;
    transform: rotateY(180deg);
}

#esg-cube-eu-taxo-wave path{
    fill: var(--yellow);
}

/* esg-cube end */

/* eu-taxo start */

#eu-taxo{
    position: relative;
    background-color: var(--blue);
    color: rgba(var(--white-rgb), .9);
    padding: var(--gap-xxl);
    padding-top: calc(8rem + var(--gap-xxl));
}

#eu-taxo #eu-taxo-text-wrapper{
    display: grid;
    grid-template-columns: 60% 40%;
    position: relative;
}

#eu-taxo #eu-taxo-text-wrapper > span{
    display: block;
    height: fit-content;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    opacity: 75%;
}

#eu-taxo-visual{
    position: relative;
    height: 85rem;
}

#eu-taxo-visual .eu-taxo-visual-ball{
    width: 10rem;
    aspect-ratio: 1 / 1;
    border-radius: 100rem;
    background-color: rgba(var(--white-rgb), .9);
    color: var(--blue);
    position: relative;
    backdrop-filter: blur(1rem);
    -webkit-backdrop-filter: blur(1rem);
}

#eu-taxo-visual .eu-taxo-visual-ball span{
    display: block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 var(--gap-l);
    text-align: center;
}

#eu-taxo-visual .eu-taxo-visual-info{
    border: var(--gap-s) solid rgba(var(--white-rgb), .9);
    border-radius: var(--gap-l);
    width: 20rem;
    overflow: hidden;
    position: absolute;
}

#eu-taxo-visual .eu-taxo-visual-info-title{
    height: 3rem;
    background-color: rgba(var(--white-rgb), .9);
    color: var(--blue);
    position: relative;
    backdrop-filter: blur(1rem);
    -webkit-backdrop-filter: blur(1rem);
}

#eu-taxo-visual .eu-taxo-visual-info-title span{
    display: block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    font-weight: 500;
}

#eu-taxo-visual .eu-taxo-visual-info-info{
    padding: var(--gap-l);
    padding-left: 0;
    background-color: var(--blue);
}

#eu-taxo-visual .eu-taxo-visual-part{
    width: fit-content;
    height: fit-content;
    position: absolute;
}

#eu-taxo-visual .eu-taxo-visual-part::after{
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: var(--gap-s);
    height: 21.5rem;
    background-color: var(--white);
    z-index: -1;
}

#eu-taxo-visual-center-ball{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

#eu-taxo-visual-center-ball::after{
    content: "";
    width: 120%;
    height: 120%;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: var(--gap-s) solid rgba(var(--white-rgb), .7);
    border-radius: inherit;
    box-shadow: 0 0 0 var(--gap-m) rgba(var(--white-rgb), .2);
}

#eu-taxo-visual-top-part{
    left: 50%;
    top: 50%;
    transform: translate(-50%, -20rem);
}

#eu-taxo-visual-top-part .eu-taxo-visual-info{
    left: 50%;
    top: -2.5rem;
    transform: translate(-50%, -100%);
}

#eu-taxo-visual-left-part{
    left: 50%;
    top: 50%;
    transform: translate(-17.5rem, 4rem);
}

#eu-taxo-visual-left-part::after{
    transform: translate(-50%, -50%) rotate(53deg) !important;
}

#eu-taxo-visual-left-part .eu-taxo-visual-info{
    left: -2rem;
    top: 100%;
    transform: translateX(-100%);
}

#eu-taxo-visual-right-part{
    left: 50%;
    top: 50%;
    transform: translate(7.5rem, 4rem);
}

#eu-taxo-visual-right-part::after{
    transform: translate(-50%, -50%) rotate(-53deg) !important;
}

#eu-taxo-visual-right-part .eu-taxo-visual-info{
    left: 100%;
    top: 100%;
    transform: translateX(2rem);
}

#eu-taxo-csrf-wave{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1;
}

#eu-taxo-csrf-wave path{
    fill: var(--blue);
}

/* eu-taxo end */

/* csrf start */

#csrf{
    position: relative;
    padding: var(--gap-xxl);
    padding-top: calc(10rem + var(--gap-xxl));
    background-color: var(--green);
    color: var(--yellow);
}

#csrf-transform-wave{
    width: 100%;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 1;
}

#csrf-transform-wave path{
    fill: var(--green);
}

/* csrf end */

/* transform start */

#transform{
    position: relative;
    padding: var(--gap-xxl);
    padding-top: calc(10rem + var(--gap-xxl));
    background-color: var(--yellow);
    color: var(--dark-green);
}

#transform-visual{
    position: relative;
}

#transform-visual-maturity-arrow-desc{
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--gap-s);
    font-size: 1.25rem;
}

#transform-visual-maturity-arrow{
    display: flex;
    align-items: center;
    margin-bottom: var(--gap-xl);
}

#transform-visual-maturity-arrow-body{
    width: 100%;
    height: var(--gap-s);
    border-radius: 100vw;
    background-color: var(--dark-green);
}

#transform-visual-maturity-arrow-head{
    width: var(--gap-m);
}

#transform-visual-maturity-arrow-head path{
    fill: var(--dark-green);
}

#transform-visual-boxes{
    position: relative;
    display: grid;
    grid-template-columns: repeat(9, auto);
}

#transform-visual-boxes .box{
    text-align: center;
    position: relative;
    height: fit-content;
    display: grid;
    grid-template-columns: auto auto;
}

#transform-visual-boxes .box > *{
    grid-column: span 2;
}

#transform-visual-boxes .box > span:nth-child(2){
    display: block;
    box-sizing: border-box;
    padding: var(--gap-s);
    border-radius: var(--gap-m);
    margin: var(--gap-s);
}

#transform-visual-boxes .box .scope{
    grid-column: span 1;
    background-color: var(--green);
    display: block;
    box-sizing: border-box;
    padding: var(--gap-s);
    border-radius: var(--gap-m);
    color: var(--yellow);
    margin: var(--gap-s);
}

#transform-visual-boxes .box > span:first-child{
    border-radius: var(--gap-m);
    display: block;
    width: 100%;
    height: 8rem;
    box-sizing: border-box;
    padding: var(--gap-m);
    position: relative;
    color: var(--yellow);
}

#transform-visual-boxes .box > span:first-child span{
    display: block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    height: fit-content;
    width: 100%;
}

#transform-visual-boxes .box img{
    height: 5rem;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    position: relative;
    left: 50%;
    margin: var(--gap-l) 0;
    transform: translateX(-50%);
}

#transform-visual-boxes .box > span:last-child{
    display: block;
    background-color: var(--dark-green);
    color: var(--yellow);
    border-radius: var(--gap-m);
    padding: var(--gap-s);
    box-sizing: border-box;
}

#transform-visual-boxes .arrow svg{
    width: 3rem;
    top: 4rem;
    transform: translateY(-50%);
    position: relative;
    margin: 0 var(--gap-l);
}

#transform-visual-boxes .arrow path{
    fill: var(--dark-green);
    opacity: 100%;
}

#transform-cn-appr-wave{
    width: 100%;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 1;
}

#transform-cn-appr-wave path{
    fill: var(--yellow);
}

#transform #packages-wrapper{
    margin-top: var(--gap-xxl);
}

#transform #packages-wrapper .package{
    padding: var(--gap-l);
    border-radius: var(--gap-l);
    position: relative;
    background-color: rgba(var(--violet-rgb), 0.2); /* gets overwritten afterwards */
    border: var(--gap-s) solid var(--violet);
    display: grid;
    grid-template-columns: auto auto;
    gap: var(--gap-xxl);
    filter: brightness(110%);
}

#transform #packages-wrapper .package#package-M5{
    grid-template-columns: 1.3fr 0.7fr;
}

#transform #packages-wrapper .package#package-M5{
    background-color: rgba(var(--violet-rgb), 0.2);
    border: var(--gap-s) solid var(--violet);
}

#transform #packages-wrapper .package#package-M3{
    background-color: rgba(var(--blue-rgb), 0.2);
    border: var(--gap-s) solid var(--blue);
}

#transform #packages-wrapper .package#package-M2{
    background-color: rgba(var(--green-rgb), 0.2);
    border: var(--gap-s) solid var(--green);
}

#transform #packages-wrapper .package .name{
    width: 5rem;
    height: 5rem;
    border-radius: 100rem;
    background-color: var(--violet);
    position: absolute;
    left: 100%;
    bottom: 100%;
    color: var(--white);
    transform: translate(-50%, 50%);
}

#transform #packages-wrapper .package#package-M5 .name{
    background-color: var(--violet);
}

#transform #packages-wrapper .package#package-M3 .name{
    background-color: var(--blue);
}

#transform #packages-wrapper .package#package-M2 .name{
    background-color: var(--green);
}

#transform #packages-wrapper .package .name span{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* transform end */

/* cn-appr start */

#cn-appr{
    background-color: var(--blue);
    color: rgba(var(--white-rgb), .9);
    position: relative;
    padding: var(--gap-xxl);
    padding-top: calc(10rem + var(--gap-xxl));
}

#cn-appr-visual-wrapper{
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

#cn-appr-visual img{
    width: 100%;
    box-sizing: border-box;
    margin-right: var(--gap-xl);
    opacity: .8;
}

#cn-appr-visual-desc{
    font-size: 2rem;
    line-height: 5rem;
    font-weight: 300;
}

#cn-appr-team-wave{
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    z-index: 1;
    transform: rotateY(180deg);
}

#cn-appr-team-wave path{
    fill: var(--blue);
}

/* cn-appr end */

/* team start */

#team{
    position: relative;
    background-color: var(--yellow);
    color: var(--dark-green);
    padding: var(--gap-xxl);
    padding-top: calc(11rem + var(--gap-xxl));
}

#team .section-h1{
    margin-bottom: calc(2 * var(--gap-xl));
}

#team-slideshow-wrapper{
    height: 30rem;
    width: 100%;
    position: relative;
}

#team-slideshow-controls{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    font-size: 5rem;
    align-items: center;
    justify-content: space-between;
}

#team-slideshow-controls div{
    transform: scale(1, 2) translateY(-10%);
    transition: transform .2s;
    cursor: pointer;
}

#team-slideshow-controls div:hover{
    transform: scale(1.5, 2.5) translateY(-10%);
}

#team-slideshow{
    height: 100%;
    position: relative;
    width: calc(100% - 4 * var(--gap-xl));
    left: 50%;
    transform: translateX(-50%);
    overflow-x: clip;
}

#team-slideshow-slides{
    height: 100%;
    display: grid;
    position: relative;
    grid-template-columns: repeat(4, 100%);
    transition: left .3s;
}

#team-slideshow-slides .slide{
    height: 100%;
    padding: var(--gap-xl);
    padding-top: 5rem;
    border-radius: var(--gap-m);
    background-color: var(--gold);
    box-sizing: border-box;
    position: relative;
}

#team-slideshow-slides .slide-img{
    width: 10rem;
    height: 10rem;
    object-fit: cover;
    object-position: center;
    border-radius: 100rem;
    position: absolute;
    top: 0;
    transform: translateY(-25%);
    border: var(--gap-m) solid var(--gold);
}

#team-slideshow-slides .slide-name{
    position: absolute;
    left: calc(2 * var(--gap-xl) + 10rem);
    top: var(--gap-l);
}

#team-slideshow-slides .slide-desc{
    position: relative;
    top: var(--gap-xxl);
}

#team-slideshow-slides .slide-desc li{
    margin-bottom: var(--gap-m);
}

#team-slideshow-slides .slide-desc li:last-child{
    margin-bottom: 0;
}

#team-slideshow-slides .slide-desc span{
    margin-top: var(--gap-l);
    display: block;
}

/* team end */

/* contact start */

#contact{
    background-color: var(--dark-green);
    color: var(--yellow);
    padding: var(--gap-xxl);
    position: relative;
}

section.before-contact{
    padding-bottom: calc(5rem + var(--gap-xxl)) !important;
}

#contact #contact-wave{
    width: 100%;
    position: absolute;
    left: 0;
    transform: rotate(180deg) scaleY(.5) translateY(-52%);
    bottom: 100%;
}

#contact #contact-wave path{
    fill: var(--dark-green);
}

#contact #contact-get-in-touch{
    margin-bottom: var(--gap-xl);
}

#contact #contact-cards{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-xl);
}

#contact #contact-cards .contact-card{
    background-color: var(--orange);
    color: var(--dark-green);
    padding: var(--gap-l);
    border-radius: .5rem;
}

#contact #contact-cards .contact-card .contact-card-title{
    font-size: 2rem;
}

#contact #contact-cards .contact-card .contact-card-subtitle{
    margin-top: var(--gap-m);
    font-size: 1.5rem;
    font-weight: 400;
}

#contact #contact-cards .contact-card .contact-card-desc{
    margin-top: var(--gap-l);
    display: block;
    opacity: 70%;
}

#contact #contact-cards .contact-card .contact-card-contact{
    display: block;
    background-color: rgba(var(--dark-green-rgb), .3);
    color: var(--yellow);
    padding: var(--gap-m);
    border-radius: .5rem;
    margin-top: var(--gap-l);
    cursor: pointer;
    transition: .2s;
}

#contact #contact-cards .contact-card .contact-card-contact:hover{
    background-color: rgba(var(--dark-green-rgb), .7);
}

#contact #contact-cards .contact-card .contact-card-contact span{
    font-weight: 500;
}

#contact #contact-cards #research-project-contact-card{
    background-color: var(--blue);
    color: var(--yellow);
}

#contact #contact-cards #consultation-contact-card{
    background-color: var(--green);
    color: var(--yellow);
}

#contact #contact-abbr-def{
    opacity: 70%;
    margin-top: var(--gap-l);
    display: block;
}

/* contact end */

@media only screen and (orientation: portrait){
    html{
        font-size: 2vw !important;
    }

    /* navbar start */

    #navbar{
        min-height: 7rem;
        width: 100vw;
    }

    #navbar #navbar-logo-a{
        font-size: 2.5rem;
    }

    #navbar #navbar-ul{
        display: block;
        width: fit-content;
        height: calc(100vh - 7rem);
        left: 0;
        transform: translateX(-100%);
        top: 7rem;
        backdrop-filter: blur(3rem) brightness(60%);
        -webkit-backdrop-filter: blur(3rem) brightness(60%);
        background-color: rgba(var(--dark-green-rgb), .5);
        margin: 0;
        padding: var(--gap-xl);
        position: absolute;
        z-index: 100;
        transition: transform .4s;
    }

    #navbar.mob-active #navbar-ul{
        transform: translateX(0%);
    }

    #navbar #navbar-ul::before{
        content: "";
        position: absolute;
        width: 100vw;
        height: calc(100vh - 7rem);
        top: 0;
        left: 0;
        transform: translateX(-100%);
        background-color: rgba(var(--dark-green-rgb), .4);
        transition: transform .4s;
    }

    #navbar.mob-active #navbar-ul::before{
        transform: translateX(0%);
    }

    #navbar #navbar-ul li{
        width: fit-content;
        margin-bottom: var(--gap-xl);
        font-size: 2rem;
    }

    #navbar-lang-option-wrapper a.lang-option{
        font-size: 2rem;
    }

    #navbar #navbar-logo-a{
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
    }

    #navbar #navbar-mob-toggle{
        display: block;
        left: var(--gap-xl);
        position: absolute;
        border: none;
        background-color: transparent;
        height: 1.5rem;
        width: 3rem;
        cursor: pointer;
    }

    #navbar #navbar-mob-toggle::before, #navbar #navbar-mob-toggle::after{
        content: "";
        position: absolute;
        width: 100%;
        height: var(--gap-s);
        border-radius: 100rem;
        background-color: var(--white);
        left: 0;
        transition: .2s;
    }

    #navbar #navbar-mob-toggle::before{
        top: 0;
    }

    #navbar #navbar-mob-toggle::after{
        bottom: 0;
        width: 50%;
    }

    #navbar.mob-active #navbar-mob-toggle::before{
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotateZ(45deg);
    }

    #navbar.mob-active #navbar-mob-toggle::after{
        width: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotateZ(-45deg);
    }

    /* navbar end */

    /* hero start */

    #hero #mission{
        left: 50%;
        top: 25%;
        transform: translate(-50%, -50%);
        width: fit-content;
        text-align: center;
    }

    /* hero end */

    /* vision start */

    #vision #vision-wrapper #vision-vision{
        grid-column: span 2;
        margin-bottom: var(--gap-xl);
    }

    #vision #vision-wrapper #vision-vision span{
        display: inline-block;
    }

    #vision #vision-wrapper #vision-vision span:nth-child(1){
        text-align: left;
    }
    
    #vision #vision-wrapper #vision-vision span:nth-child(3){
        text-align: center;
    }
    
    #vision #vision-wrapper #vision-vision span:nth-child(5){
        text-align: right;
        left: 100%;
        transform: translateX(-100%);
        position: relative;
        width: 80%;
    }

    #vision #vision-wrapper #vision-elaboration{
        grid-column: span 2;
    }

    /* vision end */

    /* esg start */

    #esg #esg-wrapper #esg-definition{
        grid-column: span 3;
        margin-top: var(--gap-m);
        margin-bottom: var(--gap-l);
    }

    #esg #esg-wrapper #esg-placeholder{
        display: none;
    }

    #esg #esg-wrapper #esg-esg{
        grid-column: span 3;
    }

    #esg #esg-wrapper #esg-esg h1{
        display: block;
        position: relative;
    }

    #esg #esg-wrapper #esg-esg h1:nth-of-type(1){
        left: 0%;
    }

    #esg #esg-wrapper #esg-esg h1:nth-of-type(2){
        left: 10%
    }

    #esg #esg-wrapper #esg-esg h1:nth-of-type(3){
        left: 20%;
    }

    /* esg end */

    /* compliance start */

    #compliance #compliance-cards{
        grid-template-columns: 1fr;
    }

    #compliance #compliance-TBLbf-wave{
        top: 99.7%;
    }

    /* compliance end */

    /* TBLbf start */

    #TBLbf #TBLbf-text-wrapper{
        grid-template-columns: 1fr;
        height: fit-content;
    }

    #TBLbf #TBLbf-text-wrapper #TBLbf-triple-bottom-line-desc{
        top: 0;
        left: 100%;
        transform: translate(-100%, 0);
        margin-top: var(--gap-xl);
        width: 90%;
    }

    #TBLbf #TBLbf-visual{
        grid-template-columns: 1fr;
    }

    #TBLbf #TBLbf-visual #TBLbf-visual-circle-wrapper{
        width: calc(100% - var(--gap-xl));
        margin-bottom: var(--gap-xxl)
    }

    #TBLbf #TBLbf-visual #TBLbf-visual-tbl-categ-wrapper{
        row-gap: var(--gap-xxl);
        margin-left: 0;
    }

    /* TBLbf end */

    /* SDG-goals start */

    #SDG-goals #SDG-goals-timeline #SDG-goals-timeline-elements{
        height: 33rem;
    }

    #SDG-goals #SDG-goals-timeline #SDG-goals-timeline-elements .SDG-goals-timeline-dot .SDG-goals-timeline-dot-title{
        width: 25rem;
    }

    #SDG-goals #SDG-goals-timeline #SDG-goals-timeline-elements .SDG-goals-timeline-dot .SDG-goals-timeline-dot-text{
        width: 20rem;
    }

    #SDG-goals #SDG-goals-timeline #SDG-goals-timeline-elements .SDG-goals-timeline-dot.content-top .SDG-goals-timeline-dot-text{
        bottom: calc(100% + 2 * var(--gap-l) + 3rem);
    }

    /* SDG-goals end */

    /* esg-cube start */

    #esg-cube-visual-wrapper{
        grid-template-columns: auto;
        row-gap: var(--gap-xl);
    }

    #esg-cube-visual{
        order: 1;
    }

    #esg-cube-visual-left-side{
        order: 2;
    }

    /* esg-cube end */

    /* eu-taxo start */

    #eu-taxo #eu-taxo-text-wrapper{
        grid-template-columns: auto;
        row-gap: var(--gap-xl);
    }

    #eu-taxo-visual{
        height: 85rem;
        margin-bottom: var(--gap-xl);
    }

    #eu-taxo-visual-left-part::after{
        height: 24rem !important;
        transform: translate(-50%, -50%) rotate(40deg) !important;
    }

    #eu-taxo-visual-left-part .eu-taxo-visual-info{
        top: 125%;
        left: 170%;
    }

    #eu-taxo-visual-right-part::after{
        height: 24rem !important;
        transform: translate(-50%, -50%) rotate(-40deg) !important;
    }

    #eu-taxo-visual-right-part .eu-taxo-visual-info{
        top: 125%;
        left: -90%;
    }

    /* eu-taxo end */

    /* transform start */

    #transform-visual-maturity-arrow-desc{
        position: absolute;
        transform: rotateZ(90deg);
        top: 61rem;
        left: -24rem;
        width: 122rem;
    }

    #transform-visual-maturity-arrow{
        position: absolute;
        transform: rotateZ(90deg);
        top: 61rem;
        left: -25.5rem;
    }

    #transform-visual-maturity-arrow-body{
        width: 122rem;
    }

    #transform-visual-boxes{
        grid-template-columns: auto;
        width: 25rem;
        left: 50%;
        transform: translateX(-50%);
    }

    #transform-visual-boxes .arrow svg{
        top: 0;
        left: 50%;
        margin: var(--gap-xxl) auto;
        transform: translateX(-50%) rotateZ(90deg);
    }

    #transform-visual-boxes .box > span:nth-child(2):not(.scope){
        display: none;
    }

    #transform #packages-wrapper .package{
        grid-template-columns: 1fr !important;
        row-gap: var(--gap-l);
    }

    #transform #packages-wrapper .package .content-wrapper{
        position: relative;
    }

    #transform #packages-wrapper .package .name{
        transform: translate(calc(-50% + var(--gap-l)), calc(50% - var(--gap-l)));
    }

    /* transform end */

    /* cn-appr start */

    #cn-appr-visual-wrapper{
        grid-template-columns: 1fr;
    }

    /* cn-appr end */

    /* team start */

    #team-slideshow-wrapper{
        height: 50rem;
    }

    #team-slideshow-slides .slide-name{
        font-size: 2.5rem;
    }

    /* team end */

    /* contact start */

    #contact #contact-cards{
        grid-template-columns: 1fr;
    }

    /* contact end */

}