/* Slider */

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

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

.modal_contact__row .nav_row__social {
  display: flex;
  margin: 1.5rem 0 0;
}

.modal_contact__row p {
  line-height: 160%;
  border-top: 1px solid #e5e5e5;
  padding-top: 1.5rem;
}

.all_people_wrap.wrap {
  margin: 6rem auto 0;
  padding: 6rem;
  background: #f8f8f8;
  border-radius: 1.6rem;
  border: 1px solid #f0f0f0;
}

.all_people__text p {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  line-height: 160%;
}

.all_people__text p:last-child {
  margin: 0;
}

.all_people__text {
  margin: 3rem 0;
}
html.js.no_scroll {
    overflow: hidden;
}
.slick-list:focus {
  outline: none;
}

.button:hover {
  background: #99aa83;
  color: white;
}

a.button.button__white:hover {
  background: #dfd8c9;
  color: #3a3a3a;
}

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

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

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

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

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

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

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

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

.slick-slide img {
  display: block;
}

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

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

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

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

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

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

.not-selectable {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.carousel {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.carousel *,
.carousel *:before,
.carousel *:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.carousel__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.carousel__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.carousel__slide {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: var(--carousel-slide-width, 60%);
  max-width: 100%;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.carousel.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.carousel__dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.modal_contact__wrap {
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.5rem;
}

h3.modal_contact__header {
  font-size: 2.4rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
}

.modal_contact__row {
  display: flex;
  flex-direction: column;
}

.modal_contact__row {
  font-size: 1.6rem;
}

.modal_contact__row strong {
  display: block;
  margin-bottom: 0.5rem;
}

.carousel__dots .carousel__dot {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.carousel__dots .carousel__dot:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: currentColor;
  opacity: .25;
  -webkit-transition: opacity .15s ease-in-out;
  -o-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
}

.carousel__dots .carousel__dot.is-selected:after {
  opacity: 1;
}

.carousel__button {
  width: var(--carousel-button-width, 48px);
  height: var(--carousel-button-height, 48px);
  padding: 0;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: all;
  cursor: pointer;
  color: var(--carousel-button-color, currentColor);
  background: var(--carousel-button-bg, transparent);
  border-radius: var(--carousel-button-border-radius, 50%);
  -webkit-box-shadow: var(--carousel-button-shadow, none);
  box-shadow: var(--carousel-button-shadow, none);
}

.carousel__button.is-prev,
.carousel__button.is-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.mo_img .search__item--link::after,
.mo_img .popular__link::before,
.mo_img .redaction__link::before {
  display: none;
}

.search__item.mo_img h5.search__item--title,
.popular__item.mo_img h4 {
  color: #3a3a3a;
}

.send_run__header p {
  margin-bottom: 15px;
  font-size: 1.4rem;
  line-height: 160%;
}

.send_run__wrap {
  padding: 2rem 0;
}

.send_run__header {}

.send_run__header p strong {}

.send_run__header h4 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

form#add_form {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
}

.send_run__row {
  display: grid;
  grid-gap: 0.7rem;
}

textarea#namtexte {
  font-size: 1.6rem;
  border: 1px solid #e8e8e8;
  padding: 1.2rem;
  border-radius: 8px;
  background: #f6f6f6;
  font-family: 'Montserrat';
  resize: none;
  resize: vertical;
  max-width: 100%;
}

.send_run__row input {
  font-size: 1.4rem;
  border: 1px solid #e8e8e8;
  padding: 1.2rem;
  border-radius: 8px;
  background: #f6f6f6;
  max-width: 100%;
  font-size: 1.6rem;
}

.send_run__row label {
  font-size: 1.4rem;
  font-weight: 600;
}
.send_run__row.no_gap {
    grid-gap: 0;
}

.load_label {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    background: #e3e9dc;
    margin: 0;
    cursor: pointer;
}
.single__description--info_item span::after {
  display: inline-block;
  content: ', ';
}

.single__description--info_item span:last-child::after {
  display: none;
}

.add_post {}

#thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0 1.5rem;
}

#thumbs img {
  width: 100%;
  /* height: 100%; */
  object-fit: contain;
  border: 1px solid #e4e4e4;
  padding: 1.5rem;
  border-radius: 0.8rem;
  background: white;
  opacity: 0.4;
  margin: 1.5rem 0 0;
}

#message_post span.sucs {
  color: #6b755d;
}

#message_post span.err {
  color: #d13d3d;
}

button#add_post:hover {
  background: #90a07b;
}

button#add_post {
  padding: 1.5rem;
  font-family: 'Montserrat';
  font-weight: 500;
  font-size: 1.4rem;
  border-radius: 8px;
  border: 1px solid #91a27b;
  cursor: pointer;
  padding: 1.5rem 4rem;
  max-width: 100%;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  -webkit-box-shadow: 0px 4px 4px rgb(0 0 0 / 5%);
  box-shadow: 0px 4px 4px rgb(0 0 0 / 5%);
  border-radius: 8px;
  display: inline-block;
  text-align: center;
  color: white;
  background: #9fb088;
  transition: all, easy-in, 0.4s;
}

