:root {
  --primary-color: #21683C;
  --primary-color-light: #57C782;
  --secondary-color: #021132;
  --secondary-color-light: #22355E;
  --grey: #e3e3e3;
}

@font-face {
  font-display: swap; 
  font-family: 'Satoshi';
  font-style: normal;
  font-weight: 300;
  src: url('../webfonts/Satoshi-Light.woff2') format('woff2');
}

@font-face {
  font-display: swap; 
  font-family: 'Satoshi';
  font-style: italic;
  font-weight: 300;
  src: url('../webfonts/Satoshi-LightItalic.woff2') format('woff2');
}

@font-face {
  font-display: swap; 
  font-family: 'Satoshi';
  font-style: normal;
  font-weight: 400;
  src: url('../webfonts/Satoshi-Regular.woff2') format('woff2');
}

@font-face {
  font-display: swap; 
  font-family: 'Satoshi';
  font-style: italic;
  font-weight: 400;
  src: url('../webfonts/Satoshi-Italic.woff2') format('woff2');
}

@font-face {
  font-display: swap; 
  font-family: 'Satoshi';
  font-style: normal;
  font-weight: 500;
  src: url('../webfonts/Satoshi-Medium.woff2') format('woff2');
}

@font-face {
  font-display: swap; 
  font-family: 'Satoshi';
  font-style: italic;
  font-weight: 500;
  src: url('../webfonts/Satoshi-MediumItalic.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Satoshi';
  font-style: normal;
  font-weight: 700;
  src: url('../webfonts/Satoshi-Bold.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Satoshi';
  font-style: italic;
  font-weight: 700;
  src: url('../webfonts/Satoshi-BoldItalic.woff2') format('woff2');
}

*:focus {
	outline: none;
}

* {
	scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  font-weight: 400;
  font-family: 'Satoshi', sans-serif;
  font-size: 18px;
}

/* Header */

header .header_top {
	background-color: var(--secondary-color-light);
	color: #ffffff;
	padding: 10px 0;
	font-weight: 400;
	text-align: right;
}

header .header_top a {
	color: #ffffff;
	transition: all 0.3s;
	text-decoration: none;
	font-size: 16px;
	display: inline-block;
	margin-left: 30px;
	line-height: 1;
}

header .header_top a:hover {
	opacity: 0.8;
}

header .header_bottom {
	background-color: var(--secondary-color);	
	padding: 15px 0;
}

header .header_bottom nav ul {
	margin: 0;
	padding: 0;
	text-align: right;
}

header .header_bottom nav ul li {
	display: inline-block;
	list-style: none;
	margin-left: 30px;
}

header .header_bottom nav ul li a {
	color: #ffffff;
	transition: all 0.3s;
	text-decoration: none;	
	font-size: 20px;
	font-weight: 300;
}

header .header_bottom nav ul li a:hover {
	opacity: 0.8;
}

header .header_bottom nav ul li.current_page_item a {
	font-weight: 600;
}

header .header_bottom nav ul li.button a {
	padding: 15px;
	font-weight: 300;
	background-color: var(--primary-color);
	border-radius: 5px;
	display: block;
}

header .header_bottom nav ul li.button a:hover {
	opacity: 1;
	background-color: var(--secondary-color-light);
}

header .header_bottom nav ul li.button.current_page_item a {
	font-weight: 600;
}

/* Footer */

footer {
	margin-top: 100px;
}

footer .footer_top {
	background-color: var(--secondary-color);
	padding: 50px 0 0 0;
	color: #ffffff;
	font-weight: 300;
}

footer .footer_top .info {
	padding-bottom: 50px;
}

footer .footer_top img {
	width: 330px;
	max-width: 100%;
	margin-bottom: 10px;
}

footer .footer_top .info p {
	text-align: justify;
	line-height: 1.3;
	margin-bottom: 50px;
}

footer .footer_top strong {
	display: block;
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
}

footer .footer_top span {
	display: block;
	margin-bottom: 5px;
}

footer .footer_top span a {
	color: #ffffff;
	text-decoration: none;
	transition: all 0.3s;
}

footer .footer_top span a:hover {
	opacity: 0.8;
}

footer .footer_top .map_container {
	background-color: var(--secondary-color-light);
}

footer .footer_top .map_container iframe {
	border: none;
}

footer .footer_top .map_container .map_info {
	padding: 15px 20px;
}

footer .footer_bottom {
	background-color: var(--grey);
	padding: 10px 0;
	font-size: 16px;
}

footer .footer_bottom ul {
	margin: 0;
	padding: 0;
}

footer .footer_bottom ul li {
	display: inline-block;
	margin-right: 30px;
}

footer .footer_bottom a {
	color: #000000;
	text-decoration: none;
	transition: all 0.3s;
}

footer .footer_bottom a:hover {
	opacity: 0.8;
}

footer .footer_bottom .backlink {
	text-align: right;
}