:root{
	--accent:91,138,254;
	--round:4px;
	--background:#FCFCFD;
	--card:#FFF;
	--text-color:#303b4b;
	--box-shadow:0 0 0 1px #d8e1ed;
	--abstract-text:#000;
	--btn-text:#FFF;
	--border-color:#e7edf3;
	--input-border-color:#d0dbe5;
	--input-background:#FBFCFD;
	--drop-shadow:rgba(0,0,0,.05);
}
body.dark{
	--background:#121416;
	--card:#161a1e;
	--text-color:#879ebd;
	--abstract-text:#FFF;
	--border-color:#22222e;
	--input-border-color:#383851;
	--btn-text:#000;
	--box-shadow:0 0 0 1px #252538;
	--input-background:#1e1e2f;
	--drop-shadow:rgba(0,0,0,.2);
}
body{
	background-color:var(--background);
}
body.dark .selector.active{
	background-color:#1F2948;
}
::selection{
	background:rgba(var(--accent),.5);
}html {
  scroll-behavior: smooth;
}
body{
	font-family: 'Muli', sans-serif;
	-webkit-tap-highlight-color: transparent;
	font-size:1rem;
	line-height:1.5;
	background-color:rgb(--background);
	color:var(--text-color);
	inset: unset;
    left: 0;
    right: 0;
	padding-bottom:60px;
    min-height: 100%;
	box-sizing:border-box;
}
.logo{
	max-width:300px;
	margin: 45px auto;
}
.container{
	position:relative;
	max-width:1200px;
}

.section{
	display:flex;
}
.section.top{
	overflow:hidden;
	position:relative;
	max-height:600px;
}
.section.top>.filter{
	position:absolute;
	inset:0;
	background-size: cover;
    filter: blur(12px);
    margin: -12px;
}

.section.top .banner{
	max-width: 1200px;
    width: 100%;
    margin: auto;
    z-index: 1;
}

.section.footer{
    border-top: solid 1px var(--border-color);
    padding: 16px;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}
.section .block{
	flex:1 1 400px;
}
.section .sidebar{
	flex:0 1 350px;
}
.section.border{
	border:solid 1px var(--border-color);
	border-width:0 1px 0 1px;
	display:block;
}

.section.sticky{
	position:sticky;
	top:0;
	z-index:10;
	background-color:var(--background);
	border-bottom:solid 1px var(--border-color);
}

.text-right{
	text-align:right;
}

.section h1{
	color:rgb(var(--accent));
	margin:0;
	font-size:clamp(24pt,30pt,4vw)
}

.card{
	box-shadow: 0 17px 8px -15px var(--drop-shadow);
	background-color: var(--card);
	border: solid 1px var(--border-color);
	border-radius:12px;
}

.applet{
    display: inline-flex;
    padding: 5px 10px;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
}

.applet i{
	color:rgb(var(--accent));
}

.section a.link{
	text-decoration:none;
	color:#5B8AFE;
	font-weight:bold;
}
.btn{
	padding:7px 12px;
	white-space: nowrap;
	position: relative;
	text-decoration: none;
	cursor:pointer;
	border-radius:var(--round);
	border:solid 2px transparent;
	
	transition:0.2s;
	display:inline-flex;
	align-items:center;
	user-select:none;
	justify-content: center;
	color:rgb(var(--accent));
}
.section .btn.solid{
	color:#FFF;
	background-color:rgba(var(--accent));
}

.btn.disabled{
	pointer-events:none;
	opacity:0.7;
}

a.social{
    width: 40px;
    height: 40px;
    display: inline-block;
    background-color: rgb(var(--accent));
    vertical-align: top;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 99px;
    margin: 3px;
}

a.social>img{
	width:100%;
}

.mb{
	margin-bottom:15px;
}
.map{
	padding:10px;
}
.map>iframe{
	border-radius:8px;
	margin-bottom:-8px;
}
#content{
	margin:15px 0;
}
#content h1{
	font-size:30pt;
}
#content h1,#content h2,#content p{
	margin:0;
	padding:0;
}
#content a{
	color:rgb(var(--accent));
}

.section .textzone{
	position:relative;
	padding:20px;
}
.section .content{
	padding:0 10px;
}

@media screen and (min-width:750px){
	
	.section .textzone{
		min-height:270px;
	}
	
	.section .content{
		width:calc(100% - 420px);
	}
	.section .sidebar{
		width:350px;
		position:absolute;
		right:20px;
		top:20px;
	}
}