:root {
  --primary: #2d2a32;
  --gold: #e4a86d;
  --black: black;
  --white: white;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #333;
  font-family: Lato, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  color: var(--primary);
  margin-top: 24px;
  margin-bottom: 10px;
  font-family: Playfair Display;
  font-size: 48px;
  font-weight: 400;
  line-height: 54px;
}

h2 {
  color: var(--primary);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Playfair Display;
  font-size: 42px;
  font-weight: 400;
  line-height: 48px;
}

h3 {
  color: var(--primary);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Playfair Display;
  font-size: 36px;
  font-weight: 400;
  line-height: 42px;
}

h4 {
  color: var(--primary);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Playfair Display;
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
}

h5 {
  color: var(--primary);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Playfair Display;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
}

h6 {
  color: var(--primary);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Playfair Display;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

p {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 21px;
}

a {
  color: var(--gold);
  text-decoration: underline;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 40px;
}

li {
  color: #636668;
  font-size: 15px;
  line-height: 21px;
}

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

blockquote {
  border-left: 5px solid var(--gold);
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

figure {
  margin-top: 32px;
  margin-bottom: 16px;
}

.gray-body {
  background-color: #f9f9f9;
}

.container {
  flex: 1;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
  font-family: Inter, sans-serif;
  font-size: 16px;
}

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

.section.with-header {
  padding-top: 104px;
}

.section.gray-body.extra-padding {
  padding-top: 168px;
  padding-bottom: 168px;
}

.section.no-padding-bottom {
  padding-top: 104px;
  padding-bottom: 0;
}

.section.nopadding {
  padding-bottom: 0;
}

.style-guide-block-wrapper {
  margin-bottom: 80px;
}

.style-guide-block-wrapper.last {
  margin-bottom: 0;
}

.style-guide-block {
  background-color: #fff;
  border: 1px solid #e8e9e9;
  border-radius: 0 0 4px 4px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 104px;
  display: flex;
}

.style-guide-block.block {
  display: block;
}

.style-guide-block.narrow {
  padding-top: 24px;
  padding-bottom: 24px;
}

.colors-wrapper {
  flex-direction: row;
  justify-content: center;
  width: 100%;
  display: flex;
}

.color-block {
  border: 1px solid #0000;
  border-radius: 4px;
  height: 88px;
}

.color-block.white {
  background-color: #fff;
  border: 1px solid #e8e9e9;
}

.color-block.titanium-black {
  background-color: var(--primary);
}

.color-block.gold {
  background-color: var(--gold);
}

.color-block.light-grey {
  background-color: #fcfcfc;
  border: 1px solid #e8e9e9;
}

.color-block.border-color {
  background-color: #e8e9e9;
}

.color-block.subtitles {
  background-color: #909294;
}

.color-block.paragraphs {
  background-color: #646769;
}

.color-block-wrapper {
  border-radius: 4px;
  width: 20%;
  margin-left: 28px;
  margin-right: 28px;
}

.color-title {
  color: var(--primary);
  text-align: center;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-top: 10px;
  font-weight: 400;
}

.color-title.margin-bottom {
  margin-bottom: 10px;
}

.style-guide-block-title {
  background-color: #fff;
  border: 1px solid #e8e9e9;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  margin-bottom: -1px;
  padding: 32px 104px;
}

.style-guide-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.grayscale-block {
  background-color: var(--primary);
  flex: 1;
  height: 88px;
}

.grayscale-block._100 {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.grayscale-block._90 {
  background-color: #383c3e;
}

.grayscale-block._80 {
  background-color: #4f5254;
}

.grayscale-block._70 {
  background-color: #646769;
}

.grayscale-block._60 {
  background-color: #7b7d7f;
}

.grayscale-block._50 {
  background-color: #909294;
}

.grayscale-block._40 {
  background-color: #a7a8a9;
}

.grayscale-block._30 {
  background-color: #bcbdbe;
}

.grayscale-block._20 {
  background-color: #d3d3d4;
}

.grayscale-block._10 {
  background-color: #e8e9e9;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.greyscale-block-wrapper {
  border-radius: 4px;
  width: 100%;
  display: flex;
}

.greyscales-wrapper {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin-top: 56px;
  display: flex;
}

.greyscale-title {
  color: var(--primary);
  text-align: left;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 400;
}

.headings-wrapper {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  display: flex;
}

.heading-block {
  flex: 1;
  margin-bottom: 24px;
}

.heading-subtitle {
  color: #8f9193;
  padding-left: 4px;
}

.sub-paragraph {
  color: #636668;
}

.buttons-wrapper {
  flex-direction: row;
  justify-content: center;
  width: 100%;
  margin-top: 28px;
  margin-bottom: 28px;
  display: flex;
}

.button-block-wrapper {
  border-radius: 4px;
  width: 33.334%;
  margin-left: 28px;
  margin-right: 28px;
}

.button-block {
  border: 1px solid #e7e8e8;
  justify-content: center;
  align-items: center;
  height: 176px;
  display: flex;
}

.button-block.bg-img {
  background-image: url('../images/andrew-neel-369701.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.button-subtitle {
  color: #8f9193;
  text-align: center;
  margin-top: 10px;
}

.filled-btn {
  background-color: var(--primary);
  color: #fff;
  letter-spacing: .4px;
  border: 2px solid #0000;
  border-radius: 8px;
  margin-top: 16px;
  margin-right: 16px;
  padding: 12px 24px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-decoration: none;
  transition: background-color .2s;
}

.filled-btn:hover {
  background-color: #d79b60;
}

.filled-btn:active {
  background-color: #cb8f54;
}

.filled-btn.small {
  padding: 8px 16px;
}

.filled-btn.no-margin-top {
  margin-top: 0;
}

.filled-btn.no-margin-top.no-margin-right {
  margin-right: 0;
}

.filled-btn.submit {
  width: 100%;
  margin-right: 0;
}

.transparent-btn {
  color: #fff;
  letter-spacing: .4px;
  text-shadow: 0 0 10px #23272a4d;
  background-color: #ffffff4d;
  border: 2px solid #0000;
  margin-top: 16px;
  margin-right: 16px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-decoration: none;
  transition: background-color .2s;
}

.transparent-btn:hover {
  background-color: #ffffff80;
}

.transparent-btn:active {
  background-color: #ffffff4d;
}

.transparent-btn.no-margin-top {
  margin-top: 0;
}

.transparent-btn.no-margin-top.no-margin-right {
  margin-right: 0;
}

.transparent-btn.small {
  padding: 8px 16px;
}

.transparent-btn.small.in-nav-bar {
  margin: 20px 0 20px 12px;
  font-family: Inter, sans-serif;
  font-size: 15px;
}

.transparent-btn.small.go-home {
  margin-top: 0;
  margin-right: 0;
}

.transparent-btn.small.go-home.w--current {
  border-radius: 8px;
}

.page-title {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 80px;
}

.page-title.section-header {
  margin-bottom: 16px;
}

.hero-section {
  z-index: 0;
  background-image: url('../images/bg.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  align-items: center;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 120px;
  font-family: Inter, sans-serif;
  display: flex;
  position: relative;
  inset: 0;
}

.hero-section._404 {
  background-image: linear-gradient(#0000, #0000), url('../images/rawpixel-com-567025-unsplash.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.hero-section._401 {
  background-image: linear-gradient(#fcfcfc, #fcfcfc);
  background-position: 0 0;
  justify-content: center;
}

.hero-title {
  color: #1a1a1a;
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Inter, sans-serif;
  font-size: 62px;
  font-weight: 400;
  line-height: 70px;
}

.hero-paragraph {
  color: #1a1a1a;
  width: 610px;
  margin-bottom: 48px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.nav-bar {
  z-index: 998;
  background-color: #2d2a32;
  border-bottom: 1px solid #fff3;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding-left: 56px;
  padding-right: 56px;
  font-family: Inter, sans-serif;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.nav-bar.bg {
  background-color: var(--primary);
}

.nav-menu {
  flex: 0 auto;
}

.logo {
  color: var(--black);
  vertical-align: baseline;
  max-width: 210px;
  height: auto;
  font-family: Inter, sans-serif;
  display: block;
}

.logo.footer {
  height: 24px;
  display: block;
}

.brand {
  flex: 1;
}

.logo-wrapper {
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
  display: block;
}

.nav-link {
  color: #fff;
  letter-spacing: .4px;
  border-bottom: 1px solid #0000;
  padding: 30px 12px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  transition: opacity .2s, color .2s;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link.w--current {
  opacity: .5;
  color: #fff;
  border-bottom: 1px solid #fff;
}

.nav-link.w--current:hover {
  opacity: .8;
}

.section-header.margin-bottom {
  margin-bottom: 80px;
}

.section-subheading {
  color: var(--primary);
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
}

.section-subheading.left {
  text-align: left;
}

.section-title {
  color: #1a1a1a;
  text-align: center;
  text-transform: capitalize;
  font-family: Inter, sans-serif;
  font-size: 42px;
  line-height: 48px;
}

.section-title.left {
  text-align: left;
}

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

.section-title.left.title.pd {
  padding-left: 120px;
}

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

.section-title.extra-margin {
  margin-top: 24px;
  margin-bottom: 24px;
}

.section-title.small {
  text-align: left;
  margin-top: 0;
  font-size: 32px;
}

.section-header-paragraph {
  color: #727272;
  text-align: center;
  width: 72%;
  margin: 16px auto 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.services-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 80px;
  display: grid;
}

.service-block-wrapper {
  background-color: #fafafa;
  border: 1px solid #e8e9e9;
  border-radius: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px;
  font-family: Inter, sans-serif;
  display: flex;
}

.service-icon {
  width: 48px;
}

.service-title {
  cursor: default;
  height: 32px;
  margin-top: 32px;
  margin-bottom: 16px;
  font-family: Inter, sans-serif;
  font-size: 20px;
  line-height: 28px;
}

.service-text {
  color: #636668;
  cursor: default;
  height: 90px;
  font-family: Inter, sans-serif;
  font-size: 15px;
}

.about-us-text {
  margin-top: 40px;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.about-us-text.title-content {
  margin-top: 0;
  font-size: 24px;
  font-weight: 400;
}

.about-us-text.title-content.margin-top-24 {
  margin-top: 24px;
}

.about-us-text.no-margin {
  margin-top: 0;
}

.about-us-text.no-margin.default-text {
  margin-top: 16px;
  line-height: 24px;
}

.about-img {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  position: relative;
  inset: 0;
}

.about-img.product-img {
  object-fit: cover;
  border-radius: 16px;
}

.about-img-wrapper {
  position: relative;
  left: -32px;
}

.about-img-border {
  z-index: 0;
  border: 8px solid var(--gold);
  position: absolute;
  inset: 32px -32px -32px 32px;
}

.team-grid {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 80px;
  display: grid;
}

.quote-title {
  z-index: 1;
  text-transform: capitalize;
  font-family: Inter, sans-serif;
  font-size: 48px;
  line-height: 60px;
}

.quote-img {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  position: relative;
  inset: 0;
}

.quote-img-border {
  z-index: 0;
  border: 8px solid var(--primary);
  position: absolute;
  inset: 32px 32px -32px -32px;
}

.quote-img-wrapper {
  position: relative;
  right: -32px;
}

.signature-block {
  margin-top: 32px;
  display: flex;
}

.signature {
  height: 56px;
  margin-right: 10px;
}

.vertical-divider {
  background-color: var(--primary);
  opacity: .5;
  width: 1px;
  height: 56px;
  display: inline-block;
}

.quote-name {
  text-transform: capitalize;
  align-self: flex-start;
  margin-top: 4px;
  margin-left: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

.quote-subtitle {
  color: #909294;
  text-transform: capitalize;
  align-self: flex-end;
  margin-top: 4px;
  margin-left: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.quote-subtitles-block {
  flex: 1;
}

.quote-icon {
  z-index: 0;
  opacity: .2;
  background-image: url('../images/quote.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 160px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -32px;
  left: -80px;
}

.team-block-wrapper {
  background-color: #fff;
  border: 1px solid #e8e9e9;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  transition: background-color .2s;
  display: flex;
}

.team-block-wrapper:hover {
  background-color: #fafafa;
}

.team-img {
  width: 100%;
  min-height: 240px;
}

.team-img.member-1 {
  background-image: url('../images/AiM.png');
  background-position: 50% 32%;
  background-repeat: no-repeat;
  background-size: 100%;
  border-radius: 16px;
  min-height: 272px;
}

.team-img.member-2 {
  background-image: url('../images/logo-placeholder-image.png');
  background-position: 50% 30%;
  background-repeat: no-repeat;
  background-size: 100%;
  border-radius: 16px;
  min-height: 272px;
}

.team-img.member-3 {
  background-image: url('../images/logo-placeholder-image.png');
  background-position: 50% 5%;
  background-repeat: no-repeat;
  background-size: 100%;
  border-radius: 16px;
  min-height: 272px;
}

.team-img.member-4 {
  background-image: url('../images/logo-placeholder-image.png');
  background-position: 50% 30%;
  background-repeat: no-repeat;
  background-size: 100%;
  border-radius: 16px;
  min-height: 272px;
}

.team-card-bottom {
  border-top: 1px solid #e8e9e9;
  width: 100%;
  padding: 16px;
}

.team-title {
  text-align: center;
  cursor: default;
  margin-top: 0;
  font-family: Inter, sans-serif;
  font-size: 24px;
  line-height: 30px;
}

.team-subtitle {
  color: #8f9193;
  text-align: center;
  cursor: default;
  padding-left: 4px;
  line-height: 24px;
}

.contact-form-wrapper {
  width: 66.6667%;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
}

.half-fields-wrapper {
  display: flex;
}

.div-block {
  flex: none;
  width: 32px;
}

.text-field {
  color: var(--primary);
  background-color: #fcfcfc;
  border: 1px solid #e8e9e9;
  height: 48px;
  margin-bottom: 32px;
  padding: 16px;
  font-family: Inter, sans-serif;
  transition: border-color .2s;
}

.text-field:focus {
  border-color: var(--gold);
}

.text-field::placeholder {
  color: #909294;
}

.select-field {
  color: #909294;
  background-color: #fcfcfc;
  border: 1px solid #e8e9e9;
  height: 48px;
  margin-bottom: 32px;
  padding: 14px 16px;
  transition: border-color .2s;
}

.select-field:focus {
  border-color: var(--gold);
}

.textarea {
  color: var(--primary);
  background-color: #fcfcfc;
  border: 1px solid #e9e8e8;
  min-height: 240px;
  margin-bottom: 16px;
  padding: 16px;
  transition: border-color .2s;
}

.textarea:focus {
  border-color: var(--gold);
}

.textarea::placeholder {
  color: #909294;
}

.textarea.small {
  min-height: 120px;
}

.footer {
  background-color: var(--primary);
}

.footer-links {
  flex-direction: column;
  align-self: center;
  display: flex;
}

.footer-link {
  color: #ffffffb3;
  letter-spacing: .2px;
  cursor: pointer;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: color .2s;
  display: block;
}

.footer-link:hover {
  color: var(--gold);
}

.copyright-section {
  background-color: #383c3e;
  justify-content: space-between;
  margin-top: 64px;
  padding: 32px 56px;
  display: flex;
}

.footer-section {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  padding-top: 64px;
  padding-left: 56px;
  padding-right: 56px;
  display: flex;
}

.footer-section.container {
  justify-content: space-around;
}

.copyright-text {
  color: #909294;
  display: inline-block;
}

.map {
  width: 100%;
  margin-top: 80px;
}

.subtext {
  color: var(--primary);
  text-align: center;
  letter-spacing: .4px;
  text-transform: uppercase;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

.subtext.white {
  color: #fff;
}

.subtext.white.small {
  font-size: 14px;
  line-height: 20px;
}

.modal-bg {
  z-index: 999;
  opacity: 0;
  background-color: #23272a80;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0;
  overflow: hidden;
}

.modal {
  background-color: #fff;
  padding: 32px;
  position: static;
}

.modal-form {
  margin-top: 56px;
}

.close-modal-btn {
  border: 2px solid var(--gold);
  background-color: var(--gold);
  cursor: pointer;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 24px 32px;
  transition: background-color .2s;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}

.close-modal-btn:hover {
  background-color: var(--primary);
}

.cross-line {
  background-color: #fff;
  flex: none;
  width: 2px;
  height: 16px;
  transform: translate(-1px, -1px)rotate(45deg);
}

.cross-line.mirror {
  transform: translate(1px, -1px)rotate(-45deg);
}

.big-error-text {
  color: #fff;
  text-align: center;
  font-family: Playfair Display;
  font-size: 120px;
  line-height: 126px;
}

._401-form {
  width: 33.333%;
}

.form {
  width: auto;
}

.success-message {
  background-color: var(--gold);
  color: #fff;
}

.error-message {
  color: var(--primary);
  background-color: #f6e3d2;
}

.source-link {
  text-align: center;
  display: block;
}

.source-block {
  border-bottom: 1px solid #e8e9e9;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
  display: block;
}

.source-block.last {
  border-bottom-style: none;
}

.btn-container {
  margin-top: 32px;
}

.btn-container.center {
  flex-direction: row;
  justify-content: center;
  display: flex;
}

.footer-col {
  width: 33.3336%;
  padding-left: 16px;
  padding-right: 16px;
}

.footer-col.first {
  padding-left: 0;
  padding-right: 32px;
}

.footer-info-text {
  color: #ffffffb3;
  margin-top: 24px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 20px;
  display: inline-block;
}

.footer-title {
  color: #fff;
  letter-spacing: .5px;
  text-transform: capitalize;
  margin-bottom: 16px;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.footer-text {
  color: #ffffffb3;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 20px;
  display: inline-block;
}

.hero-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.hero-right {
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
}

.about-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 41.667% 8.334% 1fr;
  grid-auto-columns: 1fr;
  padding-left: 32px;
  padding-right: 32px;
  display: grid;
}

.about-grid.product {
  margin-top: 40px;
}

.quote-block-left {
  position: relative;
}

.quote-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 50% 8.334% 41.667%;
  grid-auto-columns: 1fr;
  padding-left: 32px;
  padding-right: 32px;
  display: grid;
}

.changelog-text-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.changelog-text {
  text-align: center;
  margin-bottom: 10px;
}

.text-block {
  font-family: Inter, sans-serif;
}

.logo-text {
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
}

.section-2 {
  padding-bottom: 24px;
}

.flex-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: flex;
}

.roles {
  margin-bottom: 32px;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 46px;
    line-height: 52px;
  }

  h2 {
    font-size: 40px;
    line-height: 46px;
  }

  h3 {
    font-size: 34px;
    line-height: 40px;
  }

  h4 {
    font-size: 28px;
    line-height: 34px;
  }

  h5 {
    font-size: 22px;
    line-height: 28px;
  }

  h6 {
    font-size: 16px;
    line-height: 24px;
  }

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

  .section.gray-body.extra-padding {
    padding-top: 152px;
    padding-bottom: 152px;
  }

  .style-guide-block-wrapper {
    margin-bottom: 64px;
  }

  .style-guide-block {
    padding: 64px 88px;
  }

  .colors-wrapper {
    align-items: flex-end;
  }

  .color-block-wrapper {
    width: 25%;
    margin-left: 20px;
    margin-right: 20px;
  }

  .color-title {
    font-size: 12px;
  }

  .style-guide-block-title {
    padding-left: 88px;
    padding-right: 88px;
  }

  .style-guide-title {
    font-size: 22px;
    line-height: 30px;
  }

  .heading-block {
    margin-bottom: 16px;
  }

  .button-block-wrapper {
    margin-left: 8px;
    margin-right: 8px;
  }

  .hero-title {
    font-size: 70px;
    line-height: 76px;
  }

  .nav-bar {
    padding-left: 32px;
    padding-right: 16px;
  }

  .nav-menu {
    background-color: #383c3e;
  }

  .nav-link {
    text-align: center;
  }

  .nav-link.w--current {
    border-bottom-color: #0000;
  }

  .section-title {
    font-size: 40px;
    line-height: 46px;
  }

  .section-header-paragraph {
    width: 80%;
  }

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

  .about-us-text {
    margin-top: 32px;
    font-size: 14px;
    line-height: 20px;
  }

  .team-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .quote-title {
    font-size: 32px;
    line-height: 38px;
  }

  .quote-icon {
    background-size: 80px;
    width: 80%;
    height: 80%;
    top: -8px;
    left: -32px;
  }

  .contact-form-wrapper {
    width: 80%;
  }

  .text-field.small, .select-field.small {
    margin-bottom: 16px;
  }

  .textarea.small {
    margin-bottom: 0;
  }

  .copyright-text.right, .copyright-text.left {
    font-size: 12px;
    line-height: 18px;
  }

  .icon {
    color: #fff;
    text-align: center;
    font-size: 32px;
    line-height: 32px;
  }

  .menu-button {
    padding: 24px;
  }

  .menu-button.w--open {
    background-color: #383c3e;
  }

  .modal-form {
    margin-top: 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .quote-grid {
    grid-template-columns: 41.667fr 50%;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 44px;
    line-height: 50px;
  }

  h2 {
    font-size: 38px;
    line-height: 44px;
  }

  h3 {
    font-size: 32px;
    line-height: 38px;
  }

  h4 {
    font-size: 26px;
    line-height: 32px;
  }

  h5 {
    font-size: 20px;
    line-height: 26px;
  }

  h6 {
    font-size: 14px;
    line-height: 22px;
  }

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

  .section.gray-body.extra-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .style-guide-block-wrapper {
    margin-bottom: 48px;
  }

  .style-guide-block {
    padding: 48px 72px;
  }

  .colors-wrapper {
    flex-direction: column;
  }

  .color-block-wrapper {
    width: 100%;
    margin: 16px 0;
  }

  .style-guide-block-title {
    padding: 16px 72px;
  }

  .style-guide-title {
    font-size: 18px;
    line-height: 24px;
  }

  .buttons-wrapper {
    flex-direction: column;
  }

  .button-block-wrapper {
    width: 100%;
    margin-bottom: 32px;
  }

  .hero-title {
    font-size: 55px;
    line-height: 70px;
  }

  .hero-paragraph {
    width: 510px;
  }

  .nav-bar {
    padding-left: 24px;
    padding-right: 8px;
  }

  .logo {
    max-width: 100%;
    height: 54px;
  }

  .logo.footer {
    margin-left: -10px;
  }

  .section-title {
    font-size: 36px;
    line-height: 42px;
  }

  .section-header-paragraph {
    width: 100%;
  }

  .about-img-wrapper {
    padding-left: 32px;
    left: -32px;
  }

  .about-img-border {
    inset: 24px -32px -32px 56px;
  }

  .quote-title {
    font-size: 32px;
    line-height: 38px;
  }

  .quote-img-border {
    inset: 24px 56px -32px -32px;
  }

  .quote-img-wrapper {
    padding-right: 32px;
    right: -32px;
  }

  .quote-name {
    margin-top: 0;
    font-size: 14px;
    line-height: 20px;
  }

  .quote-subtitle {
    font-size: 14px;
    line-height: 20px;
  }

  .footer-link {
    margin-bottom: 16px;
  }

  .copyright-section {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .footer-section {
    flex-direction: column;
  }

  .copyright-text.right, .copyright-text.left {
    margin-top: 4px;
  }

  .modal {
    padding: 24px;
  }

  .modal-form {
    margin-top: 32px;
  }

  .footer-col {
    width: 100%;
    margin-bottom: 16px;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-col.first {
    padding-right: 0;
  }

  .footer-title {
    margin-bottom: 24px;
  }

  .footer-text {
    margin-bottom: 16px;
  }

  .about-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .about-block-right {
    margin-bottom: 32px;
  }

  .quote-block-left {
    padding-bottom: 32px;
  }

  .quote-grid {
    grid-row-gap: 32px;
    grid-template-rows: auto auto;
    grid-template-columns: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .changelog-text-container {
    flex-direction: column;
  }
}

@media screen and (max-width: 479px) {
  .container {
    flex: 1;
  }

  .section.gray-body.extra-padding {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .filled-btn {
    margin-top: 0;
  }

  .hero-title {
    font-size: 9vw;
    line-height: 12vw;
  }

  .hero-paragraph {
    width: 270px;
  }

  .nav-bar {
    padding-left: 16px;
    padding-right: 8px;
  }

  .logo {
    max-width: 80%;
    height: auto;
  }

  .about-img-border {
    top: 24px;
    bottom: -24px;
    right: -24px;
  }

  .team-grid {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .quote-title {
    font-size: 32px;
  }

  .quote-img-border {
    inset: 24px 24px -24px 0;
  }

  .quote-img-wrapper {
    padding-left: 24px;
    padding-right: 0;
    top: 24px;
    right: 0;
  }

  .contact-form-wrapper {
    width: 100%;
  }

  .half-fields-wrapper {
    flex-direction: column;
  }

  .div-block {
    display: none;
  }

  .footer-links {
    margin-top: 32px;
  }

  .footer-link {
    margin-left: 0;
    margin-right: 0;
  }

  .footer-section {
    flex-direction: column;
    align-items: center;
    padding-top: 48px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .copyright-text.right {
    text-align: center;
    line-height: 26px;
  }

  .copyright-text.left {
    margin-top: 8px;
  }

  .modal {
    margin-left: 8px;
    margin-right: 8px;
    padding: 16px;
  }

  .modal-form {
    margin-top: 16px;
  }

  .close-modal-btn {
    z-index: 0;
    padding: 16px 24px;
  }

  .hero-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    width: 260px;
    display: grid;
  }

  .hero-right {
    width: 260px;
  }
}

#w-node-_4a272bc0-237c-8b1b-e98a-d4a9cbff3c42-1edf88ec {
  align-self: center;
}

#w-node-_1185fbc7-b32a-a4fd-bfe8-22a8835ac5ee-1edf88ec {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-cdc675bf-2e12-d7ca-6ba7-ab6d50002152-1edf88ec {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_610146d6-25b7-888d-8b67-9a331811027d-1edf88ec {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-c0384fa3-2786-7c10-c8e8-1f3cf5a7d840-1edf88ec {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_4189490c-7a50-97ab-1d69-9e84c114f856-1edf88ec {
  align-self: start;
}

#w-node-_4189490c-7a50-97ab-1d69-9e84c114f859-1edf88ec {
  grid-area: 1 / 3 / 2 / 4;
  align-self: center;
}

#w-node-_1b7ea704-a8f0-ea69-9529-e7d0f29580bb-1edf88ec {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-bdb3b97e-d78e-dc95-4f0b-e98f6e10d33b-1edf88ec {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-aedeb259-d71f-91b7-0197-264e2b4b227b-1edf88ec {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_477819cb-a6d7-483c-ac4c-6d4153b021be-1edf88ec {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_477819cb-a6d7-483c-ac4c-6d4153b021c4-1edf88ec {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_477819cb-a6d7-483c-ac4c-6d4153b021ca-1edf88ec {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-fa26440d-805a-9da8-4743-099509ee46f2-1edf88ec {
  align-self: start;
}

#w-node-_7a4eb8fc-3540-534e-5956-201538ac5008-1edf88ec {
  grid-area: 1 / 3 / 2 / 4;
  align-self: center;
}

#w-node-_36b28532-e44f-9a35-d3ba-6cb6c740ed8f-1edf88ec {
  align-self: center;
}

#w-node-_94475f70-b04f-ba45-baa1-91591364f67d-1edf88ec {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_459078b4-eedd-6d87-5ea3-282f5aa7c7ad-1edf88f0 {
  align-self: start;
}

#w-node-_459078b4-eedd-6d87-5ea3-282f5aa7c7b0-1edf88f0 {
  grid-area: 1 / 3 / 2 / 4;
  align-self: center;
}

#w-node-_01e77984-4822-1e3a-bde3-cc74fd8a9fe4-1edf88f0 {
  grid-area: 1 / 1 / 2 / 2;
}

@media screen and (max-width: 991px) {
  #w-node-cdc675bf-2e12-d7ca-6ba7-ab6d50002152-1edf88ec {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_610146d6-25b7-888d-8b67-9a331811027d-1edf88ec {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_4189490c-7a50-97ab-1d69-9e84c114f856-1edf88ec {
    align-self: start;
  }

  #w-node-bdb3b97e-d78e-dc95-4f0b-e98f6e10d33b-1edf88ec {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-aedeb259-d71f-91b7-0197-264e2b4b227b-1edf88ec {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_477819cb-a6d7-483c-ac4c-6d4153b021c4-1edf88ec {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_477819cb-a6d7-483c-ac4c-6d4153b021ca-1edf88ec {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-fa26440d-805a-9da8-4743-099509ee46f2-1edf88ec {
    align-self: start;
  }

  #w-node-_94475f70-b04f-ba45-baa1-91591364f67d-1edf88ec {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_459078b4-eedd-6d87-5ea3-282f5aa7c7ad-1edf88f0 {
    align-self: start;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_4189490c-7a50-97ab-1d69-9e84c114f859-1edf88ec, #w-node-_7a4eb8fc-3540-534e-5956-201538ac5008-1edf88ec {
    grid-area: 1 / 1 / 2 / 2;
    align-self: center;
  }

  #w-node-_94475f70-b04f-ba45-baa1-91591364f67d-1edf88ec {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_459078b4-eedd-6d87-5ea3-282f5aa7c7b0-1edf88f0 {
    grid-area: 1 / 1 / 2 / 2;
    align-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-cdc675bf-2e12-d7ca-6ba7-ab6d50002152-1edf88ec {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_610146d6-25b7-888d-8b67-9a331811027d-1edf88ec {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-c0384fa3-2786-7c10-c8e8-1f3cf5a7d840-1edf88ec {
    grid-area: 2 / 1 / 3 / 2;
  }
}


@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-ExtraLightItalic-BETA.otf') format('opentype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}