/*@import url('https://fonts.googleapis.com/css2?family=Maven+Pro&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Maven+Pro&family=Catamaran&display=swap');
@import url('pages.css');
@import url('responsive.css');

:root
{
    --COLOR-FADED: #5c5c5c;
}

a, a:visited, a:active, a:hover
{
    color: #386287;
    text-decoration: none;
}

h2
{
    font-size: 22px;
    font-weight: 600;
}

h3
{
    font-size: 20px;
    font-weight: 600;
    color: #55402a;
    text-transform: uppercase;
}

body
{
    margin: 0;
    padding: 0;
    font-family: 'Maven Pro';
    font-size: 16px;
    background-color: #f0e8e0;
}

body:before 
{
    content: " ";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background-image: linear-gradient(180deg, rgba(120,119,100,0.3), transparent);
    pointer-events: none;
    z-index: 0;
}

headboard
{
	display: block;
    margin: 8px auto 0px auto;
    height: 31px;
    width: 100%;
    max-width: 1280px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

headboard > .Bulletin
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 25px;
	white-space: nowrap;
	text-align: center;
}

headboard hr
{
	clear: both;
	margin: 30px 0 10px 0;
}

headboard > .Bulletin .BulletinItem
{
	display: inline-block;
	line-height: 20px;
	vertical-align: middle;
}

headboard > .Bulletin .BulletinItem .ButtonPill
{
	content: " ";
	width: 40px;
	border-radius: 20px;
	height: 20px;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	margin: 0 2px 0 20px;
}

headboard > .Bulletin .BulletinItem a
{
	opacity: 0.5;
	transition: opacity 0.2s;
}

headboard > .Bulletin .BulletinItem a:hover
{
	opacity: 1;
}

headboard > .Bulletin .BulletinItem .ButtonPill.Green
{
	background-color: #59805E;
}

headboard > .Bulletin .BulletinItem .ButtonPill.Pink
{
	background-color: #FF82A9;
}

headboard > .Bulletin .BulletinItem .ButtonPill.Blue
{
	background-color: #058ED9;
}

headboard > .Bulletin .BulletinItem .ButtonPill:before,
headboard > .Bulletin .BulletinItem .ButtonPill:after
{
	content: " ";
	background-image: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.2) 26%, transparent 100%);
	position: absolute;
	top: 2px;
	left: 2px;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	border-radius: 18px;
}
headboard > .Bulletin .BulletinItem .ButtonPill:after
{
	background-image: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 26%, transparent 100%);
	top: 8px;
	left: 8px;
	width: calc(100% - 16px);
	height: calc(100% - 16px);
	border-radius: 10px;
}


heading
{
    display: block;
    margin: auto;
    min-height: 200px;
    max-width: 1280px;
    position: relative;
    z-index: 1;
}

heading .Logo
{
	height: 200px;
	display: flex;
	align-items: center;
}

heading .Menu
{
	position: absolute;
	top: 0;
	right: 0;
	height: 200px;
	display: flex;
	align-items: center;
}

heading .Menu > ul
{
	display: flex;
	width: 100%;
	align-items: center;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

heading .Menu > ul > li
{
	margin: 0;
	padding: 0;
}

heading .Menu > ul > li > a
{
	display: block;
	background-color: #e4d6c8;
	border-radius: 20px;
	padding: 10px 10px;
	cursor: pointer;
	color: #2b2b2b;
	font-weight: bold;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color,color 0.15s,0.15s;;
}

heading .Menu > ul > li > a:hover
{
	background-color: #0c92dc;
	color: white;
}

heading .Menu > ul > li.Active > a,
heading .Menu > ul > li.Active > a:hover
{
    background-color: #386287;
    color: white;
}

content
{
	z-index: 1;
}

content.Menu 
{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
    align-content: stretch;
}

content.Menu h1
{
	text-align: left;
}

content.Menu a
{
	color: white;
}

content.Menu > #Content a
{
	color: #386287;
}

content.Menu h2
{
	margin: 0 0 5px 0;
	padding: 0 0 10px 0;
	border-bottom: 1px solid rgba(200,200,200,0.3);
}

content.Menu ul, content.Menu li
{
	margin: 0;
	list-style: none;
	padding: 0;
}

content.Menu li > a
{
	padding: 10px 15px;
	margin: 0 0 5px 0;
	display: block;
	border-radius: 10px;
	background-color: rgba(0,0,0,0);
	transition: background-color 0.12s;
	position: relative;
}

content.Menu li > a.On
{
	font-weight: bold;
}

content.Menu li > a:before,
content.Menu li > a.On:before
{
	content: " ";
	display: block;
	width: 6px;
	height: 6px;
	position: absolute;
	left: 0px;
	top: 16px;
	border-radius: 100%;
	background-color: #0c92dc;
	transition: left 0.2s;
}

content.Menu li > a:hover:before,
content.Menu li > a.On:before
{
	left: calc(100% - 20px);
}

content.Menu li > a:hover
{
	background-color: rgba(0,0,0,0.1);
}

content.Menu li > a.On
{
	background-color: rgba(0,0,0,0.2);
}

.Menu #Menu > .MenuItems
{
    width: 300px;
    background-color: #284258;
    color: white;
    padding: 20px;
    border-radius: 10px;
}

.Menu #Menu > .MenuItems > ul > li > a
{
	font-weight: bold;
	border-bottom: 1px solid #ffffff22;
	border-radius: 10px 10px 0 0;
	transition: border-radius 0.15s;
}

content li
{
    margin: 0 0 10px 0;
}

content li:last-child
{
    margin: 0;
}

content ul
{
    margin: 0 0 30px 0;
}

#Menu .MenuItems li > ul
{
	margin: 0 0 0 20px;
}

content.Menu li > ul > li > a:before, 
content.Menu li > ul > li > a.On:before
{
	background-color: #0c92dc55;
}

content, heading1
{
    display: block;
    margin: auto;
    max-width: 1280px;
}

.home content
{
    min-height: calc(100vh - 400px);
}

heading1 + content
{
    min-height: 0;
}

heading1
{
    min-height: 0;
}

content p, content blockquote > p:last-child,
heading1 p, heading1 blockquote > p:last-child
{
    font-family: 'Catamaran';
    margin: 0 0 30px 0;
}

h2
{
    margin: 0 0 30px 0;
}

h1
{
    margin: 30px 0 30px 0;
    text-align: center;
}
h1:after
{
    margin: 10px 0 0 0;
}

heading1 p:last-child
{
    margin: 0;
}

footer
{
    display: block;
    margin: 40px auto 40px auto;
    min-height: 200px;
    max-width: 1280px;
    position: relative;
    z-index: 1;
}

hr
{
	margin: 40px 0 40px 0;
}

footer:before, hr, h1:after
{
    content: " ";
    border: 0;
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c0c0c0, transparent);
}

footer .Social
{
    text-align: center;
    padding: 20px;
}

footer .Social a
{
    border-radius: 15px;
    background-color: #e4d6c8;
    padding: 5px 15px;
    min-width: 28px;
    display: inline-block;
    text-align: center;
    transition: background-color,color 0.15s,0.15s;;
}

footer .Social a:hover
{
    background-color: #0c92dc;
    color: white;
}

footer .Social li:nth-child(odd) a:hover
{
    background-color: #FF82A9;
}
    

footer .Social ul, footer .Social li
{
    margin: 0; padding: 0;
    list-style: none;
}

footer .Social li
{
    display: inline-block;
    margin: 0 10px 10px 0;
}

footer .Credits li:last-child
{
    margin: 0;
}

footer .FSL
{
    text-align: center;
    padding: 0 20px 20px 20px;
    color: var(--COLOR-FADED);
}

footer .Credits
{
    font-size: 10px;
    text-align: center;
    color: #a0a0a0;
}

footer .Credits ul, footer .Credits li
{
    margin: 0; padding: 0;
}

footer .Credits li
{
    display: inline-block;
    margin: 0 10px 0 0;
}

footer .Credits li:last-child
{
    margin: 0;
}
