.ico-svg {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

.icon-close {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  text-align: center;
  margin-left: -20px;
  margin-top: -20px;
}

.icon-close:before, .icon-close:after {
  position: absolute;
  display: block;
  width: 30px;
  height: 3px;
  content: '';
  background: #000;
}

.icon-close:before {
  transform: rotate(45deg);
}

.icon-close:after {
  transform: rotate(-45deg);
}

@keyframes rotate-forever {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loading-spinner {
  display: inline-block;
  width: 60px;
  height: 60px;
  animation-name: rotate-forever;
  animation-duration: 0.75s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  border: 5px solid #159947;
  border-right-color: transparent;
  border-radius: 50%;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.js-slider {
  display: none;
}

.js-slider.slick-initialized {
  display: block;
}

.js-slider .slick-slide {
  outline: none;
}

.js-slider .js-slide-item {
  outline: none;
}

.slick-margin-negative-10 {
  margin: 0 -10px;
}

.slick-margin-negative-10 .js-slide-item {
  padding-right: 10px;
  padding-left: 10px;
}

.slick-margin-negative-20 {
  margin: 0 -20px;
}

.slick-margin-negative-20 .js-slide-item {
  padding-right: 20px;
  padding-left: 20px;
}

.slick-margin-negative-30 {
  margin: 0 -30px;
}

.slick-margin-negative-30 .js-slide-item {
  padding-right: 30px;
  padding-left: 30px;
}

.slick-margin-negative-40 {
  margin: 0 -40px;
}

.slick-margin-negative-40 .js-slide-item {
  padding-right: 40px;
  padding-left: 40px;
}

.slick-margin-negative-50 {
  margin: 0 -50px;
}

.slick-margin-negative-50 .js-slide-item {
  padding-right: 50px;
  padding-left: 50px;
}

@media (min-width: 576px) {
  .slick-margin-negative-xs-5 {
    margin: 0 -5px;
  }
  .slick-margin-negative-xs-5 .js-slide-item {
    padding-right: 5px;
    padding-left: 5px;
  }
  .slick-margin-negative-xs-10 {
    margin: 0 -10px;
  }
  .slick-margin-negative-xs-10 .js-slide-item {
    padding-right: 10px;
    padding-left: 10px;
  }
  .slick-margin-negative-xs-20 {
    margin: 0 -20px;
  }
  .slick-margin-negative-xs-20 .js-slide-item {
    padding-right: 20px;
    padding-left: 20px;
  }
  .slick-margin-negative-xs-30 {
    margin: 0 -30px;
  }
  .slick-margin-negative-xs-30 .js-slide-item {
    padding-right: 30px;
    padding-left: 30px;
  }
  .slick-margin-negative-xs-40 {
    margin: 0 -40px;
  }
  .slick-margin-negative-xs-40 .js-slide-item {
    padding-right: 40px;
    padding-left: 40px;
  }
  .slick-margin-negative-xs-50 {
    margin: 0 -50px;
  }
  .slick-margin-negative-xs-50 .js-slide-item {
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media (min-width: 771px) {
  .slick-margin-negative-sm-5 {
    margin: 0 -5px;
  }
  .slick-margin-negative-sm-5 .js-slide-item {
    padding-right: 5px;
    padding-left: 5px;
  }
  .slick-margin-negative-sm-10 {
    margin: 0 -10px;
  }
  .slick-margin-negative-sm-10 .js-slide-item {
    padding-right: 10px;
    padding-left: 10px;
  }
  .slick-margin-negative-sm-20 {
    margin: 0 -20px;
  }
  .slick-margin-negative-sm-20 .js-slide-item {
    padding-right: 20px;
    padding-left: 20px;
  }
  .slick-margin-negative-sm-30 {
    margin: 0 -30px;
  }
  .slick-margin-negative-sm-30 .js-slide-item {
    padding-right: 30px;
    padding-left: 30px;
  }
  .slick-margin-negative-sm-40 {
    margin: 0 -40px;
  }
  .slick-margin-negative-sm-40 .js-slide-item {
    padding-right: 40px;
    padding-left: 40px;
  }
  .slick-margin-negative-sm-50 {
    margin: 0 -50px;
  }
  .slick-margin-negative-sm-50 .js-slide-item {
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media (min-width: 992px) {
  .slick-margin-negative-md-5 {
    margin: 0 -5px;
  }
  .slick-margin-negative-md-5 .js-slide-item {
    padding-right: 5px;
    padding-left: 5px;
  }
  .slick-margin-negative-md-10 {
    margin: 0 -10px;
  }
  .slick-margin-negative-md-10 .js-slide-item {
    padding-right: 10px;
    padding-left: 10px;
  }
  .slick-margin-negative-md-20 {
    margin: 0 -20px;
  }
  .slick-margin-negative-md-20 .js-slide-item {
    padding-right: 20px;
    padding-left: 20px;
  }
  .slick-margin-negative-md-30 {
    margin: 0 -30px;
  }
  .slick-margin-negative-md-30 .js-slide-item {
    padding-right: 30px;
    padding-left: 30px;
  }
  .slick-margin-negative-md-40 {
    margin: 0 -40px;
  }
  .slick-margin-negative-md-40 .js-slide-item {
    padding-right: 40px;
    padding-left: 40px;
  }
  .slick-margin-negative-md-50 {
    margin: 0 -50px;
  }
  .slick-margin-negative-md-50 .js-slide-item {
    padding-right: 50px;
    padding-left: 50px;
  }
}

.slick-margin-10 {
  margin: 0 10px;
}

.slick-margin-20 {
  margin: 0 20px;
}

.slick-margin-30 {
  margin: 0 30px;
}

.slick-margin-40 {
  margin: 0 40px;
}

.slick-margin-50 {
  margin: 0 50px;
}

@media (min-width: 771px) {
  .slick-margin-sm-50 {
    margin: 0 50px;
  }
}

@media (min-width: 992px) {
  .slick-dots-hero .slick-dots {
    text-align: left;
    left: calc((100% - 905px) / 2);
  }
}

@media (min-width: 1200px) {
  .slick-dots-hero .slick-dots {
    left: calc((100% - 1125px) / 2);
  }
}

@media (min-width: 1440px) {
  .slick-dots-hero .slick-dots {
    left: calc((100% - 1185px) / 2);
  }
}

@media (max-width: 991px) {
  .slick-dots-hero .slick-dots {
    position: absolute;
    bottom: 10px;
  }
}

.slick-dots-hero .slick-dots li {
  width: 30px;
  height: 40px;
}

.slick-dots-hero .slick-dots li:after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 9px;
  height: 9px;
  border: 2px solid #ffffff;
  content: '';
}

.slick-dots-hero .slick-dots li.slick-active:after, .slick-dots-hero .slick-dots li:hover:after {
  border-color: #ffffff;
  background-color: #ffffff;
}

.slick-dots {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  margin: 0 !important;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 40px;
  padding: 0 !important;
  cursor: pointer;
  vertical-align: middle;
  transition: all 250ms ease;
}

.slick-dots li:after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 10px;
  height: 10px;
  content: '';
  transform: translate(-50%, -50%);
  border: 2px solid #9c9c9c;
}

.slick-dots li.slick-active:after, .slick-dots li:hover:after {
  border-color: #159947;
  background-color: #159947;
}

.slick-dots li button:before {
  content: none;
}

.slick-dots li button {
  display: none;
}

.slick-arrow-hero .slick-arrows.slick-prev {
  left: 10px;
}

@media (min-width: 1440px) {
  .slick-arrow-hero .slick-arrows.slick-prev {
    left: 20px;
  }
}

@media (min-width: 1600px) {
  .slick-arrow-hero .slick-arrows.slick-prev {
    left: 50px;
  }
}

.slick-arrow-hero .slick-arrows.slick-next {
  right: 10px;
}

@media (min-width: 1440px) {
  .slick-arrow-hero .slick-arrows.slick-next {
    right: 20px;
  }
}

.slick-arrows {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: block;
  margin-top: -20px;
  cursor: pointer;
}

@media (max-width: 770px) {
  .slick-arrows {
    display: none !important;
  }
}

.slick-arrows svg {
  display: flex;
  width: 50px;
  height: 40px;
  text-align: center;
  fill: #9c9c9c;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-size: 2.25rem;
}

.slick-arrows svg:hover {
  fill: #159947;
}

.slick-arrows.slick-disabled {
  opacity: 0.2;
}

.slick-arrows.slick-prev {
  left: -50px;
}

.slick-arrows.slick-next {
  right: -50px;
}

.select2-container {
  z-index: 9;
}

.select2-container.select2-container--open .select2-selection--single .select2-selection__arrow:after,
.select2-container.select2-container--open .select2-selection--multiple .select2-selection__arrow:after,
.select2-container .select2-container--focus .select2-selection--single .select2-selection__arrow:after,
.select2-container .select2-container--focus .select2-selection--multiple .select2-selection__arrow:after {
  transform: rotate(-180deg);
}

.select2-container .select2-search--inline .select2-search__field {
  margin-top: 0;
}

.select2-container .select2-search--inline {
  display: block;
  width: 100%;
}

.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
  width: 100%;
  height: 70px;
  padding: 20px 0 1px 2rem;
  padding-bottom: 1px;
  font-family: "lektorat-text-variable", sans-serif, Arial, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0px;
  color: #000;
  border: 0;
  outline: none !important;
  background-color: transparent;
  font-size: 22px;
  font-size: 1.375rem;
  border-radius: 0;
}

@media (min-width: 771px) {
  .select2-container .select2-selection--single,
  .select2-container .select2-selection--multiple {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

@media (min-width: 993px) and (max-width: 1200px) {
  .select2-container .select2-selection--single,
  .select2-container .select2-selection--multiple {
    font-size: 22px;
    font-size: 1.375rem;
    padding-left: 1rem;
  }
}

.select2-container .select2-selection--single .select2-selection__rendered,
.select2-container .select2-selection--multiple .select2-selection__rendered {
  padding: 0;
  line-height: 50px;
  color: #000;
}

.select2-container .select2-selection--single .select2-selection__placeholder,
.select2-container .select2-selection--multiple .select2-selection__placeholder {
  color: #000;
}

.select2-container .select2-selection--single .select2-selection__arrow,
.select2-container .select2-selection--multiple .select2-selection__arrow {
  position: absolute;
  top: -15px;
  right: 10px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
}

.select2-container .select2-selection--single .select2-selection__arrow:after,
.select2-container .select2-selection--multiple .select2-selection__arrow:after {
  content: "" !important;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -14px;
  margin-top: -8px;
  width: 28px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("../images/icons/filter-arrow.svg");
}

.select2-container .select2-selection--single .select2-selection__arrow b,
.select2-container .select2-selection--multiple .select2-selection__arrow b {
  display: none;
}

.select2-container .select2-container--focus .select2-selection--single .select2-selection__arrow:after,
.select2-container.select2-container--open .select2-selection--single .select2-selection__arrow:after {
  content: "\e91a";
}

.select2-dropdown {
  border: 0;
  border-radius: 0;
  background-color: white;
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.03);
}

.select2-dropdown .select2-results__options--nested .select2-results__option {
  padding: 0 25px;
}

.select2-dropdown.select2-dropdown--above {
  box-shadow: 0 -15px 20px rgba(0, 0, 0, 0.03);
}

.select2-dropdown .select2-results__options {
  max-height: 220px !important;
}

.select2-dropdown .select2-results__options .select2-results__option[aria-selected=true] {
  color: #ffffff;
  background-color: #000;
}

.select2-dropdown .select2-results__options .select2-results__option {
  padding: 1.2rem 2rem;
  font-family: "lektorat-text-variable", sans-serif, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0px;
  color: #000;
  font-size: 18px;
  font-size: 1.125rem;
}

@media (min-width: 993px) and (max-width: 1200px) {
  .select2-dropdown .select2-results__options .select2-results__option {
    padding: 1.2rem 1rem;
  }
}

.select2-dropdown .select2-results__options .select2-results__option--highlighted {
  color: #000;
  background-color: #f5f5f5;
}

.lg-sub-html {
  line-height: 1.6;
}

.lg-sub-html strong {
  display: block;
}

/**
 * Swiper 11.0.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 22, 2023
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Base settings */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  transition: color .15s, background .15s, border .15s, opacity .15s;
}

*:after, *:before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

::-moz-selection {
  color: #fff;
  background-color: #159947;
}

::selection {
  color: #fff;
  background-color: #159947;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

:root {
  --width-md: 1354px;
  --body-padding-md: calc((100vw - var(--width-md)) / 2) !important;
}

@media (max-width: 769px) {
  :root {
    --body-padding-md: 3rem;
  }
}

html {
  position: relative;
  box-sizing: border-box;
  height: 100%;
  font-size: 100%;
}

body {
  position: relative;
  height: 100%;
  margin: 0;
  color: #103E28;
}

a {
  cursor: pointer;
  color: inherit;
  outline: none;
  font-family: "lektorat-text-variable", sans-serif, Arial, sans-serif;
}

a:hover {
  text-decoration: none;
}

a:focus, a:active, a:visited {
  outline: none;
}

p a {
  color: #159947;
}

.a-hover:hover, .a-hover:focus {
  text-decoration: none;
  color: white;
}

.a-hover-link {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.a-hover-link-text {
  text-transform: uppercase;
  color: #159947;
  font-family: "lektorat-text-variable", sans-serif, Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
}

.a-hover-link-text-yellow {
  color: #159947;
}

.a-hover-link-icon {
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
  color: #159947;
  font-size: 24px;
  font-size: 1.5rem;
}

p {
  margin-bottom: 1em;
  font-family: "lektorat-text-variable", sans-serif, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.8;
}

.p-large p {
  font-size: 16px;
  font-size: 1rem;
}

@media (min-width: 576px) {
  .p-large p {
    font-size: 16px;
    font-size: 1rem;
  }
}

@media (min-width: 771px) {
  .p-large p {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

@media (min-width: 992px) {
  .p-large p {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.p-big p {
  font-size: 16px;
  font-size: 1rem;
}

@media (min-width: 771px) {
  .p-big p {
    font-size: 17px;
    font-size: 1.0625rem;
  }
}

.p-normal p {
  line-height: 1.6;
  font-size: 14px;
  font-size: 0.875rem;
}

.p-small p {
  letter-spacing: 0.65px;
  line-height: 1.5;
  font-size: 13px;
  font-size: 0.8125rem;
}

.p-secondary p {
  font-family: "lektorat-text-variable", sans-serif, Arial, sans-serif;
  font-weight: 700;
}

.p-line-1-4 p {
  line-height: 1.4;
}

.p-line-1-6 p {
  line-height: 1.6;
}

.p-line-1-8 p {
  line-height: 1.8;
}

.p-line-2 p {
  line-height: 2;
}

.p-line-2-2 p {
  line-height: 2.2;
}

ol, ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.list-style, ol.list-style {
  margin-bottom: 2em;
}

ul.list-style li, ol.list-style li {
  position: relative;
  display: block;
  margin-bottom: 8px;
  padding-left: 25px;
  color: #000;
  font-family: "lektorat-text-variable", sans-serif, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.31px;
  font-size: 15px;
  font-size: 0.9375rem;
}

ul.list-style a, ol.list-style a {
  color: #159947;
}

ul.list-style a:hover, ol.list-style a:hover {
  text-decoration: underline;
}

ul.list-style li {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 30px;
  border-bottom: 2px solid #DFE4DF;
}

@media (min-width: 576px) {
  ul.list-style li {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

ul.list-style li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  width: 20px;
  height: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../images/icons/arrow.svg");
}

ol.list-style {
  list-style-position: inside;
  counter-reset: item;
}

ol.list-style li:before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  content: counter(item) ".";
  counter-increment: item;
  color: #159947;
  line-height: 1.4;
  font-size: 16px;
  font-size: 1rem;
}

em, i, .italic {
  font-style: italic;
}

strong, .strong {
  font-weight: 700;
}

small, .small {
  font-size: 12px;
  font-size: 0.75rem;
}

h1, .alfa, h2, .beta, h3, .gamma, h4, .delta, h5, .epsilon, h6, .zeta {
  margin: 0;
  margin-bottom: 1.5em;
  color: #103E28;
  font-family: "rotunda-variable", sans-serif, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

h1 a, .alfa a, h2 a, .beta a, h3 a, .gamma a, h4 a, .delta a, h5 a, .epsilon a, h6 a, .zeta a {
  color: inherit;
}

h1, .alfa {
  font-size: 46px;
  font-size: 2.875rem;
}

@media (min-width: 576px) {
  h1, .alfa {
    font-size: 50px;
    font-size: 3.125rem;
  }
}

@media (min-width: 771px) {
  h1, .alfa {
    font-size: 60px;
    font-size: 3.75rem;
  }
}

@media (min-width: 992px) {
  h1, .alfa {
    font-size: 78px;
    font-size: 4.875rem;
  }
}

@media (min-width: 1200px) {
  h1, .alfa {
    font-size: 80px;
    font-size: 5rem;
  }
}

@media (min-width: 1440px) {
  h1, .alfa {
    font-size: 82px;
    font-size: 5.125rem;
  }
}

@media (min-width: 1600px) {
  h1, .alfa {
    font-size: 96px;
    font-size: 6rem;
  }
}

h3, .gamma {
  letter-spacing: 2.21px;
  font-size: 28px;
  font-size: 1.75rem;
}

@media (min-width: 576px) {
  h3, .gamma {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

@media (min-width: 771px) {
  h3, .gamma {
    font-size: 35px;
    font-size: 2.1875rem;
  }
}

h4, .delta {
  font-size: 16px;
  font-size: 1rem;
}

@media (min-width: 576px) {
  h4, .delta {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

@media (min-width: 771px) {
  h4, .delta {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

h5, .epsilon {
  font-size: 18px;
  font-size: 1.125rem;
}

@media (min-width: 576px) {
  h5, .epsilon {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

@media (min-width: 771px) {
  h5, .epsilon {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

h6, .zeta {
  font-size: 15px;
  font-size: 0.9375rem;
}

@media (max-width: 770px) {
  h6, .zeta {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

@media (max-width: 575px) {
  h6, .zeta {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

.headline-divider {
  margin-top: -15px;
}

.headline-divider svg {
  font-size: 50px;
  font-size: 3.125rem;
  fill: #159947;
}

.text-white {
  color: #ffffff !important;
}

.text-primary {
  color: #159947 !important;
}

.text-green-dark {
  color: #103E28 !important;
}

.bg-green-dark {
  background-color: #103E28 !important;
}

.bg-gray {
  background-color: #DFE4DF !important;
}

.pl-mc-bleed {
  padding-left: var(--body-padding-md) !important;
}

@media (max-width: 991px) {
  .pl-mc-bleed {
    padding-left: 3rem !important;
  }
}

.pr-mc-bleed {
  padding-right: var(--body-padding-md) !important;
}

@media (max-width: 991px) {
  .pr-mc-bleed {
    padding-right: 3rem !important;
  }
}

.visually-hidden {
  visibility: hidden;
  position: absolute;
  height: 0;
  width: 0;
}

.fs-25 {
  font-size: 1.5625rem !important;
}

.text-small, .hero-item__excerpt {
  font-family: "lektorat-text-variable", sans-serif;
  font-size: 0.825rem;
  line-height: 1.92;
  font-variation-settings: 'wght' 385, 'wdth' 87;
}

.lektorat-bold {
  font-family: "lektorat-text-variable", sans-serif;
  font-variation-settings: 'wght' 700, 'wdth' 87;
}

.text-design, .hero-item__tag, .menu-list-link {
  font-family: "lektorat-text-variable", sans-serif;
  font-size: 0.925rem;
  font-variation-settings: 'wght' 532, 'wdth' 87;
  line-height: 1.533;
  text-transform: uppercase;
}

.text-basic, body, .typography p,
.typography li,
.typography td,
.typography th {
  font-size: 1rem;
  font-family: "rotunda-variable", sans-serif;
  font-variation-settings: 'wght' 385;
}

.text-bold {
  font-variation-settings: 'wght' 700;
}

.title,
h1, h2, h3, h4, h5, h6,
.alfa, .beta, .gamma, .delta, .epsilon, .zeta {
  font-family: "rotunda-variable", sans-serif;
  line-height: 1.2;
  text-transform: uppercase;
}

.title--h2,
h2,
.beta {
  font-size: 2.3rem;
  font-weight: 500;
  font-variation-settings: 'wght' 552;
  color: #103E28;
  text-transform: uppercase;
}

.title--h2 span,
h2 span,
.beta span {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.title--h2 span::before,
h2 span::before,
.beta span::before {
  content: '';
  display: block;
  position: absolute;
  top: -4px;
  left: -10px;
  background: #DFE4DF;
  width: calc(100% + 20px);
  height: 100%;
  z-index: -1;
}

.title--h2 span.white:before,
h2 span.white:before,
.beta span.white:before {
  background: #ffffff;
}

@media (max-width: 1199px) {
  .title--h2,
  h2,
  .beta {
    font-size: 1.5rem;
  }
}

.rotunda-thin {
  font-family: "rotunda-variable", sans-serif;
  font-variation-settings: 'wght' 208;
}

.rotunda-bold {
  font-family: "rotunda-variable", sans-serif;
  font-variation-settings: 'wght' 722;
}

.typography {
  line-height: 1.8;
}

.typography p,
.typography ul, .typography ol,
.typography h1, .typography h2, .typography h3, .typography h4, .typography h5, .typography h6,
.typography table,
.typography fieldset,
.typography blockquote,
.typography iframe {
  margin-bottom: 1rem;
}

.typography h1 {
  display: block;
  margin-top: 0;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  font-size: 30px;
  font-size: 1.875rem;
}

@media (min-width: 771px) {
  .typography h1 {
    font-size: 41px;
    font-size: 2.5625rem;
  }
}

.typography h3 {
  display: block;
  letter-spacing: 0.1px;
  font-size: 22px;
  font-size: 1.375rem;
}

@media (min-width: 771px) {
  .typography h3 {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

.typography h4 {
  display: block;
  letter-spacing: 0.1px;
  font-size: 16px;
  font-size: 1rem;
}

@media (min-width: 771px) {
  .typography h4 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.typography h5 {
  display: block;
  margin-bottom: 2.5rem;
  font-family: "rotunda-variable", sans-serif, Arial, sans-serif;
  font-weight: 600;
  color: #000;
  letter-spacing: 0.1px;
  font-size: 14px;
  font-size: 0.875rem;
}

@media (min-width: 771px) {
  .typography h5 {
    font-size: 16px;
    font-size: 1rem;
  }
}

.typography h6 {
  display: block;
  margin-bottom: 2.5rem;
  font-family: "rotunda-variable", sans-serif, Arial, sans-serif;
  font-weight: 600;
  color: #000;
  letter-spacing: 0.1px;
  font-size: 14px;
  font-size: 0.875rem;
}

@media (min-width: 771px) {
  .typography h6 {
    font-size: 16px;
    font-size: 1rem;
  }
}

.typography a {
  text-decoration: underline;
}

.typography a:hover {
  text-decoration: underline;
}

.typography p {
  display: block;
  margin-top: 0;
  margin-bottom: 1em;
}

.typography strong {
  font-weight: 700;
}

.typography img {
  display: block;
  height: auto;
  max-width: 100%;
  margin-bottom: 1rem;
  width: 100%;
}

.typography ul,
.typography ol {
  margin-bottom: 2rem;
  padding-left: 0;
  list-style: none;
}

.typography ul li,
.typography ol li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 25px;
}

.typography ul li {
  padding: 0.3rem 0;
  padding-left: 35px;
}

.typography ul li:before {
  content: "";
  position: absolute;
  top: 11px;
  left: 3px;
  display: block;
  width: 20px;
  height: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("../images/icons/arrow.svg");
}

.typography ol {
  list-style-position: inside;
  counter-reset: item;
}

.typography ol li {
  padding-left: 20px;
}

.typography ol li:before {
  position: absolute;
  top: 2px;
  left: 0;
  display: inline-block;
  content: counter(item) ".";
  font-family: "lektorat-text-variable", sans-serif, Arial, sans-serif;
  counter-increment: item;
  color: #159947;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
}

.typography table {
  margin-bottom: 2rem;
}

.typography table td {
  font-size: 1rem;
}

.typography figure {
  position: relative;
  margin: 0;
  margin-bottom: 2em;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.07);
  border-radius: 0;
  background-color: #ffffff;
  overflow: hidden;
}

.typography figure img {
  margin: 0;
}

.typography .js-gallery-item {
  text-decoration: none !important;
}

.typography figcaption {
  font-family: "lektorat-text-variable", sans-serif, Arial, sans-serif;
  font-weight: 400;
  color: #000;
  padding: 1.2rem 1.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.14px;
  border-bottom: 3px solid #159947;
  line-height: 1.6;
  background-color: #ffffff;
}

.typography figcaption strong {
  display: block;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.46px;
  font-weight: 600;
}

.gallery-group figure:hover figcaption {
  opacity: 1;
}

.gallery-group figcaption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  border-bottom: 0;
  border-top: 3px solid #159947;
  padding: 0.8rem 1.2rem;
}

@media (min-width: 993px) and (max-width: 1200px) {
  .gallery-group figcaption {
    padding: 0.4rem 0.6rem;
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

@media (min-width: 771px) {
  .gallery-group figcaption {
    opacity: 0;
  }
}

@media (max-width: 575px) {
  .gallery-group figcaption {
    padding: 0.4rem 0.6rem;
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.gallery-group img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  padding: 2rem 1.5rem 2rem;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.07);
  background-color: #ffffff;
  border-top: 3px solid #159947;
  margin-bottom: 2rem;
}

@media (min-width: 771px) {
  .info {
    padding: 2rem 3rem 2rem;
  }
}

.info .info-text {
  width: 15%;
  max-width: 15%;
  flex: 15%;
  display: inline-block;
  vertical-align: middle;
  color: #159947;
  font-family: "lektorat-text-variable", sans-serif, Arial, sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14px;
  text-transform: uppercase;
}

@media (max-width: 770px) {
  .info .info-text {
    display: block;
    width: 100%;
    max-width: 100%;
    flex: 100%;
    margin-bottom: 15px;
  }
}

.info p {
  display: inline-block;
  vertical-align: middle;
  width: 85%;
  max-width: 85%;
  flex: 85%;
  margin-bottom: 0;
  line-height: 1.6;
  padding-left: 2rem;
}

@media (max-width: 770px) {
  .info p {
    width: 100%;
    max-width: 100%;
    flex: 100%;
    padding-left: 0;
  }
}

/* Form helpers */
.form-input, .form-textarea {
  width: 100%;
  height: 60px;
  padding: 0.2rem 1.5rem;
  font-family: "lektorat-text-variable", sans-serif, Arial, sans-serif;
  font-weight: 700;
  color: #000;
  border: 2px solid #d1d7db;
  outline: none !important;
  background-color: #ffffff;
  font-size: 16px;
  font-size: 1rem;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-input:-moz-placeholder-shown, .form-textarea:-moz-placeholder-shown {
  border-color: #000;
}

.form-input:placeholder-shown, .form-textarea:placeholder-shown {
  border-color: #000;
}

.form-input:focus, .form-textarea:focus {
  border-color: #000;
}

.form-input-ext {
  border: 0;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}

.form-textarea {
  height: 150px;
  padding: 1rem 1.5rem;
  line-height: 1.5rem;
  resize: none;
  border-radius: 0;
}

@media (min-width: 576px) {
  .form-textarea-limit {
    box-sizing: border-box;
    resize: none;
    min-height: 100px;
    max-height: 250px;
  }
}

@media (max-width: 575px) {
  .form-textarea-limit {
    height: 200px !important;
  }
}

.form-select {
  width: 100%;
  height: 60px;
  padding: 0.2rem 1.5rem;
  font-family: "lektorat-text-variable", sans-serif, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  border: 2px solid #000;
  outline: none;
  background-color: #ffffff;
  background-color: #ffffff;
  font-size: 16px;
  font-size: 1rem;
  -webkit-appearance: value;
  -moz-appearance: value;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-icon {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: 60px;
  height: 60px;
  font-size: 22px;
  font-size: 1.375rem;
  color: #000;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.form-icon-block .form-input {
  padding-right: 60px;
}

.form-label {
  display: block;
  margin: 0 0 10px;
  font-family: "lektorat-text-variable", sans-serif, Arial, sans-serif;
  font-weight: 700;
  color: #000;
  font-size: 16px;
  font-size: 1rem;
}

.form-line-small {
  margin-bottom: 0.5rem;
}

.form-line-normal {
  margin-bottom: 1rem;
}

.form-line-big {
  margin-bottom: 2rem;
}

.form-placeholder {
  position: relative;
}

.form-placeholder.is-active .form-label {
  width: auto;
  transform: translateX(20px) translateY(0px);
  color: #000;
  font-size: 12px;
  font-size: 0.75rem;
}

.form-placeholder .form-input,
.form-placeholder .form-textarea {
  padding: 20px 20px 13px;
}

.form-placeholder .form-label {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  margin: 0;
  padding: 8px 0 2px;
  font-family: "lektorat-text-variable", sans-serif, Arial, sans-serif;
  font-weight: 700;
  cursor: text;
  transition: all .3s ease;
  transform: translateX(20px) translateY(15px);
  text-transform: none;
  pointer-events: none;
  color: #000;
  font-size: 16px;
  font-size: 1rem;
}

.is-field-error .field-message {
  display: block;
}

.is-field-error .select2-container .select2-selection--single,
.is-field-error .select-classic .select2-container .select2-selection--multiple,
.is-field-error .form-textarea,
.is-field-error .form-input {
  border-width: 2px !important;
  border-color: #870000 !important;
}

.field-message {
  display: none;
  margin-top: 5px;
  text-align: right;
  color: #870000;
  text-align: right;
  font-size: 14px;
  font-size: 0.875rem;
}

/* .checkbox.radiobox
	input#checkbox_payment_1.checkbox-hidden(type='radio', name="payment" required='')
	label.checkbox-label(for='checkbox_payment_1')
		span.checkbox-box
		span.checkbox-text Platba kartou */
/* Checkbox helpers */
.checkbox {
  margin-bottom: 2rem;
}

.checkbox-hidden {
  position: absolute;
  opacity: 0;
}

.checkbox-label {
  margin: 0;
  padding-left: 0;
  min-height: inherit;
  width: 100%;
  display: flex;
  align-items: center;
  vertical-align: middle;
  padding-top: 0;
  cursor: pointer;
  text-transform: none;
}

.checkbox-box {
  position: relative;
  width: 25px;
  height: 25px;
  border: 2px solid #000;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-left: 0;
}

.checkbox-text {
  display: block;
  position: relative;
  cursor: pointer;
  text-align: left;
  vertical-align: middle;
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  text-transform: uppercase;
  margin-left: 0;
}

.checkbox-hidden:checked + .checkbox-label .checkbox-box:after {
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  left: 7px;
  width: 7px;
  height: 13px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(40deg);
}

.radiobox {
  margin-bottom: 2rem;
}

.radiobox .checkbox-box {
  top: 0;
  width: 26px;
  height: 26px;
  border: 2px solid #000;
  border-radius: 100%;
}

.radiobox .checkbox-hidden:checked + .checkbox-label .checkbox-box:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 100%;
  margin-top: -5px;
  margin-left: -5px;
  width: 10px;
  height: 10px;
  background-color: #000;
}

/* Placeholder helpers */
input::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #817f7f;
}

input::-moz-input-placeholder,
select::-moz-input-placeholder,
textarea::-moz-input-placeholder {
  color: #817f7f;
}

input:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #817f7f;
}

.input-white input::-webkit-input-placeholder,
.input-white select::-webkit-input-placeholder,
.input-white textarea::-webkit-input-placeholder {
  color: white;
}

.input-white input::-moz-input-placeholder,
.input-white select::-moz-input-placeholder,
.input-white textarea::-moz-input-placeholder {
  color: white;
}

.input-white input:-ms-input-placeholder,
.input-white select:-ms-input-placeholder,
.input-white textarea:-ms-input-placeholder {
  color: white;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: transparent;
  opacity: 1;
}

input:focus::-moz-input-placeholder,
textarea:focus::-moz-input-placeholder {
  color: transparent;
  opacity: 1;
}

input:focus:-moz-input-placeholder,
textarea:focus:-moz-input-placeholder {
  color: transparent;
  opacity: 1;
}

/* Border helpers */
.border-0 {
  border: 0 !important;
}

.border-0-left {
  border-left: 0 !important;
}

.border-0-right {
  border-right: 0 !important;
}

.border-0-bottom {
  border-bottom: 0 !important;
}

.border-0-top {
  border-top: 0 !important;
}

.btn {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin: 0;
  padding: 0.9rem 2.5rem 0.75rem;
  font-weight: 400;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  border: 0;
  font-family: "rotunda-variable", sans-serif, Arial, sans-serif;
  outline: none !important;
  background: #000;
  text-align: center;
  letter-spacing: 0.075em;
  transition: background-color 250ms ease;
  font-size: 18px;
  font-size: 1.125rem;
  -webkit-appearance: none;
}

.btn:hover {
  transition: background-color 250ms ease;
}

@media (min-width: 992px) {
  .btn:hover {
    cursor: pointer;
    text-decoration: none;
    color: white;
  }
}

.btn--primary {
  background-color: #159947;
  color: #ffffff;
  border: 1px solid #159947;
}

.btn--primary:before {
  content: '';
  position: absolute;
  width: 4px;
  height: 60%;
  top: 20%;
  left: 0;
  background-color: #ffffff;
}

.btn--primary:hover, .btn--primary:focus-visible {
  background-color: #F2DD15;
  border-color: #F2DD15;
  color: #103E28;
}

.btn--primary:hover svg, .btn--primary:focus-visible svg {
  color: #103E28;
}

.btn--white {
  background: #ffffff;
  color: #000;
}

.btn--white:hover {
  background-color: #e4e5f5;
  color: #000;
}

.btn--link {
  background: transparent;
  padding: 0;
  color: #159947;
  font-weight: 700;
}

.btn--arrow {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 1.5rem;
}

.btn--arrow svg {
  display: block;
  width: 26px;
  height: 20px;
  color: #ffffff;
  margin-left: 1.5rem;
}

.btn-responsive {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  text-align: center;
}

.btn-size-small {
  font-size: 12px;
  font-size: 0.75rem;
}

.btn-size-normal {
  font-size: 14px;
  font-size: 0.875rem;
}

.btn-size-big {
  font-size: 18px;
  font-size: 1.125rem;
}

.btn-size-large {
  font-size: 20px;
  font-size: 1.25rem;
}

.btn-small {
  letter-spacing: 1.34px;
  padding: 0.5em 0.5rem;
}

.btn-normal {
  padding: 1.5em 1.5rem;
}

.btn-big {
  padding: 2em 2rem;
}

.btn-min-width-small {
  min-width: 140px;
}

.btn-min-width-normal {
  min-width: 220px;
}

.btn-min-width-big {
  min-width: 250px;
}

.btn-max-width-big {
  max-width: 250px;
}

.btn-black-fill {
  color: #ffffff;
  border: 2px solid transparent;
  background-color: #000000;
}

.btn-black-fill, .btn-black-fill:visited, .btn-black-fill:active, .btn-black-fill:focus {
  color: #ffffff;
}

.btn-black-fill:hover {
  color: #000000;
  background-color: #ffffff;
}

.btn-black-fill:hover .btn-icon {
  color: #000000;
}

.btn-black-fill .btn-icon {
  color: #ffffff;
}

.btn-yellow-fill {
  color: #ffffff;
  border: 2px solid transparent;
  background-color: #159947;
}

.btn-yellow-fill, .btn-yellow-fill:visited, .btn-yellow-fill:active, .btn-yellow-fill:focus {
  color: #ffffff;
}

.btn-yellow-fill:hover {
  color: #ffffff;
  background-color: #12833d;
}

.btn-yellow-fill.btn-arrow-right:after {
  border-color: transparent transparent transparent #ffffff;
}

.btn-white-fill {
  color: #000;
  border: 2px solid transparent;
  background-color: #ffffff;
}

.btn-white-fill, .btn-white-fill:visited, .btn-white-fill:active, .btn-white-fill:focus {
  color: #000;
}

.btn-white-fill:hover {
  color: #000;
  background-color: white;
}

.btn-white-fill.btn-arrow-right:after {
  border-color: transparent transparent transparent #000;
}

.btn-white-outline {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: transparent;
}

.btn-white-outline, .btn-white-outline:visited, .btn-white-outline:active, .btn-white-outline:focus {
  color: #ffffff;
}

.btn-white-outline:hover {
  color: #000;
  border: 1px solid #ffffff;
  background-color: #ffffff;
}

.btn-white-outline.btn-arrow-right:after {
  border-color: transparent transparent transparent #ffffff;
}

.btn-arrow-right {
  position: relative;
  padding-right: 40px;
}

@media (min-width: 992px) {
  .btn-arrow-right {
    padding-right: 60px;
  }
}

.btn-arrow-right:after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4.5px 0 4.5px 5px;
  border-color: transparent transparent transparent #159947;
}

@media (min-width: 992px) {
  .btn-arrow-right:after {
    right: 25px;
  }
}

.btn-arrow {
  position: relative;
  display: block;
  width: 7px;
  height: 14px;
}

.btn-arrow:after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 7px;
  border-color: transparent transparent transparent #159947;
}

.btn-arrow-small:after {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4.5px 0 4.5px 5px;
  border-color: transparent transparent transparent #159947;
}

@media (min-width: 992px) {
  .btn-group {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 991px) {
  .btn-group .btn-item {
    margin-bottom: 1rem;
  }
}

.section-menu-links .btn {
  font-size: 0.875rem;
  padding: 0.5rem 2.75rem 0.5rem 1.25rem;
}

/* Color helpers */
.bg-black-normal {
  background-color: #000;
}

.bg-gray-light {
  background-color: #DFE4DF;
}

.bg-white {
  background-color: #ffffff;
}

.txt-white {
  color: #ffffff;
}

.txt-yellow {
  color: #159947;
}

.txt-black {
  color: #000000;
}

.h-white h1, .h-white .alfa,
.h-white h2, .h-white .beta,
.h-white h3, .h-white .gamma,
.h-white h4, .h-white .delta,
.h-white h5, .h-white .epsilon,
.h-white h6, .h-white .zeta {
  color: #ffffff;
}

.h-yellow h1, .h-yellow .alfa,
.h-yellow h2, .h-yellow .beta,
.h-yellow h3, .h-yellow .gamma,
.h-yellow h4, .h-yellow .delta,
.h-yellow h5, .h-yellow .epsilon,
.h-yellow h6, .h-yellow .zeta {
  color: #159947;
}

.p-white p {
  color: #ffffff;
}

.p-blue-light p {
  color: #9c9c9c;
}

.ul-white li {
  color: #ffffff !important;
}

.ul-white li:before {
  background-color: #ffffff !important;
}

.ol-white li {
  color: #ffffff !important;
}

.ol-white li:before {
  color: #ffffff !important;
}

/* Float helpers */
.float-0 {
  float: none;
}

.float-r {
  float: right;
}

.float-l {
  float: left;
}

@media (max-width: 1199px) {
  .float-lg-r {
    float: right;
  }
  .float-lg-l {
    float: left;
  }
}

@media (max-width: 991px) {
  .float-md-l {
    float: left;
  }
  .float-md-r {
    float: right;
  }
}

@media (max-width: 770px) {
  .float-sm-l {
    float: left;
  }
  .float-sm-r {
    float: right;
  }
}

@media (max-width: 575px) {
  .float-xs-l {
    float: left;
  }
  .float-xs-r {
    float: right;
  }
}

/* Gutter helpers */
.no-gutter {
  margin: 0;
}

.no-gutter > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.gutter-10.row {
  margin-right: -5px;
  margin-left: -5px;
}

.gutter-10 > [class*="col-"],
.gutter-10 > [class*=" col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

.gutter-20.row {
  margin-right: -10px;
  margin-left: -10px;
}

.gutter-20 > [class*="col-"],
.gutter-20 > [class*=" col-"] {
  padding-right: 10px;
  padding-left: 10px;
}

.gutter-30.row {
  margin-right: -15px;
  margin-left: -15px;
}

.gutter-30 > [class*="col-"],
.gutter-30 > [class*=" col-"] {
  padding-right: 15px;
  padding-left: 15px;
}

.gutter-40.row {
  margin-right: -20px;
  margin-left: -20px;
}

.gutter-40 > [class*="col-"],
.gutter-40 > [class*=" col-"] {
  padding-right: 20px;
  padding-left: 20px;
}

.gutter-50.row {
  margin-right: -25px;
  margin-left: -25px;
}

.gutter-50 > [class*="col-"],
.gutter-50 > [class*=" col-"] {
  padding-right: 25px;
  padding-left: 25px;
}

.gutter-60.row {
  margin-right: -30px;
  margin-left: -30px;
}

.gutter-60 > [class*="col-"],
.gutter-60 > [class*=" col-"] {
  padding-right: 30px;
  padding-left: 30px;
}

@media (min-width: 576px) {
  .gutter-xs-10.row {
    margin-right: -5px;
    margin-left: -5px;
  }
  .gutter-xs-10 > [class*="col-"],
  .gutter-xs-10 > [class*=" col-"] {
    padding-right: 5px;
    padding-left: 5px;
  }
  .gutter-xs-20.row {
    margin-right: -10px;
    margin-left: -10px;
  }
  .gutter-xs-20 > [class*="col-"],
  .gutter-xs-20 > [class*=" col-"] {
    padding-right: 10px;
    padding-left: 10px;
  }
  .gutter-xs-30.row {
    margin-right: -15px;
    margin-left: -15px;
  }
  .gutter-xs-30 > [class*="col-"],
  .gutter-xs-30 > [class*=" col-"] {
    padding-right: 15px;
    padding-left: 15px;
  }
  .gutter-xs-40.row {
    margin-right: -20px;
    margin-left: -20px;
  }
  .gutter-xs-40 > [class*="col-"],
  .gutter-xs-40 > [class*=" col-"] {
    padding-right: 20px;
    padding-left: 20px;
  }
  .gutter-xs-50.row {
    margin-right: -25px;
    margin-left: -25px;
  }
  .gutter-xs-50 > [class*="col-"],
  .gutter-xs-50 > [class*=" col-"] {
    padding-right: 25px;
    padding-left: 25px;
  }
  .gutter-xs-60.row {
    margin-right: -30px;
    margin-left: -30px;
  }
  .gutter-xs-60 > [class*="col-"],
  .gutter-xs-60 > [class*=" col-"] {
    padding-right: 30px;
    padding-left: 30px;
  }
  .gutter-xs-100.row {
    margin-right: -50px;
    margin-left: -50px;
  }
  .gutter-xs-100 > [class*="col-"],
  .gutter-xs-100 > [class*=" col-"] {
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media (min-width: 771px) {
  .gutter-sm-10.row {
    margin-right: -5px;
    margin-left: -5px;
  }
  .gutter-sm-10 > [class*="col-"],
  .gutter-sm-10 > [class*=" col-"] {
    padding-right: 5px;
    padding-left: 5px;
  }
  .gutter-sm-20.row {
    margin-right: -10px;
    margin-left: -10px;
  }
  .gutter-sm-20 > [class*="col-"],
  .gutter-sm-20 > [class*=" col-"] {
    padding-right: 10px;
    padding-left: 10px;
  }
  .gutter-sm-30.row {
    margin-right: -15px;
    margin-left: -15px;
  }
  .gutter-sm-30 > [class*="col-"],
  .gutter-sm-30 > [class*=" col-"] {
    padding-right: 15px;
    padding-left: 15px;
  }
  .gutter-sm-40.row {
    margin-right: -20px;
    margin-left: -20px;
  }
  .gutter-sm-40 > [class*="col-"],
  .gutter-sm-40 > [class*=" col-"] {
    padding-right: 20px;
    padding-left: 20px;
  }
  .gutter-sm-50.row {
    margin-right: -25px;
    margin-left: -25px;
  }
  .gutter-sm-50 > [class*="col-"],
  .gutter-sm-50 > [class*=" col-"] {
    padding-right: 25px;
    padding-left: 25px;
  }
  .gutter-sm-60.row {
    margin-right: -30px;
    margin-left: -30px;
  }
  .gutter-sm-60 > [class*="col-"],
  .gutter-sm-60 > [class*=" col-"] {
    padding-right: 30px;
    padding-left: 30px;
  }
  .gutter-sm-100.row {
    margin-right: -50px;
    margin-left: -50px;
  }
  .gutter-sm-100 > [class*="col-"],
  .gutter-sm-100 > [class*=" col-"] {
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media (min-width: 992px) {
  .gutter-md-10.row {
    margin-right: -5px;
    margin-left: -5px;
  }
  .gutter-md-10 > [class*="col-"],
  .gutter-md-10 > [class*=" col-"] {
    padding-right: 5px;
    padding-left: 5px;
  }
  .gutter-md-20.row {
    margin-right: -10px;
    margin-left: -10px;
  }
  .gutter-md-20 > [class*="col-"],
  .gutter-md-20 > [class*=" col-"] {
    padding-right: 10px;
    padding-left: 10px;
  }
  .gutter-md-30.row {
    margin-right: -15px;
    margin-left: -15px;
  }
  .gutter-md-30 > [class*="col-"],
  .gutter-md-30 > [class*=" col-"] {
    padding-right: 15px;
    padding-left: 15px;
  }
  .gutter-md-40.row {
    margin-right: -20px;
    margin-left: -20px;
  }
  .gutter-md-40 > [class*="col-"],
  .gutter-md-40 > [class*=" col-"] {
    padding-right: 20px;
    padding-left: 20px;
  }
  .gutter-md-50.row {
    margin-right: -25px;
    margin-left: -25px;
  }
  .gutter-md-50 > [class*="col-"],
  .gutter-md-50 > [class*=" col-"] {
    padding-right: 25px;
    padding-left: 25px;
  }
  .gutter-md-60.row {
    margin-right: -30px;
    margin-left: -30px;
  }
  .gutter-md-60 > [class*="col-"],
  .gutter-md-60 > [class*=" col-"] {
    padding-right: 30px;
    padding-left: 30px;
  }
  .gutter-md-100.row {
    margin-right: -50px;
    margin-left: -50px;
  }
  .gutter-md-100 > [class*="col-"],
  .gutter-md-100 > [class*=" col-"] {
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media (min-width: 1200px) {
  .gutter-lg-10.row {
    margin-right: -5px;
    margin-left: -5px;
  }
  .gutter-lg-10 > [class*="col-"],
  .gutter-lg-10 > [class*=" col-"] {
    padding-right: 5px;
    padding-left: 5px;
  }
  .gutter-lg-20.row {
    margin-right: -10px;
    margin-left: -10px;
  }
  .gutter-lg-20 > [class*="col-"],
  .gutter-lg-20 > [class*=" col-"] {
    padding-right: 10px;
    padding-left: 10px;
  }
  .gutter-lg-30.row {
    margin-right: -15px;
    margin-left: -15px;
  }
  .gutter-lg-30 > [class*="col-"],
  .gutter-lg-30 > [class*=" col-"] {
    padding-right: 15px;
    padding-left: 15px;
  }
  .gutter-lg-40.row {
    margin-right: -20px;
    margin-left: -20px;
  }
  .gutter-lg-40 > [class*="col-"],
  .gutter-lg-40 > [class*=" col-"] {
    padding-right: 20px;
    padding-left: 20px;
  }
  .gutter-lg-50.row {
    margin-right: -25px;
    margin-left: -25px;
  }
  .gutter-lg-50 > [class*="col-"],
  .gutter-lg-50 > [class*=" col-"] {
    padding-right: 25px;
    padding-left: 25px;
  }
  .gutter-lg-60.row {
    margin-right: -30px;
    margin-left: -30px;
  }
  .gutter-lg-60 > [class*="col-"],
  .gutter-lg-60 > [class*=" col-"] {
    padding-right: 30px;
    padding-left: 30px;
  }
  .gutter-lg-100.row {
    margin-right: -50px;
    margin-left: -50px;
  }
  .gutter-lg-100 > [class*="col-"],
  .gutter-lg-100 > [class*=" col-"] {
    padding-right: 50px;
    padding-left: 50px;
  }
}

/* Hidden content */
.hidden-content {
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: opacity 250ms ease;
}

.hidden-content.is-active {
  height: auto;
  opacity: 1;
  overflow: visible;
  visibility: visible;
  transition: opacity 250ms ease;
}

@media (min-width: 576px) {
  .hidden-xs-content {
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: opacity 250ms ease;
  }
  .hidden-xs-content.is-active {
    height: auto;
    opacity: 1;
    overflow: visible;
    visibility: visible;
    transition: opacity 250ms ease;
  }
}

@media (min-width: 771px) {
  .hidden-sm-content {
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: opacity 250ms ease;
  }
  .hidden-sm-content.is-active {
    height: auto;
    opacity: 1;
    overflow: visible;
    visibility: visible;
    transition: opacity 250ms ease;
  }
}

@media (min-width: 992px) {
  .hidden-md-content {
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: opacity 250ms ease;
  }
  .hidden-md-content.is-active {
    height: auto;
    opacity: 1;
    overflow: visible;
    visibility: visible;
    transition: opacity 250ms ease;
  }
}

@media (min-width: 1200px) {
  .hidden-lg-content {
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: opacity 250ms ease;
  }
  .hidden-lg-content.is-active {
    height: auto;
    opacity: 1;
    overflow: visible;
    visibility: visible;
    transition: opacity 250ms ease;
  }
}

/* Hidden class */
.invisible {
  visibility: hidden;
}

.visible {
  visibility: visible;
}

.hide {
  display: none;
}

.show {
  display: block;
}

.overflow {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-visible {
  overflow: visible;
}

/* HR helper */
.hr-line {
  margin: 30px 0;
  height: 1px;
  background-color: #DFE4DF;
}

.hr-line-small {
  margin: 10px 0;
}

.hr-line-normal {
  margin: 20px 0;
}

.hr-line-big {
  margin: 20px 0;
}

.hr-line-width-small {
  width: 100px;
}

.hr-line-width-normal {
  width: 200px;
}

.hr-line-width-big {
  width: 300px;
}

.hr-line-center {
  margin: 0 auto;
}

.hr-line-black {
  background-color: #000;
}

.hr-line-brown {
  background-color: #f3eee8;
}

/* Icon helpers */
.ico-size-small svg {
  font-size: 12px;
  font-size: 0.75rem;
}

.ico-size-normal svg {
  font-size: 12px;
  font-size: 0.75rem;
}

.icon-size-73 svg {
  font-size: 73px;
  font-size: 4.5625rem;
}

.icon-size-110 svg {
  font-size: 110px;
  font-size: 6.875rem;
}

/* Image helpers */
.img {
  display: block;
}

.img-full {
  width: 100%;
}

@media (max-width: 575px) {
  .img-xs-full {
    width: 100%;
  }
}

.img-contain {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

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

.img-cover {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-hover {
  display: block;
  overflow: hidden;
}

.img-hover:hover > img {
  transform: scale(1.05, 1.05);
}

.img-hover img {
  transition: transform 400ms ease-out;
}

.bg-image-hover {
  display: block;
  overflow: hidden;
}

.bg-image-hover:hover > .bg-image {
  transform: scale(1.05, 1.05);
}

.bg-image-hover .bg-image {
  transition: transform 400ms ease-out;
}

.img-flex {
  display: flex;
}

.img-flex img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 576px) {
  .img-flex-gallery {
    height: 380px;
  }
}

@media (min-width: 992px) {
  .img-flex-gallery {
    height: 380px;
  }
}

@media (max-width: 575px) {
  .img-flex-gallery {
    height: 160px;
  }
}

@media (min-width: 1441px) and (max-width: 1600px) {
  .img-flex-gallery {
    height: 380px;
  }
}

@media (min-width: 1201px) and (max-width: 1440px) {
  .img-flex-gallery {
    height: 380px;
  }
}

@media (min-width: 993px) and (max-width: 1200px) {
  .img-flex-gallery {
    height: 380px;
  }
}

.bg-image {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media (max-width: 770px) {
  .bg-image-offer {
    background-position: center right;
  }
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: block;
  width: 100%;
  height: 100%;
}

.bg-image-leaf {
  top: auto;
  bottom: 40px;
  left: 10px;
  width: 141px;
  height: 118px;
}

@media (max-width: 770px) {
  .bg-image-leaf {
    bottom: 0px;
    left: -40px;
  }
}

.bg-image-cherry {
  left: 10px;
  top: 0;
  width: 218px;
  height: 320px;
}

.bg-image-leaf-blur {
  left: auto;
  right: 0;
  top: 30px;
  width: 287px;
  height: 192px;
}

[class*='aspect-ratio-'] {
  display: block;
  position: relative;
}

[class*='aspect-ratio-'] > img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.aspect-ratio-wide {
  padding-top: 56.25%;
}

.aspect-ratio-square {
  padding-top: 100%;
}

/* Margin helpers */
.margin-0 {
  margin: 0 !important;
}

@media (min-width: 576px) {
  .margin-xs-0 {
    margin: 0 !important;
  }
}

@media (min-width: 771px) {
  .margin-sm-0 {
    margin: 0 !important;
  }
}

@media (min-width: 992px) {
  .margin-md-0 {
    margin: 0 !important;
  }
}

@media (min-width: 1200px) {
  .margin-lg-0 {
    margin: 0 !important;
  }
}

@media (min-width: 1440px) {
  .margin-xl-0 {
    margin: 0 !important;
  }
}

.margin-bottom-01 {
  margin-bottom: 0.1rem;
}

.margin-bottom-02 {
  margin-bottom: 0.2rem;
}

.margin-bottom-03 {
  margin-bottom: 0.3rem;
}

.margin-bottom-04 {
  margin-bottom: 0.4rem;
}

.margin-bottom-05 {
  margin-bottom: 0.5rem;
}

.margin-bottom-08 {
  margin-bottom: 0.8rem;
}

.margin-bottom-1 {
  margin-bottom: 1rem;
}

.margin-bottom-1-5 {
  margin-bottom: 1.5rem;
}

.margin-bottom-2 {
  margin-bottom: 2rem;
}

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

.margin-bottom-4 {
  margin-bottom: 4rem;
}

.margin-bottom-5 {
  margin-bottom: 5rem;
}

.margin-bottom-6 {
  margin-bottom: 6rem;
}

.margin-bottom-7 {
  margin-bottom: 7rem;
}

.margin-bottom-8 {
  margin-bottom: 8rem;
}

.margin-bottom-9 {
  margin-bottom: 9rem;
}

.margin-bottom-10 {
  margin-bottom: 10rem;
}

@media (min-width: 576px) {
  .margin-bottom-xs-1 {
    margin-bottom: 1rem;
  }
  .margin-bottom-xs-2 {
    margin-bottom: 2rem;
  }
  .margin-bottom-xs-3 {
    margin-bottom: 3rem;
  }
  .margin-bottom-xs-4 {
    margin-bottom: 4rem;
  }
  .margin-bottom-xs-5 {
    margin-bottom: 5rem;
  }
  .margin-bottom-xs-6 {
    margin-bottom: 6rem;
  }
}

@media (min-width: 771px) {
  .margin-bottom-sm-1 {
    margin-bottom: 1rem;
  }
  .margin-bottom-sm-2 {
    margin-bottom: 2rem;
  }
  .margin-bottom-sm-3 {
    margin-bottom: 3rem;
  }
  .margin-bottom-sm-4 {
    margin-bottom: 4rem;
  }
  .margin-bottom-sm-5 {
    margin-bottom: 5rem;
  }
  .margin-bottom-sm-6 {
    margin-bottom: 6rem;
  }
}

@media (min-width: 992px) {
  .margin-bottom-md-1 {
    margin-bottom: 1rem;
  }
  .margin-bottom-md-2 {
    margin-bottom: 2rem;
  }
  .margin-bottom-md-3 {
    margin-bottom: 3rem;
  }
  .margin-bottom-md-4 {
    margin-bottom: 4rem;
  }
  .margin-bottom-md-5 {
    margin-bottom: 5rem;
  }
  .margin-bottom-md-6 {
    margin-bottom: 6rem;
  }
}

@media (min-width: 1200px) {
  .margin-bottom-lg-1 {
    margin-bottom: 1rem;
  }
  .margin-bottom-lg-2 {
    margin-bottom: 2rem;
  }
  .margin-bottom-lg-3 {
    margin-bottom: 3rem;
  }
  .margin-bottom-lg-4 {
    margin-bottom: 4rem;
  }
  .margin-bottom-lg-5 {
    margin-bottom: 5rem;
  }
  .margin-bottom-lg-6 {
    margin-bottom: 6rem;
  }
}

@media (min-width: 1440px) {
  .margin-bottom-xl-1 {
    margin-bottom: 1rem;
  }
  .margin-bottom-xl-2 {
    margin-bottom: 2rem;
  }
  .margin-bottom-xl-3 {
    margin-bottom: 3rem;
  }
  .margin-bottom-xl-4 {
    margin-bottom: 4rem;
  }
  .margin-bottom-xl-5 {
    margin-bottom: 5rem;
  }
  .margin-bottom-xl-6 {
    margin-bottom: 6rem;
  }
}

.margin-top-01 {
  margin-top: 0.1rem;
}

.margin-top-02 {
  margin-top: 0.2rem;
}

.margin-top-03 {
  margin-top: 0.3rem;
}

.margin-top-04 {
  margin-top: 0.4rem;
}

.margin-top-05 {
  margin-top: 0.5rem;
}

.margin-top-08 {
  margin-top: 0.8rem;
}

.margin-top-1 {
  margin-top: 1rem;
}

.margin-top-1-5 {
  margin-top: 1.5rem;
}

.margin-top-2 {
  margin-top: 2rem;
}

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

.margin-top-4 {
  margin-top: 4rem;
}

.margin-top-5 {
  margin-top: 5rem;
}

.margin-top-6 {
  margin-top: 6rem;
}

.margin-top-7 {
  margin-top: 7rem;
}

.margin-top-8 {
  margin-top: 8rem;
}

.margin-top-9 {
  margin-top: 9rem;
}

.margin-top-10 {
  margin-top: 10rem;
}

@media (min-width: 576px) {
  .margin-top-xs-1 {
    margin-top: 1rem;
  }
  .margin-top-xs-2 {
    margin-top: 2rem;
  }
  .margin-top-xs-3 {
    margin-top: 3rem;
  }
  .margin-top-xs-4 {
    margin-top: 4rem;
  }
  .margin-top-xs-5 {
    margin-top: 5rem;
  }
  .margin-top-xs-6 {
    margin-top: 6rem;
  }
}

@media (min-width: 771px) {
  .margin-top-sm-1 {
    margin-top: 1rem;
  }
  .margin-top-sm-2 {
    margin-top: 2rem;
  }
  .margin-top-sm-3 {
    margin-top: 3rem;
  }
  .margin-top-sm-4 {
    margin-top: 4rem;
  }
  .margin-top-sm-5 {
    margin-top: 5rem;
  }
  .margin-top-sm-6 {
    margin-top: 6rem;
  }
}

@media (min-width: 992px) {
  .margin-top-md-1 {
    margin-top: 1rem;
  }
  .margin-top-md-2 {
    margin-top: 2rem;
  }
  .margin-top-md-3 {
    margin-top: 3rem;
  }
  .margin-top-md-4 {
    margin-top: 4rem;
  }
  .margin-top-md-5 {
    margin-top: 5rem;
  }
  .margin-top-md-6 {
    margin-top: 6rem;
  }
}

@media (min-width: 1200px) {
  .margin-top-lg-1 {
    margin-top: 1rem;
  }
  .margin-top-lg-2 {
    margin-top: 2rem;
  }
  .margin-top-lg-3 {
    margin-top: 3rem;
  }
  .margin-top-lg-4 {
    margin-top: 4rem;
  }
  .margin-top-lg-5 {
    margin-top: 5rem;
  }
  .margin-top-lg-6 {
    margin-top: 6rem;
  }
}

@media (min-width: 1440px) {
  .margin-top-xl-1 {
    margin-top: 1rem;
  }
  .margin-top-xl-2 {
    margin-top: 2rem;
  }
  .margin-top-xl-3 {
    margin-top: 3rem;
  }
  .margin-top-xl-4 {
    margin-top: 4rem;
  }
  .margin-top-xl-5 {
    margin-top: 5rem;
  }
  .margin-top-xl-6 {
    margin-top: 6rem;
  }
}

.margin-left-01 {
  margin-left: 0.1rem;
}

.margin-left-02 {
  margin-left: 0.2rem;
}

.margin-left-03 {
  margin-left: 0.3rem;
}

.margin-left-04 {
  margin-left: 0.4rem;
}

.margin-left-05 {
  margin-left: 0.5rem;
}

.margin-left-08 {
  margin-left: 0.8rem;
}

.margin-left-1 {
  margin-left: 1rem;
}

.margin-left-1-5 {
  margin-left: 1.5rem;
}

.margin-left-2 {
  margin-left: 2rem;
}

.margin-left-3 {
  margin-left: 3rem;
}

.margin-left-4 {
  margin-left: 4rem;
}

.margin-left-5 {
  margin-left: 5rem;
}

.margin-left-6 {
  margin-left: 6rem;
}

.margin-left-7 {
  margin-left: 7rem;
}

.margin-left-8 {
  margin-left: 8rem;
}

.margin-left-9 {
  margin-left: 9rem;
}

.margin-left-10 {
  margin-left: 10rem;
}

@media (min-width: 576px) {
  .margin-left-xs-1 {
    margin-left: 1rem;
  }
  .margin-left-xs-2 {
    margin-left: 2rem;
  }
  .margin-left-xs-3 {
    margin-left: 3rem;
  }
  .margin-left-xs-4 {
    margin-left: 4rem;
  }
  .margin-left-xs-5 {
    margin-left: 5rem;
  }
  .margin-left-xs-6 {
    margin-left: 6rem;
  }
}

@media (min-width: 771px) {
  .margin-left-sm-1 {
    margin-left: 1rem;
  }
  .margin-left-sm-2 {
    margin-left: 2rem;
  }
  .margin-left-sm-3 {
    margin-left: 3rem;
  }
  .margin-left-sm-4 {
    margin-left: 4rem;
  }
  .margin-left-sm-5 {
    margin-left: 5rem;
  }
  .margin-left-sm-6 {
    margin-left: 6rem;
  }
}

@media (min-width: 992px) {
  .margin-left-md-1 {
    margin-left: 1rem;
  }
  .margin-left-md-2 {
    margin-left: 2rem;
  }
  .margin-left-md-3 {
    margin-left: 3rem;
  }
  .margin-left-md-4 {
    margin-left: 4rem;
  }
  .margin-left-md-5 {
    margin-left: 5rem;
  }
  .margin-left-md-6 {
    margin-left: 6rem;
  }
}

@media (min-width: 1200px) {
  .margin-left-lg-1 {
    margin-left: 1rem;
  }
  .margin-left-lg-2 {
    margin-left: 2rem;
  }
  .margin-left-lg-3 {
    margin-left: 3rem;
  }
  .margin-left-lg-4 {
    margin-left: 4rem;
  }
  .margin-left-lg-5 {
    margin-left: 5rem;
  }
  .margin-left-lg-6 {
    margin-left: 6rem;
  }
}

@media (min-width: 1440px) {
  .margin-left-xl-1 {
    margin-left: 1rem;
  }
  .margin-left-xl-2 {
    margin-left: 2rem;
  }
  .margin-left-xl-3 {
    margin-left: 3rem;
  }
  .margin-left-xl-4 {
    margin-left: 4rem;
  }
  .margin-left-xl-5 {
    margin-left: 5rem;
  }
  .margin-left-xl-6 {
    margin-left: 6rem;
  }
}

.margin-right-01 {
  margin-right: 0.1rem;
}

.margin-right-02 {
  margin-right: 0.2rem;
}

.margin-right-03 {
  margin-right: 0.3rem;
}

.margin-right-04 {
  margin-right: 0.4rem;
}

.margin-right-05 {
  margin-right: 0.5rem;
}

.margin-right-08 {
  margin-right: 0.8rem;
}

.margin-right-1 {
  margin-right: 1rem;
}

.margin-right-1-5 {
  margin-right: 1.5rem;
}

.margin-right-2 {
  margin-right: 2rem;
}

.margin-right-3 {
  margin-right: 3rem;
}

.margin-right-4 {
  margin-right: 4rem;
}

.margin-right-5 {
  margin-right: 5rem;
}

.margin-right-6 {
  margin-right: 6rem;
}

.margin-right-7 {
  margin-right: 7rem;
}

.margin-right-8 {
  margin-right: 8rem;
}

.margin-right-9 {
  margin-right: 9rem;
}

.margin-right-10 {
  margin-right: 10rem;
}

@media (min-width: 576px) {
  .margin-right-xs-1 {
    margin-right: 1rem;
  }
  .margin-right-xs-2 {
    margin-right: 2rem;
  }
  .margin-right-xs-3 {
    margin-right: 3rem;
  }
  .margin-right-xs-4 {
    margin-right: 4rem;
  }
  .margin-right-xs-5 {
    margin-right: 5rem;
  }
  .margin-right-xs-6 {
    margin-right: 6rem;
  }
}

@media (min-width: 771px) {
  .margin-right-sm-1 {
    margin-right: 1rem;
  }
  .margin-right-sm-2 {
    margin-right: 2rem;
  }
  .margin-right-sm-3 {
    margin-right: 3rem;
  }
  .margin-right-sm-4 {
    margin-right: 4rem;
  }
  .margin-right-sm-5 {
    margin-right: 5rem;
  }
  .margin-right-sm-6 {
    margin-right: 6rem;
  }
}

@media (min-width: 992px) {
  .margin-right-md-1 {
    margin-right: 1rem;
  }
  .margin-right-md-2 {
    margin-right: 2rem;
  }
  .margin-right-md-3 {
    margin-right: 3rem;
  }
  .margin-right-md-4 {
    margin-right: 4rem;
  }
  .margin-right-md-5 {
    margin-right: 5rem;
  }
  .margin-right-md-6 {
    margin-right: 6rem;
  }
}

@media (min-width: 1200px) {
  .margin-right-lg-1 {
    margin-right: 1rem;
  }
  .margin-right-lg-2 {
    margin-right: 2rem;
  }
  .margin-right-lg-3 {
    margin-right: 3rem;
  }
  .margin-right-lg-4 {
    margin-right: 4rem;
  }
  .margin-right-lg-5 {
    margin-right: 5rem;
  }
  .margin-right-lg-6 {
    margin-right: 6rem;
  }
}

@media (min-width: 1440px) {
  .margin-right-xl-1 {
    margin-right: 1rem;
  }
  .margin-right-xl-2 {
    margin-right: 2rem;
  }
  .margin-right-xl-3 {
    margin-right: 3rem;
  }
  .margin-right-xl-4 {
    margin-right: 4rem;
  }
  .margin-right-xl-5 {
    margin-right: 5rem;
  }
  .margin-right-xl-6 {
    margin-right: 6rem;
  }
}

.margin-center {
  margin: 0 auto;
}

@media (min-width: 576px) {
  .margin-xs-center {
    margin: 0 auto;
  }
}

@media (min-width: 771px) {
  .margin-sm-center {
    margin: 0 auto;
  }
}

@media (min-width: 992px) {
  .margin-md-center {
    margin: 0 auto;
  }
}

@media (min-width: 1200px) {
  .margin-lg-center {
    margin: 0 auto;
  }
}

.margin-top-0 {
  margin-top: 0 !important;
}

@media (min-width: 576px) {
  .margin-top-xs-0 {
    margin-top: 0 !important;
  }
}

@media (min-width: 771px) {
  .margin-top-sm-0 {
    margin-top: 0 !important;
  }
}

@media (min-width: 992px) {
  .margin-top-md-0 {
    margin-top: 0 !important;
  }
}

@media (min-width: 1200px) {
  .margin-top-lg-0 {
    margin-top: 0 !important;
  }
}

@media (max-width: 1199px) {
  .margin-bp-top-lg-0 {
    margin-top: 0 !important;
  }
}

@media (max-width: 991px) {
  .margin-bp-top-md-0 {
    margin-top: 0 !important;
  }
}

@media (max-width: 770px) {
  .margin-bp-top-sm-0 {
    margin-top: 0 !important;
  }
}

@media (max-width: 575px) {
  .margin-bp-top-xs-0 {
    margin-top: 0 !important;
  }
}

.margin-right-0 {
  margin-right: 0 !important;
}

@media (min-width: 576px) {
  .margin-right-xs-0 {
    margin-right: 0 !important;
  }
}

@media (min-width: 771px) {
  .margin-right-sm-0 {
    margin-right: 0 !important;
  }
}

@media (min-width: 992px) {
  .margin-right-md-0 {
    margin-right: 0 !important;
  }
}

@media (min-width: 1200px) {
  .margin-right-lg-0 {
    margin-right: 0 !important;
  }
}

@media (max-width: 1199px) {
  .margin-bp-right-lg-0 {
    margin-right: 0 !important;
  }
}

@media (max-width: 991px) {
  .margin-bp-right-md-0 {
    margin-right: 0 !important;
  }
}

@media (max-width: 770px) {
  .margin-bp-right-sm-0 {
    margin-right: 0 !important;
  }
}

@media (max-width: 575px) {
  .margin-bp-right-xs-0 {
    margin-right: 0 !important;
  }
}

.margin-bottom-0 {
  margin-bottom: 0 !important;
}

@media (min-width: 576px) {
  .margin-bottom-xs-0 {
    margin-bottom: 0 !important;
  }
}

@media (min-width: 771px) {
  .margin-bottom-sm-0 {
    margin-bottom: 0 !important;
  }
}

@media (min-width: 992px) {
  .margin-bottom-md-0 {
    margin-bottom: 0 !important;
  }
}

@media (min-width: 1200px) {
  .margin-bottom-lg-0 {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 1199px) {
  .margin-bp-bottom-lg-0 {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 991px) {
  .margin-bp-bottom-md-0 {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 770px) {
  .margin-bp-bottom-sm-0 {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 575px) {
  .margin-bp-bottom-xs-0 {
    margin-bottom: 0 !important;
  }
}

.margin-left-0 {
  margin-left: 0 !important;
}

@media (min-width: 576px) {
  .margin-left-xs-0 {
    margin-left: 0 !important;
  }
}

@media (min-width: 771px) {
  .margin-left-sm-0 {
    margin-left: 0 !important;
  }
}

@media (min-width: 992px) {
  .margin-left-md-0 {
    margin-left: 0 !important;
  }
}

@media (min-width: 1200px) {
  .margin-left-lg-0 {
    margin-left: 0 !important;
  }
}

@media (max-width: 1199px) {
  .margin-bp-left-lg-0 {
    margin-left: 0 !important;
  }
}

@media (max-width: 991px) {
  .margin-bp-left-md-0 {
    margin-left: 0 !important;
  }
}

@media (max-width: 770px) {
  .margin-bp-left-sm-0 {
    margin-left: 0 !important;
  }
}

@media (max-width: 575px) {
  .margin-bp-left-xs-0 {
    margin-left: 0 !important;
  }
}

/* Padding block */
.padding-0 {
  padding: 0 !important;
}

@media (min-width: 576px) {
  .padding-xs-0 {
    padding: 0 !important;
  }
}

@media (min-width: 771px) {
  .padding-sm-0 {
    padding: 0 !important;
  }
}

@media (min-width: 992px) {
  .padding-md-0 {
    padding: 0 !important;
  }
}

@media (min-width: 1440px) {
  .padding-xl-0 {
    padding: 0 !important;
  }
}

.padding-top-0 {
  padding-top: 0 !important;
}

.padding-top-xs-0 {
  padding-top: 0 !important;
}

@media (min-width: 771px) {
  .padding-top-sm-0 {
    padding-top: 0 !important;
  }
}

@media (min-width: 992px) {
  .padding-top-md-0 {
    padding-top: 0 !important;
  }
}

@media (min-width: 1200px) {
  .padding-top-lg-0 {
    padding-top: 0 !important;
  }
}

@media (max-width: 1199px) {
  .padding-bp-top-lg-0 {
    padding-top: 0 !important;
  }
}

@media (max-width: 991px) {
  .padding-bp-top-md-0 {
    padding-top: 0 !important;
  }
}

@media (max-width: 770px) {
  .padding-bp-top-sm-0 {
    padding-top: 0 !important;
  }
}

@media (max-width: 575px) {
  .padding-bp-top-xs-0 {
    padding-top: 0 !important;
  }
}

.padding-right-0 {
  padding-right: 0 !important;
}

.padding-right-xs-0 {
  padding-right: 0 !important;
}

@media (min-width: 771px) {
  .padding-right-sm-0 {
    padding-right: 0 !important;
  }
}

@media (min-width: 992px) {
  .padding-right-md-0 {
    padding-right: 0 !important;
  }
}

@media (min-width: 1200px) {
  .padding-right-lg-0 {
    padding-right: 0 !important;
  }
}

@media (max-width: 1199px) {
  .padding-bp-right-lg-0 {
    padding-right: 0 !important;
  }
}

@media (max-width: 991px) {
  .padding-bp-right-md-0 {
    padding-right: 0 !important;
  }
}

@media (max-width: 770px) {
  .padding-bp-right-sm-0 {
    padding-right: 0 !important;
  }
}

@media (max-width: 575px) {
  .padding-bp-right-xs-0 {
    padding-right: 0 !important;
  }
}

.padding-bottom-0 {
  padding-bottom: 0 !important;
}

.padding-bottom-xs-0 {
  padding-bottom: 0 !important;
}

@media (min-width: 771px) {
  .padding-bottom-sm-0 {
    padding-bottom: 0 !important;
  }
}

@media (min-width: 992px) {
  .padding-bottom-md-0 {
    padding-bottom: 0 !important;
  }
}

@media (min-width: 1200px) {
  .padding-bottom-lg-0 {
    padding-bottom: 0 !important;
  }
}

@media (max-width: 1199px) {
  .padding-bp-bottom-lg-0 {
    padding-bottom: 0 !important;
  }
}

@media (max-width: 991px) {
  .padding-bp-bottom-md-0 {
    padding-bottom: 0 !important;
  }
}

@media (max-width: 770px) {
  .padding-bp-bottom-sm-0 {
    padding-bottom: 0 !important;
  }
}

@media (max-width: 575px) {
  .padding-bp-bottom-xs-0 {
    padding-bottom: 0 !important;
  }
}

.padding-left-0 {
  padding-left: 0 !important;
}

.padding-left-xs-0 {
  padding-left: 0 !important;
}

@media (min-width: 771px) {
  .padding-left-sm-0 {
    padding-left: 0 !important;
  }
}

@media (min-width: 992px) {
  .padding-left-md-0 {
    padding-left: 0 !important;
  }
}

@media (min-width: 1200px) {
  .padding-left-lg-0 {
    padding-left: 0 !important;
  }
}

@media (max-width: 1199px) {
  .padding-bp-left-lg-0 {
    padding-left: 0 !important;
  }
}

@media (max-width: 991px) {
  .padding-bp-left-md-0 {
    padding-left: 0 !important;
  }
}

@media (max-width: 770px) {
  .padding-bp-left-sm-0 {
    padding-left: 0 !important;
  }
}

@media (max-width: 575px) {
  .padding-bp-left-xs-0 {
    padding-left: 0 !important;
  }
}

/* Position helpers */
.pos-r {
  position: relative;
}

.pos-f {
  position: fixed;
}

.pos-s {
  position: static;
}

.pos-sticky {
  position: sticky;
}

.pos-a {
  position: absolute;
}

.pos-auto {
  position: inherit;
}

/* Row helpers */
.row-40 {
  margin-right: -40px;
  margin-left: -40px;
}

.row-40 .row-item {
  padding-left: 40px;
  padding-right: 40px;
}

.row-30 {
  margin-right: -30px;
  margin-left: -30px;
}

.row-30 .row-item {
  padding-left: 30px;
  padding-right: 30px;
}

.row-20 {
  margin-right: -20px;
  margin-left: -20px;
}

.row-20 .row-item {
  padding-left: 20px;
  padding-right: 20px;
}

.row-10 {
  margin-right: -10px;
  margin-left: -10px;
}

.row-10 .row-item {
  padding-left: 10px;
  padding-right: 10px;
}

/* Size helpers */
.w-full {
  width: 100%;
}

.w-half {
  width: 50%;
}

.w-quarter {
  width: 25%;
}

.h-full-vh {
  height: 100vh;
}

.h-full {
  height: 100%;
}

.h-half {
  height: 50%;
}

.h-quarter {
  height: 25%;
}

/* Text helpers */
.txt-r {
  text-align: right;
}

.txt-c {
  text-align: center;
}

.txt-l {
  text-align: left;
}

.txt-upper {
  text-transform: uppercase;
}

.txt-lower {
  text-transform: lowercase;
}

.txt-italic {
  font-style: italic;
}

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

.txt-regular {
  font-weight: 400;
}

.txt-bold {
  font-weight: 700;
}

.txt-line {
  text-decoration: line-through;
}

.txt-underline {
  text-decoration: underline;
}

.h-light h1, .h-light .alfa,
.h-light h2, .h-light .beta,
.h-light h3, .h-light .gamma,
.h-light h4, .h-light .delta,
.h-light h5, .h-light .epsilon,
.h-light h6, .h-light .zeta {
  font-weight: 300;
}

.h-regular h1, .h-regular .alfa,
.h-regular h2, .h-regular .beta,
.h-regular h3, .h-regular .gamma,
.h-regular h4, .h-regular .delta,
.h-regular h5, .h-regular .epsilon,
.h-regular h6, .h-regular .zeta {
  font-weight: 400;
}

.h-semibold h1, .h-semibold .alfa,
.h-semibold h2, .h-semibold .beta,
.h-semibold h3, .h-semibold .gamma,
.h-semibold h4, .h-semibold .delta,
.h-semibold h5, .h-semibold .epsilon,
.h-semibold h6, .h-semibold .zeta {
  font-weight: 600;
}

.h-bold h1, .h-bold .alfa,
.h-bold h2, .h-bold .beta,
.h-bold h3, .h-bold .gamma,
.h-bold h4, .h-bold .delta,
.h-bold h5, .h-bold .epsilon,
.h-bold h6, .h-bold .zeta {
  font-weight: 700;
}

.h-black h1, .h-black .alfa,
.h-black h2, .h-black .beta,
.h-black h3, .h-black .gamma,
.h-black h4, .h-black .delta,
.h-black h5, .h-black .epsilon,
.h-black h6, .h-black .zeta {
  font-weight: 900;
}

.h-primary-semi h1, .h-primary-semi .alfa,
.h-primary-semi h2, .h-primary-semi .beta,
.h-primary-semi h3, .h-primary-semi .gamma,
.h-primary-semi h4, .h-primary-semi .delta,
.h-primary-semi h5, .h-primary-semi .epsilon,
.h-primary-semi h6, .h-primary-semi .zeta {
  font-family: "lektorat-text-variable", sans-serif, Arial, sans-serif;
  font-weight: 600;
}

.h-upper h1, .h-upper .alfa,
.h-upper h2, .h-upper .beta,
.h-upper h3, .h-upper .gamma,
.h-upper h4, .h-upper .delta,
.h-upper h5, .h-upper .epsilon,
.h-upper h6, .h-upper .zeta {
  text-transform: uppercase;
}

.h-line-1-2 h1, .h-line-1-2 .alfa,
.h-line-1-2 h2, .h-line-1-2 .beta,
.h-line-1-2 h3, .h-line-1-2 .gamma,
.h-line-1-2 h4, .h-line-1-2 .delta,
.h-line-1-2 h5, .h-line-1-2 .epsilon,
.h-line-1-2 h6, .h-line-1-2 .zeta {
  line-height: 1.2;
}

.h-line-1-4 h1, .h-line-1-4 .alfa,
.h-line-1-4 h2, .h-line-1-4 .beta,
.h-line-1-4 h3, .h-line-1-4 .gamma,
.h-line-1-4 h4, .h-line-1-4 .delta,
.h-line-1-4 h5, .h-line-1-4 .epsilon,
.h-line-1-4 h6, .h-line-1-4 .zeta {
  line-height: 1.4;
}

.h-line-1-6 h1, .h-line-1-6 .alfa,
.h-line-1-6 h2, .h-line-1-6 .beta,
.h-line-1-6 h3, .h-line-1-6 .gamma,
.h-line-1-6 h4, .h-line-1-6 .delta,
.h-line-1-6 h5, .h-line-1-6 .epsilon,
.h-line-1-6 h6, .h-line-1-6 .zeta {
  line-height: 1.6;
}

.h-line-1-8 h1, .h-line-1-8 .alfa,
.h-line-1-8 h2, .h-line-1-8 .beta,
.h-line-1-8 h3, .h-line-1-8 .gamma,
.h-line-1-8 h4, .h-line-1-8 .delta,
.h-line-1-8 h5, .h-line-1-8 .epsilon,
.h-line-1-8 h6, .h-line-1-8 .zeta {
  line-height: 1.8;
}

@media (min-width: 576px) {
  .h-line-xs-1-2 h1, .h-line-xs-1-2 .alfa,
  .h-line-xs-1-2 h2, .h-line-xs-1-2 .beta,
  .h-line-xs-1-2 h3, .h-line-xs-1-2 .gamma,
  .h-line-xs-1-2 h4, .h-line-xs-1-2 .delta,
  .h-line-xs-1-2 h5, .h-line-xs-1-2 .epsilon,
  .h-line-xs-1-2 h6, .h-line-xs-1-2 .zeta {
    line-height: 1.2;
  }
}

@media (min-width: 771px) {
  .h-line-sm-1-2 h1, .h-line-sm-1-2 .alfa,
  .h-line-sm-1-2 h2, .h-line-sm-1-2 .beta,
  .h-line-sm-1-2 h3, .h-line-sm-1-2 .gamma,
  .h-line-sm-1-2 h4, .h-line-sm-1-2 .delta,
  .h-line-sm-1-2 h5, .h-line-sm-1-2 .epsilon,
  .h-line-sm-1-2 h6, .h-line-sm-1-2 .zeta {
    line-height: 1.2;
  }
}

@media (min-width: 370px) {
  .txt-xss-c {
    text-align: center;
  }
  .txt-xss-l {
    text-align: left;
  }
  .txt-xss-r {
    text-align: right;
  }
}

@media (min-width: 576px) {
  .txt-xs-c {
    text-align: center;
  }
  .txt-xs-l {
    text-align: left;
  }
  .txt-xs-r {
    text-align: right;
  }
}

@media (min-width: 771px) {
  .txt-sm-l {
    text-align: left;
  }
  .txt-sm-r {
    text-align: right;
  }
  .txt-sm-c {
    text-align: center;
  }
}

@media (min-width: 992px) {
  .txt-md-l {
    text-align: left;
  }
  .txt-md-r {
    text-align: right;
  }
  .txt-md-c {
    text-align: center;
  }
}

@media (min-width: 1200px) {
  .txt-lg-r {
    text-align: right;
  }
  .txt-lg-l {
    text-align: left;
  }
  .txt-lg-c {
    text-align: center;
  }
}

.h-margin-0 .alfa, .h-margin-0 .beta, .h-margin-0 .gamma, .h-margin-0 .delta, .h-margin-0 .epsilon, .h-margin-0 .zeta,
.h-margin-0 h1, .h-margin-0 h2, .h-margin-0 h3, .h-margin-0 h4, .h-margin-0 h5, .h-margin-0 h6 {
  margin-bottom: 0;
}

.h-margin-01 .alfa, .h-margin-01 .beta, .h-margin-01 .gamma, .h-margin-01 .delta, .h-margin-01 .epsilon, .h-margin-01 .zeta,
.h-margin-01 h1, .h-margin-01 h2, .h-margin-01 h3, .h-margin-01 h4, .h-margin-01 h5, .h-margin-01 h6 {
  margin-bottom: 0.1em;
}

.h-margin-02 .alfa, .h-margin-02 .beta, .h-margin-02 .gamma, .h-margin-02 .delta, .h-margin-02 .epsilon, .h-margin-02 .zeta,
.h-margin-02 h1, .h-margin-02 h2, .h-margin-02 h3, .h-margin-02 h4, .h-margin-02 h5, .h-margin-02 h6 {
  margin-bottom: 0.2em;
}

.h-margin-03 .alfa, .h-margin-03 .beta, .h-margin-03 .gamma, .h-margin-03 .delta, .h-margin-03 .epsilon, .h-margin-03 .zeta,
.h-margin-03 h1, .h-margin-03 h2, .h-margin-03 h3, .h-margin-03 h4, .h-margin-03 h5, .h-margin-03 h6 {
  margin-bottom: 0.3em;
}

.h-margin-04 .alfa, .h-margin-04 .beta, .h-margin-04 .gamma, .h-margin-04 .delta, .h-margin-04 .epsilon, .h-margin-04 .zeta,
.h-margin-04 h1, .h-margin-04 h2, .h-margin-04 h3, .h-margin-04 h4, .h-margin-04 h5, .h-margin-04 h6 {
  margin-bottom: 0.4em;
}

.h-margin-05 .alfa, .h-margin-05 .beta, .h-margin-05 .gamma, .h-margin-05 .delta, .h-margin-05 .epsilon, .h-margin-05 .zeta,
.h-margin-05 h1, .h-margin-05 h2, .h-margin-05 h3, .h-margin-05 h4, .h-margin-05 h5, .h-margin-05 h6 {
  margin-bottom: 0.5em;
}

.h-margin-06 .alfa, .h-margin-06 .beta, .h-margin-06 .gamma, .h-margin-06 .delta, .h-margin-06 .epsilon, .h-margin-06 .zeta,
.h-margin-06 h1, .h-margin-06 h2, .h-margin-06 h3, .h-margin-06 h4, .h-margin-06 h5, .h-margin-06 h6 {
  margin-bottom: 0.6em;
}

.h-margin-07 .alfa, .h-margin-07 .beta, .h-margin-07 .gamma, .h-margin-07 .delta, .h-margin-07 .epsilon, .h-margin-07 .zeta,
.h-margin-07 h1, .h-margin-07 h2, .h-margin-07 h3, .h-margin-07 h4, .h-margin-07 h5, .h-margin-07 h6 {
  margin-bottom: 0.7em;
}

.h-margin-08 .alfa, .h-margin-08 .beta, .h-margin-08 .gamma, .h-margin-08 .delta, .h-margin-08 .epsilon, .h-margin-08 .zeta,
.h-margin-08 h1, .h-margin-08 h2, .h-margin-08 h3, .h-margin-08 h4, .h-margin-08 h5, .h-margin-08 h6 {
  margin-bottom: 0.8em;
}

.h-margin-1 .alfa, .h-margin-1 .beta, .h-margin-1 .gamma, .h-margin-1 .delta, .h-margin-1 .epsilon, .h-margin-1 .zeta,
.h-margin-1 h1, .h-margin-1 h2, .h-margin-1 h3, .h-margin-1 h4, .h-margin-1 h5, .h-margin-1 h6 {
  margin-bottom: 1em;
}

.h-margin-1-5 .alfa, .h-margin-1-5 .beta, .h-margin-1-5 .gamma, .h-margin-1-5 .delta, .h-margin-1-5 .epsilon, .h-margin-1-5 .zeta,
.h-margin-1-5 h1, .h-margin-1-5 h2, .h-margin-1-5 h3, .h-margin-1-5 h4, .h-margin-1-5 h5, .h-margin-1-5 h6 {
  margin-bottom: 1.5em;
}

.h-margin-2 .alfa, .h-margin-2 .beta, .h-margin-2 .gamma, .h-margin-2 .delta, .h-margin-2 .epsilon, .h-margin-2 .zeta,
.h-margin-2 h1, .h-margin-2 h2, .h-margin-2 h3, .h-margin-2 h4, .h-margin-2 h5, .h-margin-2 h6 {
  margin-bottom: 2em;
}

.p-margin-0 p {
  margin-bottom: 0;
}

.p-margin-01 p {
  margin-bottom: 0.1rem;
}

.p-margin-02 p {
  margin-bottom: 0.2rem;
}

.p-margin-03 p {
  margin-bottom: 0.3rem;
}

.p-margin-04 p {
  margin-bottom: 0.4rem;
}

.p-margin-05 p {
  margin-bottom: 0.5rem;
}

.p-margin-08 p {
  margin-bottom: 0.8rem;
}

.p-margin-1 p {
  margin-bottom: 1rem;
}

.p-margin-1-5 p {
  margin-bottom: 1.5rem;
}

.p-margin-2 p {
  margin-bottom: 2rem;
}

/* Z-index helpers */
.z-index--1 {
  z-index: -1;
}

.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

.z-index-3 {
  z-index: 3;
}

.z-index-4 {
  z-index: 4;
}

.z-index-5 {
  z-index: 5;
}

.z-index-6 {
  z-index: 6;
}

.z-index-7 {
  z-index: 7;
}

.z-index-8 {
  z-index: 8;
}

.z-index-9 {
  z-index: 9;
}

.z-index-10 {
  z-index: 10;
}

.z-index-100 {
  z-index: 100;
}

.z-index-1000 {
  z-index: 1000;
}

.z-index-10000 {
  z-index: 10000;
}

.opacity-0 {
  opacity: 0;
}

.opacity-01 {
  opacity: 0.1;
}

.opacity-02 {
  opacity: 0.2;
}

.opacity-03 {
  opacity: 0.3;
}

.opacity-04 {
  opacity: 0.4;
}

.opacity-05 {
  opacity: 0.5;
}

.opacity-06 {
  opacity: 0.6;
}

.opacity-07 {
  opacity: 0.7;
}

.opacity-08 {
  opacity: 0.8;
}

.opacity-09 {
  opacity: 0.9;
}

.opacity-1 {
  opacity: 1;
}

.dots {
  overflow: hidden;
}

.dots-10 {
  height: 10px;
}

.dots-20 {
  height: 20px;
}

.dots-30 {
  height: 30px;
}

.dots-40 {
  height: 40px;
}

.dots-50 {
  height: 50px;
}

.dots-60 {
  height: 60px;
}

.dots-70 {
  height: 70px;
}

.dots-80 {
  height: 80px;
}

.dots-90 {
  height: 90px;
}

.dots-100 {
  height: 100px;
}

.dots-110 {
  height: 160px;
}

.dots-120 {
  height: 120px;
}

.dots-130 {
  height: 130px;
}

.dots-140 {
  height: 140px;
}

.dots-150 {
  height: 150px;
}

@media (max-width: 991px) {
  .dots-md-10 {
    height: 10px;
  }
  .dots-md-20 {
    height: 20px;
  }
  .dots-md-30 {
    height: 30px;
  }
  .dots-md-40 {
    height: 40px;
  }
  .dots-md-50 {
    height: 50px;
  }
  .dots-md-60 {
    height: 60px;
  }
  .dots-md-70 {
    height: 70px;
  }
  .dots-md-80 {
    height: 80px;
  }
  .dots-md-90 {
    height: 90px;
  }
  .dots-md-100 {
    height: 100px;
  }
  .dots-md-110 {
    height: 160px;
  }
  .dots-md-120 {
    height: 120px;
  }
  .dots-md-130 {
    height: 130px;
  }
  .dots-md-140 {
    height: 140px;
  }
  .dots-md-150 {
    height: 150px;
  }
}

@media (max-width: 770px) {
  .dots-sm-10 {
    height: 10px;
  }
  .dots-sm-20 {
    height: 20px;
  }
  .dots-sm-30 {
    height: 30px;
  }
  .dots-sm-40 {
    height: 40px;
  }
  .dots-sm-50 {
    height: 50px;
  }
  .dots-sm-60 {
    height: 60px;
  }
  .dots-sm-70 {
    height: 70px;
  }
  .dots-sm-80 {
    height: 80px;
  }
  .dots-sm-90 {
    height: 90px;
  }
  .dots-sm-100 {
    height: 100px;
  }
  .dots-sm-110 {
    height: 160px;
  }
  .dots-sm-120 {
    height: 120px;
  }
  .dots-sm-130 {
    height: 130px;
  }
  .dots-sm-140 {
    height: 140px;
  }
  .dots-sm-150 {
    height: 150px;
  }
}

@media (max-width: 575px) {
  .dots-xs-10 {
    height: 10px;
  }
  .dots-xs-20 {
    height: 20px;
  }
  .dots-xs-30 {
    height: 30px;
  }
  .dots-xs-40 {
    height: 40px;
  }
  .dots-xs-50 {
    height: 50px;
  }
  .dots-xs-60 {
    height: 60px;
  }
  .dots-xs-70 {
    height: 70px;
  }
  .dots-xs-80 {
    height: 80px;
  }
  .dots-xs-90 {
    height: 90px;
  }
  .dots-xs-100 {
    height: 100px;
  }
  .dots-xs-110 {
    height: 160px;
  }
  .dots-xs-120 {
    height: 120px;
  }
  .dots-xs-130 {
    height: 130px;
  }
  .dots-xs-140 {
    height: 140px;
  }
  .dots-xs-150 {
    height: 150px;
  }
}

.dots-max-10 {
  max-height: 10px;
}

.dots-max-20 {
  max-height: 20px;
}

.dots-max-30 {
  max-height: 30px;
}

.dots-max-40 {
  max-height: 40px;
}

.dots-max-50 {
  max-height: 50px;
}

.dots-max-60 {
  max-height: 60px;
}

.dots-max-70 {
  max-height: 70px;
}

.dots-max-80 {
  max-height: 80px;
}

.dots-max-90 {
  max-height: 90px;
}

.dots-max-100 {
  max-height: 100px;
}

.dots-max-110 {
  max-height: 160px;
}

.dots-max-120 {
  max-height: 120px;
}

.dots-max-130 {
  max-height: 130px;
}

.dots-max-140 {
  max-height: 140px;
}

.dots-max-150 {
  max-height: 150px;
}

@media (max-width: 991px) {
  .dots-md-max-10 {
    max-height: 10px;
  }
  .dots-md-max-20 {
    max-height: 20px;
  }
  .dots-md-max-30 {
    max-height: 30px;
  }
  .dots-md-max-40 {
    max-height: 40px;
  }
  .dots-md-max-50 {
    max-height: 50px;
  }
  .dots-md-max-60 {
    max-height: 60px;
  }
  .dots-md-max-70 {
    max-height: 70px;
  }
  .dots-md-max-80 {
    max-height: 80px;
  }
  .dots-md-max-90 {
    max-height: 90px;
  }
  .dots-md-max-100 {
    max-height: 100px;
  }
  .dots-md-max-110 {
    max-height: 160px;
  }
  .dots-md-max-120 {
    max-height: 120px;
  }
  .dots-md-max-130 {
    max-height: 130px;
  }
  .dots-md-max-140 {
    max-height: 140px;
  }
  .dots-md-max-150 {
    max-height: 150px;
  }
}

@media (max-width: 770px) {
  .dots-sm-max-10 {
    max-height: 10px;
  }
  .dots-sm-max-20 {
    max-height: 20px;
  }
  .dots-sm-max-30 {
    max-height: 30px;
  }
  .dots-sm-max-40 {
    max-height: 40px;
  }
  .dots-sm-max-50 {
    max-height: 50px;
  }
  .dots-sm-max-60 {
    max-height: 60px;
  }
  .dots-sm-max-70 {
    max-height: 70px;
  }
  .dots-sm-max-80 {
    max-height: 80px;
  }
  .dots-sm-max-90 {
    max-height: 90px;
  }
  .dots-sm-max-100 {
    max-height: 100px;
  }
  .dots-sm-max-110 {
    max-height: 160px;
  }
  .dots-sm-max-120 {
    max-height: 120px;
  }
  .dots-sm-max-130 {
    max-height: 130px;
  }
  .dots-sm-max-140 {
    max-height: 140px;
  }
  .dots-sm-max-150 {
    max-height: 150px;
  }
}

@media (max-width: 575px) {
  .dots-xs-max-10 {
    max-height: 10px;
  }
  .dots-xs-max-20 {
    max-height: 20px;
  }
  .dots-xs-max-30 {
    max-height: 30px;
  }
  .dots-xs-max-40 {
    max-height: 40px;
  }
  .dots-xs-max-50 {
    max-height: 50px;
  }
  .dots-xs-max-60 {
    max-height: 60px;
  }
  .dots-xs-max-70 {
    max-height: 70px;
  }
  .dots-xs-max-80 {
    max-height: 80px;
  }
  .dots-xs-max-90 {
    max-height: 90px;
  }
  .dots-xs-max-100 {
    max-height: 100px;
  }
  .dots-xs-max-110 {
    max-height: 160px;
  }
  .dots-xs-max-120 {
    max-height: 120px;
  }
  .dots-xs-max-130 {
    max-height: 130px;
  }
  .dots-xs-max-140 {
    max-height: 140px;
  }
  .dots-xs-max-150 {
    max-height: 150px;
  }
}

.no-object-fit .img-flex img {
  height: auto;
  width: auto;
  vertical-align: middle;
  margin: 0 auto;
}

.no-object-fit .img-contain {
  height: auto;
  width: auto;
  vertical-align: middle;
  margin: 0 auto;
}

/* Social block */
.social-list-header {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.social-list-item {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 10px;
  vertical-align: middle;
}

@media (min-width: 992px) {
  .social-list-item {
    margin-right: 4px;
  }
}

@media (min-width: 1200px) {
  .social-list-item {
    margin-right: 20px;
  }
}

.social-list-item:last-child {
  margin-right: 0;
}

.social-list-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  text-align: center;
  vertical-align: middle;
  color: #159947;
  border-radius: 100%;
}

.social-list-link svg {
  fill: #159947;
  font-size: 40px;
  font-size: 2.5rem;
}

.social-list-link:hover svg {
  fill: #0f6c32;
}

/* article block */
.article-item {
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .article-item {
    margin-bottom: 3rem;
  }
}

.article-content {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: 0 3px 17px rgba(0, 0, 0, 0.11);
  transition: box-shadow 400ms ease-out;
}

@media (min-width: 576px) {
  .article-content {
    display: flex;
  }
}

@media (min-width: 992px) {
  .article-content {
    height: 200px;
  }
}

.article-content:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.article-content:hover img {
  transform: scale(1.05, 1.05);
}

@media (min-width: 992px) {
  .article-width {
    max-width: 225px;
    margin: 0 auto;
  }
}

.article-image-block {
  display: flex;
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .article-image-block {
    height: 220px;
  }
}

@media (max-width: 575px) {
  .article-image-block {
    height: 180px;
  }
}

@media (min-width: 576px) {
  .article-image-block {
    width: 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.article-image-block img {
  transition: transform 400ms ease-out;
}

.article-text-block {
  display: flex;
  align-items: center;
  padding: 1.5rem 1.5rem;
}

@media (min-width: 576px) {
  .article-text-block {
    width: 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0.3rem 1rem;
  }
}

.article-category {
  position: absolute;
  top: 15px;
  left: 0;
  display: block;
  color: #ffffff;
  font-family: "lektorat-text-variable", sans-serif, Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  background-color: #000;
  padding: 0.5rem 0.5rem;
  min-width: 80px;
  font-size: 14px;
  font-size: 0.875rem;
}

.map {
  width: 100%;
  background-color: #DFE4DF;
  height: 400px;
}

@media (min-width: 771px) {
  .map {
    height: 600px;
  }
}

.map .map-block {
  width: 100%;
  height: 100%;
}

.clusterer-text {
  display: block;
  text-align: center;
  color: white;
  font-weight: 600;
  line-height: 50px;
  color: #ffffff;
  font-family: "lektorat-text-variable", sans-serif, Arial, sans-serif;
  font-style: italic;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14px;
}

/* Breadcrumbs block */
.breadcrumbs-list {
  position: relative;
  top: 5px;
}

.breadcrumb-list-item {
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 770px) {
  .breadcrumb-list-item:last-child .breadcrumb-list-link {
    margin-right: 0;
  }
}

.breadcrumb-list-item:last-child .breadcrumb-list-link:after {
  content: none;
}

.breadcrumb-list-link {
  display: inline-block;
  vertical-align: middle;
  line-height: 1.2;
  color: #000;
  font-size: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin: 0.5rem 1.5rem 0.5rem 0;
  position: relative;
}

@media (min-width: 771px) {
  .breadcrumb-list-link {
    margin: 0.8rem 0 0.8rem 1.5rem;
  }
}

.breadcrumb-list-link:hover {
  color: #159947;
}

.breadcrumb-list-link:after {
  content: '';
  position: absolute;
  right: -20px;
  top: 0;
  display: inline-block;
  width: 12px;
  height: 12px;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../images/icons/filter-arrow.svg);
  transform: rotateZ(-90deg);
}

/* Table block */
@media (max-width: 770px) {
  .table-responsives {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    min-height: .01%;
    border: 0 !important;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    background: linear-gradient(to right, white 30%, rgba(255, 255, 255, 0)), linear-gradient(to right, rgba(255, 255, 255, 0), white 70%) 0 100%, radial-gradient(farthest-side at 0% 50%, #faf7f3, rgba(0, 0, 0, 0)), radial-gradient(farthest-side at 100% 50%, #faf7f3, rgba(0, 0, 0, 0)) 0 100%;
    background-repeat: no-repeat;
    background-color: white;
    background-size: 40px 100%, 40px 100%, 14px 100%, 14px 100%;
    background-position: 0 0, 100%, 0 0, 100%;
    background-attachment: local, local, scroll, scroll;
  }
}

@media (max-width: 991px) {
  .table-md-responsives {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    min-height: .01%;
    border: 0 !important;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    background: linear-gradient(to right, white 30%, rgba(255, 255, 255, 0)), linear-gradient(to right, rgba(255, 255, 255, 0), white 70%) 0 100%, radial-gradient(farthest-side at 0% 50%, #faf7f3, rgba(0, 0, 0, 0)), radial-gradient(farthest-side at 100% 50%, #faf7f3, rgba(0, 0, 0, 0)) 0 100%;
    background-repeat: no-repeat;
    background-color: white;
    background-size: 40px 100%, 40px 100%, 14px 100%, 14px 100%;
    background-position: 0 0, 100%, 0 0, 100%;
    background-attachment: local, local, scroll, scroll;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
}

table thead tr {
  border-bottom: 4px solid #000;
}

table th {
  padding: 1rem 1rem 1rem 1rem;
  font-family: "lektorat-text-variable", sans-serif, Arial, sans-serif;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  color: #000;
  font-size: 14px;
  font-size: 0.875rem;
}

@media (min-width: 771px) {
  table th {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

table tbody tr:nth-child(even) {
  background-color: #faf7f3;
}

table td {
  padding: 1rem 1rem 1rem 1rem;
  font-family: "lektorat-text-variable", sans-serif, Arial, sans-serif;
  line-height: 1.4;
  text-align: center;
  color: #000;
  font-size: 14px;
  font-size: 0.875rem;
}

.pagination-list {
  width: 100%;
  position: relative;
}

@media (max-width: 575px) {
  .pagination-list {
    text-align: center;
  }
}

.pagination-list-item {
  display: inline-block;
  vertical-align: middle;
  margin-left: -4px;
  margin-right: 10px;
  padding-left: 0;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .pagination-list-item {
    margin-right: 8px;
  }
}

.pagination-list-item:hover .pagination-list-link {
  border-color: #159947;
  background-color: #159947;
  color: #ffffff;
}

.pagination-list-item.more .pagination-list-link:hover {
  border-color: #e8e8e8;
  background-color: #DFE4DF;
  color: #8a8a8a;
}

.pagination-list-item:before {
  content: none;
}

.pagination-list-item:first-child .pagination-list-link {
  width: auto;
  min-width: 120px;
  padding: 0 25px;
  padding-top: 2px;
}

@media (max-width: 770px) {
  .pagination-list-item:first-child .pagination-list-link {
    padding: 0 15px;
  }
}

@media (max-width: 575px) {
  .pagination-list-item:first-child {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.pagination-list-item:last-child {
  margin-right: 0;
}

.pagination-list-item:last-child .pagination-list-link {
  width: auto;
  min-width: 120px;
  padding: 0 25px;
  padding-top: 2px;
}

@media (max-width: 770px) {
  .pagination-list-item:last-child .pagination-list-link {
    padding: 0 15px;
  }
}

@media (max-width: 575px) {
  .pagination-list-item:last-child {
    width: 100%;
    margin-right: 0;
    margin-top: 10px;
  }
}

.pagination-list-item.is-active .pagination-list-link {
  background-color: #159947;
  color: #ffffff;
  border-color: #159947;
}

.pagination-list-link {
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #DFE4DF;
  border: 1px solid #e8e8e8;
  text-decoration: none !important;
  color: #212232;
  padding-top: 2px;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}

.alert {
  padding: 15px 15px 1px 15px;
  border-left: 4px solid rgba(76, 76, 76, 0.5);
  background: rgba(223, 228, 223, 0.3);
  margin-bottom: 20px;
}

.alert ul {
  margin-bottom: 15px;
}

.alert ul li {
  margin-bottom: 5px;
  color: #ffffff;
}

.alert p {
  margin: 0 0 15px 0;
}

.alert.alert-success {
  border-left: 4px solid rgba(242, 221, 21, 0.7);
  background: rgba(242, 221, 21, 0.3);
}

.alert.alert-error {
  border-left: 4px solid rgba(199, 49, 69, 0.7);
  background: rgba(199, 49, 69, 0.3);
}

.alert.alert-info {
  border-left: 4px solid rgba(62, 130, 199, 0.7);
  background: rgba(62, 130, 199, 0.3);
}

.hero {
  position: relative;
  --section-service-offset: 4rem;
}

.hero:before {
  content: '';
  position: absolute;
  z-index: 2;
  background: linear-gradient(180deg, #121719 21.69%, rgba(17, 24, 26, 0.53) 53.38%, rgba(16, 30, 32, 0) 84.23%);
  height: 50%;
  width: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
}

.hero .swiper:not(.swiper-initialized) .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 1fr;
  grid-auto-rows: 0;
}

@media (max-width: 991px) {
  .hero .swiper:not(.swiper-initialized) .swiper-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 770px) {
  .hero .swiper:not(.swiper-initialized) .swiper-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 991px) {
  .hero .swiper:not(.swiper-initialized) .swiper-slide:nth-child(2) {
    order: -2;
  }
  .hero .swiper:not(.swiper-initialized) .swiper-slide:nth-child(3) {
    order: -1;
  }
}

.hero .swiper:not(.swiper-initialized) + .swiper__pagination {
  display: none;
}

@media (max-width: 991px) {
  .hero .slick-dots {
    position: absolute;
    bottom: calc(var(--section-service-offset) + 1rem);
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
  }
  .hero .slick-dots li {
    height: 4px;
    width: 20px;
    margin: 4px;
    transition: background-color 35ms ease-out;
  }
  .hero .slick-dots li:not(.slick-active) {
    background-color: rgba(255, 255, 255, 0.25);
  }
  .hero .slick-dots li:after {
    display: none;
  }
  .hero .slick-dots li.slick-active {
    background-color: #F2DD15;
  }
}

.hero-item__tag {
  background-color: #159947;
  padding: 0.5rem 1.2rem 0.4rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

.hero-item {
  --decoration-height: 51px;
  text-decoration: none;
  display: flex;
  height: 880px;
}

@media (max-width: 1439px) {
  .hero-item {
    height: 760px;
  }
}

@media (max-width: 369px) {
  .hero-item {
    height: 600px;
  }
}

.hero-item__inner {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: #ffffff;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
}

.hero-item__inner:hover:-moz-any-link, .hero-item__inner:focus-visible:-moz-any-link {
  color: #ffffff;
}

.hero-item__inner:hover:any-link, .hero-item__inner:focus-visible:any-link {
  color: #ffffff;
}

.hero-item__inner:hover:-moz-any-link .hero-item__picture img, .hero-item__inner:focus-visible:-moz-any-link .hero-item__picture img {
  transform: scale(1.02);
}

.hero-item__inner:hover:any-link .hero-item__picture img, .hero-item__inner:focus-visible:any-link .hero-item__picture img {
  transform: scale(1.02);
}

@media (min-width: 992px) {
  .hero-item__inner:hover:-moz-any-link .hero-item__body, .hero-item__inner:focus-visible:-moz-any-link .hero-item__body {
    transform: translateY(calc(-1 * var(--decoration-height)));
  }
  .hero-item__inner:hover:any-link .hero-item__body, .hero-item__inner:focus-visible:any-link .hero-item__body {
    transform: translateY(calc(-1 * var(--decoration-height)));
  }
}

.hero-item__inner:hover:-moz-any-link .hero-item__excerpt, .hero-item__inner:focus-visible:-moz-any-link .hero-item__excerpt {
  visibility: visible;
  opacity: 1;
  translate: 0 0;
}

.hero-item__inner:hover:any-link .hero-item__excerpt, .hero-item__inner:focus-visible:any-link .hero-item__excerpt {
  visibility: visible;
  opacity: 1;
  translate: 0 0;
}

@media (min-width: 992px) {
  .hero-item__inner:hover:-moz-any-link .hero-item__decoration, .hero-item__inner:focus-visible:-moz-any-link .hero-item__decoration {
    bottom: var(--decoration-height);
    translate: -50% 25%;
    opacity: 1;
  }
  .hero-item__inner:hover:any-link .hero-item__decoration, .hero-item__inner:focus-visible:any-link .hero-item__decoration {
    bottom: var(--decoration-height);
    translate: -50% 25%;
    opacity: 1;
  }
}

.hero-item__picture {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-item__picture::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 35%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.hero-item__picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  transition: transform 200ms ease;
}

.hero-item__body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  text-align: center;
  width: 100%;
  padding: 2rem 2rem calc(2rem + var(--section-service-offset));
  transition: transform 200ms ease-out;
}

@media (max-width: 991px) {
  .hero-item__body {
    background-color: rgba(0, 0, 0, 0.25);
    padding-bottom: calc(2rem + var(--section-service-offset) + 1rem);
  }
}

@media (max-width: 369px) {
  .hero-item__body {
    padding-inline: var(--container-padding);
  }
}

.hero-item__title {
  color: #ffffff;
  max-width: 30ch;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-item__excerpt {
  transition: 200ms ease-out;
  transition-property: opacity, translate;
  max-width: 40ch;
  transition: color 200ms ease-out;
  color: #ffffff;
}

@media (min-width: 992px) {
  .hero-item__excerpt {
    visibility: hidden;
    opacity: 0;
    translate: 0 100%;
  }
}

.hero-item__decoration {
  position: absolute;
  left: 50%;
  display: grid;
  place-items: center;
  height: var(--decoration-height);
  aspect-ratio: 1;
  color: #159947;
}

@media (min-width: 1200px) {
  .hero-item__decoration {
    opacity: 1;
    translate: -50% -50%;
    transition: 200ms ease-out;
    transition-property: opacity, translate;
    bottom: calc(var(--decoration-height) + 1rem);
  }
}

@media (max-width: 991px) {
  .hero-item__decoration {
    order: -1;
    top: 0;
    transform: translate(-50%, -50%);
    height: 14px;
    width: 24px;
  }
}

.hero-item__decoration svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.hero-section {
  position: relative;
  padding: 0;
  z-index: 1;
}

.testimonial-group {
  margin-bottom: 2rem;
}

.testimonial-group .js-slide-item {
  padding-top: 3.5rem;
}

@media (min-width: 771px) {
  .testimonial-group .js-slide-item {
    padding-top: 5.5rem;
  }
}

.textimonial-content {
  max-width: 970px;
  margin: 0 auto;
}

.testimonials-icon {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
}

.testimonials-icon svg {
  font-size: 120px;
  font-size: 7.5rem;
  color: #fff2d0;
}

@media (min-width: 771px) {
  .testimonials-icon svg {
    font-size: 180px;
    font-size: 11.25rem;
  }
}

.testimonial-info {
  color: #000;
  font-weight: 300;
  letter-spacing: 1.29px;
  text-transform: uppercase;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 1.48px;
}

.product-item {
  margin-bottom: 1rem;
}

@media (min-width: 771px) {
  .product-item {
    margin-bottom: 2rem;
  }
}

.product-item-ext .product-content {
  display: block;
  padding: 1.5rem 1rem 0.8rem;
  border: 0;
}

@media (min-width: 576px) {
  .product-item-ext .product-content {
    padding: 1.8rem 1.8rem;
  }
}

@media (max-width: 770px) {
  .product-item-ext .product-content {
    box-shadow: 0 0 51px rgba(0, 0, 0, 0.05);
  }
}

.product-item-ext .product-content:hover {
  box-shadow: 0 0 51px rgba(0, 0, 0, 0.05);
}

.product-item-ext .product-title {
  letter-spacing: 0.1px;
}

.product-item-detail .product-icon {
  margin: 0;
  margin-right: 1.5rem;
}

.product-item-detail .product-image-block {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .product-item-detail .product-image-block {
    margin-left: 0;
    margin-top: 3rem;
  }
}

@media (max-width: 770px) {
  .product-item-detail .product-image-block {
    margin-bottom: 2rem;
  }
}

.product-item-detail .product-btn-block {
  margin-top: 0;
  margin-bottom: 2rem;
}

@media (min-width: 772px) and (max-width: 992px) {
  .product-item-detail .product-btn {
    max-width: 100%;
  }
}

.product-content {
  display: flex;
  align-items: center;
  border-radius: 4px;
  background-color: #ffffff;
  border-top: 3px solid transparent;
  transition: box-shadow 400ms ease-out, transform 400ms ease-out;
  min-height: 270px;
  padding: 0.8rem 0.8rem;
}

@media (min-width: 576px) {
  .product-content {
    padding: 1.8rem 1.8rem;
  }
}

.product-content:hover {
  border-top-color: #000;
  box-shadow: 0 0 48px rgba(0, 0, 0, 0.08);
  transform: scale(1.02, 1.02);
}

.product-image-block {
  display: flex;
  max-height: 280px;
  max-width: 280px;
  margin: 0 auto 2rem;
  position: relative;
  border-radius: 100%;
}

.product-image-block img {
  transition: transform 400ms ease-out;
}

.product-check {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  width: 40px;
  height: 40px;
}

.product-check.is-available {
  background-color: #159947;
}

.product-check.is-sold {
  background-color: #000;
}

.product-check svg {
  fill: #ffffff;
}

.product-center {
  width: 100%;
}

.product-title {
  line-height: 1.2;
  letter-spacing: 1.53px;
}

.product-subtitle {
  display: block;
  margin-bottom: 1.5rem;
  color: #000;
  font-family: "lektorat-text-variable", sans-serif, Arial, sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.07px;
}

.product-icon {
  margin: 4rem 0;
  text-align: center;
}

.product-icon svg {
  font-size: 50px;
  font-size: 3.125rem;
}

.product-count {
  color: #000;
  font-family: "lektorat-text-variable", sans-serif, Arial, sans-serif;
  font-style: italic;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: 0.1px;
}

@media (min-width: 576px) {
  .product-count {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

.product-link svg {
  position: relative;
  fill: #000;
  font-size: 26px;
  font-size: 1.625rem;
  transform: rotateZ(-90deg);
}

.product-btn-block {
  display: flex;
  align-items: center;
  margin: 0 -5px;
  margin-top: 2rem;
}

.product-btn-right,
.product-btn-left {
  padding: 0 5px;
}

.product-btn-left {
  width: calc(100% - 70px);
  max-width: calc(100% - 70px);
  flex: 0 0 calc(100% - 70px);
}

.product-btn-right {
  width: 70px;
  max-width: 70px;
  flex: 0 0 70px;
}

.product-like {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #fbf4ef;
  border-radius: 4px;
}

.product-like:hover {
  background-color: #f1d8c6;
}

.product-like svg {
  fill: #000;
}

.products-bg {
  position: absolute;
  top: 50%;
  right: -150px;
  transform: translateY(-50%);
}

.products-bg svg {
  fill: #f7f0eb;
  font-size: 609px;
  font-size: 38.0625rem;
  height: 609px;
}

.quote-block {
  padding: 1.2rem 1.2rem;
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.11);
  border-radius: 4px;
  background-color: #159947;
}

@media (max-width: 575px) {
  .quote-block {
    width: 100%;
  }
}

@media (min-width: 576px) {
  .quote-block {
    position: absolute;
    top: -20px;
    left: calc(100% - 50px);
    width: 360px;
    padding: 1rem 1.5rem;
  }
}

@media (min-width: 771px) {
  .quote-block {
    padding: 1.5rem 1.5rem;
    width: 250px;
    top: calc(100% - 80px);
    left: calc(100% - 120px);
  }
}

@media (min-width: 992px) {
  .quote-block {
    top: calc(100% - 170px);
    left: calc(100% - 50px);
    width: 250px;
  }
}

@media (min-width: 1200px) {
  .quote-block {
    width: 370px;
  }
}

.quote-text {
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-family: "lektorat-text-variable", sans-serif, Arial, sans-serif;
  font-weight: 600;
  font-style: italic;
  line-height: 1.3;
  letter-spacing: 1.25px;
  font-size: 20px;
  font-size: 1.25rem;
}

@media (min-width: 576px) {
  .quote-text {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

@media (min-width: 771px) {
  .quote-text {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

@media (min-width: 1200px) {
  .quote-text {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

.quote-sign {
  margin-bottom: 0.3rem;
  height: 45px;
  color: #ffffff;
  font-family: "lektorat-text-variable", sans-serif, Arial, sans-serif;
  font-size: 90px;
  font-size: 5.625rem;
  font-weight: 700;
}

.quote-author {
  margin-bottom: 0.3rem;
  color: #ffffff;
  font-family: "lektorat-text-variable", sans-serif, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1.53px;
  font-size: 14px;
  font-size: 0.875rem;
}

@media (min-width: 576px) {
  .quote-author {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

.quote-position {
  color: #ffffff;
  font-family: "lektorat-text-variable", sans-serif, Arial, sans-serif;
  font-style: italic;
  line-height: 1.4;
  letter-spacing: 1.53px;
  font-size: 14px;
  font-size: 0.875rem;
}

@media (min-width: 576px) {
  .quote-position {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

.file-item {
  margin-bottom: 2.5rem;
  align-content: center;
  background-color: #faf8f4;
  padding: 1.5rem 1.5rem;
}

@media (min-width: 576px) {
  .file-item {
    padding: 1.5rem 2rem;
  }
}

.file-content {
  justify-content: space-between;
}

.file-name {
  display: block;
  margin-bottom: 0.3rem;
  color: #000;
  font-family: "lektorat-text-variable", sans-serif, Arial, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.25px;
  font-size: 22px;
  font-size: 1.375rem;
}

.file-description {
  color: #000;
  font-family: "lektorat-text-variable", sans-serif, Arial, sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.14px;
}

.file-info {
  color: #000;
  font-family: "lektorat-text-variable", sans-serif, Arial, sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.05px;
}

@media (min-width: 771px) {
  .file-info {
    min-width: 130px;
    font-size: 14px;
    font-size: 0.875rem;
  }
}

@media (max-width: 770px) {
  .file-info {
    margin-top: 10px;
  }
}

.file-btn {
  color: #ffffff !important;
  text-decoration: none !important;
}

@media (min-width: 772px) and (max-width: 992px) {
  .file-btn {
    min-width: auto;
  }
}

@media (min-width: 771px) {
  .file-btn {
    margin-left: 1rem;
  }
}

@media (max-width: 770px) {
  .file-btn {
    width: 100%;
  }
}

.filter-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 3rem -15px 5rem;
}

@media (min-width: 992px) {
  .filter-group {
    margin: -70px -15px 8rem;
  }
}

.filter-item {
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
  position: relative;
}

@media (min-width: 576px) {
  .filter-item {
    width: 50%;
    max-width: 50%;
    flex: 0 0 50%;
  }
}

@media (min-width: 992px) {
  .filter-item {
    width: 25%;
    max-width: 25%;
    flex: 0 0 25%;
  }
}

@media (max-width: 991px) {
  .filter-item {
    height: 70px;
    margin: 1rem 0;
  }
}

@media (min-width: 772px) and (max-width: 992px) {
  .filter-item:nth-child(2n + 2):after {
    display: none;
  }
}

@media (min-width: 577px) and (max-width: 771px) {
  .filter-item:nth-child(2n + 2):after {
    display: none;
  }
}

.filter-item:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 1px;
  height: 100%;
  background-color: #e6e6e6;
}

@media (max-width: 575px) {
  .filter-item:after {
    bottom: -10px;
    top: auto;
    left: 0;
    width: 100%;
    height: 1px;
  }
}

.filter-item:last-child:after {
  display: none;
}

.filter-label {
  position: absolute;
  top: 0;
  left: 0;
  margin-bottom: 0;
  color: #000;
  font-family: "lektorat-text-variable", sans-serif, Arial, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1.53px;
  font-size: 15px;
  font-size: 0.9375rem;
  cursor: pointer;
  padding: 0 2rem;
}

@media (min-width: 993px) and (max-width: 1200px) {
  .filter-label {
    padding: 0 1rem;
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.filter-label-ext {
  padding: 0 1.5rem;
}

@media (min-width: 993px) and (max-width: 1200px) {
  .filter-label-ext {
    padding: 0 1rem;
  }
}

.filter-input {
  height: 70px;
  border: 0;
  background-color: transparent;
  padding: 25px 1rem 0.2rem 1.5rem;
  color: #000;
  font-family: "lektorat-text-variable", sans-serif, Arial, sans-serif;
  line-height: 1.2;
  font-style: italic;
  font-size: 18px;
  font-size: 1.125rem;
}

@media (min-width: 993px) and (max-width: 1200px) {
  .filter-input {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 25px 1rem 0.2rem 1rem;
  }
}

.filter-left-panel,
.filter-right-panel {
  padding: 0 15px;
}

@media (max-width: 991px) {
  .filter-left-panel,
  .filter-right-panel {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
}

@media (min-width: 992px) {
  .filter-left-panel {
    width: calc(100% - 190px);
    max-width: calc(100% - 190px);
    flex: 0 0 calc(100% - 190px);
  }
}

@media (max-width: 991px) {
  .filter-left-panel {
    margin-bottom: 0.5rem;
  }
}

.filter-left-panel .filter-content {
  background-color: #ffffff;
}

.filter-right-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .filter-right-panel {
    width: 190px;
    max-width: 190px;
    flex: 0 0 190px;
  }
}

.filter-right-panel svg {
  fill: #ffffff;
  font-size: 36px;
  font-size: 2.25rem;
}

@media (min-width: 992px) {
  .filter-right-panel svg {
    font-size: 50px;
    font-size: 3.125rem;
  }
}

.filter-right-panel .filter-content {
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.11);
  background-color: #000;
  text-align: center;
}

@media (min-width: 992px) {
  .filter-right-panel .filter-content {
    border-top-color: #ba3127;
  }
}

@media (max-width: 991px) {
  .filter-right-panel .filter-content {
    border-top: 0;
    border-bottom: 4px solid #ba3127;
  }
}

.filter-right-panel .filter-item {
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
  height: 100%;
  background-color: transparent;
}

@media (max-width: 991px) {
  .filter-right-panel .filter-item {
    height: 80px;
    margin: 0;
  }
}

.filter-right-panel .filter-item:hover {
  background-color: #ba3127;
}

.filter-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 4px 27px rgba(0, 0, 0, 0.06);
  border-top: 4px solid #000;
}

@media (min-width: 992px) {
  .filter-content {
    height: 140px;
  }
}

.stats-item {
  position: relative;
  text-align: center;
  margin-bottom: 1rem;
  margin-top: 1rem;
  padding: 1.5rem 15px;
}

.stats-item:last-child:after {
  display: none;
}

@media (min-width: 771px) {
  .stats-item:after {
    opacity: 0.5;
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 2px;
    height: 100%;
    background-color: #e4e5f5;
    transform: translateY(-50%);
  }
}

@media (max-width: 770px) {
  .stats-item:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 1px;
    height: 100%;
    background-color: #e4e5f5;
    transform: translateY(-50%);
  }
  .stats-item:nth-child(2n + 2):after {
    display: none;
  }
}

.stats-item .headline-divider {
  margin-top: 0;
  margin-bottom: 0;
}

.stats-number,
.stats-text {
  display: block;
  font-weight: 400;
  line-height: 1;
}

.stats-number {
  position: relative;
  line-height: 1;
  font-weight: 300;
  color: #4c4c4c;
  margin-bottom: 30px;
  font-size: 50px;
  font-size: 3.125rem;
}

.stats-number::before {
  content: '';
  display: block;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: 25px;
  height: 1px;
  background: #159947;
  transform: translateX(-50%);
}

@media (min-width: 771px) {
  .stats-number {
    font-size: 65px;
    font-size: 4.0625rem;
  }
}

.stats-text {
  color: #159947;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-offers {
  position: relative;
}

.section-offers__decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 45vw;
  height: 50vh;
  fill: #D3DDC0;
  opacity: 0.2;
  z-index: 3;
  pointer-events: none;
}

@media (max-width: 1199px) {
  .section-offers__decoration {
    display: none;
  }
}

.offer-group {
  position: relative;
  z-index: 4;
}

@media (min-width: 992px) {
  .offer-group {
    margin-top: -6rem;
  }
}

.offer-item {
  display: flex;
  align-items: flex-end;
  filter: drop-shadow(0 0 33px rgba(0, 0, 0, 0.11));
}

@media (min-width: 992px) {
  .offer-item {
    height: 350px;
  }
}

@media (max-width: 991px) {
  .offer-item {
    align-items: stretch;
  }
}

.offer-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  border-top: 3px solid #159947;
  background-color: #ffffff;
  transition: height 250ms ease-out;
  overflow: hidden;
  text-decoration: none;
  position: relative;
}

.offer-content::before {
  opacity: 1;
  transition: all 250ms ease-out;
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+50 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 50%, white 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
  /* IE6-9 */
}

.offer-content::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 0;
  border-style: solid;
  border-width: 0 36px 36px 0;
  border-color: transparent #159947 transparent transparent;
}

.offer-content h3 {
  text-transform: uppercase;
  margin-bottom: 1rem !important;
}

.offer-content p {
  font-size: 1rem;
  font-weight: 300;
  color: #BBBBBB;
  letter-spacing: 0.025em;
}

@media (min-width: 992px) {
  .offer-content {
    height: 300px;
  }
}

.offer-content:hover {
  border-color: #159947;
}

@media (min-width: 992px) {
  .offer-content:hover {
    height: calc(100%);
  }
}

.offer-content .btn-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
}

@media (min-width: 771px) {
  .offer-content .btn-arrow {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

.offer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 73px;
  margin-bottom: 3rem;
}

.offer-icon-small svg {
  font-size: 73px;
  font-size: 4.5625rem;
}

.offer-icon-big svg {
  font-size: 110px;
  font-size: 6.875rem;
}

.portfolio-filter-list {
  display: flex;
  justify-content: center;
}

@media (max-width: 575px) {
  .portfolio-filter-list {
    margin: 0 -20px;
  }
}

.portfolio-filter-list-item {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  margin: 0 5px 15px;
  padding: 0.4em 0.3em;
  color: #000;
  font-weight: 500;
  cursor: pointer;
  line-height: 1.4;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.20px;
  height: 45px;
}

@media (min-width: 370px) {
  .portfolio-filter-list-item {
    margin: 0 5px 15px;
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: 0.20px;
  }
}

@media (min-width: 771px) {
  .portfolio-filter-list-item {
    font-size: 20px;
    font-size: 1.25rem;
    margin: 0 20px 15px;
    letter-spacing: 0.41px;
  }
}

.portfolio-filter-list-item.is-active {
  color: #159947;
}

.portfolio-filter-list-item.is-active:after {
  opacity: 1;
}

.portfolio-filter-list-item:after {
  content: '';
  position: absolute;
  top: calc(100% + 26px);
  left: 50%;
  opacity: 0;
  display: block;
  display: inline-block;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 0 4.5px 5px 4.5px;
  border-color: transparent transparent #159947 transparent;
}

.portfolio-group {
  border-top: 2px solid #159947;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio-content {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
}

@media (min-width: 576px) {
  .portfolio-content {
    min-height: 360px;
  }
}

@media (min-width: 771px) {
  .portfolio-content {
    min-height: 400px;
  }
}

.portfolio-content:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(14, 30, 46, 0.85);
  transition: opacity 250ms ease-out;
}

.portfolio-content:focus:after, .portfolio-content:hover:after {
  opacity: 1;
}

.portfolio-content:focus .portfolio-info-block, .portfolio-content:hover .portfolio-info-block {
  opacity: 1;
  align-items: center;
  justify-content: center;
}

.portfolio-content:focus p, .portfolio-content:hover p {
  height: auto;
  opacity: 1;
  visibility: visible;
}

.portfolio-content:focus .btn-arrow, .portfolio-content:hover .btn-arrow {
  opacity: 1;
}

.portfolio-image {
  width: 100%;
  height: 100%;
}

.portfolio-info-block {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1em 1.5em 1em;
  width: 100%;
  height: 100%;
  display: flex;
  opacity: 0;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: opacity 250ms ease-out;
  text-align: center;
}

.portfolio-info-block p {
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.portfolio-info-block .btn-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  opacity: 0;
}

@media (min-width: 771px) {
  .portfolio-info-block .btn-arrow {
    bottom: 2.5rem;
    right: 2.5rem;
  }
}

.project-bg {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.project-bg svg {
  font-size: 100vw;
  fill: #159947;
  opacity: 0.04;
}

.section-about ul.list-style li {
  margin-bottom: 0;
  text-transform: uppercase;
}

.section-about ol.list-style li {
  margin-bottom: 0;
  text-transform: uppercase;
}

.section-about .subtitle {
  font-family: "rotunda-variable", sans-serif, Arial, sans-serif;
  color: #159947;
  font-size: 18px;
  font-size: 1.125rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-about h2 span {
  position: relative;
  display: inline-block;
}

.section-about h2 span::before {
  content: '';
  display: block;
  position: absolute;
  top: -4px;
  left: -10px;
  background: #DFE4DF;
  width: calc(100% + 20px);
  height: 100%;
  z-index: -1;
}

.about__btn {
  margin-top: 2rem;
}

.section-slider {
  background: url("/images/vzorek.png") no-repeat top right;
  background-color: #DFE4DF;
  background-position: right center;
}

.slider-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}

@media (max-width: 770px) {
  .slider-item {
    flex-wrap: wrap;
  }
}

.slider-image {
  position: relative;
}

.slider-image::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 70%;
  transform: translateY(-50%);
  background: rgba(21, 153, 71, 0.85);
}

@media (max-width: 770px) {
  .slider-image::before {
    width: 90%;
    height: 20px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 575px) {
  .slider-image::before {
    height: 10px;
  }
}

@media (max-width: 1439px) {
  .slider-image img {
    max-width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media (max-width: 770px) {
  .slider-image img {
    height: auto;
  }
}

@media (max-width: 1439px) {
  .slider-image {
    width: 60%;
    height: 100%;
  }
}

@media (max-width: 770px) {
  .slider-image {
    width: 100%;
  }
}

.slider-info {
  position: relative;
}

@media (max-width: 1439px) {
  .slider-info {
    width: 40%;
  }
}

@media (max-width: 770px) {
  .slider-info {
    width: 100%;
  }
}

.slider-info .slider-info-text {
  width: 60%;
  padding: 30px;
  background-color: #103E28;
  position: relative;
  z-index: 1;
}

.slider-info .slider-info-text:before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("/images/vzorek.png");
  background-repeat: no-repeat;
  background-position: -136px -318px;
  z-index: -1;
  opacity: 0.05;
}

.slider-info .slider-info-text h2 {
  color: #ffffff;
  text-transform: uppercase;
}

@media (max-width: 770px) {
  .slider-info .slider-info-text h2 {
    margin-bottom: 20px;
  }
}

@media (max-width: 369px) {
  .slider-info .slider-info-text h2 {
    margin-bottom: 15px;
  }
}

.slider-info .slider-info-text p {
  color: #ffffff;
}

.slider-info .slider-info-text p:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 1599px) {
  .slider-info .slider-info-text {
    width: calc(100% - 30px);
  }
}

@media (max-width: 770px) {
  .slider-info .slider-info-text {
    width: 100%;
    padding-right: 130px;
  }
}

@media (max-width: 575px) {
  .slider-info .slider-info-text {
    padding-right: 80px;
  }
}

@media (max-width: 369px) {
  .slider-info .slider-info-text {
    padding: 50px 15px 15px 15px;
  }
}

.slider-info .slider-side-panel {
  position: absolute;
  top: 0;
  right: 100%;
  bottom: 0;
  height: 100%;
  width: 100px;
  background: rgba(21, 153, 71, 0.85);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

@media (max-width: 770px) {
  .slider-info .slider-side-panel {
    right: 0;
  }
}

@media (max-width: 575px) {
  .slider-info .slider-side-panel {
    width: 60px;
  }
}

@media (max-width: 369px) {
  .slider-info .slider-side-panel {
    height: auto;
    bottom: auto;
    top: 0;
    width: 100%;
  }
}

.slider-info .slider-side-panel .slide-number {
  margin-top: 20px;
  color: #ffffff;
  font-family: "lektorat-text-variable", sans-serif;
  font-size: 60px;
  font-size: 3.75rem;
  font-variation-settings: 'wdth' 76, 'wght' 553;
  font-weight: 553;
  line-height: 1.2;
  letter-spacing: 0.07em;
  text-align: left;
}

@media (max-width: 770px) {
  .slider-info .slider-side-panel .slide-number {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

@media (max-width: 575px) {
  .slider-info .slider-side-panel .slide-number {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

@media (max-width: 369px) {
  .slider-info .slider-side-panel .slide-number {
    margin: 5px 0;
    font-size: 25px;
    font-size: 1.5625rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
  }
}

.slider-info .slider-side-panel .slick-arrows {
  top: auto;
  margin-top: 0;
  bottom: 20px;
}

.slider-info .slider-side-panel .slick-arrows.slick-prev {
  left: 10px;
}

.slider-info .slider-side-panel .slick-arrows.slick-next {
  right: 10px;
}

.slider-info .slider-side-panel .slick-arrows svg {
  width: 30px;
  height: 30px;
}

@media (max-width: 575px) {
  .slider-info .slider-side-panel .slick-arrows svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 770px) {
  .slider-info .slider-side-panel .slick-arrows {
    display: block !important;
  }
}

@media (max-width: 369px) {
  .slider-info .slider-side-panel .slick-arrows {
    position: relative;
    bottom: auto;
  }
}

.slider-homepage .slick-slide > div {
  display: flex;
}

span.ic {
  width: 113px;
  height: 113px;
  display: inline-block;
  background-color: #DFE4DF;
  border-radius: 50%;
  margin-bottom: 40px;
  position: relative;
}

span.ic-c {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: auto;
  position: absolute;
  text-align: center;
  border: 4px solid #ff334e;
  display: table;
  bottom: auto;
  right: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contact-workplaces {
  padding-top: 50px;
  padding-bottom: 20px;
}

.contact-top {
  width: 100%;
  margin: 0 0 0 0;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}

.contact-left {
  width: 50%;
  min-height: 720px;
  background-color: #DFE4DF;
  padding: 65px 175px;
  background-image: url("../images/vzorek.png");
}

@media (max-width: 1599px) {
  .contact-left {
    padding: 65px 65px;
  }
}

@media (max-width: 1199px) {
  .contact-left {
    padding: 65px 30px;
  }
}

@media (max-width: 991px) {
  .contact-left {
    width: 100vw;
    height: auto;
    padding: 25px;
  }
}

.contact-left h5 {
  font-weight: 600;
  font-size: 22px;
  color: #159947;
}

.contact-left p {
  font-weight: 300;
  font-size: 18px;
  color: #383838;
  margin-bottom: 0;
}

.contact-left p:last-of-type {
  margin-bottom: 30px;
}

.contact-left p.small {
  font-size: 16px;
  margin-bottom: 10px;
}

.contact-left span.ic {
  width: 95px;
  height: 95px;
  border: 14px solid #ededf0;
  margin-bottom: 30px;
}

.contact-left span.ic-c {
  width: 100%;
  height: 100%;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.contact-left span.ic-c svg {
  fill: #159947;
  font-size: 40px;
}

.contact-left .row:first-of-type [class*='col-'] {
  border-bottom: 4px solid #fff;
  padding-bottom: 0;
}

.contact-left .row:last-of-type [class*='col-'] {
  border-right: 4px solid #fff;
  margin-top: 20px;
  margin-bottom: 20px;
}

.contact-left .row:last-of-type [class*='col-']:last-of-type {
  border: none;
}

.contact-left [class*='col-'] {
  margin-top: 0;
}

.contact-left-flex {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.contact-left-flex .row {
  width: 100%;
}

.contact-right {
  width: 50%;
  min-height: 720px;
  padding: 65px 175px 65px 115px;
  background-color: #103E28;
  background-image: url("../images/planet-right.svg");
  background-repeat: no-repeat;
  background-position: 110% center;
}

.contact-right .alert p {
  margin: 0 0 15px 0;
}

@media (max-width: 1599px) {
  .contact-right {
    padding: 65px 65px;
  }
}

@media (max-width: 1199px) {
  .contact-right {
    padding: 65px 30px;
  }
}

@media (max-width: 991px) {
  .contact-right {
    width: 100vw;
    height: auto;
    padding: 25px;
  }
}

.contact-right h2 {
  color: #ffffff;
}

.contact-right p {
  font-weight: 300;
  font-size: 16px;
  color: #fff;
  margin: 30px 0 60px 0;
}

.contact-right .form-input-wrapper {
  position: relative;
  margin-bottom: 15px;
}

.contact-right .form-input-wrapper::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(21, 153, 71, 0.3);
}

.contact-right .form-input-wrapper .form-input {
  background: transparent;
  border: 0;
  color: #ffffff;
}

.contact-right .form-input-wrapper .form-input::-moz-placeholder {
  color: #ffffff;
}

.contact-right .form-input-wrapper .form-input::placeholder {
  color: #ffffff;
}

.contact-right .form-input-wrapper .form-textarea {
  border: 0;
  background: rgba(21, 153, 71, 0.3);
  margin-bottom: 2px;
  color: #ffffff;
}

.contact-right .form-input-wrapper .form-textarea::-moz-placeholder {
  color: #ffffff;
}

.contact-right .form-input-wrapper .form-textarea::placeholder {
  color: #ffffff;
}

.contact-person-box {
  background-color: #DFE4DF;
  border-top: 2px solid #F2DD15;
  padding: 30px;
  display: flex;
  align-items: center;
  border-radius: 1px;
  -webkit-clip-path: polygon(100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%, 0 0);
  clip-path: polygon(100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%, 0 0);
  margin-bottom: 30px;
}

.contact-person-box h5 {
  margin-bottom: 0;
}

.contact-person-box ul {
  margin-left: auto;
  margin-bottom: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.contact-person-box ul li {
  width: 100%;
  margin-top: 3px;
  margin-bottom: 3px;
}

.contact-person-box ul li a {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}

.contact-person-box ul li a svg {
  margin-right: 10px;
  fill: #159947;
}

.contact-person-box a {
  text-decoration: none;
}

.contact-person-box.full-width h5 {
  font-size: 26px;
}

.contact-person-box.full-width ul li {
  width: auto;
  margin-left: 20px;
}

.contact-person-box.full-width ul li a {
  font-size: 18px;
}

@media (max-width: 991px) {
  .contact-person-box.half-width {
    flex-wrap: wrap;
  }
  .contact-person-box.half-width .contact-left-block {
    width: 100%;
  }
  .contact-person-box.half-width h5 {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }
  .contact-person-box.half-width ul {
    margin-left: 0;
  }
  .contact-person-box.half-width ul li {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .contact-person-box.full-width h5 {
    font-size: 18px;
  }
  .contact-person-box.full-width ul li {
    width: auto;
  }
  .contact-person-box.full-width ul li a {
    font-size: 16px;
  }
}

@media (max-width: 770px) {
  .contact-person-box {
    flex-wrap: wrap;
    padding: 15px;
  }
  .contact-person-box .contact-left-block {
    width: 100%;
  }
  .contact-person-box h5 {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }
  .contact-person-box ul {
    width: 100%;
    margin-left: 0;
  }
  .contact-person-box ul li {
    width: 100%;
  }
  .contact-person-box.full-width ul li {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.department {
  margin: 0 0 20px 0;
  position: relative;
}

.department h2 {
  margin-bottom: 50px;
}

.advantage__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background-color: #3FBC6E;
}

@media (max-width: 991px) {
  .advantage__wrap {
    grid-template-columns: 1fr;
  }
}

.advantage {
  background-color: #159947;
  color: #ffffff;
  display: flex;
  gap: 3rem;
  padding: 3.125rem 3.125rem 2rem;
}

.advantage img,
.advantage svg {
  width: 74px;
  height: 68px;
}

@media (max-width: 1439px) {
  .advantage {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 1.5rem 1rem;
  }
}

.advantage__title {
  font-family: "rotunda-variable", sans-serif;
  font-variation-settings: 'wght' 208;
  font-size: 1.5625rem;
  color: #103E28;
  font-weight: 200;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

@media (max-width: 1439px) {
  .advantage__title {
    margin-bottom: 1rem;
  }
}

.advantage__title b {
  color: #ffffff;
  font-variation-settings: 'wght' 722;
}

.advantage__section {
  background-color: transparent;
  position: relative;
  margin-top: -10rem;
  z-index: 3;
}

@media (max-width: 1439px) {
  .advantage__section {
    margin-top: -2rem;
    background-color: #103E28;
    padding: 2rem 0;
  }
}

.result-section {
  --mt: 22rem;
  padding-bottom: 0;
  padding-top: 0;
  margin-top: calc(var(--mt) * -1);
}

.result-section [class*="col"] {
  padding-top: calc(var(--mt) + 3rem);
  padding-bottom: 4rem;
  background-repeat: no-repeat;
  background-position: 0 center;
}

@media (max-width: 991px) {
  .result-section {
    --mt: 0;
  }
  .result-section [class*="col"] {
    padding: 2rem 3rem;
  }
}

@media (min-width: 1200px) {
  .result-section .row .col-lg-6:first-child {
    padding-right: clamp(2rem, 6vw, 8rem);
  }
  .result-section .row .col-lg-6:last-child {
    padding-left: clamp(2rem, 6vw, 8rem);
  }
}

.result__wrap {
  display: grid;
  grid-template-columns: repeat(2, 184px);
  gap: 2rem;
  grid-template-rows: repeat(7, 40px);
  justify-content: end;
}

@media (max-width: 991px) {
  .result__wrap {
    justify-content: center;
  }
}

.result {
  position: relative;
  padding: 3.5rem 1.5rem 1.5rem;
  border: 1px solid #159947;
  color: #ffffff;
  transition: all 0.25s ease;
  grid-row: span 3;
}

.result:hover, .result:focus-visible {
  background-color: #F2DD15;
  border-color: #F2DD15;
  color: #103E28;
}

.result:hover .result__icon, .result:focus-visible .result__icon {
  color: #103E28;
}

.result:nth-child(1) {
  grid-row: 1 / span 3;
}

.result:nth-child(2) {
  grid-row: 2 / span 3;
}

.result .result__title {
  font-family: "lektorat-text-variable", sans-serif;
  font-size: 3.5rem;
  font-variation-settings: 'wght' 553, 'wdth' 76;
  line-height: 1.2;
  color: #159947;
}

.result .result__title span {
  font-size: 1.25rem;
}

.result:hover .result__title {
  color: #103E28;
}

.result .result__icon {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 1rem;
  top: 1rem;
  filter: invert(87%) sepia(97%) saturate(1022%) hue-rotate(342deg) brightness(97%) contrast(96%);
}

.result:hover .result__icon {
  filter: invert(16%) sepia(81%) saturate(415%) hue-rotate(99deg) brightness(94%) contrast(92%);
}

.clients {
  padding: 4rem 0;
}

.clients__header {
  text-align: center;
}

.clients__header .swiper__controls {
  gap: 0;
}

.clients__header .swiper__btn {
  color: #F2DD15;
}

.clients__body {
  min-width: 100%;
}

.client-swiper {
  height: 100%;
}

.client-item {
  display: grid;
  place-content: center;
  padding: 1.5rem;
  height: auto;
}

.client-item__link {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .client-item__link img {
    filter: brightness(0) invert(89%) sepia(15%) saturate(362%) hue-rotate(178deg) brightness(87%) contrast(92%);
  }
  .client-item__link:hover img, .client-item__link:active img, .client-item__link:focus img {
    filter: none;
  }
}

.client-item__picture {
  display: block;
  max-width: 10rem;
}

.client-item__picture img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

.subcategory-item__link {
  display: block;
  text-decoration: none;
  color: inherit;
  background-color: #ffffff;
  box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.075);
  height: 100%;
  transition: box-shadow 100ms ease-out;
  border-bottom: 2px solid #159947;
}

.subcategory-item__link:hover {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}

.subcategory-item__img {
  width: 100%;
  aspect-ratio: 5 / 3;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.subcategory-item__title {
  font-size: 1.25rem;
  letter-spacing: 0;
  padding: 1rem;
  margin-bottom: 0.25rem;
}

/* Content */
section {
  position: relative;
  padding: 3rem 0 3rem;
}

@media (min-width: 771px) {
  section {
    padding: 3rem 0 3rem;
  }
}

.no-padding {
  padding: 0;
}

@media (min-width: 576px) {
  .no-xs-padding {
    padding: 0;
  }
}

@media (min-width: 771px) {
  .no-sm-padding {
    padding: 0;
  }
}

@media (min-width: 992px) {
  .no-md-padding {
    padding: 0;
  }
}

@media (min-width: 1200px) {
  .no-lg-padding {
    padding: 0;
  }
}

.padding-style-1 {
  padding: 4rem 0.5rem 1rem;
}

@media (min-width: 771px) {
  .padding-style-1 {
    padding: 2rem 0 0;
  }
}

.padding-style-2 {
  padding: 3rem 0.5rem 3rem;
}

@media (min-width: 771px) {
  .padding-style-2 {
    padding: 4rem 0 4rem;
  }
}

.padding-style-3 {
  padding: 2rem 0.5rem 1rem;
}

@media (min-width: 771px) {
  .padding-style-3 {
    padding: 2rem 0 1rem;
  }
}

.padding-style-4 {
  padding: 3rem 0.5rem 3rem;
}

@media (min-width: 771px) {
  .padding-style-4 {
    padding: 4rem 0 4rem;
  }
}

.padding-style-5 {
  padding: 3rem 0.5rem 2rem;
}

@media (min-width: 771px) {
  .padding-style-5 {
    padding: 5rem 0 5rem;
  }
}

.padding-style-5-ext {
  padding: 3rem 0.5rem 0;
}

@media (min-width: 771px) {
  .padding-style-5-ext {
    padding: 5rem 0 2.5rem;
  }
}

.padding-style-6 {
  padding: 3rem 0.5rem 3rem;
}

@media (min-width: 992px) {
  .padding-style-6 {
    padding: 0 0 5rem;
  }
}

.padding-style-6-ext {
  padding: 3rem 0.5rem 2rem;
}

@media (min-width: 771px) {
  .padding-style-6-ext {
    padding: 6rem 0 4rem;
  }
}

.padding-style-6-ext-1 {
  padding: 3rem 0.5rem 2rem;
}

@media (min-width: 771px) {
  .padding-style-6-ext-1 {
    padding: 6rem 0 6rem;
  }
}

.padding-style-7 {
  padding: 3rem 0.5rem 3rem;
}

@media (min-width: 771px) {
  .padding-style-7 {
    padding: 6rem 0 8rem;
  }
}

.padding-style-7-ext {
  padding: 3rem 0.5rem 2rem;
}

@media (min-width: 771px) {
  .padding-style-7-ext {
    padding: 4rem 0 4rem;
  }
}

.padding-content-1 {
  padding: 1rem 1rem;
}

.padding-content-2 {
  padding: 2rem 2rem;
}

.padding-content-3 {
  padding: 3rem 3rem;
}

.padding-content-4 {
  padding: 4rem 4rem;
}

.padding-content-5 {
  padding: 5rem 5rem;
}

.content-width-200 {
  max-width: 200px;
}

.content-width-300 {
  max-width: 300px;
}

.content-width-400 {
  max-width: 400px;
}

@media (max-width: 991px) {
  .content-width-md-300 {
    max-width: 300px;
  }
}

.page-index main {
  padding-top: 60px;
}

@media (min-width: 992px) {
  .page-index main {
    padding-top: 0;
  }
}

main {
  position: relative;
  display: block;
  padding-top: 60px;
  flex: 1 0 auto;
}

@media (min-width: 992px) {
  main {
    padding-top: 96px;
  }
}

.container-full {
  padding: 0 15px;
}

.container-small,
.container-normal,
.container-large {
  margin: 0 auto;
  padding: 0 15px;
}

@media (min-width: 771px) {
  .container-small {
    width: 730px;
  }
}

@media (min-width: 992px) {
  .container-small {
    width: 800px;
  }
}

@media (min-width: 1200px) {
  .container-small {
    width: 800px;
  }
}

@media (min-width: 1440px) {
  .container-small {
    width: 800px;
  }
}

@media (max-width: 770px) {
  .container-small {
    width: 100%;
  }
}

@media (min-width: 771px) {
  .container-normal {
    --width-md: 730px;
    width: 730px;
  }
}

@media (min-width: 992px) {
  .container-normal {
    --width-md: 920px;
    width: 920px;
  }
}

@media (min-width: 1200px) {
  .container-normal {
    --width-md: 1140px;
    width: 1140px;
  }
}

@media (min-width: 1440px) {
  .container-normal {
    width: 1354px;
  }
}

@media (max-width: 770px) {
  .container-normal {
    width: 100%;
  }
}

@media (min-width: 771px) {
  .container-large {
    width: 730px;
  }
}

@media (min-width: 992px) {
  .container-large {
    width: 950px;
  }
}

@media (min-width: 1200px) {
  .container-large {
    width: 1170px;
  }
}

@media (min-width: 1440px) {
  .container-large {
    width: 1360px;
  }
}

@media (min-width: 1600px) {
  .container-large {
    width: 100%;
    max-width: 1720px;
  }
}

@media (max-width: 770px) {
  .container-large {
    width: 100%;
  }
}

/* Footer */
.footer {
  z-index: 2;
  position: sticky;
  top: 100%;
  background-color: #103E28;
}

.footer-item {
  margin-bottom: 1rem;
}

@media (min-width: 576px) {
  .footer-item {
    margin-bottom: 2rem;
  }
}

@media (min-width: 992px) {
  .footer-item {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 369px) {
  .footer-item {
    width: 100%;
    margin-bottom: 2rem;
  }
}

.footer-top {
  padding: 3rem 0.5rem 0;
  border-top: 2px solid #159947;
}

@media (max-width: 991px) {
  .footer-top {
    padding: 2rem 0.5rem 0;
  }
}

.footer-bottom {
  background-color: #0B311E;
  padding: 1rem 0.5rem 1rem;
  color: #315945;
}

.footer-bottom a {
  color: #315945;
}

.footer-copy {
  color: #ffffff;
  font-family: "lektorat-text-variable", sans-serif, Arial, sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
}

.footer-copy.color-main {
  color: #159947;
}

@media (max-width: 770px) {
  .footer-copy {
    text-align: center;
  }
}

.footer-copy a:hover {
  text-decoration: underline;
}

.footer-link {
  color: white;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  width: 210px;
  height: 100%;
  padding-bottom: 1.5rem;
  position: relative;
}

@media (min-width: 993px) and (max-width: 1200px) {
  .footer-logo {
    width: 180px;
  }
}

@media (min-width: 576px) {
  .footer-logo {
    position: relative;
  }
}

@media (max-width: 575px) {
  .footer-logo {
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .footer-logo img {
    margin: 0 auto;
  }
}

.footer-address-item {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 30px;
  text-decoration: none;
}

@media (max-width: 991px) {
  .footer-address-item {
    margin: 0;
    padding: 10px 0;
  }
}

@media (max-width: 575px) {
  .footer-address-item {
    display: block;
    padding: 15px 0;
  }
}

@media (min-width: 772px) and (max-width: 992px) {
  .footer-address-item {
    display: block;
    margin-bottom: 10px;
  }
}

@media (min-width: 577px) and (max-width: 771px) {
  .footer-address-item {
    display: block;
    margin-bottom: 10px;
  }
}

.footer-address-item:hover .footer-address-text {
  text-decoration: none;
  color: #159947;
}

.footer-address-icon {
  display: inline-block;
  font-family: "lektorat-text-variable", sans-serif, Arial, sans-serif;
  float: left;
  width: 25px;
  margin-right: 25px;
  position: relative;
  top: -6px;
}

.footer-address-icon svg {
  fill: #159947;
  font-size: 35px;
  font-size: 2.1875rem;
}

@media (max-width: 575px) {
  .footer-address-icon {
    width: 25px;
  }
}

.footer-address-icon .icon-phone,
.footer-address-icon .icon-email {
  position: relative;
  top: 6px;
}

.footer-address-text {
  display: block;
  height: 100%;
  position: relative;
  top: 3px;
  overflow: hidden;
  font-family: "lektorat-text-variable", sans-serif, Arial, sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.4;
  word-wrap: break-word;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .footer-address-text {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.footer-address-text strong {
  display: block;
  margin-bottom: 1em;
  text-transform: uppercase;
  color: #159947;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
}

.contact .footer-address-text {
  font-size: 1.3rem;
}

@media (max-width: 991px) {
  .contact .footer-address-text {
    font-size: 1.25rem;
  }
}

.footer-address-text-ext {
  line-height: 1.6;
}

.footer-bg {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -2;
}

@media (min-width: 772px) and (max-width: 992px) {
  .footer-bg {
    top: -110px;
  }
}

@media (max-width: 575px) {
  .footer-bg {
    bottom: -160px;
    top: auto;
  }
}

.footer-bg svg {
  font-size: 958px;
  font-size: 59.875rem;
  height: 530px;
}

/* Header */
.navigation .navigation-trigger {
  display: none;
}

.navigation .menu-list .is-just-mobile {
  display: none;
}

@media (max-width: 991px) {
  .navigation .container-normal, .navigation .container-large {
    width: 100%;
  }
  .navigation .is-just-pc.nav-collapse {
    display: none;
  }
  .navigation .menu-list .is-just-mobile {
    display: block;
  }
  .navigation .nav-collapse {
    position: fixed;
    z-index: 98;
    top: 70px;
    left: 0;
    overflow: auto;
    width: 100%;
    height: 100%;
    padding: 25px 0 70px;
    transform: translateX(-100%);
    background-color: #ffffff;
    transition: none 0.4s ease-out;
  }
  .navigation .navigation-trigger {
    position: fixed;
    z-index: 200;
    top: 0;
    right: 0;
    display: block;
    width: 70px;
    height: 70px;
  }
  .navigation .navigation-trigger-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    width: 30px;
    height: 3px;
    transition-duration: 250ms;
    transition-property: background-color, transform;
    transform: translate(-50%, -50%);
    background-color: #000000;
    font-weight: 300;
  }
  .navigation .navigation-trigger-icon:before, .navigation .navigation-trigger-icon:after {
    position: absolute;
    display: block;
    width: 30px;
    height: 3px;
    content: '';
    transition-duration: 250ms;
    transition-property: margin, transform;
    background: #000000;
  }
  .navigation .navigation-trigger-icon:before {
    margin-top: -10px;
  }
  .navigation .navigation-trigger-icon:after {
    margin-top: 10px;
  }
  .navigation.is-collapse .nav-collapse {
    transform: translateX(0);
    transition: transform 250ms ease;
  }
  .navigation.is-collapse .navigation-trigger-icon {
    transition: none;
    background: rgba(0, 0, 0, 0);
  }
  .navigation.is-collapse .navigation-trigger-icon:before {
    margin-top: 0;
    transform: rotate(45deg);
  }
  .navigation.is-collapse .navigation-trigger-icon:after {
    margin-top: 0;
    transform: rotate(-45deg);
  }
}

@media (min-width: 1200px) {
  .page-index .header {
    position: relative;
  }
  .page-index .navigation:not(.navigation-scroll) {
    background-color: transparent;
    box-shadow: none;
  }
  .page-index .navigation:not(.navigation-scroll) .menu-list-item {
    color: #ffffff;
  }
  .page-index .navigation:not(.navigation-scroll) .footer-address-icon svg {
    fill: #159947;
  }
  .page-index .navigation:not(.navigation-scroll) .footer-address-text {
    color: #ffffff;
  }
}

@media (max-width: 1199px) {
  .page-index .navigation {
    background-color: #ffffff;
  }
}

.navigation {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 0 17px rgba(0, 0, 0, 0.12);
  padding: 0;
  transition: box-shadow 350ms ease-out, background-color 350ms ease-out;
}

.navigation-scroll {
  background-color: #ffffff;
  box-shadow: 0 5px 10px rgba(1, 1, 1, 0.1);
}

.navigation-scroll .header-logo {
  width: 6rem;
}

.navigation-scroll .header-logo-link {
  height: 100%;
}

@media (min-width: 992px) {
  .navigation-scroll .header-logo-link {
    padding-bottom: 0;
  }
}

.navigation-scroll .menu-list-item.is-active:before {
  top: -1px;
}

.navigation-scroll .menu-list {
  height: 100%;
  padding-block: 1rem;
}

@media (min-width: 992px) {
  .header-flex {
    display: flex;
    justify-content: space-between;
    gap: 6rem;
    padding-inline: 6rem;
  }
}

@media (max-width: 1439px) {
  .header-flex {
    gap: 2rem;
    padding-inline: 6rem;
  }
}

@media (max-width: 1199px) {
  .header-flex {
    padding-inline: 1rem;
    justify-content: start;
  }
}

.header-logo {
  align-self: flex-start;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 400ms ease-out;
}

@media (max-width: 1199px) {
  .header-logo {
    order: -1;
  }
}

@media (max-width: 991px) {
  .header-logo {
    display: inline-block;
  }
}

.header-logo-link {
  display: block;
  width: 100%;
  transition: all 400ms ease-out;
}

body:not(.page-index) .header-logo-link {
  max-width: 6rem;
}

.page-index .header-logo-link {
  max-width: 12vw;
}

@media (max-width: 1199px) {
  .page-index .header-logo-link {
    max-width: unset;
    height: 70px;
    position: relative;
  }
  .page-index .header-logo-link img {
    height: 110px;
    background-color: #fff;
  }
}

@media (max-width: 1199px) {
  .header-logo-link {
    max-width: 6rem;
  }
}

@media (max-width: 991px) {
  .header-logo-link {
    max-width: 4rem;
  }
}

@media (min-width: 1200px) {
  .header-logo-link img {
    background-color: #ffffff;
    box-shadow: 0 5px 10px rgba(1, 1, 1, 0.1);
  }
}

.navigation-scroll .header-logo-link img,
body:not(.page-index) .header-logo-link img {
  box-shadow: none;
}

@media (max-width: 1199px) {
  .header-logo-link img {
    height: 100%;
  }
}

.nav-collapse {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

@media (min-width: 1200px) {
  .nav-collapse {
    flex: 30%;
  }
}

@media (max-width: 991px) {
  .nav-collapse {
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }
}

.language-switcher {
  height: 36px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  cursor: pointer;
  color: #000;
}

.page-index .navigation:not(.navigation-scroll) .language-switcher {
  color: #ffffff;
}

@media (max-width: 991px) {
  .language-switcher {
    margin-top: 10px;
    justify-content: center;
  }
}

.language-switcher .language-selected {
  padding-left: 15px;
  padding-right: 15px;
  text-transform: uppercase;
}

.language-switcher .language-selected::after {
  border-style: solid;
  border-width: 2px 2px 0 0;
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  position: relative;
  transform: rotate(135deg);
  vertical-align: top;
  margin-left: 10px;
}

.language-switcher .language-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
  height: 0;
  transition: all 0.15s ease-out;
  color: #000;
}

.language-switcher .language-dropdown ul {
  background: #ffffff;
}

.language-switcher .language-dropdown ul li {
  text-transform: uppercase;
}

.language-switcher .language-dropdown ul li a {
  padding: 10px 15px;
  display: block;
  text-decoration: none;
  width: 100%;
  color: #000 !important;
}

@media (max-width: 991px) {
  .language-switcher .language-dropdown {
    text-align: center;
  }
}

.language-switcher.is-active .language-dropdown {
  overflow: visible;
  height: 100%;
}

.menu-list {
  text-align: center;
  height: 70px;
}

@media (min-width: 992px) {
  .menu-list {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
  }
}

@media (min-width: 1440px) {
  .menu-list {
    height: 60px;
  }
}

@media (max-width: 991px) {
  .menu-list {
    height: auto;
  }
}

.menu-list-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  font-family: "rotunda-variable", sans-serif, Arial, sans-serif;
  color: #000;
}

@media (min-width: 992px) {
  .menu-list-item {
    display: flex;
    margin: 0 0.5rem;
  }
}

@media (min-width: 1200px) {
  .menu-list-item {
    margin: 0 0.5rem;
  }
}

@media (min-width: 1600px) {
  .menu-list-item {
    margin: 0 1rem;
  }
  .page-index .menu-list-item {
    color: #ffffff;
  }
}

@media (max-width: 1199px) {
  .menu-list-item {
    color: #000;
  }
}

@media (max-width: 991px) {
  .menu-list-item {
    display: block;
    text-align: center;
  }
}

.menu-list-item:hover .menu-list-link, .menu-list-item.is-active .menu-list-link {
  color: #159947 !important;
}

.navigation-scroll .menu-list-item {
  color: #000;
}

@media (min-width: 1200px) {
  .menu-list-item.has-dropdown::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 0;
    height: 0;
    color: inherit;
    border-style: solid;
    border-width: 4px 4px 0 4px;
    border-color: currentColor transparent transparent transparent;
  }
}

.menu-list-link {
  font-weight: 300;
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

@media (max-width: 1199px) {
  .menu-list-link {
    font-size: 1rem;
  }
}

.menu-list-sub {
  color: #000;
}

@media (max-width: 991px) {
  .header-contact {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    width: 280px;
    margin: 1rem auto 0;
  }
}

@media (min-width: 992px) {
  .header-contact {
    display: inline-flex;
    justify-content: flex-end;
    display: flex;
  }
}

@media (min-width: 993px) and (max-width: 1200px) {
  .header-contact {
    flex-wrap: wrap;
  }
}

.header-contact .footer-address-item {
  padding: 8px 20px;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .header-contact .footer-address-item {
    padding: 8px 10px;
  }
}

@media (min-width: 1440px) {
  .header-contact .footer-address-item {
    padding: 8px 20px;
  }
}

@media (min-width: 993px) and (max-width: 1200px) {
  .header-contact .footer-address-item {
    padding: 5px 20px;
  }
}

.header-contact .footer-address-text {
  letter-spacing: 2.61px;
  font-size: 13px;
  font-size: 0.8125rem;
}

.header-contact .footer-address-icon {
  position: relative;
  top: 1px;
  margin-right: 5px;
}

.header-contact .footer-address-icon svg {
  font-size: 18px;
  font-size: 1.125rem;
}

.flex-wrapper {
  height: 100%;
}

@media (min-width: 992px) {
  .flex-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }
}

@media (max-width: 1199px) {
  .header__contact {
    position: absolute;
    right: 10px;
    top: 20px;
  }
}

@media (max-width: 991px) {
  .header__contact {
    display: none;
  }
}

.header__lang-switch {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1199px) {
  .header__lang-switch * {
    color: #000 !important;
  }
}

@media (max-width: 991px) {
  .header__lang-switch {
    display: none;
  }
}

@media (min-width: 992px) {
  .nav__lang-switch {
    display: none;
  }
}

.nav__lang-switch * {
  color: #000 !important;
}

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