@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root{
    --color-blue: #002147;
    --color-blue-20: rgb(0, 33, 71, 0.2);
    --color-white: #ffffff;
    --color-lightblue: rgba(146,222,255,0.17);
    --color-lightgray: #F1EFE9;
    --color-lightgray40: #f8f8f8;
    --color-lightgray20: #e5e9ec;
    --color-bluesky: #92DEFF;
    --color-darksky: #002147;
    --color-blueline: #69a9cb;
    --color-grayline: #afb9c3;
    --color-separatorgray: #ebebeb;
    --color-separatorblue: #83cbed;
    --color-grayborder: #DCDCDC;
    --color-brown: #FFE8E7;
    --color-gray: #F0F0F0;
    --color-bgarrow: #F6F6F6;
    --color-black: #000000;
    --max-width: 1360px;
    --color-error: #ff0000;
    --border-gray: #edeeee;
    --color-darkblue: #131322;
}

html{
    font-size: 10px;
}

body{
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1.8rem;
    line-height: 2.3rem;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
    color: var(--color-blue);
}

#mobileheader{
    display: none;
}

section{
    position: relative;
}

.content{
    max-width: var(--max-width);
    width: 94%;
    margin: 0 auto;
    padding: 0px;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    color: var(--color-blue);
    background-color: var(--color-white);
    padding: 40px 0;
    font-size: 1.4rem;
    transition: 500ms;
    z-index: 10;

	/*animation: sticky-parallax-header-move-and-size linear forwards;
	animation-timeline: scroll();
	animation-range: 0vh 10vh;*/
}

@keyframes sticky-parallax-header-move-and-size {
	from {
		padding: 40px 0;
        box-shadow: 0 0 0px 0px rgba(0, 0, 0, 0.1);
	}
	to {
		padding: 20px 0;
        box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1);
        background-color: var(--color-white);
	}
}

header.small{
    padding: 20px 0;
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1);
}

.bannerblue header{
    color: var(--color-white);
    background-color: transparent;
}

header > .content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header #logo{
    width: 160px;
    height: 23px;
    background-image: url(../img/logo_blue.svg);
    transition: 500ms;
}

.bannerblue header #logo{
    background-image: url(../img/logo_white.svg?v=1);
}

header menu{
    display: flex;
    gap: 30px;
}

header menu > li > a::after{
    position: absolute;
    bottom: -25px;
    width: 100%;
    border-bottom: 1px solid var(--color-blue);
    content: '';
    left: 50%;
    transform: translateX(-50%) scale(0);
    transition: 500ms transform;
}

.bannerblue header menu > li > a::before{
    position: absolute;
    top: 0px;
    width: calc(100% + 30px);
    content: '';
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
}

.bannerblue header menu > li > a::after{
    border-bottom: 1px solid var(--color-white);
}

header menu li[data-megamenu]:hover > a::after{
    border-bottom: 1px solid var(--color-blue);
}

header menu > li:hover > a::after{
    transform: translateX(-50%) scale(1);
    z-index: 10;
}

header menu li a{
    position: relative;
}

header menu li.separator{
    margin-left: 135px;
}

#lang_menu{
    position: relative;
    margin-left: 30px;
}

#lang_menu button{    
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--color-blue);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    transform: translateY(-3px);
    position: relative;
    transition: 500ms;
    text-transform: uppercase;
}

.bannerblue #lang_menu button{
    background-color: var(--color-white);
    color: var(--color-blue);
}

#lang_menu button{
    border: 0;
}

#lang_menu ul{
    display: none;
    position: absolute;
    top: 40px;    
    background-color: var(--color-lightgray40);
    border: 1px solid var(--color-lightgray);    
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border-radius: 10px;
    font-size: 1.4rem;
    color: var(--color-black);
    font-weight: 300;
    text-transform: initial;
    right: -20px;
    min-width: 130px;
}

