html {
    font-size:62.5%;
}
@media (max-width:600px) {
    html {
        font-size:50%;
    }
}


html {
    --gap1: 3rem;
}

html {
    -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape while allowing user zoom */
}
body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a img {
	border:none;
}
div.clearfloat {
	overflow:hidden;
	height:0px;
	clear:both;
	visibility:hidden;
}

html, body {
    margin:0;
    padding:0;
}


body {
    font-family: 'Work Sans', sans-serif;
    font-weight:400;

    cursor:url('/images/cursor.svg') 19 20, auto;
}
body.nocursor {
    cursor:auto;
}
a {
    color:inherit;
    text-decoration: none;
}


header {
	padding:7.1rem 0;
    /*box-shadow: 0 0 1.2rem #DDD;*/

	position: relative;
	background-color: white;

    /*
    position: sticky;
    top:0;
	z-index: 20;
    */
}
header .headerinner {
	display:flex;
	justify-content:space-between;
    align-items:center;
}
header .logo {
	width: 50rem;
    max-width: 53vw;
	display: block;
}
header .menubutton {
	display: block;
	width: 3.4rem;
    cursor: pointer;
}
header .dummy {
    /*compensate menubutton*/
	width: 3.4rem;
}

@media (max-width:768px) {
    header {
        padding-top:2.5rem;
        padding-bottom:2.5rem;
    }
    header .headerinner {
        align-items: flex-end;
    }
}

.wconstrain {
    margin-left: auto;
    margin-right: auto;

    max-width: calc(100% - 6rem);
}

@media (max-width:1023px) {
}
@media (min-width:1024px) {
    .wconstrain.w_m {
        width:166rem;
    }
    .wconstrain.w_s {
        width:115rem;
    }
}


.mt1 { margin-top:3rem; }
.mt2 { margin-top:6rem; }
.mt3 { margin-top:9rem; }
.mt4 { margin-top:12rem; }
.mt5 { margin-top:15rem; }
.mt6 { margin-top:18rem; }
.mt7 { margin-top:21rem; }

.mb1 { margin-bottom:3rem; }
.mb2 { margin-bottom:6rem; }
.mb3 { margin-bottom:9rem; }
.mb4 { margin-bottom:12rem; }
.mb5 { margin-bottom:15rem; }
.mb6 { margin-bottom:18rem; }
.mb7 { margin-bottom:21rem; }

.mtg1 { margin-top: var(--gap1); }

.r-tabletl-only {
    display:none;
}
@media (min-width:1024px) and (max-width:1300px) {
    .r-tabletl-only {
        display:initial;
    }
}

#menu {
    position: fixed;
    right:0;
    width:65rem;
    top:0;
    bottom:0;
    z-index:30;

    background-color: #F2F9FC;

    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.3);

    font-size:3.2rem;
    letter-spacing: 0.03em;

    color:#006C95;

    overflow:auto;
    scrollbar-width: thin;
}
#menu::-webkit-scrollbar {
    width:5px;
}
::-webkit-scrollbar-thumb {
    background-color: rgba(155, 155, 155, 0.5);
}

#menu a {
    color:inherit;
    text-decoration: none;
    transition: color 0.2s;
}
#menu .menuitems {
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
#menu .menuitems a {
    display: block;
    margin-left: 10rem;
}
#menu .menuitems a + a {
    margin-top:1em;
}
#menu .menuitems a.disabled {
    display: none;
}
#menu a:hover,
#menu .menuitems a.active {
    font-weight: 700;
}
#menu .address {
    margin-top:3em;
    margin-left: 10rem;
    margin-bottom: 2em;

    font-size: 1.8rem;
    letter-spacing: 0;
    line-height:1.333;
}
#menu .address a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
}
#menu .closebutton {
    width: 3.4rem;
    height: 3.4rem;
    cursor: pointer;

    background-image: url('/images/icons/menuclose.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;

    margin:6rem 13rem 6rem auto;
}

#menu {
    transition:transform 0.4s;
}
#menu.hidden {
    transform: translateX(110%); /*100% + shadow*/
}

@media (max-width:600px) {
    #menu {
        width:100%;
    }
    #menu .closebutton {
        margin-right:4rem;
    }

    #menu .menuitems a,
    #menu .address {
        margin-left: 6rem;
    }
}

main {
    padding:6rem 0 15rem 0;
    /*min-height:50vh;*/
    /*min-height:calc(100vh - 54rem);*/
}
main {
    background: linear-gradient(#E0F2F8, #FFFFFF 100px);
}

footer {
    background-color: #0087BA;   
}

footer {
    font-size: 1.8rem;
    line-height: 1.333;
    letter-spacing: 0;
    color:white;
}
footer a {
    text-decoration: none;
}
footer .col1 a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.1em;
}
footer {
    padding:4.5rem 0 8rem 0;
}
@media (min-width:1024px) {
    footer .cols {
        display:flex;
        justify-content: space-between;
    }
}
@media (max-width:1023px) {
    footer .cols .col + .col {
        margin-top:1.333em;
    }
}
footer .pagelinks a {
    display:block;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
footer .col4 a {
    letter-spacing: 0.01em;
}

footer .logo_condent {
    display:block;
    max-width:100%;
    margin-top:2.3em;
    width:15rem;
}


#totopbutton {
	display:none;
	position:fixed;
	right:5rem;
	bottom:6rem;
	width:2.5rem;
	z-index:999;
	cursor:pointer;
}
#totopbutton img {
	width:100%;
}

.pbinfopos .wconstrain {
    position: relative;
}
.pbinfo {
    position: absolute;
    left:0;
    right:0;
    bottom:2rem;
}
.pbinfopos .maincontent {
    font-size:1.5rem;
    opacity: 0.5;
    text-align: center;
}


body {
    display:flex;
    flex-direction: column;
    min-height:100vh;
}
body > * {
    flex-grow:0;
}
main {
    flex-grow:1;
}


.aszinfobanner {
	background-color:#6CBBDA;
	padding:1em;
	text-align:center;
	color:#fff;
}
.aszinfobanner .maincontent {
	font-size:2rem;
}