@media screen {

:root {
    --padding-xl: 50px;
    --radius-xl: 20px;
	--blue-dark: #303e86;
	--grey-dark: #333333;
	--grey-bright: #f4f4f4;
}

html {
	scroll-behavior:smooth;
	box-sizing:border-box;
}

*, *:before, *:after {
  box-sizing:inherit;
}

body {
	font-family: "Open Sans", sansserif;
	font-size: .9rem;
	color: var(--grey-dark);
	background: var(--grey-bright);
	overflow-wrap:break-word;
}

h1 {
	font-size:1.8rem;
	font-weight:normal;
}

h2 {
	font-size:1.4rem;
	color: var(--blue-dark);
	font-weight:bold;
}

h3 {
	font-size:1.2rem;
	font-weight:bold;
}

h4 {
	font-weight:bold;
}

header {
	width:100%;
	position:fixed;
    top:0;
	left:50%;
    transform:translate(-50%,0);
    z-index:1000;
    transition:transform 0.3s ease-in-out;
	backdrop-filter:blur(5px);
}

.scroll-down header:not(:has(.is-open)) {
	transform:translate(-50%,-100%);
}

.scroll-up header {
    transform:translate(-50%,0);
}

header .inside {
	max-width:1400px;
    margin:0 auto;
    display:flex;
	gap:10px;
    justify-content:space-between;
	padding:20px var(--padding-xl);
}

#header-icons {
    display:inline-flex;
	align-items:center;
	font-size:1.125rem;
	z-index:1;
	gap:5px;
}

#header-icons a {
	display:block;
	width:45px;
    height:45px;
	white-space:nowrap;
    background-size:30px 30px;
    background-repeat:no-repeat;
    background-color:var(--blue-dark);
	background-position:center center, center 45px;
	border:0;
	border-radius:50%;
	color:#000000;
	text-decoration:none;
	align-content:center;
	padding:0 10px;
}

#header-icons .map {
    background-image:url(../img/distance_24dp_FFFFFF_FILL0_wght200_GRAD0_opsz24.svg);
}

#header-icons .phone {
    background-image:url(../img/phone_in_talk_24dp_FFFFFF_FILL0_wght200_GRAD0_opsz24.svg);
}

#header-icons a:hover {
	cursor:pointer;
}

main {
	margin-top:100px;
}

main a {
	color:var(--blue-dark);
}

#logo {
	position:absolute;
    top:100px;
	left:10px;
    transform:translate(0%, -50%);
    z-index:1;
}

#logo img {
	height:120px;
	width:auto;
	background:#ffffffaa;
	backdrop-filter:blur(5px);
	padding:20px;
	border-radius:var(--radius-xl);
	transition:height .3s ease-out;
}

.mod_article {
	position:relative;
	margin:25px auto;
    max-width:1400px;
    padding:var(--padding-xl);
	background:#fff;
	border-radius:var(--radius-xl);
}

.banner {
	position:relative;
	margin:-65px -90px 50px -90px;
	flex:auto;
}

.banner h1 {
	position: absolute;
    bottom: 20px;
    left: 90px;
    z-index: 2;
    margin: 0;
	color: #fff;
}

.banner.figcaption h1 {
    bottom: 30px;
}

.banner figcaption {
	position: absolute;
    bottom: 20px;
    left: 50px;
    z-index: 1;
	color: #fff;
}

.banner figure {
	line-height:0;
}

.banner img {
	border-radius: var(--radius-xl) var(--radius-xl) 0 0;
	width: 100%;
	max-height: 450px;
	height:25vw;
	object-fit: cover;
}

.gradient figure {
	position:relative;
}

.gradient figure:after {
	content:'';
	position:absolute;
	left:0; top:0;
	width:100%; height:100%;
	display:inline-block;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 30%,rgba(0,0,0,0.65) 100%);
}

.banner.gradient figure:after {
	border-radius:10px 10px 0 0;
}

.map>div {
    width:100%;
    height:350px;
}

.grid-spanall {
	grid-column: 1/-1;
}


.grid-c2 {
	display: grid;
    grid-template-columns: 1fr 1fr;
	grid-gap: 25px;
	margin-bottom: 25px;
}

.grid-c3 {
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 25px;
	margin-bottom: 25px;
}

.grid-c4 {
	display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 25px;
	margin-bottom: 25px;
}

.card {
    overflow:hidden;
	padding:15px;
    background-color:#fff;
    border-radius:10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.card h2 {
	margin-top:0;
}

.card h2 img {
    background: #e2eaed;
    border-radius: 50%;
	padding: 5px;
	margin-right:5px;
}

.card p:has(> em) {
	display: inline;
}

.card p:has(> em) + h2 {
	display:inline;
}

.card.media--above figure {
	margin:-15px;
}

.card picture {
	display:block;
	height: 180px;
}

.content-text.card figure img {
	height: 100%;
	object-fit:cover;
	border-radius:0;
}

.button {
	background:var(--blue-dark);
	padding:10px;
	border-radius:10px;
}

a.button {
	color:#fff;
	text-decoration:none;
	display:inline-block;
}

.button:hover {
	box-shadow: 1px 1px 6px 0px rgba(0,0,0,0.7);
}

details summary {
	font-size:1.1rem;
	font-weight:bold;
}

details summary:hover {
	cursor:pointer;
}

details p {
	padding:0 20px;
}

}

@media screen and (max-width: 1600px) {

}

@media screen and (max-width: 1300px) {


}

@media screen and (max-width: 1000px) {

:root {
    --padding-xl: 20px;
}

main {
	margin-top: 120px;
}

#logo img {
	height:100px;
}

.banner {
    margin: -65px -60px 50px -60px;
}

h1 {
	font-size:1.5rem;
}

h2 {
	font-size:1.2rem;
}

.grid-c2 {
    grid-template-columns: 1fr;
}

.banner img {
	height:unset;
	min-height:250px;
	max-height:250px;
	
}

}

@media screen and (max-width: 750px) {




}

@media screen and (max-width: 580px) {

.grid-c3 {
    grid-template-columns: 1fr;
}

.grid-c4 {
    grid-template-columns: 1fr;
}

}