#lang_menu ul::before{
    display: block;
    position: absolute;
    top: -5px;
    right: 30px;
    width: 10px;
    height: 10px;
    content: '';
    background-color: var(--color-lightgray40);
    border-top: 1px solid var(--color-lightgray);  
    border-right: 1px solid var(--color-lightgray);  
    transform: rotate(45deg);
}

#lang_menu ul::after{
    content: '';
    position: absolute;
    top: -15px;
    height: 25px;
    width: 100%;
    left: 0;
}

#lang_menu:hover ul{
    display: flex;
}

#lang_menu:hover ul li:hover{
    color: var(--color-blue);
    font-weight: 500;
}

#search_menu{
    margin-left: -10px;
    width: 24px;
    height: 24px;
    background-image: url(../img/ico/search_blue.svg);
    transition: 500ms;
    background-repeat: no-repeat;
    cursor: pointer;
    position: relative;
}

.bannerblue #search_menu{
    background-image: url(../img/ico/search_white.svg);
}

#search_menu form{
    display: none;
}

#search_menu:hover form {
    display: block;
    position: absolute;
    top: 30px;
    background-color: var(--color-lightgray40);
    border: 1px solid var(--color-lightgray);
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border-radius: 10px;
    font-size: 1.4rem;
    color: var(--color-black);
    font-weight: 300;
    text-transform: initial;
    right: -20px;
    min-width: 100px;
}

#search_menu form::before {
    display: block;
    position: absolute;
    top: -5px;
    right: 25px;
    width: 10px;
    height: 10px;
    content: '';
    background-color: var(--color-lightgray40);
    border-top: 1px solid var(--color-lightgray);
    border-right: 1px solid var(--color-lightgray);
    transform: rotate(45deg);
}

#search_menu form::after {
    content: '';
    position: absolute;
    top: -25px;
    height: 25px;
    width: 30%;
    left: initial;
    right: 0;
}

#search_menu form input{
    width: 170px;
    border: 0;
    font-size: 14px;
    padding: 0 3px;
    margin: 0;
    height: 23px;
    cursor: text;
}

menu .submenu{
    width: 100%;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 40px);
    pointer-events: none;
    opacity: 0;
    transition: opacity 500ms;
    margin-top: 0px;
    position: absolute;
    top: 60px;
    left: 0;
    color: var(--color-blue);
    max-height: calc(100vh - 40px);
    overflow: auto;    
    box-shadow: 0 20px 20px 0px rgba(0, 0, 0, 0.1);
}

header.small menu .submenu {
    top: 45px;
    padding: 40px 0;
    background: rgb(255, 255, 255);
}

.mobileback{
    display: none;
}

menu li:hover .submenu{
    pointer-events: all;
    opacity: 1;
}

header:has(menu li[data-megamenu]:hover) #lang_menu{
    /*background-color: var(--color-blue);
    color: var(--color-white);*/
}

header:has(menu li[data-megamenu]:hover){
    color: var(--color-blue);
    background-color: var(--color-white);
}

header:has(menu li[data-megamenu]:hover) #logo{
    background-image: url(../img/logo_blue.svg);
}

header:has(menu li[data-megamenu]:hover) #search_menu{
    background-image: url(../img/ico/search_blue.svg);
}

header menu li.selected::after{
    border-bottom: 1px solid var(--color-blue);
    transform: translateX(-50%) scale(1);
    z-index: 10;
}

.submenu{
    width: 100%;
    margin: 0px auto;
    padding: 70px 0;
}

