@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/roboto-400-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Roboto Footer";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/roboto-footer-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Roboto Footer";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/roboto-footer-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "USDM Icons";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../fonts/awb-icons.woff") format("woff");
}

@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../fonts/fa-solid-900.woff2") format("woff2");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/roboto-400-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --usdm-yellow: #ffb400;
  --usdm-ink: #3b3b3b;
  --usdm-content: 1200.09375px;
  --usdm-layout: 1248px;
  --content-start-gap: 60px;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  color: var(--usdm-ink);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: #fff;
}

@media (prefers-reduced-motion: no-preference) {
  .site-main {
    animation: site-page-enter 180ms ease-out both;
  }

  .scroll-reveal {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 240ms ease-out, transform 240ms ease-out;
  }

  .scroll-reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  @keyframes site-page-enter {
    from { opacity: .985; }
    to { opacity: 1; }
  }
}

.development-scroll-space {
  height: 3000px;
}

a {
  color: inherit;
}

/* Keep keyboard focus visible without the browser's heavy black frame. */
a:focus,
a:focus-visible,
button:focus,
button:focus-visible,
summary:focus,
summary:focus-visible {
  outline: 1px solid #d8d8d8 !important;
  outline-offset: 1px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  height: 111.328125px;
  padding: 5px 30px 10px;
  border-bottom: 1px solid #000;
  background: #fff;
}

.site-header::after {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 10px;
  background-image: url("../img/header-line.png");
  background-position: center top;
  background-repeat: repeat-x;
  content: "";
  pointer-events: none;
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: min(1212px, 100%);
  height: 100%;
  margin: 0 auto;
  z-index: 1;
}

.site-header__logo {
  display: block;
  flex: 0 0 250px;
  width: 250px;
  margin-left: 5.984375px;
  margin-right: auto;
  line-height: 0;
  transform: translateY(6px);
}

.site-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header__right {
  position: relative;
  flex: 0 0 909px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  width: 909px;
  padding: 0 6px;
}

.language-switcher {
  display: flex;
  flex: 0 0 25px;
  align-items: flex-start;
  justify-content: flex-end;
  height: 25px;
}

.language-switcher a {
  position: relative;
  top: 6.546875px;
  right: .984375px;
  display: block;
  height: 19px;
  padding: 4px 4px 2px;
  background: var(--usdm-yellow);
  color: #fff;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .11px;
  white-space: nowrap;
  text-decoration: none;
}

.primary-navigation {
  display: flex;
  flex: 0 0 80px;
  align-items: stretch;
  justify-content: flex-end;
  width: 100%;
  height: 80px;
}

.primary-navigation a {
  display: flex;
  align-items: center;
  height: 80px;
  padding: 0 16px 7px;
  border-bottom: 3px solid transparent;
  color: var(--usdm-ink);
  font-size: 14px;
  line-height: 16.8px;
  letter-spacing: .21px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, border-color 160ms ease;
}

.primary-navigation a:hover,
.primary-navigation a.is-active {
  border-bottom-color: var(--usdm-yellow);
  color: var(--usdm-yellow);
}

.header-contact {
  position: absolute;
  z-index: 1;
  top: 115.312px;
  right: 5.953px;
  width: 264.094px;
  height: 76.188px;
  padding: 0 10px;
  border: 1px solid rgb(255 180 0 / 27%);
  background: rgb(255 255 255 / 80%);
}

.header-contact a {
  text-decoration: none;
}

.header-contact__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 41px;
  padding: 12px 0 10px;
  font-size: 16px;
  line-height: 19.2px;
  letter-spacing: .24px;
}

.header-contact__phone .icon--phone {
  width: 16.25px;
  margin-right: 11.2px;
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  font-weight: 900;
  line-height: 16px;
}

.icon--phone::before {
  content: "\f879";
}

.header-contact__socials {
  display: flex;
  align-items: flex-start;
  height: 33px;
  padding-top: 1px;
  gap: 15.28px;
}

.header-contact__socials a {
  display: block;
  width: auto;
  height: 18px;
  font-family: "USDM Icons";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: .8px;
  -webkit-font-smoothing: antialiased;
}

