@charset "UTF-8";
@font-face {
  font-family: "Century Gothic";
  font-style: normal;
  font-display: swap;
  src: url(fonts/century-gothic.woff2) format("woff2");
}
:root {
  --font-size: 20px;
  --container: 1300px;
  --lh: 1.3;
  --margin-big: 8rem;
  --margin-medium: 6rem;
  --margin-small: 3.5rem;
  --container-padding: calc((100vw - var(--container))/2 + 8px);
  --text: #FFF;
  --white: #FFF;
  --black: #000;
  --bg: #f2f2f2;
  --gray: #2D353D;
  --size-h1: 3.7rem;
  --size-h2: 2.1rem;
  --size-h3: 1.4rem;
  --size-h4: 1.2rem;
  --size-50: 2.5rem;
  --size-40: 2rem;
  --size-32: 1.6rem;
  --size-30: 1.5rem;
  --size-28: 1.4rem;
  --size-22: 1.1rem;
  --size-20: 1rem;
  --size-18: 0.9rem;
  --size-16: 0.8rem;
}

[class*=color-] {
  transition: color 0.2s;
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
}

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html {
  font-size: var(--font-size);
  scrollbar-gutter: auto;
}

html, body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
  line-height: 1.5;
  letter-spacing: 1px;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
}

body {
  color: #000;
  font-family: "Century Gothic", serif;
  font-size: 20px;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased; /* Для Mac (Webkit) */
  -moz-osx-font-smoothing: grayscale; /* Для Mac (Firefox) */
}
body.open {
  overflow: hidden;
}

html.with-fancybox {
  overflow: hidden !important;
}

b, strong {
  font-weight: bold;
}