.submenu h4, .submenu label{
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.submenu h4::after, .submenu label::after{
    display: none;
}

.submenu .grid3{
    display: grid;
    grid-template-columns: 0.55fr 0.7fr 1fr;
    padding-top: 30px;
}

.subsection2{
    padding-left: 90px;
    position: relative;
}

.subsection2 ul{
   display: none;
}

.subsection2 ul.active{
    display: block;
}

/*.subsection2 ul{
    position: absolute;
    top: 0;
    left: 90px;
    display: none;
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.25s;
  transition-behavior: allow-discrete;
}

.subsection2 ul.active{
    display: block;
    transform: translateX(0px);
    opacity: 1;
}*/

.subsection3{
    padding-left: 90px;
}

.subsection3 ul{
    display: none;
}

.subsection3 ul.active{
    display: block;
}

.submenu ul{
    font-size: 1.6rem;
    font-weight: 400;
}

.submenu ul li{
    display: flex;
    height: 50px;
    align-items: center;
    padding: 0 20px;
    text-align: left;
    border-bottom: 1px solid #ECECEC;
}

.submenu ul li[data-submenu]{
    background-image: url(../img/ico/arrow_blue.svg);
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.submenu ul li:hover, .submenu ul li.active{
    background-color: var(--color-lightblue);
}

.submenu ul li:last-child{
    border: 0;
}

.submenu .featured{
    display: none;
}

.submenu .featured.active{
    display: block;
}

/*********modules*************/

.module-txt-img .content{
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    color: var(--color-blue);
}

.module-txt-img .content > div:first-child{
    border-right: 1px solid var(--color-lightgray);
    padding-top: 90px;
}

/*.module-txt-img .content > div:last-child{
    align-items: end;
    display: flex;
}*/

.module-txt-img .content > div:last-child img{
    width: 100%;
    position: sticky;
    top: 60px;
    left: 0;
}

h4, .ash4{
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    display: inline;
}

h4.subsection{
    font-size: 2rem;
    display: inline-block;
}

h3, .ash3{
    font-size: 4.6rem;
    line-height: 5rem;
    font-weight: 300;
}

h4::after, .ash4::after{
    position: absolute;
    bottom: -10px;
    border-bottom: 1px solid var(--color-blue);
    content: '';
    left: 0;
    width: 140%;
}

h4.nounderline::after{
    display: none;
}

.btn{
    font-size: 1.4rem;
    line-height: 1.7rem;
    font-weight: 600;
    color: var(--color-blue);
    padding: 15px 20px;
    border: 1px solid var(--color-blue);
    border-radius: 35px;
    display: inline-block;
    cursor: pointer;
    transition: 750ms;
}

.btn.white{
    border: 1px solid var(--color-white);
    color: var(--color-white);
}

.btn:hover{
    background-color: var(--color-blue);
    color: var(--color-white);
}

.btn.white:hover{
    background-color: var(--color-white);
    color: var(--color-blue);
}

.slider-left{
    background-image: url(../img/slider1.jpg);
    background-position: center;
    background-size: cover;
    min-height: 840px;
    position: relative;
    display: flex;
}

.slider_content{
    overflow: auto;
    scroll-snap-type: x mandatory;
}

.slider_content::-webkit-scrollbar {
    width: 0px;
}

.slider_items{
    display: grid;
    grid-template-columns: repeat( var(--cols), 100vw);
}

.slider-left .slide{
    padding-top: 110px;
    color: var(--color-white);
    scroll-snap-align: center;
    opacity: 0;
    transition: 1200ms;
}

.slider-left .slide.active{
    opacity: 1;
}

.slider-left span{
    display: inline-block;
    margin-right: 20px;
}

.slider-left .btn{
    color: var(--color-white);
    border-color: var(--color-white);
}

.slider-left .btn:hover{
    color: var(--color-blue);
    background-color: var(--color-white);
}

.slider-left .control{
    position: absolute;
    width: 90px;
    height: 90px;
    background-color: var(--color-white);
    border-radius: 50%;
    left: 80%;
    top: 40%;
    background-position: center;
    background-size: 25px;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: 500ms;
}

.slider-left .control:hover{
    scale: 1.1;
}

.slider-left .prev{
    background-image: url(../img/ico/arrow_blue.svg);
    rotate: 180deg;
}

.slider-left:has(.prev:hover) .next{
    opacity: 0.5;
    scale: 0.7;
}

.slider-left .next{
    left: calc(80% + 100px);
    background-image: url(../img/ico/arrow_blue.svg);
}

.slider-left:has(.next:hover) .prev{
    opacity: 0.5;
    scale: 0.7;
}

.text-imagelist{
    padding-top: 90px;
    color: var(--color-blue);
}

.opinion .content{
    display: flex;
    align-items: center;
    height: 100%;
}

.text-imagelist > div{
    position: sticky;
    top: -290px;
    left: 0;
}

.text-imagelist .content.viewall{
    font-size: 1.4rem;
    font-weight: 600;
    text-align: right;
}

.text-imagelist .slider_items .title{
    /*position: sticky;
    left: 0;
    top: 0;*/
    background-color: var(--color-white);
}

.text-imagelist .title h4{
    border-top: 1px solid var(--color-blue);
    border-bottom: 1px solid var(--color-blue);
    font-size: 1.4rem;
    font-weight: 700;
    padding: 17px 0;
    margin-top: 0;
    display: block;
    margin-left: 80px;
}

.text-imagelist .slider_items > div > img{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.text-imagelist .slider_items > div > a{
    display: grid;
    grid-template-columns: 65px 1fr;
    margin-top: 20px;
    font-size: 1.8rem;
    font-weight: 300;
    background-image: url(../img/ico/arrow_blue.svg);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 25px;
}

.text-imagelist .slider_items > div > a img{
    max-width: 44px;
}

.text-imagelist .slider_items > div > a > img{
    max-width: 100%;
    grid-column-start: 1;
    grid-column-end: -1;
    margin-bottom: 20px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.text-imagelist .slider_items > div > a:has(>img){
    margin-top: 0;
}

.text-imagelist {
    position: relative;
    overflow: clip;
}

.text-imagelist .slider_items > div > a label{
    font-weight: 700;
}

.text-imagelist .slider_items > div > a p{
    padding-right: 30px;
}

.text-imagelist .slider_scroll{
    width: 100%;
    height: auto;
    scroll-behavior: smooth;
}

.text-imagelist .slider_scroll::-webkit-scrollbar {
    /*width: 5px;*/
}

.text-imagelist .slider_scroll > div{
    display: grid;
    grid-template-columns: repeat(var(--cols), 400px);
    gap: 40px;
    width: calc(400px * var(--cols));
    transition: .5s;
    /*animation-name: movescroll;
    animation-duration: 1ms;
    animation-timeline: view(block);*/
}

@keyframes movescroll {
    10% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

#marquee{
    width: 100%;
    overflow: hidden;
    height: 100px;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--color-lightgray20);
    border-bottom: 1px solid var(--color-lightgray20);
}

#marquee ul{
    display: grid;
    grid-template-columns: repeat(var(--cols), 33vw);
    transform: translateX(-100%);
    transition: .5s;
}

.text-list{
    padding-top: 80px;
    color: var(--color-blue);
}

.text-list .content{
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.text-list .content > div:first-child{
    padding-top: 10px;
}

.text-list .content > div:last-child > div:first-child{
    display: flex;
    justify-content: end;
}

.text-list .content > div:last-child > div:first-child span{
    font-size: 1.6rem;
    line-height: 2rem;
    font-weight: 700;
    padding-left: 115px;
    position: relative;
    display: block;
}

.text-list .content > div:last-child > div:first-child span::after{
    content: '';
    top: 50%;
    left: 0;
    width: 40%;
    border-bottom: 1px solid var(--color-blue);
    display: block;
    position: absolute;
}

.text-list ul{
    margin-top: 135px;
    margin-bottom: 135px;
}

.text-list ul li{
    border-top: 1px solid var(--color-blue);
    position: relative;
    transition: 0.5s;
}

.text-list ul li:has(a){
    padding-right: 0px;
}

.text-list ul li:has(a) a{
    padding-right: 120px;
    display: block;
    position: relative;
    z-index: 2;
}

.text-list ul li:has(a):hover::after{
    position: absolute;
    width: 90px;
    height: 90px;
    background-color: var(--color-white);
    border-radius: 50%;
    right: 0%;
    bottom: 25%;
    background-image: url(../img/ico/arrow_blue.svg);
    background-position: center;
    background-size: 25px;
    background-repeat: no-repeat;
    cursor: pointer;
    content: '';

}

.text-list ul li:last-child{
    text-align: center;
    padding-top: 30px;
    padding-right: 0;
}

.text-list ul li:last-child::after{
    display: none;
}

.text-list ul h5, .text-list ul .ash5{
    font-size: 3.8rem;
    padding: 40px 0;
    line-height: 4.2rem;
} 

.text-list ul li p {
    margin-top: 0px;
    overflow: hidden;
    transform: translateY(0px);
}

.text-list ul div{    
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 500ms;
}

.text-list ul li:hover {
    padding-bottom: 40px;
}

.text-list ul li:hover div{  
    grid-template-rows: 1fr;
}

.slider-bottom{
    padding-top: 65px;
}

.slider-bottom .content > div.controls{
    display: flex;
    justify-content: end;
    gap: 20px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-blue);
}

.slider-bottom .slide{
    scroll-snap-align: center;
    color: var(--color-blue);
    opacity: 0;
    transition: 1200ms;
}

.slider-bottom .slide.active{
    opacity: 1;
}

.slider-bottom .slider_content{
    min-height: 530px;
    align-items: center;
    display: flex;
}

.slider-bottom .slide .content > div{
    width: 80%;
    margin: 0 0 0 auto;
}

.slider-bottom .slide p{
    font-size: 2.8rem;
    line-height: 3.6rem;
    padding-bottom: 50px;
}

.slider-bottom .slide label{
    position: relative;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.slider-bottom .slide label::before{
    position: absolute;
    top: -15px;
    left: 0;
    width: 36px;
    border-top: 1px solid var(--color-blue);
    content: '';
}

.slider-bottom .btn.next{
    background-image: url(../img/ico/arrow_blue.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.slider-bottom .btn.next img{
    opacity: 0;
}

.slider-bottom .btn.next:hover{
    background-image: url(../img/ico/arrow_white.svg);
}

.prefooter{
    padding-top: 130px;
    text-align: center;
    color: var(--color-blue);
    overflow: hidden;
}

.prefooter h3, .prefooter .ash3{
    font-size: 9rem;
    line-height: 9rem;
}

.prefooter img{
    width: 100%;
    vertical-align: bottom;
    transform: rotate(-10deg) translateY(100px);
    opacity: 0;
    transition: 1s;
    transition-delay: 0.6s;
}

.prefooter.active img{
    transform: rotate(0deg) translateY(0px);
    opacity: 1;
}

b{
    font-weight: 700;
}

/*********modules*************/

.pct35{
    max-width: 35%;
}

.pct50{
    max-width: 50%;
}

.pct40{
    max-width: 40%;
}

.pct75{
    max-width: 75%;
}

.mb20{    
    margin-bottom: 20px;
}

.mb30{    
    margin-bottom: 30px;
}

.mb40{    
    margin-bottom: 40px;
}

.mb50{    
    margin-bottom: 50px;
}

.mb60{    
    margin-bottom: 60px;
}

.mb70{    
    margin-bottom: 70px;
}

.mb80{
    margin-bottom: 80px;
}

.mb120{
    margin-bottom: 120px;
}

.mb130{
    margin-bottom: 130px;
}

.mb140{
    margin-bottom: 140px;
}

.mb370{
    margin-bottom: 370px;
}

.pt40{
    padding-top: 40px;
}

.bg-lightgray{
    background-color: var(--color-lightgray);
}

.bg-bluesky{
    background-color: var(--color-bluesky)
}

.bg-white{
    background-color: var(--color-white)
}

footer{
    background-color: var(--color-darksky);
    padding: 120px 0;
    color: var(--color-white);
}

footer .content > div:first-child{
    display: flex;
    justify-content: space-between;
}

footer .content{
    max-width: 80%;
}

footer .content > div:first-child ul{
    display: flex;
    gap: 27px;
    align-items: center;
}

footer .content > div:nth-child(2){
    padding-top: 140px;
    display: flex;
    justify-content: space-between;
}

footer h5, footer .ash5{
    font-size: 9rem;
    font-weight: 400;
    line-height: 10.1rem;
}

footer .content > div:nth-child(2) > div{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

footer .content > div:nth-child(2) > div ul:last-child{
    grid-column-start: 1;
    grid-column-end: -1;
}


footer .content li{
    font-weight: 200;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

footer .content li.title{
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 45px;
}

footer .content > div:last-child{
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 140px;
}

footer .content > div:last-child > div:last-child{
    display: flex;
    justify-content: end;
    gap: 20px;
    font-weight: 200;
    font-size: 1.6rem;
}

footer .explore{
    font-size: 1.6rem;
    display: grid;
    grid-template-columns: 115px 1fr;
    max-width: 450px;
    padding-right: 30px;
    background-image: url(../img/ico/arrow_white.svg);
    background-position: right 5px;
    background-repeat: no-repeat;
}

footer .explore label{
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
}

#langselector{
    font-size: 1.6rem;
    font-weight: 200;
    background-image: url(../img/ico/language.svg);
    background-repeat: no-repeat;
    background-position: 10px center;
    height: 44px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    padding: 0 0px 0 50px;
    position: relative;
}

#langselector::after{
    content: '';
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 3px 4px 3px;
    border-color: transparent transparent #ffffff transparent;
    transform: rotate(180deg);
    position: absolute;
    top: 44%;
    right: 15px;
}

.bgligthblue{
    background-color: var(--color-bluesky);
}

.bgligthgray{
    background-color: var(--color-lightgray);
}

button{
    cursor: pointer;
}

p a{
    text-decoration: underline;
}

a.btn{
    text-decoration: none;
}

i{
    font-style: italic;
}

u{
    text-decoration: underline;
}

strike{
    text-decoration: line-through;
}

strong{
    font-weight: 600;
}

.form-signin{
    padding-top: 200px;
}

body#search .intro {
    padding: 180px 0 0px;
}

body#search .boxex6 {
    padding-top: 0; 
}

#langlist .active{
    display: none;
}

#sticky_banner{
    width: 150px;
    padding: 40px 0;
     background-color: var(--color-bluesky);
     font-size: 1.4rem;
     border-radius: 20px;
     position: fixed;
     bottom: -300px;
     right: 20px;
     text-align: center;
     transition: 750ms;
     box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.1);
}

