﻿@import 'https://fonts.googleapis.com/css?family=Raleway:400,600,700';
@import 'https://fonts.googleapis.com/css?family=Open+Sans:400,600,700';
@import url('article.css');


[v-cloak] {
	display: none;
}

:root {
	--color-orange: #F05126;
	--color-dark-blue: #4e648b;
	--color-dark-blue-a: #4e648b20;
	--logo-height: 60px;
	--logo-line-height: 25px;
	--logo-point-edge-length: 1em;
	--color-gray-bg: #7d7e82;
	--color-black-1: #333333;
	--color-gray-bdr: rgb(128 128 128 / 25%);
}

* {
	margin: 0;
	padding: 0;
	background-repeat: no-repeat;
	border-collapse: collapse;
}

body {
	font-family: 'Raleway', 'Open Sans', sans-serif;
	background-color: #aaa;
	font-size: 12px;
}

div.body {
	background-color: white;
	margin-left: auto;
	margin-right: auto;
	max-width: 1200px;
}

section {
	position: relative;
}

p {
	margin: 1em 0;
}

a {
	text-decoration: none;
	display: inline-block;
}

	a.link {
		text-decoration: underline;
		color: var(--color-orange);
	}

	a.button, input[type=button], input[type=submit], button {
		--color-btn-orange: #fc6a47;
		--color-btn-dark: #38353c;
		--color-btn-blue: #397ce8;
		padding: .25em 1.5em;
		font-weight: bold;
		transition-duration: .5s;
		line-height: 1.25em;
		font-size: 1em;
		font-family: 'Raleway', sans-serif;
		border: none;
		margin: auto;
		text-transform: uppercase;
		cursor: pointer;
	}

		a.button:not(.disabled):hover, input[type=button]:hover, input[type=submit]:hover, button:hover {
			transform: scale(1.1);
			text-decoration: underline;
		}

		a.button.disabled, button.disabled {
			cursor: not-allowed;
			opacity: 0.5;
		}

		a.orange.button, input[type=button].orange, input[type=submit].orange, button.orange {
			color: white;
			background-color: var(--color-btn-orange);
		}

			a.orange.open.button, input[type=button].orange.open, input[type=submit].orange.open, button.orange.open {
				color: var(--color-btn-orange);
				background-color: white;
				background: none;
				border: solid 1px #fc6a47;
			}

		a.dark.button, input[type=button].dark, input[type=submit].dark, button.dark {
			color: white;
			background-color: var(--color-btn-dark);
		}

			a.dark.open.button, input[type=button].dark.open, input[type=submit].dark.open, button.dark.open {
				color: var(--color-btn-dark);
				background-color: white;
				border: solid 1px var(--color-btn-dark);
			}

		a.blue.button, input[type=button].blue, input[type=submit].blue, button.blue {
			color: white;
			background-color: var(--color-btn-blue);
			border-radius: 1em;
		}

			a.blue.button:hover, input[type=button].blue:hover, input[type=submit].blue:hover, button.blue:hover {
				color: var(--color-btn-dark);
				transform: scale(1);
				text-decoration: none;
			}

			a.blue.open.button, input[type=button].blue.open, input[type=submit].blue.open, button.blue.open {
				color: var(--color-btn-blue);
				background-color: white;
				background: none;
				border: solid 1px var(--color-btn-blue);
			}

i.button, svg.button {
	cursor: pointer;
}

/* major section */
.body > header {
	position: relative;
	color: rgb(121,120,127);
	font-size: 22px;
	line-height: 30px;
	font-family: 'Open Sans', sans-serif;
	user-select: none;
}

	.body > header a {
		position: absolute;
		top: 20px;
		left: 70px;
		display: inline-block;
		width: 175px;
		transform: scale(1.33);
		text-align: center;
	}

		.body > header a i.logo {
		}

		.body > header .fa-bars, .body > header a i.logo-point, .body > header a i.logo-line {
			display: none;
		}

	.body > header > div {
		text-align: right;
		padding: 0 1em;
		height: 38px;
		line-height: 38px;
	}

		.body > header > div.c {
			color: rgb(109,110,112);
			text-align: center;
			letter-spacing: -1px;
			font-size: 1.15em;
		}

	.body > header .phone {
		font-size: .8em;
	}

	.body > header .date-today {
		font-size: .75em;
		font-weight: 700;
	}

.body > main {
	display: flex;
	justify-content: space-between;
	border-top: 1px solid #d9dde4;
}