.container {
  width: 100%;
  max-width: var(--container);
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.wow {
  visibility: hidden;
}

ul.clean, ol.clean {
  list-style: none;
  margin: 0;
  padding: 0 !important;
}

main .content ul {
  list-style: none;
  margin: -0.25rem 0;
  padding: 0 !important;
}
main .content ul li {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 1em;
}
main .content ul:not(.clean) li:before {
  content: "\e90e";
  font-family: icomoon;
  color: var(--green);
  font-size: 0.4em;
  vertical-align: middle;
  padding-right: 0.5rem;
  position: relative;
  top: -1px;
}
main .content ol {
  margin: -0.25rem 0;
}
main .content ol li {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
main .content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2.5rem;
}
main .content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a.inverse {
  text-decoration: underline;
}
a.inverse:hover {
  text-decoration: none;
}
a.tel-link {
  text-decoration: none !important;
}
a.no-hover {
  color: inherit !important;
}
a.link.default {
  --current-color: var(--text);
  font-weight: inherit;
  font-size: inherit;
  text-shadow: none;
  text-decoration: none;
  position: relative;
}
a.no-decoration {
  text-decoration: none !important;
  color: inherit;
}

.anchor {
  scroll-margin-top: 3rem;
}

.headerShow .anchor {
  scroll-margin-top: 6.5rem;
}

.auto-lh {
  margin-top: calc(var(--m-top, 0px) - 1em * (var(--lh) - 1)) !important;
  margin-bottom: calc(var(--m-bottom, 0px) - 1em * (var(--lh) - 1)) !important;
}

hr {
  background: var(--green);
  height: 1px;
  border: 0;
  width: 80%;
  max-width: 450px;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
.row.wrap {
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.row.vertical {
  flex-direction: column;
}
.row.vertical.reverse {
  flex-direction: column-reverse;
}
.row.vertical.align-left {
  align-items: flex-start;
}
.row.vertical.align-right {
  align-items: flex-end;
}
.row.reverse {
  flex-direction: row-reverse;
}
.row.align-top {
  align-items: flex-start;
}
.row.align-center {
  justify-content: center;
}
.row.align-left {
  justify-content: flex-start;
}
.row.align-right {
  justify-content: flex-end;
}
.row > .col {
  flex: 1;
}

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

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.clean-p > p:first-of-type {
  margin-top: 0;
}
.clean-p > p:last-of-type {
  margin-bottom: 0;
}

.hover-effect {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hover-effect img {
  transition: transform 0.5s ease;
}
.hover-effect:hover img {
  transform: scale(1.05);
}

.nowrap {
  white-space: nowrap;
}

.invisible {
  display: inline-block;
  font-size: 0;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  line-height: 0;
  color: transparent;
}

section.with-margin {
  margin-bottom: var(--margin-big);
}
section.with-padding-t {
  padding-top: 2.5rem;
}
section.with-padding-b {
  padding-bottom: 2.5rem;
}
section.with-border {
  border-bottom: 0.5rem solid var(--black);
}
section.content { /* line-height: 1.5; color: var(--text); */ }

.title-section {
  margin-bottom: 3rem;
}

.box-shadow {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2509803922);
}

.text-shadow {
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.2509803922);
}

.overlay-block {
  position: relative;
  height: 25rem;
}
.overlay-block .overlay-img {
  height: 100%;
}
.overlay-block .overlay-img img {
  height: 100%;
  position: relative;
  object-fit: cover;
}
.overlay-block .overlay-desc {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  height: 100%;
  left: var(--container-padding);
  top: 0;
  width: calc(100% - 2 * var(--container-padding));
  max-width: 27rem;
  padding: 1rem;
  text-align: center;
  background: rgba(83, 163, 4, 0.5019607843);
}
.overlay-block .overlay-desc h3 {
  --m-bottom: 2.5rem;
}

.breadcramps {
  padding: 2rem 0;
  font-size: var(--size-16);
}
.breadcramps ul {
  text-align: left;
  color: var(--current-color);
}
.breadcramps li {
  display: inline;
}
.breadcramps li a {
  text-decoration: none;
}
.breadcramps li a:hover {
  text-decoration: underline;
}
.breadcramps li:not(:last-of-type):after {
  content: "\e928";
  font-family: icomoon;
  display: inline-block;
  line-height: 1;
  margin: 0 0.4rem;
  font-size: 0.75em;
}
.breadcramps li span {
  color: var(--mumu-green);
  font-weight: bold;
}
@media (max-width: 1280px) {
  .breadcramps {
    padding: 1.5rem 0;
  }
}
@media (max-width: 980px) {
  .breadcramps {
    padding: 1rem 0;
  }
}

.wpap-loadmore-wrapper {
  margin: var(--margin-small) auto 0 !important;
}
.wpap-loadmore-wrapper .wpap-loadmore-button {
  width: 100% !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  height: auto !important;
  padding: 1rem !important;
  background-color: unset !important;
  color: #fff !important;
  font-weight: bold;
  display: inline-block !important;
  width: auto !important;
  transition: color 0.3s;
}
.wpap-loadmore-wrapper .wpap-loadmore-button:hover {
  color: var(--green) !important;
}
.wpap-loadmore-wrapper .wpap-loadmore-button.wp-ajax-loading > span {
  position: relative;
}
.wpap-loadmore-wrapper .wpap-loadmore-button.wp-ajax-loading > span {
  position: relative;
}
.wpap-loadmore-wrapper .wpap-loadmore-button.wp-ajax-loading > span:before {
  content: "";
  display: block;
  height: 2rem;
  width: 2rem;
  position: absolute;
  top: -0.25rem;
  left: -2.5rem;
  color: transparent;
  background-image: url(images/load.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 70%;
}

.paginate nav.navigation {
  text-align: center;
  margin: 1rem 0 0;
}
.paginate h2.screen-reader-text {
  display: none;
}
.paginate .page-numbers:not(.dots) {
  color: var(--white);
  font-weight: 400;
  font-size: 14px;
  margin: 5px;
  padding: 5px 10px;
  /* background: var(--white);*/
  background: unset;
  -webkit-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
  border: 1px solid transparent;
  text-decoration: none;
}
.paginate .page-numbers:not(.dots, .current):hover {
  text-decoration: none;
  border: 1px solid var(--green);
}
.paginate .page-numbers.current {
  background: var(--green);
  color: var(--white);
  border: 1px solid var(--green);
  font-weight: 600;
}
.paginate .page-numbers.dots {
  color: var(--white);
  font-size: var(--size-16);
  padding: 5px;
}

.video {
  width: 100%;
  margin: 2rem 0;
}
.video .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

.green-border {
  border-bottom: 0.5rem solid var(--green);
}

.tile-grid {
  display: grid;
  grid-template-rows: 1fr;
  grid-auto-rows: 1fr;
  gap: var(--margin-big);
  margin-top: var(--margin-big);
  margin-bottom: var(--margin-big);
}
.tile-grid .tile-item {
  gap: 2rem;
}
.tile-grid .tile-item:nth-of-type(2n) {
  flex-direction: row-reverse;
}
.tile-grid .tile-item > .thumb {
  height: 100%;
}
.tile-grid .tile-item > .thumb img {
  height: 100%;
  object-fit: cover;
}
.tile-grid .tile-item .title {
  --m-bottom: 1rem;
  font-weight: bold;
}
.tile-grid.reverse .tile-item:nth-of-type(2n+1) {
  flex-direction: row-reverse;
}
.tile-grid.reverse .tile-item:nth-of-type(2n) {
  flex-direction: row;
}
.tile-grid.various-block .tile-item .thumb {
  flex: 1.4;
}
@media (max-width: 1280px) {
  .tile-grid.various-block .tile-item .thumb {
    flex: 1;
  }
}
@media (max-width: 980px) {
  .tile-grid {
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    /*        gap: 3.5rem;
            margin-top: 3.5rem;
            margin-bottom: 3.5rem;*/
    grid-template-rows: auto;
    grid-auto-rows: auto;
  }
  .tile-grid .tile-item {
    display: block;
  }
  .tile-grid .tile-item .title {
    --m-bottom: 1rem;
    --m-top: 1.5rem;
  }
  .tile-grid .tile-item > .thumb {
    height: auto;
    margin-bottom: 0;
  }
}

.feature-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--margin-big);
  margin: var(--margin-big) auto;
  max-width: 1100px;
}
.feature-items .item {
  justify-content: flex-start;
}
.feature-items .item .icon {
  font-size: 2rem;
}
.feature-items .item .title {
  margin-top: 1.5rem;
}
@media (max-width: 980px) {
  .feature-items {
    gap: var(--margin-small) 1rem;
  }
}
@media (max-width: 640px) {
  .feature-items {
    grid-template-columns: 1fr 1fr;
  }
}

.el-group:not(:first-of-type) {
  margin-top: 1.5rem;
}
.el-group .title-font {
  --m-bottom: 0.25rem;
}
.el-group > .el {
  margin-top: 0.25rem;
}
.el-group > .el.row {
  justify-content: flex-start;
}
.el-group > .el.row .icon {
  text-align: center;
  align-self: flex-start;
  position: relative;
  width: 1.75rem;
  top: 2px;
}

.fancy-modal {
  display: none;
  background: var(--bg);
  color: var(--white);
  width: 100%;
  max-width: 768px;
  font-size: var(--size-18);
}
.fancy-modal iframe {
  margin: 0 auto !important;
}

.custom-table .scroll-table {
  overflow-x: auto;
}
.custom-table table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
.custom-table table td {
  padding: 0.5rem;
}
.custom-table table td.border-bottom {
  border-bottom: 1px solid var(--white);
}
.custom-table table td.align-top {
  vertical-align: top;
}
.custom-table table tr {
  border-bottom: 1px solid var(--white);
}

.menu-btn {
  gap: 1rem;
  justify-content: center;
  margin: 3rem 0;
  font-weight: 700;
}
.menu-btn__item {
  display: inline-block;
  background: var(--green);
  padding: 0.75rem 1.5rem;
  transition: background 0.3s ease;
}
.menu-btn__item:hover {
  text-decoration: none;
  background: var(--orange);
}

.gallery-grid:not(:last-of-type) {
  margin-bottom: var(--margin-small);
}
.gallery-grid__item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1.5em;
  grid-template-areas: "one one two three" "one one four five";
  margin-bottom: 1.5em;
}
.gallery-grid__item .one {
  grid-area: one;
}
.gallery-grid__item .two {
  grid-area: two;
}
.gallery-grid__item .three {
  grid-area: three;
}
.gallery-grid__item .four {
  grid-area: four;
}
.gallery-grid__item .five {
  grid-area: five;
}
@media (max-width: 980px) {
  .gallery-grid__item {
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    gap: 1em;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "one one" "two three" "four five";
  }
}
.gallery-grid__item:nth-of-type(2n) {
  grid-template-areas: "one two five five" "three four five five";
}
@media (max-width: 980px) {
  .gallery-grid__item:nth-of-type(2n) {
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    gap: 1em;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: "one one" "two three" "four five";
  }
}
.gallery-grid__el {
  aspect-ratio: 1;
}
@media (max-width: 980px) {
  .gallery-grid__el {
    aspect-ratio: auto;
  }
}
.gallery-grid__el a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.gallery-grid__el .thumb {
  width: 100%;
  height: 100%;
}
.gallery-grid__el .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-grid__el .caption {
  position: absolute;
  padding: 1rem 0.5rem;
  bottom: 0;
  opacity: 0;
  width: 100%;
  text-align: center;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
@media (max-width: 980px) {
  .gallery-grid__el .caption {
    font-size: var(--size-16);
  }
}
.gallery-grid__el .caption span {
  position: relative;
  z-index: 10;
}
.gallery-grid__el .caption:before {
  content: "";
  display: block;
  position: absolute;
  height: calc(100% + 10rem);
  width: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.75));
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease;
}
@media (max-width: 980px) {
  .gallery-grid__el .caption:before {
    aspect-ratio: 4/3;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.75));
  }
}
.gallery-grid__el:hover .caption:not(.empty) {
  opacity: 1;
}
.gallery-grid__el:hover .caption:not(.empty):before {
  opacity: 1;
}