.icon--facebook::before { content: "\e604"; }
.icon--instagram::before { content: "\ea92"; }
.icon--whatsapp::before { content: "\f232"; }
.icon--mail::before { content: "\e616"; }

.icon::before {
  display: block;
}

.header-contact a:hover {
  color: var(--usdm-yellow);
}

.mobile-navigation {
  display: none;
}

.site-main {
  min-height: 520px;
  padding-top: var(--content-start-gap);
}

.content-shell {
  width: min(var(--usdm-content), calc(100% - 60px));
  margin-right: auto;
  margin-left: auto;
}

.layout-row {
  width: min(var(--usdm-layout), 100%);
  margin-right: auto;
  margin-left: auto;
}

.hero {
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: #fff;
  font-family: "Roboto Footer", "Roboto", Arial, Helvetica, sans-serif;
  text-align: center;
  text-transform: uppercase;
}

.hero--home {
  background-color: #252729;
}

.hero--parallax::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + var(--parallax-travel, 30vh));
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  pointer-events: none;
  transform: translate3d(0, var(--parallax-offset, 0), 0);
  will-change: transform;
}

.hero--home::before {
  background-image: url("../img/home-hero.jpg");
}

.hero--houses::before {
  background-image: url("../img/home-houses-hero.jpg");
}

.hero--company::before {
  background-image: url("../img/home-company-hero.jpg");
}

.hero--construction::before {
  background-image: url("../img/home-construction-hero.jpg");
}

.hero--panels {
  padding-block: 5px;
}

.hero--panels::before {
  background-image: url("../img/home-panels-hero.jpg");
}

.hero--technology::before {
  background-image: url("../img/technology-hero.jpg");
}

.hero--technology-footer::before {
  background-image: url("../img/technology-footer.jpg");
}

.hero--houses-page::before {
  background-image: url("../img/houses-houses-page-bg1-scaled.jpg");
}

.hero--houses-family::before {
  background-image: url("../img/houses-houses-page-bg2-scaled.jpg");
}

.hero--houses-multi::before {
  background-image: url("../img/houses-Houses-cover-new.jpg");
}

.hero--houses-footer::before {
  background-image: url("../img/houses-Houses-cover-new-end.jpg");
}

.hero--experience::before {
  background-image: url("../img/experience-bg-experience-01-scaled.jpg");
}

.hero--contact::before {
  background-image: url("../img/contact-contacts-page-bg1-scaled.jpg");
}

.hero--contact-footer::before {
  background-image: url("../img/contact-contacts-page-bg2-scaled.jpg");
}

.hero--contact + .section-transition {
  height: 41px;
}

.hero__inner {
  display: flow-root;
  padding-top: 40px;
}

.hero__title {
  margin: 0 0 30px;
  font-size: 40px;
  font-weight: 100;
  line-height: 68.8px;
  letter-spacing: 1.3px;
}

.hero__subtitle {
  margin: 0 0 20px;
  font-size: 15px;
  font-weight: 100;
  line-height: 25.8px;
  letter-spacing: 1.2px;
}

.section-transition {
  height: 60px;
  background-color: #fff;
  background-image: url("../img/footer-line-white.jpg");
  background-position: left top;
  background-repeat: repeat-x;
}

.section-heading {
  padding-bottom: 25px;
  background: #fff;
}

.section-heading__inner {
  padding-top: 0;
}

.section-heading__title {
  margin: 0;
  color: var(--usdm-ink);
  font-family: "Roboto Footer", "Roboto", Arial, Helvetica, sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 48px;
  letter-spacing: 1.2px;
  text-align: center;
  text-transform: uppercase;
}

.section-heading__line {
  height: 15.296875px;
  text-align: center;
}

.section-heading__line img {
  display: inline-block;
  width: 300px;
  height: 3px;
  margin-top: 1.296875px;
  vertical-align: top;
}

.section-heading--inner .section-heading__title {
  font-size: 28px;
  line-height: 33.6px;
  text-align: left;
}

.section-heading--inner .section-heading__line {
  text-align: left;
}

