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

body {
  padding: 0;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
  outline: none;
  cursor: pointer;
}

ul {
  list-style-type: none;
  padding: 0;
}

button {
  background-color: #fff;
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Roboto", sans-serif;
  color: #fff;
  overflow-x: hidden;
}

input,
textarea {
  outline-color: #9a7149;
}

.container {
  margin: 0 auto;
  max-width: 1140px;
  height: 100%;
}

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

.menu-toggle {
  display: none;
  height: 17px;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.menu-toggle__part {
  width: 22px;
  height: 3px;
  background-color: #9a7149;
  border-radius: 2px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform 0.3s ease-in;
  transition: -webkit-transform 0.3s ease-in;
  transition: transform 0.3s ease-in;
  transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
}

@media (max-width: 700px) {
  .menu-toggle {
    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: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}

.menu-toggle--close .menu-toggle__part:nth-child(2) {
  opacity: 0;
}

.menu-toggle--close .menu-toggle__part:nth-child(1) {
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
}

.menu-toggle--close .menu-toggle__part:nth-child(3) {
  -webkit-transform: rotate(-40deg);
  transform: rotate(-40deg);
}

.mobile-nav {
  position: absolute;
  top: 0;
  right: -2000px;
  height: 100vh;
  width: 65%;
  padding: 55px 40px 29px 50px;
  text-align: left;
  background: #000;
  border-left: 1px solid #9a7149;
  z-index: 2;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (max-width: 380px) {
  .mobile-nav {
    width: 75%;
    padding-left: 35px;
  }
}

.mobile-nav--show {
  right: 0;
}

.mobile-nav__item {
  margin-bottom: 33px;
}

.mobile-nav__link {
  color: #9a7149;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.mobile-nav__link:hover {
  color: #fff;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 0 !important;
  background: transparent !important;
  color: #fff !important;
  margin-right: 0 !important;
}

.ui-button {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  height: 100% !important;
  padding: 3px 5px !important;
}

@media (max-width: 500px) {
  .ui-button {
    padding: 3px 5px 1px !important;
  }
}

.ui-selectmenu-text {
  margin: 0 !important;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

@media (max-width: 500px) {
  .ui-selectmenu-text {
    font-size: 12px;
  }
}

.ui-selectmenu-icon {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

@media (max-width: 500px) {
  .ui-selectmenu-icon {
    height: 15px;
  }
}

.ui-selectmenu-button-closed .ui-selectmenu-icon {
  background-image: url("/images/arrow.png") !important;
}

@media (max-width: 800px) {
  .ui-selectmenu-button-closed .ui-selectmenu-icon {
    background-size: 14px;
  }
}

@media (max-width: 500px) {
  .ui-selectmenu-button-closed .ui-selectmenu-icon {
    background-size: 12px;
  }
}

.ui-selectmenu-button-open .ui-selectmenu-icon {
  background-image: url("/images/arrow.png") !important;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media (max-width: 800px) {
  .ui-selectmenu-button-open .ui-selectmenu-icon {
    background-size: 14px;
  }
}

@media (max-width: 500px) {
  .ui-selectmenu-button-open .ui-selectmenu-icon {
    background-size: 12px;
  }
}

.ui-selectmenu-button.ui-button {
  max-height: 60px;
  width: 80px !important;
  outline: none !important;
}

@media (max-width: 1100px) {
  .ui-selectmenu-button.ui-button {
    max-height: 50px !important;
  }
}

.ui-icon {
  width: 24px;
  height: 16px;
}

.ui-button .ui-icon {
  background-image: url("/images/arrow.png") !important;
}

.ui-icon-triangle-1-s {
  background-position: center !important;
}

.ui-menu .ui-menu-item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px !important;
}

@media (max-width: 500px) {
  .ui-menu .ui-menu-item-wrapper {
    font-size: 14px;
  }
}

.ui-menu-item-wrapper.ui-state-active {
  background: #9a7149 !important;
  border: 0 !important;
  margin: 0 !important;
}

.ui-menu {
  min-width: 101% !important;
}

.ui-widget-content {
  border: none !important;
  background: #000 !important;
  color: #fff !important;
}

.ui-selectmenu-menu .ui-menu {
  padding-bottom: 0 !important;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn-translate-top {
  from {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeIn-translate-top {
  from {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeIn-translate-left {
  from {
    opacity: 0;
    -webkit-transform: translateX(-40px);
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeIn-translate-left {
  from {
    opacity: 0;
    -webkit-transform: translateX(-40px);
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes fadeIn-translate-right {
  from {
    opacity: 0;
    -webkit-transform: translateX(40px);
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeIn-translate-right {
  from {
    opacity: 0;
    -webkit-transform: translateX(40px);
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes fadeIn-translate-bottom {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeIn-translate-bottom {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.header {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

@media (max-width: 600px) {
  .header {
    background: #020202;
  }
}

.header__bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  min-width: 100%;
  z-index: -1;
}

.header__main-background {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-filter: contrast(200%);
  filter: contrast(200%);
}

@media (max-width: 600px) {
  .header__main-background {
    display: none;
  }
}

.header__overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.header__overlay--orange {
  background: -webkit-gradient(linear, left top, right top, color-stop(60%, rgba(255, 255, 255, 0)), color-stop(61%, rgba(154, 113, 73, 0.6)), to(rgba(154, 113, 73, 0.6)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 60%, rgba(154, 113, 73, 0.6) 61%, rgba(154, 113, 73, 0.6) 100%);
}

@media (max-width: 2150px) {
  .header__overlay--orange {
    background: -webkit-gradient(linear, left top, right top, color-stop(60.5%, rgba(255, 255, 255, 0)), color-stop(62.5%, rgba(154, 113, 73, 0.6)), to(rgba(154, 113, 73, 0.6)));
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 60.5%, rgba(154, 113, 73, 0.6) 62.5%, rgba(154, 113, 73, 0.6) 100%);
  }
}

@media (max-width: 1910px) {
  .header__overlay--orange {
    background: -webkit-gradient(linear, left top, right top, color-stop(62%, rgba(255, 255, 255, 0)), color-stop(64%, rgba(154, 113, 73, 0.6)), to(rgba(154, 113, 73, 0.6)));
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 62%, rgba(154, 113, 73, 0.6) 64%, rgba(154, 113, 73, 0.6) 100%);
  }
}

@media (max-width: 1300px) {
  .header__overlay--orange {
    background: -webkit-gradient(linear, left top, right top, color-stop(68%, rgba(255, 255, 255, 0)), color-stop(70%, rgba(154, 113, 73, 0.6)), to(rgba(154, 113, 73, 0.6)));
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 68%, rgba(154, 113, 73, 0.6) 70%, rgba(154, 113, 73, 0.6) 100%);
  }
}

@media (max-width: 1100px) {
  .header__overlay--orange {
    background: none;
  }
}

.header__overlay--black {
  background: -webkit-gradient(linear, left top, right top, color-stop(60%, rgba(2, 2, 2, 0.9)), color-stop(61%, rgba(2, 2, 2, 0.8)), to(rgba(2, 2, 2, 0.8)));
  background: linear-gradient(90deg, rgba(2, 2, 2, 0.9) 60%, rgba(2, 2, 2, 0.8) 61%, rgba(2, 2, 2, 0.8) 100%);
}

@media (max-width: 2150px) {
  .header__overlay--black {
    background: -webkit-gradient(linear, left top, right top, color-stop(60.5%, rgba(2, 2, 2, 0.9)), color-stop(62.5%, rgba(2, 2, 2, 0.8)), to(rgba(2, 2, 2, 0.8)));
    background: linear-gradient(90deg, rgba(2, 2, 2, 0.9) 60.5%, rgba(2, 2, 2, 0.8) 62.5%, rgba(2, 2, 2, 0.8) 100%);
  }
}

@media (max-width: 1910px) {
  .header__overlay--black {
    background: -webkit-gradient(linear, left top, right top, color-stop(62%, rgba(2, 2, 2, 0.9)), color-stop(64%, rgba(2, 2, 2, 0.8)), to(rgba(2, 2, 2, 0.8)));
    background: linear-gradient(90deg, rgba(2, 2, 2, 0.9) 62%, rgba(2, 2, 2, 0.8) 64%, rgba(2, 2, 2, 0.8) 100%);
  }
}

@media (max-width: 1300px) {
  .header__overlay--black {
    background: -webkit-gradient(linear, left top, right top, color-stop(68%, rgba(2, 2, 2, 0.9)), color-stop(70%, rgba(2, 2, 2, 0.8)), to(rgba(2, 2, 2, 0.8)));
    background: linear-gradient(90deg, rgba(2, 2, 2, 0.9) 68%, rgba(2, 2, 2, 0.8) 70%, rgba(2, 2, 2, 0.8) 100%);
  }
}

@media (max-width: 1100px) {
  .header__overlay--black {
    background: rgba(2, 2, 2, 0.8);
  }
}

.header__figure {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (max-width: 600px) {
  .header__figure {
    display: none;
  }
}

.header__top-section {
  position: absolute;
  top: 0;
  left: 0;
  height: 110px;
  width: 100%;
  z-index: -1;
}

.header__top-section--ru,
.header__top-section--en {
  background: -webkit-gradient(linear, left top, right top, color-stop(59%, #020202), color-stop(59%, #9a7149), to(#9a7149));
  background: linear-gradient(90deg, #020202 59%, #9a7149 59%, #9a7149 100%);
}

.header__top-section--de {
  background: -webkit-gradient(linear, left top, right top, color-stop(60.5%, #020202), color-stop(60.5%, #9a7149), to(#9a7149));
  background: linear-gradient(90deg, #020202 60.5%, #9a7149 60.5%, #9a7149 100%);
}

@media (max-width: 2200px) {
  .header__top-section--de {
    background: -webkit-gradient(linear, left top, right top, color-stop(63%, #020202), color-stop(63%, #9a7149), to(#9a7149));
    background: linear-gradient(90deg, #020202 63%, #9a7149 63%, #9a7149 100%);
  }
}

@media (max-width: 2150px) {
  .header__top-section--ru,
  .header__top-section--en {
    background: -webkit-gradient(linear, left top, right top, color-stop(61.5%, #020202), color-stop(61.5%, #9a7149), to(#9a7149));
    background: linear-gradient(90deg, #020202 61.5%, #9a7149 61.5%, #9a7149 100%);
  }
}

@media (max-width: 1950px) {
  .header__top-section--de {
    background: -webkit-gradient(linear, left top, right top, color-stop(63.9%, #020202), color-stop(63.9%, #9a7149), to(#9a7149));
    background: linear-gradient(90deg, #020202 63.9%, #9a7149 63.9%, #9a7149 100%);
  }
}

@media (max-width: 1910px) {
  .header__top-section--ru,
  .header__top-section--en {
    background: -webkit-gradient(linear, left top, right top, color-stop(63%, #020202), color-stop(63%, #9a7149), to(#9a7149));
    background: linear-gradient(90deg, #020202 63%, #9a7149 63%, #9a7149 100%);
  }
}

@media (max-width: 1850px) {
  .header__top-section--de {
    background: -webkit-gradient(linear, left top, right top, color-stop(65%, #020202), color-stop(65%, #9a7149), to(#9a7149));
    background: linear-gradient(90deg, #020202 65%, #9a7149 65%, #9a7149 100%);
  }
}

@media (max-width: 1600px) {
  .header__top-section--de {
    background: -webkit-gradient(linear, left top, right top, color-stop(67.5%, #020202), color-stop(67.5%, #9a7149), to(#9a7149));
    background: linear-gradient(90deg, #020202 67.5%, #9a7149 67.5%, #9a7149 100%);
  }
}

@media (max-width: 1350px) {
  .header__top-section--de {
    background: -webkit-gradient(linear, left top, right top, color-stop(71%, #020202), color-stop(71%, #9a7149), to(#9a7149));
    background: linear-gradient(90deg, #020202 71%, #9a7149 71%, #9a7149 100%);
  }
}

@media (max-width: 1300px) {
  .header__top-section--ru,
  .header__top-section--en {
    background: -webkit-gradient(linear, left top, right top, color-stop(69%, #020202), color-stop(69%, #9a7149), to(#9a7149));
    background: linear-gradient(90deg, #020202 69%, #9a7149 69%, #9a7149 100%);
  }
}

@media (max-width: 1190px) {
  .header__top-section--de {
    background: -webkit-gradient(linear, left top, right top, color-stop(73%, #020202), color-stop(73%, #9a7149), to(#9a7149));
    background: linear-gradient(90deg, #020202 73%, #9a7149 73%, #9a7149 100%);
  }
}

@media (max-width: 1100px) {
  .header__top-section--ru,
  .header__top-section--en,
  .header__top-section--de {
    background: #020202;
    height: 80px;
  }
}

@media (max-width: 370px) {
  .header__top-section {
    height: 50px;
  }
}

@media (max-width: 1100px) {
  .header__wrapper {
    height: calc(100vh - 270px);
  }
}

@media (max-width: 700px) {
  .header__wrapper {
    height: calc(100vh - 210px);
  }
}

@media (max-width: 500px) {
  .header__wrapper {
    height: calc(100vh - 170px);
  }
}

@media (max-width: 400px) {
  .header__wrapper {
    height: calc(100vh - 120px);
  }
}

@media (max-width: 370px) {
  .header__wrapper {
    height: calc(100vh - 80px);
  }
}

.header-nav {
  position: relative;
  height: 110px;
  /* z-index: 1; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

@media (max-width: 1100px) {
  .header-nav {
    height: 80px;
  }
}

@media (max-width: 370px) {
  .header-nav {
    height: 50px;
  }
}

.header-nav__logo-link {
  margin-right: 85px;
}

@media (max-width: 1100px) {
  .header-nav__logo-link {
    margin-right: 0;
  }
}

@media (max-width: 500px) {
  .header-nav__logo-icon {
    width: 130px;
  }
}

@media (max-width: 370px) {
  .header-nav__logo-icon {
    width: 100px;
  }
}

.header-nav__contacts {
  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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  height: 50px;
}

@media (max-width: 1100px) {
  .header-nav__contacts {
    display: none;
  }
}

.header-nav__language-switcher {
  /* visibility: hidden; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  width: 80px;
  margin-left: 32px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.45)), color-stop(25%, rgba(255, 255, 255, 0.3)), color-stop(50%, rgba(255, 255, 255, 0.2)), color-stop(75%, rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.3) 25%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.1) 75%, rgba(255, 255, 255, 0));
  outline: none !important;
  z-index: 1;
}

@media (max-width: 1100px) {
  .header-nav__language-switcher {
    background: none;
    margin-left: 0;
  }
}

@media (max-width: 800px) {
  .header-nav__language-switcher {
    height: 37px;
    width: 60px;
  }
}

@media (max-width: 700px) {
  .header-nav__language-switcher {
    position: absolute;
    right: 10%;
  }
}

@media (max-width: 500px) {
  .header-nav__language-switcher {
    height: 32px;
    width: 45px;
  }
}

@media (max-width: 450px) {
  .header-nav__language-switcher {
    right: 12%;
  }
}

@media (max-width: 400px) {
  .header-nav__language-switcher {
    right: 14%;
  }
}

.header-nav__phone-number {
  font-style: 18px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header-nav__phone-number:hover {
  color: #bea78b;
}

.header-nav__email {
  font-size: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header-nav__email:hover {
  color: #bea78b;
}

@media (max-width: 1100px) {
  .header-nav {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.navigation {
  margin-right: auto;
}

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

@media (max-width: 1100px) {
  .navigation {
    margin-right: 0;
  }
}

@media (max-width: 700px) {
  .navigation {
    display: none;
  }
}

.navigation__item {
  white-space: nowrap;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navigation__item:hover {
  color: #9a7149;
}

.navigation__item:not(:last-child) {
  margin-right: 20px;
}

@media (max-width: 800px) {
  .navigation__item:not(:last-child) {
    margin-right: 8px;
  }
}

.header-content {
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  height: 100%;
  width: 100%;
  margin: 130px 0 70px;
}

@media (max-width: 1100px) {
  .header-content {
    margin: 80px 0;
  }
}

@media (max-width: 700px) {
  .header-content {
    margin: 50px 0;
  }
}

@media (max-width: 500px) {
  .header-content {
    margin-bottom: 20px;
  }
}

@media (max-width: 400px) {
  .header-content {
    margin: 10px 0;
  }
}

.header-content__titles-wrapper {
  padding: 75px;
  margin-right: -800px;
  margin-bottom: 100px;
  border-top: 1px solid #9a7149;
  border-left: 1px solid #9a7149;
  border-bottom: 1px solid #9a7149;
  border-radius: 5px;
}

@media (max-width: 1100px) {
  .header-content__titles-wrapper {
    margin-bottom: 0;
  }
}

@media (max-width: 700px) {
  .header-content__titles-wrapper {
    padding: 20px;
    margin-right: -25px;
  }
}

@media (max-width: 400px) {
  .header-content__titles-wrapper {
    padding: 10px 20px 10px 10px;
  }
}

@media (max-width: 360px) {
  .header-content__titles-wrapper {
    padding: 8px 20px 8px 8px;
  }
}

.header-content__title {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
}

@media (max-width: 700px) {
  .header-content__title {
    font-size: 28px;
  }
}

@media (max-width: 500px) {
  .header-content__title {
    font-size: 25px;
  }
}

@media (max-width: 400px) {
  .header-content__title {
    font-size: 22px;
  }
}

@media (max-width: 360px) {
  .header-content__title {
    font-size: 20px;
  }
}

.header-content__text-wrapper {
  border-radius: 5px;
  margin-bottom: 75px;
}

@media (max-width: 1100px) {
  .header-content__text-wrapper {
    margin-bottom: 0;
  }
}

@media (max-width: 400px) {
  .header-content__text-wrapper {
    margin-bottom: 15px;
  }
}

.header-content__text {
  max-width: 670px;
  font-size: 20px;
  line-height: 145%;
  color: #9a7149;
}

@media (max-width: 700px) {
  .header-content__text {
    font-size: 18px;
  }
}

@media (max-width: 500px) {
  .header-content__text {
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  .header-content__text {
    font-size: 14px;
  }
}

.header-content__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 74px;
  width: 286px;
  background: #9a7149;
  color: #000;
  border-radius: 4px;
  font-size: 22px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header-content__button:hover {
  background: #000;
  color: #9a7149;
  border: 1px solid #9a7149;
}

@media (max-width: 700px) {
  .header-content__button {
    height: 56px;
    width: 220px;
    font-size: 18px;
  }
}

@media (max-width: 500px) {
  .header-content__button {
    height: 40px;
    width: 180px;
    font-size: 16px;
  }
}

.about {
  min-height: 770px;
  background: #020202;
  padding: 150px 0;
}

@media (max-width: 800px) {
  .about {
    padding: 100px 0;
  }
}

@media (max-width: 700px) {
  .about {
    padding: 75px 0;
  }
}

@media (max-width: 600px) {
  .about {
    padding: 50px 0 75px;
  }
}

@media (max-width: 500px) {
  .about {
    padding: 25px 0 50px;
  }
}

@media (max-width: 400px) {
  .about {
    padding: 15px 0 30px;
  }
}

@media (max-width: 520px) {
  .about__wrapper {
    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;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.about__title {
  position: relative;
  margin-bottom: 50px;
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
}

.about__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 1px;
  width: 210px;
  background: #fff;
}

@media (max-width: 520px) {
  .about__title::after {
    display: none;
  }
}

@media (max-width: 520px) {
  .about__title {
    border-bottom: 1px solid #fff;
    margin-bottom: 25px;
  }
}

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

@media (max-width: 1100px) {
  .about__block {
    display: block;
  }
}

@media (max-width: 520px) {
  .about__block {
    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;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.about__inner:first-child {
  min-width: 274px;
  text-align: center;
  margin-right: 97px;
}

@media (max-width: 1100px) {
  .about__inner:first-child {
    display: block;
    margin-bottom: 10px;
    margin-right: 45px;
    float: left;
  }
}

@media (max-width: 700px) {
  .about__inner:first-child {
    margin-right: 28px;
  }
}

@media (max-width: 520px) {
  .about__inner:first-child {
    min-width: 100%;
    margin: 0 0 15px;
  }
}

.about__picture {
  height: 344px;
  max-width: 276px;
  width: 100%;
  background: #9a7149;
  border-radius: 4px;
}

.about__description {
  font-size: 20px;
  line-height: 145%;
  color: #fff;
}
.about__description.about__description__title {
  font-size: 24px;
  margin-bottom: 15px;
  margin-top: -10px;
}
@media (max-width: 700px) {
  .about__description {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .about__description {
    font-size: 16px;
  }
  .about__description.about__description__title{
    margin-top: 0;
    font-size: 20px;
  }
}

@media (max-width: 400px) {
  .about__description {
    font-size: 14px;
  }
  .about__description.about__description__title{
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .about__description:last-child {
    margin-bottom: 15px;
  }
}

.experience {
  position: relative;
  width: 100%;
}

.experience__background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

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

@media (max-width: 600px) {
  .experience__background {
    display: none;
  }
}

.experience__overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(38, 38, 38, 0.9);
}

.experience__border {
  position: absolute;
  bottom: 46px;
  right: 15%;
  height: 100%;
  width: 100%;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-radius: 5px;
}

@media (max-width: 1220px) {
  .experience__border {
    right: 5%;
  }
  .DE-page .header-nav__logo-link{
    margin-right: 30px;
  }
  .DE-page .header-nav__logo-link img{
    max-width: 100%;
  }
}

@media (max-width: 1070px) {
  .experience__border {
    right: 1%;
  }
}

@media (max-width: 1000px) {
  .experience__border {
    display: none;
  }
  .experience__text__title{
    display: none;
  }
  .header-content__titles-wrapper{
    margin-right: -30px;
  }

 
}

.experience__wrapper {
  position: relative;
  padding: 195px 0;
}

@media (max-width: 1200px) {
  .experience__wrapper {
    padding: 100px 0;
  }
}

@media (max-width: 1000px) {
  .experience__wrapper {
    padding: 75px 0;
  }
}

@media (max-width: 800px) {
  .DE-page .header-nav__logo-link{
    margin-right: 10px;
  }
}
@media (max-width: 500px) {
  .experience__wrapper {
    padding: 35px 0;
  }
}

.experience__inner {
  max-width: 970px;
}

.experience__title {
  position: relative;
  margin-bottom: 50px;
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
}

.experience__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 1px;
  width: 210px;
  background: #fff;
}

.experience__text {
  font-size: 20px;
  line-height: 145%;
  color: #9a7149;
}

@media (max-width: 800px) {
  .experience__text {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .experience__text {
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  .experience__text {
    font-size: 14px;
  }
}

.career {
  min-height: 500px;
  position: relative;
  background: #0c0d0f;
}

.career__background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  min-width: 100%;
}

.career__background {
  position: absolute;
}

@media (max-width: 1000px) {
  .career__background {
    display: none;
  }
}

.career__background--figure-1 {
  right: -3px;
  top: 24%;
  fill: rgba(19, 20, 24, 0.8);
}

.career__background--figure-2 {
  left: -3px;
  top: 48%;
  fill: rgba(19, 20, 24, 0.8);
}

@media (max-width: 1000px) {
  .career__ladder {
    display: none;
  }
}

.career__ladder--small {
  display: none;
}

@media (max-width: 1000px) {
  .career__ladder--small {
    display: block;
  }
}

.career__wrapper {
  padding: 153px 0 9px;
}

@media (max-width: 1200px) {
  .career__wrapper {
    padding: 153px 15px 9px;
  }
}

@media (max-width: 1000px) {
  .career__wrapper {
    padding: 75px 15px;
  }
}

.career-top {
  display: grid;
  grid-template-columns: repeat(auto-fill, 6.25%);
  grid-template-rows: 9px;
}

.career-top__cell {
  position: relative;
}

.career-top__cell:nth-child(odd) {
  background: #9a7149;
}

.career-top__cell:nth-child(even) {
  background: #bea78b;
}

.career-top__cell:nth-child(13) {
  position: relative;
}

.career-top__cell:nth-child(13):after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 285px;
  background: -webkit-gradient(linear, left top, right top, from(#bea78b), to(black));
  background: linear-gradient(90deg, #bea78b 0%, black 100%);
  z-index: 2;
}

@media (max-width: 1030px) {
  .career-top__cell:nth-child(13):after {
    width: 250px;
  }
}

.career-top__year {
  position: absolute;
  bottom: -35px;
  left: -35%;
  color: #9a7149;
  font-size: 20px;
  z-index: 1;
}

.career-body {
  display: grid;
  grid-template-columns: repeat(auto-fill, 6.25%);
  grid-template-rows: 1250px;
  overflow: hidden;
}

.career-body__cell {
  position: relative;
}

.career-body__cell:nth-child(odd) {
  background: rgba(19, 20, 24, 0.8);
}

.career-body__cell:nth-child(even) {
  background: #0c0d0f;
}

.career-body__cell:nth-child(14),
.career-body__cell:nth-child(15),
.career-body__cell:nth-child(16) {
  background: transparent;
}

.career-body__job {
  position: absolute;
  z-index: 1;
}

.career-body__progress-bar {
  position: relative;
  left: 0;
  height: 9px;
  background-color: #9a7149;
}

.career-body__title,
.career-body__company,
.career-body__period {
  white-space: nowrap;
  font-size: 20px;
  line-height: 170%;
}

.career-body__cell:nth-child(1) .career-body__job {
  top: 7%;
  left: 4px;
}

/* .career-body__cell:nth-child(1) .career-body__job.career-body__job--en {
  left: 4px
} */

.career-body__cell:nth-child(1) .career-body__progress-bar {
  left: 0;
  width: 65%;
}

@media (max-width: 1025px) {
  .career-body__cell:nth-child(1) .career-body__progress-bar {
    width: 55%;
  }
}

.career-body__cell:nth-child(1) .career-body__progress-bar.career-body__progress-bar--en,
.career-body__cell:nth-child(1) .career-body__progress-bar.career-body__progress-bar--de {
  width: 90%;
}

@media (max-width: 1025px) {
  .career-body__cell:nth-child(1) .career-body__progress-bar.career-body__progress-bar--en,
  .career-body__cell:nth-child(1) .career-body__progress-bar.career-body__progress-bar--de {
    width: 76%;
  }
}

.career-body__cell:nth-child(3) .career-body__job {
  top: 19.5%;
  left: 85%;
}

.career-body__cell:nth-child(3) .career-body__job--director {
  top: 57%;
  left: 30px;
}

.career-body__cell:nth-child(3) .career-body__progress-bar {
  width: 50%;
}

@media (max-width: 1025px) {
  .career-body__cell:nth-child(3) .career-body__progress-bar {
    width: 40%;
  }
}

.career-body__cell:nth-child(3) .career-body__progress-bar.career-body__progress-bar--en.career-body__progress-bar--director,
.career-body__cell:nth-child(3) .career-body__progress-bar.career-body__progress-bar--de.career-body__progress-bar--director {
  width: 181%;
}

@media (max-width: 1025px) {
  .career-body__cell:nth-child(3) .career-body__progress-bar.career-body__progress-bar--en.career-body__progress-bar--director,
  .career-body__cell:nth-child(3) .career-body__progress-bar.career-body__progress-bar--de.career-body__progress-bar--director {
    width: 150%;
  }
}

.career-body__cell:nth-child(3) .career-body__progress-bar.career-body__progress-bar--ru.career-body__progress-bar--director {
  width: 168%;
}

@media (max-width: 1025px) {
  .career-body__cell:nth-child(3) .career-body__progress-bar.career-body__progress-bar--ru.career-body__progress-bar--director {
    width: 139%;
  }
}

.career-body__cell:nth-child(4) .career-body__job {
  top: 32.3%;
  left: 6px;
}

/* .career-body__cell:nth-child(4) .career-body__job.career-body__job--en {
  left: 6px;
} */

.career-body__cell:nth-child(4) .career-body__progress-bar {
  left: 0;
  width: 66%;
}

@media (max-width: 1025px) {
  .career-body__cell:nth-child(4) .career-body__progress-bar {
    width: 54%;
  }
}

.career-body__cell:nth-child(4) .career-body__progress-bar.career-body__progress-bar--en {
  left: 0;
}

.career-body__cell:nth-child(4) .career-body__progress-bar--director {
  width: 108%;
}

.career-body__cell:nth-child(7) .career-body__job {
  top: 45%;
  left: 55%;
}

.career-body__cell:nth-child(7) .career-body__progress-bar {
  width: 7.7%;
}

@media (max-width: 1025px) {
  .career-body__cell:nth-child(7) .career-body__progress-bar {
    width: 7%;
  }
}

.career-body__cell:nth-child(7) .career-body__progress-bar.career-body__progress-bar--de {
  width: 6.5%;
}

@media (max-width: 1025px) {
  .career-body__cell:nth-child(7) .career-body__progress-bar.career-body__progress-bar--de {
    width: 6%;
  }
}

.career-body__cell:nth-child(8) .career-body__job {
  top: 68%;
  left: 8px;
}

.career-body__cell:nth-child(8) .career-body__progress-bar {
  width: 180%;
  background: -webkit-gradient(linear, left top, right top, from(#9a7149), to(rgba(2, 2, 2, 0.95)));
  background: linear-gradient(90deg, #9a7149 0%, rgba(2, 2, 2, 0.95) 100%);
}

.career-body__cell:nth-child(12) .career-body__job {
  top: 81%;
  left: 60px;
}

.career-body__cell:nth-child(12) .career-body__progress-bar {
  width: 60%;
  background: -webkit-gradient(linear, left top, right top, from(#9a7149), to(rgba(2, 2, 2, 0.95)));
  background: linear-gradient(90deg, #9a7149 0%, rgba(2, 2, 2, 0.95) 100%);
}

.career-list {
  list-style-type: disc;
}

.career-list__item {
  color: #9a7149;
}

.career-list__item:not(:last-child) {
  margin-bottom: 20px;
}

.services {
  position: relative;
}

@media (max-width: 600px) {
  .services {
    background: #9a7149;
  }
}

.services__background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.services__background-image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 600px) {
  .services__background-image {
    display: none;
  }
}

.services__overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(154, 113, 73, 0.9);
}

@media (max-width: 600px) {
  .services__overlay {
    display: none;
  }
}

.services__figure {
  position: absolute;
  bottom: 0;
  right: -280px;
  z-index: 1;
}

@media (max-width: 600px) {
  .services__figure {
    display: none;
  }
}

.services__wrapper {
  padding: 110px 0 145px;
}

@media (max-width: 1150px) {
  .services__wrapper {
    padding: 75px 0;
  }
}

@media (max-width: 600px) {
  .services__wrapper {
    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;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 45px 0;
  }
}

.services__title {
  padding: 24px 0 33px 28px;
  position: relative;
  margin-bottom: 50px;
  margin-right: -800px;
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-radius: 5px;
}

.services__title::after {
  content: "";
  position: absolute;
  bottom: 25px;
  left: 28px;
  height: 1px;
  width: 210px;
  background: #fff;
}

@media (max-width: 600px) {
  .services__title::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .services__title {
    margin-right: 0;
    margin-bottom: 8px;
    padding: 0 0 7px;
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: 0;
  }
}

.services__list-item {
  font-size: 20px;
  line-height: 145%;
  color: #fff;
}

@media (max-width: 600px) {
  .services__list-item {
    font-size: 18px;
  }
}

@media (max-width: 400px) {
  .services__list-item {
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  .services__list-item {
    font-size: 14px;
  }
}

.footer {
  position: relative;
  width: 100%;
  padding-top: 100px;
}

@media (max-width: 780px) {
  .footer {
    padding-top: 50px;
  }
}

.footer__background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.footer__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1f1f1f;
}

.footer__bottom-section {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50px;
  width: 100%;
  background: #9a7149;
  z-index: 2;
}

.footer__figure {
  position: absolute;
  bottom: 50px;
  right: 0;
  z-index: 1;
}

@media (max-width: 600px) {
  .footer__figure {
    display: none;
  }
}

.footer__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

@media (max-width: 920px) {
  .footer__wrapper {
    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;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.footer__item {
  height: 610px;
  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;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

@media (max-width: 920px) {
  .footer__item {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-bottom: 80px;
  }
}

.footer__item:first-child {
  width: 500px;
}

@media (max-width: 920px) {
  .footer__item:first-child {
    width: 100%;
    margin-bottom: 20px;
  }
}

.footer__item:nth-child(2) {
  width: 335px;
}

@media (max-width: 920px) {
  .footer__item:nth-child(2) {
    width: 100%;
    min-width: 100%;
  }
}

@media (max-width: 400px) {
  .footer__item:nth-child(2) {
    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;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}

.footer__title {
  margin-bottom: 25px;
  font-size: 16px;
}

.footer__copyrights-wrapper {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50px;
  width: 100%;
}

@media (max-width: 910px) {
  .footer__copyrights-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}

.footer__copyrights {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 50px;
  margin-top: auto;
}

@media (max-width: 910px) {
  .footer__copyrights {
    display: none;
  }
}

.footer__copyrights--small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 500px) {
  .footer__copyrights--small {
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  .footer__copyrights--small {
    font-size: 14px;
  }
}

.footer__copyrights--small:last-child {
  text-align: right;
}

.footer__copyrights-link {
  border-bottom: 1px solid #fff;
}

@media (max-width: 600px) {
  .footer__copyrights-link {
    border-bottom: 0;
  }
}

.footer-form {
  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;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.footer-form__input {
  height: 36px;
  margin-bottom: 19px;
  padding: 0 15px;
  border: 1px solid #fff;
  border-radius: 4px;
  background: #1f1f1f;
  color: #fff;
  font-size: 16px;
}

.footer-form__input::-webkit-input-placeholder {
  color: #707070;
}

.footer-form__input::-moz-placeholder {
  color: #707070;
}

.footer-form__input:-ms-input-placeholder {
  color: #707070;
}

.footer-form__input::-ms-input-placeholder {
  color: #707070;
}

.footer-form__input::placeholder {
  color: #707070;
}

.footer-form__textarea {
  min-height: 137px;
  margin-bottom: 30px;
  padding: 15px 14px;
  border: 1px solid #fff;
  border-radius: 4px;
  background: #1f1f1f;
  color: #fff;
  font-size: 16px;
  resize: none;
}

.footer-form__textarea::-webkit-input-placeholder {
  font-family: "Roboto", sans-serif;
  color: #707070;
}

.footer-form__textarea::-moz-placeholder {
  font-family: "Roboto", sans-serif;
  color: #707070;
}

.footer-form__textarea:-ms-input-placeholder {
  font-family: "Roboto", sans-serif;
  color: #707070;
}

.footer-form__textarea::-ms-input-placeholder {
  font-family: "Roboto", sans-serif;
  color: #707070;
}

.footer-form__textarea::placeholder {
  font-family: "Roboto", sans-serif;
  color: #707070;
}

.footer-form__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 40px;
  width: 155px;
  background: #9a7149;
  color: #000;
  border-radius: 4px;
  font-size: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-form__button:hover {
  background: #000;
  color: #9a7149;
  border: 1px solid #9a7149;
}

.footer-contacts {
  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;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

@media (max-width: 920px) {
  .footer-contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media (max-width: 400px) {
  .footer-contacts {
    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;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}

.footer-contacts__box {
  height: 42px;
}

@media (max-width: 780px) {
  .footer-contacts__box {
    margin: 0;
    margin-bottom: 10px;
  }
}

.footer-contacts__box:first-child {
  margin: 19px 0 44px;
}

@media (max-width: 780px) {
  .footer-contacts__box:first-child {
    margin: 0;
    margin-bottom: 10px;
  }
}

.footer-contacts__box:nth-child(2) {
  margin-bottom: 47px;
}

@media (max-width: 780px) {
  .footer-contacts__box:nth-child(2) {
    margin: 0;
    margin-bottom: 15px;
  }
}

.footer-contacts__text {
  color: #939393;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-contacts__box .footer-contacts__link .footer-contacts__text:hover {
  color: #fff;
}

.footer-contacts__link .footer-contacts__box:hover .footer-contacts__text {
  color: #fff;
}

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


.modal-policy {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 100px auto;
  background: #fff;
  border-radius: 5px;
  color: #000;
  padding: 2vw;
  padding-top: 40px;
  max-width: 800px;
  overflow-y: auto;
  z-index: 10;
  transition: .3s;
}

.layer.active,
.modal-policy.active {
  visibility: visible;
  transition: .3s;
}

.modal-policy a {
  color: blue;
  word-break: break-all;
}

.modal-policy .close-policy {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 20px;
}

.layer {
  position: absolute;
  visibility: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .3s;
  background: rgba(0, 0, 0, 0.5);
  z-index: 5;
  cursor: pointer;
}


.drop-down {
  position: absolute;
  background: #000;
  display: none;
  top: 80%;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  overflow: hidden;
}

#language.open .drop-down {
  display: block;
}

.select-field {
  height: 38px;
  line-height: 28px;

}

.drop-down a {
  height: 38px;
  line-height: 38px;
  display: inline-block;
  width: 100%;
}

.drop-down a:hover {
  background-color: #9a7149 !important;
}

#language .drop-down,
#language {
  width: 100%;
  text-align: center;
}

#language {
  cursor: pointer;
}

#language:after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 16px;
  background-image: url(../images/arrow.png) !important;
  background-repeat: no-repeat;
  background-size: contain;
}

#language.open:after {
  transform: rotate(180deg);
}

.footer-form .g-recaptcha,
.footer-form .form-response {
  margin: 0 0 30px 0;
}

@media screen and (max-width: 1100px) {
  .select-field {
    line-height: 38px;
  }

  .drop-down {
    top: 85%;
  }
}

@media screen and (max-width: 800px) {
  .select-field {
    line-height: 50px;
  }

  .drop-down {
    top: 125%;
  }

  #language::after {
    width: 18px;
  }
}

@media screen and (max-width: 500px) {
  .select-field {
    font-size: 12px;
    line-height: 45px;
  }

  .drop-down {
    top: 135%;
  }

  .drop-down a {
    font-size: 14px;
  }

  #language::after {
    position: relative;
    top: -3px;
  }
}