#sticky_banner.de{
    width: 180px;
    padding: 40px 20px;
}

#sticky_banner.active{
    bottom: 30px;
}

#sticky_banner label, #sticky_banner h4{
    font-size: 1.9rem;
    line-height: 2.2rem;
    margin-bottom: 20px;
    padding: 0 20px;
    display: block;
    font-weight: 400;
}

#sticky_banner h4::after{
    display: none;
}

#sticky_banner p{
    padding: 0 20px;
    margin-bottom: 10px;
    display: none;
}

#sticker_close{
    width: 30px;
    height: 30px;
    background-color: #F1EFE999;
    font-size: 2.3rem;
    position: absolute;
    top: 10px;
    right: 10px;
    rotate: 45deg;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

select#langlist {
    padding: 0px 25px 0 5px;
}

select#langlist option{
    color: var(--color-blue);
    padding: 5px 15px;
}

.highlight {
    background-color: yellow;
}

#cookiereset{
    width: 40px;
    height: 40px;
    position: fixed;
    bottom: 10px;
    left: 10px;
    transform: translateX(-100px);
    background-color: var(--color-darksky);
    border-radius: 50%;
    background-image: url(../img/cookie.svg);
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    transition: 750ms;
    border: 1px solid var(--color-white);
    cursor: pointer;
}

#cookiereset.active{
    transform: translateX(0px);
}

body.es .hidden{
    display: none;
}