@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  src: url('../font/Roboto-Thin.ttf') format('truetype');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('../font/Roboto-Light.ttf') format('truetype');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../font/Roboto-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url('../font/RobotoCondensed-Bold.ttf') format('truetype');
}

/*@font-face {
  font-family: 'Cyrvetica';
  font-style: normal;
  font-weight: 400;
  src: url('../font/Cyrvetica.otf') format('truetype');
}
@font-face {
  font-family: 'ntoutline';
  font-style: normal;
  font-weight: 400;
  src: url('../font/ntoutline.ttf') format('truetype');
}*/

@font-face {
  font-family: 'extra';
  font-style: normal;
  font-weight: 400;
  src: url('../font/cyrvetica-extra-outline.ttf') format('truetype');
}

body {
  background-color: #362a2a;
  color: #363636;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  font-family: 'Roboto', sans-serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.4;
  min-height: 100vh;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
}

.text {
  font-size: 24px;
  font-weight: 300;
}

.content {
  align-items: stretch;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: flex-start;
  transition: all .5s ease;
  width: 100%;
  -webkit-box-align: stretch;
  -webkit-box-direction: normal;
  -webkit-box-flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-pack: start;
  -ms-flex-align: stretch;
  -ms-flex-direction: column;
  -ms-flex-pack: start;
  -ms-flex-positive: 1;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
}

.container {
  margin: auto;
  padding: 0 48px;
  width: 100%;
}

.wrapper {
  margin: 0 auto;
  max-width: 2000px;
}