/* major section */
.body > footer {
	background-color: #38353c;
	color: #ccd9e2;
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
}

	.body > footer > div {
		justify-content: space-between;
		gap: 35px;
		display: flex;
		padding: 2em 2em 0 2em;
		line-height: 24px;
	}

		.body > footer > div strong {
			color: #ef5026;
			letter-spacing: 1px;
		}

	.body > footer > *:last-child {
		padding: 1em;
		margin: 0;
	}

	.body > footer p {
		margin: 1em 0 0 0;
	}

	.body > footer a {
		color: #ccd9e2;
		display: block;
	}

		.body > footer a.social {
			display: inline-block;
			margin-right: .5em;
		}

		.body > footer a:hover {
			color: var(--color-orange);
		}

	.body > footer i.logo-point {
		--logo-point-edge-length: 45px;
	}

aside {
	min-width: 225px;
	flex-basis: 26%;
}

	aside .container {
		padding: .1em 0 1em 0;
	}

	aside ul.topics {
		margin: 15px 0;
	}

		aside ul.topics li {
			background-color: #f9fafc;
			list-style-type: none;
			border-bottom: solid 1px #CCC;
			overflow: hidden;
		}

			aside ul.topics li:first-child {
				border-top: solid 1px #CCC;
			}

			aside ul.topics li.active, aside ul.topics li:hover {
				background-color: #7d7e82;
			}

			aside ul.topics li a {
				padding: .25em 0 .25em 2em;
				color: #38353c;
				font-size: 1.25em;
				font-weight: 600;
				width: 100%;
			}

			aside ul.topics li.active a, aside ul.topics li:hover a {
				color: white;
			}

	aside .supplements {
	}

		aside .supplements ul {
			list-style-type: none;
		}

			aside .supplements ul li:not(:last-child) {
				margin-bottom: 3em;
			}

			aside .supplements ul li img {
				width: 100%;
			}

			aside .supplements ul li a:not(.button) {
				width: 100%;
			}

			aside .supplements ul li a.name {
				display: block;
				margin: .25em 0;
				font-size: 17px;
			}

	aside .button-container {
		text-align: center;
		margin-top: .5em;
	}

	aside .feeds {
	}

		aside .feeds ul {
			list-style-type: none;
		}

			aside .feeds ul li:not(:last-child) {
				margin-bottom: 3em;
			}

			aside .feeds ul li img {
				width: 100%;
			}

			aside .feeds ul li a.name {
				display: block;
				margin: .25em 0;
				font-size: 17px;
			}

.bside {
	flex-basis: 73%;
	padding-bottom: 3em;
	border-left: solid 1px #aaaaaa;
}

