:root {
  --blue: #2582ce;
  --red: #e20016;
  --red-dark: #c2212e;
  --white: #ffffff;
  --black: #000000;
  --body-bg: #e5e5e5;
  --soft-bg: #f7f8f9;
  --muted: #5f646a;
  --line: rgba(0, 0, 0, 0.22);
  --max: 1000px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--body-bg);
  color: var(--black);
  font-family: Montserrat, Arial, sans-serif;
}

body {
  margin: 0;
  background: var(--body-bg);
  font-size: 62.5%;
  font-weight: 400;
  line-height: 1;
}

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

a {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: border-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

a:hover {
  color: var(--blue);
  border-bottom-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 15px;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.41;
}

h2 {
  margin-bottom: 10px;
  font-size: 3.6em;
  font-weight: 700;
  line-height: 1.41;
}

h3 {
  margin-bottom: 10px;
  font-size: 3em;
  font-weight: 700;
  line-height: 1.41;
}

p {
  margin-bottom: 1.1em;
  font-size: 1.8em;
  line-height: 1.41;
}

.section {
  margin-left: 50px;
  margin-right: 50px;
}

.container {
  display: flex;
  width: 100%;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  flex-direction: column;
  align-items: flex-start;
}

.heading-jumbo {
  max-width: 960px;
  margin-bottom: 10px;
  font-size: 6em;
  font-weight: 700;
  line-height: 1.41;
}

.paragraph-bigger {
  margin-bottom: 10px;
  font-size: 2em;
  font-weight: 500;
  line-height: 1.41;
}

.paragraph-bigger.cc-bigger-light {
  margin-top: 3vw;
  line-height: 1.6;
}

.paragraph-light {
  color: #3b3f44;
  font-size: 1.6em;
  line-height: 1.6;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 17px 30px 16px;
  border: 0;
  border-radius: 5px;
  background: var(--red);
  color: var(--white);
  font: inherit;
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
  cursor: pointer;
}

.button:hover,
.button:active {
  background: var(--red-dark);
  color: var(--white);
  border-bottom: 0;
}

.button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.button.cc-jumbo-button {
  padding: 20px 36px;
  font-size: 1.6em;
  line-height: 1.41;
}

.button.cc-contact-us {
  position: relative;
  z-index: 5;
}

.button.cc-contact-us.w--current {
  display: none;
}

.text-link {
  color: var(--blue);
  border-bottom: 1px solid rgba(37, 130, 206, 0.45);
}

.text-link.silent-text-link {
  color: var(--black);
  border-bottom: 0;
}

.navigation {
  display: block;
  position: relative;
  padding: 30px 50px;
  background: transparent;
}

.container.cc-nav-container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--black);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  border-bottom: 0;
}

.logo-image {
  width: 200px;
  height: auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}

.navigation-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.navigation-item {
  color: var(--black);
  opacity: 0.62;
  padding: 9px 10px;
  border-bottom: 0;
  font-size: 1.4em;
  font-weight: 500;
  line-height: 20px;
  text-transform: uppercase;
}

.navigation-item:hover {
  opacity: 0.9;
  color: var(--black);
}