.btn {
  --current-bg: var(--green);
  --current-color: var(--white);
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--current-bg, inherit);
  color: var(--current-color, inherit);
  text-decoration: none !important;
  border: 0 solid var(--mumu-green);
  font-size: 0.9rem;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s ease, background 0.3s ease, border 0.3s ease;
}
.btn:hover {
  --current-bg: var(--mumu-green);
  --current-color: var(--white);
}
.btn.inverse {
  --current-color: var(--blue);
  background: var(--white) !important;
}
.btn.inverse:hover {
  --current-color: var(--white) !important;
  --current-bg: var(--blue);
  background: var(--current-bg) !important;
}
.btn.inverse-hover:hover {
  --current-color: var(--current-bg);
  --current-bg: var(--current-bg);
}
.btn.with-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn.with-icon > .icon {
  margin-left: 0.5rem;
}
.btn.with-icon:hover > .icon {
  color: inherit;
}

.btn-group {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: row;
  width: 100%;
}
.btn-group > .btn {
  flex: 1;
  width: 100%;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  text-align: center;
  margin-right: 1rem;
}
.btn-group > .btn:last-of-type {
  margin-right: 0;
}

header {
  --container: 1600px;
  position: absolute;
  width: 100%;
  background: var(--dark-green);
  z-index: 1000;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
header .nav {
  gap: 1.5rem;
  padding: 1.5rem 0;
}
header .nav a {
  text-transform: uppercase;
  color: var(--white);
}

.mobile-menu {
  display: none;
  padding: 0.75rem 0;
}
@media (max-width: 980px) {
  .mobile-menu {
    display: block;
  }
}
.mobile-menu .toggleMenu {
  flex: 1;
}
.mobile-menu .logo-mobile {
  display: block;
  margin-left: auto;
}
.mobile-menu .logo-mobile img {
  width: 100%;
  max-width: 5rem;
}

#toggleMenu {
  font-size: 0;
  cursor: pointer;
  background: none;
  border: 0;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 10;
}
#toggleMenu .bar {
  position: absolute;
  width: 100%;
  background: var(--green);
  height: 3px;
  left: 0;
  top: 0;
  pointer-events: none;
  box-shadow: 0 4px 4px 0 rgba(51, 51, 51, 0.1);
  transition: all 0.3s ease;
}
#toggleMenu .bar.bar-short {
  top: 11px;
}
#toggleMenu .bar:last-of-type {
  top: 22px;
}
#toggleMenu:hover .bar {
  background: var(--mumu-green);
}

