/**
 * Swiper 4.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 22, 2019
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0; }

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none; }

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none; }

/**
 *   Here are declarations of colors used by current theme.
 *   Name them by functionality not by it's color!
 */
/**
[MG] do poprawy ten kolorek.
*/
/**
 *   Here are declarations of colors used by current theme.
 *   Name them by functionality not by it's color!
 */
/**
[MG] do poprawy ten kolorek.
*/
.i-icon {
  display: inline-block;
  width: 64px;
  height: 64px;
  background-repeat: no-repeat;
  background-position: center; }
  .i-icon__person--green {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 141.39 141.39'%3E%3Cpath fill='%23006937' d='M89.11,75.06s-.7-.17-2-.4c-1.17,4.07-8.54,7.21-17.49,7.21-8.64,0-15.82-2.93-17.35-6.79-33.36,8.22-30.93,39.27-30.93,39.27,48.79,15,98.81,0,98.81,0S122.53,83.26,89.11,75.06Z'/%3E%3Cpath fill='%23006937' d='M93.46,47c0-19.51-10.19-26.57-22.77-26.57S47.93,27.46,47.93,47c0,14.68,10.19,26.57,22.77,26.57S93.46,61.64,93.46,47Z'/%3E%3C/svg%3E%0A"); }
  .i-icon__dish--green {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 141.39 141.39'%3E%3Cpath fill='%23006937' d='M105,54s13.33-35.85,24-26.79-15.25,25.71-18,29.06S105,54,105,54Z'/%3E%3Cpath fill='%23006937' d='M129,69.48c0,31.68-25.68,46.21-57.36,46.21S14.26,101.16,14.26,69.48Z'/%3E%3Cpath fill='%23006937' d='M33,66.36a12,12,0,0,1,6.27-3.89l3-.8-.2-3.12a4,4,0,0,1,0-.44,12,12,0,0,1,20.12-9l2.42,2.16,2.51-2.05a12.14,12.14,0,0,1,11.86-2l1.3.48,1.31-.48a12.34,12.34,0,0,1,4.21-.75,12.06,12.06,0,0,1,11,7.17l1,2.22,2.43,0a11.81,11.81,0,0,1,7.58,2.81l.51.44.63.23a12.07,12.07,0,0,1,7.16,7h7.89a19.67,19.67,0,0,0-11.86-13.84,19.62,19.62,0,0,0-9.5-4,19.62,19.62,0,0,0-22.36-8.8,19.8,19.8,0,0,0-15.47,1.93,19.59,19.59,0,0,0-30.19,14.4,19.45,19.45,0,0,0-10.44,10.3Z'/%3E%3Cpath fill='%23006937' d='M54.39,74.19H19.3S19.67,90.94,31,99.24c0,0-11.32-19.75,0-20.44S54.39,74.19,54.39,74.19Z'/%3E%3C/svg%3E%0A"); }
  .i-icon__clock--green {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 141.39 141.39'%3E%3Cpath fill='%23006937' class='cls-1' d='M78.4,34.14a44,44,0,0,0-39.31,73.94l-8.42,14.16,3.49,2.63,10.91-11.62a44,44,0,0,0,51.26,0l10.91,11.62,3.49-2.63-8.42-14.16A44,44,0,0,0,78.4,34.14Z'/%3E%3Cpath fill='%23006937' class='cls-1' d='M17.88,32.67a20.4,20.4,0,0,0,1.21,28.82l27.61-30A20.4,20.4,0,0,0,17.88,32.67Z'/%3E%3Cpath fill='%23006937' class='cls-1' d='M123.51,32.67a20.39,20.39,0,0,0-28.82-1.2l27.61,30A20.4,20.4,0,0,0,123.51,32.67Z'/%3E%3Cpath fill='%23006937' class='cls-1' d='M71.1,29.65a22.28,22.28,0,0,1,5,.56l2.44-9.26H63.67l2.44,9.26A22.25,22.25,0,0,1,71.1,29.65Z'/%3E%3Crect fill='%23006937' class='cls-1' x='63.67' y='16.52' width='14.87' height='2.3'/%3E%3C/svg%3E%0A"); }
  .i-icon__chain-link--green {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 73.86 73.65'%3E%3Cpath fill='%23006937' d='M48.23,41.58H25.29c-1.75,0-2.93-1.41-2.93-3.5v-2.5c0-1.94,1-4,2.93-4H48.23c1.76,0,4.13,2,4.13,4v2.5C52.36,40.18,49.87,41.58,48.23,41.58Zm-22.94-8c-.48,0-.93,1-.93,2v2.5c0,.35.07,1.5.93,1.5H48.23c.84,0,2.13-.8,2.13-1.5v-2.5c0-.8-1.4-2-2.13-2Z'/%3E%3Cpath fill='%23006937' d='M21.93,51.58A14.75,14.75,0,1,1,33.31,27.44a1,1,0,1,1-1.54,1.27,12.75,12.75,0,1,0,0,16.23,1,1,0,1,1,1.54,1.27A14.71,14.71,0,0,1,21.93,51.58Z'/%3E%3Cpath fill='%23006937' d='M51.93,51.58a14.7,14.7,0,0,1-11.38-5.36,1,1,0,1,1,1.54-1.27,12.75,12.75,0,1,0,0-16.23,1,1,0,1,1-1.54-1.27A14.75,14.75,0,1,1,51.93,51.58Z'/%3E%3C/svg%3E%0A"); }
  .i-icon__fb-like--green {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 73.86 73.65'%3E%3Cpath fill='%23006937' d='M56.95,61.26H33.88c-1.66,0-6.78-1.9-6.78-4.22V36.67a1,1,0,0,1,.58-.91C33,33.28,35,29.18,37.1,21.51V14.73a1,1,0,0,1,.28-.69,5.6,5.6,0,0,1,7.07-.72c3.34,2,6.28,7.27,4.06,16H59.35c2.47,0,7.41,2.76,7.41,6.38,0,1.1-.12,3.37-1,4.54a6.7,6.7,0,0,1-1.2,6.91c.19,3.48-.68,5.92-2.59,7.25a8.65,8.65,0,0,1-2,5.33A4,4,0,0,1,56.95,61.26ZM29.1,37.3V57c.26.63,3.36,2.22,4.78,2.22H56.95a2.17,2.17,0,0,0,1.46-.89A6.37,6.37,0,0,0,59.92,54a1,1,0,0,1,.52-1c1.63-.88,2.33-3,2.07-6.17a1,1,0,0,1,.36-.85c2-1.63,1.34-4.61.78-5.47A1,1,0,0,1,64.16,39a6.69,6.69,0,0,0,.6-3.31c0-2.3-3.9-4.38-5.41-4.38H47.2a1,1,0,0,1-1-1.29c2.36-7.8.3-13.12-2.8-14.93a3.67,3.67,0,0,0-4.34.12v6.49a1,1,0,0,1,0,.27C37.19,28.7,35.25,34.16,29.1,37.3Z'/%3E%3Cpath fill='%23006937' d='M25,63.26H11.23A4.14,4.14,0,0,1,7.1,59.13V33.39a4.14,4.14,0,0,1,4.13-4.13H25a4.14,4.14,0,0,1,4.13,4.13V59.13A4.14,4.14,0,0,1,25,63.26Zm-13.73-32A2.14,2.14,0,0,0,9.1,33.39V59.13a2.14,2.14,0,0,0,2.13,2.13H25a2.14,2.14,0,0,0,2.13-2.13V33.39A2.14,2.14,0,0,0,25,31.26Z'/%3E%3C/svg%3E%0A"); }
  .i-icon__watermelon--green {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 73.86 73.65'%3E%3Cpath fill='%23006937' d='M18.71,28.92a1,1,0,0,0,.45-.66,1.06,1.06,0,0,0-.15-.78,1,1,0,0,0-.66-.44,1.07,1.07,0,0,0-1.23.8,1,1,0,0,0,1.58,1.08'/%3E%3Cpath fill='%23006937' d='M27.29,30.15a1,1,0,0,0,.3-1.44,1,1,0,0,0-.66-.45,1.06,1.06,0,0,0-1.22.8,1,1,0,0,0,.14.78,1.05,1.05,0,0,0,.66.44,1,1,0,0,0,.78-.14'/%3E%3Cpath fill='%23006937' d='M34.65,31.38a1,1,0,0,0,.45-.65,1.06,1.06,0,0,0-.15-.78,1,1,0,0,0-.66-.44,1.08,1.08,0,0,0-1.23.8,1,1,0,0,0,.81,1.22,1,1,0,0,0,.78-.15'/%3E%3Cpath fill='%23006937' d='M42,33.83a1.06,1.06,0,0,0,.45-.66,1.06,1.06,0,0,0-.8-1.23,1,1,0,0,0-.43,2,1,1,0,0,0,.78-.15'/%3E%3Cpath fill='%23006937' d='M50.6,35.06a1,1,0,0,0,.3-1.44,1,1,0,0,0-.66-.45A1.07,1.07,0,0,0,49,34a1,1,0,0,0,.8,1.23,1,1,0,0,0,.78-.15'/%3E%3Cpath fill='%23006937' d='M58,36.28a1,1,0,0,0,.3-1.43,1.05,1.05,0,0,0-.66-.45,1.07,1.07,0,0,0-1.23.8,1.06,1.06,0,0,0,.15.78,1,1,0,0,0,.65.45,1,1,0,0,0,.78-.15'/%3E%3Cpath fill='%23006937' d='M22.39,33.83a1,1,0,0,0,.31-1.43,1,1,0,0,0-.67-.45,1.08,1.08,0,0,0-1.22.8,1.06,1.06,0,0,0,.15.78,1,1,0,0,0,1.43.3'/%3E%3Cpath fill='%23006937' d='M29.75,35.06a1.05,1.05,0,0,0,.45-.66,1,1,0,0,0-.15-.78,1.05,1.05,0,0,0-.66-.44,1,1,0,0,0-1.08,1.58,1.06,1.06,0,0,0,.66.45,1.08,1.08,0,0,0,.77-.15'/%3E%3Cpath fill='%23006937' d='M37.11,37.51a1,1,0,0,0,.3-1.44,1,1,0,0,0-.65-.45,1.07,1.07,0,0,0-1.23.8,1,1,0,0,0,1.58,1.08'/%3E%3Cpath fill='%23006937' d='M45.69,38.73a1,1,0,1,0-1.58-1.08,1,1,0,0,0,.14.78,1,1,0,0,0,.66.44,1,1,0,0,0,.78-.14'/%3E%3Cpath fill='%23006937' d='M53.06,40a1,1,0,0,0,.45-.66,1,1,0,0,0-.8-1.22A1,1,0,1,0,53.06,40'/%3E%3Cpath fill='%23006937' d='M24.48,37.65a1,1,0,0,0,.81,1.23,1.06,1.06,0,0,0,.78-.15,1,1,0,0,0-.36-1.89,1.08,1.08,0,0,0-1.23.8'/%3E%3Cpath fill='%23006937' d='M31.85,40.11a1,1,0,0,0,.8,1.23,1,1,0,0,0,1.22-.8,1,1,0,0,0-.15-.78,1,1,0,0,0-.66-.45,1.07,1.07,0,0,0-1.23.8'/%3E%3Cpath fill='%23006937' d='M39.2,41.34a1.08,1.08,0,0,0,.15.77A1,1,0,0,0,41.09,41a1.06,1.06,0,0,0-.66-.45,1.08,1.08,0,0,0-1.23.81'/%3E%3Cpath fill='%23006937' d='M47.79,42.56a1,1,0,0,0,1.58,1.08,1,1,0,0,0,.3-1.44,1,1,0,0,0-.66-.45,1.07,1.07,0,0,0-1.23.8'/%3E%3Cpath fill='%23006937' d='M28.52,44.88a1,1,0,0,0,.44-.66,1,1,0,0,0-.14-.77,1.05,1.05,0,0,0-.66-.46,1.08,1.08,0,0,0-1.23.8,1.06,1.06,0,0,0,.15.78,1,1,0,0,0,.65.44,1,1,0,0,0,.78-.14'/%3E%3Cpath fill='%23006937' d='M35.88,46.1a1,1,0,0,0,.29-1.43,1.07,1.07,0,0,0-.65-.45,1,1,0,0,0-1.08,1.58,1.06,1.06,0,0,0,.65.45,1.05,1.05,0,0,0,.79-.15'/%3E%3Cpath fill='%23006937' d='M43.24,47.32a1,1,0,0,0-.36-1.88,1,1,0,1,0-.43,2,1,1,0,0,0,.79-.15'/%3E%3Cpath fill='%23006937' d='M57.34,47.78h0c-6.61,4.32-15.31,5.77-23.87,4C18.1,48.55,7.62,35.86,9.6,23.15l1.62.34A21.43,21.43,0,0,0,16,40.22,30.31,30.31,0,0,0,33.68,50.76,29.94,29.94,0,0,0,56.08,47a21.21,21.21,0,0,0,9.1-12.22l1.61.34A22,22,0,0,1,57.34,47.78Zm5.81-13.43a19.15,19.15,0,0,1-8.21,10.91A27.87,27.87,0,0,1,34.1,48.74a28.29,28.29,0,0,1-16.46-9.81,19.45,19.45,0,0,1-4.4-15Zm5.11-1-3.63-.76h0l-52-10.88h0L9,20.91a1,1,0,0,0-1.22.8c-1.44,6.89.41,14,5.23,20.11l.44.52h0l1.35,1.6.05,0A35,35,0,0,0,33,53.79c.65.13,1.3.25,2,.35a49,49,0,0,0,6.79.41,32.31,32.31,0,0,0,16.69-5h0a23.84,23.84,0,0,0,10.59-15,1,1,0,0,0-.8-1.22Z'/%3E%3C/svg%3E%0A"); }
  .i-icon__search--black {
    background-image: url("data:image/svg+xml,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 454 477'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23000; %7D %3C/style%3E%3C/defs%3E%3Ctitle%3Ezoom%3C/title%3E%3Cpath class='cls-1' d='M446.07,447,312.79,303.67a177.72,177.72,0,0,0,47.76-121.35c0-98.36-80-178.39-178.39-178.39S3.78,84,3.78,182.32,83.8,360.7,182.17,360.7a177.46,177.46,0,0,0,107.64-36.23L423.37,468.13A15.5,15.5,0,0,0,446.07,447ZM34.78,182.32C34.78,101,100.9,34.93,182.17,34.93S329.56,101,329.56,182.32,263.44,329.7,182.17,329.7,34.78,263.59,34.78,182.32Z'/%3E%3C/svg%3E"); }

/**
 *   Here are declarations of colors used by current theme.
 *   Name them by functionality not by it's color!
 */
/**
[MG] do poprawy ten kolorek.
*/
* {
  box-sizing: border-box; }

html, body {
  overflow-x: hidden; }

body {
  font-family: 'Rubik', sans-serif; }

a {
  color: #006937;
  text-decoration: none; }

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

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-family: 'Playfair Display', serif; }

h1 {
  font-size: 36px; }

h2, h3 {
  font-size: 30px; }

h4, h5, h6 {
  font-size: 24px; }

input::placeholder {
  color: inherit;
  opacity: 0.9; }

input::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.9; }

input::-moz-placeholder {
  color: inherit;
  opacity: 0.9; }

input:-ms-input-placeholder {
  color: inherit;
  opacity: 0.9; }

input:-moz-placeholder {
  color: inherit;
  opacity: 0.9; }

@media (max-width: 575.98px) {
  .hide-below-xs {
    display: none; } }

@media (max-width: 767.98px) {
  .hide-below-sm {
    display: none; } }

@media (max-width: 991.98px) {
  .hide-below-md {
    display: none; } }

@media (max-width: 1199.98px) {
  .hide-below-lg {
    display: none; } }

.hide-below-xl {
  display: none; }

.hide-above-xs {
  display: none; }

@media (min-width: 576px) {
  .hide-above-sm {
    display: none; } }

@media (min-width: 768px) {
  .hide-above-md {
    display: none; } }

@media (min-width: 992px) {
  .hide-above-lg {
    display: none; } }

@media (min-width: 1200px) {
  .hide-above-xl {
    display: none; } }

@media (max-width: 575.98px) {
  .hide-only-xs {
    display: none; } }

@media (min-width: 576px) and (max-width: 767.98px) {
  .hide-only-sm {
    display: none; } }

@media (min-width: 768px) and (max-width: 991.98px) {
  .hide-only-md {
    display: none; } }

@media (min-width: 992px) and (max-width: 1199.98px) {
  .hide-only-lg {
    display: none; } }

@media (min-width: 1200px) {
  .hide-only-xl {
    display: none; } }

.page {
  max-width: 1622px;
  margin: 0 auto;
  position: relative;
  z-index: 1; }
  .page__main {
    position: relative; }

.page-section {
  padding: 50px 0;
  border-bottom: 1px solid #ededed; }
  .page-section--search-results {
    padding-top: 15px; }
  .page-section .page-section__title {
    display: block;
    font-size: 30px;
    margin: 0 0 30px 0;
    font-weight: 400;
    font-family: 'Playfair Display', serif; }
  .page-section a.page-section__title {
    color: #000;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
    .page-section a.page-section__title:hover {
      color: #006937; }
  @media (max-width: 991.98px) {
    .page-section {
      padding: 30px 0; } }

.page-title--high {
  margin-top: 45px;
  font-size: 48px; }
  @media (max-width: 991.98px) {
    .page-title--high {
      font-size: 36px; } }

.page-content {
  margin-bottom: 40px; }

.container {
  width: 100%;
  max-width: calc(1170px + 30px);
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px; }

.banner {
  user-select: none; }
  .banner-single img {
    display: block; }
  @media (max-width: 991.98px) {
    .banner-single {
      display: none; } }
  .banner-fade, .banner-fade-short {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: top center;
    height: 480px;
    z-index: -1; }
    .banner-fade::after, .banner-fade-short::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 72%, white 100%);
      z-index: 1; }
    @media (max-width: 991.98px) {
      .banner-fade, .banner-fade-short {
        display: none; } }
  .banner-fade-short {
    height: 315px; }
  .banner-fade-large {
    position: relative;
    background-repeat: no-repeat;
    background-position: top center;
    height: 270px;
    z-index: -1; }
    .banner-fade-large::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, white 100%);
      z-index: 1; }
    @media (max-width: 991.98px) {
      .banner-fade-large {
        height: 315px; } }

.badge {
  background: #e02540;
  color: #ffffff;
  border-radius: 3px;
  padding: 2px 10px;
  line-height: 1.5em;
  font-size: 12px;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 500; }

/**
 * Here are stored styles that affects only fields edited with user editor.
 */
.wyswig-editor img {
  display: block;
  width: 100%;
  max-width: 380px;
  margin: 15px auto; }

/**
 *  TODO: [MG] Refactor this to use only classes .btn__[name].
 */
.btn {
  background: #006937;
  color: #ffffff;
  border: 0;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  transition: 0.3s filter;
  cursor: pointer;
  line-height: 19px;
  font-size: 16px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 49px; }
  .btn:hover {
    filter: brightness(0.8); }
  .btn[disabled] {
    opacity: 0.8;
    cursor: not-allowed;
    pointer-events: none; }
  .btn--fluid {
    display: flex;
    width: 100%; }
  .btn--big {
    min-height: 61px; }
  .btn__primary {
    background: #006937;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px; }
  .btn__primary-o {
    border: 1px solid #ededed;
    background: #fbfbfb;
    font-size: 14px;
    padding: 10px 15px;
    color: #333333;
    border-radius: 4px; }
  .btn__gray-contained {
    border-radius: 4px;
    background: #e2e2e2;
    padding: 10px 30px;
    color: #333333;
    line-height: 1.2em;
    min-height: 0; }
  .btn-round {
    border-radius: 50px;
    padding: 15px 30px; }
  .btn-loading {
    position: relative;
    padding-left: 40px; }
    .btn-loading::before {
      content: "";
      position: absolute;
      left: 13px;
      top: 50%;
      transform: translateY(-50%) rotate(0deg);
      width: 15px;
      height: 15px;
      border: 2px solid rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      border-right-color: #fff;
      animation: animLoading 0.5s infinite linear; }

@keyframes animLoading {
  100% {
    transform: translateY(-50%) rotate(360deg); } }
  .btn__registration-facebook {
    background: #3c5a98; }
  .btn__registration-link {
    background: #e2e2e2;
    color: #989898; }
    .btn__registration-link strong {
      font-weight: 400;
      color: #499002; }
  .btn__accordion {
    display: block;
    font-size: 14px;
    font-weight: 300;
    color: #000000;
    background: transparent;
    border-bottom: 1px solid #ededed;
    padding: 10px 0 18px 0;
    border-radius: 0;
    outline: none;
    width: 100%;
    text-align: left;
    position: relative; }
    .btn__accordion::before {
      content: attr(data-more-label); }
    .btn__accordion::after {
      display: inline-block;
      vertical-align: middle;
      content: "";
      width: 10px;
      height: 10px;
      background: red;
      margin-left: 15px;
      background: url(../img/icon-arrow-down.svg) center/10px no-repeat;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
    .btn__accordion.active::before {
      content: attr(data-less-label); }
    .btn__accordion.active::after {
      transform: rotate(180deg); }

.form {
  color: #999; }
  .form:before, .form:after {
    content: "";
    display: table; }
  .form:after {
    clear: both; }
  .form label {
    display: block;
    user-select: none;
    cursor: pointer; }
    .form label a {
      text-decoration: underline;
      color: inherit; }
  .form .error-message {
    margin: 5px 0 -2px;
    color: #e02540; }
  .form__field {
    margin: 35px 0;
    line-height: 1.5em;
    font-size: 16px; }
    .form__field input, .form__field textarea {
      display: block;
      width: 100%;
      height: 60px;
      margin: 6px 0 0;
      padding: 14px;
      border: 1px solid #e5e5e5;
      border-radius: 5px;
      background: #fff;
      line-height: 20px;
      outline: none;
      color: #666666; }
      .form__field input.error, .form__field textarea.error {
        border-color: #e02540;
        color: #e02540; }
    .form__field textarea {
      height: 130px; }
    .form__field--checkbox, .form__field--radio {
      position: relative;
      padding: 0 0 0 36px;
      font-size: 14px; }
      .form__field--checkbox .input, .form__field--radio .input {
        position: absolute;
        top: 0;
        left: 0;
        width: 19px;
        height: 19px;
        background: #fff;
        border: 2px solid #e6e6e6;
        border-radius: 3px;
        cursor: pointer;
        transition: all .3s; }
        .form__field--checkbox .input:after, .form__field--radio .input:after {
          content: '';
          position: absolute;
          top: 50%;
          left: 50%;
          opacity: 0;
          transform: translate(-50%, -50%);
          transition: opacity .3s; }
      .form__field--checkbox input, .form__field--radio input {
        display: none; }
        .form__field--checkbox input:checked + .input, .form__field--checkbox input.checked + .input, .form__field--radio input:checked + .input, .form__field--radio input.checked + .input {
          border-color: #006937; }
        .form__field--checkbox input:checked + .input:after, .form__field--radio input:checked + .input:after {
          opacity: 1; }
        .form__field--checkbox input.error + .input, .form__field--radio input.error + .input {
          border-color: #e02540; }
      .form__field--checkbox + .error-message, .form__field--radio + .error-message {
        margin-top: -30px;
        padding-left: 36px; }
      .form__field--checkbox-large, .form__field--radio-large {
        padding-left: 45px; }
        .form__field--checkbox-large .input, .form__field--radio-large .input {
          width: 28px;
          height: 28px;
          border-radius: 5px; }
          .form__field--checkbox-large .input:after, .form__field--radio-large .input:after {
            width: 16px;
            height: 16px; }
    .form__field--checkbox .input:after {
      width: 100%;
      height: 100%;
      background: url(../img/tick.svg) no-repeat center;
      background-size: 12px auto; }
    .form__field--checkbox input:checked + .input {
      background: #006937; }
    .form__field--checkbox-large .input:after {
      background-size: 20px auto; }
    .form__field--radio .input, .form__field--radio-large .input {
      border-radius: 100%; }
    .form__field--radio .input:after {
      width: 10px;
      height: 10px;
      border-radius: 100%;
      background: #006937; }
    .form__field--radio-large .input:after {
      width: 16px;
      height: 16px; }
  .form__section-header h3, .form__section-header p {
    margin: 0; }
  .form__section-header h3 {
    margin-bottom: 10px;
    font-family: inherit;
    font-size: 22px;
    font-weight: 700; }
  .form__seperator {
    position: relative;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 16px;
    color: #dadada;
    min-height: 1px;
    margin: 35px 0; }
    .form__seperator:before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      height: 1px;
      background: #dadada; }
    .form__seperator .input, .form__seperator span {
      position: relative;
      display: inline-block;
      padding: 0 11px;
      background: #fff; }
    .form__seperator--without-text {
      margin: 62px 0 42px; }
      @media (max-width: 991.98px) {
        .form__seperator--without-text {
          margin-top: 52px; } }

/**
 *   Here are declarations of colors used by current theme.
 *   Name them by functionality not by it's color!
 */
/**
[MG] do poprawy ten kolorek.
*/
.page-header {
  position: relative;
  z-index: 2;
  padding-left: 68px;
  height: 87px;
  display: flex;
  box-shadow: 0 1px 16px 0 rgba(35, 31, 32, 0.17); }
  @media (max-width: 991.98px) {
    .page-header {
      padding-left: 15px;
      height: 70px; } }
  .page-header__logo {
    margin-top: 10px;
    position: relative;
    z-index: 2; }
    @media (max-width: 767.98px) {
      .page-header__logo {
        margin-top: 17px;
        width: 105px; } }
  .page-header__actions {
    display: flex;
    margin-left: auto; }
  @media (min-width: 768px) {
    .page-header .page-nav {
      display: flex;
      flex-grow: 1; }
      .page-header .page-nav__mobile-trigger {
        display: none; }
      .page-header .page-nav__list {
        height: 100%;
        display: flex;
        margin: 0;
        list-style: none;
        padding: 10px 0 0 0; }
        .page-header .page-nav__list--authorization {
          margin-left: auto; }
      .page-header .page-nav__list-el {
        display: flex;
        align-items: center; }
        .page-header .page-nav__list-el:last-child .page-nav__list-link::after {
          display: none; }
        .page-header .page-nav__list-el--sign-up {
          display: none; }
      .page-header .page-nav__list-link {
        color: #006937;
        padding: 0 25px;
        position: relative;
        text-align: center; }
        .page-header .page-nav__list-link::after {
          content: "";
          width: 1px;
          background: #cde0b8;
          position: absolute;
          right: 0;
          top: 4px;
          bottom: 4px; }
      .page-header .page-nav__list-text {
        display: block;
        position: relative;
        padding-bottom: 4px; }
        .page-header .page-nav__list-text::after {
          content: "";
          position: absolute;
          bottom: 0;
          left: 0;
          width: 100%;
          border-bottom: 3px solid #006937;
          transform: scaleX(0);
          transition: transform 0.3s ease; }
        .page-header .page-nav__list-text:hover::after, .page-header .page-nav__list-text.active::after {
          transform: scaleX(1); }
      .page-header .page-nav__list-icon {
        margin-right: 10px;
        display: inline-block;
        width: 15px;
        height: 15px; } }
  @media (max-width: 767.98px) {
    .page-header .page-nav {
      display: none;
      position: absolute;
      top: 100%;
      right: 0;
      left: 0;
      background: #006937;
      padding: 40px 0; }
      .page-header .page-nav.active {
        display: block; }
      .page-header .page-nav__mobile-trigger {
        width: 70px;
        margin-right: 10px; }
      .page-header .page-nav__list {
        list-style: none;
        padding: 0;
        margin: 0; }
        .page-header .page-nav__list--authorization {
          display: flex;
          margin-top: 30px;
          padding: 0 5px;
          justify-content: center; }
          .page-header .page-nav__list--authorization .page-nav__list-el {
            width: 100%;
            max-width: 150px;
            margin: 0 10px; }
          .page-header .page-nav__list--authorization .page-nav__list-link {
            background: #ffffff;
            color: #006937;
            padding: 13px 20px;
            border-radius: 4px;
            text-align: center; }
            .page-header .page-nav__list--authorization .page-nav__list-link::after {
              display: none; }
          .page-header .page-nav__list--authorization .page-nav__list-text {
            font-size: 16px; }
      .page-header .page-nav__list-link {
        display: block;
        color: #ffffff;
        padding: 21px 15px;
        position: relative; }
        .page-header .page-nav__list-link::after {
          content: "";
          position: absolute;
          top: 100%;
          right: 15px;
          left: 15px;
          height: 1px;
          background: #009c52; }
        .page-header .page-nav__list-link:hover, .page-header .page-nav__list-link.active {
          color: #006937;
          background: #ffffff; }
      .page-header .page-nav__list-el:last-child .page-nav__list-link::after {
        display: none; }
      .page-header .page-nav__list-text {
        font-size: 18px; }
      .page-header .page-nav__list-icon {
        display: none; } }
  .page-header .hamburger-nav {
    width: 100%;
    height: 100%;
    position: relative; }
    .page-header .hamburger-nav__icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      height: 3px; }
      .page-header .hamburger-nav__icon > i {
        display: block;
        width: 38px;
        height: 3px;
        background: #006937;
        border-radius: 3px;
        position: absolute;
        left: -19px;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.6, 1); }
        .page-header .hamburger-nav__icon > i:first-child {
          top: -8px; }
        .page-header .hamburger-nav__icon > i:nth-child(2) {
          width: 26px;
          opacity: 1;
          transform: scaleY(1); }
        .page-header .hamburger-nav__icon > i:last-child {
          bottom: -8px; }
    .page-header .hamburger-nav.active .hamburger-nav__icon > i:first-child {
      transform: rotate(45deg);
      top: 0; }
    .page-header .hamburger-nav.active .hamburger-nav__icon > i:nth-child(2) {
      opacity: 0;
      transform: scaleY(0); }
    .page-header .hamburger-nav.active .hamburger-nav__icon > i:last-child {
      transform: rotate(-45deg);
      bottom: -1px; }
  .page-header .page-search {
    display: flex;
    position: relative; }
    @media (min-width: 992px) {
      .page-header .page-search {
        width: 260px; } }
    .page-header .page-search__wrap {
      flex-grow: 1;
      background: #006937;
      position: relative; }
    .page-header .page-search__input {
      display: block;
      width: 200px;
      height: 100%;
      border: 0;
      background: transparent;
      color: #ffffff;
      -webkit-text-fill-color: #ffffff;
      padding: 10px 0 0 30px; }
      .page-header .page-search__input::placeholder {
        font-style: italic;
        font-weight: 300;
        font-size: 16px; }
      .page-header .page-search__input::-webkit-input-placeholder {
        font-style: italic;
        font-weight: 300;
        font-size: 16px; }
      .page-header .page-search__input::-moz-placeholder {
        font-style: italic;
        font-weight: 300;
        font-size: 16px; }
      .page-header .page-search__input:-ms-input-placeholder {
        font-style: italic;
        font-weight: 300;
        font-size: 16px; }
      .page-header .page-search__input:-moz-placeholder {
        font-style: italic;
        font-weight: 300;
        font-size: 16px; }
      .page-header .page-search__input:focus {
        outline: none; }
    .page-header .page-search__input-trigger {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      cursor: text; }
    .page-header .page-search__btn {
      background: url(../img/icon-zoom.svg) center/23px no-repeat #006937;
      border: 0;
      width: 80px;
      margin: 0;
      padding: 0;
      cursor: pointer; }
    @media (max-width: 991.98px) {
      .page-header .page-search__wrap {
        position: absolute;
        visibility: hidden;
        top: 0;
        left: 0;
        bottom: 0;
        width: 200px;
        overflow: hidden;
        transform: translate3d(0, 0, 0);
        transition: visibility 0s 0.195s, transform 0.195s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1; }
      .page-header .page-search__input {
        opacity: 0;
        transition: opacity 0.25s 0s cubic-bezier(0.4, 0, 0.2, 1); }
      .page-header .page-search__btn {
        position: relative;
        z-index: 2;
        width: 70px; }
      .page-header .page-search.open .page-search__wrap {
        visibility: visible;
        transform: translate3d(-200px, 0, 0);
        transition: visibility 0s 0s, transform 0.225s cubic-bezier(0.4, 0, 0.2, 1); }
      .page-header .page-search.open .page-search__input {
        opacity: 1;
        transition: opacity 0.225s cubic-bezier(0.4, 0, 0.2, 1) 0.225s; } }
  .page-header .search-layer {
    background: #ffffff;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.3s, opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: auto; }
    .page-header .search-layer.active {
      visibility: visible;
      opacity: 1;
      transition: visibility 0s 0s, 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
    .page-header .search-layer__container {
      position: relative;
      padding: 80px 15px 15px 15px; }
    .page-header .search-layer__close {
      display: block;
      position: absolute;
      top: 25px;
      right: 25px;
      width: 30px;
      height: 30px;
      background: url(../img/icon-close-black.svg) center/30px no-repeat transparent;
      border: 0;
      cursor: pointer;
      z-index: 10; }
    .page-header .search-layer__control {
      margin-bottom: 15px; }
    .page-header .search-layer__input {
      height: 50px;
      border-radius: 8px;
      border: 1px solid #dddcda;
      background: #ffffff;
      display: block;
      width: 100%;
      padding: 5px 20px;
      font-size: 14px; }
    .page-header .search-layer__submit {
      margin-bottom: 30px;
      text-align: center; }
    .page-header .search-layer__submit-btn {
      min-height: 40px;
      padding: 10px 30px; }

.page-footer {
  padding-top: 360px;
  background: url(../img/footer-bg.jpg) repeat-x center top; }
  @media (max-width: 991.98px) {
    .page-footer {
      padding-top: 280px; } }
  .page-footer .container {
    display: flex;
    justify-content: space-between; }
    @media (max-width: 991.98px) {
      .page-footer .container {
        flex-direction: column-reverse;
        align-items: center; } }
  .page-footer__menu {
    flex-grow: 1;
    list-style: none;
    padding: 70px 0 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 220px; }
    @media (max-width: 991.98px) {
      .page-footer__menu {
        flex-direction: row;
        max-height: 99999px;
        justify-content: center;
        padding-top: 30px; } }
  .page-footer__menu-el {
    margin-bottom: 20px;
    width: 33.3333%; }
    @media (max-width: 991.98px) {
      .page-footer__menu-el {
        width: auto;
        margin-left: 15px;
        margin-right: 15px; } }
  .page-footer__menu-link {
    color: #666;
    transition: 0.3s color; }
    .page-footer__menu-link:hover {
      color: #006937; }
  .page-footer__img {
    background-position: center;
    background-repeat: no-repeat;
    width: 297px;
    height: 228px;
    flex-shrink: 0; }

.page-copyright {
  margin-top: 30px; }
  .page-copyright .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid #EDEDED; }
    @media (max-width: 991.98px) {
      .page-copyright .container {
        flex-direction: column;
        align-items: center;
        justify-content: center; } }
  .page-copyright__social {
    display: flex;
    justify-content: flex-end; }
    @media (max-width: 991.98px) {
      .page-copyright__social {
        margin-top: 30px; } }
  .page-copyright__text {
    color: #6b6e75;
    font-size: 13px; }
  .page-copyright__social-el {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: 0.3s filter; }
    .page-copyright__social-el:hover {
      filter: brightness(0.8); }
    .page-copyright__social-el--facebook {
      background: url(../img/icon-facebook-white.svg) center/30px no-repeat #5077C7; }
    .page-copyright__social-el--social-blog {
      background: url(../img/icon-blog.png) no-repeat center #C41271; }

.baner-fooder {
  max-width: 1622px;
  height: 481px;
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center; }
  .baner-fooder h2 {
    line-height: 66px;
    font-size: 54px;
    color: #582703; }
  .baner-fooder .btn {
    padding-left: 40px;
    padding-right: 40px;
    background: #c41271; }
  @media (max-width: 991.98px) {
    .baner-fooder {
      display: none; } }

.main-search {
  padding-top: 165px;
  max-width: 965px;
  margin: 0 auto 80px auto; }
  @media (max-width: 991.98px) {
    .main-search {
      padding-top: 50px; } }
  .main-search__title {
    text-align: center;
    margin: 0 auto 45px auto; }
    @media (max-width: 991.98px) {
      .main-search__title {
        margin: 0 auto 22px auto; } }
  .main-search__input-cnt {
    position: relative; }
  .main-search__label {
    display: block;
    position: absolute;
    top: 28px;
    left: 24px; }
    .main-search__label .i-icon {
      width: 22px;
      height: 22px; }
  .main-search__input {
    height: 75px;
    border-radius: 8px;
    border: 1px solid #dddcda;
    background: #ffffff;
    display: block;
    width: 100%;
    padding: 0 160px 0 60px;
    margin-bottom: 15px; }
    .main-search__input:focus {
      outline: none;
      border-color: #006937; }
    .main-search__input::placeholder {
      color: #aaaaaa; }
    .main-search__input::-webkit-input-placeholder {
      color: #aaaaaa; }
    .main-search__input::-moz-placeholder {
      color: #aaaaaa; }
    .main-search__input:-ms-input-placeholder {
      color: #aaaaaa; }
    .main-search__input:-moz-placeholder {
      color: #aaaaaa; }
    @media (max-width: 991.98px) {
      .main-search__input {
        margin-bottom: 15px;
        padding: 0 20px 0 60px; } }
  .main-search__btn {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 150px;
    height: 55px;
    border-radius: 8px; }
    @media (max-width: 991.98px) {
      .main-search__btn {
        position: static;
        padding: 0;
        width: 100%; } }
  .main-search .categories {
    position: relative;
    z-index: 1;
    background: #ffffff;
    border: 1px solid #ededed;
    padding: 20px 26px;
    border-radius: 8px; }
    @media (max-width: 991.98px) {
      .main-search .categories {
        display: none; } }
    .main-search .categories__title {
      font-size: 16px;
      color: #cecdd2;
      margin: 0 0 7px 0; }
    .main-search .categories__list {
      list-style: none;
      padding: 0;
      margin: 0 -6px;
      display: flex;
      flex-wrap: wrap; }
    .main-search .categories__item {
      margin: 6px; }
    .main-search .categories__link {
      display: block;
      border-radius: 6px;
      background: #e5f6ec;
      color: #222222;
      font-size: 16px;
      padding: 15px 21px;
      transition: all 0.2s cubic-bezier(0.4, 0, 1, 1); }
      .main-search .categories__link:hover {
        color: #ffffff;
        background: #81d5a1; }

.swiper-container {
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 15px;
  padding-right: 15px; }

.pagination__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  margin: 0 -8px;
  justify-content: center; }

.pagination__item {
  margin: 0 8px 8px 8px;
  flex-shrink: 0; }
  @media (max-width: 767.98px) {
    .pagination__item:nth-child(2) {
      display: none; } }

.pagination__link, .pagination__dots {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  color: #000000;
  font-size: 14px; }

.pagination__link {
  width: 36px;
  height: 36px;
  border: 1px solid #ededed;
  border-radius: 4px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); }
  .pagination__link--prev, .pagination__link--next {
    background-color: #006937;
    border-color: #006937;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px; }
  .pagination__link--prev {
    background-image: url(../img/icon-navigation-left-white.svg); }
  .pagination__link--next {
    background-image: url(../img/icon-navigation-right-white.svg); }
  .pagination__link:hover, .pagination__link.active {
    color: #006937;
    border-color: #006937; }

.pagination__dots {
  width: 20px;
  height: 36px; }

.page-aside {
  grid-area: postAside;
  font-size: 16px; }
  @media (max-width: 991.98px) {
    .page-aside {
      position: relative;
      z-index: 1; } }
  .page-aside .widget-box {
    border: 1px solid #ededed;
    border-radius: 8px;
    margin-bottom: 30px;
    background: #fff; }
    .page-aside .widget-box--no-border {
      border: none;
      border-radius: 0; }
    .page-aside .widget-box__title {
      font-size: 24px;
      line-height: 1.083;
      margin: 0;
      padding: 13px 17px 17px 17px;
      background: #f5f5f5; }
      @media (max-width: 991.98px) {
        .page-aside .widget-box__title.toggle {
          position: relative;
          padding-right: 54px; }
          .page-aside .widget-box__title.toggle:after {
            content: '';
            position: absolute;
            top: 50%;
            right: 17px;
            transition: transform .3s;
            transform: rotate(180deg);
            transform-origin: center center;
            width: 20px;
            height: 20px;
            margin-top: -10px;
            background: url(../img/icon-arrow-up.svg) center/16px 10px no-repeat; } }
    @media (max-width: 991.98px) {
      .page-aside .widget-box__content {
        overflow: hidden;
        height: 0; }
        .page-aside .widget-box__content-inner {
          transform: translate(0, calc(-100% - 20px));
          transition: all .3s; }
      .page-aside .widget-box.active .widget-box__title:after {
        transform: rotate(0); }
      .page-aside .widget-box.active .widget-box__content {
        height: auto; }
        .page-aside .widget-box.active .widget-box__content-inner {
          transform: none; } }
    .page-aside .widget-box__actions {
      padding: 3px 18px 16px 18px; }
    @media (max-width: 991.98px) {
      .page-aside .widget-box {
        margin-bottom: 20px; }
        .page-aside .widget-box.desktop {
          display: none; } }
  .page-aside .widget-section {
    margin-bottom: 30px; }
    .page-aside .widget-section__title {
      margin: 0; }
    @media (max-width: 991.98px) {
      .page-aside .widget-section {
        display: none; } }
  .page-aside .post-props {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; }
    .page-aside .post-props__item {
      flex-grow: 1;
      margin: 17px 0 14px 0;
      padding: 0 10px;
      border-right: 1px solid #ededed; }
      .page-aside .post-props__item:last-child {
        border-right: 0; }
      @media (max-width: 991.98px) {
        .page-aside .post-props__item br {
          display: none; } }
    .page-aside .post-props__icon {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 50px; }
      .page-aside .post-props__icon .i-icon__person--green {
        width: 45px;
        height: 45px; }
      .page-aside .post-props__icon .i-icon__clock--green {
        width: 40px;
        height: 40px; }
      .page-aside .post-props__icon .i-icon__dish--green {
        width: 40px;
        height: 40px; }
      .page-aside .post-props__icon--disabled {
        filter: grayscale(1); }
    .page-aside .post-props__text {
      font-size: 14px;
      color: black;
      line-height: 1.429;
      text-align: center; }
  .page-aside .post-ingredients {
    width: 100%;
    margin: 10px 0;
    padding: 0 12px; }
    .page-aside .post-ingredients__name, .page-aside .post-ingredients__value {
      border-bottom: 1px solid #ededed; }
    .page-aside .post-ingredients__name {
      padding: 11px 6px 11px 0; }
    .page-aside .post-ingredients__value {
      position: relative;
      width: 80px; }
      .page-aside .post-ingredients__value span {
        padding: 11px 0;
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        right: 0;
        text-align: right; }
      .page-aside .post-ingredients__value span.metric {
        visibility: visible;
        opacity: 1;
        transition: visibility 0s 0s, opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
      .page-aside .post-ingredients__value span.kitchen {
        visibility: hidden;
        opacity: 0;
        transition: visibility 0s 0.3s, opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
    .page-aside .post-ingredients__change-metrics {
      transition: 0.3s transform; }
      .page-aside .post-ingredients__change-metrics::after {
        content: attr(data-show-metric-values); }
      .page-aside .post-ingredients__change-metrics--kitchen::after {
        content: attr(data-show-kitchen-values); }
    .page-aside .post-ingredients--kitchen .post-ingredients__value span.metric {
      visibility: hidden;
      opacity: 0;
      transition: visibility 0s 0.3s, opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
    .page-aside .post-ingredients--kitchen .post-ingredients__value span.kitchen {
      visibility: visible;
      opacity: 1;
      transition: visibility 0s 0s, opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
  .page-aside .action-links {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0; }
    .page-aside .action-links__item {
      position: relative; }
      .page-aside .action-links__item::after {
        content: "";
        border-bottom: 1px solid #ededed;
        position: absolute;
        right: 16px;
        bottom: 0;
        left: 16px; }
      .page-aside .action-links__item:last-child::after {
        display: none; }
      .page-aside .action-links__item a {
        display: block;
        padding: 30px 14px 30px 80px;
        position: relative;
        color: #000000;
        transition: color 0.3s ease; }
        .page-aside .action-links__item a:hover {
          color: #006937; }
        .page-aside .action-links__item a .i-icon {
          position: absolute;
          top: 50%;
          left: 15px;
          transform: translateY(-50%);
          width: 50px;
          height: 50px; }
  .page-aside .images-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0; }
    .page-aside .images-list__item {
      margin-bottom: 30px; }
      .page-aside .images-list__item:last-child {
        margin-bottom: 0; }
      .page-aside .images-list__item a,
      .page-aside .images-list__item img {
        display: block; }
      .page-aside .images-list__item img {
        margin: 0 auto; }
  @media (max-width: 991.98px) {
    .page-aside .quick-tips {
      display: none; } }
  .page-aside .quick-tips__list {
    list-style: none;
    padding: 0;
    margin: 0 20px 30px; }
  .page-aside .quick-tips__item {
    margin: 25px 0 0; }
    .page-aside .quick-tips__item h3 {
      margin: 0 0 10px;
      font-size: 20px; }
    .page-aside .quick-tips__item p {
      margin: 0; }

.news-search {
  display: flex; }
  .news-search__field {
    flex-grow: 1;
    width: 1px;
    margin: 0; }
    .news-search__field input {
      margin: 0;
      border: none; }
  .news-search__btn {
    width: 60px;
    background: url(../img/icon-zoom-dark.svg) no-repeat center;
    background-size: 23px;
    border: none;
    cursor: pointer; }

.alert {
  padding: 20px;
  background: #47a8f5;
  color: white;
  margin: 0 0 20px;
  border-radius: 3px; }
  .alert strong {
    font-weight: 500; }
  .alert__close {
    margin-left: 15px;
    color: #fff;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s; }
    .alert__close:hover {
      color: #000; }
  .alert--success {
    background: #6bbD6e; }
  .alert--warning {
    background: #ffaa2c; }
  .alert--error {
    background: #f66359; }

.post {
  display: grid;
  grid-column-gap: 30px;
  margin-top: 45px; }
  @media (min-width: 768px) {
    .post {
      grid-template-areas: "postTitle ." "postMeta ." "postBanner postAside" "postContent postAside";
      grid-template-columns: calc(100% - 305px) 275px; } }
  @media (max-width: 991.98px) {
    .post {
      grid-template-areas: "postTitle" "postMeta" "postBanner" "postAside" "postContent";
      grid-template-columns: 100%;
      margin-top: 30px; } }
  .post__header {
    margin-bottom: 45px; }
    @media (max-width: 991.98px) {
      .post__header {
        margin-bottom: 30px; } }
  .post__title {
    font-size: 48px;
    line-height: 1.2em;
    font-weight: normal;
    margin: 0 0 20px 0;
    grid-area: postTitle; }
    @media (max-width: 991.98px) {
      .post__title {
        font-size: 36px;
        margin: 0; } }
  .post__meta {
    font-size: 16px;
    grid-area: postMeta; }
    @media (max-width: 991.98px) {
      .post__meta {
        display: none; } }
  .post__main-photo {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    grid-area: postBanner;
    margin-bottom: 50px; }
    @media (max-width: 991.98px) {
      .post__main-photo {
        margin: 0 -15px -40px;
        border-radius: 0; }
        .post__main-photo:after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 100%;
          height: 50%;
          z-index: 1;
          background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%); } }
  .post__main-photo-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    filter: blur(6px);
    z-index: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
  .post__main-photo-img {
    height: auto;
    margin: 0 auto;
    display: block;
    max-height: 460px;
    z-index: 1;
    position: relative; }
    @media (max-width: 991.98px) {
      .post__main-photo-img {
        width: 100%;
        object-fit: cover; } }
  .post__content {
    font-size: 20px;
    line-height: 1.5em;
    font-weight: 300;
    grid-area: postContent; }

.post-author {
  display: grid;
  font-size: 16px;
  grid-column-gap: 30px;
  grid-template-areas: "authorPhoto authorContent" "authorPhoto authorSeeAll";
  grid-template-columns: 110px 1fr; }
  @media (max-width: 991.98px) {
    .post-author {
      grid-column-gap: 22px;
      grid-template-areas: "authorPhoto authorContent" "authorSeeAll authorSeeAll"; } }
  .post-author__photo {
    padding: 16px;
    border: 1px solid #ededed;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    grid-area: authorPhoto; }
    @media (max-width: 991.98px) {
      .post-author__photo {
        margin-bottom: 22px; } }
  .post-author__photo-img {
    border-radius: 6px;
    max-width: 80px;
    max-height: 80px; }
  .post-author__content {
    grid-area: authorContent; }
  .post-author__title {
    margin: 0 0 7px 0;
    font-size: 24px;
    line-height: 24px; }
  .post-author__details {
    margin-bottom: 10px;
    font-weight: 400; }
  .post-author__name {
    font-weight: 400; }
  .post-author__link {
    display: inline-block;
    padding: 0 14px 0 0;
    margin: 0 10px 0 0;
    position: relative; }
    @media (min-width: 992px) {
      .post-author__link--posts-count::after {
        content: "";
        display: block;
        position: absolute;
        top: 7px;
        right: 0;
        bottom: 7px;
        width: 1px;
        background: #ededed; } }
  @media (max-width: 991.98px) {
    .post-author__name, .post-author__link {
      display: block;
      margin: 0 0 8px 0;
      line-height: 1.35; } }
  .post-author__see-all-cnt {
    grid-area: authorSeeAll; }
    @media (max-width: 991.98px) {
      .post-author__see-all-cnt .btn {
        display: block; } }

.post-categories__list {
  list-style: none;
  padding: 0;
  margin: 0; }
  .post-categories__list li {
    display: inline-block;
    margin: 0 8px 8px 0; }
  .post-categories__list .btn__primary-o {
    border-radius: 50px;
    padding: 4px 15px 3px; }

.author-posts {
  display: grid;
  grid-column-gap: 30px; }
  @media (min-width: 768px) {
    .author-posts {
      grid-template-areas: "authorPostsHeader ." "authorPostsContent postAside" "authorPostsFooter postAside";
      grid-template-columns: calc(100% - 305px) 275px; } }
  @media (max-width: 991.98px) {
    .author-posts {
      grid-template-areas: "authorPostsHeader" "authorPostsContent" "postAside" "authorPostsFooter";
      grid-template-columns: 100%; } }
  .author-posts__header {
    grid-area: authorPostsHeader;
    padding-bottom: 30px;
    border-bottom: 1px solid #ededed;
    margin-top: 30px; }
    @media (max-width: 991.98px) {
      .author-posts__header {
        margin-top: 60px; } }
  .author-posts .author {
    display: flex; }
    .author-posts .author__image-container {
      flex-shrink: 0; }
    .author-posts .author__image {
      border: 7px solid #ffffff;
      box-sizing: content-box;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
      width: 150px;
      height: 150px;
      border-radius: 50%; }
      @media (max-width: 991.98px) {
        .author-posts .author__image {
          width: 110px;
          height: 110px; } }
    .author-posts .author__description {
      padding-left: 20px; }
    @media (max-width: 991.98px) {
      .author-posts .author__name {
        margin: 10px 0; } }
  .author-posts__content {
    grid-area: authorPostsContent; }
  .author-posts__count {
    font-family: 'Playfair Display', serif;
    font-size: 24px; }
  .author-posts__count-container {
    display: flex;
    align-items: center;
    margin-top: 45px; }
    @media (max-width: 991.98px) {
      .author-posts__count-container {
        margin-top: 30px; } }
  .author-posts__count-label {
    margin-left: auto; }

.authors-list {
  display: grid;
  grid-column-gap: 30px; }
  @media (min-width: 768px) {
    .authors-list {
      grid-template-areas: "authorsListHeader ." "authorsListContent postAside";
      grid-template-columns: calc(100% - 305px) 275px; } }
  @media (max-width: 991.98px) {
    .authors-list {
      grid-template-areas: "authorsListHeader" "authorsListContent" "postAside";
      grid-template-columns: 100%; } }
  .authors-list__header {
    grid-area: authorsListHeader;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ededed;
    margin-top: 30px; }
    @media (max-width: 991.98px) {
      .authors-list__header {
        margin-top: 60px; } }
  .authors-list__title {
    margin: 15px 0; }
  .authors-list__subtitle {
    margin: 15px 0; }
  .authors-list__content {
    grid-area: authorsListContent; }
  .authors-list__count {
    font-family: 'Playfair Display', serif;
    font-size: 24px; }
  .authors-list__count-container {
    display: flex;
    align-items: center;
    margin-top: 45px; }
    @media (max-width: 991.98px) {
      .authors-list__count-container {
        margin-top: 30px; } }
  .authors-list__count-label {
    margin-left: auto; }

.registration {
  margin-top: 120px;
  margin-bottom: 120px;
  max-width: calc(430px + 30px);
  color: #c6c6c6; }
  @media (max-width: 991.98px) {
    .registration {
      margin-top: 70px;
      margin-bottom: 70px; } }
  .registration p {
    margin: 30px 0; }
  .registration__title, .registration__subtitle {
    margin: 0 0 50px;
    text-align: center;
    color: #000; }
  .registration__subtitle {
    margin: 30px 0; }
  .registration p.registration__info {
    margin: -5px 0 0;
    text-align: center;
    font-size: 14px; }
  .registration p.registration__notice {
    margin: 38px 0 0;
    font-size: 12px;
    color: #d5d5d5; }
    @media (max-width: 991.98px) {
      .registration p.registration__notice {
        margin-top: 24px; } }
  .registration .btn {
    margin: 22px 0; }

.confirmation, .error {
  margin-top: 55px;
  margin-bottom: 75px;
  max-width: calc(610px + 30px);
  line-height: 1.6em;
  font-size: 15px;
  color: #999; }
  .confirmation__icon, .error__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 100%;
    background: #b4d095 url(../img/tick.svg) no-repeat center;
    background-size: 50px auto; }
  .confirmation h1, .error h1 {
    margin: 0 0 .55em;
    text-align: center;
    line-height: 1.25em;
    color: #000; }
  .confirmation h2, .confirmation p, .error h2, .error p {
    margin: 1em 0; }
  .confirmation h2, .error h2 {
    line-height: inherit;
    font: inherit; }
  .confirmation p, .error p {
    text-align: center; }
  .confirmation__steps, .error__steps {
    margin: 23px 0;
    padding: 13px 0 8px;
    border: 1px solid #dadada;
    border-right: none;
    border-left: none; }
  .confirmation ol, .error ol {
    list-style: none;
    margin: 29px 0;
    padding: 0 0 0 32px;
    counter-reset: confirmation; }
    .confirmation ol li, .error ol li {
      position: relative; }
      .confirmation ol li + li, .error ol li + li {
        margin-top: 22px; }
      .confirmation ol li:before, .error ol li:before {
        counter-increment: confirmation;
        content: counter(confirmation);
        position: absolute;
        top: 0;
        left: -32px;
        width: 24px;
        height: 24px;
        border-radius: 100%;
        background: #b4d095;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center; }

.error__icon {
  background-color: #f16e6e;
  background-image: url(../img/error.svg); }

.category-box__link {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 8px;
  height: 230px;
  color: #ffffff;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
  .category-box__link:hover {
    transform: translate3d(0, -5px, 0);
    box-shadow: 0 1px 30px 0 rgba(0, 0, 0, 0.75); }

.category-box__img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%; }

.category-box__title {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 30px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 20px; }
  .category-box__title::before {
    z-index: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    position: absolute;
    content: '';
    background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.8)); }

.category-box__name {
  position: relative;
  z-index: 1;
  margin-bottom: 6px; }

.category-box__count {
  font-size: 14px;
  font-family: sans-serif;
  z-index: 1;
  color: #ffffff; }

.post-box {
  background: #ffffff;
  box-shadow: 0 0 90px rgba(0, 0, 0, 0.07);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  height: 432px;
  min-height: 385px;
  position: relative;
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1; }
  .post-box:hover {
    box-shadow: 0 1px 90px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 0; }
  .post-box__photo-cnt {
    height: 225px;
    position: relative; }
  .post-box__photo-link {
    display: block;
    height: 100%;
    position: relative; }
    .post-box__photo-link:hover .badge {
      opacity: 0.5; }
    .post-box__photo-link .badge {
      position: absolute;
      top: 20px;
      left: 20px;
      z-index: 1;
      transition: 0.4s opacity; }
  .post-box__img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .post-box__content {
    padding: 25px;
    flex-grow: 1; }
  .post-box__categories {
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 500; }
  .post-box__title {
    display: block;
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #000;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
    .post-box__title:hover {
      color: #006937;
      text-decoration: underline; }
  .post-box__footer {
    height: 55px;
    border-top: 1px solid #ededed;
    display: flex;
    justify-content: center; }
  .post-box__info {
    display: flex;
    justify-content: center;
    font-size: 12px;
    background: #ffffff;
    padding: 10px;
    color: #7c8084; }
  .post-box__info-part {
    display: flex;
    margin: 0 5px;
    align-items: center;
    flex-grow: 1;
    line-height: 1em; }
    .post-box__info-part--disabled {
      filter: grayscale(1);
      opacity: 8%; }
  .post-box__info-icon {
    margin-right: 5px;
    width: 25px;
    height: 25px;
    flex-shrink: 0; }

.read-more-box {
  border-radius: 10px;
  height: 230px;
  background-color: #c41274;
  background-repeat: no-repeat;
  background-position: right bottom;
  padding: 30px 40px 50px 40px;
  color: #ffffff;
  font-size: 40px; }
  .read-more-box__title {
    margin: 0 0 20px;
    max-width: 280px; }
    .read-more-box__title--small {
      font-size: 22px; }
  .read-more-box__btn {
    background: #ffffff;
    color: #c41274;
    border-radius: 40px;
    padding: 15px 30px;
    font-size: 14px;
    display: inline-block;
    transition: 0.3s filter; }
    .read-more-box__btn:hover {
      filter: brightness(0.8); }

.bread-box {
  background-repeat: no-repeat;
  background-position: right bottom;
  background-color: #f7eedc;
  border-radius: 10px;
  height: 100%;
  padding: 30px 40px 50px 40px;
  color: #ffffff;
  font-size: 40px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; }
  .bread-box__title {
    margin: 0 0 20px;
    max-width: 280px;
    color: #9e6530; }
    .bread-box__title--small {
      font-size: 22px; }
  .bread-box__btn {
    background: #ffffff;
    color: #9e6530;
    border-radius: 40px;
    padding: 15px 30px;
    font-size: 14px;
    display: inline-block;
    transition: 0.3s filter; }
    .bread-box__btn:hover {
      filter: brightness(0.8); }

.blogger-box {
  background: #ffffff;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.07);
  padding: 35px 20px 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }
  .blogger-box__avatar-cnt {
    display: flex;
    justify-content: center; }
  .blogger-box__avatar {
    display: block; }
  .blogger-box__avatar-img {
    border: 7px solid #ffffff;
    box-sizing: content-box;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 113px;
    height: 113px;
    border-radius: 50%;
    margin-bottom: 27px; }
  .blogger-box__post-count {
    display: block;
    color: #4b8f01;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 8px; }
  .blogger-box__blog-name {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px; }
  .blogger-box__see-blog {
    padding: 10px 30px;
    font-size: 14px;
    margin: 0 auto 35px auto;
    min-height: 0; }
  .blogger-box__footer {
    margin-top: auto;
    border-top: 1px solid #dddddd;
    margin: 0 -20px;
    font-size: 12px;
    text-align: center;
    color: #777777;
    padding: 15px; }
  .blogger-box__footer-link {
    padding-left: 30px;
    background: url(../img/icon-globe.png) left center no-repeat;
    line-height: 20px;
    display: inline-block;
    color: #888888; }

@media (max-width: 960px) {
  .user-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-top: 20px; }
  .user-list-el {
    width: 270px;
    flex-shrink: 0; }
  .user-el {
    width: auto; } }

.blogger-wide-box {
  display: flex; }
  .blogger-wide-box__image-container {
    flex-shrink: 0; }
  .blogger-wide-box__image {
    border: 7px solid #ffffff;
    box-sizing: content-box;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 113px;
    height: 113px;
    border-radius: 50%; }
    @media (max-width: 991.98px) {
      .blogger-wide-box__image {
        width: 80px;
        height: 80px; } }
  .blogger-wide-box__description {
    flex-grow: 1;
    padding-left: 20px; }
    @media (max-width: 991.98px) {
      .blogger-wide-box__description {
        max-width: calc(100% - 100px); } }
  .blogger-wide-box__header {
    margin-top: 30px; }
    @media (max-width: 991.98px) {
      .blogger-wide-box__header {
        margin-top: 15px; } }
  .blogger-wide-box__name {
    font-family: 'Playfair Display', serif;
    font-size: 20px; }
    @media (max-width: 991.98px) {
      .blogger-wide-box__name {
        font-size: 18px;
        display: block;
        margin-bottom: 10px; } }
  .blogger-wide-box__posts-count {
    margin-left: 15px; }
    @media (max-width: 991.98px) {
      .blogger-wide-box__posts-count {
        display: block;
        margin-left: 0; } }
  .blogger-wide-box__link-container {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  .blogger-wide-box__see-more {
    float: right;
    font-size: 14px;
    padding: 10px 15px;
    margin: 10px 5px;
    min-height: auto; }

.filter-box {
  display: inline-block; }
  .filter-box__checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0; }
  .filter-box__label {
    display: block;
    font-weight: 300;
    color: #000000;
    background: #e5f6ec;
    padding: 9px 15px;
    width: 150px;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 1, 1); }
    .filter-box__label:hover {
      color: #ffffff;
      background: #81d5a1; }

.bread-box-wide {
  height: 299px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 8px; }
  .bread-box-wide__title {
    margin: 0 0 32px 0;
    max-width: 480px;
    color: #eab37b;
    font-size: 55px;
    text-align: center; }
    @media (max-width: 991.98px) {
      .bread-box-wide__title {
        font-size: 33px;
        padding-left: 15px;
        padding-right: 15px; } }
  .bread-box-wide__btn {
    background: #ffffff;
    color: #eab37b;
    border-radius: 40px;
    padding: 10px 18px;
    font-size: 16px;
    display: inline-block;
    transition: 0.3s filter; }
    .bread-box-wide__btn:hover {
      filter: brightness(0.8); }

.tip-box, .news-box {
  display: flex; }
  .tip-box__author, .news-box__author {
    flex: 0 0 127px;
    margin: 0 20px 0 0; }
  .tip-box__content, .news-box__content {
    font-size: 16px; }
    .tip-box__content p, .news-box__content p {
      margin: 0; }
  .tip-box__title, .news-box__title {
    margin: 15px 0;
    font-size: 20px; }
  .tip-box__meta, .news-box__meta {
    margin: 20px 0 0;
    font-size: 14px; }
  .tip-box--single .tip-box__title, .tip-box--single .news-box__title, .news-box--single .tip-box__title, .news-box--single .news-box__title {
    font-size: 38px; }
  .tip-box--single .tip-box__content p, .tip-box--single .news-box__content p, .news-box--single .tip-box__content p, .news-box--single .news-box__content p {
    margin: 20px 0; }

.post-list {
  border-bottom: none; }
  .post-list__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    margin-right: -15px;
    margin-left: -15px; }
  .post-list__item {
    padding: 0 15px 30px 15px; }
  .post-list__footer {
    text-align: center;
    margin-top: 60px; }
  .post-list--wrapped .post-list__list {
    flex-wrap: wrap; }
    @media (max-width: 991.98px) {
      .post-list--wrapped .post-list__list {
        justify-content: center; } }
  .post-list--wrapped .post-list__item {
    width: 25%; }
    .post-list--wrapped .post-list__item--wide {
      width: 50%; }
    @media (max-width: 991.98px) {
      .post-list--wrapped .post-list__item {
        width: 33%; }
        .post-list--wrapped .post-list__item--wide {
          width: 100%; } }
    @media (max-width: 767.98px) {
      .post-list--wrapped .post-list__item {
        width: 50%; } }
    @media (max-width: 575.98px) {
      .post-list--wrapped .post-list__item {
        width: 100%; } }
  .post-list--narrow .post-list__list {
    flex-wrap: wrap; }
    @media (max-width: 991.98px) {
      .post-list--narrow .post-list__list {
        justify-content: center; } }
  .post-list--narrow .post-list__item {
    width: 33%; }
    @media (max-width: 991.98px) {
      .post-list--narrow .post-list__item {
        width: 270px; } }
  .post-list--horizontal .post-list__item {
    width: 300px; }

.category-description {
  width: 100%;
  margin: 40px 0 0;
  font-weight: 16px; }
  @media (max-width: 991.98px) {
    .category-description {
      width: auto; } }
  .category-description + .category-list {
    margin-top: 50px; }

.category-list {
  position: relative;
  z-index: 1; }
  .category-list__list {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    padding: 0;
    margin: 30px -15px; }
  .category-list__item {
    width: 25%;
    padding: 0 15px 30px 15px; }
    .category-list__item--wide {
      width: 50%; }
    @media (max-width: 991.98px) {
      .category-list__item {
        width: 33%; }
        .category-list__item--wide {
          width: 100%; } }
    @media (max-width: 767.98px) {
      .category-list__item {
        width: 50%; } }
    @media (max-width: 575.98px) {
      .category-list__item {
        width: 100%; } }
  .category-list__footer {
    text-align: center;
    margin-top: 60px; }

.blogger-list__list {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  padding: 0;
  margin: 30px -15px; }

.blogger-list__item {
  width: 25%;
  padding: 0 15px 30px 15px; }
  @media (max-width: 991.98px) {
    .blogger-list__item {
      width: 33%; } }
  @media (max-width: 767.98px) {
    .blogger-list__item {
      width: 50%; } }
  @media (max-width: 575.98px) {
    .blogger-list__item {
      width: 100%; } }

.blogger-list--horizontal .blogger-list__list {
  flex-wrap: nowrap; }

.blogger-list--horizontal .blogger-list__item {
  width: 270px;
  flex-shrink: 0; }

.filter-list {
  margin-bottom: 40px; }
  .filter-list__title {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    margin: 0 0 15px 0; }
  .filter-list__list {
    list-style: none;
    padding: 0;
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap; }
  .filter-list__item {
    position: relative;
    margin: 0 15px 20px 15px; }
  .filter-list:not(.expanded) .filter-list__list--expandable {
    display: none; }

.active-filter-list {
  margin-bottom: 20px; }
  @media (max-width: 991.98px) {
    .active-filter-list {
      margin: 0 -5px 20px -5px; } }
  .active-filter-list .filter-box {
    margin: 0 5px 10px; }
  .active-filter-list__clear-all {
    font-size: 14px;
    font-weight: 300;
    white-space: nowrap;
    margin: 0 5px 10px; }

.filter-tabs {
  border: 1px solid #ededed;
  border-radius: 6px;
  margin: 30px 0; }
  .filter-tabs__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: nowrap; }
  .filter-tabs__item {
    padding: 22px 28px;
    position: relative; }
    .filter-tabs__item::after {
      content: "";
      display: block;
      position: absolute;
      top: 50%;
      right: 0;
      height: 13px;
      width: 1px;
      background: #ededed;
      transform: translateY(-50%); }
    .filter-tabs__item:last-child::after {
      display: none; }
  .filter-tabs__trigger {
    display: inline-block;
    position: relative;
    padding-right: 22px;
    color: #000000;
    white-space: nowrap; }
    .filter-tabs__trigger::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 0;
      width: 10px;
      height: 10px;
      margin-top: -5px;
      background: url(../img/icon-arrow-down.svg) center/10px no-repeat; }
  .filter-tabs__content-list {
    list-style: none;
    padding: 0;
    margin: 0; }
  .filter-tabs__content {
    display: none;
    padding: 10px 22px; }
    .filter-tabs__content.active {
      display: block; }

.blogger-wide-list__list {
  list-style: none;
  padding: 0;
  margin: 0; }

.blogger-wide-list__item {
  margin-bottom: 20px; }

.blogger-wide-list__footer {
  text-align: center;
  margin-top: 60px; }

.category-links {
  border: 0;
  padding-bottom: 0; }
  .category-links__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -6px; }
  .category-links__item {
    margin: 0 8px 16px 8px; }
  .category-links__link {
    display: block;
    border-radius: 6px;
    background: #e5f6ec;
    color: #222222;
    font-size: 16px;
    padding: 15px 20px;
    transition: all 0.2s cubic-bezier(0.4, 0, 1, 1); }
    .category-links__link:hover {
      color: #ffffff;
      background: #81d5a1; }
  .category-links__grid {
    margin: 0 -8px 25px -8px; }
    @media (min-width: 992px) {
      .category-links__grid--2-col {
        display: flex; } }
    @media (min-width: 992px) {
      .category-links__grid--2-col .category-links__group {
        flex-shrink: 0;
        width: 50%; } }
    @media (max-width: 991.98px) {
      .category-links__grid--2-col .category-links__group:first-child {
        margin-bottom: 25px; } }
  .category-links__group {
    padding: 0 8px; }
  .category-links__group-title {
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    margin: 0 0 25px 0; }

.favourite-posts__header {
  margin-top: 200px; }
  @media (max-width: 991.98px) {
    .favourite-posts__header {
      margin-top: 60px; } }

.tips-list, .news-list {
  display: flex; }
  .tips-list--singular, .news-list--singular {
    margin-top: 50px; }
  .tips-list__main, .news-list__main {
    flex: 1 1 1px;
    width: 1px; }
  .tips-list__aside, .news-list__aside {
    flex: 0 0 275px;
    width: 275px;
    margin: 0 0 0 40px; }
    @media (max-width: 991.98px) {
      .tips-list__aside, .news-list__aside {
        display: none; } }
  .tips-list__list, .news-list__list {
    list-style: none;
    padding: 0;
    margin: 0; }
  .tips-list__item, .news-list__item {
    padding: 0 0 30px; }
  .tips-list__footer, .news-list__footer {
    text-align: center;
    margin-top: 60px; }

.settings {
  display: flex;
  margin: 40px auto; }
  .settings h1, .settings h2, .settings h3, .settings h4 {
    margin: 0; }
  .settings__main {
    flex: 1 1 1px;
    width: 1px; }
  .settings__aside {
    flex: 0 0 275px;
    width: 275px;
    margin: 30px 0 0 40px; }
    @media (max-width: 991.98px) {
      .settings__aside {
        display: none; } }
  .settings__header, .settings__section, .settings__footer {
    margin: 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.07); }
  .settings__header, .settings__section-header, .settings__subsection-header {
    display: flex;
    align-items: center;
    padding: 15px 60px 15px 20px;
    color: inherit; }
  .settings__header {
    min-height: 100px; }
    .settings__header h1 {
      font-size: 24px; }
      .settings__header h1 strong {
        display: block; }
  .settings__section, .settings__subsection {
    background: #f5f5f5; }
    .settings__section h2, .settings__subsection h2 {
      font-size: 26px; }
    .settings__section .form, .settings__subsection .form {
      max-width: 640px;
      margin-top: -5px; }
    .settings__section-header, .settings__subsection-header {
      position: relative;
      min-height: 80px;
      cursor: pointer;
      transition: min-height .3s;
      user-select: none; }
      .settings__section-header:after, .settings__subsection-header:after {
        content: '';
        position: absolute;
        top: 50%;
        right: 20px;
        transition: transform .3s, margin-top .3s;
        transform: rotate(180deg);
        transform-origin: center center;
        width: 20px;
        height: 20px;
        margin-top: -10px;
        background: url(../img/icon-arrow-up.svg) center/16px 10px no-repeat; }
      .settings__section-header--link:after, .settings__subsection-header--link:after {
        transform: rotate(90deg); }
    .settings__section-content, .settings__subsection-content {
      height: 0;
      overflow: hidden;
      transition: height .3s; }
      .settings__section-content-inner, .settings__subsection-content-inner {
        padding: 0 60px 40px 40px;
        transform: translate(0, -100%);
        transition: transform .3s; }
    .settings__section.active > .settings__section-header, .settings__subsection.active > .settings__section-header, .settings__section.active > .settings__subsection-header, .settings__subsection.active > .settings__subsection-header {
      min-height: 60px; }
      .settings__section.active > .settings__section-header:after, .settings__subsection.active > .settings__section-header:after, .settings__section.active > .settings__subsection-header:after, .settings__subsection.active > .settings__subsection-header:after {
        transform: rotate(0);
        margin-top: 0; }
    .settings__section.active > .settings__section-content > .settings__section-content-inner, .settings__subsection.active > .settings__section-content > .settings__section-content-inner, .settings__section.active > .settings__subsection-content > .settings__section-content-inner, .settings__subsection.active > .settings__subsection-content > .settings__section-content-inner, .settings__section.active > .settings__section-content > .settings__subsection-content-inner, .settings__subsection.active > .settings__section-content > .settings__subsection-content-inner, .settings__section.active > .settings__subsection-content > .settings__subsection-content-inner, .settings__subsection.active > .settings__subsection-content > .settings__subsection-content-inner {
      transform: none; }
  @media (max-width: 991.98px) {
    .settings__section-content-inner {
      padding-left: 20px;
      padding-right: 20px; } }
  .settings__subsection {
    margin: 20px 0;
    padding: 0 0 20px;
    position: relative;
    background: #e9e9e9; }
    @media (max-width: 991.98px) {
      .settings__subsection {
        margin: 20px -10px; } }
    .settings__subsection-header {
      position: static;
      padding: 15px 20px; }
      .settings__subsection-header div {
        width: 1%;
        margin-right: 15px;
        flex: 1 1; }
      .settings__subsection-header .form__field {
        width: 28px;
        height: 28px;
        margin: 0;
        padding: 0;
        flex: 0 0 28px; }
      .settings__subsection-header h4 {
        font-size: 24px; }
      .settings__subsection-header p {
        display: inline-block;
        max-width: 100%;
        padding: 0 5px;
        margin: 5px 0 0;
        line-height: 20px;
        font-size: 16px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        position: relative; }
        .settings__subsection-header p:after, .settings__subsection-header p:before {
          position: absolute; }
        .settings__subsection-header p:before {
          left: 0;
          content: '('; }
        .settings__subsection-header p:after {
          right: 0;
          content: ')'; }
      .settings__subsection-header:after {
        top: auto;
        right: auto;
        bottom: 0;
        left: 50%;
        padding: 10px;
        transform: translate(-50%, 0) rotate(180deg); }
    .settings__subsection-content-inner {
      padding: 0 20px; }
      .settings__subsection-content-inner .form__field {
        margin: 15px 0; }
    .settings__subsection.active > .settings__subsection-header:after {
      transform: translate(-50%, 0) rotate(0); }
  .settings__footer {
    padding: 20px; }
    .settings__footer-content {
      position: relative; }
      .settings__footer-content .text {
        margin: 0 48px 0 0; }
      .settings__footer-content .form__field {
        position: absolute;
        top: 50%;
        right: 0;
        width: 28px;
        height: 28px;
        margin: 0;
        padding: 0;
        transform: translate(0, -50%); }
    .settings__footer-actions {
      max-width: 480px;
      margin: 0 auto; }
  .settings__newsletter h3 {
    font-family: inherit;
    font-weight: 700;
    font-size: 22px; }
  .settings__newsletter-toggle {
    position: relative;
    margin: 25px 0 35px;
    padding: 0 40px 0 0; }
    .settings__newsletter-toggle p {
      margin: 10px 0 0; }
    .settings__newsletter-toggle .form__field {
      position: absolute;
      top: 50%;
      right: 0;
      width: 28px;
      height: 28px;
      margin: 0;
      padding: 0;
      transform: translate(0, -50%); }
  .settings__newsletter-period {
    display: flex;
    margin: 15px -20px 40px; }
    .settings__newsletter-period .form__field {
      margin: 0 20px;
      padding: 0 0 40px;
      text-align: center; }
      .settings__newsletter-period .form__field .input {
        top: auto;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 0); }
  .settings__newsletter .btn {
    margin-top: 50px; }

.ad {
  display: flex;
  justify-content: center;
  align-content: center; }
  @media (max-width: 991.98px) {
    .ad.desktop {
      display: none; } }
  @media (min-width: 768px) {
    .ad.mobile {
      display: none; } }

.hidden {
  display: none; }

.page-header {
  padding-left: 52px; }
  .page-header__logo {
    margin-right: 25px; }
  .page-header .page-nav__list-el--sign-up {
    display: flex; }
  @media (min-width: 768px) and (max-width: 1200px) {
    .page-header {
      padding-left: 15px; }
      .page-header .page-nav__list-link {
        padding: 0 15px; }
      .page-header__logo {
        margin-right: 0; } }
  @media (min-width: 768px) and (max-width: 1200px) and (min-width: 992px) {
    .page-header .page-search {
      width: 240px; }
      .page-header .page-search__input {
        width: 170px;
        padding-left: 20px; } }

#clipboard-tooltip {
  display: none;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  width: 75%;
  padding: 10px;
  position: absolute;
  top: -20px;
  left: 12.5%; }
  #clipboard-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent; }

@media (max-width: 610px) {
  .wyswig-fixes table, .wyswig-fixes thead, .wyswig-fixes tbody, .wyswig-fixes th, .wyswig-fixes td, .wyswig-fixes tr {
    display: block; }
  .wyswig-fixes table {
    border: none; }
    .wyswig-fixes table tr {
      border: 1px solid #ccc;
      border-bottom: none; }
      .wyswig-fixes table tr:nth-child(2n+1) {
        background-color: #eee; }
    .wyswig-fixes table td {
      border: none;
      border-bottom: 1px solid #ccc;
      position: relative; } }

.banner-fade-large::after,
.banner-fade-short::after {
  background: inherit; }

a.post-author__link--website {
  word-break: break-word; }

@media (min-width: 992px) {
  .registration {
    margin-top: 60px; } }

h2.read-more-box__title {
  background-color: #c42174;
  border-radius: 15px;
  padding: 0 10px; }

.pagination__item:nth-child(2) {
  display: list-item; }

.page-title--high,
.authors-list__title,
.authors-list__subtitle {
  color: black; }

.btn__registration-link strong {
  color: #006937; }


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