@font-face {
  font-family: "RobotoLight";
  src: url('../fonts/Roboto-Light.woff2') format('woff2'),
       url('../fonts/Roboto-Light.woff') format('woff'),
	   url("../fonts/Roboto-Light.ttf") format("truetype");
  font-weight: lighter;
  font-style: normal;
}
@font-face {
  font-family: "RobotoItalic";
  src: url('../fonts/Roboto-Italic.woff2') format('woff2'),
       url('../fonts/Roboto-Italic.woff') format('woff'),
	   url("../fonts/Roboto-Italic.ttf") format("truetype");
  font-weight: lighter;
  font-style: italic;
}
@font-face {
  font-family: "RobotoBold";
  src: url('../fonts/Roboto-Bold.woff2') format('woff2'),
       url('../fonts/Roboto-Bold.woff') format('woff'),
	   url("../fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "RobotoBoldItalic";
  src: url('../fonts/Roboto-BoldItalic.woff2') format('woff2'),
       url('../fonts/Roboto-BoldItalic.woff') format('woff'),
	   url("../fonts/Roboto-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "RobotoMedium";
  src: url('../fonts/Roboto-Medium.woff2') format('woff2'),
       url('../fonts/Roboto-Medium.woff') format('woff'),
	   url("../fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "RobotoMediumItalic";
  src: url('../fonts/Roboto-MediumItalic.woff2') format('woff2'),
       url('../fonts/Roboto-MediumItalic.woff') format('woff'),
	   url("../fonts/Roboto-MediumItalic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
ul,
ol,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

li {
  padding-left: 12px;
  position: relative;
}
li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: #006633;
  border-radius: 50%;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

b, strong {
	font-family: "RobotoBold", Arial, sans-serif;
}

body {
  background-color: #fff;
  color: #006633;
  font-family: "RobotoLight", Arial, sans-serif;
  font-size: 19px;
  line-height: 1.33;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  min-height: 100vh;
  position: relative;
  font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "RobotoBold", Arial, sans-serif;
  font-weight: 700;
}

h1 {
  font-size: 33px;
  margin-bottom: 70px;
}
@media (max-width: 1023px) {
  h1 {
    text-align: center;
    font-size: 27px;
    margin-bottom: 38px;
  }
}

h2 {
  font-size: 29px;
  margin-bottom: 29px;
}
@media (max-width: 1023px) {
  h2 {
    font-size: 23px;
    margin-bottom: 23px;
  }
}

h3 {
  font-size: 24px;
  margin-bottom: 19px;
}
@media (max-width: 1023px) {
  h3 {
    font-size: 22px;
    margin-bottom: 16px;
  }
}

.main {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1460px;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 10px;
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 10px;
  flex-grow: 2;
  padding-top: 98px;
}
@media (max-width: 991px) {
  .main {
    padding-top: 77px;
  }
}
@media (max-width: 1023px) {
  .main {
    padding-top: 57px;
  }
}

a, 
a:active, 
a:focus, 
a:focus-visible, 
a:hover, 
a:visited, 
a:target {
  color: #1D1D1B;
  text-decoration: underline;
}

.menu-box a {
	text-decoration: none;
}


a, 
a:active, 
a:focus, 
a:focus-visible, 
a:hover, 
a:visited, 
a:target {
  color: #1D1D1B;
  text-decoration: underline;
}

a:hover {
  text-decoration: underline;
}

p {
  margin-bottom: 19px;
}
p + h3 {
  margin-top: 44px;
}
@media (max-width: 1023px) {
  p {
    font-size: 16px;
    margin-bottom: 16px;
  }
	p + h3 {
	  margin-top: 37px;
	}
}

ul {
  margin-bottom: 19px;
}
@media (max-width: 1023px) {
  ul {
    font-size: 16px;
    margin-bottom: 16px;
  }
}

.header {
  width: calc(24% - 5px);
}
@media (max-width: 1023px) {
  .header {
    width: 100%;
    padding-bottom: 93px;
    position: relative;
  }
}

.logo {
  display: block;
  text-decoration: none;
  max-width: 196px;
  width: 100%;
  outline: 0;
}
@media (max-width: 1023px) {
  .logo {
    margin: 0 auto;
  }
}
.logo:hover {
  text-decoration: none;
}
.logo img, .logo svg {
	display: block;
	width: 100%;
	height: auto;
}

.header nav {
  margin-top: 105px;
}
@media (max-width: 991px) {
  .header nav {
    padding-top: 91px;
  }
}
@media (max-width: 1023px) {
  .header nav {
    padding-top: 0;
    margin-top: 0;
    position: relative;
  }
}
.header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1023px) {
  .header nav > .menu-box {
    position: absolute;
    top: 43px;
    left: 0;
    width: 100%;
    z-index: 2;
    display: none;
    padding: 25px 60px;
  }
}
.header nav ul li {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 26px;
}
.header nav ul li > ul > li {
  font-size: 19px;
}
.header nav ul li > ul.sub-menu {
	display: none;
}
.header nav ul li.current-menu-parent > ul.sub-menu,
.header nav ul li.current_page_item > ul.sub-menu {
	display: block;
}
@media (max-width: 1023px) {
  .header nav ul li > ul > li {
    font-size: 16px;
	border-bottom: 0;
  }
}
.header nav ul li::before {
  display: none;
}
.header nav ul li.current-menu-item > a {
  pointer-events: none;
}
.header nav ul li.current-menu-item a:hover {
  text-decoration: none;
}
.header nav ul li a, 
.header nav ul li a:active, 
.header nav ul li a:focus, 
.header nav ul li a:focus-visible, 
.header nav ul li a:hover, 
.header nav ul li a:visited, 
.header nav ul li a:target {
  color: #006633;
}
.header nav ul li.current-menu-item > a, 
.header nav ul li.current-menu-item > a:active, 
.header nav ul li.current-menu-item > a:focus, 
.header nav ul li.current-menu-item > a:focus-visible, 
.header nav ul li.current-menu-item > a:hover, 
.header nav ul li.current-menu-item > a:visited, 
.header nav ul li.current-menu-item > a:target {
  color: #3C3C3B;
  font-family: "RobotoBold", Arial, sans-serif;
  font-weight: 700;
}
.header nav ul li.current-menu-parent > a, 
.header nav ul li.current-menu-parent > a:active, 
.header nav ul li.current-menu-parent > a:focus, 
.header nav ul li.current-menu-parent > a:focus-visible, 
.header nav ul li.current-menu-parent > a:hover, 
.header nav ul li.current-menu-parent > a:visited, 
.header nav ul li.current-menu-parent > a:target {
  color: #3C3C3B;
  font-family: "RobotoBold", Arial, sans-serif;
  font-weight: 700;
}
@media (min-width: 1024px) {
	.header nav ul li ul {
		margin-left: 18px;
	}
} 
.header nav ul li ul li a, 
.header nav ul li ul li a:active, 
.header nav ul li ul li a:focus, 
.header nav ul li ul li a:focus-visible, 
.header nav ul li ul li a:hover, 
.header nav ul li ul li a:visited, 
.header nav ul li ul li a:target {
  color: #3C3C3B;
}
@media (max-width: 1023px) {
  .header nav ul li {
    text-align: center;
    border-bottom: 1px solid #006633;
    padding: 3px 0;
    font-size: 27px;
  }
	.header nav .language-switcher ul li {
		border-bottom: none;
	  }
}
.header nav ul li:last-child {
  border-bottom: 0;
}

@media (max-width: 1023px) {
  .body-active-sidebar .navbar > .menu-box {
    display: block;
    background-color: #fff;
    border: 4px solid #006633;
  }
}

.burger {
  display: none;
	fill: #006633;
}
@media (max-width: 1023px) {
  .burger {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 59px;
    height: auto;
  }
}

.cross {
  display: none;
}
@media (max-width: 1023px) {
  .cross {
    position: absolute;
    top: 60px;
    right: 20px;
    width: 33px;
    height: auto;
    z-index: 3;
    display: none;
  }
	.cross .cls-2 {
		fill: #fff;
		stroke: #006633;
		stroke-miterlimit: 10;
		stroke-width: 2px;
	}
}

.body-active-sidebar .cross {
  display: none;
}

.footer {
  width: 100%;
  max-width: 1150px;
  box-sizing: border-box;
  margin: 100px auto 0;
  padding: 0 10px 50px;
}
@media (max-width: 1023px) {
	.body-active-sidebar .cross {
	  display: block;
	}
  .footer {
    padding-bottom: 20px;
  }
}
.footer-navbar {
  padding-top: 10px;
  border-top: 0px solid #006633;
  /*display: flex;*/
}
@media (max-width: 1023px) {
  .footer-navbar {
    border-top: 0px solid #006633;
    padding-top: 20px;
  }
}
.footer-navbar ul {
   /*display: flex;*/
  list-style-type: none;
  flex-wrap: wrap;
  text-align:center;
}
.footer-navbar ul li {
  position: relative;
  padding: 0;
  font-size: 19px;
}
@media (max-width: 991px) {
  .footer-navbar ul li {
    font-size: 16px;
  }
}
@media (max-width: 1023px) {
  .footer-navbar ul li {
    font-size: 14px;
  }
}
/*.footer-navbar ul li::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: -8px;
  transform: translateY(-50%);
  width: 2px;
  height: 2px;
  background-color: #006633;
  border-radius: 50%;
}*/
.footer-navbar ul li::before {	
	display: none;
}
.footer-navbar ul li:first-child::before {
  display: none;
}
.footer-navbar ul li a, 
.footer-navbar ul li a:active, 
.footer-navbar ul li a:focus, 
.footer-navbar ul li a:focus-visible, 
.footer-navbar ul li a:hover, 
.footer-navbar ul li a:visited, 
.footer-navbar ul li a:target {
  color: inherit;
  text-decoration: none;
}
.footer-navbar ul li.current_page_item a {
  text-decoration: underline;
}
.footer-navbar ul li a:hover {
  text-decoration: underline;
}

.main-content {
  width: calc(76% - 5px);
  padding-top: 90px;
}
@media (max-width: 991px) {
  .main-content {
    padding-top: 78px;
  }
}
@media (max-width: 1023px) {
  .main-content {
    width: 100%;
    padding-top: 50px;
  }
}

.hero-image {
  margin-bottom: 40px;
}
@media (max-width: 1023px) {
  .hero-image {
    margin-bottom: 68px;
  }
}
.hero-image__inner {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-bottom: 67.3%;
}
.hero-image__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-image + h1 {
  margin-bottom: 0;
}

.offers-block {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 74px;
       column-gap: 74px;
  row-gap: 5px;
}

.offers-block a {
  text-decoration:none;
  border:0px solid red;
}

.offers-block a:hover {
  text-decoration:underline;
  border:0px solid red;
}

.offers-item {
  width: calc(50% - 37px);
  border-bottom: 4px solid #006633;
  text-align: center;
  padding-bottom: 10px;
  transition: border-top-color 0.5s ease;
}
@media (min-width: 1024px) {
	.offers-item:nth-child(1), .offers-item:nth-child(2) {
		border-top: 4px solid #006633;
	}
}
@media (max-width: 1023px) {
	.offers-item:nth-child(1) {
		border-top: 4px solid #006633;
	}
}
.offers-item:hover {
  border-top-color: #3C3C3B;
}
.offers-item:hover .offers-item__image {
  border-bottom-color: #3C3C3B;
}
.offers-item .offers-item__text, 
.offers-item .offers-item__text:active, 
.offers-item .offers-item__text:focus, 
.offers-item .offers-item__text:focus-visible, 
.offers-item .offers-item__text:hover, 
.offers-item .offers-item__text:visited, 
.offers-item .offers-item__text:target {
  color: #006633;
}
.offers-item:hover .offers-item__text {
  color: #3C3C3B;
}
@media (max-width: 1023px) {
  .offers-item {
    width: 100%;
  }
}
.offers-item__image {
  border-bottom: 2px solid #006633;
  transition: border-bottom-color 0.5s ease;
}
.offers-item:hover img {
	transform: scale(1.1);
  /*animation: rotate-and-scale 0.5s ease forwards;*/
}
.offers-item:not(:hover) img {
  /*animation: rotate-scale-back 0.5s ease forwards;*/
}
.offers-item__inner {
	display: block;
  position: relative;
  height: 0;
  overflow: hidden;
  padding-bottom: 117.17%;
}
.offers-item__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /*transform: rotate(0deg) scale(1);*/
	transform: scale(1);
  transition: transform 0.5s ease;
}
.offers-item__text {
	display: block;
  text-align: center;
  margin-top: 15px;
  padding: 0 19%;
  transition: color 0.5s ease;
}
@media (max-width: 1023px) {
  .offers-item__text {
    padding: 0 20px;
  }
}
.offers-item__text h3 {
  margin-bottom: 8px;
}
.offers-item__text h3 span {
  font-size: 16px;
}
.offers-item__text p {
  font-size: 19px;
}
@media (max-width: 1023px) {
  .offers-item__text p {
    margin-bottom: 0;
  }
}
.offers-item__text a {
  color: inherit;
  text-decoration: none;
}
.offers-item__text a:hover {
  text-decoration: underline;
}

/*@keyframes rotate-and-scale {
  0% {
    transform: rotate(0deg) scale(1);
  }
  33% {
    transform: rotate(-10deg) scale(1.03);
  }
  66% {
    transform: rotate(10deg) scale(1.07);
  }
  100% {
    transform: rotate(0deg) scale(1.1);
  }
}
@keyframes rotate-scale-back {
  0% {
    transform: rotate(0deg) scale(1.1);
  }
  33% {
    transform: rotate(10deg) scale(1.07);
  }
  66% {
    transform: rotate(-10deg) scale(1.03);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}*/
@media (max-width: 1023px) {
  .gallery {
    padding-bottom: 48px;
  }
}
.gallery-item__title {
  font-size: 26px;
  margin-top: 40px;
}
@media (max-width: 1023px) {
  .gallery-item__title {
	  font-size: 19px;
    margin-top: 32px;
    text-align: center;
  }
}
.gallery-image__inner {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-bottom: 66.6%;
}
.gallery-image__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery .slick-buttons-wrapper {
  display: flex;
  justify-content: center;
  -moz-column-gap: 28px;
       column-gap: 28px;
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 20px;
}
@media (max-width: 1023px) {
  .gallery .slick-buttons-wrapper {
    bottom: 0;
  }
}
.gallery .slick-buttons-wrapper .custom-arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 26px;
  color: inherit;
  font-family: "RobotoBold", Arial, sans-serif;
  font-weight: 700;
	position: relative;
    width: auto;
    height: auto;
    left: 0;
    transform: translate(0px, 0px);
    line-height: normal;
}
.gallery .slick-buttons-wrapper .custom-arrow:hover {
  color: #3C3C3B;
}/*# sourceMappingURL=main.css.map */
.slick-prev:before, .slick-next:before {
	display: none;
	content: '';
}
.single-poster {
	width: 100%;
	max-width: 565px;
}
.single-poster__inner {
	position: relative;
    height: 0;
    overflow: hidden;
    padding-bottom: 120.35%;
}
.single-poster__inner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.gallery {
	overflow-y: hidden;
	max-height: 850px;
}
/*WPML language switcher*/
.language-switcher {
    margin-top: 20px;
}
.language-switcher ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.header nav .language-switcher .wpml-ls-legacy-list-horizontal {
	padding: 0;
	border: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.header nav .language-switcher .wpml-ls-legacy-list-horizontal ul {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.header nav ul li.active-language {
	display: none;
}
.header nav .language-switcher ul li a, .header nav .language-switcher ul li a:active, .header nav .language-switcher ul li a:focus, .header nav .language-switcher ul li a:focus-visible, .header nav .language-switcher ul li a:hover, .header nav .language-switcher ul li a:visited, .header nav .language-switcher ul li a:target {
    text-decoration: none;
    color: inherit;
	padding: 0;
}
.header nav .language-switcher ul li a {
	font-size: 19px;
	line-height: inherit;
}
@media (max-width: 1023px) {
	.header nav .language-switcher ul li a {
		font-size: 16px;
	}
	.gallery .slick-buttons-wrapper .custom-arrow {
	  font-size: 19px;
	}
	
}
.header nav .language-switcher ul li a:hover {
    text-decoration: underline;
}
.single-content {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 74px;
    column-gap: 74px;
    row-gap: 5px;
}
.single-content__column {
    width: calc(50% - 37px);
    border-top: 2px solid #006633;
    padding-bottom: 10px;
    transition: border-top-color 0.5s ease;
}
.single-content__column:last-child {
	padding-top: 20px;
}
.single-content__column:last-child h3 {
	margin-bottom: 10px;
}
.single-content .wp-block-table {
	margin-bottom: 10px;
	font-size: 19px;
}
.single-content .wp-block-table td, .wp-block-table th {
    border: none;
    padding: 0;
	text-align: left;
}

.single-content .wp-block-table a, .single-content .wp-block-table a:active, .single-content .wp-block-table a:focus, .single-content .wp-block-table a:focus-visible, .single-content .wp-block-table a:hover, .single-content .wp-block-table a:visited, .single-content .wp-block-table a:target {
	color: inherit;
	text-decoration: underline;
}
.single-content .wp-block-table a:hover {
	color: inherit;
	text-decoration: none;
}
@media (max-width: 1023px) {
	
	.single-content__column {
	    width: 100%;
	    border-top: 0px solid #006633;
	    padding-bottom: 10px;
	    transition: border-top-color 0.5s ease;
	}
	
	.single-content__column:last-child {
		padding-top: 10px;
	}
	
 
	.offers-item__image {
		/* border-bottom: none; */
        border-bottom: 2px solid #006633;
	}
	.single-content .wp-block-table {
		margin-bottom: 7px;
		font-size: 16px;
	}
	.single-content__column:last-child h3,
	.single-content .wp-block-table td,
	.wp-block-table th {
		text-align: left;
	}
}