@charset "UTF-8";
@font-face {
  font-family: 'SF UI Text';
  src: local("SF UI  Text Regular"), local("SFUIText-Regular"), url("../fonts/SFUIText-Regular.woff2") format("woff2"), url("/fonts/SFUIText-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'SF UI Text';
  src: local("SF UI  Text Medium"), local("SFUIText-Medium"), url("../fonts/SFUIText-Medium.woff2") format("woff2"), url("/fonts/SFUIText-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: 'SF UI Display';
  src: local("SF UI Display Bold"), local("SFUIDisplay-Bold"), url("../fonts/SFUIDisplay-Bold.woff2") format("woff2"), url("/fonts/SFUIDisplay-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: 'SF UI Text';
  src: local("SF UI  Text Bold"), local("SFUIText-Bold"), url("../fonts/SFUIText-Bold.woff2") format("woff2"), url("/fonts/SFUIText-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal; }

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-family: "SF UI Text", "Verdana", sans-serif;
  font-weight: normal;
  line-height: 1.3;
  background-color: #faf2ed;
  color: #5d4658; }

.link {
  color: #ff0b00; }
  .link:hover {
    color: #311d2d; }
    .link:hover .link-icon {
      fill: #311d2d; }
  .link_big {
    font-size: 1.14286em; }
  .link_dark {
    color: #311d2d; }
    .link_dark:hover {
      color: #ff0b00; }
  .link_with-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }

.link-icon {
  overflow: hidden;
  margin-right: 10px;
  fill: #ff0b00; }

.btn {
  padding: 14px 40px;
  font-family: "SF UI Text", "Verdana", sans-serif;
  font-size: 1em;
  font-weight: bold;
  color: #faf6f5;
  background-image: -webkit-gradient(linear, left top, right top, from(#f45c43), color-stop(50%, #ff0b00), to(#f45c43));
  background-image: linear-gradient(to right, #f45c43 0%, #ff0b00 50%, #f45c43 100%);
  background-size: 200% auto;
  text-transform: uppercase;
  border-radius: 4px;
  border: none; }
  .btn:hover {
    cursor: pointer;
    -webkit-animation: shine 1.5s linear infinite;
    animation: shine 1.5s linear infinite; }

@-webkit-keyframes shine {
  100% {
    background-position: -200% center; } }

@keyframes shine {
  100% {
    background-position: -200% center; } }

.sub-btn {
  padding: 12px 40px;
  font-family: "SF UI Text", "Verdana", sans-serif;
  font-size: 1em;
  font-weight: bold;
  color: #faf6f5;
  background-color: transparent;
  text-transform: uppercase;
  border: 2px solid #faf6f5;
  border-radius: 4px; }
  .sub-btn:hover {
    cursor: pointer;
    color: #5d4658;
    background-color: #faf6f5;
    border-color: transparent; }

.tag {
  position: relative;
  display: inline-block;
  padding: 2px 10px 4px 30px;
  color: #faf6f5;
  background-color: #ff0b00;
  border-radius: 12px;
  text-decoration: none; }
  .tag__icon {
    position: absolute;
    left: -4px;
    top: -2px; }
  .tag__name {
    font-size: 0.78571em;
    font-weight: bold;
    text-transform: uppercase; }

.overflow-hidden {
  overflow: hidden;
  max-width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0; }

.desktop-hidden {
  display: none; }

.main {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-bottom: 40px;
  padding-top: 40px; }

.ec-rating-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: none;
  width: auto;
  height: auto;
  padding: 10px 0;
  margin: 0;
  background: none; }
  .ec-rating-stars::before, .ec-rating-stars::after {
    display: none;
    content: ''; }

.rating-star {
  margin: 0 2px;
  fill: transparent;
  fill-rule: nonzero;
  stroke-linejoin: miter;
  stroke-linecap: round; }
  .rating-star:hover {
    cursor: pointer; }

.rating-star.active {
  fill: #ff0b00; }

.rating-star.active2 {
  fill: #ff0b00; }

.breadcrumbs {
  margin-bottom: 26px; }
  .breadcrumbs__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%; }
  .breadcrumbs__item {
    margin-right: 0.5em;
    color: #1d2331; }
    .breadcrumbs__item::after {
      content: "·";
      margin-left: 0.3em; }
    .breadcrumbs__item:last-child::after {
      display: none; }

.container {
  max-width: 1080px;
  margin: 0 auto; }

.container-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.centered-container {
  margin: auto; }
  .centered-container .column {
    width: calc(50% - 10px); }

.copyright {
  padding: 30px 0;
  text-align: center; }
  .copyright p {
    margin: 0; }

.big-title {
  margin: 0.6em 0 0.3em;
  font-family: "SF UI Display", "Verdana", sans-serif;
  font-weight: bold;
  font-size: 5.71429em;
  letter-spacing: -2.2px;
  line-height: 1;
  color: #311d2d; }

.middle-title {
  margin: 0.6em 0 0.3em;
  font-size: 2.28571em;
  font-weight: 500;
  letter-spacing: -0.7px;
  color: #311d2d;
  text-transform: uppercase; }

.widget {
  margin-bottom: 40px; }

.section-title,
.widget-title {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.28571em;
  font-weight: 500;
  color: #311d2d;
  text-transform: uppercase; }

.section-sub-title {
  margin-top: 0;
  margin-bottom: 14px; }

.section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 14px; }

.swiper-scrollbar-drag {
  background-color: #ff0b00; }

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 10px 30px;
  -webkit-box-shadow: 0px 15px 30px 0 rgba(47, 22, 15, 0.15);
  box-shadow: 0px 15px 30px 0 rgba(47, 22, 15, 0.15);
  border-radius: 10px;
  overflow: hidden; }
  .card__wrap {
    position: relative;
    display: block;
    height: 200px;
    overflow: hidden; }
  .card__photo {
    width: 100%;
    max-width: 100%;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px; }
  .card__title {
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
    color: #311d2d;
    text-decoration: none; }
  .card__descr {
    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: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
    padding: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #faf6f5; }

.video-wrap {
  position: relative;
  margin-bottom: 28px; }
  .video-wrap:hover {
    cursor: pointer; }

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 16px; }
  .form-row:last-of-type {
    margin-bottom: 0; }
  .form-row_centered {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .form-row_full-height {
    -webkit-box-align: initial;
    -ms-flex-align: initial;
    align-items: initial; }
    .form-row_full-height .form-field {
      height: 100%; }
    .form-row_full-height textarea {
      height: calc(100% - 28px); }

.form-column {
  width: calc(50% - 10px); }
  .form-column_big {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1; }

.form-field {
  width: 100%; }
  .form-field input,
  .form-field textarea,
  .form-field select {
    margin-top: 4px; }

.form-cell_left {
  margin-left: auto; }

.form-required {
  color: #ff0b00;
  font-size: 1.14286em; }

@media (max-width: 1024px) {
  .container {
    padding: 0 20px; } }

@media (max-width: 800px) {
  .section-title,
  .section-sub-title,
  .widget-title {
    text-align: center; }
  .section-header {
    -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; }
  .form-column {
    width: 100%;
    margin-bottom: 20px; }
    .form-column:last-child {
      margin-bottom: 0; }
  .form-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .desktop-hidden {
    display: block; }
  .big-title {
    font-size: 2.28571em; } }

@media (max-width: 480px) {
  body {
    font-size: 12px; }
  .main {
    padding: 20px 0; }
  .breadcrumbs {
    display: none; }
  .container {
    padding: 0 10px; }
  .card__descr {
    padding: 20px; } }

html {
  font-size: 14px; }

h3 {
  margin: 0.6em 0 0.3em;
  font-size: 1.14286em;
  font-weight: bold;
  color: #311d2d; }

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

ol {
  margin: 0;
  padding: 0; }

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; }

img[data-src] {
  opacity: 0; }

a {
  color: #ff0b00; }
  a:hover {
    color: #311d2d; }

input,
textarea,
select {
  width: 100%;
  padding: 13px 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
  background-color: #faf6f5;
  border: 1px solid #c2b1bf;
  font-size: 14px;
  font-family: "SF UI Text", "Verdana", sans-serif; }
  input:focus,
  textarea:focus,
  select:focus {
    border-color: #311d2d;
    outline: none; }
  input::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder,
  select::-webkit-input-placeholder {
    color: #c2b1bf;
    font-size: 1em;
    font-family: "SF UI Text", "Verdana", sans-serif; }
  input:-ms-input-placeholder,
  textarea:-ms-input-placeholder,
  select:-ms-input-placeholder {
    color: #c2b1bf;
    font-size: 1em;
    font-family: "SF UI Text", "Verdana", sans-serif; }
  input::-ms-input-placeholder,
  textarea::-ms-input-placeholder,
  select::-ms-input-placeholder {
    color: #c2b1bf;
    font-size: 1em;
    font-family: "SF UI Text", "Verdana", sans-serif; }
  input::placeholder,
  textarea::placeholder,
  select::placeholder {
    color: #c2b1bf;
    font-size: 1em;
    font-family: "SF UI Text", "Verdana", sans-serif; }

textarea {
  resize: none; }

label {
  color: #311d2d; }

video {
  display: block;
  margin: 0;
  background: url("../../../../img/icons/icn-play.svg") center center no-repeat, #1d2331; }

.about-intro {
  margin-bottom: 40px; }
  .about-intro__title {
    margin-top: 0; }
  .about-intro__text {
    margin-bottom: 1em;
    font-size: 1.57143em;
    line-height: 1.5; }

.about-cards {
  padding-top: 28px; }

.about-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 32px 40px;
  margin-bottom: 12px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #faf6f5;
  border-radius: 16px;
  -webkit-box-shadow: 0px 10px 20px 0 rgba(47, 22, 15, 0.1);
  box-shadow: 0px 10px 20px 0 rgba(47, 22, 15, 0.1); }
  .about-card:last-child {
    margin-bottom: 0; }
  .about-card__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 48px;
    margin-right: 24px; }
  .about-card__title {
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 1.71429em;
    font-family: "SF UI Display", "Verdana", sans-serif;
    font-weight: bold;
    letter-spacing: -0.7px;
    color: #311d2d; }
  .about-card__btn {
    padding: 0;
    background-color: transparent;
    border: none;
    text-decoration: underline; }
    .about-card__btn:hover {
      cursor: pointer; }
    .about-card__btn:focus {
      outline: none;
      color: #1d2331; }

.grid-cards {
  margin: 40px 0; }
  .grid-cards__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%; }
  .grid-cards__title {
    margin-top: 0;
    font-size: 1.71429em;
    font-weight: bold;
    font-family: "SF UI Display", "Verdana", sans-serif;
    color: #311d2d; }

.grid-card {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(50% - 10px);
  margin-bottom: 20px;
  -webkit-box-shadow: 0px 15px 30px 0 rgba(47, 22, 15, 0.15);
  box-shadow: 0px 15px 30px 0 rgba(47, 22, 15, 0.15);
  background-color: #faf6f5;
  border-radius: 16px; }
  .grid-card__photo {
    max-width: 200px;
    width: 200px;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover; }
  .grid-card__info {
    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;
    padding: 30px; }
  .grid-card__header {
    margin-bottom: 16px; }
  .grid-card__title {
    margin-top: 0;
    margin-bottom: 4px;
    font-size: 1.28571em;
    font-weight: bold;
    letter-spacing: -0.4px;
    color: #311d2d; }
  .grid-card__link {
    display: inline-block;
    margin-bottom: 4px; }

.expander__header {
  padding: 2px;
  font-size: 1.28571rem;
  font-weight: 500;
  font-family: "SF UI Text", Verdana, sans-serif;
  color: #311d2d;
  line-height: 1.5;
  cursor: pointer;
  margin-bottom: 20px;
}

.expander__header span {
  color: #ff0b00;
  border-bottom: 2px dashed #ff0b00;
}
.expander__header span:hover {
  color: #311d2d;
  border-bottom-color: #311d2d;
}

.expander__content {
  display: none;
}
.expander__content .grid-cards {
  margin: 10px 0;
}


@media (max-width: 800px) {
  .grid-card {
    width: 100%; } }

@media (max-width: 375px) {
  .grid-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    .grid-card__photo {
      max-width: 100%;
      width: 100%;
      height: 350px; } }

.main-news {
  width: 640px; }
  .main-news__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .main-news__title {
    padding: 0 10px; }

.search-wrapper {
  max-width: 640px; }

.main-news-item {
  position: relative;
  display: block;
  width: calc(100% - 20px);
  min-height: 465px;
  height: 465px;
  max-height: 620px;
  margin: 0 10px 30px;
  text-decoration: none;
  color: #faf6f5;
  -webkit-box-shadow: 0px 15px 30px 0 rgba(47, 22, 15, 0.15);
  box-shadow: 0px 15px 30px 0 rgba(47, 22, 15, 0.15);
  border-radius: 20px;
  overflow: hidden; }
  .main-news-item__photo-wrapper {
    display: block;
    height: 100%; }
    .main-news-item__photo-wrapper::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 2;
      background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, rgba(47, 22, 15, 0.5)), to(transparent));
      background: linear-gradient(to top, rgba(47, 22, 15, 0.5) 30%, transparent 100%); }
  .main-news-item:last-child {
    margin-bottom: 0; }
  .main-news-item__intro {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    z-index: 3; }
  .main-news-item__photo {
    width: 100%;
    max-width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 20px;
    -webkit-transition: -webkit-transform 1s ease-in-out;
    transition: -webkit-transform 1s ease-in-out;
    transition: transform 1s ease-in-out;
    transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out; }
  .main-news-item:hover {
    color: #faf6f5; }
    .main-news-item:hover .main-news-item__photo {
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
      -webkit-transition: -webkit-transform 1s ease-in-out;
      transition: -webkit-transform 1s ease-in-out;
      transition: transform 1s ease-in-out;
      transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out; }

.news-tag {
  position: relative;
  z-index: 5; }

.news-intro__title {
  margin: 18px 0;
  font-size: 2.14286em;
  font-weight: bold; }

.news-intro__text {
  font-size: 1.28571em;
  letter-spacing: -0.3px; }

.news-intro__title, .news-intro__text {
  color: #faf6f5;
  text-decoration: none; }

.news-intro__body {
  color: #faf6f5;
  text-decoration: none; }
  .news-intro__body:hover {
    color: #faf6f5; }
  .news-intro__body:focus {
    outline: none; }

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

.news-intro__date {
  margin-right: 20px; }

.medium-news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 300px;
  margin: 0 10px 30px;
  -webkit-box-shadow: 0px 15px 30px 0 rgba(47, 22, 15, 0.15);
  box-shadow: 0px 15px 30px 0 rgba(47, 22, 15, 0.15);
  border-radius: 10px;
  overflow: hidden; }
  .medium-news-item__wrap {
    position: relative;
    display: block;
    height: 200px;
    overflow: hidden; }
  .medium-news-item__photo {
    width: 100%;
    max-width: 100%;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    -webkit-transition: -webkit-transform 1s ease-in-out;
    transition: -webkit-transform 1s ease-in-out;
    transition: transform 1s ease-in-out;
    transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out; }
    .medium-news-item__photo:hover {
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
      -webkit-transition: -webkit-transform 1s ease-in-out;
      transition: -webkit-transform 1s ease-in-out;
      transition: transform 1s ease-in-out;
      transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out; }
  .medium-news-item__descr {
    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: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
    padding: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #faf6f5; }
  .medium-news-item__tags {
    position: absolute;
    top: 30px;
    left: 30px; }
  .medium-news-item__title {
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
    color: #311d2d;
    text-decoration: none; }
    .medium-news-item__title:hover {
      color: #ff0b00; }
  .medium-news-item__intro {
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 36px; }
  .medium-news-item__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: auto; }
  .medium-news-item__date {
    margin-right: 10px; }

.news-share {
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .news-share__btn {
    background-color: transparent;
    padding: 5px 10px;
    margin-right: 6px;
    border: none; }
    .news-share__btn:hover {
      cursor: pointer; }
  .news-share .addtoany_shortcode {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in; }
  .news-share .addtoany_shortcode.shown {
    position: initial;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    visibility: visible; }
  .news-share .addtoany_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }

.side-content {
  width: 34.25926%; }

.regular-news {
  margin-bottom: 40px; }
  .regular-news__title {
    position: relative;
    padding: 0 10px 18px; }
    .regular-news__title::after {
      content: '';
      position: absolute;
      bottom: 0;
      display: block;
      width: 100%;
      border-bottom: 1px solid rgba(194, 177, 191, 0.4); }

.news-item {
  margin-bottom: 30px;
  -webkit-column-break-inside: avoid;
  break-inside: avoid; }
  .news-item__title {
    display: block;
    margin-bottom: 8px;
    padding-left: 8px;
    font-weight: bold;
    color: #311d2d;
    text-decoration: none;
    border-left: 2px solid #ff0b00; }
    .news-item__title:hover {
      color: #ff0b00; }
  .news-item__intro {
    margin-top: 0;
    margin-bottom: 12px;
    padding-left: 10px; }
  .news-item__footer {
    padding-left: 10px; }
  .news-item__date {
    font-size: 0.85714em;
    color: #c2b1bf; }

.block-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .block-link__icon {
    margin-right: 10px;
    fill: #ff0b00; }
  .block-link:hover .block-link__icon {
    fill: #311d2d; }

.alliance-map {
  margin-bottom: 40px; }
  .alliance-map__img {
    width: 100%;
    margin-bottom: 28px; }

.our-story {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 20px;
  text-decoration: none; }
  .our-story:hover .our-story__photo {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: -webkit-transform 1s ease-in-out;
    transition: -webkit-transform 1s ease-in-out;
    transition: transform 1s ease-in-out;
    transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out; }
  .our-story::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 5;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 20px; }
  .our-story__text-wrap {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 6;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
  .our-story__title {
    margin: 0;
    font-family: "SF UI Display", "Verdana", sans-serif;
    font-size: 4.28571em;
    font-weight: bold;
    color: #faf6f5; }
  .our-story__photo {
    width: 100%;
    max-width: 100%;
    max-height: 600px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: -webkit-transform 1s ease-in-out;
    transition: -webkit-transform 1s ease-in-out;
    transition: transform 1s ease-in-out;
    transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out; }
  .our-story__intro {
    margin: 0;
    margin-bottom: 30px;
    font-family: "SF UI Display", "Verdana", sans-serif;
    font-size: 1.71429em;
    letter-spacing: -0.5px;
    color: #faf6f5; }
  .our-story__date {
    color: #faf6f5;
    letter-spacing: -0.3px; }

@media (max-width: 800px) {
  .main-news {
    width: 100%;
    margin-bottom: 30px; }
  .side-content {
    width: 100%; }
  .medium-news-item {
    width: calc(50% - 20px); } }

@media (max-width: 480px) {
  .main-news-item {
    width: 100%;
    min-height: 300px;
    height: 300px;
    max-height: 400px;
    margin: 0 0 10px; }
    .main-news-item__intro {
      bottom: 20px;
      left: 20px; }
  .news-intro__title {
    font-size: 1.42857em;
    margin: 12px 0; }
  .news-intro__text {
    display: none; }
  .medium-news-item {
    width: 100%;
    margin: 0 0 10px; }
  .our-story__title {
    font-size: 2.14286em; }
  .our-story__intro {
    margin-bottom: 16px;
    font-size: 1.14286em;
    font-family: "SF UI Text", "Verdana", sans-serif;
    font-weight: normal; }
  .our-story__photo {
    max-height: 400px; } }

.search-form-wrap {
  width: 30px;
  height: 30px;
  margin-right: 20px; }

.search-form-btn {
  padding: 10px;
  background-color: transparent;
  border: 0;
  font-size: 0;
  line-height: 1; }
  .search-form-btn svg {
    fill: #311d2d; }
  .search-form-btn:hover {
    cursor: pointer; }
    .search-form-btn:hover svg {
      fill: #ff0b00; }

.search-form {
  overflow: hidden;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  position: absolute;
  top: 50%;
  right: 169px;
  z-index: 3;
  width: 30px;
  margin-top: -32px;
  padding: 10px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #faf2ed;
  -webkit-transition: width 0.3s ease-in;
  transition: width 0.3s ease-in; }
  .search-form__search-input {
    margin-right: 15px;
    background-color: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #311d2d;
    -webkit-appearance: none;
    -webkit-border-radius: 0px; }
    .search-form__search-input::-webkit-input-placeholder {
      color: #311d2d; }
    .search-form__search-input:-ms-input-placeholder {
      color: #311d2d; }
    .search-form__search-input::-ms-input-placeholder {
      color: #311d2d; }
    .search-form__search-input::placeholder {
      color: #311d2d; }
    .search-form__search-input::-webkit-search-cancel-button {
      -webkit-appearance: none; }
  .search-form__close, .search-form__submit {
    padding: 5px;
    background-color: transparent;
    border: none;
    font-size: 0;
    line-height: 0; }
  .search-form__submit {
    margin-right: 15px; }
    .search-form__submit:hover {
      cursor: pointer; }
      .search-form__submit:hover svg {
        fill: #ff0b00; }
  .search-form__close {
    opacity: 0; }
    .search-form__close:hover {
      cursor: pointer; }
      .search-form__close:hover svg {
        fill: #ff0b00; }

.search-form_opened {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  width: calc(100% - 220px - 80px - 169px);
  -webkit-transition: width 0.3s ease-in;
  transition: width 0.3s ease-in; }
  .search-form_opened .search-form__search-input, .search-form_opened .search-form__close {
    -webkit-animation: fade 1s ease-in-out forwards;
    animation: fade 1s ease-in-out forwards; }

@-webkit-keyframes grow {
  0% {
    width: 0; }
  30% {
    width: 100px;
    -webkit-transform: translateX(-70%);
    transform: translateX(-70%); }
  50% {
    width: 500px;
    -webkit-transform: translateX(-80%);
    transform: translateX(-80%); }
  80% {
    width: calc(100% - 300px - 80px);
    -webkit-transform: translateX(-90%);
    transform: translateX(-90%); }
  100% {
    width: calc(100% - 300px - 80px);
    -webkit-transform: translateX(-90%);
    transform: translateX(-90%); } }

@keyframes grow {
  0% {
    width: 0; }
  30% {
    width: 100px;
    -webkit-transform: translateX(-70%);
    transform: translateX(-70%); }
  50% {
    width: 500px;
    -webkit-transform: translateX(-80%);
    transform: translateX(-80%); }
  80% {
    width: calc(100% - 300px - 80px);
    -webkit-transform: translateX(-90%);
    transform: translateX(-90%); }
  100% {
    width: calc(100% - 300px - 80px);
    -webkit-transform: translateX(-90%);
    transform: translateX(-90%); } }

@media (max-width: 1280px) {
  .search-form {
    right: 113px; }
  .search-form_opened {
    width: calc(100% - 220px - 24px - 113px); }
  @-webkit-keyframes grow {
    0% {
      width: 0; }
    30% {
      width: 100px;
      -webkit-transform: translateX(-70%);
      transform: translateX(-70%); }
    50% {
      width: 500px;
      -webkit-transform: translateX(-80%);
      transform: translateX(-80%); }
    80% {
      width: calc(100% - 200px - 18px - 20px - 48px);
      -webkit-transform: translateX(-90%);
      transform: translateX(-90%); }
    100% {
      width: calc(100% - 200px - 18px - 20px - 48px);
      -webkit-transform: translateX(-90%);
      transform: translateX(-90%); } }
  @keyframes grow {
    0% {
      width: 0; }
    30% {
      width: 100px;
      -webkit-transform: translateX(-70%);
      transform: translateX(-70%); }
    50% {
      width: 500px;
      -webkit-transform: translateX(-80%);
      transform: translateX(-80%); }
    80% {
      width: calc(100% - 200px - 18px - 20px - 48px);
      -webkit-transform: translateX(-90%);
      transform: translateX(-90%); }
    100% {
      width: calc(100% - 200px - 18px - 20px - 48px);
      -webkit-transform: translateX(-90%);
      transform: translateX(-90%); } } }

@media (max-width: 1160px) {
  .search-form-wrap {
    margin-right: 10px; }
  .search-form {
    right: 83px; }
  .search-form_opened {
    width: calc(100% - 100px - 14px - 83px); }
  @-webkit-keyframes grow {
    0% {
      width: 0; }
    30% {
      width: 100px;
      -webkit-transform: translateX(-70%);
      transform: translateX(-70%); }
    50% {
      width: 500px;
      -webkit-transform: translateX(-80%);
      transform: translateX(-80%); }
    80% {
      width: calc(100% - 80px - 28px);
      -webkit-transform: translateX(-89%);
      transform: translateX(-89%); }
    100% {
      width: calc(100% - 80px - 28px);
      -webkit-transform: translateX(-89%);
      transform: translateX(-89%); } }
  @keyframes grow {
    0% {
      width: 0; }
    30% {
      width: 100px;
      -webkit-transform: translateX(-70%);
      transform: translateX(-70%); }
    50% {
      width: 500px;
      -webkit-transform: translateX(-80%);
      transform: translateX(-80%); }
    80% {
      width: calc(100% - 80px - 28px);
      -webkit-transform: translateX(-89%);
      transform: translateX(-89%); }
    100% {
      width: calc(100% - 80px - 28px);
      -webkit-transform: translateX(-89%);
      transform: translateX(-89%); } } }

@media (max-width: 1024px) {
  @-webkit-keyframes grow {
    0% {
      width: 0; }
    30% {
      width: 100px;
      -webkit-transform: translateX(-70%);
      transform: translateX(-70%); }
    50% {
      width: 500px;
      -webkit-transform: translateX(-80%);
      transform: translateX(-80%); }
    80% {
      width: calc(100% - 60px - 28px);
      -webkit-transform: translateX(-87%);
      transform: translateX(-87%); }
    100% {
      width: calc(100% - 60px - 28px);
      -webkit-transform: translateX(-87%);
      transform: translateX(-87%); } }
  @keyframes grow {
    0% {
      width: 0; }
    30% {
      width: 100px;
      -webkit-transform: translateX(-70%);
      transform: translateX(-70%); }
    50% {
      width: 500px;
      -webkit-transform: translateX(-80%);
      transform: translateX(-80%); }
    80% {
      width: calc(100% - 60px - 28px);
      -webkit-transform: translateX(-87%);
      transform: translateX(-87%); }
    100% {
      width: calc(100% - 60px - 28px);
      -webkit-transform: translateX(-87%);
      transform: translateX(-87%); } } }

@media (max-width: 800px) {
  .search-form-wrap {
    width: 40px;
    margin-left: auto; }
  .search-form {
    top: 0;
    right: 94px;
    height: 100%;
    width: 40px;
    margin-top: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  .search-form_opened {
    width: calc(100% - 90px - 20px - 94px); }
  @-webkit-keyframes grow {
    0% {
      width: 0; }
    30% {
      width: 100px;
      -webkit-transform: translateX(-70%);
      transform: translateX(-70%); }
    50% {
      width: 300px;
      -webkit-transform: translateX(-70%);
      transform: translateX(-70%); }
    80% {
      width: calc(100% - 310px - 24px);
      -webkit-transform: translateX(-72%);
      transform: translateX(-72%); }
    100% {
      width: calc(100% - 310px - 24px);
      -webkit-transform: translateX(-72%);
      transform: translateX(-72%); } }
  @keyframes grow {
    0% {
      width: 0; }
    30% {
      width: 100px;
      -webkit-transform: translateX(-70%);
      transform: translateX(-70%); }
    50% {
      width: 300px;
      -webkit-transform: translateX(-70%);
      transform: translateX(-70%); }
    80% {
      width: calc(100% - 310px - 24px);
      -webkit-transform: translateX(-72%);
      transform: translateX(-72%); }
    100% {
      width: calc(100% - 310px - 24px);
      -webkit-transform: translateX(-72%);
      transform: translateX(-72%); } } }

@media (max-width: 480px) {
  .search-form_opened {
    right: 20px;
    width: calc(100% - 40px); }
  @-webkit-keyframes grow {
    0% {
      width: 0; }
    30% {
      width: 100px;
      -webkit-transform: translateX(-70%);
      transform: translateX(-70%); }
    50% {
      width: 300px;
      -webkit-transform: translateX(-70%);
      transform: translateX(-70%); }
    80% {
      width: calc(100% - 40px);
      -webkit-transform: translateX(-74%);
      transform: translateX(-74%); }
    100% {
      width: calc(100% - 40px);
      -webkit-transform: translateX(-74%);
      transform: translateX(-74%); } }
  @keyframes grow {
    0% {
      width: 0; }
    30% {
      width: 100px;
      -webkit-transform: translateX(-70%);
      transform: translateX(-70%); }
    50% {
      width: 300px;
      -webkit-transform: translateX(-70%);
      transform: translateX(-70%); }
    80% {
      width: calc(100% - 40px);
      -webkit-transform: translateX(-74%);
      transform: translateX(-74%); }
    100% {
      width: calc(100% - 40px);
      -webkit-transform: translateX(-74%);
      transform: translateX(-74%); } } }

@media (max-width: 425px) {
  @-webkit-keyframes grow {
    0% {
      width: 0; }
    30% {
      width: 100px;
      -webkit-transform: translateX(-60%);
      transform: translateX(-60%); }
    50% {
      width: 300px;
      -webkit-transform: translateX(-60%);
      transform: translateX(-60%); }
    80% {
      width: calc(100% - 40px);
      -webkit-transform: translateX(-70%);
      transform: translateX(-70%); }
    100% {
      width: calc(100% - 40px);
      -webkit-transform: translateX(-70%);
      transform: translateX(-70%); } }
  @keyframes grow {
    0% {
      width: 0; }
    30% {
      width: 100px;
      -webkit-transform: translateX(-60%);
      transform: translateX(-60%); }
    50% {
      width: 300px;
      -webkit-transform: translateX(-60%);
      transform: translateX(-60%); }
    80% {
      width: calc(100% - 40px);
      -webkit-transform: translateX(-70%);
      transform: translateX(-70%); }
    100% {
      width: calc(100% - 40px);
      -webkit-transform: translateX(-70%);
      transform: translateX(-70%); } } }

@media (max-width: 375px) {
  @-webkit-keyframes grow {
    0% {
      width: 0; }
    30% {
      width: 100px;
      -webkit-transform: translateX(-60%);
      transform: translateX(-60%); }
    50% {
      width: 300px;
      -webkit-transform: translateX(-60%);
      transform: translateX(-60%); }
    80% {
      width: calc(100% - 40px);
      -webkit-transform: translateX(-67%);
      transform: translateX(-67%); }
    100% {
      width: calc(100% - 40px);
      -webkit-transform: translateX(-67%);
      transform: translateX(-67%); } }
  @keyframes grow {
    0% {
      width: 0; }
    30% {
      width: 100px;
      -webkit-transform: translateX(-60%);
      transform: translateX(-60%); }
    50% {
      width: 300px;
      -webkit-transform: translateX(-60%);
      transform: translateX(-60%); }
    80% {
      width: calc(100% - 40px);
      -webkit-transform: translateX(-67%);
      transform: translateX(-67%); }
    100% {
      width: calc(100% - 40px);
      -webkit-transform: translateX(-67%);
      transform: translateX(-67%); } } }

@media (max-width: 320px) {
  @-webkit-keyframes grow {
    0% {
      width: 0; }
    30% {
      width: 100px;
      -webkit-transform: translateX(-55%);
      transform: translateX(-55%); }
    50% {
      width: 300px;
      -webkit-transform: translateX(-60%);
      transform: translateX(-60%); }
    80% {
      width: calc(100% - 40px);
      -webkit-transform: translateX(-60%);
      transform: translateX(-60%); }
    100% {
      width: calc(100% - 40px);
      -webkit-transform: translateX(-60%);
      transform: translateX(-60%); } }
  @keyframes grow {
    0% {
      width: 0; }
    30% {
      width: 100px;
      -webkit-transform: translateX(-55%);
      transform: translateX(-55%); }
    50% {
      width: 300px;
      -webkit-transform: translateX(-60%);
      transform: translateX(-60%); }
    80% {
      width: calc(100% - 40px);
      -webkit-transform: translateX(-60%);
      transform: translateX(-60%); }
    100% {
      width: calc(100% - 40px);
      -webkit-transform: translateX(-60%);
      transform: translateX(-60%); } } }

.header {
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 24px 80px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #faf2ed;
  border-bottom: 2px solid #ff0b00;
  -webkit-box-shadow: 0px 15px 30px 0 rgba(47, 22, 15, 0.15);
  box-shadow: 0px 15px 30px 0 rgba(47, 22, 15, 0.15); }

.hamburger {
  display: none; }

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-decoration: none;
  padding-right: 10px; }
  .logo__img {
    margin-right: 10px; }
  .logo__text {
    max-width: 120px;
    margin: 0;
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase;
    color: #311d2d; }
  .logo_big {
    padding-left: 100px; }
    .logo_big .logo__img {
      margin-right: 20px; }
    .logo_big .logo__text {
      max-width: 250px;
      font-size: 1.71429em; }

.main-nav {
  margin: 0 auto; }
  .main-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .main-nav__link {
    display: inline-block;
    padding: 5px 10px;
    font-weight: bold;
    color: #311d2d;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap; }
    .main-nav__link:hover {
      color: #ff0b00; }

.main-nav .current-menu-item .main-nav__link {
  color: #ff0b00; }

@-webkit-keyframes fade {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: block;
    opacity: 0; }
  100% {
    display: block;
    opacity: 1; } }

@keyframes fade {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: block;
    opacity: 0; }
  100% {
    display: block;
    opacity: 1; } }

.user-panel {
  margin-right: 20px; }
  .user-panel__btn {
    padding: 10px;
    background-color: transparent;
    border: 0;
    line-height: 1;
    font-size: 0; }
    .user-panel__btn svg {
      fill: #311d2d; }
    .user-panel__btn:hover {
      cursor: pointer; }
      .user-panel__btn:hover svg {
        fill: #ff0b00; }

.change-lang {
  color: #311d2d;
  font-weight: bold;
  text-decoration: none; }
  .change-lang:hover {
    color: #ff0b00; }

@media (max-width: 1280px) {
  .header {
    padding: 24px; } }

@media (max-width: 1160px) {
  .header {
    padding: 14px; }
  .logo__text {
    visibility: hidden;
    position: absolute;
    left: -1000px; }
  .user-panel {
    margin-right: 10px; } }

@media (max-width: 800px) {
  .header {
    overflow: visible;
    padding: 14px 20px;
    border-bottom: none; }
  .main-nav {
    display: block;
    overflow-y: scroll;
    position: absolute;
    top: 100%;
    left: 0;
    right: 6%;
    z-index: 10;
    max-width: 100%;
    width: 94%;
    max-height: 100vh;
    height: calc(100vh - 148px);
    margin: 0;
    padding: 24px 0;
    background-color: #311d2d;
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%); }
    .main-nav__list {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: initial;
      -ms-flex-align: initial;
      align-items: initial;
      padding-bottom: 15px;
      border-bottom: 1px solid #faf6f5; }
    .main-nav__item {
      margin-bottom: 8px; }
      .main-nav__item:last-child {
        margin-bottom: 0; }
    .main-nav__link {
      display: block;
      padding: 15px 35px;
      font-weight: normal;
      color: #faf6f5; }
      .main-nav__link:hover {
        color: #faf6f5;
        background-color: #51304a; }
  .main-nav_open {
    display: block;
    -webkit-transform: none;
    transform: none;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease; }
  .main-nav-contacts {
    padding: 30px 35px; }
  .main-nav-contacts-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px; }
    .main-nav-contacts-item__icon {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      width: 16px;
      margin-right: 8px; }
      .main-nav-contacts-item__icon svg {
        fill: #faf6f5; }
    .main-nav-contacts-item__link {
      color: #faf6f5; }
  .hamburger {
    display: inline-block;
    overflow: visible;
    padding: 15px;
    margin-right: 20px;
    cursor: pointer;
    font: inherit;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transition-duration: .15s;
    transition-duration: .15s;
    -webkit-transition-property: opacity, -webkit-filter;
    transition-property: opacity, -webkit-filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent; }
  .hamburger-box {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px; }
  .hamburger-inner,
  .hamburger-inner::after,
  .hamburger-inner::before {
    position: absolute;
    width: 40px;
    height: 3px;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-duration: .15s;
    transition-duration: .15s;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    border-radius: 4px;
    background-color: #1d2331; }
  .hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
    -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -webkit-transition-duration: .22s;
    transition-duration: .22s; }
    .hamburger-inner::before, .hamburger-inner::after {
      content: ''; }
    .hamburger-inner::before {
      top: -10px;
      -webkit-transition: top .1s ease-in .25s, opacity .1s ease-in;
      transition: top .1s ease-in .25s, opacity .1s ease-in; }
    .hamburger-inner::after {
      bottom: -10px;
      -webkit-transition: bottom 0.1s ease-in 0.25s, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
      transition: bottom 0.1s ease-in 0.25s, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
      transition: bottom 0.1s ease-in 0.25s, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
      transition: bottom 0.1s ease-in 0.25s, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger.is-active .hamburger-inner {
    -webkit-transition-delay: .12s;
    transition-delay: .12s;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg); }
    .hamburger.is-active .hamburger-inner::before {
      top: 0;
      -webkit-transition: top .1s ease-out, opacity .1s ease-out .12s;
      transition: top .1s ease-out, opacity .1s ease-out .12s;
      opacity: 0; }
    .hamburger.is-active .hamburger-inner::after {
      bottom: 0;
      -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
      transition: bottom 0.1s ease-out, -webkit-transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
      transition: bottom 0.1s ease-out, transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
      transition: bottom 0.1s ease-out, transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s, -webkit-transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
      -webkit-transform: rotate(-90deg);
      transform: rotate(-90deg); }
  .logo__text {
    visibility: visible;
    position: initial; } }

@media (max-width: 480px) {
  .logo {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .logo__img {
      width: 40px;
      height: 40px; }
    .logo__text {
      max-width: 100px;
      font-size: 0.64286em;
      line-height: 1.1; }
  .main-nav {
    height: calc(100vh - 116px); }
    .main-nav__link {
      padding: 15px 25px; }
  .main-nav-contacts {
    padding: 30px 25px; }
  .hamburger {
    padding: 5px;
    margin-right: 12px;
    height: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  .hamburger-box {
    width: 24px;
    height: 20px; }
  .hamburger-inner,
  .hamburger-inner::after,
  .hamburger-inner::before {
    width: 24px;
    height: 2px; }
  .hamburger-inner::before {
    top: -8px; }
  .hamburger-inner::after {
    bottom: -8px; } }

.footer-container {
  padding: 40px 0 60px;
  border-top: 1px solid #ff0b00; }

.footer-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%; }

.footer-nav {
  margin: 0 auto;
  padding: 0 20px; }
  .footer-nav__list {
    -webkit-column-count: 4;
    column-count: 4;
    -webkit-column-gap: 20px;
    column-gap: 20px; }
  .footer-nav__item {
    margin-bottom: 20px; }
  .footer-nav .current-menu-item .footer-nav__link {
    color: #ff0b00; }

.footer-contacts-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 12px; }
  .footer-contacts-item__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 26px;
    margin-right: 12px; }

.footer-disclaimer {
  margin: 0 auto;
  padding-top: 50px;
  font-size: 1.14286em;
  color: #311d2d; }

@media (max-width: 1024px) {
  .footer {
    padding: 0 20px; }
  .footer-nav__list {
    -webkit-column-count: 3;
    column-count: 3; } }

@media (max-width: 800px) {
  .footer .logo {
    display: none; }
  .footer-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
  .footer-contacts {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 20px; }
  .footer-contacts-item {
    padding: 0 20px;
    margin-bottom: 0; }
  .footer-nav {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
    .footer-nav__list {
      -webkit-column-count: 1;
      column-count: 1;
      width: 300px; }
    .footer-nav__item {
      margin-bottom: 0; }
    .footer-nav__link {
      display: block;
      padding: 15px 0;
      text-align: center;
      text-decoration: none;
      border-bottom: 1px solid rgba(49, 29, 45, 0.5); }
  .footer-disclaimer {
    padding-top: 25px; } }

@media (max-width: 480px) {
  .footer {
    padding: 0 10px; }
  .footer-nav {
    width: 100%;
    padding: 0; }
    .footer-nav__list {
      width: 100%; }
  .footer-contacts {
    -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; }
  .footer-contacts-item {
    margin-bottom: 10px; }
    .footer-contacts-item:last-child {
      margin-bottom: 0; } }

@media (max-width: 320px) {
  .footer-contacts-item {
    padding: 0; }
    .footer-contacts-item__icon {
      margin-right: 6px; } }

.modal-wrap {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 15;
  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;
  background-color: rgba(49, 29, 45, 0.8); }

.modal {
  width: 420px;
  max-width: 100%;
  max-height: 100%;
  overflow-y: auto;
  padding: 20px; }
  .modal__close {
    padding: 5px;
    border: 0;
    background-color: transparent;
    font-size: 0;
    line-height: 1; }
    .modal__close svg {
      fill: #faf6f5; }
  .modal__title {
    color: #faf6f5;
    font-family: "SF UI Display", "Verdana", sans-serif;
    font-weight: bold;
    font-size: 2.14286em; }
  .modal input {
    background-color: transparent;
    opacity: 0.7;
    border: 2px solid #faf6f5;
    color: #faf6f5; }
    .modal input:focus {
      opacity: 1;
      border-color: #faf6f5; }
    .modal input::-webkit-input-placeholder {
      color: #faf6f5; }
    .modal input:-ms-input-placeholder {
      color: #faf6f5; }
    .modal input::-ms-input-placeholder {
      color: #faf6f5; }
    .modal input::placeholder {
      color: #faf6f5; }
  .modal__link {
    font-size: 1.14286em;
    color: #faf6f5;
    margin-right: 20px; }
    .modal__link:hover {
      text-decoration: none; }
  .modal .form-row {
    margin-bottom: 24px; }
    .modal .form-row:last-child {
      margin-bottom: 0; }

.content-modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 15;
  overflow: scroll;
  background-color: #ffffff; }

.content-modal-wrap {
  position: relative;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 80px 0; }

.content-modal-close {
  padding: 5px;
  font-size: 0;
  line-height: 1;
  background-color: transparent;
  border: none; }
  .content-modal-close:hover {
    cursor: pointer; }
    .content-modal-close:hover svg {
      fill: #ff0b00; }

.content-modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 50px; }
  .content-modal-header .big-title {
    margin: 0; }

@media (max-width: 480px) {
  .modal-wrap {
    top: 68px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    background-color: #311d2d; }
  .content-modal-wrap {
    padding: 40px 0; }
  .content-modal-header {
    margin-bottom: 20px; }
  .content-modal-close {
    width: 30px;
    height: 30px; }
    .content-modal-close svg {
      width: 20px;
      height: 20px; } }

.subscribe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin: 40px 0 60px;
  padding: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-image: -webkit-gradient(linear, left top, right top, from(#f45c43), to(#ff0b00));
  background-image: linear-gradient(to right, #f45c43, #ff0b00);
  -webkit-box-shadow: 0px 10px 20px 0 rgba(47, 22, 15, 0.1);
  box-shadow: 0px 10px 20px 0 rgba(47, 22, 15, 0.1);
  border-radius: 10px; }
  .subscribe__text {
    max-width: 32%;
    margin: 0;
    margin-right: 10px;
    font-size: 1.14286em;
    color: #faf6f5; }

.subscribe-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-left: 10px; }
  .subscribe-form__input {
    margin-right: 20px;
    width: auto;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1; }

.sp-form-outer {
  margin: 40px 0 40px; }

.sp-form {
  width: 100% !important;
  padding: 20px 30px !important;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
  background-image: -webkit-gradient(linear, left top, right top, from(#f45c43), to(#ff0b00)) !important;
  background-image: linear-gradient(to right, #f45c43, #ff0b00) !important;
  -webkit-box-shadow: 0px 10px 20px 0 rgba(47, 22, 15, 0.1) !important;
  box-shadow: 0px 10px 20px 0 rgba(47, 22, 15, 0.1) !important;
  border-radius: 10px !important; }
  .sp-form .sp-form-fields-wrapper {
    width: 100% !important; }
  .sp-form .sp-button {
    height: auto !important;
    padding: 12px 40px !important;
    font-family: "SF UI Text", "Verdana", sans-serif !important;
    font-size: 1em !important;
    font-weight: bold !important;
    line-height: 1 !important;
    color: #faf6f5 !important;
    background-color: transparent !important;
    text-transform: uppercase !important;
    border: 2px solid #faf6f5 !important;
    border-radius: 4px !important; }
    .sp-form .sp-button:hover {
      position: initial !important;
      cursor: pointer !important;
      color: #5d4658 !important;
      background-color: #faf6f5 !important;
      border-color: transparent;
      opacity: 1 !important; }
  .sp-form .sp-field {
    min-height: auto !important; }
  .sp-form .sp-field span,
  .sp-form .sp-field p {
    font-family: "SF UI Text", "Verdana", sans-serif !important;
    font-size: 16px !important;
    line-height: 1.2 !important; }
  .sp-form .sp-form-control {
    width: 100% !important;
    height: auto !important;
    padding: 13px 16px !important;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
    border-radius: 4px !important;
    background-color: #faf6f5 !important;
    border: 1px solid #c2b1bf !important;
    font-size: 14px !important;
    font-family: "SF UI Text", "Verdana", sans-serif !important;
    line-height: 1 !important; }
    .sp-form .sp-form-control:focus {
      border-color: #311d2d !important;
      outline: none !important; }
    .sp-form .sp-form-control::-webkit-input-placeholder {
      color: #c2b1bf !important;
      font-size: 1em !important;
      font-family: "SF UI Text", "Verdana", sans-serif !important; }
    .sp-form .sp-form-control:-ms-input-placeholder {
      color: #c2b1bf !important;
      font-size: 1em !important;
      font-family: "SF UI Text", "Verdana", sans-serif !important; }
    .sp-form .sp-form-control::-ms-input-placeholder {
      color: #c2b1bf !important;
      font-size: 1em !important;
      font-family: "SF UI Text", "Verdana", sans-serif !important; }
    .sp-form .sp-form-control::placeholder {
      color: #c2b1bf !important;
      font-size: 1em !important;
      font-family: "SF UI Text", "Verdana", sans-serif !important; }
  .sp-form .sp-message.sp-message-success > p {
    color: #faf6f5 !important; }
    .sp-form .sp-message.sp-message-success > p:first-child {
      color: #faf6f5 !important; }
  .sp-form .sp-link {
    color: #faf6f5 !important;
    background-color: transparent !important; }
    .sp-form .sp-link:hover {
      color: #faf6f5 !important; }
      .sp-form .sp-link:hover span {
        color: #faf6f5 !important; }
    .sp-form .sp-link > span {
      color: #faf6f5 !important; }

@media (max-width: 800px) {
  .subscribe {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .subscribe__text {
      max-width: none;
      margin-right: 0;
      margin-bottom: 20px; }
  .subscribe-form {
    padding-left: 0; }
  .sp-form .sp-field:first-child {
    width: 100% !important;
    -webkit-box-flex: 1 !important;
    -ms-flex: auto !important;
    flex: auto !important; }
  .sp-form .sp-field .sp-button-container {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 0 auto !important;
    flex: 1 0 auto !important; } }

@media (max-width: 480px) {
  .subscribe {
    padding: 20px; }
  .subscribe-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    .subscribe-form__input {
      margin-right: 0;
      margin-bottom: 20px; }
  .sp-form {
    padding: 10px !important; }
    .sp-form .sp-field {
      -webkit-box-flex: 1 !important;
      -ms-flex: 1 0 auto !important;
      flex: 1 0 auto !important; }
      .sp-form .sp-field p, .sp-form .sp-field span {
        font-size: 14px !important; }
    .sp-form .sp-button {
      width: 100% !important; } }

.members {
  margin: 60px 0; }
  .members__wrapper {
    position: relative;
    width: 100%;
    padding: 30px 80px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #faf6f5;
    border-radius: 10px;
    -webkit-box-shadow: 0px 10px 20px 0 rgba(47, 22, 15, 0.1);
    box-shadow: 0px 10px 20px 0 rgba(47, 22, 15, 0.1); }
  .members .swiper-container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .members .swiper-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 8px 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  .members__prev {
    left: 30px; }
  .members__next {
    right: 30px; }
  .members__prev, .members__next {
    background-image: none; }
    .members__prev:hover svg, .members__next:hover svg {
      fill: #ff0b00; }

.member {
  width: 100px; }

.content-slider .swiper-button-next,
.content-slider .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: #faf6f5;
  background-size: 14px 14px;
  border-radius: 50%; }

@media (max-width: 480px) {
  .members {
    margin: 40px 0; }
    .members__wrapper {
      padding: 0 30px;
      background-color: transparent;
      -webkit-box-shadow: none;
      box-shadow: none; }
    .members__prev {
      left: 0; }
    .members__next {
      right: 0; } }

.members-search-form input[type="search"] {
  margin-right: 20px;
  -webkit-appearance: none; }

.members-search-form .form-row {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap; }

.members-search-form-wrap {
  margin-bottom: 20px; }

.members-map {
  margin-bottom: 40px; }
  .members-map__wrap {
    position: relative;
    height: 480px; }

.pin {
  width: 35px;
  height: 48px;
  margin-left: -18px;
  margin-top: -48px;
  display: inline-block;
  background: url("../../../../img/pin.png") center center no-repeat; }

.balloon {
  position: absolute;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 160px;
  height: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: -80px;
  padding: 16px;
  border-radius: 8px;
  background-color: #faf6f5; }
  .balloon__city {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5em; }
  .balloon__close {
    background-color: transparent;
    border: none; }

.members-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.member-card {
  width: calc(50% - 10px);
  margin: 0 0 30px; }
  .member-card__wrapper {
    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;
    height: 140px;
    padding: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #faf6f5; }
  .member-card__photo {
    width: auto;
    max-width: 100%;
    max-height: 100px; }
  .member-card__tags {
    margin-bottom: 10px; }
  .member-card__title {
    margin-bottom: 16px; }
  .member-card .card-contact-item__value {
    color: #311d2d; }

@media (max-width: 600px) {
  .member-card {
    width: 100%;
    margin-bottom: 20px; } }

@media (max-width: 320px) {
  .members-search-form .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: initial;
    -ms-flex-align: initial;
    align-items: initial; }
  .members-search-form input[type="search"] {
    margin-right: 0;
    margin-bottom: 10px; } }

.member-preview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 40px;
  padding: 65px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 16px;
  background-color: #faf6f5;
  -webkit-box-shadow: 0px 15px 30px 0 rgba(47, 22, 15, 0.15);
  box-shadow: 0px 15px 30px 0 rgba(47, 22, 15, 0.15); }
  .member-preview__column {
    max-width: 47.89474%; }
  .member-preview__photo {
    max-width: 47.89474%; }
  .member-preview__logo {
    width: 100%;
    height: auto;
    max-width: 400px;
    max-height: 200px; }
  .member-preview__tags {
    margin-bottom: 20px; }
  .member-preview__title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 2.14286em;
    font-family: "SF UI Display", "Verdana", sans-serif;
    font-weight: bold;
    color: #311d2d; }
  .member-preview__descr {
    margin: 0;
    font-size: 1.28571em;
    letter-spacing: -0.3px; }

.member-contacts {
  margin-bottom: 40px; }
  .member-contacts__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .member-contacts__column {
    max-width: 530px;
    width: 50%; }

.member-map {
  position: relative;
  height: 420px; }

.member-contacts-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: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 26px; }
  .member-contacts-item:last-child {
    margin-bottom: 0; }
  .member-contacts-item__name {
    margin-bottom: 6px;
    font-weight: bold;
    color: #ff0b00; }
  .member-contacts-item__value {
    font-size: 1.28571em;
    letter-spacing: -0.4px;
    color: #311d2d;
    text-decoration: none; }

.about-member {
  margin-bottom: 40px; }

.about-member-content p, .about-member-content div {
  margin: 1em 0;
  font-size: 1.28571em;
  line-height: 1.5;
  letter-spacing: -0.3px; }

.about-member-content img {
  max-width: 100%;
  margin: 20px 0; }

.about-member-content figure {
  margin: 20px 0; }
  .about-member-content figure img {
    width: 100%;
    margin: 0; }

.about-member-content figcaption {
  padding-top: 10px;
  text-align: right;
  font-style: italic;
  font-size: 1.14286em; }

.about-member-content ul {
  margin: 20px 0;
  padding-left: 20px; }
  .about-member-content ul li::before {
    content: '—';
    margin-right: 10px; }

.about-member-content ol {
  margin: 20px 0;
  padding-left: 40px; }

.about-member-content li {
  font-size: 1.28571em;
  line-height: 1.5;
  letter-spacing: -0.3px; }

.member-news__title {
  margin-bottom: 0; }

.member-news__header {
  padding: 0 10px; }

.member-news__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.member-news .medium-news-item {
  width: 340px;
  min-width: 300px; }

@media (max-width: 800px) {
  .member-news .medium-news-item {
    width: calc(50% - 20px); }
  .member-contacts__wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .member-contacts__column {
    width: 100%;
    max-width: none;
    margin-bottom: 20px; }
    .member-contacts__column:last-child {
      margin-bottom: 0; } }

@media (max-width: 480px) {
  .member-preview {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px; }
    .member-preview__photo {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      max-width: none;
      margin-bottom: 20px; }
    .member-preview__column {
      max-width: none;
      width: 100%; }
    .member-preview__title {
      font-size: 1.42857em; }
    .member-preview__descr {
      font-size: 1.14286em; }
    .member-preview__logo {
      max-width: 300px;
      height: auto;
      margin: 0 auto; }
  .member-contacts-item {
    margin-bottom: 14px; }
  .member-news .medium-news-item {
    width: 100%; }
  .about-member-content p,
  .about-member-content li {
    font-size: 1.14286em; }
  .about-member-content figcaption {
    font-size: 1em; } }

.projects__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }

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

.grid-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(50% - 10px);
  padding: 40px 25px;
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #faf6f5;
  border-radius: 16px;
  -webkit-box-shadow: 0px 15px 30px 0 rgba(47, 22, 15, 0.15);
  box-shadow: 0px 15px 30px 0 rgba(47, 22, 15, 0.15); }
  .grid-item__text-wrap {
    max-width: 240px; }
  .grid-item__text-wrap_centered {
    text-align: center; }
  .grid-item__img {
    max-height: 140px;
    max-width: 200px; }
  .grid-item__img-wrap {
    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;
    width: 200px;
    margin-right: 20px; }
  .grid-item__title {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 0.5em;
    margin-top: 0;
    font-family: "SF UI Display", "Verdana", sans-serif;
    font-size: 2.14286em;
    font-weight: bold;
    color: #311d2d;
    text-decoration: none; }
    .grid-item__title:hover {
      color: #ff0b00; }
  .grid-item__descr {
    max-width: 100%;
    margin: 0;
    font-size: 1.28571em;
    letter-spacing: -0.3px; }
  .grid-item__date {
    margin-right: 30px; }
  .grid-item__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin-top: auto; }
  .grid-item__cards-qty {
    width: 100%;
    margin-bottom: 0; }
  .grid-item_vertical {
    -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;
    padding: 60px; }
    .grid-item_vertical .grid-item__img-wrap {
      margin-right: 0;
      margin-bottom: 45px; }
    .grid-item_vertical .grid-item__img {
      max-height: 200px; }
    .grid-item_vertical .grid-item__text-wrap {
      max-width: 280px; }
  .grid-item_red-border {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    border-left: 16px solid #ff0b00; }
    .grid-item_red-border .grid-item__text-wrap {
      max-width: none; }
    .grid-item_red-border .grid-item__title {
      margin-bottom: 12px;
      font-size: 1.28571em; }
    .grid-item_red-border .grid-item__descr {
      margin-bottom: 24px; }

.card-item {
  position: relative;
  overflow: hidden;
  width: 350px;
  min-height: 350px;
  height: 350px;
  max-height: 400px;
  margin: 0 15px 15px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 16px;
  -webkit-box-shadow: 0px 15px 30px 0 rgba(47, 22, 15, 0.15);
  box-shadow: 0px 15px 30px 0 rgba(47, 22, 15, 0.15);
  text-decoration: none;
  color: #faf6f5; }
  .card-item:hover {
    color: #faf6f5; }
    .card-item:hover .card-item__img {
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
      -webkit-transition: -webkit-transform 1s ease-in-out;
      transition: -webkit-transform 1s ease-in-out;
      transition: transform 1s ease-in-out;
      transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out; }
  .card-item:nth-child(3n) {
    margin-right: 0; }
  .card-item__img-wrap {
    display: block;
    height: 100%; }
    .card-item__img-wrap::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      top: 0;
      z-index: 2;
      background-color: rgba(49, 29, 45, 0.6);
      border-radius: 16px; }
  .card-item__link {
    text-decoration: none; }
    .card-item__link:focus {
      outline: none; }
  .card-item__text-wrap {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 3; }
  .card-item__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 16px;
    -webkit-transition: -webkit-transform 1s ease-in-out;
    transition: -webkit-transform 1s ease-in-out;
    transition: transform 1s ease-in-out;
    transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out; }
  .card-item__title {
    margin-top: 0;
    margin-bottom: 0.5em;
    font-family: "SF UI Display", "Verdana", sans-serif;
    font-size: 1.42857em;
    font-weight: bold;
    color: #faf6f5; }
  .card-item__descr {
    margin: 0 0 24px;
    font-size: 1.14286em;
    letter-spacing: -0.3px;
    color: #faf6f5; }
  .card-item__date {
    margin-right: 30px; }
  .card-item__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .card-item__cards-qty {
    width: 100%;
    margin: 0;
    font-size: 0.85714em; }

.card-item_big {
  width: calc(50% - 10px);
  height: 465px;
  max-height: 465px;
  margin: 0 0 20px; }
  .card-item_big .card-item__title {
    font-size: 2.14286em; }
  .card-item_big .card-item__descr {
    font-size: 1.28571em; }
  .card-item_big .card-item__text-wrap {
    left: 40px;
    right: 40px;
    bottom: 40px; }

.grid-item-big {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 16px;
  -webkit-box-shadow: 0px 15px 30px 0 rgba(47, 22, 15, 0.15);
  box-shadow: 0px 15px 30px 0 rgba(47, 22, 15, 0.15); }
  .grid-item-big__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(50% + 10px);
    padding: 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #faf6f5; }
  .grid-item-big__img-wrap {
    overflow: hidden;
    width: calc(50% - 10px); }
  .grid-item-big__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: -webkit-transform 1s ease-in-out;
    transition: -webkit-transform 1s ease-in-out;
    transition: transform 1s ease-in-out;
    transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out; }
    .grid-item-big__img:hover {
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
      -webkit-transition: -webkit-transform 1s ease-in-out;
      transition: -webkit-transform 1s ease-in-out;
      transition: transform 1s ease-in-out;
      transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out; }
  .grid-item-big__title {
    margin-top: 0;
    margin-bottom: 0.5em;
    font-size: 2.14286em;
    font-family: "SF UI Display", "Verdana", sans-serif;
    font-weight: bold;
    color: #311d2d;
    text-decoration: none; }
    .grid-item-big__title:hover {
      color: #ff0b00; }
  .grid-item-big__descr {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 1.28571em;
    letter-spacing: -0.3px; }
  .grid-item-big__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .grid-item-big__date {
    margin-right: 30px; }

@media (max-width: 1024px) {
  .cards__wrapper {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .grid-item__img {
    max-width: 140px; }
  .grid-item__title {
    font-size: 1.42857em; }
  .grid-item__descr {
    font-size: 1.14286em; }
  .grid-item_vertical {
    padding: 40px; }
    .grid-item_vertical .grid-item__img {
      max-height: 140px; }
  .card-item {
    width: calc(50% - 10px);
    margin: 0 0 20px; }
    .card-item__title {
      font-size: 1.42857em; }
    .card-item__descr {
      font-size: 1.14286em; }
  .card-item_big .card-item__title {
    font-size: 1.42857em; }
  .card-item_big .card-item__descr {
    font-size: 1.14286em; }
  .grid-item-big__title {
    font-size: 1.42857em; }
  .grid-item-big__descr {
    font-size: 1.14286em; } }

@media (max-width: 768px) {
  .grid-item {
    width: 100%; }
    .grid-item_vertical {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      padding: 40px 25px; }
      .grid-item_vertical .grid-item__img-wrap {
        width: 200px;
        margin-right: 20px;
        margin-bottom: 0; }
      .grid-item_vertical .grid-item__text-wrap_centered {
        text-align: left; }
  .card-item {
    width: 100%;
    height: 350px; } }

@media (max-width: 480px) {
  .grid-item-big {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    .grid-item-big__img-wrap {
      width: 100%; }
    .grid-item-big__wrap {
      width: 100%; }
  .grid-item__text-wrap {
    width: 50%; } }

@media (max-width: 375px) {
  .project-item {
    height: 400px; }
    .project-item__text-wrap {
      left: 30px;
      right: 30px;
      bottom: 30px; }
  .grid-item-big__wrap {
    padding: 30px; }
  .grid-item {
    padding: 30px; }
    .grid-item__img-wrap {
      width: 100px; }
    .grid-item__img {
      max-width: 80px; }
    .grid-item_vertical .grid-item__img-wrap {
      width: 100px; }
    .grid-item_red-border {
      padding-left: 26px;
      border-left: 4px solid #ff0b00; } }

.news__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .news__wrapper .news-item {
    max-width: 520px;
	min-width: 50%}

.page-numbers {
  padding: 5px; }

@media (max-width: 480px) {
  .news__wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-count: 1;
    column-count: 1;
    -webkit-column-gap: 0;
    column-gap: 0; }
  .news-column {
    width: 100%;
    max-width: none; } }

.content {
  width: 59.25926%;
  min-width: 500px;
  max-width: 100%;
  font-size: 1.14286rem;
  line-height: 1.5;
  color: #311d2d; }
  .content_full-size {
    width: 100%; }
  .content h2 {
    margin: 0.6em 0 0.3em; }
  .content h2 + p {
    margin-top: 0; }
  .content div {
    font-size: 1.14286rem;
    line-height: 1.5;
    color: #311d2d; }
  .content p {
    margin: 1em 0;
    font-size: 1.14286rem;
    line-height: 1.5;
    color: #311d2d; }
  .content li {
    font-size: 1.14286rem;
    line-height: 1.5;
    color: #311d2d; }
  .content a {
    font-size: 1.14286rem; }
  .content ol {
    padding-left: 20px; }
  .content ul {
    margin: 1em 0; }
    .content ul li::before {
      content: '–';
      margin-right: 6px; }
  .content li {
    margin-bottom: 1em; }
    .content li:last-child {
      margin-bottom: 0; }
  .content blockquote {
    margin: 1em 0 2em;
    padding-left: 22px;
    border-left: 2px solid #ff0b00;
    font-style: italic; }
  .content h1:first-child,
  .content h2:first-child,
  .content h3:first-child {
    margin-top: 0; }
  .content figure {
    margin: 20px 0; }
    .content figure img {
      width: 100%;
      margin: 0; }
  .content figcaption {
    padding-top: 10px;
    text-align: right;
    font-style: italic;
    font-size: 1.14286em; }
  .content img {
    max-width: 100%; }
  .content .content-card {
    margin: 34px 0;
    padding: 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #faf6f5;
    -webkit-box-shadow: 0px 10px 20px 0 rgba(47, 22, 15, 0.1);
    box-shadow: 0px 10px 20px 0 rgba(47, 22, 15, 0.1); }
    .content .content-card__title {
      margin-top: 0;
      margin-bottom: 10px;
      font-family: "SF UI Display", "Verdana", sans-serif;
      font-size: 2.14286em;
      font-weight: bold;
      line-height: 1; }
  .content .addtoany_list a > span {
    width: 32px !important;
    height: 32px !important;
    line-height: 32px !important; }

.content-modal .content p,
.content-modal .content li,
.content-modal .content a {
  font-size: 1.57143rem; }

@media (max-width: 800px) {
  .content {
    width: 100%;
    min-width: auto; }
  .about-intro {
    margin-bottom: 20px; }
    .about-intro__title {
      font-size: 2.28571rem; }
    .about-intro__text {
      font-size: 1.14286rem; }
  .content-modal .content p,
  .content-modal .content li,
  .content-modal .content a {
    font-size: 1.28571rem; } }

@media (max-width: 480px) {
  .content a,
  .content li {
    font-size: 1rem; } }

.initiatives__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.contacts {
  margin-bottom: 40px; }
  .contacts__title {
    padding: 0 10px; }
  .contacts__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }

.contact-card {
  width: calc(33% - 20px);
  min-width: 300px;
  margin-bottom: 20px; }
  .contact-card__title {
    font-size: 1.28571em; }
  .contact-card__photo {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover; }
  .contact-card__position {
    width: 100%;
    margin-top: 0;
    min-height: calc(2em + 8px);
    margin-bottom: 16px; }

.card-contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 12px; }
  .card-contact-item:last-child {
    margin-bottom: 0; }
  .card-contact-item__name {
    width: 80px;
    padding-right: 10px;
    margin-right: 10px;
    font-weight: bold;
    color: #ff0b00; }
  .card-contact-item__value {
    width: calc(100% - 100px);
    font-size: 1.14286em;
    color: #5d4658;
    text-decoration: none; }
    .card-contact-item__value.link_dark {
      text-decoration: underline;
      border-bottom: none; }
      .card-contact-item__value.link_dark:hover {
        text-decoration: none; }

.questions {
  padding: 0 10px; }
  .questions__wrapper {
    padding: 30px 40px 56px;
    background-color: #faf6f5;
    border-radius: 16px;
    -webkit-box-shadow: 0px 15px 30px 0 rgba(47, 22, 15, 0.15);
    box-shadow: 0px 15px 30px 0 rgba(47, 22, 15, 0.15); }
    .questions__wrapper p {
      margin: 0; }

.question-form__disclaimer {
  margin: 0; }

@media (max-width: 800px) {
  .contact-card {
    width: calc(50% - 20px); } }

@media (max-width: 680px) {
  .contacts__wrapper {
    -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; }
  .contact-card {
    width: 340px;
    max-width: 100%; } }

@media (max-width: 480px) {
  .questions__wrapper {
    padding: 20px;
    border-radius: 8px; } }

.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em; }

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em; }

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto; }

.hidden {
  display: none; }