.activeMenu {
  overflow: hidden;
}
.activeMenu #toggleMenu .bar-short {
  opacity: 0;
}
.activeMenu #toggleMenu .bar:first-of-type {
  transform: rotate(45deg);
  transform-origin: left top;
  width: 34px;
}
.activeMenu #toggleMenu .bar:last-of-type {
  transform: rotate(-45deg);
  transform-origin: left bottom;
  width: 34px;
  top: 23px;
}
.activeMenu header .nav {
  transform: scaleY(1);
  opacity: 1;
}

@media (max-width: 980px) {
  header .nav {
    position: absolute;
    width: 100%;
    left: 0;
    top: var(--header-height);
    height: calc(100vh - var(--header-height));
    overflow-y: auto;
    background: var(--bg);
    transform: scaleY(0);
    opacity: 0;
    transform-origin: top;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  header .menu {
    display: block;
    width: 100%;
    padding: 0 15px 0 !important;
  }
  header .menu > li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--green);
  }
  header .menu > li:last-of-type {
    border-bottom: 0;
  }
  header .menu > li a {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    padding: 0.4rem 0;
  }
  header .menu > li:hover > a > span {
    color: var(--white);
  }
  header .menu > li > a:hover > span {
    color: var(--mumu-green);
  }
  header .menu > li .sub-menu {
    position: static;
    opacity: 1;
    transform: none;
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.4rem;
    margin-bottom: 0.5rem;
    padding: 0;
    border-bottom: 0;
  }
  header .menu > li .sub-menu > li {
    display: block;
    line-height: 1.1;
  }
  header .menu > li .sub-menu > li a {
    display: inline;
    padding: 0 0.4rem;
    color: #aaa;
  }
}
@media (max-width: 540px) {
  header .top-panel .group-visit {
    display: none;
  }
  header .top-panel .contacts {
    justify-content: center;
    width: 100%;
  }
}
footer {
  margin-top: var(--margin-small);
  margin-bottom: var(--margin-small);
}
footer .copyright {
  text-align: center;
  font-size: var(--size-18);
}
@media (max-width: 980px) {
  footer .content .col-logo {
    display: none;
  }
}