.feature-section {
  padding: 30px 30px 20px;
  background: #f2f2f2;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  display: flow-root;
  min-width: 0;
  margin: 0 0 20px;
  padding: 0 23.953125px;
  color: var(--usdm-ink);
  font-size: 14px;
  line-height: 24.08px;
  letter-spacing: .8px;
}

.feature-card__title {
  margin: 10px 0 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 24.08px;
  letter-spacing: .8px;
}

.feature-card__title--after-image {
  margin-top: 30px;
}

.feature-card__image {
  display: block;
  width: 100%;
  height: auto;
}

.feature-card__body {
  margin: 30px 0 20px;
}

.feature-card__body--after-title {
  margin-top: 20px;
}

.feature-card__actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.feature-section--compact {
  padding-top: 25px;
  padding-bottom: 0;
}

.feature-list {
  margin: 14px 0;
  padding-left: 20px;
}

.feature-card__copy p {
  margin: 0 0 20px;
}

.split-content .feature-card__title {
  margin-top: 0;
}

.feature-grid__actions {
  display: flex;
  grid-column: 1 / -1;
  justify-content: center;
  margin: 0 0 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  min-height: 45.1875px;
  padding: 13px 29px;
  border: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.1875px;
  letter-spacing: .24px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s, background-color .2s;
}

.button--primary {
  background-color: var(--usdm-yellow);
  color: #fff;
}

.button--primary:hover,
.button--primary:focus-visible {
  background-color: #ffce5e;
  color: #fff;
}

.button + .button {
  margin-top: 15px;
}

.feature-card--stacked-actions .button + .button {
  margin-top: 20px;
}

.gallery-section,
.project-section {
  padding: 30px 30px 20px;
  background: #f2f2f2;
}

.gallery-grid {
  display: grid;
  width: min(var(--usdm-content), 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.gallery-grid__item {
  display: block;
  min-width: 0;
  line-height: 0;
}

.gallery-grid__item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.project-grid {
  display: block;
}

.carousel {
  position: relative;
  margin: 0 23.953125px 30px;
  padding-bottom: 24px;
}

.carousel__viewport {
  overflow: hidden;
  touch-action: pan-y;
}

.carousel__track {
  display: flex;
  gap: 10px;
  transition: transform 500ms ease;
  will-change: transform;
}

.carousel__slide {
  display: block;
  flex: 0 0 calc((100% - 10px) / 2);
  min-width: 0;
  line-height: 0;
}

.carousel__slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.carousel__control {
  position: absolute;
  z-index: 2;
  top: calc(50% - 26px);
  width: 38px;
  height: 52px;
  padding: 0;
  border: 0;
  background: rgb(0 0 0 / 45%);
  color: #fff;
  cursor: pointer;
}

.carousel__control::before {
  display: block;
  font-family: "Font Awesome 5 Free";
  font-size: 20px;
  font-weight: 900;
}

.carousel__control--previous {
  left: 0;
}

.carousel__control--previous::before {
  content: "\f053";
}

.carousel__control--next {
  right: 0;
}

.carousel__control--next::before {
  content: "\f054";
}

.carousel__control:hover,
.carousel__control:focus-visible {
  background: var(--usdm-yellow);
}

.carousel__control:disabled {
  opacity: .25;
  cursor: default;
}

.carousel__pagination {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.carousel__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #aaa;
  cursor: pointer;
}

.carousel__dot.is-active {
  background: var(--usdm-yellow);
}

.lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
  background: rgb(0 0 0 / 92%);
}

.lightbox.is-open {
  display: flex;
}

.lightbox__image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox__close,
.lightbox__previous,
.lightbox__next {
  position: absolute;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-family: "Font Awesome 5 Free";
  font-size: 28px;
  font-weight: 900;
}

.lightbox__close {
  top: 18px;
  right: 24px;
}

.lightbox__close::before { content: "\f00d"; }

.lightbox__previous,
.lightbox__next {
  top: calc(50% - 28px);
  width: 60px;
  height: 56px;
}

.lightbox__previous { left: 10px; }
.lightbox__previous::before { content: "\f053"; }
.lightbox__next { right: 10px; }
.lightbox__next::before { content: "\f054"; }

.lightbox__close:hover,
.lightbox__close:focus-visible,
.lightbox__previous:hover,
.lightbox__previous:focus-visible,
.lightbox__next:hover,
.lightbox__next:focus-visible {
  color: var(--usdm-yellow);
}

.lightbox__pagination {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.lightbox__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #999;
  cursor: pointer;
}

.lightbox__dot:hover,
.lightbox__dot:focus-visible,
.lightbox__dot.is-active {
  background: var(--usdm-yellow);
}

.lightbox__counter {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

body.has-open-lightbox {
  overflow: hidden;
}

.project-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 47.90625px;
  margin: 0 23.953125px;
  color: var(--usdm-ink);
  font-size: 14px;
  line-height: 24.08px;
  letter-spacing: .8px;
}

.project-copy p {
  margin: 0 0 20px;
}

.project-price strong {
  display: grid;
  grid-template-columns: 170px auto;
  column-gap: 8px;
}

.project-copy__line {
  padding-left: 18px;
}

.room-tables {
  break-inside: avoid;
  margin: 0 0 20px;
}

.room-table {
  width: 100%;
  border-collapse: collapse;
}

.room-table + .room-table {
  margin-top: 12px;
}

.room-table td {
  padding: 1px 8px 1px 0;
  vertical-align: top;
}

.room-table td:last-child {
  width: 90px;
  padding-right: 0;
  white-space: nowrap;
}

.project-documents {
  break-inside: avoid;
  margin-bottom: 20px;
}

.project-documents a {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 1px 1px 9px;
  padding: 5px 6px 3px;
  border: 1px solid var(--usdm-yellow);
  background-color: var(--usdm-yellow);
  color: #fff;
  line-height: 24.08px;
  text-decoration: none;
  transition: color .2s, background-color .2s;
}

.project-documents a:hover,
.project-documents a:focus-visible {
  background-color: #fff;
  color: var(--usdm-yellow);
}

.contact-section,
.representatives-section {
  padding: 0 30px;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  align-items: start;
}

.representatives-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.contact-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin-bottom: 20px;
  margin-right: 23.953125px;
  margin-left: 23.953125px;
  padding: 10px;
  background: #f2f2f2;
  font-family: "Roboto Footer", "Roboto", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 24.08px;
  letter-spacing: .8px;
}