.send_run__row.add_post {
  grid-gap: 0;
}

#message_post span {
  margin-top: 1.5rem;
  font-size: 1.6rem;
  text-align: center;
  font-weight: 500;
  display: block;
  line-height: 140%;
  padding: 0 2.5rem;
}

.send_run__row label strong {
  color: #82966b;
}
html.no-js.no_scroll {
    overflow: hidden;
}
.mo_img .redaction__link::after {
  background: url(../img/size_black.svg);
  content: "";
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 3;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 4rem;
  height: 4rem;
  -webkit-transition: all, ease-in, 0.2s;
  -o-transition: all, ease-in, 0.2s;
  transition: all, ease-in, 0.2s;
}

a.popular__item_caption {
  padding: 1rem 3rem;
  display: block;
  color: white;
  font-weight: 500;
  background: #618636;
  border-radius: 8px;
  margin: 1.5rem 0 0;
  transition: all, easy-in, 0.4s;
}

a.popular__item_caption:hover {
  background: #567631;
}

.pagination_custom span {
  margin: 0;
  padding: 1.5rem;
  background: #b3c799;
  color: white;
  border-radius: 8px;
  border: 1px solid #a0b289;
  box-shadow: 0 10px 15px #b3c79969;
  cursor: pointer;
  transition: all, easy-in, 0.4s;
  font-size: 1.4rem;
  font-weight: 600;
  width: 34rem;
  text-align: center;
  max-width: 100%;
}

.pagination_custom span:hover {
  background: #a2b48b;
  box-shadow: 0 15px 15px #b3c79969;
}

.carousel__button.is-prev {
  left: 10px;
}

.carousel__button.is-next {
  right: 10px;
}

.carousel__button[disabled] {
  cursor: default;
  opacity: .3;
}

html img.def {
  object-fit: contain;
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  overflow: hidden;
}

.pagination_custom.display_none {
  display: none;
}

.modal_content__wrap {
  display: flex;
  padding: 3rem;
  font-family: 'Montserrat';
}

.modal.modal_content {
  width: 120rem;
  max-width: calc(100vw - 12rem);
}

.modal_content__wrap .single__number {
  font-size: 1.3rem;
  margin-bottom: 0;
}

.modal_content__wrap .single__title {
  font-size: 3.2rem;
  margin: 0 0 1rem;
}

.modal_content__wrap .single__subtext {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.modal_content__wrap .single__description--about {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.modal_content__wrap .single__description--about strong {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.modal_content__wrap .single__description--about p {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.modal_content__wrap .single__description--about p:last-child {
  margin: 0;
}

.modal_content__wrap .single__description--info_item {
  margin-bottom: 1rem;
}

.modal_content__wrap .single__description--info_item p {
  margin-bottom: 1rem;
}

.modal_content__wrap .single__description--info_item strong {
  font-size: 1.2rem;
}

.page-template-template-all-people .search.search_items {
  margin: 6rem 0 0;
}

.blocker {
  z-index: 9;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  text-align: center;
}

.blocker:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.05em;
}

.blocker.behind {
  background-color: transparent;
}

.modal {
  display: none;
  vertical-align: middle;
  position: relative;
  z-index: 2;
  max-width: 500px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  background: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 10px #000;
  -o-box-shadow: 0 0 10px #000;
  -ms-box-shadow: 0 0 10px #000;
  box-shadow: 0 0 10px #000;
  text-align: left;
}

.modal a.close-modal {
  position: absolute;
  top: -12.5px;
  right: -12.5px;
  display: block;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg==");
}

.modal-spinner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  padding: 12px 16px;
  border-radius: 5px;
  background-color: #111;
  height: 20px;
}

.modal-spinner>div {
  border-radius: 100px;
  background-color: #fff;
  height: 20px;
  width: 2px;
  margin: 0 1px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.modal-spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.modal-spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.modal-spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

@-webkit-keyframes sk-stretchdelay {

  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.5);
  }

  20% {
    -webkit-transform: scaleY(1);
  }
}

@keyframes sk-stretchdelay {

  0%,
  40%,
  100% {
    transform: scaleY(0.5);
    -webkit-transform: scaleY(0.5);
  }

  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}

html {
  font-size: 10px;
  margin: 0;
  padding: 0;
  max-width: 100vw;
  overflow-x: hidden;
}

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

body {
  font-size: 1.6rem;
  color: #3a3a3a;
  font-family: Montserrat;
  font-style: normal;
  margin: 0;
  padding: 0;
  max-width: 100vw;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #3a3a3a;
}

a:hover {
  color: #788264;
}

p {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

.display_none {}

img {
  -o-object-fit: contain;
  object-fit: contain;
}

.mob_visible {
  display: none;
}

main section {
  margin-top: 12rem;
}
.footer__wrap a#logo_footer {
    margin-right: 15px;
}
.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#nav-icon.onwhite span {
  background: #3a3a3a;
}