.background-image {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.image {
  display: block;
  max-height: 100%;
  max-width: 100%;
}

.photo .image {
  width: 100%;
}

.logo {
  align-items: center;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  pointer-events: all;
  -webkit-box-align: center;
  -webkit-box-pack: start;
  -ms-flex-align: center;
  -ms-flex-pack: start;
}

.logo .image {
  height: 100%;
  max-width: 100%;
  fill: none;
}

.btn {
  display: block;
  overflow: hidden;
}

.btn__box {
  background-color: transparent;
  border: none;
  display: inline-block;
  font-weight: 100;
  letter-spacing: .05em;
  padding: 12px 0;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.btn__content {
  color: #fff;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.btn_nodecorate .btn__content,
.btn_nodecorate .btn__box::before {
  border: 1px solid #fff;
}

.btn_nodecorate .btn__box::after {
  content: none;
}

.btn_black .btn__content {
  color: #363636;
}

.btn__box:active .btn__content {
  background-color: #a77c5a;
  color: #fff;
}

.btn_nodecorate .btn__box:active .btn__content {
  background-color: #fff;
  color: #363636;
}

.btn__box::before {
  border: 1px solid #a77c5a;
  content: '';
  display: block;
  height: 100%;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all .3s ease;
  width: calc(100% - 24px);
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.btn__box:hover::before {
  height: calc(100% - 24px);
  width: 100%;
}

.btn__box::after {
  background-color: #a77c5a;
  content: '';
  display: block;
  height: 1px;
  pointer-events: none;
  position: absolute;
  right: -36px;
  top: 50%;
  transition: all .3s ease;
  width: 60px;
  z-index: 1;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.btn_black .btn__box::after,
.btn_black .btn__box:hover::after {
  background-color: #363636;
}

.btn__box:hover::after,
.btn__box:active::after,
.btn_black .btn__box:active::after {
  background-color: #fff;
  right: 12px;
}

.btn__content {
  border: 1px solid #a77c5a;
  display: inline-block;
  min-width: 312px;
  padding: 15px 15px 14px;
  z-index: 2;
}

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

.title {
  margin-bottom: 82px;
  margin-left: 108px;
  padding-left: 48px;
  position: relative;
}

.title::before {
  background-color: #a77c5a;
  content: '';
  height: 84px;
  left: 0;
  position: absolute;
  top: 0;
  width: 1px;
}

.title_short {
  width: calc(100% - 1008px);
}

.title__content {
  font-size: 72px;
  font-weight: 100;
  letter-spacing: .05em;
  line-height: 1.167;
  text-transform: uppercase;
}

.subtitle {
  color: #a77c5a;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
  margin-bottom: 36px;
  text-transform: uppercase;
}

.subtitle_white {
  color: #fff;
  margin-bottom: 0;
}

.subsubtitle {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 18px;
}

.close {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: block;
  height: 52px;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 24px;
  top: 24px;
  width: 64px;
}

.close__icon::before,
.close__icon::after {
  background-color: #fff;
  content: '';
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  top: 50%;
  transition: all .3s ease;
  width: 100%;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.close__icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
}

.close__icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
}

.close:hover .close__icon::before,
.close:hover .close__icon::after,
.close:active .close__icon::before,
.close:active .close__icon::after {
  background-color: #a77c5a;
}

@-webkit-keyframes rotate {
  0% {
    transform: rotate(0);
    -webkit-transform: rotate(0);
  }

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

@keyframes rotate {
  0% {
    transform: rotate(0);
    -webkit-transform: rotate(0);
  }

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

::-webkit-scrollbar {
  opacity: 0;
  width: 0;
}

::-webkit-scrollbar-button {
  opacity: 0;
  width: 0;
}

::-webkit-scrollbar-track {
  opacity: 0;
  width: 0;
}

::-webkit-scrollbar-track-piece {
  opacity: 0;
  width: 0;
}

::-webkit-scrollbar-thumb {
  opacity: 0;
  width: 0;
}

::-webkit-scrollbar-corner {
  opacity: 0;
  width: 0;
}

::-webkit-resizer {
  opacity: 0;
  width: 0;
}

.links__item:not(:last-child) {
  margin-bottom: 12px;
}

.links__link {
  cursor: pointer;
  display: inline-block;
  padding: 3px 0 4px;
  position: relative;
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
}

.links__link:active {
  color: #a77c5a;
}

.links__link::after {
  background-color: #fff;
  bottom: 3px;
  content: '';
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  transition: all .5s ease;
  width: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
}

.links__link:hover::after {
  width: 100%;
}

.links__link:active::after {
  background-color: #a77c5a;
  width: 100%;
}

.line {
  background-color: #a77c5a;
  border: none;
  height: 1px;
  margin: 0;
  padding: 0;
  width: 100%;
}

.animation .line {
  transition: all .5s ease;
  width: 0;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
}

.animation_active .line {
  width: 100%;
}

sub {
  bottom: 0;
  font-size: .5em;
}

.mobile {
  display: none;
}

.mCSB_horizontal.mCSB_inside > .mCSB_container {
  margin-bottom: 0;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #a77c5a !important;
  opacity: 1 !important;
  width: 2px;
}

.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal {
  height: 0;
}

.link {
  color: #a77c5a;
  cursor: pointer;
  text-decoration: underline solid #a77c5a;
  transition: all .3s ease;
  -webkit-text-decoration: underline solid #a77c5a;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.link:hover {
  text-decoration: underline solid transparent;
  -webkit-text-decoration: underline solid transparent;
}

[class*='icon_']:before,
[class*='icon_']:after {
  display: inline-block;
  font-family: 'icons';
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1em;
  margin-left: 5px;
  margin-right: 5px;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class*='icon_']:before:hover,
[class*='icon_']:after:hover {
  text-decoration: none;
}

.animation .animation__down {
  display: inline-block;
  transform: translateY(150%);
  transition: -webkit-transform 1.2s ease;
  transition: transform 1.2s ease;
  transition: transform 1.2s ease, -webkit-transform 1.2s ease;
  -webkit-transform: translateY(150%);
  -ms-transform: translateY(150%);
  -webkit-transition: -webkit-transform 1.2s ease;
  -o-transition: transform 1.2s ease;
}

.animation_active .animation__down {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
}

.animation .animation__fade {
  opacity: 0;
  transition: opacity 1.2s ease;
  -webkit-transition: opacity 1.2s ease;
  -o-transition: opacity 1.2s ease;
}

.animation_active .animation__fade {
  opacity: 1;
}

.animation .image_rotate {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
}

.animation_active .image_rotate {
  transform: rotate(0);
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
}

.animation .menu__btn {
  margin-left: auto;
  margin-right: 0;
  transition: width .75s ease;
  width: 0;
  -webkit-transition: width .75s ease;
  -o-transition: width .75s ease;
}

.animation_active .menu__btn {
  width: 100%;
}

.animation .picture_animation .picture__content {
  display: block;
  overflow: hidden;
  transform: scale3d(.95, .95, .95);
  transition: -webkit-transform 1s cubic-bezier(.09, .25, .38, .99);
  transition: transform 1s cubic-bezier(.09, .25, .38, .99);
  transition: transform 1s cubic-bezier(.09, .25, .38, .99), -webkit-transform 1s cubic-bezier(.09, .25, .38, .99);
  -webkit-transform: scale3d(.95, .95, .95);
  -webkit-transition: -webkit-transform 1s cubic-bezier(.09, .25, .38, .99);
  -o-transition: transform 1s cubic-bezier(.09, .25, .38, .99);
}

.animation_active .picture_animation .picture__content {
  transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
}

.animation .picture_animation .picture__content .image {
  opacity: 0;
  transform: scale3d(1.2, 1.2, 1.2);
  transition: opacity .5s cubic-bezier(.09, .25, .38, .99), -webkit-transform 2.75s cubic-bezier(.09, .25, .38, .99);
  transition: opacity .5s cubic-bezier(.09, .25, .38, .99), transform 2.75s cubic-bezier(.09, .25, .38, .99);
  transition: opacity .5s cubic-bezier(.09, .25, .38, .99), transform 2.75s cubic-bezier(.09, .25, .38, .99), -webkit-transform 2.75s cubic-bezier(.09, .25, .38, .99);
  -webkit-transform: scale3d(1.2, 1.2, 1.2);
  -webkit-transition: opacity .5s cubic-bezier(.09, .25, .38, .99), -webkit-transform 2.75s cubic-bezier(.09, .25, .38, .99);
  -o-transition: opacity .5s cubic-bezier(.09, .25, .38, .99), transform 2.75s cubic-bezier(.09, .25, .38, .99);
}

.animation_active .picture_animation .picture__content .image {
  opacity: 1;
  transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
}

.animation .border .image path,
.animation .border .image rect {
  transition: stroke-dashoffset 2.75s ease;
  stroke-dasharray: 400%;
  stroke-dashoffset: 400%;
  -webkit-transition: stroke-dashoffset 2.75s ease;
  -o-transition: stroke-dashoffset 2.75s ease;
}

.animation_active .border .image path,
.animation_active .border .image rect {
  stroke-dashoffset: 0;
}

.animation .title__content {
  display: block;
  transform: translateY(100%);
  transition: -webkit-transform 1.2s ease;
  transition: transform 1.2s ease;
  transition: transform 1.2s ease, -webkit-transform 1.2s ease;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -webkit-transition: -webkit-transform 1.2s ease;
  -o-transition: transform 1.2s ease;
}

.animation_active .title__content {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
}

.animation .title::before {
  height: 0;
  transition: all 1.2s ease;
  -webkit-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
}

.animation_active .title::before {
  height: 84px;
}

.animation .animation__first {
  transition-delay: 0s !important;
  -webkit-transition-delay: 0s !important;
  -o-transition-delay: 0s !important;
}

.animation .animation__second {
  transition-delay: .5s !important;
  -webkit-transition-delay: .5s !important;
  -o-transition-delay: .5s !important;
}

.animation .animation__third {
  transition-delay: 1s !important;
  -webkit-transition-delay: 1s !important;
  -o-transition-delay: 1s !important;
}

.animation .animation__fourth {
  transition-delay: 1.5s !important;
  -webkit-transition-delay: 1.5s !important;
  -o-transition-delay: 1.5s !important;
}

.animation .animation__fifth {
  transition-delay: 2s !important;
  -webkit-transition-delay: 2s !important;
  -o-transition-delay: 2s !important;
}

.animation .animation__sixth {
  transition-delay: 2.5s !important;
  -webkit-transition-delay: 2.5s !important;
  -o-transition-delay: 2.5s !important;
}

.animation .animation__seventh {
  transition-delay: 3.5s !important;
  -webkit-transition-delay: 3.5s !important;
  -o-transition-delay: 3.5s !important;
}

.animation .intro__title,
.animation .text,
.animation .title,
.animation .subtitle,
.animation .subsubtitle,
.animation .date {
  overflow: hidden;
}

.animation .animation__border .image {
  transition-delay: inherit;
  fill: none;
  -webkit-transition-delay: inherit;
  -o-transition-delay: inherit;
}

.animation .animation__border .image path {
  transition: all 10s ease;
  transition-delay: inherit;
  fill: none;
  stroke: #a77c5a;
  stroke-dasharray: 400%;
  stroke-dashoffset: 400%;
  stroke-width: .3px;
  -webkit-transition: all 10s ease;
  -o-transition: all 10s ease;
  -webkit-transition-delay: inherit;
  -o-transition-delay: inherit;
}

.animation .animation__border .image .image__stroke {
  stroke-width: 1px;
}

.animation_active .animation__border .image path {
  stroke-dashoffset: 0;
}

.audience {
  background-color: #362a2a;
  color: #fff;
  padding: 84px 0;
}

.audience__grid {
  margin: 0 auto;
  max-width: 1160px;
  overflow: hidden;
}

.audience__grid .flex {
  align-items: center;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin: -8px;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -ms-flex-wrap: nowrap;
}

.audience__grid .flex__item {
  padding: 8px;
}

.audience__grid .flex__item:first-child {
  flex-grow: 1;
  max-width: 800px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
}

.audience__grid .flex__item:last-child {
  flex-shrink: 0;
  -ms-flex-negative: 0;
}

.contacts {
  background-color: #362a2a;
  color: #fff;
  overflow: hidden;
}

.contacts > .flex {
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}

.contacts > .flex > .flex__item {
  max-width: 960px;
  width: 50%;
}

.contacts__content {
  height: 100%;
  padding: 192px 0 144px;
}

.contacts__content .intro__form {
  padding-bottom: 0;
  padding-top: 0;
}

.contacts__content .intro__title {
  margin-bottom: 48px;
}

.contacts__info:not(:last-child) {
  margin-bottom: 84px;
}

.contacts__info > .flex {
  justify-content: space-between;
  margin: -16px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}

.contacts__info > .flex > .flex__item {
  max-width: 452px;
  padding: 16px;
  width: 33.333%;
}

.contacts__info .subtitle {
  margin-bottom: 12px;
}

.contacts__info .contacts__address:not(:last-child) {
  margin-bottom: 12px;
}

.contacts__block {
  overflow: hidden;
}

.contacts__line {
  overflow: hidden;
  padding-bottom: 48px;
}

.contacts__line > .flex {
  margin: -24px;
}

.contacts__line > .flex > .flex__item {
  padding: 24px;
  width: 33.333%;
}

.contacts__social {
  align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: justify;
  -ms-flex-align: stretch;
  -ms-flex-direction: column;
  -ms-flex-pack: justify;
}

.contacts .social .flex {
  margin: -6px;
}

.contacts .social .flex__item {
  padding: 6px;
}

.animation.contacts .social:not(.social_small) {
  opacity: 0;
  transform: translateX(-30px);
  transition: all .5s ease;
  -webkit-transform: translateX(-30px);
  -ms-transform: translateX(-30px);
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
}

.animation_active.contacts .social:not(.social_small) {
  opacity: 1;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
}

.enumeration__item {
  margin-bottom: 12px;
  overflow: hidden;
}

.enumeration .enumeration__item .enumeration__line {
  display: block;
  padding-left: 108px;
  position: relative;
}

.enumeration__item:last-child {
  margin-bottom: 0;
}

.enumeration__line::before {
  background-color: #a77c5a;
  bottom: 50%;
  content: '';
  height: 1px;
  left: 0;
  position: absolute;
  width: 84px;
}

.enumeration__line::after {
  background-color: #a77c5a;
  bottom: 50%;
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  width: 24px;
}

.error {
  background: #362a2a url('../img/line.svg') repeat left top;
  color: #fff;
  min-height: 100vh;
  padding: 148px 0 48px;
}

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

.error__code {
  font-size: 540px;
  font-weight: 100;
  letter-spacing: .05em;
  line-height: .956;
  margin-bottom: 12px;
  text-align: center;
  text-transform: uppercase;
}

.error__description {
  color: #a77c5a;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 54px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.12;
  margin-bottom: 48px;
  text-align: center;
  text-transform: uppercase;
}

.error .btn {
  padding: 0 36px;
}

.faq {
  padding: 108px 0;
}

.faq__table {
  margin: 0 auto;
  max-width: 1500px;
}

.faq__item {
  margin-bottom: 24px;
}

.faq__header {
  background-color: #362a2a;
  color: #fff;
  cursor: pointer;
  padding: 12px 84px 12px 24px;
  position: relative;
}

.faq__header::before {
  border-right: 1px solid #a77c5a;
  border-top: 1px solid #a77c5a;
  content: '';
  height: 12px;
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-75%) rotate(135deg);
  transition: border .3s ease, -webkit-transform 1.2s ease;
  transition: transform 1.2s ease, border .3s ease;
  transition: transform 1.2s ease, border .3s ease, -webkit-transform 1.2s ease;
  width: 12px;
  -webkit-transform: translateY(-75%) rotate(135deg);
  -ms-transform: translateY(-75%) rotate(135deg);
  -webkit-transition: border .3s ease, -webkit-transform 1.2s ease;
  -o-transition: transform 1.2s ease, border .3s ease;
}

.faq__header:hover::before {
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
}

.faq__item_active .faq__header::before {
  transform: translateY(-75%) rotate(135deg) scale(-1, -1);
  -webkit-transform: translateY(-75%) rotate(135deg) scale(-1, -1);
  -ms-transform: translateY(-75%) rotate(135deg) scale(-1, -1);
}

.faq__answer {
  border-bottom: 1px solid #a77c5a;
  display: none;
}

.faq__content {
  border: 1px solid #a77c5a;
  border-bottom: none;
  padding: 12px 84px 12px 24px;
}

.feedback {
  background-color: #362a2a;
  color: #fff;
  padding: 156px 0 200px;
}

.feedback .flex {
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.feedback .flex__item:first-child {
  width: 59%;
}

.feedback .flex__item:last-child {
  width: 41%;
}

.feedback .picture {
  padding-right: 24px;
  padding-top: 24px;
}

.feedback .picture .border {
  height: calc(100% - 24px);
  left: auto;
  right: 0;
  width: calc(100% - 24px);
}

.feedback__info {
  padding: 0 48px 0 84px;
}

.feedback__info .quotation {
  margin-bottom: 36px;
}

.feedback__info .quotation__text {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 54px;
  letter-spacing: .04em;
  line-height: 1;
  padding: 136px 0 40px;
}

.feedback_reverse .flex {
  flex-direction: row-reverse;
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row-reverse;
}

.flip {
  margin: 0 auto;
  max-width: 1920px;
}

.flip__content {
  position: relative;
  z-index: 3;
}

.flip__wrapper {
  counter-reset: flipCounter -1;
  height: calc(100vh - 156px);
  min-height: 700px;
  perspective: 50vw;
  position: relative;
  width: 100%;
  -webkit-perspective: 50vw;
}

.flip__card {
  backface-visibility: hidden;
  background-color: #fff;
  box-shadow: inset 0 0 60px 0 rgba(54, 42, 42, .2);
  counter-increment: flipCounter;
  height: 100%;
  padding-bottom: 144px;
  padding-top: 144px;
  position: absolute;
  width: 100%;
  -webkit-backface-visibility: hidden;
  -webkit-box-shadow: inset 0 0 60px 0 rgba(54, 42, 42, .2);
}

.flip__card::before {
  bottom: 24px;
  color: #a77c5a;
  content: counter(flipCounter);
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: #a77c5a;
  -webkit-text-stroke-width: 1px;
}

.flip__card_front {
  padding-left: 60px;
  padding-right: 120px;
}

.flip__card_front::before {
  right: 120px;
}

.flip__card_back {
  padding-left: 120px;
  padding-right: 60px;
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}

.flip__card_back::before {
  left: 120px;
}

.flip__item {
  height: 100%;
  left: 50%;
  position: absolute;
  top: 0;
  transform-origin: left center;
  transform-style: preserve-3d;
  transition: -webkit-transform 1.2s ease;
  transition: transform 1.2s ease;
  transition: transform 1.2s ease, -webkit-transform 1.2s ease;
  width: 50%;
  will-change: transform;
  z-index: 1;
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  -webkit-transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 1.2s ease;
  -o-transition: transform 1.2s ease;
}

.flip__item_left {
  transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
}

.flip__item_active {
  z-index: 3;
}

.flip__item:first-child .flip__card_front {
  background-color: #362a2a;
  box-shadow: none;
  color: #a77c5a;
  padding-left: 120px;
  text-align: center;
  -webkit-box-shadow: none;
}

.flip__item:last-child .flip__card_back {
  background-color: #362a2a;
  box-shadow: none;
  color: #a77c5a;
  padding-right: 120px;
  -webkit-box-shadow: none;
}

.flip__item:last-child .flip__card_back::before,
.flip__item:first-child .flip__card_front::before {
  content: none;
}

.footer {
  background-color: #362a2a;
  color: #f6f6f6;
  font-size: 24px;
  font-weight: 100;
  letter-spacing: .05em;
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
}

.footer__content {
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  padding: 36px 0;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}

.footer .logo {
  flex-shrink: 0;
  height: 48px;
  margin-left: 0;
  margin-right: 36px;
  -ms-flex-negative: 0;
}

.footer .logo .image path {
  stroke: #fff;
  stroke-width: 5px;
}

.footer__requisites {
  flex-shrink: 0;
  margin-left: 16px;
  margin-right: 0;
  text-align: right;
  width: 25%;
  -ms-flex-negative: 0;
}

.copyrite {
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  margin-right: auto;
  -webkit-box-align: center;
  -webkit-box-pack: start;
  -ms-flex-align: center;
  -ms-flex-pack: start;
}

.copyrite__item {
  border-left: 1px solid #f6f6f6;
  padding: 1px 24px 2px;
}

.copyrite__item:first-child {
  border-left: none;
  padding-left: 0;
}

.copyrite__item:last-child {
  padding-right: 0;
}

.copyrite__line {
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-box-pack: start;
  -ms-flex-align: center;
  -ms-flex-pack: start;
}

.copyrite__icon {
  height: 24px;
  margin-right: 12px;
  width: 24px;
  fill: #f6f6f6;
}

.form__content .flex {
  justify-content: flex-end;
  margin: -32px -24px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
}

.form__content .flex__item {
  padding: 32px 24px;
  width: 33.333%;
}

.form__content .flex__item_50 {
  width: 50%;
}

.form__content .flex__item_big {
  width: 100%;
}

.form__content .flex__item_btn {
  width: 398px;
}

.form__content .flex__item_beforebtn {
  width: calc(100% - 398px);
}

.form__item {
  position: relative;
}

.form__input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  color: #f6f6f6;
  display: block;
  line-height: 1.4;
  padding: 2px 0 3px;
  position: relative;
  transition: all 1.2s ease;
  width: 100%;
  z-index: 2;
  -webkit-opacity: 1;
  -webkit-text-fill-color: #f6f6f6;
  -webkit-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
}

.form__input_big {
  border-right: 1px solid #fff;
  height: 72px;
  resize: none;
}

.form__input:focus,
.form__input:active,
.form__input:hover {
  border-bottom: 1px solid #a77c5a;
}

.form__input + .form__label {
  left: 0;
  position: absolute;
  top: 0;
  transform: translateY(0);
  z-index: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
}

.form__label {
  color: #f6f6f6;
  display: block;
  opacity: .5;
  overflow: hidden;
  padding: 2px 0 3px;
  transition: all 1.2s ease;
  -webkit-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
}

.form__error {
  color: #db4437;
  font-size: 16px;
  font-weight: 300;
  left: 0;
  line-height: 1;
  opacity: 0;
  padding: 3px 0;
  position: absolute;
  top: 100%;
  transition: all 1.2s ease;
  width: 100%;
  -webkit-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
}

.form__type {
  color: #a77c5a;
  font-size: 24px;
  margin-right: 12px;
}

.form__data,
.form__units {
  color: #fff;
}

.form__warning {
  align-items: stretch;
  color: #a77c5a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  font-size: 18px;
  height: 100%;
  justify-content: flex-end;
  padding: 6px 0;
  -webkit-box-align: stretch;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: end;
  -ms-flex-align: stretch;
  -ms-flex-direction: column;
  -ms-flex-pack: end;
}

.form__line .form__label {
  opacity: 1;
  position: static;
}

.complete .form__input {
  border-bottom: 1px solid #a77c5a;
}

.fail .form__input {
  border-bottom: 1px solid #db4437;
}

.fail .form__error {
  opacity: .5;
  z-index: 2;
}

.form__input:focus + .form__label,
.complete .form__input + .form__label,
.fail .form__input + .form__label {
  color: #a77c5a;
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
}

.header {
  position: relative;
  z-index: 5;
}

.header__sticky {
  background-color: rgba(54, 42, 42, .5);
  left: 0;
  padding: 12px 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 100%;
}

.header__content {
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
}

.header .logo {
  height: 80px;
  margin-right: 48px;
  pointer-events: all;
  position: relative;
  z-index: 2;
}

.header .logo .image path {
  transition: all 2s ease;
  stroke: #fff;
  stroke-dasharray: 1000%;
  stroke-dashoffset: 1000%;
  stroke-width: 5px;
  -webkit-transition: all 2s ease;
  -o-transition: all 2s ease;
}

.header .animation_active .logo .image path {
  stroke-dashoffset: 0;
}

.header .btn {
  margin-left: 48px;
}

.header .btn__content {
  min-width: 180px;
  padding: 6px 24px;
}

.intro {
  align-items: stretch;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  position: relative;
  -webkit-box-align: stretch;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  -ms-flex-align: stretch;
  -ms-flex-direction: column;
  -ms-flex-pack: center;
}

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

.intro .photo::before {
  background-color: #363636;
  content: '';
  height: 100%;
  left: 0;
  opacity: .6;
  position: absolute;
  top: 0;
  width: 100%;
}

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

.intro__content {
  margin: 0 auto;
  max-width: 1740px;
  padding: 135px 0;
  position: relative;
  width: 100%;
  z-index: 3;
}

.intro__content > .flex {
  align-items: center;
  justify-content: space-between;
  margin: -56px;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
}

.intro__content > .flex > .flex__item {
  padding: 56px;
}

.intro__content > .flex > .flex__item:first-child {
  max-width: 892px;
  width: calc(100% - 770px);
}

.intro__content > .flex > .flex__item:last-child {
  width: 770px;
}

.intro__title {
  font-size: 65px;
  font-weight: 100;
  letter-spacing: .05em;
  line-height: 1;
  text-transform: uppercase;
}

.intro__info .text {
  margin-top: 24px;
}

.intro__form {
  background-color: #362a2a;
  padding: 56px;
}

.intro__form .subtitle {
  color: #fff;
}

.intro__form .subsubtitle {
  margin-bottom: 60px;
}

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

.intro__form .form__content .flex__item {
  width: 100%;
}

@-webkit-keyframes goLeft {
  0% {
    top: 34%;
    transform: translate(calc(-50% - 8px), -50%) rotate(0);
    -webkit-transform: translate(calc(-50% - 8px), -50%) rotate(0);
  }

  20% {
    top: 50%;
    transform: translate(-50%, -50%) rotate(0);
    -webkit-transform: translate(-50%, -50%) rotate(0);
  }

  100% {
    top: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
    -webkit-transform: translate(-50%, -50%) rotate(225deg);
  }
}

@keyframes goLeft {
  0% {
    top: 34%;
    transform: translate(calc(-50% - 8px), -50%) rotate(0);
    -webkit-transform: translate(calc(-50% - 8px), -50%) rotate(0);
  }

  20% {
    top: 50%;
    transform: translate(-50%, -50%) rotate(0);
    -webkit-transform: translate(-50%, -50%) rotate(0);
  }

  100% {
    top: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
    -webkit-transform: translate(-50%, -50%) rotate(225deg);
  }
}

@-webkit-keyframes goRight {
  0% {
    top: 66%;
    transform: translate(calc(-50% + 8px), -50%) rotate(0);
    -webkit-transform: translate(calc(-50% + 8px), -50%) rotate(0);
  }

  20% {
    top: 50%;
    transform: translate(-50%, -50%) rotate(0);
    -webkit-transform: translate(-50%, -50%) rotate(0);
  }

  100% {
    top: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
    -webkit-transform: translate(-50%, -50%) rotate(135deg);
  }
}

@keyframes goRight {
  0% {
    top: 66%;
    transform: translate(calc(-50% + 8px), -50%) rotate(0);
    -webkit-transform: translate(calc(-50% + 8px), -50%) rotate(0);
  }

  20% {
    top: 50%;
    transform: translate(-50%, -50%) rotate(0);
    -webkit-transform: translate(-50%, -50%) rotate(0);
  }

  100% {
    top: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
    -webkit-transform: translate(-50%, -50%) rotate(135deg);
  }
}

.menu {
  pointer-events: all;
}

.menu__decoration {
  display: none;
}

.menu__decoration_active {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
}

.menu__container {
  align-items: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-box-pack: end;
  -ms-flex-align: center;
  -ms-flex-pack: end;
  scrollbar-color: transparent;
  scrollbar-width: thin;
}

.menu__container::-webkit-scrollbar {
  background-color: transparent;
  width: 4px;
}

.menu__container::-webkit-scrollbar-thumb {
  background-color: #a77c5a;
  border-radius: 4px;
  height: 8px;
}

.menu__container::-webkit-scrollbar-button:vertical:start:decrement {
  display: none;
}

.menu__container::-webkit-scrollbar-button:vertical:end:increment {
  display: none;
}

.menu__container::-webkit-scrollbar-button:horizontal:start:decrement {
  display: none;
}

.menu__container::-webkit-scrollbar-button:horizontal:end:increment {
  display: none;
}

.menu .phone {
  color: #a77c5a;
  cursor: pointer;
  display: inline-block;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1;
  margin-left: 48px;
  overflow: hidden;
  transition: all 0s .5s ease, color .3s 0s ease;
  -webkit-transition: all 0s .5s ease, color .3s 0s ease;
  -o-transition: all 0s .5s ease, color .3s 0s ease;
}

.menu .phone__link {
  padding: 4px 0;
}

.menu .phone__link::after {
  background-color: #a77c5a;
  bottom: 0;
  content: '';
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  transition: all .5s ease;
  width: 0;
  will-change: width;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
}

.menu .phone__link:hover::after {
  width: 100%;
}

.menu__box {
  overflow: hidden;
}

.menu__list {
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  margin: 0 -24px;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}

.menu__item {
  overflow: hidden;
  padding: 0 24px;
}

.menu__link {
  cursor: pointer;
  display: block;
  font-size: 24px;
  font-weight: 100;
  letter-spacing: .05em;
  line-height: 1;
  padding: 8px 0;
  position: relative;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.menu__link::after {
  background-color: #fff;
  bottom: 0;
  content: '';
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  transition: all .5s ease;
  width: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
}

.menu__link:hover::after {
  width: 100%;
}

.menu__link:active {
  color: #a77c5a;
}

.menu__link:active::after {
  background-color: #a77c5a;
  width: 100%;
}

.menu__link__active::after {
  background-color: #a77c5a;
  width: 100%;
}

.menu__btn {
  display: none;
}

.menu__btn::before,
.menu__btn::after {
  background-color: #fff;
  content: '';
  height: 1px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  transition: background-color .3s ease, -webkit-transform .3s ease;
  transition: background-color .3s ease, transform .3s ease;
  transition: background-color .3s ease, transform .3s ease, -webkit-transform .3s ease;
  width: 100%;
  will-change: transform, top, rotate;
  -webkit-transition: background-color .3s ease, -webkit-transform .3s ease;
  -o-transition: background-color .3s ease, transform .3s ease;
}

.menu__btn::before {
  top: 34%;
  transform: translate(-50%, -50%) rotate(0);
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
}

.menu__btn::after {
  top: 66%;
  transform: translate(-50%, -50%) rotate(0);
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
}

.menu__btn:hover::before {
  transform: translate(calc(-50% - 8px), -50%) rotate(0);
  -webkit-transform: translate(calc(-50% - 8px), -50%) rotate(0);
  -ms-transform: translate(calc(-50% - 8px), -50%) rotate(0);
}

.menu__btn:hover::after {
  transform: translate(calc(-50% + 8px), -50%) rotate(0);
  -webkit-transform: translate(calc(-50% + 8px), -50%) rotate(0);
  -ms-transform: translate(calc(-50% + 8px), -50%) rotate(0);
}

.menu_active .menu__btn::before {
  animation: goLeft .5s ease;
  background-color: #fff;
  top: 50%;
  transform: translate(-50%, -50%) rotate(225deg);
  transition: background-color .3s ease;
  -webkit-animation: goLeft .5s ease;
  -webkit-transform: translate(-50%, -50%) rotate(225deg);
  -ms-transform: translate(-50%, -50%) rotate(225deg);
  -webkit-transition: background-color .3s ease;
  -o-transition: background-color .3s ease;
}

.menu_active .menu__btn::after {
  animation: goRight .5s ease;
  background-color: #fff;
  top: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
  transition: background-color .3s ease;
  -webkit-animation: goRight .5s ease;
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
  -ms-transform: translate(-50%, -50%) rotate(135deg);
  -webkit-transition: background-color .3s ease;
  -o-transition: background-color .3s ease;
}

.menu_active .menu__btn:hover::before {
  transform: translate(-50%, -50%) rotate(225deg);
  -webkit-transform: translate(-50%, -50%) rotate(225deg);
  -ms-transform: translate(-50%, -50%) rotate(225deg);
}

.menu_active .menu__btn:hover::after {
  transform: translate(-50%, -50%) rotate(135deg);
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
  -ms-transform: translate(-50%, -50%) rotate(135deg);
}

.menu_active .menu__btn:hover::before,
.menu_active .menu__btn:hover::after {
  background-color: #a77c5a;
  top: 50%;
}

.menu_active .menu__content {
  transform: translateX(0);
  transition: -webkit-transform .5s 0s ease;
  transition: transform .5s 0s ease;
  transition: transform .5s 0s ease, -webkit-transform .5s 0s ease;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transition: -webkit-transform .5s 0s ease;
  -o-transition: transform .5s 0s ease;
}

.pagination .slider .slider__line {
  display: none;
}

.pagination__info {
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  margin-bottom: 84px;
  padding: 0 204px 0 156px;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
}

.pagination__info .title {
  margin: 0;
}

.pagination__lines {
  flex-shrink: 0;
  margin-left: 24px;
  width: 734px;
  -ms-flex-negative: 0;
}

.pagination__item:not(:first-child) {
  display: none;
}

.pagination__info .slider__line {
  width: 100%;
}

.picture {
  position: relative;
}

.picture__content {
  position: relative;
  z-index: 2;
}

.picture__content .image {
  width: 100%;
}

.picture .pattern {
  background: url('../img/pattern_circle.svg') no-repeat center;
  background-size: cover;
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.border {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 3;
}

.border .image {
  height: 100%;
  width: 100%;
  fill: none;
}

.border .image path,
.border .image rect {
  stroke: #a77c5a;
  stroke-width: 2px;
}

.popup__item {
  background-color: #362a2a;
  color: #fff;
  display: none;
  left: 50%;
  max-height: 100vh;
  max-width: 1332px;
  overflow: hidden;
  padding: 24px;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 96px);
  z-index: 100;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

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

.popup__content {
  border: 1px solid #a77c5a;
  height: 100%;
  overflow: auto;
  padding: 88px 166px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.popup__content .title {
  margin: 0 0 60px;
}

.popup__content .subsubtitle {
  color: #a77c5a;
  margin-bottom: 48px;
}

.portfolio {
  overflow: hidden;
  padding: 108px 0 80px;
}

.portfolio .subtitle {
  flex-shrink: 0;
  -ms-flex-negative: 0;
}

.portfolio .logo {
  flex-grow: 1;
  height: calc(100% - 72px);
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
}

.portfolio .logo .image {
  margin: auto;
}

.portfolio .logo .image path {
  stroke: #fff;
  stroke-dasharray: 1000%;
}

.portfolio__item {
  align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: start;
  -ms-flex-align: stretch;
  -ms-flex-direction: column;
  -ms-flex-pack: start;
}

.portfolio__item .text {
  height: 100%;
  overflow: auto;
  scrollbar-color: #fff;
  scrollbar-width: thin;
}

.portfolio__item .text::-webkit-scrollbar {
  background-color: #fff;
  width: 4px;
}

.portfolio__item .text::-webkit-scrollbar-thumb {
  background-color: #a77c5a;
  border-radius: 4px;
  height: 8px;
}

.portfolio__item .text::-webkit-scrollbar-button:vertical:start:decrement {
  display: none;
}

.portfolio__item .text::-webkit-scrollbar-button:vertical:end:increment {
  display: none;
}

.portfolio__item .text::-webkit-scrollbar-button:horizontal:start:decrement {
  display: none;
}

.portfolio__item .text::-webkit-scrollbar-button:horizontal:end:increment {
  display: none;
}

.flip__item .logo .image path {
  transition: all 0s ease;
  stroke-dashoffset: 1000%;
  -webkit-transition: all 0s ease;
  -o-transition: all 0s ease;
}

.flip__item_active .logo .image path {
  transition: all 5s ease;
  stroke-dashoffset: 0;
  -webkit-transition: all 5s ease;
  -o-transition: all 5s ease;
}

.preloader {
  background-color: #362a2a;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 102;
}

.preloader__content {
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  justify-content: center;
  margin: 0 auto;
  max-width: 928px;
  padding: 0 32px;
  width: 100%;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}

.preloader__logo {
  width: calc(100% - 344px);
}

.preloader__box {
  padding-bottom: 100%;
  position: relative;
  width: 100%;
}

.preloader__logo .image {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  fill: none;
}

.preloader__logo .image path {
  stroke: #fff;
  /*stroke-dasharray: 1000%;
  stroke-dashoffset: 0;*/
  stroke-width: 1px;
}

/*@keyframes preloaderAnimate {
  0% {
    stroke-dashoffset: 1000%;
  }
  100% {
    stroke-dashoffset: 0;
  }
}*/

.preloader__progress {
  height: 100%;
  padding-left: 112px;
  padding-right: 64px;
  width: 344px;
}

.progress {
  height: 100%;
  position: relative;
  width: 100%;
}

.progress__bar {
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  justify-content: center;
  position: relative;
  width: 1px;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}

.progress__fill {
  background-color: #fff;
  bottom: 0;
  height: 0;
  left: 0;
  position: absolute;
  transition: all .3s linear;
  width: 1px;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
}

.progress__value {
  color: #fff;
  font-size: 72px;
  font-weight: 100;
  left: 24px;
  letter-spacing: .05em;
  line-height: 1;
  position: absolute;
  text-transform: uppercase;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.quotation__container {
  padding: 0 204px;
}

.quotation_decoration {
  padding: 108px 0;
}

.quotation_decoration .quotation__container {
  background: url('../img/line_horisontal.svg') repeat center top;
}

.quotation_decoration .quotation__content {
  background-color: #fff;
  padding: 48px 108px;
}

.quotation__text {
  font-size: 72px;
  font-weight: 100;
  letter-spacing: .05em;
  padding-top: 96px;
  position: relative;
  text-transform: uppercase;
}

.quotation__text::before {
  background: url('../img/quotation.svg') no-repeat left top;
  background-size: contain;
  content: '';
  height: 36px;
  left: 0;
  position: absolute;
  top: 0;
  width: 48px;
}

.quotation__text_bold {
  font-weight: 300;
}

.quotation_small .quotation__text {
  font-size: 36px;
  padding: 108px 0 64px;
}

.quotation_horizontal {
  padding: 108px 0;
}

.quotation_horizontal .container {
  padding: 0 204px;
}

.quotation_horizontal .quotation__text {
  font-size: 36px;
  padding-left: 156px;
  padding-top: 0;
}

.quotation_horizontal .quotation__text_bold {
  color: #a77c5a;
}

.reason {
  overflow: hidden;
  padding-top: 108px;
}

.reason .slider__content {
  align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: -42px -24px;
  -webkit-box-align: stretch;
  -webkit-box-pack: start;
  -ms-flex-align: stretch;
  -ms-flex-pack: start;
  -ms-flex-wrap: wrap;
}

.reason .slider__item {
  padding: 42px 24px;
  width: 50%;
}

.reason .subtitle {
  color: #363636;
  margin-bottom: 24px;
  padding-left: 180px;
}

.reason__info {
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-box-pack: start;
  -ms-flex-align: center;
  -ms-flex-pack: start;
}

.reason__icon {
  flex-shrink: 0;
  margin-right: 36px;
  padding-right: 24px;
  position: relative;
  width: 180px;
  -ms-flex-negative: 0;
}

.reason__icon::before {
  background-color: #a77c5a;
  content: '';
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
}

.reason__text {
  max-width: 408px;
}

.animation .reason__icon::before {
  height: 0;
  transition: all 1.2s ease;
  transition-delay: inherit;
  -webkit-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  -webkit-transition-delay: inherit;
  -o-transition-delay: inherit;
}

.animation_active .reason__icon::before {
  height: 100%;
}

.related__item {
  position: relative;
}

.related__item .border {
  pointer-events: none;
  z-index: 2;
}

.related__item .slider {
  position: relative;
  z-index: 1;
}

.slider__arrows {
  align-items: center;
  align-self: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  margin-top: 40px;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-item-align: start;
  -ms-flex-pack: center;
}

.slider__button {
  background-color: #a77c5a;
  height: 1px;
  position: relative;
  width: 84px;
}

.slider__button::before {
  border-color: transparent transparent transparent #a77b5a;
  border-style: solid;
  border-width: 5.5px 0 5.5px 24px;
  content: '';
  height: 0;
  position: absolute;
  top: -5px;
  width: 0;
}

.slider__arrow {
  align-items: stretch;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  height: 60px;
  justify-content: center;
  padding: 0;
  position: relative;
  -webkit-box-align: stretch;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  -ms-flex-align: stretch;
  -ms-flex-direction: column;
  -ms-flex-pack: center;
}

.slider__arrow::before {
  border: 1px solid #a77c5a;
  border-radius: 50%;
  content: '';
  height: 60px;
  opacity: 1;
  position: absolute;
  top: 50%;
  transition: all .5s ease;
  width: 60px;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
}

.slider__arrow.slick-disabled {
  cursor: default;
}

.slider__arrow.slick-disabled::before {
  height: 0;
  opacity: 0;
  width: 0;
}

.slider__arrow_prev {
  margin-right: 12px;
}

.slider__arrow_prev::before {
  left: 0;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.slider__arrow_prev:hover::before,
.slider__arrow_prev:active::before {
  transform: translate(-50%, -50%) scale(1.2);
  -webkit-transform: translate(-50%, -50%) scale(1.2);
  -ms-transform: translate(-50%, -50%) scale(1.2);
}

.slider__arrow_prev.slick-disabled::before {
  left: 100%;
}

.slider__arrow_prev .slider__button::before {
  left: 0;
  transform: translate(-50%, 0) rotate(180deg);
  -webkit-transform: translate(-50%, 0) rotate(180deg);
  -ms-transform: translate(-50%, 0) rotate(180deg);
}

.slider__arrow_next {
  margin-left: 12px;
}

.slider__arrow_next::before {
  right: 0;
  transform: translate(50%, -50%);
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
}

.slider__arrow_next:hover::before,
.slider__arrow_next:active::before {
  transform: translate(50%, -50%) scale(1.2);
  -webkit-transform: translate(50%, -50%) scale(1.2);
  -ms-transform: translate(50%, -50%) scale(1.2);
}

.slider__arrow_next.slick-disabled::before {
  right: 100%;
}

.slider__arrow_next .slider__button::before {
  right: 0;
  transform: translateX(50%);
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
}

.slider__line {
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  max-width: 734px;
  -webkit-box-align: center;
  -webkit-box-pack: end;
  -ms-flex-align: center;
  -ms-flex-pack: end;
}

.slider__line .slider__arrows {
  margin-left: 0;
  margin-right: 48px;
  margin-top: 0;
  padding: 0 30px;
}

.slider__progress {
  width: calc(100% - 300px);
}

.slider__bar {
  border-bottom: 1px solid #a77c5a;
  width: 100%;
}

.slider__fill {
  background-color: #a77c5a;
  height: 1px;
  transition: all 1.2s ease;
  width: 0;
  -webkit-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
}

.animation .slider__bar {
  transition: width 1.2s ease;
  width: 0;
  -webkit-transition: width 1.2s ease;
  -o-transition: width 1.2s ease;
}

.animation_active .slider__bar {
  width: 100%;
}

.social {
  /*padding: 0 156px 0 102px;
  @media (max-width: $media-md) {
    padding: 0 104px 0 68px;
  }*/
}

.social .flex {
  align-items: center;
  margin: 0 -31px;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.social.social_small .flex {
  margin: 0 -18px;
}

.social .flex__item {
  padding: 0 31px;
  width: 20%;
}

.social.social_small .flex .flex__item {
  padding: 0 18px;
  width: auto;
}

.social__link {
  display: block;
  position: relative;
}

.social__link::before,
.social__link::after {
  background-color: #a77c5a;
  content: '';
  height: 1px;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: all .5s ease;
  width: 72px;
  will-change: translate;
  z-index: 1;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
}

.social__link.social__link_white::before,
.social__link.social__link_white::after {
  background-color: #fff;
}

.social_small .social__link::before,
.social_small .social__link::after {
  width: 38px;
}

.social__link::before {
  top: calc(50% - 12px);
  transform: translate(calc(-50% + 8px), -24px) rotate(-70deg);
  -webkit-transform: translate(calc(-50% + 8px), -24px) rotate(-70deg);
  -ms-transform: translate(calc(-50% + 8px), -24px) rotate(-70deg);
}

.social_small .social__link::before {
  top: calc(50% - 8px);
  transform: translate(calc(-50% + 4px), -12px) rotate(-70deg);
  -webkit-transform: translate(calc(-50% + 4px), -12px) rotate(-70deg);
  -ms-transform: translate(calc(-50% + 4px), -12px) rotate(-70deg);
}

.social__link::after {
  top: calc(50% + 12px);
  transform: translate(calc(-50% - 8px), 24px) rotate(-70deg);
  -webkit-transform: translate(calc(-50% - 8px), 24px) rotate(-70deg);
  -ms-transform: translate(calc(-50% - 8px), 24px) rotate(-70deg);
}

.social_small .social__link::after {
  top: calc(50% + 8px);
  transform: translate(calc(-50% - 4px), 12px) rotate(-70deg);
  -webkit-transform: translate(calc(-50% - 4px), 12px) rotate(-70deg);
  -ms-transform: translate(calc(-50% - 4px), 12px) rotate(-70deg);
}

.social__link:hover::after,
.social__link:hover::before {
  opacity: 1;
  transform: translate(-50%, 0) rotate(-70deg);
  -webkit-transform: translate(-50%, 0) rotate(-70deg);
  -ms-transform: translate(-50%, 0) rotate(-70deg);
}

.social__link .image {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.social_small .social__link .image {
  height: 36px;
  width: 36px;
}

.social__link .image path {
  transition: all .5s ease;
  fill: #a77c5a;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
}

.social__link.social__link_white .image path {
  fill: #fff;
}

.social__link .image .social_color {
  transition: all .5s ease;
  fill: #fff;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
}

.social__link .image .social_white {
  transition: all .5s ease;
  fill: #fff;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
}

.social__link .image .social_stroke {
  stroke: #362a2a;
}

.social__link .image .social_border {
  fill: none;
  stroke: #a77c5a;
}

.social__link:active .image path,
.social__link:active .image .social_color,
.social__link:active .image .social_white {
  fill: #fff;
}

.social__link:active .image .social_border {
  fill: none;
  stroke: #fff;
}

.social__link:active .image .social_invert {
  fill: #362a2a;
}

.submenu {
  color: #fff;
  position: relative;
}

.submenu__title {
  cursor: pointer;
  display: inline-block;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 54px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.12;
  margin-bottom: 86px;
  padding-right: 56px;
  position: relative;
  text-transform: uppercase;
  transition: all .75s ease;
  -webkit-transition: all .75s ease;
  -o-transition: all .75s ease;
}

.submenu_active .submenu__title {
  color: #a77c5a;
}

.submenu__title::after {
  background-color: #a77c5a;
  content: '';
  height: 1px;
  left: calc(100% - 48px);
  position: absolute;
  top: 50%;
  transition: all .3s ease;
  width: 0;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.submenu__title:hover::after {
  width: 48px;
}

.submenu_active .submenu__title::after {
  width: 0;
}

.submenu__list {
  will-change: opacity;
}

.submenu__item {
  overflow: hidden;
}

.submenu__item:not(:last-child) {
  margin-bottom: 48px;
}

.submenu__link {
  display: block;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
  padding-left: 0;
  padding-right: 48px;
  position: relative;
  text-transform: uppercase;
  transform: translateY(200%);
  transition: color .3s ease, padding .3s ease, -webkit-transform 1s ease;
  transition: color .3s ease, padding .3s ease, transform 1s ease;
  transition: color .3s ease, padding .3s ease, transform 1s ease, -webkit-transform 1s ease;
  -webkit-transform: translateY(200%);
  -ms-transform: translateY(200%);
  -webkit-transition: color .3s ease, padding .3s ease, -webkit-transform 1s ease;
  -o-transition: color .3s ease, padding .3s ease, transform 1s ease;
}

.submenu_active .submenu__link {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
}

.submenu__link:hover {
  color: #a77c5a;
}

.submenu__link:active {
  color: #a77c5a;
  padding-left: 48px;
  padding-right: 0;
}

.submenu__link::before {
  background-color: #a77c5a;
  content: '';
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  transition: all .3s ease;
  width: 0;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.submenu__link:active::before {
  width: 36px;
}

.summary {
  color: #fff;
  padding-right: 48px;
}

.summary__item {
  margin-bottom: 72px;
}

.summary__item:last-child {
  margin-bottom: 0;
}

.summary__content {
  font-size: 36px;
  font-weight: 300;
}

.summary__number {
  color: #a77c5a;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 144px;
  line-height: .88;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: #a77c5a;
  -webkit-text-stroke-width: 1px;
}

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

.swiper__item {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  transform: translateX(100%);
  transition: all 1s ease;
  width: 100%;
  will-change: translate;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
}

.swiper__item:first-child {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
}

.swiper__content {
  height: 100%;
  transform: translateX(-100%);
  transition: all 1s ease;
  width: 100%;
  will-change: translate;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
}

.swiper__item:first-child .swiper__content {
  transform: translate(0);
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
}

.swiper__wrapper {
  align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
  -webkit-box-align: stretch;
  -webkit-box-pack: center;
  -ms-flex-align: stretch;
  -ms-flex-pack: center;
}

.swiper__wrapper .swiper__block {
  width: 50%;
}

.swiper__wrapper .swiper__block .swiper__photo {
  overflow: hidden;
}

.swiper__wrapper .swiper__block .background-image {
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all .75s ease;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transition: all .75s ease;
  -o-transition: all .75s ease;
}

.swiper__wrapper .swiper__block:hover .background-image {
  transform: translate(-50%, -50%) scale(1.1);
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  -ms-transform: translate(-50%, -50%) scale(1.1);
}

.swiper__block {
  background-position: left center;
  height: 100%;
  position: relative;
  width: 100%;
}

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

.swiper__photo::before {
  background-color: #363636;
  content: '';
  height: 100%;
  left: 0;
  opacity: .6;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.swiper__photo .background-image {
  height: 100%;
  width: 100%;
}

.swiper__block .submenu {
  padding: 202px 48px 0 102px;
  z-index: 2;
}

.tabs .slick-track {
  align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-box-pack: center;
  -ms-flex-align: stretch;
  -ms-flex-pack: center;
}

.tabs .slick-slide {
  float: none;
  height: auto;
}

.tabs .slick-list,
.tabs .slick-track {
  height: 100%;
}

.tabs__pagination {
  margin-bottom: 72px;
  margin-left: 204px;
}

/*.tabs__pagination .slick-dots {
  align-items: center;
  display: flex;
  justify-content: center;
}
.tabs__pagination li {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  position: relative;
  width: 50%;
}
.tabs__pagination li::after {
  background-color: $color_gold;
  bottom: 50%;
  content: '';
  height: 1px;
  position: absolute;
  width: calc(100% - 264px);
  @media (max-width: $media-md) {
    width: calc(100% - 176px);
  }
}
.tabs__pagination li::after {
  right: 0;
}
.tabs__pagination li:last-child::after {
  right: auto;
  left: 0;
}
.tabs__pagination li::before {
  background-color: $color_gold;
  bottom: calc(50% + 1px);
  content: '';
  height: 2px;
  position: absolute;
  transition: all .3s ease;
  width: 0;
  @media (max-width: $media-md) {
    height: 1px;
  }
}
.tabs__pagination .slick-active::before {
  width: calc(100% - 264px);
  @media (max-width: $media-md) {
    width: calc(100% - 176px);
  }
}
.tabs__pagination li:first-child::before {
  right: 0;
}
.tabs__pagination li:last-child::before {
  left: 0;
}
.tabs__pagination li:last-child {
  justify-content: flex-end;
}
.tabs__pagination li button {
  background-color: transparent;
  border: none;
  flex-shrink: 0;
  font-size: 36px;
  font-weight: 100;
  letter-spacing: .05em;
  padding: 0;
  text-align: left;
  text-transform: uppercase;
  transition: all .3s ease;
  width: 264px;
  @media (max-width: $media-md) {
    font-size: 24px;
    width: 176px;
  }
}
.tabs__pagination li:first-child button {
  padding-right: 38px;
  @media (max-width: $media-md) {
    padding-right: 24px;
  }
}
.tabs__pagination li:last-child button {
  padding-left: 38px;
  @media (max-width: $media-md) {
    padding-left: 24px;
  }
}
*/

.tabs__pagination .slick-dots {
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-box-pack: start;
  -ms-flex-align: center;
  -ms-flex-pack: start;
}

.tabs__pagination li {
  padding: 0 102px;
  position: relative;
}

.tabs .tabs__pagination li:first-child {
  padding-left: 0;
}

.tabs .tabs__pagination li:last-child {
  padding-right: 0;
}

.tabs__pagination li::before {
  background-color: #a77c5a;
  content: '';
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 1;
}

.tabs__pagination li::after {
  background-color: #a77c5a;
  content: '';
  height: 2px;
  left: 50%;
  position: absolute;
  top: calc(50% - 1px);
  transform: translateX(-50%);
  transition: all .5s ease;
  width: 0;
  z-index: 2;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
}

.tabs__pagination li:first-child::after {
  left: 0;
  transform: none;
  -webkit-transform: none;
  -ms-transform: none;
}

.tabs__pagination li:last-child::after {
  left: auto;
  right: 0;
  transform: none;
  -webkit-transform: none;
  -ms-transform: none;
}

.tabs__pagination li.slick-active::after {
  width: 100%;
}

.tabs__pagination li button {
  background-color: #fff;
  border: none;
  flex-shrink: 0;
  font-size: 36px;
  font-weight: 100;
  letter-spacing: .05em;
  padding: 5px 36px;
  position: relative;
  text-align: left;
  text-transform: uppercase;
  transition: all .3s ease;
  z-index: 3;
  -ms-flex-negative: 0;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.tabs .tabs__pagination li:first-child button {
  padding-left: 0;
}

.tabs .tabs__pagination li:last-child button {
  padding-right: 0;
}

.tabs__pagination .slick-active button,
.tabs__pagination li:hover button {
  color: #a77c5a;
}

.fnc-slider {
  box-sizing: border-box;
  height: 100vh;
  overflow: hidden;
  position: relative;
  -webkit-box-sizing: border-box;
}

.fnc-slider__slides {
  height: 100%;
  position: relative;
  transition: -webkit-transform 1s .66667s;
  transition: transform 1s .66667s;
  transition: transform 1s .66667s, -webkit-transform 1s .66667s;
  -webkit-transition: -webkit-transform 1s .66667s;
  -o-transition: transform 1s .66667s;
}

.fnc-slide {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  transform: translate3d(0, 0, 0);
  width: 100%;
  -webkit-transform: translate3d(0, 0, 0);
}

.fnc-slide.m--before-sliding {
  transform: translate3d(100%, 0, 0);
  z-index: 2 !important;
  -webkit-transform: translate3d(100%, 0, 0);
}

.fnc-slide.m--active-slide {
  transform: translate3d(0, 0, 0);
  transition: -webkit-transform 1s .66667s ease-in-out;
  transition: transform 1s .66667s ease-in-out;
  transition: transform 1s .66667s ease-in-out, -webkit-transform 1s .66667s ease-in-out;
  z-index: 1;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 1s .66667s ease-in-out;
  -o-transition: transform 1s .66667s ease-in-out;
}

.fnc-slide__inner {
  background-position: center top;
  background-size: cover;
  height: 100%;
  position: relative;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

.m--before-sliding .fnc-slide__inner {
  transform: translate3d(-100%, 0, 0);
  -webkit-transform: translate3d(-100%, 0, 0);
}

.m--active-slide .fnc-slide__inner {
  transform: translate3d(0, 0, 0);
  transition: -webkit-transform 1s .66667s ease-in-out;
  transition: transform 1s .66667s ease-in-out;
  transition: transform 1s .66667s ease-in-out, -webkit-transform 1s .66667s ease-in-out;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 1s .66667s ease-in-out;
  -o-transition: transform 1s .66667s ease-in-out;
}

.fnc-slide__heading {
  margin-bottom: 10px;
  text-transform: uppercase;
}

.fnc-slide__heading-line {
  overflow: hidden;
  position: relative;
}

.m--before-sliding .fnc-slide__heading-line {
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
}

.m--active-slide .fnc-slide__heading-line {
  transform: translateY(0);
  transition: -webkit-transform 1.5s 1s;
  transition: transform 1.5s 1s;
  transition: transform 1.5s 1s, -webkit-transform 1.5s 1s;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transition: -webkit-transform 1.5s 1s;
  -o-transition: transform 1.5s 1s;
}

.m--previous-slide .fnc-slide__heading-line {
  transform: translateY(-100%);
  transition: -webkit-transform 1.5s;
  transition: transform 1.5s;
  transition: transform 1.5s, -webkit-transform 1.5s;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -webkit-transition: -webkit-transform 1.5s;
  -o-transition: transform 1.5s;
}

.fnc-slide__heading-line .fnc-slide__animation {
  display: block;
}

.m--before-sliding .fnc-slide__heading-line .fnc-slide__animation {
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
}

.m--active-slide .fnc-slide__heading-line .fnc-slide__animation {
  transform: translateY(0);
  transition: -webkit-transform 1.5s 1s;
  transition: transform 1.5s 1s;
  transition: transform 1.5s 1s, -webkit-transform 1.5s 1s;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transition: -webkit-transform 1.5s 1s;
  -o-transition: transform 1.5s 1s;
}

.m--previous-slide .fnc-slide__heading-line .fnc-slide__animation {
  transform: translateY(100%);
  transition: -webkit-transform 1.5s;
  transition: transform 1.5s;
  transition: transform 1.5s, -webkit-transform 1.5s;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -webkit-transition: -webkit-transform 1.5s;
  -o-transition: transform 1.5s;
}

.popup__item.popup__thanks {
  padding: 40px;
  text-align: center;
  z-index: 101;
}

.popup__thanks .popup__content {
  padding: 204px 48px;
}

.popup__thanks .title {
  padding-left: 0;
}

.popup__thanks .title::before {
  content: none;
}

.popup__thanks .popup__text {
  margin-top: 12px;
  padding: 3px 0 4px;
}

.widget {
  bottom: 152px;
  left: 48px;
  position: fixed;
  z-index: 50;
}

.widget__box {
  background-color: #362a2a;
}

.widget__open {
  display: block;
}

.widget__close {
  display: none;
}

.widget__btn {
  background-color: transparent;
  border: 2px solid #362a2a;
  box-shadow: inset 0 0 0 2px #a77c5a;
  height: 72px;
  padding: 12px;
  position: relative;
  transition: all .3s ease;
  width: 72px;
  z-index: 2;
  -webkit-box-shadow: inset 0 0 0 2px #a77c5a;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.widget__btn:hover {
  box-shadow: inset 0 0 0 1.5px #fff;
  -webkit-box-shadow: inset 0 0 0 1.5px #fff;
}

.widget_animate .widget__btn {
  box-shadow: inset 0 0 0 36px #fff;
  -webkit-box-shadow: inset 0 0 0 36px #fff;
}

.widget__btn::before {
  background-color: #a77c5a;
  bottom: calc(100% - 12px);
  content: '';
  height: 40px;
  position: absolute;
  width: 1px;
}

.widget__btn .image {
  cursor: pointer;
  transition: all .5s ease;
  fill: #a77c5a;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
}

.widget__btn:hover .image {
  fill: #fff;
}

.widget__content {
  background-color: #362a2a;
  bottom: 100%;
  display: none;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.widget__list {
  padding: 12px 0 42px;
}

.widget__list .social .flex {
  flex-direction: column;
  margin: 0;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
}

.widget__list .social.social_small .flex .flex__item {
  padding: 8px;
  width: 100%;
}

@media (max-width: 1830px) {
  .social .flex {
    margin: 0 -21px;
  }

  .social.social_small .flex {
    margin: 0 -12px;
  }

  .social .flex__item {
    padding: 0 21px;
  }

  .social.social_small .flex .flex__item {
    padding: 0 12px;
  }

  .swiper__block .submenu {
    padding: 202px 32px 0 88px;
  }
}

@media (max-width: 1685px) {
  body {
    font-size: 14px;
  }

  .text {
    font-size: 16px;
  }

  .container {
    padding: 0 32px;
  }

  .wrapper {
    max-width: 1440px;
  }

  .btn__box {
    padding: 8px 0;
  }

  .btn__box::before {
    width: calc(100% - 16px);
  }

  .btn__box:hover::before {
    height: calc(100% - 16px);
  }

  .btn__box::after {
    right: -24px;
    width: 40px;
  }

  .btn__box:hover::after,
  .btn__box:active::after,
  .btn_black .btn__box:active::after {
    right: 8px;
  }

  .btn__content {
    min-width: 208px;
    padding: 10px 10px 9px;
  }

  .title {
    margin-bottom: 56px;
    margin-left: 72px;
    padding-left: 32px;
  }

  .title::before {
    height: 56px;
  }

  .title_short {
    width: calc(100% - 672px);
  }

  .title__content {
    font-size: 48px;
  }

  .subtitle {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .subsubtitle {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .close {
    height: 32px;
    right: 16px;
    top: 16px;
    width: 40px;
  }

  .links__item:not(:last-child) {
    margin-bottom: 8px;
  }

  .links__link {
    padding: 2px 0 3px;
  }

  .animation_active .title::before {
    height: 56px;
  }

  .audience {
    padding: 56px 0;
  }

  .contacts > .flex > .flex__item {
    max-width: 692px;
  }

  .contacts__content {
    padding: 128px 0 96px;
  }

  .contacts__content .intro__title {
    margin-bottom: 32px;
  }

  .contacts__info:not(:last-child) {
    margin-bottom: 56px;
  }

  .contacts__info > .flex {
    margin: -8px;
  }

  .contacts__info > .flex > .flex__item {
    max-width: 312px;
    padding: 8px;
  }

  .contacts__info .contacts__address:not(:last-child) {
    margin-bottom: 8px;
  }

  .contacts__line {
    padding-bottom: 32px;
  }

  .contacts__line > .flex {
    margin: -16px;
  }

  .contacts__line > .flex > .flex__item {
    padding: 16px;
  }

  .contacts .social .flex {
    margin: -4px;
  }

  .contacts .social .flex__item {
    padding: 4px;
  }

  .enumeration__item {
    margin-bottom: 8px;
  }

  .enumeration .enumeration__item .enumeration__line {
    padding-left: 72px;
  }

  .enumeration__line::before {
    width: 56px;
  }

  .enumeration__line::after {
    width: 16px;
  }

  .error {
    padding: 96px 0 32px;
  }

  .error__code {
    font-size: 360px;
    margin-bottom: 8px;
  }

  .error__description {
    font-size: 36px;
    margin-bottom: 32px;
  }

  .error .btn {
    padding: 0 24px;
  }

  .faq {
    padding: 72px 0;
  }

  .faq__table {
    max-width: 1000px;
  }

  .faq__item {
    margin-bottom: 16px;
  }

  .faq__header {
    padding: 12px 56px 12px 24px;
  }

  .faq__header::before {
    height: 8px;
    right: 24px;
    width: 8px;
  }

  .faq__content {
    padding: 12px 56px 12px 24px;
  }

  .feedback {
    padding: 104px 0 136px;
  }

  .feedback .picture {
    padding-right: 16px;
    padding-top: 16px;
  }

  .feedback .picture .border {
    height: calc(100% - 16px);
    width: calc(100% - 16px);
  }

  .feedback__info {
    padding: 0 32px 0 56px;
  }

  .feedback__info .quotation {
    margin-bottom: 24px;
  }

  .feedback__info .quotation__text {
    font-size: 36px;
    padding: 88px 0 24px;
  }

  .flip {
    max-width: 1280px;
  }

  .flip__wrapper {
    height: calc(100vh - 104px);
    min-height: 500px;
  }

  .flip__card::before {
    bottom: 36px;
    font-size: 32px;
  }

  .flip__card {
    box-shadow: inset 0 0 40px 0 rgba(54, 42, 42, .2);
    padding-bottom: 96px;
    padding-top: 96px;
    -webkit-box-shadow: inset 0 0 40px 0 rgba(54, 42, 42, .2);
  }

  .flip__card_front::before {
    right: 80px;
  }

  .flip__card_front {
    padding-left: 40px;
    padding-right: 80px;
  }

  .flip__card_back::before {
    left: 80px;
  }

  .flip__card_back {
    padding-left: 80px;
    padding-right: 40px;
  }

  .flip__item:first-child .flip__card_front {
    padding-left: 80px;
  }

  .flip__item:last-child .flip__card_back {
    padding-right: 80px;
  }

  .footer {
    font-size: 16px;
  }

  .footer__content {
    padding: 24px 0;
  }

  .footer .logo {
    height: 32px;
    margin-right: 24px;
  }

  .copyrite__item {
    padding: 1px 16px;
  }

  .copyrite__icon {
    height: 16px;
    margin-right: 8px;
    width: 16px;
  }

  .form__content .flex {
    margin: -20px -16px;
  }

  .form__content .flex__item_btn {
    min-width: 264px;
    width: 264px;
  }

  .form__content .flex__item_beforebtn {
    width: calc(100% - 264px);
  }

  .form__content .flex__item {
    padding: 20px 16px;
  }

  .form__input_big {
    height: 48px;
  }

  .form__error {
    font-size: 10px;
  }

  .form__type {
    font-size: 16px;
    margin-right: 8px;
  }

  .form__warning {
    font-size: 12px;
    padding: 4px 0;
  }

  .header__sticky {
    padding: 8px 0;
  }

  .header .logo {
    height: 52px;
    margin-right: 32px;
  }

  .header .btn {
    margin-left: 32px;
  }

  .header .btn__content {
    min-width: 120px;
    padding: 4px 16px;
  }

  .intro__content {
    max-width: 1240px;
    padding: 90px 0;
  }

  .intro__content > .flex {
    margin: -40px;
  }

  .intro__content > .flex > .flex__item {
    padding: 40px;
  }

  .intro__content > .flex > .flex__item:first-child {
    max-width: 740px;
    width: calc(100% - 504px);
  }

  .intro__content > .flex > .flex__item:last-child {
    width: 504px;
  }

  .intro__title {
    font-size: 45px;
  }

  .intro__info .text {
    margin-top: 16px;
  }

  .intro__form {
    padding: 32px;
  }

  .menu .phone {
    font-size: 24px;
    margin-left: 32px;
  }

  .menu__list {
    margin: 0 -16px;
  }

  .menu__item {
    padding: 0 16px;
  }

  .menu__link {
    font-size: 16px;
    padding: 4px 0;
  }

  .pagination__info {
    margin-bottom: 56px;
    padding: 0 136px 0 104px;
  }

  .pagination__lines {
    margin-left: 16px;
    width: 490px;
  }

  .popup__item {
    max-width: 832px;
    padding: 16px;
    width: calc(100% - 64px);
  }

  .popup__content {
    padding: 56px 104px;
  }

  .popup__content .title {
    margin: 0 0 40px;
  }

  .popup__content .subsubtitle {
    margin-bottom: 32px;
  }

  .portfolio {
    padding: 72px 0 80px;
  }

  .quotation__container {
    padding: 0 136px;
  }

  .quotation_decoration {
    padding: 72px 0;
  }

  .quotation_decoration .quotation__content {
    padding: 32px 72px;
  }

  .quotation__text {
    font-size: 48px;
    padding-top: 64px;
  }

  .quotation__text::before {
    height: 24px;
    width: 32px;
  }

  .quotation_small .quotation__text {
    font-size: 24px;
    padding: 72px 0 12px;
  }

  .quotation_horizontal {
    padding: 72px 0;
  }

  .quotation_horizontal .container {
    padding: 0 136px;
  }

  .quotation_horizontal .quotation__text {
    font-size: 24px;
    padding-left: 104px;
  }

  .reason {
    padding-top: 72px;
  }

  .reason .slider__content {
    margin: -28px -16px;
  }

  .reason .slider__item {
    padding: 28px 16px;
  }

  .reason .subtitle {
    margin-bottom: 16px;
    padding-left: 120px;
  }

  .reason__icon {
    margin-right: 24px;
    padding-right: 16px;
    width: 120px;
  }

  .reason__text {
    max-width: 272px;
  }

  .slider__arrows {
    margin-top: 24px;
  }

  .slider__button::before {
    border-color: transparent transparent transparent #a77b5a;
    border-style: solid;
    border-width: 3.5px 0 3.5px 16px;
    height: 0;
    top: -3px;
    width: 0;
  }

  .slider__button {
    width: 56px;
  }

  .slider__arrow::before {
    height: 40px;
    width: 40px;
  }

  .slider__arrow_prev {
    margin-right: 8px;
  }

  .slider__arrow_next {
    margin-left: 8px;
  }

  .slider__arrow {
    height: 40px;
  }

  .slider__line {
    max-width: 490px;
  }

  .slider__line .slider__arrows {
    margin-right: 32px;
    padding: 0 20px;
  }

  .slider__progress {
    width: calc(100% - 200px);
  }

  .social_small .social__link .image {
    height: 24px;
    width: 24px;
  }

  .submenu__title {
    font-size: 36px;
    margin-bottom: 56px;
  }

  .submenu__item:not(:last-child) {
    margin-bottom: 32px;
  }

  .submenu__link {
    font-size: 24px;
    padding-right: 32px;
  }

  .submenu__link:active {
    padding-left: 32px;
  }

  .submenu__link:active::before {
    width: 24px;
  }

  .summary {
    padding-right: 32px;
  }

  .summary__item {
    margin-bottom: 48px;
  }

  .summary__content {
    font-size: 24px;
  }

  .summary__number {
    font-size: 96px;
  }

  .swiper__block .submenu {
    padding: 136px 32px 0 68px;
  }

  .tabs__pagination {
    margin-bottom: 48px;
    margin-left: 136px;
  }

  .tabs__pagination li {
    padding: 0 68px;
  }

  .tabs__pagination li button {
    font-size: 24px;
    padding: 3px 24px 4px;
  }

  .popup__item.popup__thanks {
    padding: 24px;
  }

  .popup__thanks .popup__content {
    padding: 128px 32px;
  }

  .popup__thanks .popup__text {
    margin-top: 8px;
    padding: 2px 0 3px;
  }

  .widget {
    bottom: 96px;
    left: 32px;
  }

  .widget__btn {
    height: 48px;
    padding: 8px;
    width: 48px;
  }

  .widget_animate .widget__btn {
    box-shadow: inset 0 0 0 24px #fff;
    -webkit-box-shadow: inset 0 0 0 24px #fff;
  }

  .widget__btn::before {
    bottom: calc(100% - 8px);
    height: 24px;
  }

  .widget__list {
    padding: 8px 0 26px;
  }

  .widget__list .social.social_small .flex .flex__item {
    padding: 12px;
  }
}

@media (max-width: 1279px) {
  .contacts__info > .flex > .flex__item {
    width: 50%;
  }

  .contacts__info > .flex > .flex__item:last-child {
    width: 100%;
  }

  .header .btn {
    margin-left: 0;
    margin-top: 32px;
  }

  .menu {
    height: 48px;
    pointer-events: all;
    width: 60px;
  }

  .menu__decoration {
    background-color: #362a2a;
    height: 100vh;
    left: 0;
    position: absolute;
    top: 0;
    transform: translateX(-100%);
    transition: -webkit-transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease;
    width: 100vw;
    z-index: 2;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -webkit-transition: -webkit-transform .5s ease;
    -o-transition: transform .5s ease;
  }

  .menu__container {
    display: block;
    height: 100%;
    overflow: auto;
    text-align: center;
  }

  .menu .phone {
    font-size: 28px;
    margin-left: 0;
    margin-top: 32px;
  }

  .menu__list {
    flex-direction: column;
    margin: 0 -8px;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
  }

  .menu__item {
    padding: 0 8px;
  }

  .menu__link {
    font-size: 28px;
    padding: 12px 0;
  }

  .menu__btn {
    background-color: transparent;
    border: none;
    display: block;
    height: 100%;
    padding: 0;
    position: relative;
    width: 100%;
    z-index: 2;
  }

  .menu__content {
    background-color: #362a2a;
    height: 100vh;
    padding: 80px 20px;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: -webkit-transform 0s 0s ease;
    transition: transform 0s 0s ease;
    transition: transform 0s 0s ease, -webkit-transform 0s 0s ease;
    width: 100vw;
    z-index: 1;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -webkit-transition: -webkit-transform 0s 0s ease;
    -o-transition: transform 0s 0s ease;
  }

  .pagination__info {
    padding-right: 32px;
  }

  .social .flex {
    margin: 0 -8px;
  }

  .social .flex__item {
    padding: 0 8px;
  }

  .submenu__title {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .swiper__block .submenu {
    padding: 136px 16px 0 32px;
  }

  .swiper__block:first-child .submenu {
    padding: 40px 8px 24px 128px;
  }

  .swiper__block:last-child .submenu {
    padding: 40px 128px 24px 8px;
  }
}

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

  .title {
    margin-bottom: 24px;
    margin-left: 0;
  }

  .title::before {
    height: 46px;
  }

  .title_short {
    width: 100%;
  }

  .title__content {
    font-size: 40px;
  }

  .mobile {
    display: block;
  }

  .desktop {
    display: none;
  }

  .audience {
    padding: 32px 0;
  }

  .contacts {
    padding: 70px 0 20px;
  }

  .contacts > .flex {
    align-items: center;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-align: center;
    -ms-flex-direction: column;
  }

  .contacts > .flex > .flex__item {
    max-width: 100%;
    width: 100%;
  }

  .contacts__content {
    padding: 20px 0;
  }

  .contacts__content .intro__title {
    margin-bottom: 24px;
  }

  .contacts__info:not(:last-child) {
    margin-bottom: 40px;
  }

  .contacts__info > .flex {
    margin: -20px;
  }

  .contacts__info > .flex > .flex__item {
    max-width: 352px;
    padding: 20px;
    width: 33.333%;
  }

  .contacts__info > .flex > .flex__item:last-child {
    width: 33.333%;
  }

  .contacts__line {
    padding-bottom: 24px;
  }

  .contacts__line > .flex {
    margin: -8px;
  }

  .contacts__line > .flex > .flex__item {
    max-width: 176px;
    padding: 8px;
  }

  .error__code {
    line-height: 1;
    margin-bottom: 32px;
  }

  .faq {
    padding: 56px 0;
  }

  .feedback {
    padding: 32px 0;
  }

  .feedback .flex {
    flex-direction: column-reverse;
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column-reverse;
  }

  .feedback .flex__item:first-child {
    width: 100%;
  }

  .feedback .flex__item:last-child {
    width: 100%;
  }

  .feedback .picture {
    padding: 16px 40px 24px;
  }

  .feedback .picture .border {
    height: 100%;
    right: 24px;
    width: calc(100% - 80px);
  }

  .feedback__info {
    padding: 0 128px 32px;
  }

  .feedback__info .quotation__text {
    font-size: 32px;
    line-height: 1.4;
    padding: 48px 0 0;
  }

  .feedback_reverse .flex {
    flex-direction: column-reverse;
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column-reverse;
  }

  .footer {
    font-size: 14px;
  }

  .footer .logo {
    margin-right: 16px;
  }

  .copyrite__item {
    padding: 0 8px;
  }

  .intro__content {
    padding: 84px 0;
  }

  .intro__content > .flex {
    margin: -20px;
  }

  .intro__content > .flex > .flex__item {
    padding: 20px;
  }

  .intro__content > .flex > .flex__item:first-child {
    width: calc(100% - 464px);
  }

  .intro__content > .flex > .flex__item:last-child {
    width: 464px;
  }

  .intro__title {
    font-size: 35px;
  }

  .intro__info .text {
    margin-top: 24px;
  }

  .pagination .slider .slider__line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 24px auto 0;
  }

  .pagination__info {
    margin-bottom: 24px;
    padding: 0 40px;
  }

  .pagination__lines {
    display: none;
  }

  .popup__item {
    max-width: 688px;
  }

  .popup__content {
    padding: 56px 32px;
  }

  .portfolio {
    padding: 56px 0;
  }

  .quotation__container {
    padding: 0 40px;
  }

  .quotation_decoration {
    padding: 56px 0;
  }

  .quotation_decoration .quotation__container {
    padding: 0 112px;
  }

  .quotation_decoration .quotation__content {
    padding: 32px 16px;
  }

  .quotation__text {
    font-size: 40px;
    padding-top: 48px;
  }

  .quotation_small .quotation__text {
    padding: 56px 0 0;
  }

  .quotation_horizontal {
    padding: 32px 0 56px;
  }

  .quotation_horizontal .container {
    padding: 0 40px;
  }

  .quotation_horizontal .quotation__text {
    padding-left: 88px;
  }

  .reason {
    padding-top: 56px;
  }

  .reason {
    overflow: visible;
  }

  .reason .slider__content {
    display: block;
    margin: 0;
  }

  .reason .slider__item {
    padding: 0 8px 0 0;
    width: 600px;
  }

  .reason .subtitle {
    margin-bottom: 8px;
  }

  .slider__arrow::before {
    height: 48px;
    width: 48px;
  }

  .slider__arrow_prev::before {
    left: 15%;
  }

  .slider__arrow_next::before {
    right: 15%;
  }

  .slider__arrow {
    height: 48px;
  }

  .slider__line {
    margin: 36px auto 0;
    max-width: 496px;
  }

  .slider__line .slider__arrows {
    margin-right: 16px;
    padding: 0 16px;
  }

  .slider__progress {
    width: calc(100% - 176px);
  }

  .social .flex {
    margin: 0 -12px;
  }

  .social .flex__item {
    padding: 0 12px;
  }

  .submenu__title {
    line-height: 1;
    padding-right: 40px;
  }

  .submenu__title::after {
    left: calc(100% - 32px);
  }

  .submenu__title:hover::after {
    width: 32px;
  }

  .submenu__link {
    padding-right: 0;
  }

  .submenu__link:active {
    padding-left: 0;
  }

  .submenu__link::before {
    content: none;
  }

  .summary {
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: -4px;
    padding-right: 0;
    -webkit-box-align: start;
    -webkit-box-pack: justify;
    -ms-flex-align: start;
    -ms-flex-pack: justify;
    -ms-flex-wrap: wrap;
  }

  .summary__item {
    margin-bottom: 0;
    max-width: 192px;
    padding: 4px;
    width: 33.333%;
  }

  .summary__content {
    font-size: 16px;
    text-align: center;
  }

  .summary__number {
    font-size: 56px;
  }

  .tabs__pagination {
    margin-bottom: 16px;
    margin-left: 72px;
  }

  .popup__item.popup__thanks {
    padding: 16px;
  }

  .widget {
    left: 40px;
  }
}

@media (max-width: 900px) {
  .audience__grid .flex {
    flex-direction: column;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
  }

  .flip__wrapper {
    height: calc(100vh - 142px);
    min-height: 450px;
  }

  .flip__card::before {
    bottom: 4px;
    font-size: 16px;
  }

  .flip__card {
    padding-bottom: 24px;
    padding-top: 24px;
  }

  .flip__card_front::before {
    right: 24px;
  }

  .flip__card_front {
    padding-left: 20px;
    padding-right: 20px;
  }

  .flip__card_back::before {
    left: auto;
    right: 24px;
  }

  .flip__card_back {
    padding-left: 20px;
    padding-right: 20px;
    transform: rotateX(180deg);
    -webkit-transform: rotateX(180deg);
  }

  .flip__item {
    height: 50%;
    left: 0;
    top: 50%;
    transform-origin: top center;
    width: 100%;
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
  }

  .flip__item_left {
    transform: rotateX(180deg);
    -webkit-transform: rotateX(180deg);
  }

  .flip__item:first-child .flip__card_front {
    padding-left: 20px;
  }

  .flip__item:last-child .flip__card_back {
    padding-right: 20px;
  }

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

  .intro__content > .flex > .flex__item:first-child {
    width: 100%;
  }

  .intro__content > .flex > .flex__item:last-child {
    width: 100%;
  }

  .intro__title {
    font-size: 41px;
  }

  .portfolio .logo {
    max-height: 65%;
  }

  .reason .slider__item {
    width: 420px;
  }

  .reason .subtitle {
    padding-left: 88px;
  }

  .reason__icon {
    padding-right: 12px;
    width: 88px;
  }
}

@media (max-width: 768px) {
  .contacts__info > .flex > .flex__item {
    width: 50%;
  }

  .contacts__info > .flex > .flex__item:last-child {
    width: 100%;
  }

  .footer__content {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }

  .footer__requisites {
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
    width: 100%;
  }

  .copyrite {
    flex-direction: column;
    margin-right: 0;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
  }

  .copyrite__item:first-child {
    padding-right: 0;
  }

  .copyrite__item:last-child {
    border-left: none;
    padding-left: 0;
  }

  .form__content .flex {
    align-items: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
  }

  .form__content .flex__item {
    width: 50%;
  }
}

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

  .title {
    padding-left: 24px;
  }

  .title::before {
    height: 32px;
  }

  .title__content {
    font-size: 26px;
  }

  .subtitle {
    font-size: 22px;
  }

  .contacts__info > .flex > .flex__item {
    width: 100%;
  }

  .form__content .flex__item {
    width: 100%;
  }

  .intro__title {
    font-size: 27px;
  }

  .intro__form {
    padding: 32px 20px;
  }

  .intro__form .subsubtitle {
    margin-bottom: 40px;
  }

  .popup__item {
    height: 100%;
    width: 100%;
  }

  .popup__content {
    padding: 56px 16px;
  }

  .popup__content .title {
    margin: 0 0 32px;
  }

  .reason .slider__item {
    width: 300px;
  }

  .reason .subtitle {
    padding-left: 0;
  }

  .reason__icon {
    display: none;
  }
}