.contact-grid .contact-card h2 {
  margin: 40px 0 0;
  font-size: 40px;
  font-weight: 300;
  line-height: 48px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.contact-card h3 {
  margin: 0 0 15px;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1.1px;
}

.contact-card__line {
  position: relative;
  display: block;
  width: 100%;
  height: 15.296875px;
  flex: 0 0 15.296875px;
  margin: 0 0 40px;
}

.contact-card__line::before {
  position: absolute;
  top: 1.296875px;
  left: 0;
  width: 150px;
  height: 3px;
  background: var(--usdm-yellow);
  content: "";
}

.representatives-grid .contact-card h2 {
  margin: 35px 0 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 16.8px;
  letter-spacing: 1.1px;
  text-transform: none;
}

.representatives-grid .contact-card__line {
  margin-bottom: 20px;
}

.contact-card > p {
  margin: 0 0 20px;
  line-height: 24.08px;
  letter-spacing: 1.1px;
}

.contact-card ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 27.2px minmax(0, 1fr);
  column-gap: 11.2px;
  align-items: start;
  padding: 4.9px 0;
  line-height: 27.2px;
}

.contact-list li:first-child {
  padding-top: 0;
}

.contact-list a {
  text-decoration: none;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--usdm-yellow);
}

.contact-list__icon {
  display: inline-flex;
  width: 27.2px;
  height: 27.2px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--usdm-yellow);
  color: var(--usdm-ink);
  font-family: "Font Awesome 5 Free";
  font-size: 14.08px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .8px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.contact-list__icon--globe::before { content: "\f0ac"; }
.contact-list__icon--phone::before { content: "\f879"; }
.contact-list__icon--mail::before { content: "\f2b6"; }
.contact-list__icon--arrow::before { content: "\f061"; }