#nav-icon {
  width: 40px;
  height: 25px;
  position: relative;
  margin: 0;
  z-index: 9;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: none;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: white;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#nav-icon span:nth-child(1) {
  top: 0px;
}

#nav-icon span:nth-child(2),
#nav-icon span:nth-child(3) {
  top: 12px;
}

#nav-icon span:nth-child(4) {
  top: 24px;
}

#nav-icon.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.button {
  padding: 1.5rem 4rem;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  display: inline-block;
  white-space: nowrap;
  text-align: center;
  color: white;
  transition: all, easy-in, 0.4s;
}

.button__green {
  background: #9fb088;
}

.button__white {
  background: #ede6d5;
  color: #3a3a3a;
}

.wrap {
  width: 120rem;
  max-width: calc(100vw - 6rem);
  margin: 0 auto;
}

.social__mobile {
  display: none;
}

div#send_run {
  padding: 0 1.5rem;
}

.send_run__row label {
  font-size: 1.3rem;
}

.header.nav_row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.header.nav_row::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: url("../img/header_bg.jpg");
  background-size: cover;
  background-position: right bottom;
  background-repeat: no-repeat;
  width: calc(((100vw - 120rem) / 2) + 120rem);
}

.header.nav_row.header--nobg::before {
  display: none;
}

.nav_row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 2.5rem;
}

.nav_row__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 6;
}

.nav_row__nav li {
  width: 100%;
}

.nav_row__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0 auto 0 0;
  list-style: none;
}

.nav_row__nav a {
  color: white;
  margin-left: 2.5rem;
  padding: 0.5rem;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  white-space: nowrap;
}

.nav_row__nav .logo {
  margin: 0;
}

.nav_row__nav.nav_row__nav--onwhite a {
  color: #3a3a3a;
}

.nav_row__social {
  padding-right: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav_row__social svg {
  width: 3rem;
  height: 3rem;
}

.nav_row__social .soc_vk svg {
  fill: #438eff;
}

.nav_row__social .soc_inst svg {
  fill: #ff9a3e;
}

.nav_row__social .soc_yt svg {
  fill: #eb4444;
}

.nav_row__social.nav_row__social--onblack .nav_row__social_item svg {
  fill: white;
  width: 3rem;
  height: 3rem;
}

.nav_row__social.nav_row__social--onwhite {
  padding-right: 0;
}

.nav_row__social_item {
  margin-right: 1.5rem;
}

.nav_row__social_item:last-child {
  margin-right: 0;
}

.nav_row__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  padding: 14rem 0;
}

.nav_row__description {
  color: white;
  display: grid;
  grid-gap: 1.5rem;
  padding-right: 6rem;
}

.nav_row__description span {
  font-style: normal;
  font-weight: normal;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.5;
}

.nav_row__description h1 {
  font-style: normal;
  font-weight: 800;
  font-size: 4.2rem;
  line-height: 150%;
  text-transform: uppercase;
  color: #ffffff;
}

.nav_row__description p {
  font-style: normal;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 160%;
}

.buttons {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.buttons .button {
  margin-right: 1.5rem;
}

.buttons .button:last-child {
  margin-right: 0;
}

.nav_row__img {
  position: relative;
  width: 50rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  right: 0;
}

.nav_row__img picture {
  border: 6px solid #ffffff;
  -webkit-box-shadow: 15px 0px 15px rgba(0, 0, 0, 0.25), 0px 0px 60px rgba(0, 0, 0, 0.15);
  box-shadow: 15px 0px 15px rgba(0, 0, 0, 0.25), 0px 0px 60px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  overflow: hidden;
}

.nav_row__img picture:nth-child(1) {
  width: 60%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  left: 20%;
  z-index: 2;
}

.nav_row__img picture:nth-child(1) img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.nav_row__img picture:nth-child(2) {
  width: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  left: 65%;
  -webkit-box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.15);
}

.nav_row__img picture:nth-child(2) img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about__img {
  padding-right: 6rem;
  width: 28rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.about__img img {
  width: 100%;
}

.about__description {
  display: grid;
  grid-gap: 1.5rem;
}

.about__description p {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 160%;
}

.about__title {
  font-style: normal;
  font-weight: bold;
  font-size: 3.2rem;
  line-height: 160%;
  color: #3a3a3a;
}

.about__row_numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 6rem;
}

.about__row_numbers_item--bg {
  font-weight: bold;
  min-width: 23rem;
  height: 19rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 4.8rem;
  line-height: 160%;
  display: grid;
  text-align: center;
  position: relative;
}