.navigation-item.w--current {
  opacity: 1;
  border-bottom: 2px solid var(--black);
  font-weight: 600;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.burger,
.burger-bar-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.burger {
  justify-content: center;
  width: 44px;
  height: 44px;
}

.bar1,
.bar2,
.bar3 {
  display: block;
  height: 4px;
  border-radius: 2px;
  background: var(--black);
  transition: transform 0.2s ease, opacity 0.2s ease, width 0.2s ease;
}

.bar1,
.bar3 {
  width: 18px;
}

.bar2 {
  width: 36px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.nav-open .bar1 {
  width: 32px;
  transform: translateY(9px) rotate(45deg);
}

.nav-open .bar2 {
  opacity: 0;
}

.nav-open .bar3 {
  width: 32px;
  transform: translateY(-9px) rotate(-45deg);
}

.section.cc-hero-section {
  display: flex;
  align-items: center;
  min-height: 460px;
  margin-bottom: 100px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.intro-text {
  max-width: 900px;
}

.section.cc-cta {
  margin-top: 100px;
  margin-left: 0;
  margin-right: 0;
  padding-left: 80px;
  padding-right: 80px;
  background: #1a1b1f;
  color: var(--white);
}

.cta-wrap {
  display: flex;
  width: auto;
  padding-top: 110px;
  padding-bottom: 120px;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.cta-text {
  width: 70%;
  margin-bottom: 35px;
}

.cta-text .paragraph-bigger {
  color: rgba(255, 255, 255, 0.82);
}

.project-services-grid {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px 50px;
  margin-top: 3vw;
}

.project-services-link {
  display: inline;
  color: var(--black);
  border-bottom: 1px solid rgba(0, 0, 0, 0.33);
  font-size: 1.6em;
  line-height: 1.41;
}

.project-services-link:hover,
.project-services-link.is-active {
  color: var(--black);
  border-bottom-color: var(--black);
}

.project-services-link.is-active {
  background: var(--black);
  color: var(--white);
  margin-left: -5px;
  margin-right: -5px;
  padding-left: 5px;
  padding-right: 5px;
  border-bottom: 0;
}

.projects-list-wrapper {
  width: 100%;
  margin-top: 3vw;
  margin-bottom: 3vw;
}

.projects-list {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  gap: 40px 30px;
}

.project-item {
  min-width: 0;
}

.project-item.cc-project-item-large-card {
  grid-column: 1 / -1;
}

.project-item-link-block {
  display: grid;
  height: 100%;
  grid-template-columns: 5fr minmax(200px, 1fr);
  gap: 30px 20px;
  color: var(--black);
  border-bottom: 0;
  perspective: 1000px;
}

.project-item-link-block:hover {
  color: var(--black);
  border-bottom: 0;
}

.project-item-link-block.cc-project-item-large-card {
  grid-template-columns: 4fr minmax(300px, 1fr);
  min-height: 540px;
  margin-bottom: 3vw;
}

.project-item-image {
  min-height: 260px;
  height: 100%;
  border-radius: 8px;
  background-position: 50% 50%;
  background-size: cover;
  box-shadow: 4px 4px 35px 1px rgba(37, 130, 206, 0.45);
  overflow: hidden;
  position: relative;
}

.project-item-image--empty {
  background: linear-gradient(135deg, #d6dce0, #f0f0f0);
}

.project-item-image-highlight {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  filter: blur(50px);
  opacity: 0.1;
}

.project-item-heading-wrapper {
  margin-top: -9px;
  margin-bottom: 1.6em;
}

.project-item-heading {
  display: inline;
  color: var(--black);
  border-bottom: 1px solid rgba(0, 0, 0, 0.33);
  font-size: 300%;
  line-height: 1.41;
}

.project-item-description {
  color: var(--black);
  font-size: 1.6em;
  line-height: 1.41;
}

.project-main-image {
  width: 100%;
  margin-top: 3vw;
  margin-bottom: 5vw;
  border-radius: 8px;
}

.project-details-grid {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 60px;
  margin-top: 60px;
}

.project-descr-wrap {
  min-width: 0;
}

.details-wrap,
.contact-sticky {
  position: sticky;
  top: 50px;
  align-self: start;
}

.detail-wrap {
  margin-bottom: 30px;
}

.label {
  margin-bottom: 8px;
  color: #6c7177;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.41;
  text-transform: uppercase;
}

.contact-email-link {
  display: inline;
  font-size: 1.6em;
  line-height: 1.6;
}

.client-logo {
  max-width: 170px;
  max-height: 90px;
  object-fit: contain;
  margin-bottom: 12px;
}

.project-h2 {
  color: var(--red);
}

.project-divider {
  width: 100%;
  height: 2px;
  margin-top: 60px;
  background: var(--black);
}

.rich-text {
  max-width: 880px;
}

.rich-text > *:first-child {
  margin-top: 0;
}

.rich-text p,
.rich-text li,
.rich-text blockquote {
  font-size: 1.8em;
  line-height: 1.6;
}

.rich-text li p {
  font-size: 1em;
}

.rich-text ul,
.rich-text ol {
  padding-left: 2.2em;
}

.rich-text blockquote {
  margin: 28px 0;
  padding-left: 22px;
  border-left: 4px solid var(--red);
  color: #2e3338;
}

.rich-text figure {
  margin: 34px 0;
}

.rich-text figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 1.4em;
  line-height: 1.5;
}

.services-list {
  display: grid;
  width: 100%;
  gap: 24px;
}

.services-item {
  width: 100%;
  padding: 34px;
  border-radius: 8px;
  background: var(--service-bg);
  color: var(--service-fg);
}

.services-item .rich-text {
  margin-bottom: 24px;
}

.contact-form-grid {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 60px;
  align-items: start;
}

.contact-form-wrap {
  width: 100%;
  padding: 45px;
  border-radius: 8px;
  background: var(--white);
}

.contact-form-heading-wrap {
  margin-bottom: 36px;
}

.contact-form {
  display: grid;
  width: 100%;
  gap: 12px;
}

.contact-form label {
  font-size: 1.4em;
  font-weight: 600;
  line-height: 1.4;
}

.text-field {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 5px;
  background: var(--white);
  color: var(--black);
  font: inherit;
  font-size: 1.6em;
  line-height: 1.4;
}

.text-field.cc-textarea {
  min-height: 150px;
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -10000px;
  opacity: 0;
}

.captcha-slot {
  min-height: 1px;
}

.form-status {
  padding: 12px 14px;
  border-radius: 5px;
  font-size: 1.4em;
  line-height: 1.5;
}

.form-status--ok {
  background: #e9f7ee;
}

.form-status--fail {
  background: #fff0f0;
}

.footer-section {
  margin-top: 0;
}

.footer-wrap {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr) 2fr;
  gap: 30px;
  padding-top: 70px;
  padding-bottom: 70px;
  font-size: 1.6em;
  line-height: 2;
}

.footer-item-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-item-heading {
  margin-bottom: 1.125em;
  font-weight: 500;
}

.chat-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0;
  margin-bottom: -10px;
}

.link-block {
  width: 50px;
  margin-right: 20px;
  margin-bottom: 10px;
  border-bottom: 0;
}

.link-block img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

[hidden] {
  display: none !important;
}

@media (max-width: 991px) {
  .section.cc-cta {
    padding-left: 0;
    padding-right: 0;
  }

  .paragraph-bigger.cc-bigger-light {
    font-size: 2.4em;
  }

  .button.cc-contact-us {
    display: none;
  }

  .heading-jumbo {
    font-size: 5em;
  }

  .navigation {
    padding: 15px 50px;
  }

  .menu {
    margin-left: 30px;
    gap: 0;
    position: static;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .navigation-items {
    display: none;
    position: absolute;
    z-index: 30;
    top: calc(100% - 15px);
    left: 50px;
    right: 50px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border: 2px solid var(--black);
    border-top: 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    overflow: hidden;
  }

  .nav-open .navigation-items {
    display: flex;
  }

  .navigation-item {
    padding: 16px 30px;
    text-align: center;
  }

  .navigation-item:hover {
    background: var(--soft-bg);
  }

  .navigation-item.w--current {
    border-bottom: 0;
    background: #eef0f3;
  }

  .project-details-grid {
    grid-template-columns: 1fr;
  }

  .details-wrap,
  .contact-sticky {
    position: static;
  }

  .project-item-link-block {
    grid-template-rows: minmax(220px, 2fr) minmax(100px, auto);
    grid-template-columns: 1fr;
  }

  .project-item-link-block.cc-project-item-large-card {
    grid-template-columns: 4fr minmax(220px, 1fr);
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .cta-text {
    width: auto;
  }

  .cta-wrap {
    padding: 80px 50px 90px;
  }
}

@media (max-width: 767px) {
  .section {
    margin-left: 15px;
    margin-right: 15px;
  }

  .section.cc-cta {
    padding: 15px;
  }

  .navigation {
    padding: 20px 15px;
  }

  .container.cc-nav-container {
    padding-bottom: 22px;
  }

  .navigation-items {
    top: calc(100% - 20px);
    left: 15px;
    right: 15px;
  }

  .heading-jumbo {
    font-size: 4.2em;
  }

  .paragraph-bigger {
    font-size: 16px;
    line-height: 28px;
  }

  .paragraph-bigger.cc-bigger-light {
    font-size: 2em;
  }

  .projects-list {
    grid-template-columns: 1fr;
  }

  .project-item-link-block.cc-project-item-large-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .project-item-image {
    min-height: 220px;
  }

  .contact-form-wrap {
    padding: 30px;
  }

  .footer-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
  }

  .cta-wrap {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 479px) {
  h1 {
    font-size: 36px;
    line-height: 1.41;
  }

  h2 {
    font-size: 2.4em;
  }

  .heading-jumbo {
    font-size: 3.2em;
  }

  .paragraph-bigger.cc-bigger-light {
    font-size: 1.8em;
  }

  .logo-image {
    width: 172px;
  }

  .menu {
    margin-left: 15px;
  }

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

  .navigation-items {
    left: 20px;
    right: 20px;
  }

  .project-services-grid {
    grid-template-columns: 1fr;
  }

  .project-item-link-block {
    grid-template-rows: 200px auto;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
  }

  .cta-wrap {
    padding-left: 15px;
    padding-right: 15px;
  }
}