.contact-list--representative strong {
  font-weight: 700;
}

.contact-form {
  margin-top: 30px;
  padding-bottom: 39px;
}

.contact-form__columns {
  display: grid;
  width: calc(100% + .0625px);
  margin-left: -.03125px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 30.5px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.contact-form__column {
  display: grid;
  row-gap: 28px;
}

.contact-form__field-with-icon {
  position: relative;
  display: block;
}

.contact-form__field-icon {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 14px;
  color: var(--usdm-ink);
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}

.contact-form__field-icon--mail::before { content: "\f2b6"; }
.contact-form__field-icon--phone::before { content: "\f879"; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin: 0;
  padding: 0 14px;
  border: 1px solid #a5a5a5;
  border-radius: 3px;
  color: var(--usdm-ink);
  background: #fff;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.1px;
}

.contact-form input {
  height: 45px;
}

.contact-form__field-with-icon input {
  padding-left: 35px;
}

.contact-form textarea {
  display: block;
  width: calc(100% + .0625px);
  height: 94px;
  margin-top: 34px;
  margin-left: -.03125px;
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--usdm-yellow);
  outline: 0;
}

.contact-form input:hover:not(:focus),
.contact-form textarea:hover:not(:focus) {
  border-color: rgb(255 180 0 / 50%);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7f7f7f;
  opacity: 1;
}

.contact-form__submit {
  width: calc(100% + .0625px);
  min-height: 60px;
  margin-top: 56px;
  margin-left: -.03125px;
  padding: 18px 24px;
  justify-content: center;
  border-radius: 3px;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 1.1px;
}

.contact-section + .section-transition {
  height: 41px;
}

.form-notice {
  padding: 12px 15px;
  border-left: 3px solid;
}

.form-notice--success {
  border-color: #5b9d42;
  background: #eef7ea;
}

.form-notice--error {
  border-color: #b94242;
  background: #faecec;
}

.legal-page {
  background: #f5f5f3;
  color: #303030;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 30px 68px;
  background: #202122;
  color: #fff;
}

.legal-hero::after {
  position: absolute;
  right: -60px;
  bottom: -185px;
  width: 520px;
  height: 310px;
  border: 48px solid var(--usdm-yellow);
  content: "";
  opacity: .95;
  transform: rotate(-14deg);
}

.legal-hero__inner {
  position: relative;
  z-index: 1;
}

.legal-hero__eyebrow {
  margin: 0 0 22px;
  color: var(--usdm-yellow);
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.legal-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(46px, 5.2vw, 78px);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: -1.8px;
}

.legal-hero__lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: #d1d1cf;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: .25px;
}

.legal-hero__updated {
  display: inline-block;
  margin: 28px 0 0;
  padding: 7px 12px 6px;
  border: 1px solid rgb(255 255 255 / 25%);
  color: #aaa;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: .7px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: start;
  gap: 72px;
  padding: 64px 0 60px;
}

.legal-sidebar {
  position: sticky;
  top: 145px;
}

.legal-facts {
  position: relative;
  padding: 32px 30px 28px;
  background: #fff;
  box-shadow: 0 12px 34px rgb(0 0 0 / 6%);
}

.legal-facts::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 5px;
  background: var(--usdm-yellow);
  content: "";
}

.legal-facts h2,
.legal-navigation h2 {
  margin: 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
}

.legal-facts dl {
  margin: 25px 0 0;
}

.legal-facts dl div + div {
  margin-top: 17px;
}