.about__row_numbers_item--bg::before {
  content: "";
  display: block;
  background: url(../img/circle_steps.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-animation: spin 32s linear infinite;
  animation: spin 32s linear infinite;
}

.about__row_numbers_item--bg span {
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

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

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

.about__row_numbers_item--description {
  text-align: center;
  margin: -3rem 0 0;
  position: relative;
  z-index: 2;
  font-style: normal;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 160%;
}

.popular {
  background: #f8f8f8;
  padding: 6rem 0;
}

.popular__title {
  font-weight: bold;
  font-size: 3.2rem;
  line-height: 160%;
  margin-bottom: 0rem;
  color: #3a3a3a;
  padding: 0;
}

.popular__slider {
  margin: 0 -1.5rem;
}

.popular__slider .slick-track {
  padding: 3rem 0;
}

.popular__slider .slick-list {
  border-radius: 16px;
  overflow: hidden;
}

.popular__slider--wrap {
  position: relative;
}

.arrow {
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 3;
}

.arrow svg {
  fill: #c3c3c3;
  -webkit-transition: all, ease-in, 0.3s;
  -o-transition: all, ease-in, 0.3s;
  transition: all, ease-in, 0.3s;
  width: 100%;
}

.arrow:hover svg {
  fill: #788264;
}

.video_content__item {
  position: relative;
  height: 14rem;
  cursor: pointer;
}

.video_content__item::after {
  content: "";
  width: 5.2rem;
  height: 5.2rem;
  background: url(/img/video.svg);
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: all, ease-in, 0.2s;
  -o-transition: all, ease-in, 0.2s;
  transition: all, ease-in, 0.2s;
  z-index: 3;
}

.fancybox__toolbar__items.fancybox__toolbar__items--right {
  display: none;
}

.fancybox__toolbar__items.fancybox__toolbar__items--left {
  padding: 3rem 0 0 3rem;
}

.video_content__item::before {
  content: "";
  display: block;
  z-index: 2;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.55)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.55) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.video_content__item:hover::after {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}


.video_content__item img {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}


.next {
  right: -4.5rem;
}

.prev {
  left: -4.5rem;
}

.popular__item {
  position: relative;
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  height: 24rem;
  margin: 0 1.5rem;
}

.popular__item img {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.popular__item h4 {
  position: relative;
  z-index: 4;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 140%;
  color: white;
  padding: 1.5rem;
}

.popular__item--video .popular__link {
  position: relative;
}

.popular__item--video .popular__link::after {
  content: "";
  width: 5.2rem;
  height: 5.2rem;
  background: url(../img/video.svg);
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: all, ease-in, 0.2s;
  -o-transition: all, ease-in, 0.2s;
  transition: all, ease-in, 0.2s;
  z-index: 3;
}

.popular__item--video .popular__link:hover::after {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.popular__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: 100%;
  position: relative;
}

.popular__link::before {
  content: "";
  display: block;
  z-index: 2;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.55)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.55) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.55) 100%);
}

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

.redaction__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.redaction__description {
  width: 42rem;
  padding-right: 6rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.redaction__description p {
  margin-bottom: 1.5rem;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  color: #949494;
}

.redaction__description p strong {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  color: #3a3a3a;
}

.redaction__title {
  font-style: normal;
  font-weight: bold;
  font-size: 3.2rem;
  line-height: 140%;
  color: #3a3a3a;
  margin-bottom: 1.5rem;
  padding: 0;
}

.redaction__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1.5rem;
  width: 100%;
}

.redaction__item {
  height: 20rem;
  width: 100%;
  -webkit-filter: drop-shadow(0px 4px 7px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0px 4px 7px rgba(0, 0, 0, 0.3));
}

.redaction__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}

.redaction__link {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 100%;
  width: 100%;
  display: block;
}

.redaction__link:hover:after {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.redaction__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  background: -o-linear-gradient(200.56deg, rgba(0, 0, 0, 0.35) -0.1%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(249.44deg, rgba(0, 0, 0, 0.35) -0.1%, rgba(0, 0, 0, 0) 100%);
}

.redaction__link::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 3;
  background: url(../img/size.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 4rem;
  height: 4rem;
  -webkit-transition: all, ease-in, 0.2s;
  -o-transition: all, ease-in, 0.2s;
  transition: all, ease-in, 0.2s;
}

.search__title {
  font-style: normal;
  font-weight: bold;
  font-size: 3.2rem;
  line-height: 160%;
  margin-bottom: 3rem;
}

.search__form {
  background: #f8f8f8;
  padding: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 3rem;
}

.search__form_row label span {
  display: none;
}

.search__form--input {
  margin-right: 1.5rem;
  padding: 1.5rem 4rem;
  text-align: center;
  font-weight: 500;
  font-size: 1.4rem;
  border-radius: 0.8rem;
  font-family: Montserrat;
  border: 1px solid #cdcdcd;
}

.search__form--input:nth-child(2) {
  min-width: 28rem;
}

.pagination_custom {
  display: flex;
  justify-content: center;
  margin-bottom: 9rem;
  grid-column: span 3;
  margin-top: 3rem;
}

.pagination_custom a,
.pagination_custom span {}

a.page-numbers {
  color: #788264;
}

.search__form--input::-webkit-input-placeholder {
  color: #959595;
  font-size: 14px;
}

.search__form--input::-moz-placeholder {
  color: #959595;
  font-size: 14px;
}

.search__form--input:-ms-input-placeholder {
  color: #959595;
  font-size: 14px;
}

.search__form--input::-ms-input-placeholder {
  color: #959595;
  font-size: 14px;
}

.search__form--input::placeholder {
  color: #959595;
  font-size: 14px;
}

.search__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 1.5rem;
}