.splide__arrows {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  padding: 1rem 0;
  gap: 1rem;
}
.splide__arrow {
  background: none;
  border: 0;
  font-size: var(--size-32);
  cursor: pointer;
}

.splide__pagination {
  gap: 0.75rem;
}
.splide__pagination, .splide__pagination:hover {
  color: transparent !important;
  background: transparent !important;
  padding: 0 !important;
}
.splide__pagination__page {
  width: 1rem;
  height: 1rem;
  border: 0;
  padding: 0;
  background: var(--current-bg);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 4px 0 rgba(21, 21, 21, 0.1);
  transition: color 0.3s ease, background 0.3s ease;
}
.splide__pagination__page.is-active, .splide__pagination__page:hover {
  background: var(--white);
}

.splide.splide-control-hidden .splide__arrows,
.splide.splide-control-hidden .splide__pagination {
  display: none;
}

.items_slider .item {
  --slide-width: calc((100vw - var(--container-padding))/6);
}
@media (max-width: 1640px) {
  .items_slider .item {
    --slide-width: calc((100vw - var(--container-padding))/5);
  }
}
@media (max-width: 1200px) {
  .items_slider .item {
    --slide-width: calc((100vw - var(--container-padding))/4.2);
  }
}
@media (max-width: 1024px) {
  .items_slider .item {
    --slide-width: 13rem;
  }
}
.items_slider .item .thumb {
  width: 100%;
  height: 100%;
}
.items_slider .item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.items_slider .item .thumb:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.75));
  z-index: 1;
  transition: opacity 0.3s ease;
}
.items_slider .item .text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  justify-content: space-between;
  text-align: center;
  z-index: 10;
}
.items_slider .item .title {
  margin-top: auto;
  height: calc(var(--lh) * 2 * 1rem);
  margin-bottom: 0.5rem;
  padding: 0 0.5rem;
}
.items_slider .item.with-desc:before {
  content: "\e927";
  font-family: "icomoon";
  position: absolute;
  color: var(--wihte);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5rem;
  font-size: var(--size-18);
  width: 2.5rem;
  height: 2.5rem;
  background: var(--green);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 10;
}
.items_slider .item.with-desc .thumb:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.items_slider .item.with-desc .desc {
  flex: 1;
  width: 100%;
}
.items_slider .item.with-desc .desc .hide-text {
  font-size: var(--size-16);
  padding: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.items_slider .item.with-desc:hover .thumb:after {
  opacity: 1;
}
.items_slider .item.with-desc:hover:before {
  transform: translate(-50%, -50%) scale(3);
  opacity: 0;
}
.items_slider .item.with-desc:hover .desc .hide-text {
  opacity: 1;
}
.items_slider.hoverhover:before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75));
}
.items_slider .splide__arrows {
  padding-left: var(--container-padding);
}