/* major section */
i {
	display: inline-block;
	text-decoration: none;
	background-size: cover;
}

	i.logo {
		height: var(--logo-height);
		width: calc(var(--logo-height) * 2.077);
		background-image: url('images/logo.svg');
	}

	i.logo-line {
		height: var(--logo-line-height);
		width: calc(var(--logo-line-height) * 6.8);
		background-image: url('images/logo-line.svg');
		margin-top: calc(var(--logo-line-height) * .4);
	}

	i.logo-point {
		display: inline-block;
		height: var(--logo-point-edge-length);
		background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 26 26" xmlns="http://www.w3.org/2000/svg"><g><circle style="fill:%23656263" cx="13" cy="13" r="13"/><circle style="fill:%23ffffff" cx="13" cy="13" r="10"/><circle style="fill:%23f03e22" cx="13" cy="13" r="4"/></g></svg>');
		width: var(--logo-point-edge-length);
	}

		i.logo-point.dark {
			/* use on dark background */
			background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 26 26" xmlns="http://www.w3.org/2000/svg"><g><circle style="fill:%23ffffff" cx="13" cy="13" r="13"/><circle style="fill:%2338353c" cx="13" cy="13" r="10"/><circle style="fill:%23f03e22" cx="13" cy="13" r="4"/></g></svg>');
		}

	i.bg.circle.orange {
		height: 72px;
		width: 72px;
		background: radial-gradient(ellipse, #fd6a48 70%, transparent 70%);
	}

ul.links {
	margin: 1.5em 1.5em 0 3em;
	font-family: 'Open Sans', sans-serif;
}

	ul.links li {
		margin: .75em 0 1em 0;
	}

		ul.links li a {
			color: black;
			font-weight: bold;
		}

			ul.links li a:hover:not(.button) {
				color: var(--color-orange);
			}

			ul.links li a.button {
				font-size: 10.5px;
			}

			ul.links li a span {
			}

/* major section */
.hidden {
	display: none !important;
}

.non-interactive {
	user-select: none;
	pointer-events: none;
}

.Sp-Orange {
	color: var(--color-orange);
}

.Sp-Gray {
	color: #7d7e82;
}

.bg-gradient-dark-right {
	background-color: #d9dde4;
}

.bg-gradient-dark-left {
	background-color: #d9dde4;
}

.bg-gradient-dark-top {
	background-color: #d9dde4;
}

.bg-gradient-dark-bottom {
	background-color: #d9dde4;
}

.bg-gradient-orange-left {
	background-color: var(--color-orange);
	color: White;
	margin: 0 2em !important;
	text-align: center;
	padding: 0 !important;
}


.header-banner {
	font-family: 'Open Sans', sans-serif;
	color: rgb(72,72,76);
	font-size: 15px;
}

	.header-banner a {
		color: rgb(72,72,76);
	}

	.header-banner svg-icon {
		padding: 0 .5em;
		flex-shrink: 0;
		height: 2.75em;
		width: 2.75em;
	}

	.header-banner > h1 {
		padding-left: 1em;
		margin: 1.5em 0;
		font-size: 1.8em;
		line-height: 1.75em;
	}

	.header-banner > h2 {
		padding-left: 1em;
		font-size: 1.66em;
		line-height: 1.75em;
	}

	.header-banner > h3 {
		padding-left: 1em;
		margin: 1em 0;
		font-size: 1.52em;
		line-height: 1.75em;
	}

	.header-banner > h4 {
		padding-left: 1em;
		margin: 1em 0;
		font-size: 1.38em;
		line-height: 1.75em;
	}

	.header-banner > h5 {
		padding-left: 1em;
		margin: 1em 0;
		font-size: 1.24em;
		line-height: 1.75em;
	}

	.header-banner > h6 {
		padding-left: 1em;
		margin: 1em 0;
		font-size: 1.1em;
		line-height: 1.75em;
	}

	.header-banner.icon {
		position: relative;
	}

		.header-banner.icon i.logo-point {
			height: 67.5px;
			width: 67.5px;
			margin: 0 .5em;
		}

		.header-banner.icon > * {
			padding: 0;
			display: flex;
			align-items: center;
			height: 1.5em;
			transition: .5s ease;
		}


		.header-banner.icon svg.fa-map-marker-alt,
		.header-banner.icon svg.fa-globe,
		.header-banner.icon svg.fa-user,
		.header-banner.icon svg.fa-question,
		.header-banner.icon svg.fa-exclamation-triangle,
		.header-banner.icon svg.fa-download,
		.header-banner.icon svg.fa-envelope {
			color: white;
		}

.gap {
	height: 1em;
	display: none;
}

@media screen and (min-width: 801px) {
	.no-big {
		display: none;
	}

	header {
		min-height: 100px;
	}

	nav {
		display: none;
	}
}

@media screen and (max-width: 800px) {
	.body > header {
		font-size: 16px;
		/*background-color: #d9dde4;*/
		text-align: center;
	}

		.body > header .fa-bars {
			position: absolute;
			display: inline-block;
			font-size: calc(var(--logo-line-height) * .8);
			top: calc(var(--logo-line-height) / 2);
			right: calc(var(--logo-line-height) / 2);
			height: 1em;
		}

		.body > header a {
			position: initial;
			transform: none;
			background: none;
			width: auto;
		}

			.body > header a i.logo {
				display: none;
			}

			.body > header a i.logo-point {
				display: inline-block;
				font-size: var( --logo-line-height);
			}

			.body > header a i.logo-line {
				display: inline-block;
			}

		.body > header > div {
			display: none;
		}

	aside {
		display: none;
	}

	.bside {
		flex-basis: 100%;
	}

	nav {
		margin: auto;
		display: block;
		text-align: left;
		transition: .5s ease;
		width: 90%;
		position: absolute;
		z-index: 999;
		right: 0px;
		font-size: 18.5px;
		background-color: rgba(125, 126, 130, .97);
		opacity: 0;
		height: 0;
		user-select: none;
		pointer-events: none;
	}

		nav.open-drawer {
			border: 1px solid rgb(125 126 130);
			opacity: 1;
			height: inherit;
			pointer-events: auto;
		}

		nav .sub-header {
			font-weight: 700;
			padding: 1.5vw 2vw;
			color: var(--color-orange);
			background-color: #d9dde4;
		}

		nav span {
		}

			nav span:last-child {
			}

			nav span a {
				display: block;
				border: 0;
				color: white;
				padding: 2.5vw 5vw;
			}

	.bg-gradient-orange-left {
		margin: 0 1em !important;
	}

	.header-banner {
		font-size: 13.5px;
	}

	footer > div {
		flex-wrap: wrap;
	}

		footer > div > div {
			flex-basis: 50%;
		}

	.no-small {
		display: none;
	}
}

@media screen and (max-width: 500px) {
	.body > header {
	}

		.body > header a {
			position: initial;
			transform: none;
			background: none;
			width: auto;
		}

		.body > header > div {
			display: none;
		}

	.header-banner {
		font-size: 12px;
	}

	.mb-center {
		text-align: center;
	}

	footer > div > div {
		flex-basis: 100%;
	}
}
