@import url(normalize.css);
@font-face {
  font-family: 'Bebas Neue';
  src: url("fonts/BebasNeueRegular.eot");
  src: url("fonts/BebasNeueRegular.eot?#iefix") format("embedded-opentype"), url("fonts/BebasNeueRegular.woff") format("woff"), url("fonts/BebasNeueRegular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Bebas Neue';
  src: url("fonts/BebasNeueBold.eot");
  src: url("fonts/BebasNeueBold.eot?#iefix") format("embedded-opentype"), url("fonts/BebasNeueBold.woff") format("woff"), url("fonts/BebasNeueBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Geometria';
  src: url("fonts/Geometria-Light.eot");
  src: url("fonts/Geometria-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Geometria-Light.woff") format("woff"), url("fonts/Geometria-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Geometria';
  src: url("fonts/Geometria.eot");
  src: url("fonts/Geometria.eot?#iefix") format("embedded-opentype"), url("fonts/Geometria.woff") format("woff"), url("fonts/Geometria.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Geometria';
  src: url("fonts/Geometria-Italic.eot");
  src: url("fonts/Geometria-Italic.eot?#iefix") format("embedded-opentype"), url("fonts/Geometria-Italic.woff") format("woff"), url("fonts/Geometria-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Geometria';
  src: url("fonts/Geometria-Medium.eot");
  src: url("fonts/Geometria-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/Geometria-Medium.woff") format("woff"), url("fonts/Geometria-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Geometria';
  src: url("fonts/Geometria-Bold.eot");
  src: url("fonts/Geometria-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Geometria-Bold.woff") format("woff"), url("fonts/Geometria-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

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

html {
  width: 100%;
  height: 100%;
}

body {
  font-family: 'Geometria';
  font-size: 16px;
  color: #131313;
  height: 100%;
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #F5F6F8;
}

body * {
  outline: none;
}

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

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

input, button, textarea {
  font-family: 'Geometria';
  font-weight: 400;
}

input[type="text"], textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

input[type="text"]::-ms-clear, textarea::-ms-clear {
  display: none;
}

input {
  outline: none;
}

button {
  border: 0;
  outline: none;
  cursor: pointer;
  background: none;
  padding: 0;
}

button:active, button:focus {
  outline: none !important;
}

button::-moz-focus-inner {
  border: 0 !important;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.main {
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

img {
  display: block;
  max-width: 100%;
}

img.img-overflow {
  max-width: none;
}

svg {
  display: block;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.col {
  padding-left: 15px;
  padding-right: 15px;
}

.btn {
  border: 2px solid #D7B46A;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  line-height: 100%;
  white-space: nowrap;
  padding: 12px 24px;
  color: #fff;
  position: relative;
  z-index: 1;
  -webkit-transition: color .3s;
  transition: color .3s;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.btn::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #D7B46A;
  -webkit-transition: .3s;
  transition: .3s;
  z-index: -1;
}

.btn:hover {
  color: #131313;
}

.btn:hover::before {
  left: 0;
  width: 100%;
}

.btn-bg {
  color: #131313;
}

.btn-bg::before {
  left: 0;
  width: 100%;
}

.btn-bg:hover {
  color: #fff;
}

.btn-bg:hover::before {
  left: auto;
  width: 0;
}

.bg-pl {
  position: relative;
  z-index: 1;
}

.bg-pl::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .62;
  z-index: -1;
}

.contact-item {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
}

.contact-item b {
  font-size: 22px;
  font-family: 'Bebas Neue';
  color: #D7B46A;
  font-weight: 700;
  margin-right: 8px;
  white-space: nowrap;
}

.section {
  padding-top: 90px;
  padding-bottom: 90px;
}

h2 {
  font-size: 48px;
  line-height: 100%;
  font-weight: 700;
  font-family: 'Bebas Neue';
}

.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  margin-bottom: 60px;
}

.section-title--white {
  color: #fff;
}

.section-title__icon {
  margin-top: 6px;
}

.section-title h2 {
  position: relative;
}

.section-title h2::before {
  content: '';
  position: absolute;
  right: 100%;
  top: calc(50% - 3px);
  height: 3px;
  width: 0px;
  margin-right: 18px;
  background-color: #D7B46A;
  -webkit-transition: .4s;
  transition: .4s;
  -webkit-transition-delay: .4s;
          transition-delay: .4s;
}

.section-title h2::after {
  content: '';
  position: absolute;
  left: 100%;
  top: calc(50% - 3px);
  height: 3px;
  width: 0px;
  margin-left: 18px;
  background-color: #D7B46A;
  -webkit-transition: .4s;
  transition: .4s;
  -webkit-transition-delay: .4s;
          transition-delay: .4s;
}

.section-title.aos-animate h2::before, .section-title.aos-animate h2::after {
  width: 140px;
}

.section-title--open h2::after, .section-title--open h2::before {
  width: 140px;
}

.header {
  color: #fff;
  padding: 10px 0;
  -webkit-transition: background-color .3s, color .3s, -webkit-box-shadow .3s;
  transition: background-color .3s, color .3s, -webkit-box-shadow .3s;
  transition: background-color .3s, color .3s, box-shadow .3s;
  transition: background-color .3s, color .3s, box-shadow .3s, -webkit-box-shadow .3s;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 98;
}

.header.scroll {
  background-color: #fff;
  color: #131313;
  -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.18);
          box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.18);
}

.header.scroll .header__logo img:first-child {
  opacity: 0;
  visibility: hidden;
}

.header.scroll .header__logo img:last-child {
  opacity: 1;
  visibility: visible;
}

.header.scroll .header__btn .btn {
  color: #131313;
}

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

.header__logo {
  position: relative;
}

.header__logo img {
  max-width: 120px;
  -webkit-transition: .3s;
  transition: .3s;
}

.header__logo img:last-child {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

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

.header__item {
  margin-right: 34px;
  text-transform: uppercase;
  font-family: 'Bebas Neue';
  font-size: 18px;
  line-height: 100%;
  font-weight: 700;
  letter-spacing: 0.1em;
}

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

.header__item a {
  position: relative;
}

.header__item a::before {
  content: '';
  position: absolute;
  right: 0;
  top: 100%;
  width: 0%;
  height: 2px;
  background-color: #D7B46A;
  -webkit-transition: .3s;
  transition: .3s;
}

.header__item a:hover::before {
  width: 100%;
  left: 0;
}

.header__burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.header__burger.active .header__icon span:nth-child(1) {
  -webkit-transform: translateY(7px);
          transform: translateY(7px);
}

.header__burger.active .header__icon span:nth-child(3) {
  -webkit-transform: translateY(-7px);
          transform: translateY(-7px);
}

.header__burger > span {
  font-size: 20px;
  margin-right: 12px;
  font-weight: 700;
  font-family: 'Bebas Neue';
}

.header__icon span {
  height: 3px;
  width: 30px;
  background-color: #000;
  display: block;
  margin-bottom: 4px;
  -webkit-transition: .4s;
  transition: .4s;
}

.header__mob-btn {
  text-align: center;
}

.header__mob-btn .btn {
  color: #131313;
}

.main-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 2;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.main-section__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

.main-section__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-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 150px;
  padding-bottom: 110px;
  color: #fff;
}

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

.main-section__video::before {
  opacity: .45;
}

.main-section__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-section__video::before {
  z-index: 1;
}

.main-section__title {
  font-size: 120px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  font-family: 'Bebas Neue';
  text-align: center;
  position: relative;
  color: #D7B46A;
  z-index: 1;
}

.main-section__title span {
  display: block;
}

.main-section__title span:last-child {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  -webkit-transform: translateX(-4px) translateY(-4px);
          transform: translateX(-4px) translateY(-4px);
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 1px #D7B46A;
}

.main-section__sub {
  font-size: 24px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  text-align: center;
  position: relative;
  padding-bottom: 16px;
  margin-top: 30px;
  padding-top: 20px;
}

.main-section__sub::before {
  content: '';
  width: 100px;
  height: 4px;
  background-color: #D7B46A;
  left: calc(50% - 50px);
  bottom: 0;
  position: absolute;
}

.main-section__row {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: -30px;
  margin-top: 20px;
}

.main-section__col {
  width: 33.333333%;
  margin-bottom: 30px;
}

.main-section__item {
  height: 100%;
  padding: 36px 24px;
  background: rgba(215, 180, 106, 0.05);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border: 3px solid #D7B46A;
}

.main-section__btn {
  margin-top: 30px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-section__btn .btn {
  display: block;
  width: 100%;
  max-width: 206px;
  text-align: center;
}

.main-section__btn-row .main-section__btn {
  margin-top: 20px;
}

.main-section__desc {
  text-align: center;
  font-family: 'Bebas Neue';
  letter-spacing: 0.02em;
  line-height: 110%;
  font-weight: 700;
  font-size: 38px;
  margin-top: 30px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.main-section__desc span {
  color: #ff3540;
}

.main-section__code {
  font-size: 32px;
  font-weight: 400;
  margin-top: 20px;
  text-align: center;
  font-family: 'Bebas Neue';
}

.main-section__code span {
  color: #ff3540;
}

.services {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.services__img-1 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.services__img-1 img {
  max-width: none;
}

.services__img-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.services__img-2 img {
  max-width: none;
}

.services__container {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.services__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}

.services__item {
  font-size: 24px;
  line-height: 100%;
  font-weight: 700;
  font-family: 'Bebas Neue';
  margin-right: 60px;
  -webkit-transition: color .3s;
  transition: color .3s;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

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

.services__item:last-child::before {
  display: none;
}

.services__item::before {
  content: '';
  position: absolute;
  left: 100%;
  top: calc(50% - 2px);
  margin-left: 7px;
  height: 3px;
  width: 46px;
  background-color: #D7B46A;
  -webkit-transition: .3s;
  transition: .3s;
}

.services__item.active {
  color: #D7B46A;
}

.services__item.active::before {
  width: 0;
}

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

.services__block {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .6s;
  transition: .6s;
}

.services__block.active {
  opacity: 1;
  visibility: visible;
}

.services__block.active .services__td {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0) !important;
          transform: translateX(0) !important;
}

.services__block.active .services__spec {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.services__block:nth-child(2) {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.services__block:nth-child(3) {
  -webkit-transform: translateX(-200%);
          transform: translateX(-200%);
}

.services__block:nth-child(4) {
  -webkit-transform: translateX(-300%);
          transform: translateX(-300%);
}

.services__block:nth-child(5) {
  -webkit-transform: translateX(-400%);
          transform: translateX(-400%);
}

.services__block:nth-child(6) {
  -webkit-transform: translateX(-500%);
          transform: translateX(-500%);
}

.services__tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 9px;
  padding-bottom: 9px;
  position: relative;
}

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

.services__tr::before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #D7B46A;
  position: absolute;
  left: 0;
  bottom: 0;
}

.services__td {
  -webkit-transition: .6s;
  transition: .6s;
  opacity: 0;
  visibility: hidden;
  font-size: 17px;
  font-weight: 500;
  line-height: 125%;
  text-transform: uppercase;
}

.services__td:first-child {
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
}

.services__td:first-child small {
  font-size: 70%;
}

.services__td:last-child {
  -webkit-transform: translateX(40px);
          transform: translateX(40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 30px;
  color: #D7B46A;
}

.services__td:last-child span {
  margin-left: 30px;
  width: 60px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: right;
  white-space: nowrap;
  text-transform: none;
}

.services__td:last-child span:first-child {
  margin-left: 0px;
}

.services__title {
  margin-top: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 22px;
}

.services__sub {
  font-size: 32px;
  line-height: 100%;
  font-weight: 700;
  font-family: 'Bebas Neue';
}

.services__sub:last-child {
  color: #D7B46A;
}

.services__spec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 10px;
  height: 23px;
  -webkit-transform: translateX(40px);
          transform: translateX(40px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .6s;
  transition: .6s;
}

.services__spec span {
  font-size: 23px;
  line-height: 100%;
  font-weight: 700;
  font-family: 'Bebas Neue';
  width: 60px;
  text-align: right;
  margin-left: 30px;
}

.services__spec span:first-child {
  margin-left: 0;
}

.services__desc {
  margin-top: 30px;
  font-size: 14px;
}

.gallery {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.gallery__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 230px);
  grid-gap: 10px;
}

.gallery__item {
  overflow: hidden;
  position: relative;
}

.gallery__item--video a::before {
  display: block !important;
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
  opacity: 1 !important;
  background: rgba(215, 180, 106, 0.4) url(../img/play-button.svg) center center no-repeat !important;
  background-size: 60px !important;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}

.gallery__item:hover img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.gallery__item a {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}

.gallery__item a::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(215, 180, 106, 0.75);
  background-image: url(../img/zoom-in.svg);
  background-position: center center;
  background-size: 40px;
  background-repeat: no-repeat;
  -webkit-transition: .5s;
  transition: .5s;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: .4;
  z-index: 1;
}

.gallery__item a:hover::before {
  opacity: 1;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.gallery__item:nth-child(1) {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 3;
}

.gallery__item:nth-child(2) {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
}

.gallery__item:nth-child(3) {
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 2;
}

.gallery__item:nth-child(4) {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
}

.gallery__item:nth-child(5) {
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 2;
  grid-row-end: 3;
}

.gallery__btn {
  text-align: center;
  margin-top: 20px;
}

.about {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
}

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

.about__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 5px solid #D7B46A;
  padding: 30px;
  width: calc(100% / 12 * 5 - 15px);
}

.about__content {
  width: calc(100% / 12 * 6 - 15px);
}

.about__title {
  font-size: 58px;
  line-height: 100%;
  padding-bottom: 12px;
  position: relative;
}

.about__title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 3px;
  background-color: #D7B46A;
}

.about__desc {
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 32px;
  font-size: 17px;
  line-height: 125%;
}

.about__list {
  margin-top: 50px;
}

.about__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 36px;
  padding-bottom: 6px;
}

.about__item::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, color-stop(-2.19%, #D7B46A), to(#fff));
  background: linear-gradient(90deg, #D7B46A -2.19%, #fff 100%);
}

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

.about__item b {
  font-size: 50px;
  line-height: 100%;
  color: #D7B46A;
  font-weight: 700;
  font-family: 'Bebas Neue';
  margin-bottom: -4px;
  white-space: nowrap;
}

.about__item span {
  margin-left: 30px;
  font-weight: 500;
  font-size: 20px;
  line-height: 125%;
  text-align: right;
}

.contacts {
  background: #F5F6F8 url(../img/contacts-bg.png) center center no-repeat;
  background-size: cover;
  position: relative;
}

.contacts__img {
  position: absolute;
  top: 105px;
  left: 10px;
}

.contacts__row {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: -30px;
  position: relative;
  z-index: 1;
}

.contacts__col {
  width: 33.33333%;
  margin-bottom: 30px;
}

.contacts__item {
  height: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
  padding: 40px 30px 40px;
}

.contacts__icon {
  margin-bottom: 36px;
}

.contacts__icon img {
  margin-left: auto;
  margin-right: auto;
}

.contacts__btn {
  margin-top: 30px;
  text-align: center;
}

.contacts__btn .btn {
  color: #131313 !important;
  width: 206px;
  display: block;
}

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

.contacts__btn-row .contacts__btn:last-child {
  margin-top: 20px;
}

.main-inner {
  text-align: left;
}

.main-inner .main-section__title {
  text-align: left;
  font-family: 'Geometria';
  letter-spacing: 12px;
  margin-left: -5px;
}

.main-inner .main-section__title span:last-child {
  display: none;
}

.main-inner__f {
  text-transform: uppercase;
  font-family: 'Bebas Neue';
  font-size: 80px;
  font-weight: 700;
  margin-top: 20px;
  letter-spacing: 4px;
}

.main-inner__info {
  padding: 36px 24px;
  background: rgba(215, 180, 106, 0.05);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border: 3px solid #D7B46A;
}

.main-inner__item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-size: 22px;
  font-weight: 500;
  position: relative;
}

.main-inner__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.main-inner__item:last-child::before {
  display: none;
}

.main-inner__item::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 50px;
  background: #D7B46A;
}

.main-inner__geo {
  font-size: 28px;
}

.main-inner__w-time {
  font-size: 16px;
}

.main-inner__info-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 75px;
}

.main-inner__info-container .main-inner__info {
  margin-top: 0;
}

.main-inner__btn {
  margin-top: 30px;
  text-align: center;
}

.main-inner__btn .btn {
  font-size: 14px;
  min-width: 200px;
  text-align: center;
}

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

.social__item {
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 50%;
  margin-right: 18px;
  position: relative;
  -webkit-transition: -webkit-box-shadow .5s;
  transition: -webkit-box-shadow .5s;
  transition: box-shadow .5s;
  transition: box-shadow .5s, -webkit-box-shadow .5s;
}

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

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

.social__item svg {
  width: 20px;
  height: 20px;
}

.social__item svg path {
  -webkit-transition: .5s;
  transition: .5s;
}

.social__item::before {
  content: '';
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%) scale(0);
          transform: translateX(-50%) translateY(-50%) scale(0);
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  z-index: -1;
}

.social__item:hover {
  -webkit-box-shadow: 0 0 12px 0 rgba(255, 255, 255, 0.8);
          box-shadow: 0 0 12px 0 rgba(255, 255, 255, 0.8);
}

.social__item:hover::before {
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
          transform: translateX(-50%) translateY(-50%) scale(1);
}

.social__item:hover svg path {
  fill: #D7B46A !important;
}

.f-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.f-gallery__item {
  position: relative;
  width: 33.33333%;
  padding-bottom: calc(33.33333% - 100px);
}

.f-gallery__item a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.f-gallery__item a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #D7B46A;
  opacity: .3;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: .5s;
  transition: .5s;
}

.f-gallery__item a:hover::before {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

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

.about-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.about-inner__img {
  position: relative;
  width: 50%;
}

.about-inner__img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-inner__content {
  width: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-left: 50px;
  padding-right: 15px;
  padding-top: 20px;
  padding-bottom: 50px;
}

.about-inner__title {
  padding-bottom: 0;
  margin-left: -2px;
}

.about-inner__title::before {
  display: none;
}

.about-inner__sub {
  font-size: 34px;
  font-family: 'Bebas Neue';
  letter-spacing: 3px;
  margin-top: 10px;
  padding-bottom: 15px;
  position: relative;
}

.about-inner__sub::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: #D7B46A;
}

.about-inner__container {
  max-width: 540px;
}

.team {
  background: #131313 url(../img/team-bg.png) center center;
}

.team__row {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: -40px;
}

.team__col {
  width: 33.33333%;
  margin-bottom: 50px;
}

.team__item {
  background: linear-gradient(135deg, #131313 0%, #D7B46A 100%);
}

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

.team__img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.team__img--empty {
  -o-object-fit: none;
     object-fit: none;
}

.team__img--empty img {
  width: 200px;
  height: 200px;
  left: calc(50% - 100px);
  top: calc(50% - 100px);
}

.team__content {
  background-color: #131313;
  color: #fff;
  padding: 15px;
  border-top: 0;
}

.team__sub {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 2px;
  font-family: 'Bebas Neue';
}

.team__name {
  font-size: 18px;
  margin-top: 8px;
}

.team__btn {
  margin-top: 14px;
  text-align: center;
}

.contacts-inner {
  overflow: hidden;
}

.contacts-inner__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
  z-index: 1;
}

.contacts-inner__row::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -1px;
  bottom: -1px;
  width: 100vw;
  background-color: #fff;
  border-top: 1px solid #D7B46A;
  border-bottom: 1px solid #D7B46A;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.contacts-inner__info {
  background-color: #fff;
  width: 100%;
  max-width: 400px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-left: 1px solid #D7B46A;
  border-right: 1px solid #D7B46A;
}

.contacts-inner__info .contacts__item {
  -webkit-box-shadow: none;
          box-shadow: none;
  height: auto;
  width: 100%;
}

.contacts-inner__info .contacts__btn .btn {
  width: auto;
  display: inline-block;
}

.contacts-inner__map {
  position: relative;
  padding-bottom: 500px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.contacts-inner__map-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% + (100vw - 1170px) / 2);
  height: 100%;
}

@media (max-width: 1679px) {
  .services__img-1 {
    left: -250px;
    top: -50px;
  }
  .services__img-2 {
    right: -200px;
    bottom: 100px;
  }
}

@media (max-width: 1199px) {
  .services__img-1, .services__img-2 {
    display: none;
  }
  .main-section__col {
    width: 50%;
  }
  .contacts__col {
    width: 50%;
  }
  .main-section__desc {
    font-size: 28px;
  }
  .contacts-inner__map-wrap {
    width: calc(100% + 15px);
  }
}

@media (min-width: 992px) {
  .gallery__slider .swiper-wrapper {
    -webkit-transform: none !important;
            transform: none !important;
  }
  .gallery__item:nth-child(1n + 6) {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
  .header__logo-mob, .header__burger, .header__mob-btn {
    display: none;
  }
}

@media (max-width: 991px) {
  .main-section__col {
    width: 100%;
    max-width: 400px;
  }
  .main-section__title {
    font-size: 100px;
  }
  .gallery__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-gap: 0;
    grid-template-columns: none;
    grid-template-rows: none;
  }
  .gallery__item a::before {
    display: none;
  }
  .gallery__item a {
    position: absolute;
    left: 0;
    top: 0;
  }
  .gallery__item {
    position: relative;
    padding-bottom: 28vw;
    width: 35vw;
    margin-right: 15px;
  }
  .gallery__item:last-child {
    margin-right: 0;
  }
  .gallery__item img {
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: none !important;
            transform: none !important;
  }
  .gallery__slider .swiper-wrapper {
    width: auto !important;
  }
  .gallery__slide {
    width: auto !important;
  }
  .main-section__container {
    min-height: 0;
  }
  .main-section__wrapper {
    padding-bottom: 90px;
  }
  .about__logo {
    display: none;
  }
  .about__content {
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .contacts__item {
    padding-left: 20px;
    padding-right: 20px;
  }
  .header__logo {
    display: none;
  }
  .header {
    color: #131313;
    background-color: #fff;
    -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.18);
            box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.18);
  }
  .header__btn {
    display: none;
  }
  .header__wrapper {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background-color: #fff;
    height: calc(100vh - 100%);
    padding: 50px 10px;
    overflow-y: auto;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: .5s;
    transition: .5s;
  }
  .header__wrapper.active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .header__item {
    font-size: 26px;
    text-align: center;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .header__item a::before {
    display: none;
  }
  .header__nav {
    display: block;
  }
  .main-section__code {
    font-size: 26px;
  }
  .main-section__wrapper {
    padding-top: 120px;
  }
  .contacts-inner__map {
    padding-bottom: 400px;
  }
  .about-inner__content {
    width: 60%;
    padding-left: 30px;
  }
  .about-inner__img {
    width: 50%;
  }
  .f-gallery__item {
    width: 50%;
    padding-bottom: calc(50% - 100px);
  }
  .f-gallery__item--hider {
    display: none;
  }
  .main-inner .main-section__title {
    text-align: center;
  }
  .main-inner__f {
    text-align: center;
  }
  .main-inner__info-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .social {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .services__item {
    padding: 0;
    margin-right: 0;
    margin-bottom: 20px;
    font-size: 28px;
    width: 33.3333%;
  }
  .services__item::before {
    display: none;
  }
  .services__header {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-bottom: 2px solid #D7B46A;
  }
  .contacts__col {
    width: 100%;
    max-width: 370px;
  }
  .contacts__img {
    display: none;
  }
  .main-section__desc {
    font-size: 22px;
  }
  .main-inner .main-section__title {
    font-size: 70px;
    letter-spacing: 8px;
    margin-left: 0;
  }
  .main-inner__f {
    font-size: 50px;
  }
  .main-inner__geo {
    font-size: 22px;
  }
  .main-inner__item {
    font-size: 18px;
  }
  .main-inner__w-time {
    font-size: 14px;
  }
  .about-inner__content {
    width: 100%;
    padding: 0 15px;
  }
  .about-inner__img {
    display: none;
  }
  .team__row {
    margin-bottom: -40px;
  }
  .team__col {
    width: 50%;
    margin-bottom: 40px;
  }
  .contacts-inner__info {
    max-width: 100%;
  }
  .contacts-inner__row {
    display: block;
  }
  .contacts-inner__map {
    padding-bottom: 300px;
  }
  .contacts-inner__map-wrap {
    width: 100%;
  }
  .contacts-inner__row::before {
    bottom: 0;
    border-bottom: 0;
  }
  .contacts-inner__info {
    border-bottom: 1px solid #D7B46A;
  }
}

@media (max-width: 575px) {
  h2 {
    font-size: 42px;
  }
  .about__title {
    font-size: 46px;
  }
  .about__desc {
    font-size: 15px;
    line-height: 144%;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row {
    margin-left: -10px;
    margin-right: -10px;
  }
  .col {
    padding-left: 10px;
    padding-right: 10px;
  }
  .main-section__item {
    padding-left: 15px;
    padding-right: 15px;
  }
  .main-section__row {
    margin-bottom: -20px;
  }
  .main-section__col {
    margin-bottom: 20px;
  }
  .main-section__title {
    font-size: 68px;
  }
  .main-section__sub {
    font-size: 30px;
    margin-top: 20px;
  }
  .contact-item {
    font-size: 14px;
  }
  .contact-item b {
    font-size: 18px;
  }
  .section-title {
    margin-bottom: 40px;
  }
  .section-title__icon {
    max-width: 68px;
  }
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .services__sub {
    font-size: 28px;
  }
  .services__item {
    width: 50%;
  }
  .services__td {
    font-size: 14px;
  }
  .services__td:last-child span {
    width: 52px;
  }
  .services__spec span {
    width: 46px;
    font-size: 20px;
  }
  .services__td:last-child span {
    margin-left: 15px;
  }
  .services__td:first-child {
    font-size: 12px;
  }
  .services__td:last-child {
    margin-left: 20px;
  }
  .services__block {
    display: none;
    -webkit-transform: none !important;
            transform: none !important;
  }
  .services__block.active {
    display: block;
  }
  .gallery__item {
    width: 70vw;
    padding-bottom: 50vw;
  }
  .main-section__wrapper {
    padding-bottom: 60px;
  }
  .about__item span {
    font-size: 14px;
    margin-left: 15px;
  }
  .about__item b {
    font-size: 30px;
  }
  .contacts__item {
    padding-left: 15px;
    padding-right: 15px;
  }
  .main-section__wrapper {
    padding-top: 130px;
  }
  .main-section__code {
    font-size: 22px;
  }
  .gallery__item--video a::before {
    background-size: 40px !important;
  }
  .about-inner__content {
    padding: 0 10px;
  }
  .about-inner__sub {
    font-size: 26px;
  }
  .f-gallery__item {
    padding-bottom: 40%;
  }
  .main-inner .main-section__title {
    font-size: 48px;
    letter-spacing: 5px;
  }
  .main-inner__f {
    text-align: center;
    font-size: 30px;
  }
  .main-inner__info-container {
    margin-top: 50px;
  }
  .main-inner__info-container .main-inner__info {
    width: 100%;
  }
  .main-inner__geo {
    font-size: 16px;
  }
  .main-inner__item {
    font-size: 16px;
  }
  .main-inner__w-time {
    font-size: 14px;
  }
  .main-inner__info {
    padding: 30px 15px;
  }
  .team__content {
    padding-left: 0;
    padding-right: 0;
  }
  .team__sub {
    font-size: 18px;
  }
  .team__name {
    font-size: 16px;
  }
  .team__img--empty img {
    width: 100px;
    height: 100px;
    left: calc(50% - 50px);
    top: calc(50% - 50px);
  }
  .team__row {
    margin-bottom: -30px;
  }
  .team__col {
    margin-bottom: 30px;
  }
  .team__btn .btn {
    font-size: 12px;
    display: block;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 992px) and (max-height: 799px) {
  .main-inner .main-section__title {
    font-size: 100px;
  }
  .main-inner__f {
    font-size: 60px;
    margin-top: 15px;
  }
  .main-inner__info-container {
    margin-top: 50px;
  }
  .main-inner__info {
    padding-top: 30px;
  }
  .main-inner__btn {
    margin-top: 20px;
  }
  .main-inner__geo {
    font-size: 24px;
  }
  .main-inner .main-section__wrapper {
    padding-top: 120px;
  }
}
