@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 200 700;
    font-display: swap;
    src: url('fonts/oswald-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 200 700;
    font-display: swap;
    src: url('fonts/oswald-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Roboto Flex';
    font-style: normal;
    font-weight: 100 1000;
    font-stretch: 100%;
    font-display: swap;
    src: url('fonts/roboto-flex-latin-ext.woff2') format('woff2');
}
@font-face {
    font-family: 'Roboto Flex';
    font-style: normal;
    font-weight: 100 1000;
    font-stretch: 100%;
    font-display: swap;
    src: url('fonts/roboto-flex-latin.woff2') format('woff2');
}
* {
	margin: 0;
	box-sizing: border-box
}
html {
	scroll-behavior: smooth;
	height: 100%;
}
:root {
    --primary: #00a04b;
    --secondary: #52caef;
	--light: #f5f6f9;
    --link: #00a04b;
    --link-hover: #009546;
    --border-color: #e2e5ef
}
body {
	font-family: 'Barlow', sans-serif;
	font-size: 18px;
	color: black;
	background: url('pics/bg-body.jpg') center center no-repeat fixed;
	background-size: cover;
}
a {
	color: var(--link);
	font-weight: 500;
	text-decoration: none;
}
a:hover {
	color: var(--link-hover);
}
img { 
	max-width: 100%;
	height: auto
}
.wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 30px;
	padding-right: 30px;
}

header {
	padding: 30px 0;
	display: grid;
	grid-template-columns: 300px 1fr;
	align-items: center;
}
header img {
	display: block;
	max-width: 300px;
}
header div {
	text-align: right;
	font-style: italic;
	color: rgba(0,0,0,0.4);
}
@media(max-width:650px) {
	header {
		display: block;
	}
	header div {
		display: none;
	}
}


.header-nav {
    background: var(--primary);
}
.header-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
.header-nav .menu-item-has-children {
    position: relative;
}
.header-nav .sub-menu {
    flex-direction: column;
    position: absolute;
    display: none;
    min-width: 250px;
    font-size: 14px;
}
.header-nav .menu-item-has-children:hover>.sub-menu {
    display: flex;
}
.header-nav .menu-item-has-children:hover>a {
    background: var(--color-2);
}
.header-nav .menu-item-has-children>a {
    padding-right: 30px;
}
.header-nav .menu-item-has-children>a:after {
    content: '';
    border: solid rgba(255,255,255,0.5);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    position: absolute;
    top: 16px;
    right: 10px;
}
.header-nav .sub-menu .menu-item-has-children>a:after {
    content: '';
    transform: rotate(316deg);
    top: 10px;
}

.header-nav a {
    color: white;
    display: block;
    padding: 10px 12px;
    line-height: 1.5;
}
.header-nav a:hover {
    background: var(--link-hover);
}
.header-nav button {
    display: none;
}
.header-nav .sub-menu .sub-menu {
    left: 100%;
    top: 0;
}
.header-nav .sub-menu a {
    background: var(--color-2);
    padding: 5px 15px;
}
.header-nav .sub-menu a:hover {
    background: var(--color-1);
}

@media(max-width:800px) {
    .header-nav {
        justify-content: end;
        display: flex;
        padding: 5px;
        border-radius: 5px;
    }
    .header-nav ul {
        display: none;
    }
    .header-nav button {
        display: inline-flex;
        flex-direction: column;
        width: 60px;
        height: 45px;
        justify-content: space-between;
        border: 0;
        background: var(--color-1);
        padding: 10px;
        border-radius: 3px;
    }
    .header-nav button span {
        display: block;
        background: white;
        width: 100%;
        height: 3px;
        border-radius: 1px;
    }
}

.mobile-menu {
	height: 100%;
	width: 250px;
	position: fixed;
	z-index: 3;
	top: 0;
	left: -250px;
	background-color: rgba(0,0,0,0.9);
	overflow-x: hidden;
	transition: .5s;
    font-size: smaller;
}
.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-menu li {
	border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-menu a {
	color: white;
    display: block;
    padding: 7px 10px;
}
.mobile-menu .sub-menu a {
    padding-left: 30px;
}
.mobile-menu .sub-menu .sub-menu a {
    padding-left: 60px;
    line-height: 1.5;
}
.mobile-menu .current_page_item>a {
    background: var(--color-1);
    color: white;
}

main {
	padding: 30px 0;
}
main h1 {
    margin-bottom: 30px;
    font-family: "Oswald", sans-serif;
    color: var(--primary);
}
main h2 {
    margin: 30px 0 15px 0;
    font-family: "Oswald", sans-serif;
	color: var(--primary);
}
main h3 {
    margin: 30px 0 15px 0;
    font-family: "Oswald", sans-serif;
}

main p {
    margin: 0 0 15px 0;
    line-height: 1.5;
}
main ul,
main ol {
    margin-bottom: 30px;
}
main ul ul,
main ul ol {
    margin-top: 15px;
}

main li {
    line-height: 1.5;
    margin-bottom: 5px;
}



.wp-block-gallery {
	display: flex;
	flex-flow: row wrap;
	gap: 30px;
	margin: 30px 0;
}
.wp-block-gallery.aligncenter {
	justify-content: center;
}
.wp-block-gallery .wp-block-image {
	margin: 0;
}
.wp-block-gallery .wp-block-image.size-thumbnail {
	width: 150px
}
.wp-block-gallery img {
	transform: scale(1.0);
	transition: all .2s;
	display: block;
}
.wp-block-gallery a {
	overflow: hidden;
	display: block;
	line-height: 0;
	border-radius: var(--border-radius);
}
.wp-block-gallery a:hover img {
	transform: scale(1.05);
	transition: all .2s;
}


.post-content .wp-block-gallery:last-of-type {
	margin-bottom: 0;
}

ul.blocks-gallery-grid {
	display: flex;
	flex-flow: row wrap;
	gap: 15px;
	list-style: none;
	margin: 0 0 15px 0;
}


.wp-block-image  {
	text-align: center;
	margin: 30px 0;
}
.wp-block-image.alignleft,
.wp-block-image .alignleft {
	float: left;
	margin: 0 15px 15px 0;
}
.wp-block-image.aligncenter,
.wp-block-image .aligncenter {
	text-align: center;
}
.wp-block-image.alignright,
.wp-block-image .alignright {
	float: right;
	margin: 0 0 15px 15px;
}
.wp-block-image figcaption {
	font-size: 14px;
	font-style: italic;
	margin: 10px 0;
}
.wp-block-image.size-full img {
	display: block;
	margin: 0 auto;
}

.google-maps {
  position: relative;
  padding-bottom: 50%;
  height: 0;
  overflow: hidden;
}
.google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}



.ref table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
	font-size: 14px;
}
.ref table th {
	text-align: left;
	padding: 5px;
	background: var(--primary);
	color: white;
}
.ref table tr td:last-child,
.ref table tr th:last-child {
	width: 150px;
	text-align: center;
}
.ref table td {
	padding: 5px;
}

footer {
  border-top: 2px dashed var(--primary);
  padding: 50px 0 100px 0;
  font-size: 14px;
}
footer ul {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.eu-table table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
	font-size: 14px;
}
.eu-table table td {
	padding: 10px;
	border: 1px solid #ddd;
}
.eu-table table td:first-child {
	white-space: nowrap;
}

.eu {
  background: url('/wp-content/uploads/2025/06/eu.png') no-repeat;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 215px;
  height: 150px;
  z-index: 100;
}

.breadcrumb {
  margin-bottom: 30px;
}