/*@font-face {
    font-family: 'Fira Code';
    font-style: normal;
    font-display: swap;
    font-weight: 300;
    src: url("../fonts/FiraCode-Light.ttf");
}
@font-face {
    font-family: 'Fira Code';
    font-style: normal;
    font-display: swap;
    font-weight: 400;
    src: url("../fonts/FiraCode-Regular.ttf");
}
@font-face {
    font-family: 'Fira Code';
    font-style: normal;
    font-display: swap;
    font-weight: 500;
    src: url("../fonts/FiraCode-Medium.ttf");
}
@font-face {
    font-family: 'Fira Code';
    font-style: normal;
    font-display: swap;
    font-weight: 600;
    src: url("../fonts/FiraCode-SemiBold.ttf");
}
@font-face {
    font-family: 'Fira Code';
    font-style: normal;
    font-display: swap;
    font-weight: 700;
    src: url("../fonts/FiraCode-Bold.ttf");
}*/
:root {
	--font: 18px;
	--fch: 360;
	--fcs: 0%;
	--fcl: 10%;
	--green: 80,162,85;
	--gap: 1.25rem;
	--container: 1500px;
}
html,
body {
	background: linear-gradient(to bottom, blue, lightblue);
	font-size: var(--font);
	font-weight: 300;
	margin: 0;
	padding: 0;
	color: hsl(var(--fch),var(--fcs),var(--fcl));
	overflow-x: hidden;
}
body * {
	color: inherit;
	color: hsl(var(--fch),var(--fcs),var(--fcl));
	text-decoration: inherit;
	font-size: inherit;
	/*font-family: 'Fira Code', monospace;*/
	font-family: Arial, Helvetica, sans-serif;
	font-weight: inherit;
	list-style: inherit;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	line-height: 1.25em;
	outline: 0;
	-webkit-hyphens: auto;
	-webkit-hyphenate-limit-chars: auto 3;
	-webkit-hyphenate-limit-lines: 4;
	-ms-hyphens: auto;
	-ms-hyphenate-limit-chars: auto 3;
	-ms-hyphenate-limit-lines: 4;
	-moz-hyphens: auto;
  	hyphens: auto;
	position: relative;
	z-index: 1;
	transition: inherit;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6,
legend {
	font-size: 2em;
	font-weight: 700;
	margin-bottom: 1rem;
	display: block;
}
strong {
	font-weight: 400;
}
ul {
	margin-left: 1em;
}
li {
	line-height: 1.35em;
}
p {
	margin-bottom: 1em;
	line-height: 1.35em;
}
form p {
	color: hsl(var(--fch),var(--fcs),50%);
	margin-bottom: var(--gap);
	font-size: 0.9em;
}
img {
	max-width: 100%;
	height: auto;
}
sup {
	font-size: .5em;
	font-weight: 700;
}
address {
	font-style: normal;
}

hr {
	height: 0px;
	border: none;
	border-bottom: 1px solid hsl(var(--fch),var(--fcs),var(--fcl));
}

progress {
	display: block;
	width: 100%;
}
strong {
	font-weight: 600;	
}




header, main, footer {
	width: 100%;	
	max-width: calc(var(--container) - calc(var(--gap) * 2));
	margin: auto;
	padding: calc(var(--gap) / 2) var(--gap);
}

header {
	text-align: center;
	height: 192px;
}
header img {
	max-width: 50%;
}

main {
	background: white;
	min-height: calc(90vh - 192px);
}
main a:Hover {
	--fcs: 50%;
	--fcl: 50%;
}

footer {
	background: hsl(var(--fch),var(--fcs),var(--fcl));
	color: white;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	min-height: 10vh;
}
footer * {
	color: inherit;
}
footer a {
	border-left: 1px solid white;
	margin-left: var(--gap);
	padding: 0 var(--gap);
}
@media (max-width: 1200px) {
	footer {
		flex-direction: column-reverse;
	}
	footer a {
		border: none;
		margin-bottom: var(--gap);
		padding: 0;
	}
}



.map {
	width: 100%;
	height: 400px;
	min-height: 100vh;
}
.popup {
	min-width: 500px;
	max-width: 100%;
}


.row {
	display: grid;
	grid-auto-flow: column;
	gap: var(--gap);
}



form {
	margin: var(--gap) 0;
}
label {
	display: none;
}
input, select, textarea {
	width: 100%;
	padding: calc(var(--gap) / 6) calc(var(--gap) / 3);
	margin-top: var(--gap);
	border: 1px solid hsl(var(--fch),var(--fcs),var(--fcl));
}
input[type=checkbox] {
	width: auto;
}
button {
	color: white;
	background: hsl(var(--fch),var(--fcs),var(--fcl));
	border: none;
	padding: calc(var(--gap) / 2) var(--gap);
	text-transform: uppercase;
	transition: background 1s ease;
}
button:Hover {
	--fcl: 50%;
}