.search__item {
  height: 22rem;
}

.search__item--link {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1.5rem;
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
}

.search__item--link:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.search__item--link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.55)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.55) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.search__item--link img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-transition: all, ease-in, 0.3s;
  -o-transition: all, ease-in, 0.3s;
  transition: all, ease-in, 0.3s;
}

.search__item--medias {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 3;
  position: relative;
}

.search__item--media {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 140%;
  color: #ffffff;
  opacity: 0.7;
  position: relative;
}

.search__item--media::after {
  content: ",";
  padding-right: 5px;
}

.search__item--media:last-child::after {
  display: none;
}

.search__item--title {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  color: #ffffff;
  position: relative;
  z-index: 3;
  max-width: 100%;
  overflow: hidden;
  height: 1.9rem;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, white), to(rgba(0, 186, 187, 0)));
  background: -o-linear-gradient(left, white 50%, rgba(0, 186, 187, 0) 100%);
  background: linear-gradient(to right, white 50%, rgba(0, 186, 187, 0) 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.search__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 6rem;
}

.search__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0 6rem;
  padding: 0;
}

.search__page {
  padding: 5px;
  margin-right: 5px;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  color: #bcbcbc;
}

.search__page:last-child {
  margin-right: 0;
}

.search__page.active {
  color: #788264;
}

.pagination_custom .next,
.pagination_custom .prev {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #788264;
  white-space: nowrap;
  text-transform: uppercase;
}

.search__prev--disable,
.search__next--disable {
  color: #bcbcbc;
}