.hero {
  position: relative;
  height: 100lvh;
  background: url("img/villa.jpg") no-repeat;
  background-size: cover;
}
.hero:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
}
.hero .cover {
  position: absolute;
  padding: 0 15px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
}

.about {
  --container: 980px;
  margin-top: var(--margin-big);
  margin-bottom: var(--margin-big);
}
.about .container > * {
  margin-top: var(--margin-small);
  margin-bottom: var(--margin-small);
}

.project {
  --m-bottom: var(--margin-medium);
  padding-top: var(--margin-big);
  padding-bottom: var(--margin-big);
  background: var(--bg);
}
.project .project-items {
  gap: var(--margin-small);
}
.project .project-items .thumb {
  margin-bottom: 1.25rem;
}
.project .project-items .thumb img {
  width: 5rem;
  height: auto;
  margin: 0 auto;
}
.project .project-items .desc {
  font-size: var(--size-18);
}
@media (max-width: 768px) {
  .project .project-items {
    flex-direction: column;
  }
}

.tile-items {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  gap: var(--margin-small);
  margin-top: var(--margin-medium);
}
.tile-items .item {
  gap: var(--margin-small);
}
.tile-items .item .thumb {
  flex: 1;
  width: 100%;
}
.tile-items .item .thumb img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 3/2;
}
.tile-items .item .desc {
  flex: 1;
  font-size: var(--size-18);
}
.tile-items .item .desc h4 {
  font-weight: bold;
  margin-top: 0;
}
.tile-items .item:nth-of-type(2n+1) {
  flex-direction: row-reverse;
}
@media (max-width: 980px) {
  .tile-items .item {
    flex-direction: column !important;
  }
}

.history {
  --m-top: var(--margin-big);
  --m-bottom: var(--margin-small);
}

