/* CSS Mini Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

body {
  overflow-x: hidden; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

th,
td {
  text-align: left;
  vertical-align: top; }

h1,
h2,
h3,
h4,
h5,
h6,
th,
td,
caption {
  font-weight: normal; }

img {
  border: 0; }

.adaptive-container {
  margin: 0 24px; }
  @media (min-width: 576px) {
    .adaptive-container {
      margin: 0 48px; } }
  @media (min-width: 768px) {
    .adaptive-container {
      margin: 0 auto;
      max-width: 640px;
      width: 640px; } }
  @media (min-width: 1024px) {
    .adaptive-container {
      max-width: 832px;
      width: 832px; } }
  @media (min-width: 1440px) {
    .adaptive-container {
      max-width: 1184px;
      width: 1184px; } }

@font-face {
  font-family: "HelveticaNeue";
  src: url("/static/fonts/HelveticaNeueRegular.e9d831cd3e51.eot");
  src: url("/static/fonts/HelveticaNeueRegular.e9d831cd3e51.eot?#iefix") format("embedded-opentype"), url("/static/fonts/HelveticaNeueRegular.e7aefb2efed2.woff") format("woff"), url("/static/fonts/HelveticaNeueRegular.c951bd086cec.ttf") format("truetype"), url("/static/fonts/HelveticaNeueRegular.d09821991c8c.svg#HelveticaNeueRegular") format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "HelveticaNeue";
  src: url("/static/fonts/HelveticaNeueBold.ee0f0d0c9c81.eot");
  src: url("/static/fonts/HelveticaNeueBold.ee0f0d0c9c81.eot?#iefix") format("embedded-opentype"), url("/static/fonts/HelveticaNeueBold.bfb05b418e7e.woff") format("woff"), url("/static/fonts/HelveticaNeueBold.bf633daefcb3.ttf") format("truetype"), url("/static/fonts/HelveticaNeueBold.1c8cc932b59c.svg#HelveticaNeueBold") format("svg");
  font-weight: 700;
  font-style: normal;
  font-display: swap; }

h1,
h2,
h3,
h4 {
  font-family: 'HelveticaNeue';
  font-style: normal;
  font-weight: 700;
  color: #000000;
  user-select: none; }

h1 {
  font-size: 40px;
  line-height: 40px; }
  @media (min-width: 768px) {
    h1 {
      font-size: 64px;
      line-height: 64px; } }

h2 {
  margin-bottom: 16px;
  font-size: 40px;
  line-height: 40px; }
  @media (min-width: 768px) {
    h2 {
      font-size: 48px;
      line-height: 48px; } }

h3 {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 32px; }

h4 {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 32px; }
  @media (min-width: 768px) {
    h4 {
      margin-bottom: 16px;
      font-size: 32px;
      line-height: 24px; } }

p {
  font-family: 'HelveticaNeue';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  user-select: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

a {
  position: relative;
  font-family: 'HelveticaNeue';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #000000;
  user-select: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.text-white {
  color: #FFFFFF; }

.text-gray {
  color: #A0A0A6; }

.text-gold {
  color: #B7936F; }

.link-underlined::after {
  position: absolute;
  content: '';
  width: 0px;
  height: 1px;
  bottom: 0px;
  left: 0px;
  background-color: #000000;
  transition: width 200ms; }

@media (min-width: 1024px) {
  .link-underlined:hover::after {
    width: 100%; } }

.more-link {
  display: flex;
  align-items: center;
  font-family: 'HelveticaNeue';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #B7936F; }
  @media (min-width: 768px) {
    .more-link {
      line-height: 24px; } }
  .more-link:hover svg {
    transform: translateX(10px); }
  .more-link svg {
    width: 16px;
    height: 16px;
    margin-left: 16px;
    transition: transform 200ms; }

.section-margin-upper {
  margin-top: 64px; }
  @media (min-width: 768px) {
    .section-margin-upper {
      margin-top: 128px; } }

.tile {
  overflow: hidden; }
  .tile .tile-hidden-content {
    opacity: 0;
    transition: opacity 200ms; }
  .tile > img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    object-fit: cover;
    transition: transform 200ms; }
  .tile:hover .tile-hidden-content, .tile:active .tile-hidden-content, .tile:focus .tile-hidden-content {
    opacity: 1; }
  .tile:hover > img, .tile:active > img, .tile:focus > img {
    transform: scale(1.1); }

.order-button {
  width: 180px;
  height: 45px;
  background-color: #B7936F;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 12px;
  line-height: 14px;
  text-align: center; }

.header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  @media (max-width: 1023px) {
    .header .header-container {
      flex-direction: column;
      align-items: stretch; } }

.header .upper {
  display: flex; }
  @media (max-width: 1023px) {
    .header .upper {
      justify-content: space-between;
      align-items: center; } }

.header .logo {
  width: 170px;
  height: 20px;
  margin: 32px 0; }
  .header .logo svg {
    fill: #000000;
    transition: fill 200ms; }
  .header .logo:hover svg {
    fill: #B7936F; }
  @media (min-width: 768px) {
    .header .logo {
      width: 256px;
      height: 30px;
      margin: 40px 0; } }

.header .hamburger {
  outline: none;
  background-color: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  padding-right: 0; }
  @media (min-width: 1024px) {
    .header .hamburger {
      display: none; } }
  .header .hamburger.opened .hamburger-line:nth-child(1) {
    transform: rotateZ(45deg); }
  .header .hamburger.opened .hamburger-line:nth-child(2) {
    opacity: 0; }
  .header .hamburger.opened .hamburger-line:nth-child(3) {
    transform: rotateZ(-45deg); }

.header .hamburger-line {
  width: 18px;
  height: 1px;
  background-color: #000000;
  transition: transform 200ms, opacity 200ms; }
  .header .hamburger-line:not(:last-child) {
    margin-bottom: 5px; }
  .header .hamburger-line:nth-child(1) {
    transform-origin: 0.5px 0.5px; }
  .header .hamburger-line:nth-child(3) {
    transform-origin: 0.5px 0.5px; }
  @media (min-width: 768px) {
    .header .hamburger-line {
      height: 2px; }
      .header .hamburger-line:nth-child(1) {
        transform-origin: -0.5px 2px; }
      .header .hamburger-line:nth-child(3) {
        transform-origin: -0.5px 0px; } }

.header .nav-container {
  display: flex;
  flex-direction: row; }
  @media (max-width: 1023px) {
    .header .nav-container {
      display: none;
      position: fixed;
      top: 107px;
      left: 0;
      right: 0;
      padding-top: 50px;
      height: calc(100vh - 107px);
      overflow: hidden;
      z-index: 2;
      transition: opacity 200ms;
      opacity: 0;
      background-color: #FFFFFF; }
      .header .nav-container.opened {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: space-between; } }
  @media (max-width: 767px) {
    .header .nav-container {
      top: 80px;
      height: calc(100vh - 80px); } }
  @media (max-width: 575px) {
    .header .nav-container {
      top: 60px;
      height: calc(100vh - 60px); } }
  @media (min-width: 1024px) and (max-width: 1439px) {
    .header .nav-container {
      flex-grow: 1; } }
  @media (max-width: 1023px) {
    .header .nav-container.visible {
      opacity: 1; } }

.header .pages-links {
  display: flex;
  flex-direction: row; }
  @media (max-width: 1023px) {
    .header .pages-links {
      margin: 0 auto;
      width: 640px;
      flex-direction: column;
      align-items: flex-start; } }
  @media (max-width: 767px) {
    .header .pages-links {
      margin: 0 48px;
      width: 100%; } }
  @media (max-width: 575px) {
    .header .pages-links {
      margin: 0 24px; } }
  @media (min-width: 1024px) and (max-width: 1439px) {
    .header .pages-links {
      margin-right: auto;
      margin-left: auto; } }
  @media (min-width: 1440px) {
    .header .pages-links {
      margin-right: 80px; } }

.header .nav-link {
  transition: color 200ms; }
  .header .nav-link:hover {
    color: #B7936F; }
  .header .nav-link.active {
    font-weight: 900; }
    @media (min-width: 1024px) {
      .header .nav-link.active {
        font-weight: 600; } }
  @media (min-width: 1024px) {
    .header .nav-link:not(:last-child) {
      margin-right: 33px; } }
  @media (min-width: 1440px) {
    .header .nav-link:not(:last-child) {
      margin-right: 56px; } }
  @media (max-width: 1023px) {
    .header .nav-link {
      font-weight: 700;
      font-size: 24px;
      line-height: 32px;
      color: #000000;
      transition: color 200ms; }
      .header .nav-link:not(:last-child) {
        margin-bottom: 24px; } }
  @media (min-width: 1024px) {
    .header .nav-link {
      padding: 12px 0; } }

.header .socials-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  stroke: #000000; }
  @media (max-width: 1023px) {
    .header .socials-links {
      position: fixed;
      width: 100%;
      bottom: 0;
      padding: 24px 0;
      justify-content: center;
      align-items: center;
      background-color: #000000; } }

.header .social-link {
  width: 16px;
  height: 16px; }
  .header .social-link:not(:last-child) {
    margin-right: 44px; }
    @media (min-width: 1024px) {
      .header .social-link:not(:last-child) {
        margin-right: 24px; } }
    @media (min-width: 1440px) {
      .header .social-link:not(:last-child) {
        margin-right: 32px; } }
  .header .social-link svg {
    stroke: #000000;
    stroke-width: 1.5px;
    transition: stroke 200ms; }
    .header .social-link svg:hover {
      stroke: #B7936F; }
    @media (max-width: 1023px) {
      .header .social-link svg {
        stroke: #FFFFFF; } }

.cards-container {
  width: 100%;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start; }
  @media (min-width: 768px) {
    .cards-container {
      flex-flow: row wrap;
      justify-content: space-between; } }
  .cards-container .card {
    position: relative;
    margin-bottom: 48px;
    text-decoration: none; }
    @media (max-width: 767px) {
      .cards-container .card {
        max-width: 350px; }
        .cards-container .card:last-child {
          margin-bottom: 0; } }
    @media (min-width: 768px) {
      .cards-container .card {
        width: 288px; }
        .cards-container .card:nth-last-child(1), .cards-container .card:nth-last-child(2) {
          margin-bottom: 0; } }
    @media (min-width: 1024px) {
      .cards-container .card {
        width: 320px; } }
    @media (min-width: 1440px) {
      .cards-container .card:nth-last-child(3) {
        margin-bottom: 0; } }
    .cards-container .card .icon {
      margin-bottom: 24px; }
    .cards-container .card h3 {
      transition: color 200ms; }
    .cards-container .card svg {
      fill: #000000;
      transition: fill 200ms; }
    .cards-container .card a {
      position: absolute;
      top: 0;
      width: 100%;
      height: 100%; }

.controls-container {
  display: flex;
  justify-content: center; }
  @media (min-width: 1440px) {
    .controls-container {
      display: none; } }
  .controls-container .control {
    width: 24px;
    height: 24px;
    padding: 8px;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: transparent; }
    .controls-container .control .filling {
      width: 100%;
      height: 100%;
      background-color: #A0A0A6;
      transition: background-color 200ms; }
    .controls-container .control.active {
      cursor: initial; }
      .controls-container .control.active .filling {
        background-color: #B7936F; }

footer {
  background-color: #000000; }
  footer .footer-image {
    width: 100%;
    height: 464px; }
    footer .footer-image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  footer .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 64px;
    padding-bottom: 64px; }
    @media (min-width: 768px) {
      footer .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
        padding-top: 80px;
        padding-bottom: 80px; } }
    @media (min-width: 1024px) {
      footer .footer-content {
        justify-content: stretch; } }
  @media (max-width: 767px) {
    footer .about-us-container {
      max-width: 420px;
      margin-bottom: 72px; } }
  @media (min-width: 768px) {
    footer .about-us-container {
      width: 50%; } }
  @media (max-width: 1023px) {
    footer .contacts-container {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      max-width: 250px; } }
  @media (max-width: 767px) {
    footer .contacts-container {
      max-width: 420px;
      width: 100%; } }
  @media (min-width: 1024px) {
    footer .contacts-container {
      width: 50%;
      margin-left: 60px; } }
  footer .contacts-container h4 {
    margin-bottom: 12px; }
    @media (min-width: 768px) {
      footer .contacts-container h4 {
        margin-bottom: 28px; } }
  footer .contacts {
    stroke: #FFFFFF; }
  footer .about-us {
    margin-bottom: 40px; }
    @media (min-width: 768px) {
      footer .about-us {
        width: 250px; } }
    @media (min-width: 1024px) {
      footer .about-us {
        width: 335px; } }
    @media (min-width: 1440px) {
      footer .about-us {
        width: 420px; } }
  footer .contact-line {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 16px; }
    footer .contact-line .icon {
      width: 16px;
      height: 16px;
      margin-right: 16px; }
      footer .contact-line .icon svg {
        stroke-width: 1.5px; }
  footer .contact-multiline {
    margin-bottom: 16px; }
    footer .contact-multiline .contact-line {
      margin-bottom: 2px; }
  footer .footer-link {
    font-size: 16px;
    line-height: 24px; }
  footer .logo {
    width: 250px; }
    footer .logo svg {
      fill: #FFFFFF; }
    @media (max-width: 767px) {
      footer .logo {
        margin-top: 80px; } }
    @media (min-width: 1024px) {
      footer .logo {
        width: 350px;
        margin-top: 95px; } }
    @media (min-width: 1440px) {
      footer .logo {
        width: 440px; } }

.hero {
  position: relative;
  overflow: hidden; }
  .hero .hero-container {
    display: flex; }
    @media (max-width: 575px) {
      .hero .hero-container {
        flex-direction: column;
        align-items: flex-end; } }
  .hero .text-container {
    position: relative;
    z-index: 1; }
    @media (min-width: 320px) {
      .hero .text-container {
        padding-top: 35px;
        padding-bottom: 40px; } }
    @media (min-width: 576px) {
      .hero .text-container {
        width: 363px;
        min-width: 363px;
        padding-top: 150px;
        padding-bottom: 220px; } }
    @media (min-width: 768px) {
      .hero .text-container {
        width: 400px;
        min-width: 400px;
        padding-top: 150px;
        padding-bottom: 220px; } }
    @media (min-width: 1024px) {
      .hero .text-container {
        width: 462px;
        min-width: 462px;
        padding-top: 150px;
        padding-bottom: 250px; } }
    @media (min-width: 1440px) {
      .hero .text-container {
        width: 560px;
        min-width: 560px;
        padding-top: 150px;
        padding-bottom: 250px; } }
  .hero h1 {
    margin-bottom: 16px; }
    @media (min-width: 768px) {
      .hero h1 {
        margin-bottom: 24px; } }

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

.image-top {
  object-position: top; }

.image-top-80 {
  object-position: 50% 20%; }

.image-top-70 {
  object-position: 50% 30%; }

.image-bottom {
  object-position: bottom; }

.submit-form {
  width: 100%;
  max-width: 350px; }
  .submit-form input,
  .submit-form textarea {
    width: 100%;
    padding: 16px;
    margin-bottom: 24px;
    border: none;
    outline: none;
    font-family: 'HelveticaNeue';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #000000;
    transition: background-color 200ms; }
    .submit-form input::placeholder,
    .submit-form textarea::placeholder {
      color: #A0A0A6; }
    .submit-form input:hover,
    .submit-form textarea:hover {
      background-color: #EAEAEA; }
    .submit-form input:active, .submit-form input:focus,
    .submit-form textarea:active,
    .submit-form textarea:focus {
      padding: 14px;
      border: #B7936F 2px solid; }
    .submit-form input.error,
    .submit-form textarea.error {
      padding: 14px;
      border: #EC4B50 2px solid; }
  .submit-form textarea {
    height: 120px;
    resize: none; }

@media (max-width: 575px) {
  .index-hero img {
    height: 80vw;
    max-height: 310px;
    min-height: 290px;
    margin-left: auto;
    margin-right: -190px;
    margin-bottom: 40px; } }

@media (min-width: 576px) {
  .index-hero img {
    height: 417px;
    margin-top: 55px;
    margin-left: 20px; } }

@media (min-width: 768px) {
  .index-hero img {
    height: 517px;
    margin-top: 55px;
    margin-left: 40px; } }

@media (min-width: 1024px) {
  .index-hero img {
    margin-left: 100px; } }

@media (min-width: 1440px) {
  .index-hero img {
    margin-left: 170px; } }

.index-projects {
  padding-bottom: 64px;
  background-color: #000000; }
  @media (min-width: 768px) {
    .index-projects {
      padding-bottom: 96px; } }
  .index-projects .main-text-container {
    padding-top: 64px; }
    @media (min-width: 576px) {
      .index-projects .main-text-container {
        padding-top: 80px; } }
    @media (min-width: 768px) {
      .index-projects .main-text-container {
        padding-top: 96px; } }
    @media (min-width: 1024px) {
      .index-projects .main-text-container {
        width: 70%; } }
  .index-projects .tiles-container {
    display: none; }
    .index-projects .tiles-container.active {
      display: flex;
      flex-direction: column; }
    @media (min-width: 1024px) {
      .index-projects .tiles-container {
        flex-wrap: wrap; } }
    @media (min-width: 768px) {
      .index-projects .tiles-container {
        margin: 0 auto;
        max-width: 640px;
        width: 640px;
        height: calc(3 * (768px - 128px)); } }
    @media (min-width: 1024px) {
      .index-projects .tiles-container {
        max-width: 832px;
        width: 832px;
        height: calc(0.75 * (1024px - 192px)); } }
    @media (min-width: 1440px) {
      .index-projects .tiles-container {
        max-width: 1184px;
        width: 1184px;
        height: calc(0.75 * (1440px - 256px)); } }
  .index-projects .small-tiles-container {
    height: 50vw;
    display: flex;
    position: relative;
    flex-direction: row; }
    @media (min-width: 768px) {
      .index-projects .small-tiles-container {
        height: 17%; } }
    @media (min-width: 1024px) {
      .index-projects .small-tiles-container {
        height: 34%;
        width: 50%; } }
    .index-projects .small-tiles-container:first-child {
      order: 1; }
    .index-projects .small-tiles-container:last-child {
      order: 4; }
  .index-projects .small-tile {
    position: relative;
    height: 100%;
    width: 50%; }
  .index-projects .large-tile {
    position: relative;
    height: 100vw;
    width: 100%; }
    @media (min-width: 768px) {
      .index-projects .large-tile {
        height: 33%; } }
    @media (min-width: 1024px) {
      .index-projects .large-tile {
        height: 66%;
        width: 50%; } }
    .index-projects .large-tile:nth-child(2) {
      order: 3; }
      @media (min-width: 1024px) {
        .index-projects .large-tile:nth-child(2) {
          order: 2; } }
    .index-projects .large-tile:nth-child(3) {
      order: 2; }
      @media (min-width: 1024px) {
        .index-projects .large-tile:nth-child(3) {
          order: 3; } }
  .index-projects .full-tile {
    position: relative;
    height: 150vw;
    width: 100%; }
    @media (min-width: 768px) {
      .index-projects .full-tile {
        height: 50%; } }
    @media (min-width: 1024px) {
      .index-projects .full-tile {
        height: 100%;
        width: 50%; } }
  .index-projects .tile-text-outer-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.64); }
    .index-projects .tile-text-outer-container.no-description {
      align-items: flex-end; }
      @media (min-width: 1024px) {
        .index-projects .tile-text-outer-container.no-description > .tile-text-container {
          margin: 30px; } }
      @media (min-width: 1440px) {
        .index-projects .tile-text-outer-container.no-description > .tile-text-container {
          margin: 40px; } }
      .index-projects .tile-text-outer-container.no-description .more-link {
        align-self: flex-end;
        font-size: 16px; }
        @media (min-width: 1024px) {
          .index-projects .tile-text-outer-container.no-description .more-link {
            font-size: 14px; } }
        @media (min-width: 1440px) {
          .index-projects .tile-text-outer-container.no-description .more-link {
            font-size: 16px; } }
    .index-projects .tile-text-outer-container > .tile-text-container {
      position: relative;
      margin: 0 24px;
      width: 100%;
      display: flex;
      flex-direction: column; }
      @media (max-width: 1023px) {
        .index-projects .tile-text-outer-container > .tile-text-container {
          margin: 40px; } }
      @media (min-width: 1024px) {
        .index-projects .tile-text-outer-container > .tile-text-container {
          margin: 30px; } }
      @media (min-width: 1440px) {
        .index-projects .tile-text-outer-container > .tile-text-container {
          margin: 40px; } }
    .index-projects .tile-text-outer-container p {
      margin-bottom: 16px; }
    .index-projects .tile-text-outer-container .more-link {
      align-self: flex-end; }
  .index-projects .slider-block {
    position: relative; }
    @media (min-width: 768px) {
      .index-projects .slider-block {
        margin: 0 auto;
        max-width: 648px; } }
    @media (min-width: 1024px) {
      .index-projects .slider-block {
        max-width: 864px; } }
    @media (min-width: 1440px) {
      .index-projects .slider-block {
        max-width: 1229px; } }
  .index-projects .slider-container {
    overflow: hidden; }
  .index-projects .slider {
    display: flex;
    flex-direction: row;
    transition: transform 200ms; }
    @media (max-width: 1439px) {
      .index-projects .slider {
        width: 864px; } }
    @media (max-width: 1023px) {
      .index-projects .slider {
        width: 648px; } }
    @media (max-width: 767px) {
      .index-projects .slider {
        width: 216px;
        margin: 0 auto; } }
    @media (min-width: 1024px) {
      .index-projects .slider {
        justify-content: space-between; } }
  .index-projects .project {
    width: 216px;
    height: 216px;
    padding: 90px 0;
    flex-shrink: 0; }
    .index-projects .project.active .icon {
      fill: #B7936F; }
    .index-projects .project .icon {
      width: 170px;
      height: 100%;
      margin: 0 auto;
      fill: #FFFFFF;
      transition: fill 200ms;
      cursor: pointer; }
      .index-projects .project .icon:hover {
        fill: #B7936F; }
    @media (min-width: 1024px) {
      .index-projects .project:not(:last-child) {
        margin-right: 108px; } }
    @media (min-width: 1440px) {
      .index-projects .project:not(:last-child) {
        margin-right: 37.25px; } }
  .index-projects .project-tall {
    padding: 70px 0; }
  .index-projects .arrow-back,
  .index-projects .arrow-forw {
    position: absolute;
    width: 32px;
    height: 32px;
    top: 92px;
    padding: 8px;
    fill: #FFFFFF;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    transition: opacity 200ms, fill 200ms; }
    @media (max-width: 1023px) {
      .index-projects .arrow-back,
      .index-projects .arrow-forw {
        display: none; } }
    .index-projects .arrow-back:hover,
    .index-projects .arrow-forw:hover {
      fill: #B7936F; }
    .index-projects .arrow-back.inactive,
    .index-projects .arrow-forw.inactive {
      opacity: 0.7;
      cursor: initial; }
      .index-projects .arrow-back.inactive:hover,
      .index-projects .arrow-forw.inactive:hover {
        fill: #FFFFFF; }
  .index-projects .arrow-back {
    left: -58px;
    transform: rotateZ(180deg); }
  .index-projects .arrow-forw {
    right: -58px; }
  .index-projects .controls-container {
    margin-bottom: 32px; }
  .index-projects .back-to-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    font-family: 'HelveticaNeue';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #B7936F; }
    @media (min-width: 768px) {
      .index-projects .back-to-slider {
        margin-top: 36px;
        line-height: 24px; } }
    @media (min-width: 1024px) {
      .index-projects .back-to-slider {
        display: none; } }
    .index-projects .back-to-slider svg {
      width: 16px;
      height: 16px;
      margin-left: 16px;
      transform: rotateZ(-90deg);
      fill: #B7936F; }

@media (min-width: 1024px) {
  .index-services .text-description {
    max-width: 66%; } }

.index-services .card:hover svg {
  fill: #B7936F; }

.index-services .card:hover h3 {
  color: #B7936F; }

.index-how-its-made .slider-container {
  margin-top: 40px;
  overflow: hidden; }
  @media (min-width: 768px) {
    .index-how-its-made .slider-container {
      margin-top: 48px; } }

.index-how-its-made .slider {
  display: flex;
  justify-content: space-between;
  transition: transform 200ms; }
  @media (max-width: 1439px) {
    .index-how-its-made .slider {
      margin: 0 calc((100% - 832px) / 2);
      margin-bottom: 32px; } }
  @media (max-width: 1023px) {
    .index-how-its-made .slider {
      margin: 0 calc((100% - 640px) / 2);
      margin-bottom: 32px; } }
  @media (max-width: 767px) {
    .index-how-its-made .slider {
      margin: 0 48px;
      margin-bottom: 24px; } }
  @media (max-width: 575px) {
    .index-how-its-made .slider {
      margin: 0 24px;
      margin-bottom: 16px; } }
  @media (min-width: 1440px) {
    .index-how-its-made .slider {
      margin: 0 auto;
      margin-bottom: 32px;
      max-width: 1184px; } }

.index-how-its-made .slider-text {
  max-width: 820px; }

.index-how-its-made .stage {
  position: relative;
  max-width: 240px;
  flex-shrink: 0; }
  .index-how-its-made .stage h3 {
    transition: color 200ms; }
    .index-how-its-made .stage h3:hover {
      cursor: pointer; }
  .index-how-its-made .stage.active h3 {
    color: #B7936F; }

.index-how-its-made .stage-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin: 28px 28px; }
  @media (min-width: 576px) {
    .index-how-its-made .stage-arrow {
      margin: 28px 56px; } }
  .index-how-its-made .stage-arrow:last-of-type {
    display: none; }

.index-how-its-made .controls-container {
  margin-top: 24px; }

#slider-text-id {
  transition: opacity 200ms; }

.contacts-hero {
  position: relative;
  overflow: hidden; }
  .contacts-hero .hero-container {
    display: flex;
    flex-wrap: nowrap; }
    @media (max-width: 575px) {
      .contacts-hero .hero-container {
        flex-direction: column;
        align-items: flex-end; } }
  .contacts-hero .text-container {
    position: relative;
    z-index: 1; }
    @media (min-width: 320px) {
      .contacts-hero .text-container {
        padding-top: 35px;
        padding-bottom: 40px; } }
    @media (min-width: 576px) {
      .contacts-hero .text-container {
        width: 363px;
        min-width: 363px;
        padding-top: 150px;
        padding-bottom: 220px; } }
    @media (min-width: 768px) {
      .contacts-hero .text-container {
        width: 393px;
        min-width: 393px;
        padding-top: 150px;
        padding-bottom: 220px; } }
    @media (min-width: 1024px) {
      .contacts-hero .text-container {
        width: 462px;
        min-width: 462px;
        padding-top: 150px;
        padding-bottom: 250px; } }
    @media (min-width: 1440px) {
      .contacts-hero .text-container {
        width: 522px;
        min-width: 522px;
        padding-top: 150px;
        padding-bottom: 250px; } }
  .contacts-hero h1 {
    margin-bottom: 16px; }
    @media (min-width: 768px) {
      .contacts-hero h1 {
        margin-bottom: 24px;
        width: 370px; } }
  @media (max-width: 575px) {
    .contacts-hero img {
      height: 80vw;
      max-height: 310px;
      min-height: 290px;
      margin-left: auto;
      margin-right: -100px;
      margin-bottom: 40px; } }
  @media (min-width: 576px) {
    .contacts-hero img {
      height: 417px;
      margin-top: 55px;
      margin-left: -100px; } }
  @media (min-width: 768px) {
    .contacts-hero img {
      height: 517px;
      margin-top: 55px;
      margin-left: -120px; } }
  @media (min-width: 1024px) {
    .contacts-hero img {
      margin-left: -50px; } }
  @media (min-width: 1440px) {
    .contacts-hero img {
      margin-left: 100px; } }

.contacts-main {
  position: relative; }
  @media (max-width: 1023px) {
    .contacts-main .about-us-container {
      padding-bottom: calc(var(--client-width) + 50px); } }
  @media (min-width: 1024px) {
    .contacts-main .about-us-container {
      height: calc(var(--client-width) / 2);
      min-height: 700px; } }
  .contacts-main .maps-container {
    width: 100%;
    height: var(--client-width);
    position: absolute;
    bottom: 0;
    background-color: #B7936F; }
    @media (min-width: 1024px) {
      .contacts-main .maps-container {
        width: 45%;
        height: calc(var(--client-width) / 2);
        min-height: 700px;
        right: 0; } }
    @media (min-width: 1440px) {
      .contacts-main .maps-container {
        width: 50%; } }
  .contacts-main .about-us {
    margin-bottom: 40px; }
    @media (max-width: 1023px) {
      .contacts-main .about-us {
        max-width: 420px; } }
    @media (min-width: 768px) {
      .contacts-main .about-us {
        width: 100%; } }
    @media (min-width: 1024px) {
      .contacts-main .about-us {
        width: 335px; } }
    @media (min-width: 1440px) {
      .contacts-main .about-us {
        width: 420px; } }
  .contacts-main form input,
  .contacts-main form textarea {
    border: 2px solid #B7936F; }
    .contacts-main form input:active, .contacts-main form input:focus,
    .contacts-main form textarea:active,
    .contacts-main form textarea:focus {
      padding: 16px; }
    .contacts-main form input.error,
    .contacts-main form textarea.error {
      padding: 16px;
      border: #EC4B50 2px solid; }

.footer-contacts .footer-contacts-container {
  display: flex;
  padding-top: 80px;
  padding-bottom: 80px; }
  @media (max-width: 767px) {
    .footer-contacts .footer-contacts-container {
      flex-direction: column; } }
  @media (min-width: 768px) {
    .footer-contacts .footer-contacts-container {
      justify-content: space-between;
      align-items: flex-end; }
      .footer-contacts .footer-contacts-container .logo {
        margin-bottom: 0; } }

.footer-contacts .gloss {
  position: absolute;
  object-fit: contain;
  width: 250px;
  right: 50px;
  left: 50px;
  top: -150px; }
  @media (min-width: 576px) {
    .footer-contacts .gloss {
      width: 380px;
      right: -170px;
      top: -250px;
      left: initial; } }
  @media (min-width: 768px) {
    .footer-contacts .gloss {
      width: 430px;
      right: -150px;
      top: -270px; } }
  @media (min-width: 1024px) {
    .footer-contacts .gloss {
      width: 380px;
      right: -150px;
      top: -230px; } }
  @media (min-width: 1440px) {
    .footer-contacts .gloss {
      width: 430px;
      right: 0;
      top: -270px; } }

.blog-hero img {
  margin-bottom: 20px; }
  @media (max-width: 575px) {
    .blog-hero img {
      height: 80vw;
      max-height: 310px;
      min-height: 290px;
      align-self: center; } }
  @media (min-width: 576px) {
    .blog-hero img {
      height: 417px;
      margin-top: 255px;
      margin-left: -240px; } }
  @media (min-width: 768px) {
    .blog-hero img {
      height: 430px; } }
  @media (min-width: 1024px) {
    .blog-hero img {
      margin-top: 55px;
      margin-left: 50px; } }
  @media (min-width: 1440px) {
    .blog-hero img {
      margin-left: 130px; } }

.blog-articles {
  padding: 64px 0;
  background-color: #000000; }
  @media (min-width: 768px) {
    .blog-articles {
      padding: 96px 0; } }
  .blog-articles .top-block-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px; }
    @media (min-width: 1024px) {
      .blog-articles .top-block-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center; } }
    .blog-articles .top-block-container h2 {
      margin-bottom: 0; }
  .blog-articles .search-field {
    position: relative;
    width: 100%;
    height: 45px;
    max-width: 350px; }
    @media (max-width: 1023px) {
      .blog-articles .search-field {
        margin-top: 24px; } }
    @media (min-width: 1024px) and (max-width: 1439px) {
      .blog-articles .search-field {
        max-width: 300px; } }
    .blog-articles .search-field > input {
      width: 100%;
      padding: 16px;
      padding-right: 45px;
      border: none;
      outline: none; }
      .blog-articles .search-field > input::placeholder {
        color: #A0A0A6; }
    .blog-articles .search-field > button {
      position: absolute;
      height: 100%;
      width: 45px;
      right: 0;
      border: none;
      outline: none;
      background-color: transparent;
      cursor: pointer; }
  .blog-articles .article-container {
    position: relative; }
    @media (min-width: 1024px) {
      .blog-articles .article-container {
        margin: 0 auto;
        max-width: 832px;
        width: 832px; } }
    @media (min-width: 1440px) {
      .blog-articles .article-container {
        max-width: 1184px;
        width: 1184px; } }
    .blog-articles .article-container:hover .dark-background {
      background-color: rgba(183, 147, 111, 0.8); }
    .blog-articles .article-container:hover .more-link {
      color: #FFFFFF;
      fill: #FFFFFF; }
      .blog-articles .article-container:hover .more-link svg {
        transform: translateX(10px); }
    .blog-articles .article-container > a {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      z-index: 2; }
  .blog-articles .text-container {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1;
    margin: 0 24px;
    padding-top: 40px;
    padding-bottom: 56px; }
    @media (min-width: 576px) {
      .blog-articles .text-container {
        margin: 0 48px; } }
    @media (min-width: 768px) {
      .blog-articles .text-container {
        margin: 0 auto;
        max-width: 640px;
        width: 640px;
        padding-top: 56px;
        padding-bottom: 80px; } }
    @media (min-width: 1024px) {
      .blog-articles .text-container {
        width: initial;
        max-width: 720px;
        margin: 0 56px; } }
    .blog-articles .text-container h2 {
      margin-bottom: 0; }
    .blog-articles .text-container .date {
      margin-top: 8px;
      margin-bottom: 16px; }
      @media (min-width: 768px) {
        .blog-articles .text-container .date {
          margin-bottom: 24px; } }
  .blog-articles .more-link {
    margin-top: 24px;
    fill: #B7936F;
    transition: color 200ms, fill 200ms;
    align-self: flex-start; }
    @media (min-width: 768px) {
      .blog-articles .more-link {
        margin-top: 40px; } }
  .blog-articles .background-container {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    top: 0; }
    .blog-articles .background-container .dark-background {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      right: 0;
      background-color: rgba(0, 0, 0, 0.64);
      transition: background-color 200ms; }
    .blog-articles .background-container img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .blog-articles .controls-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 32px; }
    @media (min-width: 768px) {
      .blog-articles .controls-container {
        margin-top: 56px; } }
  .blog-articles .arrow-back,
  .blog-articles .arrow-forw {
    width: 32px;
    height: 32px;
    padding: 8px;
    fill: #FFFFFF;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    transition: opacity 200ms; }
    .blog-articles .arrow-back.inactive,
    .blog-articles .arrow-forw.inactive {
      opacity: 0.7;
      cursor: initial; }
  .blog-articles .arrow-back {
    transform: rotateZ(180deg);
    margin-right: 16px; }
  .blog-articles .arrow-forw {
    margin-left: 16px; }

.article-hero {
  width: 100%;
  height: 400px; }
  @media (min-width: 768px) {
    .article-hero {
      height: 560px; } }
  .article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

@media (min-width: 768px) {
  .article-other-latest-articles {
    margin-bottom: 80px; } }

@media (min-width: 1440px) {
  .article-other-latest-articles {
    margin-bottom: 128px; } }

.article-other-latest-articles > h2 {
  margin-bottom: 24px; }
  @media (min-width: 768px) {
    .article-other-latest-articles > h2 {
      margin-bottom: 56px; } }

.article-other-latest-articles .articles-container {
  display: flex;
  flex-direction: column; }
  @media (min-width: 768px) {
    .article-other-latest-articles .articles-container {
      margin: 0 auto;
      max-width: 640px;
      width: 640px; } }
  @media (min-width: 1024px) {
    .article-other-latest-articles .articles-container {
      max-width: 832px;
      width: 832px; } }
  @media (min-width: 1440px) {
    .article-other-latest-articles .articles-container {
      flex-direction: row;
      max-width: 1184px;
      width: 1184px; } }

.article-other-latest-articles .article-container {
  position: relative; }
  @media (min-width: 768px) and (max-width: 1439px) {
    .article-other-latest-articles .article-container:not(:last-child) {
      margin-bottom: 24px; } }
  @media (min-width: 1440px) {
    .article-other-latest-articles .article-container {
      width: 360px; }
      .article-other-latest-articles .article-container:not(:last-child) {
        margin-right: 50px; } }
  .article-other-latest-articles .article-container:hover .dark-background {
    background-color: rgba(183, 147, 111, 0.8); }
  .article-other-latest-articles .article-container:hover .more-link {
    color: #FFFFFF;
    fill: #FFFFFF; }

.article-other-latest-articles .text-container {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 1;
  margin: 0 24px;
  padding-top: 40px;
  padding-bottom: 40px; }
  @media (min-width: 576px) {
    .article-other-latest-articles .text-container {
      margin: 0 48px; } }
  @media (min-width: 1024px) {
    .article-other-latest-articles .text-container {
      width: initial;
      max-width: 720px;
      margin: 0 40px; } }
  @media (min-width: 1440px) {
    .article-other-latest-articles .text-container {
      height: 100%; } }
  .article-other-latest-articles .text-container h3 {
    margin-bottom: 0; }
  .article-other-latest-articles .text-container .date {
    margin-top: 8px;
    margin-bottom: 16px; }
    @media (min-width: 768px) {
      .article-other-latest-articles .text-container .date {
        margin-bottom: 24px; } }
  .article-other-latest-articles .text-container .description {
    margin-bottom: 40px; }

.article-other-latest-articles .more-link {
  align-self: flex-start;
  fill: #B7936F;
  transition: color 200ms, fill 200ms; }
  @media (min-width: 768px) {
    .article-other-latest-articles .more-link {
      margin-top: auto; } }
  @media (min-width: 1440px) {
    .article-other-latest-articles .more-link {
      align-self: flex-end; } }

.article-other-latest-articles .background-container {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0; }
  .article-other-latest-articles .background-container .dark-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.64);
    transition: background-color 200ms; }
  .article-other-latest-articles .background-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.article-content {
  margin-top: 48px; }
  @media (min-width: 768px) {
    .article-content {
      margin-top: 80px; } }
  .article-content .content-container {
    margin-left: 24px;
    margin-right: 24px; }
    @media (min-width: 576px) {
      .article-content .content-container {
        margin-left: 48px;
        margin-right: 48px; } }
    @media (min-width: 768px) {
      .article-content .content-container {
        margin-left: auto;
        margin-right: auto;
        max-width: 640px;
        width: 640px; } }
    @media (min-width: 1024px) {
      .article-content .content-container {
        max-width: 624px;
        width: 624px; } }
    @media (min-width: 1440px) {
      .article-content .content-container {
        max-width: 730px;
        width: 730px; } }
  .article-content .content {
    margin-top: 24px; }
    .article-content .content .article-block:not(:last-child) {
      margin-bottom: 40px; }
    @media (min-width: 768px) {
      .article-content .content .article-block:not(:last-child) {
        margin-bottom: 56px; } }

.article-quote-block {
  padding-left: 16px;
  border-left: 4px #B7936F solid; }

.article-rich-text-block p:not(:last-child) {
  margin-bottom: 24px; }

.article-rich-text-block h4:not(:first-child) {
  margin-top: 56px; }

@media (min-width: 768px) {
  .article-image-block {
    max-width: var(--max-width) !important; } }

.article-image-block img {
  width: 100%;
  object-fit: cover; }
  @media (min-width: 768px) {
    .article-image-block img {
      height: 480px; } }

@media (max-width: 575px) {
  .projects-hero img {
    height: 120vw;
    max-height: 410px;
    min-height: 360px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: -70px;
    margin-bottom: -100px; } }

@media (min-width: 576px) {
  .projects-hero img {
    height: 757px;
    margin-left: -150px;
    margin-bottom: -250px; } }

@media (min-width: 768px) {
  .projects-hero img {
    height: 797px;
    margin-bottom: -120px; } }

@media (min-width: 1024px) {
  .projects-hero img {
    margin-bottom: -160px; } }

@media (min-width: 1440px) {
  .projects-hero img {
    margin-left: 50px; } }

.projects-main-project .images-container, .projects-other-projects .images-container {
  display: flex;
  flex-wrap: wrap; }

.projects-main-project h2, .projects-other-projects h2 {
  margin-bottom: 24px; }
  @media (min-width: 768px) {
    .projects-main-project h2, .projects-other-projects h2 {
      margin-bottom: 40px; } }

.projects-main-project .project-image, .projects-other-projects .project-image {
  position: relative;
  width: 100%;
  height: calc(100vw - 2 * 24px);
  margin-bottom: 32px; }
  @media (min-width: 768px) and (max-width: 1023px) {
    .projects-main-project .project-image, .projects-other-projects .project-image {
      width: 304px;
      height: 304px; } }
  @media (min-width: 1024px) and (max-width: 1439px) {
    .projects-main-project .project-image, .projects-other-projects .project-image {
      width: 400px;
      height: 400px; } }
  @media (min-width: 1440px) {
    .projects-main-project .project-image, .projects-other-projects .project-image {
      width: 360px;
      height: 360px; } }

.projects-main-project .project-text-container, .projects-other-projects .project-text-container {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  padding: 24px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.64)); }
  @media (min-width: 768px) {
    .projects-main-project .project-text-container, .projects-other-projects .project-text-container {
      padding: 40px; } }
  @media (min-width: 1440px) {
    .projects-main-project .project-text-container, .projects-other-projects .project-text-container {
      display: flex;
      flex-direction: column;
      justify-content: center; } }
  .projects-main-project .project-text-container h3, .projects-other-projects .project-text-container h3 {
    margin: auto 0; }

.projects-main-project .more-link, .projects-other-projects .more-link {
  position: absolute;
  bottom: 24px;
  right: 24px; }
  @media (min-width: 768px) {
    .projects-main-project .more-link, .projects-other-projects .more-link {
      bottom: 40px;
      right: 40px; } }

.projects-main-project {
  background-color: #000000;
  padding-top: 64px;
  padding-bottom: 32px; }
  @media (min-width: 768px) {
    .projects-main-project {
      padding-top: 96px;
      padding-bottom: 64px; } }
  .projects-main-project .logo-heading {
    width: 100px;
    margin-bottom: 40px;
    fill: #FFFFFF; }
    @media (min-width: 768px) {
      .projects-main-project .logo-heading {
        width: 150px; } }
  @media (min-width: 768px) and (max-width: 1023px) {
    .projects-main-project .project-image:not(:nth-child(2n)) {
      margin-right: calc(100% - 2 * 304px); } }
  @media (min-width: 1024px) and (max-width: 1439px) {
    .projects-main-project .project-image:not(:nth-child(2n)) {
      margin-right: calc(100% - 2 * 400px); } }
  @media (min-width: 1440px) {
    .projects-main-project .project-image:not(:nth-child(3n)) {
      margin-right: calc((100% - 3 * 360px) / 2); } }

.projects-other-projects {
  padding-top: 64px;
  padding-bottom: 64px; }
  @media (min-width: 768px) {
    .projects-other-projects {
      padding-top: 96px;
      padding-bottom: 96px; } }
  @media (min-width: 768px) and (max-width: 1023px) {
    .projects-other-projects .project-image:not(:nth-child(2n)) {
      margin-right: calc(100% - 2 * 304px); } }
  @media (min-width: 1024px) and (max-width: 1439px) {
    .projects-other-projects .project-image:not(:nth-child(2n)) {
      margin-right: calc(100% - 2 * 400px); } }
  @media (min-width: 1440px) {
    .projects-other-projects .project-image:not(:nth-child(3n)) {
      margin-right: calc((100% - 3 * 360px) / 2); } }
  .projects-other-projects .project-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center; }
  .projects-other-projects .project-logo {
    position: absolute;
    left: 40px;
    top: 40px;
    width: 100%;
    max-width: 165px;
    max-height: 40px;
    object-position: left;
    object-fit: contain; }

.project-hero {
  width: 100%;
  height: 400px; }
  @media (min-width: 768px) {
    .project-hero {
      height: 560px; } }
  .project-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.project-content {
  margin-top: 48px; }
  @media (min-width: 768px) {
    .project-content {
      margin-top: 80px; } }
  .project-content .content-container {
    margin-left: 24px;
    margin-right: 24px; }
    @media (min-width: 576px) {
      .project-content .content-container {
        margin-left: 48px;
        margin-right: 48px; } }
    @media (min-width: 768px) {
      .project-content .content-container {
        margin-left: auto;
        margin-right: auto;
        max-width: 640px;
        width: 640px; } }
    @media (min-width: 1024px) {
      .project-content .content-container {
        max-width: 720px;
        width: 720px; } }
  .project-content .content {
    display: flex;
    flex-direction: column; }
    .project-content .content .project-block:not(:last-child) {
      margin-bottom: 40px; }
    @media (min-width: 768px) {
      .project-content .content .project-block:not(:last-child) {
        margin-bottom: 56px; } }
  .project-content .projects-link {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px; }

.project-quote {
  padding-left: 16px;
  border-left: 4px #B7936F solid; }

.project-rich-text-block p:not(:last-child) {
  margin-bottom: 24px; }

.project-rich-text-block h4:not(:first-child) {
  margin-top: 56px; }

.project-two-column-images:first-child {
  margin-top: 40px; }

.project-two-column-images .images-container {
  display: flex;
  flex-direction: column; }
  @media (min-width: 768px) {
    .project-two-column-images .images-container {
      flex-direction: row;
      justify-content: space-between; } }

.project-two-column-images .image-container {
  width: 100%; }
  @media (max-width: 767px) {
    .project-two-column-images .image-container:first-child {
      margin-bottom: 24px; } }
  @media (min-width: 768px) {
    .project-two-column-images .image-container {
      width: 304px;
      margin-bottom: 0; } }
  @media (min-width: 1024px) {
    .project-two-column-images .image-container {
      width: 340px; } }

.project-two-column-images img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.project-two-column-images .image-small {
  height: calc((100vw - 2 * 24px) * 0.66); }
  @media (min-width: 576px) {
    .project-two-column-images .image-small {
      height: calc((100vw - 2 * 48px) * 0.66); } }
  @media (min-width: 768px) {
    .project-two-column-images .image-small {
      height: 200px; } }
  @media (min-width: 1024px) {
    .project-two-column-images .image-small {
      height: 224px; } }

.project-two-column-images .image-medium {
  height: calc((100vw - 2 * 24px) * 1.16); }
  @media (min-width: 576px) {
    .project-two-column-images .image-medium {
      height: calc((100vw - 2 * 48px) * 1.16); } }
  @media (min-width: 768px) {
    .project-two-column-images .image-medium {
      height: 360px; } }
  @media (min-width: 1024px) {
    .project-two-column-images .image-medium {
      height: 400px; } }

.project-two-column-images .image-large {
  height: calc((100vw - 2 * 24px) * 1.41); }
  @media (min-width: 576px) {
    .project-two-column-images .image-large {
      height: calc((100vw - 2 * 48px) * 1.41); } }
  @media (min-width: 768px) {
    .project-two-column-images .image-large {
      height: 430px; } }
  @media (min-width: 1024px) {
    .project-two-column-images .image-large {
      height: 480px; } }

@media (min-width: 768px) {
  .project-full-image {
    margin: 0 auto;
    max-width: 640px;
    width: 640px; } }

@media (min-width: 1024px) {
  .project-full-image {
    max-width: 720px;
    width: 720px; } }

.project-full-image img {
  width: 100%;
  height: 50vw;
  object-fit: cover; }
  @media (min-width: 768px) {
    .project-full-image img {
      height: 320px; } }
  @media (min-width: 1024px) {
    .project-full-image img {
      height: 360px; } }

@media (max-width: 575px) {
  .project-text-with-image {
    display: flex;
    flex-direction: column; } }

@media (max-width: 767px) {
  .project-text-with-image p:not(:last-child) {
    margin-bottom: 12px; } }

@media (min-width: 768px) {
  .project-text-with-image p {
    margin-bottom: 12px; } }

.project-text-with-image .image-container {
  width: 100%; }
  @media (min-width: 576px) {
    .project-text-with-image .image-container {
      width: 280px;
      margin-bottom: 12px; } }
  @media (min-width: 768px) {
    .project-text-with-image .image-container {
      width: 304px;
      margin-bottom: 12px; } }
  @media (min-width: 1024px) {
    .project-text-with-image .image-container {
      width: 340px; } }

@media (max-width: 575px) {
  .project-text-with-image .image-left {
    order: 0;
    margin-bottom: 24px; } }

@media (min-width: 576px) {
  .project-text-with-image .image-left {
    float: left;
    margin-right: 32px; } }

@media (min-width: 1024px) {
  .project-text-with-image .image-left {
    margin-right: 40px; } }

@media (max-width: 575px) {
  .project-text-with-image .image-right {
    order: 1;
    margin-top: 24px; } }

@media (min-width: 576px) {
  .project-text-with-image .image-right {
    float: right;
    margin-left: 32px; } }

@media (min-width: 1024px) {
  .project-text-with-image .image-right {
    margin-left: 40px; } }

.project-text-with-image.image-small {
  min-height: calc((100vw - 2 * 24px) * 1.16); }
  @media (min-width: 320px) {
    .project-text-with-image.image-small {
      min-height: calc((100vw - 2 * 48px) * 1.16); } }
  @media (min-width: 576px) {
    .project-text-with-image.image-small {
      min-height: 300px; } }
  @media (min-width: 768px) {
    .project-text-with-image.image-small {
      min-height: 360px; } }
  @media (min-width: 1024px) {
    .project-text-with-image.image-small {
      min-height: 340px; } }
  .project-text-with-image.image-small img {
    height: calc((100vw - 2 * 24px) * 1.16); }
    @media (min-width: 320px) {
      .project-text-with-image.image-small img {
        height: calc((100vw - 2 * 48px) * 1.16); } }
    @media (min-width: 576px) {
      .project-text-with-image.image-small img {
        height: 300px; } }
    @media (min-width: 768px) {
      .project-text-with-image.image-small img {
        height: 360px; } }
    @media (min-width: 1024px) {
      .project-text-with-image.image-small img {
        height: 340px; } }

.project-text-with-image.image-medium {
  min-height: calc((100vw - 2 * 24px) * 1.16); }
  @media (min-width: 320px) {
    .project-text-with-image.image-medium {
      min-height: calc((100vw - 2 * 48px) * 1.16); } }
  @media (min-width: 576px) {
    .project-text-with-image.image-medium {
      min-height: 320px; } }
  @media (min-width: 768px) {
    .project-text-with-image.image-medium {
      min-height: 360px; } }
  @media (min-width: 1024px) {
    .project-text-with-image.image-medium {
      min-height: 400px; } }
  .project-text-with-image.image-medium img {
    height: calc((100vw - 2 * 24px) * 1.16); }
    @media (min-width: 320px) {
      .project-text-with-image.image-medium img {
        height: calc((100vw - 2 * 48px) * 1.16); } }
    @media (min-width: 576px) {
      .project-text-with-image.image-medium img {
        height: 320px; } }
    @media (min-width: 768px) {
      .project-text-with-image.image-medium img {
        height: 360px; } }
    @media (min-width: 1024px) {
      .project-text-with-image.image-medium img {
        height: 400px; } }

.project-text-with-image.image-large {
  min-height: calc((100vw - 2 * 24px) * 1.41); }
  @media (min-width: 576px) {
    .project-text-with-image.image-large {
      min-height: calc((100vw - 2 * 48px) * 1.41); } }
  @media (min-width: 576px) {
    .project-text-with-image.image-large {
      min-height: 400px; } }
  @media (min-width: 768px) {
    .project-text-with-image.image-large {
      min-height: 430px; } }
  @media (min-width: 1024px) {
    .project-text-with-image.image-large {
      min-height: 480px; } }
  .project-text-with-image.image-large img {
    height: calc((100vw - 2 * 24px) * 1.41); }
    @media (min-width: 576px) {
      .project-text-with-image.image-large img {
        height: calc((100vw - 2 * 48px) * 1.41); } }
    @media (min-width: 576px) {
      .project-text-with-image.image-large img {
        height: 400px; } }
    @media (min-width: 768px) {
      .project-text-with-image.image-large img {
        height: 430px; } }
    @media (min-width: 1024px) {
      .project-text-with-image.image-large img {
        height: 480px; } }

@media (max-width: 575px) {
  .project-text-with-two-images {
    display: flex;
    flex-direction: column; } }

@media (max-width: 767px) {
  .project-text-with-two-images p:not(:last-child) {
    margin-bottom: 12px; } }

@media (min-width: 768px) {
  .project-text-with-two-images p {
    margin-bottom: 12px; } }

.project-text-with-two-images .image-container {
  width: 100%; }
  @media (min-width: 576px) {
    .project-text-with-two-images .image-container {
      width: 280px;
      margin-bottom: 12px; } }
  @media (min-width: 768px) {
    .project-text-with-two-images .image-container {
      width: 304px;
      margin-bottom: 12px; } }
  @media (min-width: 1024px) {
    .project-text-with-two-images .image-container {
      width: 340px; } }

@media (max-width: 575px) {
  .project-text-with-two-images .image-left {
    order: 0;
    margin-bottom: 24px; } }

@media (min-width: 576px) {
  .project-text-with-two-images .image-left {
    float: left;
    margin-right: 32px; } }

@media (min-width: 1024px) {
  .project-text-with-two-images .image-left {
    margin-right: 40px; } }

@media (max-width: 575px) {
  .project-text-with-two-images .image-right {
    order: 1;
    margin-top: 24px; } }

@media (min-width: 576px) {
  .project-text-with-two-images .image-right {
    float: right;
    margin-left: 32px; } }

@media (min-width: 1024px) {
  .project-text-with-two-images .image-right {
    margin-left: 40px; } }

.project-text-with-two-images img {
  height: calc((100vw - 2 * 24px) * 0.65); }
  @media (min-width: 320px) {
    .project-text-with-two-images img {
      height: calc((100vw - 2 * 48px) * 0.65); } }
  @media (min-width: 576px) {
    .project-text-with-two-images img {
      height: 200px; } }
  @media (min-width: 768px) {
    .project-text-with-two-images img {
      height: 200px; } }
  @media (min-width: 1024px) {
    .project-text-with-two-images img {
      height: 220px; } }
  .project-text-with-two-images img:last-of-type {
    margin-top: 24px; }

.project-text-with-two-images .image-subtext:first-of-type {
  margin-bottom: -10px; }

.project-text-with-two-images-crossed {
  display: flex;
  flex-direction: column; }
  @media (max-width: 575px) {
    .project-text-with-two-images-crossed .text-image-container {
      display: flex;
      flex-direction: column; } }
  @media (min-width: 576px) {
    .project-text-with-two-images-crossed .text-image-container:first-child {
      margin-bottom: 24px; } }
  @media (max-width: 767px) {
    .project-text-with-two-images-crossed p:not(:last-child) {
      margin-bottom: 12px; } }
  @media (min-width: 768px) {
    .project-text-with-two-images-crossed p {
      margin-bottom: 12px; } }
  .project-text-with-two-images-crossed .image-container {
    width: 100%; }
    @media (min-width: 576px) {
      .project-text-with-two-images-crossed .image-container {
        width: 280px;
        margin-bottom: 12px; } }
    @media (min-width: 768px) {
      .project-text-with-two-images-crossed .image-container {
        width: 304px;
        margin-bottom: 12px; } }
    @media (min-width: 1024px) {
      .project-text-with-two-images-crossed .image-container {
        width: 340px; } }
  @media (max-width: 575px) {
    .project-text-with-two-images-crossed .image-left {
      order: 0;
      margin-bottom: 24px; } }
  @media (min-width: 576px) {
    .project-text-with-two-images-crossed .image-left {
      float: left;
      margin-right: 32px; } }
  @media (min-width: 1024px) {
    .project-text-with-two-images-crossed .image-left {
      margin-right: 40px; } }
  @media (max-width: 575px) {
    .project-text-with-two-images-crossed .image-right {
      order: 1;
      margin-bottom: 24px;
      margin-top: 24px; } }
  @media (min-width: 576px) {
    .project-text-with-two-images-crossed .image-right {
      float: right;
      margin-left: 32px; } }
  @media (min-width: 1024px) {
    .project-text-with-two-images-crossed .image-right {
      margin-left: 40px; } }
  .project-text-with-two-images-crossed img {
    height: calc((100vw - 2 * 24px) * 0.65); }
    @media (min-width: 320px) {
      .project-text-with-two-images-crossed img {
        height: calc((100vw - 2 * 48px) * 0.65); } }
    @media (min-width: 576px) {
      .project-text-with-two-images-crossed img {
        height: 200px; } }
    @media (min-width: 768px) {
      .project-text-with-two-images-crossed img {
        height: 200px; } }
    @media (min-width: 1024px) {
      .project-text-with-two-images-crossed img {
        height: 220px; } }
  .project-text-with-two-images-crossed .image-subtext:first-of-type {
    margin-bottom: -10px; }

@media (max-width: 575px) {
  .project-text-with-two-images-tall {
    display: flex;
    flex-direction: column; } }

@media (max-width: 767px) {
  .project-text-with-two-images-tall p:not(:last-child) {
    margin-bottom: 12px; } }

@media (min-width: 768px) {
  .project-text-with-two-images-tall p {
    margin-bottom: 12px; } }

.project-text-with-two-images-tall .image-container {
  width: 100%;
  margin-bottom: 24px; }
  @media (min-width: 576px) {
    .project-text-with-two-images-tall .image-container {
      width: 280px; } }
  @media (min-width: 768px) {
    .project-text-with-two-images-tall .image-container {
      width: 304px; } }
  @media (min-width: 1024px) {
    .project-text-with-two-images-tall .image-container {
      width: 340px; } }

@media (min-width: 576px) {
  .project-text-with-two-images-tall .image-container-tall.image-left {
    margin-right: 32px; } }

@media (min-width: 1024px) {
  .project-text-with-two-images-tall .image-container-tall.image-left {
    margin-right: 40px; } }

@media (min-width: 576px) {
  .project-text-with-two-images-tall .image-container-tall.image-right {
    margin-left: 32px; } }

@media (min-width: 1024px) {
  .project-text-with-two-images-tall .image-container-tall.image-right {
    margin-left: 40px; } }

@media (min-width: 1440px) {
  .project-text-with-two-images-tall .image-container-tall.image-right {
    margin-left: 40px; } }

.project-text-with-two-images-tall .image-container-tall img {
  height: calc((100vw - 2 * 24px) * 1.85); }
  @media (min-width: 320px) {
    .project-text-with-two-images-tall .image-container-tall img {
      height: calc((100vw - 2 * 48px) * 1.85); } }
  @media (min-width: 576px) {
    .project-text-with-two-images-tall .image-container-tall img {
      height: 450px; } }
  @media (min-width: 768px) {
    .project-text-with-two-images-tall .image-container-tall img {
      height: 570px; } }
  @media (min-width: 1024px) {
    .project-text-with-two-images-tall .image-container-tall img {
      height: 630px; } }

@media (max-width: 767px) and (min-width: 576px) {
  .project-text-with-two-images-tall .image-container-small.image-left {
    margin-left: 32px;
    float: right; } }

@media (max-width: 575px) {
  .project-text-with-two-images-tall .image-container-small.image-right {
    margin-bottom: 0; } }

@media (max-width: 767px) and (min-width: 576px) {
  .project-text-with-two-images-tall .image-container-small.image-right {
    margin-right: 32px;
    float: left; } }

.project-text-with-two-images-tall .image-container-small img {
  height: calc(100vw - 2 * 24px); }
  @media (min-width: 320px) {
    .project-text-with-two-images-tall .image-container-small img {
      height: 280px; } }
  @media (min-width: 768px) {
    .project-text-with-two-images-tall .image-container-small img {
      height: 300px; } }
  @media (min-width: 1024px) {
    .project-text-with-two-images-tall .image-container-small img {
      height: 340px; } }

@media (max-width: 575px) {
  .project-text-with-two-images-tall .image-left {
    order: 0;
    margin-bottom: 24px; } }

@media (min-width: 576px) {
  .project-text-with-two-images-tall .image-left {
    float: left; } }

@media (max-width: 575px) {
  .project-text-with-two-images-tall .image-right {
    order: 1;
    margin-top: 24px; } }

@media (min-width: 576px) {
  .project-text-with-two-images-tall .image-right {
    float: right; } }

@media (max-width: 575px) {
  .services-hero img {
    height: 80vw;
    max-height: 450px;
    min-height: 400px;
    margin-left: auto;
    margin-right: 10px;
    margin-bottom: -50px; } }

@media (min-width: 576px) {
  .services-hero img {
    height: 677px;
    margin-top: 0px;
    margin-left: 20px;
    margin-bottom: -100px; } }

@media (min-width: 768px) {
  .services-hero img {
    height: 700px;
    margin-left: 0px;
    margin-bottom: -120px; } }

@media (min-width: 1024px) {
  .services-hero img {
    height: 650px;
    margin-left: 80px; } }

@media (min-width: 1440px) {
  .services-hero img {
    margin-left: 120px; } }

.services-approach {
  background-color: #000000;
  padding: 64px 0; }
  @media (min-width: 768px) {
    .services-approach {
      padding: 96px 0; } }
  @media (min-width: 768px) {
    .services-approach .services-description {
      max-width: 440px; } }
  @media (min-width: 1024px) {
    .services-approach .services-description {
      max-width: 630px; } }
  @media (min-width: 1440px) {
    .services-approach .services-description {
      max-width: 820px; } }
  .services-approach .content-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 40px; }
    @media (max-width: 767px) {
      .services-approach .content-container {
        flex-direction: column;
        align-items: center; } }
    @media (min-width: 576px) {
      .services-approach .content-container {
        margin-left: 48px;
        margin-right: 48px; } }
    @media (min-width: 768px) {
      .services-approach .content-container {
        flex-direction: row;
        flex-wrap: wrap;
        margin-left: auto;
        margin-right: auto;
        max-width: 640px;
        width: 640px; } }
    @media (min-width: 1024px) {
      .services-approach .content-container {
        max-width: 832px;
        width: 832px; } }
    @media (min-width: 1440px) {
      .services-approach .content-container {
        max-width: 1184px;
        width: 1184px; } }
  .services-approach .card {
    max-width: 290px;
    cursor: pointer; }
    @media (max-width: 575px) {
      .services-approach .card {
        margin-left: 24px;
        margin-right: 24px; } }
    @media (max-width: 767px) {
      .services-approach .card {
        display: flex;
        flex-direction: column;
        align-items: center; }
        .services-approach .card:not(:last-child) {
          margin-bottom: 48px; }
        .services-approach .card h3 {
          text-align: center; } }
    @media (min-width: 768px) {
      .services-approach .card {
        flex: 0 0 290px;
        margin-bottom: 48px; } }
    @media (min-width: 1024px) and (max-width: 1439px) {
      .services-approach .card:not(:nth-child(4n + 3)) {
        margin-right: 100px; } }
    @media (min-width: 1440px) {
      .services-approach .card:not(:nth-child(6n - 1)) {
        margin-right: 100px; } }
    .services-approach .card:hover svg, .services-approach .card.active svg {
      fill: #B7936F; }
    .services-approach .card:hover h3, .services-approach .card.active h3 {
      color: #B7936F; }
    .services-approach .card svg {
      fill: #FFFFFF;
      transition: fill 200ms; }
    .services-approach .card h3 {
      color: #FFFFFF;
      transition: color 200ms; }
    .services-approach .card .icon {
      margin-bottom: 24px; }
  .services-approach .details-container {
    display: none;
    flex-direction: column-reverse; }
    @media (max-width: 767px) {
      .services-approach .details-container {
        margin-top: 24px;
        margin-bottom: 58px; } }
    @media (min-width: 768px) {
      .services-approach .details-container {
        order: 7; } }
    @media (min-width: 1024px) {
      .services-approach .details-container {
        width: 100%;
        margin-top: 32px;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start; } }
    .services-approach .details-container.active {
      display: flex; }
  .services-approach .description-container {
    display: flex;
    flex-direction: column; }
    @media (max-width: 575px) {
      .services-approach .description-container {
        margin-left: 24px;
        margin-right: 24px; } }
    @media (min-width: 1024px) {
      .services-approach .description-container {
        min-height: 510px;
        margin-right: 82px;
        justify-content: space-between; } }
    @media (min-width: 1440px) {
      .services-approach .description-container {
        min-height: 536px;
        margin-right: 112px; } }
  .services-approach .text-container {
    margin-bottom: 28px; }
    @media (min-width: 768px) {
      .services-approach .text-container {
        margin-bottom: 44px; } }
  .services-approach .order-container {
    display: flex;
    flex-direction: column; }
    @media (min-width: 576px) {
      .services-approach .order-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center; } }
    .services-approach .order-container h3 {
      width: 170px;
      margin-bottom: 0;
      padding-left: 16px;
      border-left: #B7936F 4px solid; }
      @media (max-width: 575px) {
        .services-approach .order-container h3 {
          margin-bottom: 32px; } }
  .services-approach .slider-outer-container {
    position: relative; }
    @media (max-width: 1023px) {
      .services-approach .slider-outer-container {
        margin-bottom: 40px; } }
  .services-approach .slider-container {
    overflow: hidden;
    width: 100%;
    height: 100vw; }
    @media (min-width: 576px) {
      .services-approach .slider-container {
        height: calc(100vw - 48px * 2); } }
    @media (min-width: 768px) {
      .services-approach .slider-container {
        height: 640px; } }
    @media (min-width: 1024px) {
      .services-approach .slider-container {
        width: 374px;
        height: 446px; } }
    @media (min-width: 1440px) {
      .services-approach .slider-container {
        width: 608px;
        height: 536px; } }
  .services-approach .slider {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    transition: transform 200ms; }
  .services-approach .service-photo {
    flex-shrink: 0; }
  .services-approach .arrow-back,
  .services-approach .arrow-forw {
    position: absolute;
    width: 32px;
    height: 32px;
    top: 252px;
    padding: 8px;
    fill: #FFFFFF;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    transition: opacity 200ms, fill 200ms; }
    .services-approach .arrow-back:hover,
    .services-approach .arrow-forw:hover {
      fill: #B7936F; }
    .services-approach .arrow-back.inactive,
    .services-approach .arrow-forw.inactive {
      opacity: 0.7;
      cursor: initial; }
      .services-approach .arrow-back.inactive:hover,
      .services-approach .arrow-forw.inactive:hover {
        fill: #FFFFFF; }
    @media (max-width: 767px) {
      .services-approach .arrow-back,
      .services-approach .arrow-forw {
        display: none; } }
    @media (min-width: 768px) {
      .services-approach .arrow-back,
      .services-approach .arrow-forw {
        top: 304px; } }
    @media (min-width: 1024px) {
      .services-approach .arrow-back,
      .services-approach .arrow-forw {
        top: 207px; } }
    @media (min-width: 1440px) {
      .services-approach .arrow-back,
      .services-approach .arrow-forw {
        top: 252px; } }
  .services-approach .arrow-back {
    transform: rotateZ(180deg); }
    @media (min-width: 768px) {
      .services-approach .arrow-back {
        left: -44px; } }
    @media (min-width: 1024px) {
      .services-approach .arrow-back {
        left: -48px; } }
  @media (max-width: 767px) {
    .services-approach .arrow-forw {
      right: -44px; } }
  @media (min-width: 768px) {
    .services-approach .arrow-forw {
      right: -44px; } }
  @media (min-width: 1024px) {
    .services-approach .arrow-forw {
      right: -48px; } }
  .services-approach .controls-container {
    display: flex;
    margin-top: 32px; }
  .services-approach .control {
    transition: padding 200ms; }
    .services-approach .control.active {
      padding: 4px; }

@media (max-width: 575px) {
  .about-us-hero img {
    height: 80vw;
    max-height: 510px;
    min-height: 400px;
    margin-left: auto;
    margin-right: -20px;
    margin-bottom: -40px; } }

@media (min-width: 576px) {
  .about-us-hero img {
    height: 517px;
    margin-top: 225px;
    margin-left: -50px;
    margin-bottom: -100px; } }

@media (min-width: 768px) {
  .about-us-hero img {
    height: 777px;
    margin-top: 0;
    margin-left: -30px;
    margin-bottom: -100px; } }

@media (min-width: 1024px) {
  .about-us-hero img {
    margin-left: 50px; } }

@media (min-width: 1440px) {
  .about-us-hero img {
    margin-left: 100px; } }

.about-us-mission {
  padding: 64px 0;
  background-color: #000000; }
  @media (min-width: 768px) {
    .about-us-mission {
      padding: 96px 0; } }
  @media (min-width: 1024px) {
    .about-us-mission .text-description {
      max-width: 66%; } }
  .about-us-mission .card svg {
    fill: #B7936F; }
  .about-us-mission .card h3 {
    color: #B7936F; }

.about-us-history {
  display: flex;
  flex-direction: column-reverse;
  margin-top: 64px; }
  @media (max-width: 575px) {
    .about-us-history {
      margin-left: 24px;
      margin-right: 24px; } }
  @media (min-width: 576px) and (max-width: 1439px) {
    .about-us-history {
      margin-left: 48px;
      margin-right: 48px; } }
  @media (min-width: 768px) and (max-width: 1439px) {
    .about-us-history {
      max-width: 640px;
      width: 640px;
      margin-top: 96px;
      margin-left: auto;
      margin-right: auto; } }
  @media (min-width: 1024px) and (max-width: 1439px) {
    .about-us-history {
      max-width: 832px;
      width: 832px; } }
  @media (min-width: 1440px) {
    .about-us-history {
      flex-direction: row;
      margin-left: calc((100% - 1184px) / 2); } }
  .about-us-history h2 {
    margin-bottom: 0; }
  .about-us-history .text-year {
    margin-top: 40px; }
    @media (max-width: 575px) {
      .about-us-history .text-year {
        margin-bottom: 16px; } }
    @media (min-width: 1440px) {
      .about-us-history .text-year {
        margin-top: 55px; } }
  .about-us-history .info-container {
    display: flex;
    flex-direction: column;
    max-width: 560px; }
    @media (min-width: 1440px) {
      .about-us-history .info-container {
        min-height: 536px;
        margin-right: 90px; } }
  @media (max-width: 1439px) {
    .about-us-history .mobile-hidden {
      display: none; } }
  @media (min-width: 1440px) {
    .about-us-history .desktop-hidden {
      display: none; } }
  .about-us-history .slider-container {
    max-width: 663px;
    overflow: hidden; }
  .about-us-history .slider {
    position: relative;
    width: 100%; }
    @media (max-width: 1439px) {
      .about-us-history .slider {
        margin-top: 40px; } }
    @media (max-width: 767px) {
      .about-us-history .slider {
        height: calc((100vw - 48px * 2) * 0.8); } }
    @media (max-width: 575px) {
      .about-us-history .slider {
        height: calc((100vw - 24px * 2) * 0.8); } }
    @media (min-width: 768px) {
      .about-us-history .slider {
        height: 536px; } }
  .about-us-history .history-image {
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 200ms; }
    .about-us-history .history-image:not(:first-child) {
      position: absolute;
      top: 0;
      left: 0; }
    .about-us-history .history-image.active {
      opacity: 1; }
  .about-us-history .timeline-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 32px;
    margin-bottom: 40px; }
    @media (max-width: 575px) {
      .about-us-history .timeline-container {
        display: none; } }
  .about-us-history .timeline-line {
    position: absolute;
    width: calc(100% - 8px);
    height: 1px;
    top: 7px;
    margin: 0 4px;
    background-color: #A0A0A6; }
  .about-us-history .timeline-point {
    position: relative;
    width: 16px;
    height: 16px;
    padding: 4px;
    transition: padding 200ms;
    cursor: pointer; }
    .about-us-history .timeline-point .filling {
      width: 100%;
      height: 100%;
      background-color: #A0A0A6;
      transition: background-color 200ms; }
    .about-us-history .timeline-point.active {
      padding: 0px;
      cursor: initial; }
      .about-us-history .timeline-point.active .filling {
        background-color: #B7936F; }
  .about-us-history .arrows-container {
    margin-top: 40px; }
    @media (min-width: 1440px) {
      .about-us-history .arrows-container {
        margin-top: auto; } }
  .about-us-history .arrow-back,
  .about-us-history .arrow-forw {
    width: 32px;
    height: 32px;
    padding: 8px;
    fill: #000000;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    transition: opacity 200ms, fill 200ms; }
    .about-us-history .arrow-back:hover,
    .about-us-history .arrow-forw:hover {
      fill: #B7936F; }
    .about-us-history .arrow-back.inactive,
    .about-us-history .arrow-forw.inactive {
      opacity: 0.7;
      cursor: initial;
      fill: #A0A0A6; }
  .about-us-history .arrow-back {
    transform: rotateZ(180deg);
    margin-left: -8px;
    margin-right: 24px; }

.about-us-team {
  position: relative;
  margin-top: 64px; }
  @media (min-width: 768px) {
    .about-us-team {
      margin-top: 128px; } }
  @media (max-width: 575px) {
    .about-us-team .text-container {
      margin-left: 24px;
      margin-right: 24px; } }
  @media (min-width: 576px) and (max-width: 1439px) {
    .about-us-team .text-container {
      margin-left: 48px;
      margin-right: 48px; } }
  @media (min-width: 768px) and (max-width: 1439px) {
    .about-us-team .text-container {
      max-width: 640px;
      width: 640px;
      margin-top: 96px;
      margin-left: auto;
      margin-right: auto; } }
  @media (min-width: 1024px) and (max-width: 1439px) {
    .about-us-team .text-container {
      max-width: 832px;
      width: 832px; } }
  @media (min-width: 1440px) {
    .about-us-team .text-container {
      position: absolute;
      top: 0;
      left: calc((100% - 1184px) / 2);
      width: 464px; } }
  @media (max-width: 1439px) {
    .about-us-team .text-container p {
      max-width: 640px; } }
  .about-us-team .text-container p:not(:last-child) {
    margin-bottom: 24px; }
  .about-us-team .slider-container {
    overflow: hidden; }
    @media (min-width: 1440px) {
      .about-us-team .slider-container {
        max-width: 1184px;
        width: 1184px;
        margin: 0 auto; } }
  .about-us-team .slider {
    display: flex; }
    @media (max-width: 1439px) {
      .about-us-team .slider {
        margin: 40px calc((100% - 832px) / 2);
        transition: transform 200ms; } }
    @media (max-width: 1023px) {
      .about-us-team .slider {
        margin-left: calc((100% - 640px) / 2);
        margin-right: calc((100% - 640px) / 2); } }
    @media (max-width: 767px) {
      .about-us-team .slider {
        margin-left: 48px;
        margin-right: 48px; } }
    @media (max-width: 575px) {
      .about-us-team .slider {
        margin-left: 24px;
        margin-right: 24px; } }
    @media (min-width: 1440px) {
      .about-us-team .slider {
        height: 820px;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: flex-end; } }
  .about-us-team .team-member {
    border: #B7936F 3px solid;
    background-color: #B7936F; }
    @media (max-width: 1439px) {
      .about-us-team .team-member {
        width: 397px;
        height: 397px;
        flex-shrink: 0; }
        .about-us-team .team-member:not(:last-child) {
          margin-right: 40px; }
        .about-us-team .team-member:nth-child(2) {
          order: 1; }
        .about-us-team .team-member:nth-child(5) {
          order: 2; }
        .about-us-team .team-member:nth-child(6) {
          order: 3; }
        .about-us-team .team-member:nth-child(1) {
          order: 4; }
        .about-us-team .team-member:nth-child(3) {
          order: 5; }
        .about-us-team .team-member:nth-child(4) {
          order: 6; }
        .about-us-team .team-member:nth-child(7) {
          order: 7; } }
    @media (max-width: 767px) {
      .about-us-team .team-member {
        width: 320px;
        height: 320px; }
        .about-us-team .team-member:not(:last-child) {
          margin-right: 24px; } }
    @media (max-width: 575px) {
      .about-us-team .team-member {
        width: calc(100vw - 24px * 2);
        height: calc(100vw - 24px * 2); }
        .about-us-team .team-member:not(:last-child) {
          margin-right: 24px; } }
    @media (min-width: 1440px) {
      .about-us-team .team-member:nth-child(1) {
        width: 576px;
        height: 353px;
        margin-top: 400px;
        border-right: none; }
      .about-us-team .team-member:nth-child(2) {
        width: 304px;
        height: 464px;
        border-right: none;
        border-bottom: none; }
      .about-us-team .team-member:nth-child(3) {
        border-bottom: none; }
      .about-us-team .team-member:nth-child(3), .about-us-team .team-member:nth-child(4) {
        width: 304px;
        height: 176.5px;
        border-right: none; }
      .about-us-team .team-member:nth-child(5) {
        width: 304px;
        height: 304px;
        border-bottom: none; }
      .about-us-team .team-member:nth-child(6) {
        width: 304px;
        height: 160px;
        border-bottom: none; }
      .about-us-team .team-member:nth-child(7) {
        width: 304px;
        height: 353px; } }
  .about-us-team .control {
    transition: padding 200ms; }
    .about-us-team .control.active {
      padding: 4px; }

.about-us-reviews .reviews-container {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  margin-bottom: -32px; }
  @media (min-width: 1024px) {
    .about-us-reviews .reviews-container {
      flex-direction: row;
      justify-content: space-between;
      flex-wrap: wrap; } }

.about-us-reviews .review-item {
  position: relative;
  padding: 24px;
  padding-right: 56px;
  margin-bottom: 32px;
  border: 2px solid #B7936F; }
  @media (min-width: 768px) {
    .about-us-reviews .review-item {
      padding: 40px;
      max-width: 564px; } }
  @media (min-width: 1024px) {
    .about-us-reviews .review-item {
      width: 400px;
      flex-shrink: 0; } }
  @media (min-width: 1440px) {
    .about-us-reviews .review-item {
      width: 564px; } }

@media (min-width: 768px) {
  .about-us-reviews .text-container {
    max-width: 440px; } }

@media (min-width: 1024px) {
  .about-us-reviews .text-container {
    max-width: 280px; } }

@media (min-width: 1440px) {
  .about-us-reviews .text-container {
    max-width: 440px; } }

.about-us-reviews .quotes {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: 'HelveticaNeue';
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  color: #B7936F; }
  @media (min-width: 768px) {
    .about-us-reviews .quotes {
      top: 40px;
      right: 40px;
      font-size: 64px;
      line-height: 64px; } }