.footer {
  margin-top: 12rem;
  padding: 6rem 0 0;
  background: -webkit-gradient(linear, left top, right top, from(#554b40), to(#23271e)), #c4c4c4;
  background: -o-linear-gradient(left, #554b40 0%, #23271e 100%), #c4c4c4;
  background: linear-gradient(90deg, #554b40 0%, #23271e 100%), #c4c4c4;
}

.footer .nav_row__social {
  display: block;
  margin: 1.5rem auto;
}

.footer .nav_row__nav a:first-child {
  margin-left: 0;
}

.footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__text {
  width: 65rem;
  max-width: 100vw;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 160%;
}

.footer__description {
  padding-bottom: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.footer__title {
  font-style: normal;
  font-weight: bold;
  font-size: 42px;
  line-height: 51px;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.footer__button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 3rem auto 0;
}

.nav_row__wrap--footer {
  padding-bottom: 3rem;
}

.vid_item {
  max-width: 100%;
  height: auto;
}

.video_content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  grid-gap: 10px;
  margin: 3rem 0;
}

.video_content h5 {
  grid-column: span 2;
  font-size: 1.8rem;
}

.video_content>div {
  max-width: 100%;
  border: 1px solid #dfdfdf;
}

.wp-video {
  width: 100% !important;
}

.single__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single__img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 43rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-right: 6rem;
}

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

.single__img--main_img {
  height: 43rem;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
}

.single__img--item.active img {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 1;
}

.single__img--item img {
  position: absolute;
  left: 100%;
  right: -100%;
  top: 0;
  bottom: 0;
  -webkit-transition: all, ease-in, 0.3s;
  -o-transition: all, ease-in, 0.3s;
  transition: all, ease-in, 0.3s;
  opacity: 0;
  border-radius: 16px;
  overflow: hidden;
}

.single__img--thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 1rem;
}

.single__img--thumbs a {
  width: 10rem;
  height: 10rem;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  opacity: 0.4;
  -webkit-transition: all, ease-in, 0.4s;
  -o-transition: all, ease-in, 0.4s;
  transition: all, ease-in, 0.4s;
}

.single__img--thumbs a:hover {
  opacity: 1;
}

.single__img--thumbs a.current {
  opacity: 1;
}

.single__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.single__number {
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #3a3a3a;
  opacity: 0.5;
  margin-bottom: 1.5rem;
}

.single__title {
  font-weight: bold;
  font-size: 4.2rem;
  margin-bottom: 1.5rem;
}

.single__subtext {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 160%;
  margin-bottom: 3rem;
}

.single__description--about {
  background: #fbfbfb;
  border: 1px solid #e0e0e0;
  padding: 3rem;
  margin-bottom: 3rem;
}

.single__description--about strong {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 1.5rem;
  display: inline-block;
  line-height: 160%;
}

.single__description--about p {
  font-weight: normal;
  font-size: 14px;
  line-height: 160%;
  margin-bottom: 1.5rem;
}

.single__description--about p:last-child {
  margin-bottom: 0;
}

.single__description--info_item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #c4c4c4;
}

.single__description--info_item strong {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 160%;
}

.single__description--info_item p {
  font-weight: normal;
  font-size: 12px;
  line-height: 160%;
  margin-bottom: 1.5rem;
}

@media all and (min-width: 1024px) {
  .fancybox__container {
    --carousel-button-svg-width: 27px;
    --carousel-button-svg-height: 27px;
  }

  .fancybox__slide {
    padding: 64px 100px;
  }

  .fancybox__nav .carousel__button.is-next {
    right: 40px;
  }

  .fancybox__nav .carousel__button.is-prev {
    left: 40px;
  }

  .carousel__button.is-close {
    right: 40px;
  }
}

@media all and (max-width: 1300px) {
  .nav_row__description p {
    font-size: 2rem;
  }

  .popular__title {
    text-align: center;
  }

  .popular__slider--wrap {
    width: 100%;
    padding: 0 5rem;
  }

  .next {
    right: 0;
  }

  .prev {
    left: 0;
  }
}

@media all and (max-width: 1200px) {
  .search__form_row label span {
    display: block;
    font-size: 12px;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }

  .search__form--input {
    width: auto;
    padding: 1.2rem 2rem;
    text-align: left;
  }

  .search__form--input:nth-child(2) {
    min-width: auto;
  }

  .search__form--input::-webkit-input-placeholder {
    color: white;
  }

  .search__form--input::-moz-placeholder {
    color: white;
  }

  .search__form--input:-ms-input-placeholder {
    color: white;
  }

  .search__form--input::-ms-input-placeholder {
    color: white;
  }

  .search__form--input::placeholder {
    color: white;
  }

  .footer__title {
    font-size: 3.2rem;
  }
}

@media all and (max-width: 1100px) {
  .nav_row__nav a {
    margin-left: 1.5rem;
    font-size: 13px;
  }

  .nav_row__header {
    padding: 8rem 0 14rem;
  }

  .nav_row__description h1 {
    font-size: 3.6rem;
  }

  .nav_row__img picture:nth-child(1) {
    left: 0;
  }

  .nav_row__img picture:nth-child(2) {
    left: 40%;
  }

  .popular__item {
    height: 19rem;
  }

  .popular__item h4 {
    font-size: 14px;
  }

  .search__form {
    margin: 0 -3rem 3rem;
  }

  .single__img {
    margin-right: 3rem;
    width: 33rem;
  }

  .single__img--main_img {
    height: 33rem;
  }

  .single__img--thumbs {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .single__title {
    font-size: 3.2rem;
  }
}

@media all and (max-width: 1023px) {
  main section {
    margin-top: 6rem;
  }
.footer__wrap a#logo_footer {
    margin-right: 0;
}
  .all_people_wrap.wrap {
    padding: 3rem
  }

  .modal_content__wrap {
    padding: 2rem 0;
  }

  .pagination_custom {
    grid-column: span 2;
  }

  #nav-icon {
    display: block;
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .button {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
  }

  .header.nav_row .nav_row__nav {
    position: fixed;
    left: 100vw;
    right: -100vw;
    top: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 4;
    background: #5c694a;
    -webkit-transition: all, ease-in, 0.4s;
    -o-transition: all, ease-in, 0.4s;
    transition: all, ease-in, 0.4s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 9rem 0;
  }

  .header.nav_row .nav_row__nav a {
    font-size: 2.4rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid #74855d;
    display: block;
    width: 100%;
    text-align: center;
    margin: 0;
  }

  .header.nav_row .nav_row__nav.open_nav {
    left: 0;
    right: 0;
  }

  .nav_row__nav.nav_row__nav--onwhite a {
    color: white;
  }

  .nav_row__social svg {
    width: 2.5rem;
    height: 2.5rem;
  }

  .nav_row__social {
    padding-right: 0;
    margin: 0 auto 0 3rem;
  }

  .nav_row__social.nav_row__social--onblack .nav_row__social_item svg {
    width: 2.5rem;
    height: 2.5rem;
  }

  .nav_row__social_item {
    margin-right: 0.5rem;
  }

  .nav_row__header {
    padding: 4rem 0 8rem;
  }

  .nav_row__description {
    grid-gap: 0.5rem;
  }

  .nav_row__description span {
    font-size: 1.3rem;
  }

  .nav_row__description h1 {
    font-size: 2.8rem;
  }

  .nav_row__description p {
    font-size: 1.6rem;
  }

  .nav_row__img {
    width: 35rem;
  }

  .about__img {
    width: 20rem;
    padding-right: 3rem;
  }

  .about__description p {
    font-size: 1.3rem;
  }

  .about__title {
    font-size: 2.4rem;
  }

  .about__row_numbers {
    margin-top: 3rem;
  }

  .about__row_numbers_item--bg {
    font-size: 3rem;
    width: 15rem;
    height: 15rem;
  }

  .about__row_numbers_item--description {
    font-size: 1.2rem;
    margin-top: -2rem;
  }

  .popular__title {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }

  .popular__slider .slick-track {
    padding: 0;
  }

  .popular__item {
    height: 28rem;
    margin: 0 0.5rem;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .popular__item h4 {
    font-size: 1.2rem;
  }

  .redaction__description {
    width: 50%;
    padding-right: 3rem;
  }

  .redaction__description p {
    font-size: 1.2rem;
  }

  .redaction__description p strong {
    font-size: 1.4rem;
  }

  .redaction__title {
    font-size: 2.4rem;
  }

  .search__title {
    font-size: 2.4rem;
  }

  .search__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.5rem;
  }

  .search__form_row label span {
    display: none;
  }

  .search__form--input {
    width: 100%;
  }

  .search__form--input::-webkit-input-placeholder {
    color: #959595;
  }

  .search__form--input::-moz-placeholder {
    color: #959595;
  }

  .search__form--input:-ms-input-placeholder {
    color: #959595;
  }

  .search__form--input::-ms-input-placeholder {
    color: #959595;
  }

  .search__form--input::placeholder {
    color: #959595;
  }

  .search__items {
    grid-template-columns: 1fr 1fr;
  }

  .search__item {
    height: 18rem;
  }

  .footer .nav_row__wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer .logo {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .single__img {
    width: 23rem;
  }

  .single__img--main_img {
    height: 23rem;
  }

  .single__img--thumbs a {
    width: 7rem;
    height: 7rem;
  }

  .single__number {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
  }

  .single__title {
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }

  .single__subtext {
    font-size: 1.3rem;
  }

  .single__description--about {
    padding: 1.5rem;
  }

  .single__description--about strong {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  .single__description--about p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
}

@media all and (max-width: 767px) {
  #nav-icon {
    width: 3rem;
    height: 2rem;
  }
html.js.no_scroll {
    overflow: hidden;
}

button#add_post {
    padding: 1.5rem 0;
}
  .all_people_wrap.wrap {
    background: none;
    padding: 0;
    border: none;
  }

  h1.all_people__header {
    font-size: 2rem;
  }

  .all_people__text {
    margin: 1.5rem 0;
  }

  .all_people_wrap.wrap a.button.button__green {
    width: 100%;
    font-size: 1.6rem;
    padding: 1.5rem;
  }

  #message_post span {
    padding: 0;
    font-size: 1.4rem;
  }

  html img.def {
    border-radius: 8px;
  }

  .video_content {
    grid-template-columns: 1fr;
  }

  .popular__link {
    border-radius: 8px;
  }

  .video_content h5 {
    grid-column: span 1;
  }

  .modal_content__wrap .single__title {
    font-size: 2.4rem;
  }

  .popular__slider .slick-list {
    border-radius: 0;
  }

  html .modal_content__wrap img.def {
    max-width: 100%;
    max-height: 100%;
  }

  .modal_content__wrap .no_photo {
    height: 100%;
    width: 100%;
  }

  .modal_close:hover {
    background: #788264;
    color: white;
  }

  .single__description--info_item:last-child {
    border-bottom: 0;
  }

  .modal_content__wrap .video_content {
    margin: 1.5rem 0 0;
  }

  .modal_content__wrap .single__img {
    margin: 0 0 1.5rem;
  }

  .modal_content__wrap {
    flex-direction: column;
    padding: 2rem 0 0;
  }

  .mob_visible {
    display: flex;
  }

  .modal_close {
    background: #9fb088;
    padding: 1.5rem;
    justify-content: center;
    color: white;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
    margin: 0 -1.5rem -1.5rem;
    transition: all, easy-in, 0.4s;
  }

  .modal.modal_content {
    width: 100%;
    max-width: calc(100vw - 3rem);
    padding: 1.5rem;
  }

  .pagination_custom {
    grid-column: span 1;
  }

  #nav-icon span {
    height: 0.3rem;
  }

  #nav-icon span:nth-child(2),
  #nav-icon span:nth-child(3) {
    top: 0.8rem;
  }

  #nav-icon span:nth-child(4) {
    top: 1.6rem;
  }

  #nav-icon.open span:nth-child(1) {
    top: 1.6rem;
  }

  #nav-icon.open span:nth-child(4) {
    top: 1.6rem;
  }

  .button {
    padding: 1rem 1.5rem;
    border-radius: 4px;
  }

  .wrap {
    max-width: calc(100vw - 3rem);
  }

  .social__mobile {
    display: block;
    width: 100%;
  }

  .social__mobile .nav_row__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
  }

  .social__mobile .nav_row__social svg {
    fill: white;
    width: 3rem;
    height: 3rem;
  }

  .header.nav_row .nav_row__nav a {
    font-size: 1.8rem;
  }

  .nav_row__social {
    display: none;
  }

  .nav_row__description {
    padding-right: 0;
  }

  .nav_row__description h1 {
    font-size: 2rem;
  }

  .nav_row__description p {
    font-size: 1.3rem;
  }

  .buttons {
    margin-top: 1.5rem;
  }

  .buttons .button {
    margin-right: 0.5rem;
    width: 100%;
  }

  .nav_row__img {
    display: none;
  }

  .about__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .about__img {
    padding-right: 0;
    margin-bottom: 1.5rem;
    max-width: 45%;
  }

  .about__title {
    font-size: 2.2rem;
    line-height: 140%;
  }

  .about__row_numbers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.5rem;
  }

  .about__row_numbers_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .about__row_numbers_item--bg {
    width: 14rem;
    height: 14rem;
    min-width: fit-content;
  }

  .popular {
    padding: 3rem 0;
  }

  .popular__title {
    line-height: 120%;
  }

  .popular__slider--wrap {
    padding: 0;
  }

  .arrow {
    width: 2.5rem;
    height: 2.5rem;
  }

  .arrow svg {
    fill: #3a3a3a;
  }

  .popular__item {
    opacity: 0.4;
    -webkit-transition: all, ease-in, 0.4s;
    -o-transition: all, ease-in, 0.4s;
    transition: all, ease-in, 0.4s;
  }

  .popular__item.slick-active {
    opacity: 1;
  }

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

  .redaction__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .redaction__description {
    width: 100%;
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .redaction__items {
    grid-gap: 1rem;
  }

  .redaction__item {
    height: 12rem;
  }

  .redaction__link {
    border-radius: 8px;
  }

  .redaction__link::after {
    width: 2.5rem;
    height: 2.5rem;
    right: 0.5rem;
    top: 0.5rem;
  }

  .search__form {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }

  .search__items {
    margin-top: 1.5rem;
    grid-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .search__navigation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .search__list {
    margin: 1.5rem 0;
  }

  .search__page {
    font-size: 1.8rem;
  }

  .footer {
    margin-top: 0;
  }

  .footer .nav_row__social {
    margin: 1.5rem auto 6rem;
  }

  .footer .nav_row__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }

  .footer .nav_row__nav a {
    border-bottom: 1px solid rgba(189, 189, 189, 0.192);
    display: block;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 1.5rem 0;
  }

  .footer .nav_row__nav a:last-child {
    border-bottom: none;
  }

  .footer__text {
    font-size: 1.4rem;
    max-width: 100%;
    width: auto;
  }

  .footer__title {
    font-size: 2.4rem;
    margin-bottom: 0;
  }

  .nav_row__wrap--footer {
    padding-bottom: 0;
  }

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

  .single__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .single__img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 3rem;
  }

  .single__img--thumbs {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  .single__img--thumbs a {
    width: 100%;
    height: calc((100vw - 7rem) / 5);
  }

  .single__number {
    font-size: 1rem;
  }

  .single__description--about {
    margin: 0 -1.5rem 1.5rem;
    border-left: 0;
    border-right: 0;
  }
}