.architecture {
  --m-top: var(--margin-big);
  --m-bottom: var(--margin-small);
}

.facts {
  --container: 1600px;
  --m-top: var(--margin-big);
  --m-bottom: var(--margin-small);
}
.facts .facts-items {
  display: grid;
  width: 100%;
  margin-top: var(--margin-medium);
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  grid-template-areas: "a a b c" "d e b f";
}
.facts .facts-items .item-1 {
  grid-area: a;
}
.facts .facts-items .item-2 {
  grid-area: b;
}
.facts .facts-items .item-3 {
  aspect-ratio: 1/1;
  grid-area: c;
}
.facts .facts-items .item-4 {
  aspect-ratio: 1/1;
  grid-area: d;
}
.facts .facts-items .item-5 {
  aspect-ratio: 1/1;
  grid-area: e;
}
.facts .facts-items .item-6 {
  aspect-ratio: 1/1;
  grid-area: f;
}
.facts .facts-items .item {
  position: relative;
}
.facts .facts-items .item .thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.facts .facts-items .item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.facts .facts-items .item .thumb:before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.9));
}
.facts .facts-items .item .desc {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 1rem;
  font-size: var(--size-16);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.facts .facts-items .item .desc h4 {
  margin-top: 0;
  font-weight: bold;
}
@media (max-width: 1280px) {
  .facts .facts-items {
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "a b c" "d e f";
  }
}
@media (max-width: 980px) {
  .facts .facts-items {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-areas: "a b" "c d" "e f";
  }
  .facts .facts-items .desc {
    position: relative;
  }
}
@media (max-width: 640px) {
  .facts .facts-items {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
    grid-template-areas: "a" "b" "c" "d" "e" "f";
  }
  .facts .facts-items .desc {
    position: relative;
  }
}

.gallery {
  --container: 1600px;
  margin-top: var(--margin-big);
}
.gallery .gallery-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}
.gallery .gallery-items a {
  display: block;
}
.gallery .gallery-items a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 3/2;
}
@media (max-width: 980px) {
  .gallery .gallery-items {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }
}

.location {
  margin-top: 1rem;
}
.location #map {
  height: 70vh;
}
.location #map [class*=ground-pane] {
  -webkit-filter: grayscale(100%) contrast(120%);
  filter: grayscale(100%);
  filter: gray;
}

