
@keyframes appearfrombottom {
    0% {transform: translateY(1rem); opacity: 0;}
    100% {transform: translateY(0rem); opacity: 1;}
}
.staggered_animation {animation: appearfrombottom 0.75s both; animation-delay: calc(var(--n) * 200ms + 500ms);}

body.home #breadcrumbs {display: none;}
body.home #header {position: absolute;}

.contentsection.blue {background: #00a8e9; color: white;}
.contentsection.blue:last-child {margin-bottom: -6rem; border-bottom: 1px solid rgba(255,255,255,0.25);}

.contentsection.worldwide {margin-top: 8rem;}
.contentsection.worldwide .container {display: flex; justify-content: center; flex-direction: row; gap: 3rem; padding-top: 2rem; padding-bottom: 2rem;}
.contentsection.worldwide .container > div {padding: 1rem 0;}
.contentsection.worldwide .container > div:nth-child(1) {text-align: center;}
.contentsection.worldwide .container > div:nth-child(2) {min-width: 11rem;}
.contentsection.worldwide .container > div h2 {margin-top: 0; padding-top: 0; font-size: 1.25rem; font-weight: 700;}
.contentsection.worldwide .container > div p {margin-bottom: 1.4em;}
.contentsection.worldwide .container > div ul li {list-style: none;}
.contentsection.worldwide .container > div a.button {color: white; display: inline-block; width: auto; min-width: 11rem; border: 1px solid rgba(255,255,255,0.5); background: none; margin-bottom: 0.5rem;}
@media only screen and (max-width: 600px) {
    .contentsection.worldwide .container {display: block;} 
}

.contentsection.systems .container {padding-top: 3rem; padding-bottom: 2rem; display: block;}
.contentsection.systems .container > h2 {margin: 0 auto 2rem; text-align: center; max-width: 30rem;}
.contentsection.systems .container > div.flex {display: flex; flex-wrap: wrap; gap: 4rem 2rem; text-align: center; justify-content: center;}
.contentsection.systems .container > div.flex > div {max-width: 20rem; min-width: 20rem; flex: 1;}
.contentsection.systems .container > div.flex > div > * {max-width: 20rem; margin: 0 auto;}
.contentsection.systems .container > div.flex > div h2 {font-weight: 400; font-size: 1.5rem; margin-bottom: 1rem;}
.contentsection.systems .container > div.flex > div p {margin-bottom: 1.4em;}
.contentsection.systems .container > div.flex > div p:last-child {margin-bottom: 0;}
.contentsection.systems .container > div.flex > div img {height: 10rem;}


.contentsection .container {position: relative;}
.contentsection .container {display: flex; flex-direction: row-reverse; align-items: stretch; overflow: hidden;}
.contentsection .container > .text {width: 50%; display: flex; flex-direction: column; justify-content: center; padding: 3rem 0;}
.contentsection .container > .text ul,
.contentsection .container > .text p {margin-bottom: 1rem;}
.contentsection .container > .text ul li {padding-left: 1.25rem; list-style: none;}
.contentsection .container > .text ul li::before {content: "✓"; position: absolute; margin-left: -1.25rem; color: rgb(149, 193, 31);}
.contentsection.noimage .container > .text {margin: 0 auto; max-width: 40rem; width: auto;}
.contentsection.image .container > .image {width: 50%;}
.contentsection.image .container > .image > img {height: 20rem; min-height: 100%; max-height: 100%; display: block; max-width: none; width: auto;}
.contentsection.third .container > .text {width: 33%;}
.contentsection.third .container > img {width: 66%;}
.contentsection .container > div h2 {font-weight: normal; font-size: 2rem; padding: 0; margin: 0 0 1rem;}
.contentsection.white + .contentsection.white .container::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent 0%, rgba(0, 75, 105, 0.15) 25%, rgba(0, 75, 105, 0.15) 75%, transparent 100%);
}
.contentsection:first-child .container > .text p a {
    background-color: #71bf43; 
    color: white;
    padding: 0.5rem 1.25rem 0.7rem;
    font-weight: bold;
    border-radius: 0.3rem;
    display: inline-block;
    margin-top: 0.25rem;
    text-decoration: none;
}
.contentsection .container + .container, .contentsection.white + .contentsection.white .container + .container {flex-direction: row;}
.contentsection .container + .container {min-height: 0;}
.contentsection .container ul.buttons {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
    grid-gap: 1rem;
    width: 100%;
    margin-bottom: 2rem;
}
.contentsection .container ul.buttons li {list-style: none; position: relative; display: flex; align-items: stretch; flex-grow: 1;}
.contentsection .container ul.buttons li a {display: block; background: rgba(0,0,0,0.05); padding: 1rem 1rem 1.3rem; width: 100%; text-align: center; display: flex; align-items: center; justify-content: center; font-weight: 600;}
.contentsection .container ul.buttons li a:hover {background: #00a8e9; color: white;}
.contentsection .container ul.buttons li a span {display: block;}
.contentsection.white + .contentsection.white .container + .container::before {content: none;}


table {border-spacing: 0; border: 1px solid silver; border-bottom: 0; border-right: 0; font-size: 80%; margin: 2rem 0 0.5rem 0;}
table tr th, table tr td {padding: 0.25rem 0.5rem; border-bottom: 1px solid silver; border-right: 1px solid silver;}
table tr th {border-bottom: 1px solid silver; text-align: left; vertical-align: bottom;}
table tr td {vertical-align: top;}
table tr td:first-child {font-weight: bold;}
table tr th.CookieDeclarationTableHeader, table tr td.CookieDeclarationTableCell {border-right: 0;}
table tr:last-child td.CookieDeclarationTableCell {border-bottom: 0;}

#popup {
    background: rgba(0,0,0,0.5); 
    display: flex; 
    position: fixed; 
    left: 0; 
    top: 0;
    width: 100%; 
    height: 100vh; 
    z-index: 99; 
    opacity: 1; 
    transition: all 0.3s ease-in-out;
}
#popup.hide {opacity: 0; pointer-events: none;}
#popup > div {
    margin: auto; 
    background: white; 
    max-width: 40rem; 
    padding: 1.5rem 1.75rem; 
    text-align: center; 
    position: relative; 
    box-shadow: 0px 0px 10px 1px #666;
    border-radius: 0.5rem;
    font-size: 1.05rem;
} 
#popup > div.green {background: #76b948; color: white;}
#popup > div.green a {color: white!important; text-decoration: underline;}
#popup > div.blue {background: #0095eb; color: white;}
#popup > div > h2 {margin: 1rem 0 2rem;}
#popup > div > *:first-child:not(img) {margin-top: 1.5rem;}
#popup > div.green > h2,
#popup > div.blue > h2 {color: #555;}
#popup > div #close {
    position: absolute; 
    right: 0.5rem; 
    top: 0.5rem; 
    overflow: hidden; 
    width: 0; 
    height: 0; 
    padding: 2rem 0 0 2rem; 
    background: rgba(255,255,255,0);
    cursor: pointer;
}
#popup > div #close::after,
#popup > div #close::before {
    content: "";
    position: absolute;
    width: 70%;
    left: 15%;
    top: 50%;
    height: 3px;
    background: #404042;
    transform: translateY(-50%) rotate(45deg);
}
#popup > div #close::before {
    transform: translateY(-50%) rotate(-45deg);
}
#popup > div.green #close::after,
#popup > div.green #close::before,
#popup > div.blue #close::after,
#popup > div.blue #close::before {
    background: white;
}

svg g path[stroke-dasharray] {stroke: #b7b7b7;}
svg g a:hover path {stroke: #0095eb; stroke-dasharray: 1.0,3.0;}

#brandimage .container > div {min-height: 22rem;}

.patched {padding-bottom: 3rem; padding-top: 0.1rem;}
.patched:first-child {text-align: center;}
@media (max-width: 40rem) {
    .patched:first-child {text-align: left;}
}

.patched + .patched {padding-top: 4rem;}
.patched *:first-child {margin-top: 0;}
.patched:nth-child(even) {background: #edf7fa;}

.columns {display: grid; grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr)); grid-gap: 0.6rem 3rem;}
.columns.two {grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr))}
h2  + .columns {margin-top: 2rem;}
h3 + ul {margin-top: 0.5rem;}

.button.inline {width: auto; padding-inline: 2rem; display: inline-block;}