.webp .modal a.close-modal {
  background-image: url(data:image/webp;base64,UklGRhYCAABXRUJQVlA4WAoAAAAQAAAAOwAAOwAAQUxQSB4BAAABgFPb2hrr6wZ6NBNoBtxQFTd/FQNxwDJiYKgNfo9f/v8YiAgGbhspSo6Zr/MFmehyH5mqvjfNva5MtF+KO9fntNF/bNLz2g1e0ukku8SzJ8zUwiywYxerpfHOgtNbrX2fJnMb1IHDbRozo440swmsSnVmufp/uFSHlv8OGnWq+W9r6ti/N3YaXDP8tdPdW5373v0mVsD4F4EiBj/JGLIf+Arpf5NQJCKy7ii6tchZMc8iKUcqy4ajWe4VdB+RRIbEVCRVTVLfSe4NScPCjrCLsBtin0n2XWDfQfbdR7857LeO/cbS33bxKDz+XyYh9A9F/91sZkCzCpqR0GzGZkI0i6IZmMzeaOZnaw0rA9sax1p/em3lixM37mo6tJYUVlA4INIAAAAwBgCdASo8ADwAPpFGnEmlpCKhKhzIALASCWkAB1AJrN4gE+b44BfUGnYpQRpdLYV5gKuILkbi9GAAAP75M6iv97jMME+1MbSWs1JY7Jq05GhkHfYx94QDWNk/9fJ6sl/i/pl+VlNuk2ZFWFpx7KNQuSawiLE6E7+mHkXLZkFRfqc7P2bajEm0lhLXQA4mPfaX0mrHRSEuUlYOktRfEoU8sIEqOLbqLHbFyEBm+ZLCTBYhhj3KfyaQYUMbVbonF+yVgcaahnpbI01fGbhrccAAAAA=);
}

.webp .header.nav_row::before {
  background: url(../img/header_bg.webp);
}