@media (max-width: 980px) {
  .features-1 {
    padding: 1.25rem 0;
  }
  .features-1 .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .head {
    height: auto;
  }
  .head .tl-static-form {
    top: 0;
    position: relative;
  }
  .head .promo_slider_text {
    position: relative;
    padding-bottom: 3rem;
  }
  .head .splide__slide .desc {
    position: relative;
    height: auto;
    font-size: clamp(var(--size-28), 7vw, var(--size-50));
  }
}
@media (min-width: 641px) {
  .head .splide__arrows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  .head .splide__arrows button {
    position: absolute;
    pointer-events: auto;
    top: 50%;
    transform: translateY(-50%);
  }
  .head .splide__arrows button.splide__arrow--next {
    right: 15px;
  }
  .head .splide__arrows button.splide__arrow--prev {
    left: 15px;
  }
}
@media (max-width: 640px) {
  .head .splide__slide .desc .text {
    padding-left: 0;
    padding-right: 0;
  }
  .head .splide__arrows {
    padding: 2rem 0 0;
  }
  .head .splide__arrows button {
    color: var(--green) !important;
  }
  .head .splide__arrows button:hover {
    color: var(--mumu-green) !important;
  }
}
@media (max-width: 599px) {
  .map-block {
    height: 400px;
    overflow: hidden;
  }
  .panzoom {
    height: 100%;
    overflow: hidden;
    position: relative;
  }
  .panzoom img {
    height: 100%;
    width: auto;
    display: block;
    transition: transform 0.1s ease-out;
    will-change: transform;
  }
}
@media (min-width: 600px) {
  .map-block {
    height: auto;
  }
  .panzoom {
    overflow: visible;
  }
  .panzoom img {
    width: 100%;
    height: auto;
    transform: none !important;
  }
}
@media (max-width: 480px) {
  .features-1 {
    padding: 1.25rem 0;
  }
  .features-1 .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/*region COLORS*/
.color-text {
  color: #FFF !important;
  --current-color: #FFF !important;
}

.color-text-hover:hover {
  color: #FFF !important;
  --current-color: #FFF !important;
}

.color-white {
  color: #FFF !important;
  --current-color: #FFF !important;
}

.color-white-hover:hover {
  color: #FFF !important;
  --current-color: #FFF !important;
}

.color-black {
  color: #000 !important;
  --current-color: #000 !important;
}

.color-black-hover:hover {
  color: #000 !important;
  --current-color: #000 !important;
}

.color-bg {
  color: #f2f2f2 !important;
  --current-color: #f2f2f2 !important;
}

.color-bg-hover:hover {
  color: #f2f2f2 !important;
  --current-color: #f2f2f2 !important;
}

.color-gray {
  color: #2D353D !important;
  --current-color: #2D353D !important;
}

.color-gray-hover:hover {
  color: #2D353D !important;
  --current-color: #2D353D !important;
}

.background-color-text {
  background-color: #FFF !important;
  --current-bg: #FFF !important;
}

.background-color-text-hover:hover {
  background-color: #FFF !important;
  --current-bg: #FFF !important;
}

.background-color-white {
  background-color: #FFF !important;
  --current-bg: #FFF !important;
}

.background-color-white-hover:hover {
  background-color: #FFF !important;
  --current-bg: #FFF !important;
}

.background-color-black {
  background-color: #000 !important;
  --current-bg: #000 !important;
}

.background-color-black-hover:hover {
  background-color: #000 !important;
  --current-bg: #000 !important;
}

.background-color-bg {
  background-color: #f2f2f2 !important;
  --current-bg: #f2f2f2 !important;
}

.background-color-bg-hover:hover {
  background-color: #f2f2f2 !important;
  --current-bg: #f2f2f2 !important;
}

.background-color-gray {
  background-color: #2D353D !important;
  --current-bg: #2D353D !important;
}

.background-color-gray-hover:hover {
  background-color: #2D353D !important;
  --current-bg: #2D353D !important;
}

/*endregion*/
h1 {
  font-style: normal;
  font-size: var(--size-h1);
  font-weight: bold;
  margin: 1.5rem 0;
}

h2 {
  color: inherit;
  font-size: var(--size-h2);
  margin: 1.5rem 0;
  font-weight: bold;
  line-height: 1.2;
}

h3 {
  color: inherit;
  font-weight: normal;
  font-size: var(--size-h3);
  margin: 1.5rem 0;
}

h4 {
  color: inherit;
  font-weight: normal;
  font-size: var(--size-h4);
  margin: 1.25rem 0;
}

.light-text {
  font-weight: 300;
}

.post-title {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-size: var(--size-22);
  text-align: center;
}

@media (min-width: 981px) {
  .hidden-on-desktop {
    display: none !important;
  }
}
@media all and (max-height: 720px) {
  html {
    font-size: 18px;
  }
}
@media (max-width: 1430px) {
  html {
    font-size: 19px;
  }
}
@media (max-width: 1080px) {
  html {
    font-size: 18px;
  }
  h2 {
    font-size: 1.75rem;
  }
}
@media (max-width: 980px) {
  :root {
    --margin-big: 5rem;
    --margin-medium: 3rem;
    --margin-small: 2rem;
  }
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .post-title {
    font-size: var(--size-20);
  }
}
@media (max-width: 420px) {
  h1 {
    font-size: 2.5rem;
  }
}

/*# sourceMappingURL=style.css.map */