.legal-facts dt {
  margin-bottom: 2px;
  color: #8b8b88;
  font-size: 10px;
  line-height: 16px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.legal-facts dd {
  margin: 0;
  font-size: 13px;
  line-height: 20px;
}

.legal-facts a,
.legal-article a {
  text-decoration-color: var(--usdm-yellow);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.legal-facts a:hover,
.legal-article a:hover {
  color: #000;
  text-decoration-color: #000;
}

.legal-navigation {
  padding: 30px 30px 0;
}

.legal-navigation ol {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: legal-nav;
}

.legal-navigation li {
  counter-increment: legal-nav;
}

.legal-navigation a {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  padding: 6px 0;
  color: #777;
  font-size: 11px;
  line-height: 17px;
  text-decoration: none;
}

.legal-navigation a::before {
  color: #b2b2af;
  content: counter(legal-nav, decimal-leading-zero);
}

.legal-navigation a:hover {
  color: #111;
}

.legal-article {
  padding: 4px 64px 50px;
  background: #fff;
  box-shadow: 0 12px 34px rgb(0 0 0 / 4%);
}

.legal-article__section {
  scroll-margin-top: 145px;
  padding: 45px 0 42px;
  border-bottom: 1px solid #e6e6e3;
}

.legal-article__section h2 {
  position: relative;
  margin: 0 0 22px;
  padding-left: 22px;
  font-size: 25px;
  font-weight: 300;
  line-height: 33px;
  letter-spacing: -.25px;
}

.legal-article__section h2::before {
  position: absolute;
  top: 4px;
  bottom: 3px;
  left: 0;
  width: 4px;
  background: var(--usdm-yellow);
  content: "";
}

.legal-article__section p {
  max-width: 730px;
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: .22px;
}

.legal-article__section p + p {
  margin-top: 15px;
}

.legal-article__contact {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 42px;
}

.legal-article__contact > span {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  background: var(--usdm-yellow);
  color: #111;
  font-size: 22px;
}

.legal-article__contact p {
  margin: 0;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: .4px;
}

@media (max-width: 1050px) {
  .legal-layout {
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 34px;
  }

  .legal-facts,
  .legal-navigation {
    padding-right: 22px;
    padding-left: 22px;
  }

  .legal-article {
    padding-right: 38px;
    padding-left: 38px;
  }
}

@media (min-width: 761px) and (max-width: 1050px) {
  .site-header__logo {
    flex: 0 0 25%;
    width: 25%;
    margin-right: 0;
    margin-left: 0;
    padding-right: 30px;
  }

  .site-header__right {
    flex: 0 0 75%;
    width: 75%;
    min-width: 0;
  }

  .primary-navigation {
    flex-wrap: wrap;
    align-content: center;
  }

  .primary-navigation a {
    height: 40px;
    padding-bottom: 3px;
  }

  .header-contact {
    right: 0;
    width: min(333px, calc(50% - 13.5px));
  }

  .feature-grid {
    column-gap: 27px;
  }

  .feature-card {
    padding-right: 0;
    padding-left: 0;
  }

  .carousel,
  .project-copy {
    margin-right: 0;
    margin-left: 0;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    column-gap: 27px;
  }

  .contact-card {
    margin-right: 0;
    margin-left: 0;
  }

  .contact-form__columns {
    column-gap: 17px;
  }

  .footer-main__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .footer-contact-list a,
  .footer-contact-list li > span:last-child {
    flex: 1 1 auto;
    min-width: 0;
    overflow-wrap: anywhere;
  }
}

.button__icon {
  display: block;
  flex: 0 0 16.25px;
  width: 16.25px;
  height: 16px;
  margin-left: 11.2px;
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  font-weight: 900;
  line-height: 16px;
}

.button__icon--download::before { content: "\f358"; }
.button__icon--next::before { content: "\f0a9"; }

.site-footer {
  color: #d4d4d4;
  font-family: "Roboto Footer", "Roboto", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 25px;
  letter-spacing: 1.1px;
}

.site-footer a {
  color: #bebdbd;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--usdm-yellow);
}

.footer-main {
  height: 417.46875px;
  padding: 50px 30px 20px;
  background: #191a1b;
  background-image: url("../img/footer-line-yellow.jpg");
  background-position: right bottom;
  background-repeat: repeat-x;
}

.footer-main__inner {
  display: grid;
  grid-template-columns: repeat(3, 416px);
  width: 1248px;
  max-width: 100%;
  height: 327.46875px;
  margin: 0 auto;
}

.footer-column {
  min-width: 0;
  padding: 0 23.953125px;
}

.footer-logo {
  display: block;
  width: 100%;
  height: auto;
}

.footer-tagline {
  display: flow-root;
  height: 68.8125px;
  margin-top: 10px;
  color: #d4d4d4;
  font-size: 18.5px;
  line-height: 31.82px;
}

.footer-tagline p {
  margin: 18.5px 0;
}

.footer-contact-list {
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  min-height: 34.09375px;
  align-items: flex-start;
  color: #d4d4d4;
  line-height: 25px;
}

.footer-contact-list li:first-child {
  min-height: 29.546875px;
}

.footer-contact-list a,
.footer-contact-list li > span:last-child,
.footer-contact-list strong {
  display: block;
  font-weight: 300;
}

.footer-contact-list a,
.footer-contact-list li > span:last-child {
  padding-top: 4.546875px;
}

.footer-contact-list li:first-child > a,
.footer-contact-list li:first-child > span:last-child,
.footer-contact-list li:first-child > strong {
  padding-top: 0;
}

.footer-contact-icon {
  position: relative;
  display: block;
  flex: 0 0 27.1875px;
  width: 27.1875px;
  height: 27.1875px;
  margin-right: 11.203125px;
  color: #d4d4d4;
  font-family: "Font Awesome 5 Free";
  font-size: 13px;
  font-weight: 900;
  line-height: 13px;
}

.footer-contact-icon::before {
  position: absolute;
  top: 7.09375px;
  left: 6.53125px;
}

.footer-contact-list li:not(:first-child) .footer-contact-icon::before {
  top: 11.640625px;
}

.footer-contact-icon--arrow::before { content: "\f0a9"; }
.footer-contact-icon--globe::before { content: "\f7a2"; }
.footer-contact-icon--phone::before { content: "\f879"; }
.footer-contact-icon--mail::before { content: "\f2b6"; }

.footer-contact-list--primary {
  height: 63.640625px;
}

.footer-socials {
  display: flex;
  height: 33px;
  gap: 15.28125px;
  margin: 40px 0 0 10px;
}

.footer-socials a {
  display: block;
  height: 16px;
  margin: 3px 0 14px;
  color: #d4d4d4;
  font-family: "USDM Icons";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: .8px;
  -webkit-font-smoothing: antialiased;
}

.footer-contact-group {
  height: 131.828125px;
}

.footer-contact-group + .footer-contact-group {
  margin-top: 34.078125px;
}

.footer-contact-group__title strong {
  font-weight: 400;
}

.footer-legal {
  display: flow-root;
  height: 99.71875px;
  padding: 0 30px 10px;
  background: var(--usdm-yellow);
  background-image: url("../img/footer-line-white.jpg");
  background-position: left bottom;
  background-repeat: repeat-x;
  color: #fff;
  font-size: 11px;
  line-height: 18.90625px;
}

.footer-legal__inner {
  width: 1200.09375px;
  max-width: 100%;
  height: 89.71875px;
  margin: 0 auto;
}

.footer-legal p {
  margin: 11px 0;
}

.footer-legal p:first-child {
  margin-bottom: 6px;
}

.footer-legal a {
  color: #fff;
  text-decoration: underline;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: #000;
}

@media (max-width: 760px) {
  .content-shell {
    width: min(var(--usdm-content), calc(100% - 20px));
  }

  .feature-section,
  .gallery-section,
  .project-section,
  .contact-section,
  .representatives-section {
    padding-right: 10px;
    padding-left: 10px;
  }

  .contact-section .layout-row,
  .representatives-section .layout-row {
    width: calc(100% + 20px);
    margin-right: -10px;
    margin-left: -10px;
  }

  .contact-card {
    margin-right: 0;
    margin-left: 0;
    padding: 10px;
  }

  .hero__title {
    font-size: 30px;
    line-height: 51.6px;
  }

  .section-heading__title {
    font-size: 30px;
    line-height: 36px;
  }

  .section-heading--inner .section-heading__title {
    font-size: 21px;
    line-height: 25.2px;
  }

  .contact-grid .contact-card h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .site-header {
    height: 88.328125px;
    padding: 5px 5px 10px;
  }

  .site-header__inner {
    width: 100%;
    margin: 0;
  }

  .site-header__logo {
    flex: 0 0 188.109375px;
    width: 188.109375px;
    margin-left: 0;
  }

  .site-header__right {
    position: relative;
    flex: 1 1 auto;
    width: auto;
    padding: 0;
  }

  .language-switcher {
    width: 100%;
  }

  .primary-navigation {
    display: none;
  }

  .header-contact {
    top: 92.3125px;
    right: 24.984375px;
    display: block;
    width: 215.625px;
  }

  .mobile-navigation {
    position: absolute;
    top: 28.328125px;
    right: 0;
    display: block;
    width: 45px;
    height: 57px;
    margin: 0;
  }

  .mobile-navigation summary {
    display: flex;
    flex-direction: column;
    width: 45px;
    height: 57px;
    gap: 4px;
    padding: 10px 0 22px 20px;
    cursor: pointer;
    list-style: none;
  }

  .mobile-navigation summary:focus-visible {
    outline: 2px solid var(--usdm-yellow);
    outline-offset: -2px;
  }

  .mobile-navigation summary::-webkit-details-marker {
    display: none;
  }

  .mobile-navigation summary::before {
    display: block;
    color: var(--usdm-ink);
    content: "\f0c9";
    font-family: "USDM Icons";
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    -webkit-font-smoothing: antialiased;
  }

  .mobile-navigation[open] summary::before {
    content: "\e904";
  }

  .mobile-navigation nav {
    position: fixed;
    z-index: 20;
    top: 88.328125px;
    right: 0;
    left: 0;
    width: 100%;
    max-height: calc(100dvh - 88.328125px);
    overflow-y: auto;
    border-top: 1px solid #ddd;
    background: #fff;
    box-shadow: 0 8px 16px rgb(0 0 0 / 18%);
  }

  .mobile-navigation nav a {
    display: block;
    padding: 15px 10px;
    border-left: 3px solid transparent;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-navigation nav a:hover,
  .mobile-navigation nav a:focus-visible,
  .mobile-navigation nav a.is-active {
    border-left-color: var(--usdm-yellow);
    color: var(--usdm-yellow);
    outline: 0;
  }

  .section-heading__inner {
    padding-top: 0;
  }

  .section-heading__line {
    height: 25.296875px;
  }

  .section-heading__line img {
    margin-top: 11.296875px;
  }

  .feature-grid {
    display: block;
  }

  .gallery-grid,
  .contact-grid,
  .representatives-grid,
  .contact-form__columns {
    grid-template-columns: 1fr;
  }

  .carousel,
  .project-copy {
    margin-right: 0;
    margin-left: 0;
  }

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

  .carousel__slide {
    flex-basis: 100%;
  }

  .lightbox {
    padding: 50px 20px;
  }

  .lightbox__previous,
  .lightbox__next {
    width: 42px;
    background: rgb(0 0 0 / 35%);
  }

  .feature-card {
    padding: 0;
  }

  .feature-card__image {
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .legal-hero {
    padding: 52px 8px 50px;
  }

  .legal-hero::after {
    display: none;
  }

  .legal-hero h1 {
    font-size: 31.5px;
    letter-spacing: -1px;
  }

  .legal-hero__lead {
    font-size: 16px;
    line-height: 25px;
  }

  .legal-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 28px;
    padding: 32px 8px 60px;
  }

  .legal-sidebar {
    position: static;
    width: 100%;
  }

  .legal-navigation {
    display: none;
  }

  .legal-article {
    width: 100%;
    padding: 0 8px 38px;
  }

  .legal-article__section {
    padding: 35px 0 32px;
  }

  .legal-article__section h2 {
    font-size: 21px;
    line-height: 29px;
  }

  .footer-main {
    height: 407.953125px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .footer-main__inner {
    display: block;
    width: 100%;
    height: 317.953125px;
  }

  .footer-column {
    padding: 0;
  }

  .footer-column--representatives {
    display: none;
  }

  .footer-legal {
    height: 157.53125px;
    padding-top: 20px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .footer-legal__inner {
    width: 100%;
    height: 127.53125px;
  }
}

@media (min-width: 761px) and (max-width: 1050px) {
  .footer-main__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }
}
