@charset "UTF-8";
:root {
  --header-height: 115px;
  --text-light: #ffffff;
  --text-dark: #111111;
  --logo-menu-gap: 20px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

section[id],
footer[id],
#contact-form {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  background-color: #fff;
}

body.project-template-default,
body.single-project {
  background-color: #000;
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  margin-left: auto;
  margin-right: auto;
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-height);
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-inner {
  position: relative;
  height: 100%;
  width: 100%;
  margin-inline: auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 28px);
}

.site-header .header-inner {
  max-width: 1290px;
}

.header-nav-group {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--logo-menu-gap);
}

.main-navigation {
  min-width: 0;
  flex: 1 1 auto;
}

.main-navigation .top-menu {
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.header-logo {
  width: 130px;
  height: 76px;
  margin-inline: 0;
  flex-shrink: 0;
}

.header-logo img {
  width: 100%;
  height: 76px;
  display: block;
}

.header-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 10px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.header-burger span {
  width: 26px;
  height: 2px;
  background: #222;
  display: block;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.header-burger[aria-expanded=true] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.header-burger[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}

.header-burger[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.social-links,
.top-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-links a {
  width: 26px;
  height: 26px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  color: #000;
  font-size: 14px;
  transition: all 300ms;
}
.social-links a:hover, .social-links a:focus-visible {
  animation: pulse 0.5s ease-in-out;
  background: #000;
  color: #fff;
  transition: all 300ms;
}

.social-links {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  background: #000;
  padding: 6px 5px;
  border-radius: 999px;
}

.social-links.social-links--header,
.header-inner > .social-links.social-links--footer {
  flex: 0 0 auto;
  margin: 0;
  gap: 10px;
  padding: 6px 10px;
  background: #fff;
  border-radius: 999px;
}

.social-links.social-links--header a,
.header-inner > .social-links.social-links--footer a {
  width: 36px;
  height: 36px;
  font-size: 20px;
  background: #000;
  color: #fff;
}

.social-links.social-links--header a:hover,
.social-links.social-links--header a:focus-visible,
.header-inner > .social-links.social-links--footer a:hover,
.header-inner > .social-links.social-links--footer a:focus-visible {
  animation: none;
  background: #111;
  color: #fff;
}

.mobile-menu__social.social-links--footer {
  margin: auto auto 0;
  gap: 12px;
  padding: 8px 12px;
  background: #fff;
  border-radius: 999px;
  justify-content: center;
  width: auto;
}

.mobile-menu__social.social-links--footer a {
  width: 40px;
  height: 40px;
  font-size: 20px;
  background: #000;
  color: #fff;
}

.mobile-menu__social.social-links--footer a:hover,
.mobile-menu__social.social-links--footer a:focus-visible {
  animation: none;
  background: #111;
  color: #fff;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}
ul.top-menu,
#menu-overlay {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, sans-serif;
}

#menu-overlay {
  display: none;
}

.mobile-menu {
  display: none;
}

body.mobile-menu-open {
  overflow: hidden;
}

.top-menu a {
  text-decoration: none;
  color: rgb(34, 34, 34);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}
.top-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgb(108, 108, 108);
  transform: scale3d(0, 1, 1);
  transform-origin: center center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.top-menu a:hover::after, .top-menu a:focus-visible::after {
  transform: scale3d(1, 1, 1);
}

.top-menu li.is-active > a::after,
.top-menu li.current-menu-item > a::after {
  transform: scale3d(1, 1, 1);
}

.mobile-menu__list li.is-active > a,
.mobile-menu__list li.current-menu-item > a {
  color: #000;
}

.lang-switcher {
  position: relative;
}

.lang-switcher__toggle {
  border: none;
  background: transparent;
  color: rgb(34, 34, 34);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  padding: 0 0 4px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, sans-serif;
}

.lang-switcher__toggle i {
  font-size: 11px;
  transition: transform 0.2s ease;
}

.lang-switcher.is-open .lang-switcher__toggle i {
  transform: rotate(180deg);
}

.lang-switcher__list {
  position: absolute;
  left: 50%;
  right: auto;
  top: calc(100% + 10px);
  min-width: 72px;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: none;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  display: none;
  z-index: 100;
}

.lang-switcher.is-open .lang-switcher__list {
  display: block;
}

.lang-switcher__list a {
  display: block;
  padding: 8px 14px;
  text-decoration: none;
  color: rgb(34, 34, 34);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lang-switcher__list a:hover,
.lang-switcher__list a.is-current {
  background: rgba(0, 0, 0, 0.06);
}

.hero {
  position: relative;
  height: min(100vh, 949px);
  min-height: min(100vh, 949px);
  max-height: 949px;
  color: var(--text-light);
  overflow: hidden;
  background: #000;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.hero-video-wrap.is-playing {
  opacity: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.05);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 14px;
  box-sizing: border-box;
}

@keyframes hero-plaque-enter {
  from {
    opacity: 0;
    transform: translateX(-48px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-plaque {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: min(660px, 100%);
  margin-top: clamp(61px, 29vh, 214px);
  margin-left: -14px;
  padding: 16px 28px 16px 16px;
  opacity: 0;
  animation: hero-plaque-enter 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.62) 35%,
    rgba(0, 0, 0, 0.28) 70%,
    transparent 100%
  );
}

.hero-plaque__logo {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.hero-plaque__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.hero-plaque__title {
  margin: 0;
  font-family: "Poppins", Sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.1;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
}

.hero-plaque__title-bold {
  font-weight: 800;
}

.hero-plaque__tagline {
  margin: 0;
  font-family: "Herr Von Muellerhoff", Sans-serif;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: normal;
  line-height: 1;
  color: #fff;
}

@media (max-width: 375px) {
  .hero-plaque {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-plaque {
    opacity: 1;
    animation: none;
    transform: none;
  }
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  --e-global-typography-primary-font-family: "Roboto";
  position: relative;
  color: #fff;
  overflow: hidden;
  padding: 96px 0 40px;
}

.site-footer__bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/footerbg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.site-footer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-footer__top {
  text-align: center;
  margin-bottom: 56px;
}

.site-footer__title {
  margin: 0 0 28px;
  font-family: "Poppins", sans-serif;
  font-size: 61px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.05;
  text-transform: uppercase;
}

.site-footer .social-links {
  grid-column: unset;
  justify-self: center;
  margin: 0 auto 28px;
  gap: 22px;
  padding: 10px 14px;
  background: #fff;
  border-radius: 999px;
}

.site-footer .social-links a {
  width: 102px;
  height: 102px;
  font-size: 52px;
  background: #000;
  color: #fff;
}

.site-footer__subtitle {
  margin: 0 0 18px;
  font-family: "Herr Von Muellerhoff", sans-serif;
  font-size: 50px;
  font-weight: normal;
  text-transform: none;
  color: #ffffff;
  line-height: 1;
}

.site-footer__lead {
  margin: 0 auto;
  max-width: 100%;
  font-family: var(--e-global-typography-primary-font-family), sans-serif;
  font-size: 21px;
  font-weight: 300;
  line-height: 1.4em;
  color: #ffffff;
}

.site-footer__columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 500px);
  gap: 40px 36px;
  align-items: start;
  text-align: left;
}

.site-footer__columns--no-general {
  grid-template-columns: minmax(0, 1fr) minmax(0, 500px);
}

.site-footer__col-title {
  margin: 0 0 16px;
  font-size: 14px;
  letter-spacing: 4.8px;
  color: #ffffff;
  text-transform: uppercase;
}

.site-footer__emails {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 300;
  color: #fff;
}
.site-footer__emails a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
}
.site-footer__emails a:hover, .site-footer__emails a:focus-visible {
  text-decoration: underline;
}

.site-footer__phones {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  color: #fff;
}
.site-footer__phones li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 300;
  color: #fff;
}
.site-footer__phones li i {
  font-size: 14px;
  opacity: 0.9;
  flex: 0 0 auto;
}
.site-footer__phones li a {
  color: #fff;
  text-decoration: none;
  flex: 1 1 auto;
  min-width: 0;
}
.site-footer__phones li a:hover, .site-footer__phones li a:focus-visible {
  text-decoration: underline;
}

.site-footer__languages-label {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.site-footer__languages {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
  color: #fff;
}
.site-footer__languages li::before {
  content: "– ";
}

.site-footer__address {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
  color: #fff;
  font-style: normal;
}

.wpcf7-form p {
  margin: 0;
}

.contact-form p,
#contact-form .wpcf7-form p {
  margin-bottom: 0;
}

.wpcf7-turnstile,
.cf-turnstile {
  display: none !important;
}

.wpcf7 form .wpcf7-response-output {
  font-size: 13px;
  margin: 15px 0;
}

.wpcf7-not-valid-tip {
  font-size: 13px;
}

.wpcf7-form-control-wrap[data-name=hp-website],
.wpcf7-form-control-wrap[data-name=footer-hp-website] {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.site-footer__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer__form input,
.site-footer__form textarea {
  width: 100%;
  border: none;
  border-radius: 0;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  color: #222;
  background: #e8e8e8;
}
.site-footer__form input::-moz-placeholder, .site-footer__form textarea::-moz-placeholder {
  color: #555;
}
.site-footer__form input::placeholder,
.site-footer__form textarea::placeholder {
  color: #555;
}
.site-footer__form textarea {
  height: 220px;
  min-height: 220px;
  max-height: 220px;
  resize: none;
}

.site-footer__recaptcha {
  min-height: 78px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer__submit {
  margin-top: 4px;
  align-self: flex-start;
  width: 112px;
  height: 42px;
  box-sizing: border-box;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 0;
  background: #fff;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.site-footer__submit:hover, .site-footer__submit:focus-visible {
  opacity: 0.92;
}

.wpcf7-form-control.wpcf7-submit.has-spinner.site-footer__submit {
  width: 112px;
  height: 42px;
}

.site-footer__copy {
  margin: 48px 0 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 900px) {
  .site-footer {
    padding: 72px 0 32px;
  }
  .site-footer__title {
    font-size: clamp(34px, 10vw, 61px);
  }
  .site-footer__subtitle {
    font-size: clamp(32px, 9vw, 50px);
  }
  .site-footer__columns {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .site-footer .social-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.home-projects {
  margin-top: 0;
  background: #000;
  padding: 120px 0 140px;
}

.home-projects__intro {
  --divider-border-style: solid;
  --divider-color: rgba(196, 196, 196, 0.24);
  --divider-border-width: 1px;
  max-width: 1140px;
  margin: 0 auto 50px;
  text-align: center;
}
.home-projects__intro h2 {
  margin: 0 auto 30px;
  font-family: "Poppins", Sans-serif;
  font-size: 61px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.05;
  text-transform: uppercase;
  padding-bottom: 30px;
  display: inline-block;
  border-bottom: var(--divider-border-width) var(--divider-border-style) var(--divider-color);
}
.home-projects__intro p {
  margin: 0 0 30px;
  font-family: "Herr Von Muellerhoff", Sans-serif;
  font-size: 50px;
  font-weight: normal;
  text-transform: none;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  line-height: 1;
}

.home-projects__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min-content;
  height: 50px;
  box-sizing: border-box;
  margin-top: 22px;
  cursor: pointer;
  background-color: #ffffff;
  --e-global-typography-accent-font-family: "Roboto";
  --e-global-typography-accent-font-weight: 600;
  font-family: var(--e-global-typography-accent-font-family), Sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  fill: #272727;
  color: #272727;
  border-style: solid;
  border-color: #000000;
  border-width: 1px;
  text-decoration: none;
  padding: 0 16px;
  line-height: 1.1;
}
.home-projects__cta span {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.home-projects__cta span::after {
  display: block;
  content: "";
  background-color: transparent;
  height: 2px;
  width: 0%;
  left: 50%;
  position: absolute;
  transition: width 0.3s ease-in-out;
  transform: translateX(-50%);
  bottom: 0;
}
.home-projects__cta:hover span::after, .home-projects__cta:focus-visible span::after {
  width: 100%;
  display: inline;
  box-shadow: 0px 3px 0px #000000;
}

.home-projects__container {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.home-project-card {
  position: relative;
  display: block;
  height: 376px;
  overflow: hidden;
  text-decoration: none;
  background: #111;
}
.home-project-card img,
.home-project-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.home-project-card img {
  transform: scale(1);
  transition: transform 0.5s, opacity 0.4s ease;
  z-index: 1;
}
.home-project-card .home-project-card__video {
  opacity: 0;
  z-index: 2;
  transform: scale(1);
  transition: transform 0.5s, opacity 0.4s ease;
  pointer-events: none;
}
.home-project-card.is-video-playing .home-project-card__poster {
  opacity: 0;
}
.home-project-card.is-video-playing .home-project-card__video {
  opacity: 1;
}

.home-project-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.72) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.home-project-card__overlay h2 {
  color: #fff;
  font-size: 26px;
  line-height: 24px;
  margin: 0 0 5px 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.home-project-card__overlay p {
  line-height: 20px;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 3px;
  margin: 10px 0 0;
  opacity: 0.6;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.home-project-card:hover .home-project-card__overlay,
.home-project-card:focus-visible .home-project-card__overlay {
  opacity: 1;
}

.home-projects__footer {
  margin: 50px 0 0;
  text-align: center;
}

.home-projects__more-btn {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 12px 20px;
  background-color: #ffffff;
  cursor: pointer;
  font: inherit;
  --e-global-typography-accent-font-family: "Roboto";
  --e-global-typography-accent-font-weight: 600;
  font-family: var(--e-global-typography-accent-font-family), Sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  color: #272727;
  border-style: solid;
  border-color: #000000;
  border-width: 1px;
  text-decoration: none;
  line-height: 1.1;
}
.home-projects__more-btn span {
  position: relative;
  display: inline-block;
}
.home-projects__more-btn span::after {
  display: block;
  content: "";
  background-color: transparent;
  height: 2px;
  width: 0%;
  left: 50%;
  position: absolute;
  transition: width 0.3s ease-in-out;
  transform: translateX(-50%);
  bottom: 0;
}
.home-projects__more-btn:hover span::after, .home-projects__more-btn:focus-visible span::after {
  width: 100%;
  display: inline;
  box-shadow: 0px 3px 0px #000000;
}

body.presentation-modal-open {
  overflow: hidden;
}

.presentation-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.presentation-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.presentation-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 24, 0.72);
}

.presentation-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 36px 32px 32px;
  background: #fff;
  color: #121212;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.presentation-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: #121212;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.presentation-modal__close:hover,
.presentation-modal__close:focus-visible {
  opacity: 0.7;
}

.presentation-modal__title {
  margin: 0 0 12px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
}

.presentation-modal__lead {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.5;
  color: #444;
}

.presentation-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.presentation-form__field br {
  display: none;
}
.presentation-form__field p {
  margin: 0;
}

.presentation-form__label {
  display: block;
  margin-bottom: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.presentation-form__input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #c8c8c8;
  border-radius: 0;
  padding: 12px 14px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  color: #222;
  background: #f2f2f2;
}

.presentation-form__input:focus {
  outline: 2px solid #121212;
  outline-offset: 1px;
}

.presentation-form__input.is-invalid {
  border-color: #c0392b;
}

.presentation-form__error {
  margin: 6px 0 0;
  font-size: 12px;
  color: #c0392b;
}

.presentation-form__error--global {
  margin: 0;
}

.ask-question-modal__cf7 .wpcf7,
.contact-modal__cf7 .wpcf7,
.presentation-modal__cf7 .wpcf7 {
  margin: 0;
}
.ask-question-modal__cf7 .wpcf7 form,
.contact-modal__cf7 .wpcf7 form,
.presentation-modal__cf7 .wpcf7 form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}
.ask-question-modal__cf7 .wpcf7-form > p,
.contact-modal__cf7 .wpcf7-form > p,
.presentation-modal__cf7 .wpcf7-form > p {
  margin: 0;
}
.ask-question-modal__cf7 .wpcf7-form > p:has(> label.screen-reader-text):not(:has(.wpcf7-form-control-wrap)),
.contact-modal__cf7 .wpcf7-form > p:has(> label.screen-reader-text):not(:has(.wpcf7-form-control-wrap)),
.presentation-modal__cf7 .wpcf7-form > p:has(> label.screen-reader-text):not(:has(.wpcf7-form-control-wrap)) {
  display: none;
}
.ask-question-modal__cf7 .wpcf7-form-control-wrap,
.contact-modal__cf7 .wpcf7-form-control-wrap,
.presentation-modal__cf7 .wpcf7-form-control-wrap {
  display: block;
}
.ask-question-modal__cf7 input:not([type="hidden"]):not([type="submit"]),
.ask-question-modal__cf7 textarea,
.contact-modal__cf7 input:not([type="hidden"]):not([type="submit"]),
.contact-modal__cf7 textarea,
.presentation-modal__cf7 input:not([type="hidden"]):not([type="submit"]),
.presentation-modal__cf7 textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #c8c8c8;
  border-radius: 0;
  padding: 12px 14px;
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  color: #222;
  background: #f2f2f2;
}
.ask-question-modal__cf7 input:not([type="hidden"]):not([type="submit"])::placeholder,
.ask-question-modal__cf7 textarea::placeholder,
.contact-modal__cf7 input:not([type="hidden"]):not([type="submit"])::placeholder,
.contact-modal__cf7 textarea::placeholder,
.presentation-modal__cf7 input:not([type="hidden"]):not([type="submit"])::placeholder,
.presentation-modal__cf7 textarea::placeholder {
  color: #666;
}
.ask-question-modal__cf7 input:not([type="hidden"]):not([type="submit"]):focus,
.ask-question-modal__cf7 textarea:focus,
.contact-modal__cf7 input:not([type="hidden"]):not([type="submit"]):focus,
.contact-modal__cf7 textarea:focus,
.presentation-modal__cf7 input:not([type="hidden"]):not([type="submit"]):focus,
.presentation-modal__cf7 textarea:focus {
  outline: 2px solid #121212;
  outline-offset: 1px;
}
.ask-question-modal__cf7 textarea,
.contact-modal__cf7 textarea,
.presentation-modal__cf7 textarea {
  min-height: 140px;
  max-height: 220px;
  resize: vertical;
}
.ask-question-modal__cf7 .wpcf7-submit,
.ask-question-modal__cf7 .site-footer__submit,
.contact-modal__cf7 .wpcf7-submit,
.contact-modal__cf7 .site-footer__submit,
.presentation-modal__cf7 .wpcf7-submit,
.presentation-modal__cf7 .site-footer__submit {
  margin-top: 4px;
  align-self: flex-start;
  min-width: 112px;
  width: auto;
  height: 42px;
  box-sizing: border-box;
  padding: 0 20px;
  border: 1px solid #000;
  border-radius: 0;
  background: #fff;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.ask-question-modal__cf7 .wpcf7-submit:hover:not(:disabled),
.ask-question-modal__cf7 .wpcf7-submit:focus-visible:not(:disabled),
.ask-question-modal__cf7 .site-footer__submit:hover:not(:disabled),
.ask-question-modal__cf7 .site-footer__submit:focus-visible:not(:disabled),
.contact-modal__cf7 .wpcf7-submit:hover:not(:disabled),
.contact-modal__cf7 .wpcf7-submit:focus-visible:not(:disabled),
.contact-modal__cf7 .site-footer__submit:hover:not(:disabled),
.contact-modal__cf7 .site-footer__submit:focus-visible:not(:disabled),
.presentation-modal__cf7 .wpcf7-submit:hover:not(:disabled),
.presentation-modal__cf7 .wpcf7-submit:focus-visible:not(:disabled),
.presentation-modal__cf7 .site-footer__submit:hover:not(:disabled),
.presentation-modal__cf7 .site-footer__submit:focus-visible:not(:disabled) {
  background: #000;
  color: #fff;
}
.ask-question-modal__cf7 .wpcf7-submit:disabled,
.ask-question-modal__cf7 .site-footer__submit:disabled,
.contact-modal__cf7 .wpcf7-submit:disabled,
.contact-modal__cf7 .site-footer__submit:disabled,
.presentation-modal__cf7 .wpcf7-submit:disabled,
.presentation-modal__cf7 .site-footer__submit:disabled {
  opacity: 0.6;
  cursor: wait;
}
.ask-question-modal__cf7 .wpcf7-not-valid-tip,
.contact-modal__cf7 .wpcf7-not-valid-tip,
.presentation-modal__cf7 .wpcf7-not-valid-tip {
  margin: 6px 0 0;
  font-size: 13px;
  color: #c0392b;
}
.ask-question-modal__cf7 .wpcf7-response-output,
.contact-modal__cf7 .wpcf7-response-output,
.presentation-modal__cf7 .wpcf7-response-output {
  margin: 15px 0 0;
  padding: 10px 12px;
  border: 1px solid #c8c8c8;
  font-size: 13px;
  line-height: 1.5;
}
.ask-question-modal__cf7 .wpcf7 form.invalid .wpcf7-response-output,
.ask-question-modal__cf7 .wpcf7 form.unaccepted .wpcf7-response-output,
.ask-question-modal__cf7 .wpcf7 form.payment-required .wpcf7-response-output,
.contact-modal__cf7 .wpcf7 form.invalid .wpcf7-response-output,
.contact-modal__cf7 .wpcf7 form.unaccepted .wpcf7-response-output,
.contact-modal__cf7 .wpcf7 form.payment-required .wpcf7-response-output,
.presentation-modal__cf7 .wpcf7 form.invalid .wpcf7-response-output,
.presentation-modal__cf7 .wpcf7 form.unaccepted .wpcf7-response-output,
.presentation-modal__cf7 .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #c0392b;
  color: #c0392b;
}
.ask-question-modal__cf7 .wpcf7 form.sent .wpcf7-response-output,
.contact-modal__cf7 .wpcf7 form.sent .wpcf7-response-output,
.presentation-modal__cf7 .wpcf7 form.sent .wpcf7-response-output {
  border-color: #1a7f37;
  color: #1a7f37;
}
.ask-question-modal__cf7 .wpcf7-spinner,
.contact-modal__cf7 .wpcf7-spinner,
.presentation-modal__cf7 .wpcf7-spinner {
  margin-left: 8px;
}

.presentation-form__submit {
  margin-top: 4px;
  align-self: flex-start;
  min-width: 140px;
  height: 42px;
  padding: 0 20px;
  border: 1px solid #000;
  border-radius: 0;
  background: #fff;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.presentation-form__submit:hover:not(:disabled),
.presentation-form__submit:focus-visible:not(:disabled) {
  background: #000;
  color: #fff;
}

.presentation-form__submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

.presentation-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.presentation-form__required {
  color: #c0392b;
}

.presentation-form__success {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #1a7f37;
}

@keyframes anim-moema-1 {
  60% {
    transform: scale3d(0.8, 0.8, 1);
  }
  85% {
    transform: scale3d(1.1, 1.1, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes anim-moema-2 {
  to {
    opacity: 0;
    transform: scale3d(1, 1, 1);
  }
}

.site-floating-actions {
  position: fixed;
  right: 40px;
  bottom: 24px;
  z-index: 4;
  pointer-events: none;
}

.site-floating-actions__ask {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 5px solid #000;
  border-radius: 999px;
  background: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
  color: #000;
  line-height: 1.1;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-floating-actions__ask:hover,
.site-floating-actions__ask:focus-visible {
  transform: translateY(-2px);
}

.site-floating-actions__top {
  outline: none !important;
  position: fixed;
  bottom: 100px;
  right: 40px;
  z-index: 1000;
  display: block;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 1);
  text-align: center;
  line-height: 38px;
  font-size: 22px;
  opacity: 1;
  visibility: visible;
  overflow: visible;
  pointer-events: auto;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, opacity 0.5s;
}

.site-floating-actions__top i {
  position: relative;
  z-index: 1;
}

.site-floating-actions__top::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border-radius: 50%;
  background: inherit;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  transform: scale3d(0.8, 0.8, 1);
}

.site-floating-actions__top[hidden] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: background-color 0.3s, color 0.3s, opacity 0.5s, visibility 0s 0.5s;
}

.site-floating-actions__top:hover,
.site-floating-actions__top:focus-visible {
  color: #fff;
  text-decoration: none;
  background-color: #000;
  transition: background-color 0.1s 0.3s, color 0.1s 0.3s, opacity 0.5s, visibility 0s 0.5s;
  animation: anim-moema-1 0.3s forwards;
}

.site-floating-actions__top:hover::before,
.site-floating-actions__top:focus-visible::before {
  opacity: 0.4;
  animation: anim-moema-2 0.3s 0.3s forwards;
}

@media (max-width: 767px) {
  .site-floating-actions {
    right: 16px;
    bottom: 16px;
  }
  .site-floating-actions__ask {
    min-height: 46px;
    padding: 0 18px;
    font-size: 13px;
    border-width: 4px;
  }
  .site-floating-actions__top {
    bottom: 88px;
    right: 16px;
    width: 40px;
    height: 40px;
    line-height: 38px;
    font-size: 22px;
  }
}

.thank-you-page {
  padding: 0;
  background: #fff;
  color: #121212;
}

.thank-you-page__hero {
  padding: calc(var(--header-height, 80px) + 48px) 0 56px;
  text-align: center;
  background: #f7f7f7;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.thank-you-page__hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.thank-you-page__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 36px;
  line-height: 1;
}

.thank-you-page__title {
  margin: 0 0 16px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
}

.thank-you-page__text {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.6;
  color: #333;
}

.thank-you-page__subtitle {
  margin: 0 0 28px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #666;
}

.thank-you-page__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 16px;
}

.thank-you-page__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 24px;
  border: 1px solid #000;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.thank-you-page__btn--primary {
  background: #000;
  color: #fff;
}

.thank-you-page__btn--primary:hover,
.thank-you-page__btn--primary:focus-visible {
  background: #333;
  color: #fff;
}

.thank-you-page__btn--secondary:hover,
.thank-you-page__btn--secondary:focus-visible,
.thank-you-page__btn--outline:hover,
.thank-you-page__btn--outline:focus-visible {
  background: #000;
  color: #fff;
}

.thank-you-page__btn--secondary,
.thank-you-page__btn--outline {
  background: #fff;
  color: #000;
}

.thank-you-page__projects {
  padding: 56px 0 48px;
}

.thank-you-page__section-title {
  margin: 0 0 32px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
  color: #111;
}

.thank-you-page__section-title--left {
  text-align: left;
  margin-bottom: 24px;
}

.thank-you-page__projects-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.thank-you-page__project-card {
  min-height: 220px;
}

.thank-you-page__strip {
  padding: 0 0 72px;
  background: #fafafa;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.thank-you-page__strip-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px 48px;
  padding-top: 48px;
}

.thank-you-page__news-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.thank-you-page__news-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.thank-you-page__news-media {
  display: block;
  overflow: hidden;
  background: #e8e8e8;
  position: relative;
}

.thank-you-page__news-media img,
.thank-you-page__news-media video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 90px;
  object-fit: cover;
}

.thank-you-page__news-media--has-video {
  background: #000;
}

.thank-you-page__news-media--has-video .thank-you-page__news-media__poster {
  transition: opacity 0.4s ease;
}

.thank-you-page__news-media--has-video .thank-you-page__news-media__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 90px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.thank-you-page__news-media--has-video.is-video-playing .thank-you-page__news-media__poster {
  opacity: 0;
}

.thank-you-page__news-media--has-video.is-video-playing .thank-you-page__news-media__video {
  opacity: 1;
}

.thank-you-page__news-title {
  margin: 0 0 8px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}

.thank-you-page__news-title a {
  color: #111;
  text-decoration: none;
}

.thank-you-page__news-title a:hover,
.thank-you-page__news-title a:focus-visible {
  text-decoration: underline;
}

.thank-you-page__news-excerpt {
  margin: 0 0 8px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  line-height: 1.45;
  color: #555;
}

.thank-you-page__news-more {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111;
  text-decoration: underline;
}

.thank-you-page__cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.thank-you-page__strip--cta-only .thank-you-page__strip-inner {
  grid-template-columns: 1fr;
  justify-items: center;
}

.thank-you-page__strip--cta-only .thank-you-page__cta-row {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 1100px) {
  .thank-you-page__projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .thank-you-page__strip-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .thank-you-page__cta-row {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .thank-you-page__hero {
    padding-top: calc(var(--header-height, 80px) + 32px);
    padding-bottom: 40px;
  }
  .thank-you-page__projects {
    padding: 40px 0 32px;
  }
  .thank-you-page__projects-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .thank-you-page__news-list {
    grid-template-columns: 1fr;
  }
  .thank-you-page__news-item {
    grid-template-columns: 96px minmax(0, 1fr);
  }
  .thank-you-page__news-title {
    font-size: 18px !important;
  }
  .thank-you-page__actions,
  .thank-you-page__cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .thank-you-page__btn {
    width: 100%;
  }
}

body.error404 .thank-you-page__hero .thank-you-page__text {
  margin-bottom: 28px;
}

.error-404-page__code {
  margin: 0 0 8px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(80px, 16vw, 140px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.07);
}

.site-header--minimal .header-inner--minimal {
  justify-content: center;
}
.site-header--minimal .header-logo {
  margin-inline: auto;
}

.home-reviews {
  background: #fff;
  padding: 126px 0 84px;
  color: #121212;
  overflow: hidden;
}

.home-reviews__intro {
  --divider-border-style: solid;
  --divider-color: rgba(0, 0, 0, 0.18);
  --divider-border-width: 1px;
  text-align: center;
  margin-bottom: 64px;
}
.home-reviews__intro h2 {
  margin: 0 auto 18px;
  font-family: "Poppins", Sans-serif;
  font-size: 61px;
  font-weight: 700;
  color: #161616;
  line-height: 1.05;
  text-transform: uppercase;
  display: inline-block;
  padding-bottom: 22px;
  border-bottom: var(--divider-border-width) var(--divider-border-style) var(--divider-color);
}
.home-reviews__intro p {
  margin: 0;
  font-family: "Herr Von Muellerhoff", sans-serif;
  font-size: 50px;
  line-height: 1;
}

.home-reviews__carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 40px);
  width: min(1040px, 100%);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
  box-sizing: border-box;
}

.home-reviews__slider-wrap {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  max-width: 948px;
}

.home-reviews__slider {
  overflow: hidden;
}
.home-reviews__slider .swiper-wrapper {
  align-items: stretch;
}
.home-reviews__slider .swiper-slide {
  width: 100% !important;
  height: auto;
}

.home-reviews__slider-wrap .swiper-backface-hidden .swiper-slide img {
  width: 100px;
  height: 100px;
  max-width: 100px;
  min-height: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.home-review-card {
  width: 100%;
  max-width: 100%;
  min-height: 307px;
  height: auto;
  padding: 0;
  border-right: 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.home-review-card__text {
  margin: 0;
  max-height: 200px;
  overflow: auto;
  font-size: 16px;
  font-family: "Roboto Condensed", sans-serif;
  color: #333333;
  position: relative;
  font-style: normal;
  text-align: left;
  line-height: 1.45;
}

.home-review-card__text p,
.home-review-card__text li,
.home-review-card__text blockquote,
.home-review-card__text cite,
.home-review-card__text em,
.home-review-card__text strong {
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  font-style: normal;
}

.home-review-card__text em {
  font-style: italic;
}

.home-review-card__footer {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-review-card__footer img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.home-review-card__footer cite {
  font-size: 16px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  color: #333333;
  font-style: italic;
  line-height: 1.5;
}

.home-reviews__contact {
  margin: auto 0 0;
  margin-top: 40px;
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
  font-family: "Roboto Condensed", sans-serif;
  font-style: normal;
  font-size: 1.3em;
  line-height: 1.3;
}

.home-reviews__arrow {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #434343;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
}
.home-reviews__arrow[hidden] {
  visibility: hidden;
  pointer-events: none;
}
.home-reviews__arrow:hover, .home-reviews__arrow:focus-visible {
  color: #000;
}

.home-reviews__cta-wrap {
  margin: 0;
  text-align: center;
}

.home-reviews__cta {
  position: relative;
  display: inline-block;
  padding: 12px 20px;
  cursor: pointer;
  --e-global-typography-accent-font-family: "Roboto";
  --e-global-typography-accent-font-weight: 600;
  background-color: #000;
  border: 1px solid #000;
  text-decoration: none;
  line-height: 1.1;
}
.home-reviews__cta span {
  display: inline-block;
  color: #fff;
  font-family: var(--e-global-typography-accent-font-family), Sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
}
.home-reviews__cta span::after {
  display: block;
  content: "";
  background-color: transparent;
  height: 2px;
  width: 0%;
  left: 50%;
  position: absolute;
  transition: width 0.3s ease-in-out;
  transform: translateX(-50%);
  bottom: 0;
}
.home-reviews__cta:hover span::after, .home-reviews__cta:focus-visible span::after {
  width: 100%;
  display: inline;
  box-shadow: 0 3px 0 #ffffff;
}

.home-about {
  background: #fff;
  padding: 120px 0 90px;
}

.home-about__container {
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.home-about__intro {
  --divider-border-style: solid;
  --divider-color: rgba(0, 0, 0, 0.18);
  --divider-border-width: 1px;
  text-align: center;
  margin-bottom: 44px;
}
.home-about__intro h2 {
  margin: 0 auto 18px;
  font-family: "Poppins", Sans-serif;
  font-size: 61px;
  font-weight: 700;
  color: #161616;
  line-height: 1.05;
  text-transform: uppercase;
  display: inline-block;
  padding-bottom: 20px;
  border-bottom: var(--divider-border-width) var(--divider-border-style) var(--divider-color);
}
.home-about__intro p {
  margin: 0;
  font-family: "Herr Von Muellerhoff", Sans-serif;
  font-size: 50px;
  font-weight: normal;
  text-transform: none;
  color: #2d2d2d;
  line-height: 1;
}

.home-about__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
}

.home-about__col p {
  margin: 0 0 14px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #3a3a3a;
}

.home-about__cta-wrap {
  margin: 50px 0 0;
  text-align: center;
}

.home-about__cta {
  position: relative;
  display: inline-block;
  padding: 12px 20px;
  cursor: pointer;
  --e-global-typography-accent-font-family: "Roboto";
  --e-global-typography-accent-font-weight: 600;
  background-color: #000;
  border: 1px solid #000;
  text-decoration: none;
  line-height: 1.1;
}
.home-about__cta span {
  display: inline-block;
  color: #fff;
  font-family: var(--e-global-typography-accent-font-family), Sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
}
.home-about__cta span::after {
  display: block;
  content: "";
  background-color: transparent;
  height: 2px;
  width: 0%;
  left: 50%;
  position: absolute;
  transition: width 0.3s ease-in-out;
  transform: translateX(-50%);
  bottom: 0;
}
.home-about__cta:hover span::after, .home-about__cta:focus-visible span::after {
  width: 100%;
  display: inline;
  box-shadow: 0 3px 0 #ffffff;
}

.home-advantages {
  position: relative;
  min-height: 100dvh;
  background-image: url("../img/adva.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-advantages__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.home-advantages__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 14px;
}

.home-advantages__intro {
  margin-bottom: 64px;
}
.home-advantages__intro h2 {
  margin: 0 0 40px;
  font-family: "Poppins", sans-serif;
  font-size: 61px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.05;
  text-transform: uppercase;
}
.home-advantages__intro h3 {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 20px;
  border-top: 1px solid rgba(196, 196, 196, 0.24);
  font-family: "Herr Von Muellerhoff", sans-serif;
  font-size: 50px;
  font-weight: normal;
  text-transform: none;
  color: rgba(255, 255, 255, 0.9294117647);
  line-height: 1;
}

.home-advantages__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.home-advantages__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}
.home-advantages__item img {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  transition: transform 0.35s ease;
}
.home-advantages__item:hover img,
.home-advantages__item:focus-within img {
  transform: scale(1.1) rotate(4deg);
}

.home-advantages__item-title {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  letter-spacing: 4px;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
}

.home-build {
  height: 405px;
  background-color: #e6e7e3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.home-build__content h2 {
  margin: 0 0 36px;
  font-family: "Poppins", sans-serif;
  font-size: 61px;
  font-weight: 700;
  color: #101010;
  line-height: 1.05;
  text-transform: uppercase;
}
.home-build__content h3 {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 20px;
  font-family: "Herr Von Muellerhoff", sans-serif;
  font-size: 50px;
  font-weight: normal;
  text-transform: none;
  text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
  color: rgba(0, 0, 0, 0.8);
  line-height: 1;
  position: relative;
}
.home-build__content h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  border-top: 1px solid #c4c4c4;
}

.home-newsletter {
  background: #fff;
  padding: 110px 0 96px;
}

.home-newsletter__container {
  max-width: 1040px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.home-newsletter__intro {
  text-align: center;
  margin-bottom: 50px;
}
.home-newsletter__intro h2 {
  font-family: "Poppins", sans-serif;
  font-size: 61px;
  font-weight: 700;
  color: #161616;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0 0 40px;
}
.home-newsletter__intro h3 {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 20px;
  border-top: 1px solid rgba(196, 196, 196, 0.24);
  font-family: "Herr Von Muellerhoff", sans-serif;
  font-size: 50px;
  font-weight: normal;
  text-transform: none;
  color: #2d2d2d;
  line-height: 1;
}

.home-newsletter__posts {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.home-newsletter__post {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 35px;
  align-items: center;
}

.posts_horizontal .post-media {
  width: 420px;
  height: 234px;
}

.home-newsletter .post-media {
  position: relative;
  display: block;
  overflow: hidden;
}
.home-newsletter .post-media img,
.home-newsletter .post-media video {
  display: block;
  width: 100%;
  height: 234px;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-newsletter .post-media img {
  transition: filter 0.3s ease;
}
.home-newsletter .post-media--has-video {
  background: #000;
}
.home-newsletter .post-media--has-video .post-media__poster {
  transition: filter 0.3s ease, opacity 0.4s ease;
}
.home-newsletter .post-media--has-video .post-media__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.home-newsletter .post-media--has-video.is-video-playing .post-media__poster {
  opacity: 0;
}
.home-newsletter .post-media--has-video.is-video-playing .post-media__video {
  opacity: 1;
}
.home-newsletter .post-media::before {
  content: "+";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  color: #fff;
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.home-newsletter .post-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}
.home-newsletter .post-media:hover img,
.home-newsletter .post-media:focus-visible img {
  filter: brightness(0.72);
}
.home-newsletter .post-media:hover::after,
.home-newsletter .post-media:focus-visible::after {
  background: rgba(0, 0, 0, 0.28);
}
.home-newsletter .post-media:hover::before,
.home-newsletter .post-media:focus-visible::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.home-newsletter .formatter {
  min-width: 0;
}

.home-newsletter h2.post-title {
  color: #222;
  font-size: 1.57em;
  line-height: 1.3;
  word-wrap: break-word;
  margin: 0 0 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.home-newsletter h2.post-title a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}
.home-newsletter h2.post-title a:hover,
.home-newsletter h2.post-title a:focus-visible {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-newsletter .entry-summary p {
  margin: 0 0 14px;
  font-size: 16px;
  color: rgb(85, 85, 85);
  line-height: 1.45;
  font-family: "Roboto Condensed", sans-serif;
}
.home-newsletter .entry-summary .more-link {
  font-family: "Roboto Condensed", sans-serif;
  display: inline-block;
  line-height: 1.5em;
  font-size: 0.889em;
  font-weight: bold;
  color: #111;
  text-decoration: none;
}

.home-clients {
  background-color: #f5f6f1;
  padding: 190px 0;
}
.home-clients .swiper-slide {
  display: flex;
}
.home-clients .swiper-slide img {
  width: 100%;
  max-width: 290px;
  height: 100%;
  min-height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.home-clients__container {
  max-width: 1140px;
  margin: 0 auto;
}

.home-clients__intro {
  text-align: center;
  margin-bottom: 60px;
}
.home-clients__intro h2 {
  margin: 0 auto 30px;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 20px;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 61px;
  font-weight: 700;
  color: #161616;
  text-transform: uppercase;
  line-height: 1.05;
}
.home-clients__intro h2::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 200px;
  border-top: 1px solid #c4c4c4;
  transform: translateX(-50%);
}
.home-clients__intro p {
  margin: 0 auto;
  max-width: 920px;
  padding-top: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 21px;
  font-weight: 300;
  line-height: 1.4em;
  color: #000000;
}

.home-clients__accent {
  font-weight: 700;
}

.home-clients__intro p.home-clients__accent {
  font-weight: 700;
}

.home-clients__slider {
  width: 100%;
}

.home-clients__slide {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  min-height: 124px;
}
.home-clients__slide img {
  display: block;
  width: min(180px, 100%);
  max-height: 62px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
}

.home-clients__pagination {
  margin-top: 18px;
  text-align: center;
}
.home-clients__pagination .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  background: #bdbdbd;
  opacity: 1;
}
.home-clients__pagination .swiper-pagination-bullet-active {
  background: #111;
}

@media (max-width: 1024px) {
  :root {
    --header-height: 84px;
  }
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    padding: 4px 15px;
  }
  .header-inner > .social-links.social-links--header {
    display: none;
  }
  .header-burger {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    margin-left: 0;
  }
  .header-nav-group {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    flex: unset;
    width: auto;
    align-items: center;
    justify-content: center;
  }
  .main-navigation {
    display: none;
    grid-column: auto;
    padding: 0;
  }
  .header-logo {
    grid-column: auto;
    justify-self: center;
    width: 114px;
    height: 66px;
  }
  .header-logo img {
    height: 57px;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: var(--header-height);
    right: 0;
    width: min(360px, 100%);
    height: calc(100dvh - var(--header-height));
    background: #ffffff;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 70;
    overflow-y: auto;
    padding: 24px 20px 28px;
  }
  .mobile-menu.is-open {
    transform: translateX(0);
  }
  .mobile-menu__list,
  .mobile-menu__langs {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  .mobile-menu__list li + li,
  .mobile-menu__langs li + li {
    margin-top: 14px;
  }
  .mobile-menu__list a,
  .mobile-menu__langs a {
    display: inline-block;
    text-decoration: none;
    color: #222;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .mobile-menu__langs {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .mobile-menu__langs a {
    font-size: 13px;
    letter-spacing: 0.06em;
  }
  .mobile-menu__social,
  .mobile-menu__social.social-links--footer {
    display: flex;
  }
  #menu-overlay {
    display: block;
    position: fixed;
    inset: var(--header-height) 0 0 0;
    background: rgba(0, 0, 0, 0.42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    z-index: 60;
  }
  #menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .hero-plaque__title {
    font-size: 28px;
  }
  .hero-plaque__tagline {
    font-size: 26px;
  }
  .site-footer__title {
    font-size: 51px;
  }
  .home-projects__intro h2,
  .home-reviews__intro h2,
  .home-about__intro h2,
  .home-advantages__intro h2,
  .home-build__content h2,
  .home-newsletter__intro h2,
  .home-clients__intro h2 {
    font-size: 44px;
  }
  .home-projects__intro p,
  .home-reviews__intro p,
  .home-about__intro p,
  .home-advantages__intro h3,
  .home-build__content h3,
  .home-newsletter__intro h3 {
    font-size: 40px;
  }
  .home-projects__cta,
  .home-reviews__cta,
  .home-reviews__cta span,
  .home-about__cta,
  .home-about__cta span,
  .home-clients__intro p {
    font-size: 18px;
  }
  .home-about__columns {
    gap: 30px;
  }
  .home-newsletter__post {
    gap: 20px;
  }
  .site-footer .social-links a {
    width: 72px;
    height: 72px;
    font-size: 32px;
  }
}
@media (max-width: 996px) {
  .home-project-card {
    height: 256px;
  }
}
@media (max-width: 475px) {
  .home-projects__container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .home-projects {
    padding: 70px 0 70px;
  }
  .header-inner > .social-links.social-links--header {
    display: none;
  }
  .site-footer .social-links.social-links--footer {
    width: auto;
    gap: 16px;
    padding: 8px 12px;
  }
  .site-footer .social-links.social-links--footer a {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
  .site-footer__lead {
    font-size: 16px;
  }
  .home-clients .swiper-slide img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 220px;
  }
  h1,
  h2 {
    font-size: 36px !important;
  }
  h3 {
    font-size: 43px !important;
  }
  .home-advantages__item-title {
    font-size: 14px !important;
  }
  .home-reviews__intro {
    margin-bottom: 24px;
  }
  .home-about__columns {
    gap: 20px;
  }
  .home-about__cta span {
    font-size: 16px;
  }
  .home-newsletter .post-media img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .home-newsletter h2.post-title {
    font-size: 1.37em !important;
  }
  .home-newsletter .entry-summary .more-link {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 0.889em;
  }
  .home-clients__intro p {
    font-size: 21px;
    font-weight: 300;
    line-height: 1.4em;
  }
}
@media (max-width: 575px) {
  .mobile-menu {
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    height: calc(100dvh - var(--header-height));
    border-left: none;
  }
}
@media (max-width: 820px) {
  :root {
    --header-height: 66px;
  }
  .container {
    width: min(1280px, 100% - 28px);
  }
  .main-navigation {
    display: none;
  }
  .social-links {
    gap: 8px;
  }
  .hero-content {
    padding: 0 14px;
  }
  .hero-plaque {
    margin-top: clamp(32px, 8vh, 80px);
    gap: 12px;
    padding: 14px 18px 14px 12px;
  }
  .hero-plaque__logo {
    width: 56px;
    height: 56px;
  }
  .hero-plaque__title {
    font-size: 20px;
  }
  .hero-plaque__tagline {
    font-size: 22px;
  }
  .home-projects__container {
    grid-template-columns: 1fr;
    padding-left: 14px;
    padding-right: 14px;
  }
  .home-reviews {
    padding: 80px 0 60px;
  }
  .home-reviews__carousel {
    gap: 10px;
    padding: 0 14px;
  }
  .home-reviews__arrow {
    width: 28px;
    font-size: 32px;
  }
  .home-review-card__text {
    min-height: 180px;
    font-size: 16px;
  }
  .home-reviews__contact {
    font-size: 1.05em;
  }
  .home-about {
    padding: 30px 14px 64px;
  }
  .home-about__columns {
    grid-template-columns: 1fr;
  }
  .home-advantages__intro {
    margin-bottom: 48px;
  }
  .home-advantages__items {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .home-build {
    height: 320px;
    padding: 0 14px;
  }
  .home-build__content h2 {
    margin-bottom: 24px;
  }
  .home-newsletter {
    padding: 80px 14px 64px;
  }
  .home-newsletter__post {
    grid-template-columns: 1fr;
  }
  .posts_horizontal .post-media {
    width: 100%;
  }
  .home-clients {
    padding: 80px 14px 34px;
  }
  .home-clients__slide {
    flex-wrap: nowrap;
    justify-content: center;
    min-height: 130px;
    gap: 18px;
  }
}
.project-single {
  background: #000;
  color: #fff;
  min-height: 100vh;
  padding: calc(var(--header-height) + 0px) 24px 120px;
  text-align: center;
}

.project-single article {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  background: #000;
  padding-top: 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.project-single__header {
  margin: 0 auto 40px;
  text-align: center;
}

.project-single__brand {
  margin: 0 0 12px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.project-single__title {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

.project-single__slider-wrap {
  width: min(1120px, 100%);
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 52px 36px;
  box-sizing: border-box;
}

.project-swiper {
  border-radius: 2px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.project-swiper .swiper-wrapper {
  box-sizing: border-box;
}

.project-swiper .swiper-slide--image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  background: #000;
}

.project-swiper .swiper-slide--media {
  aspect-ratio: 1120/645;
  background: #080808;
}

.project-swiper .swiper-slide--image .project-swiper__link {
  display: block;
  max-width: 100%;
  line-height: 0;
}

.project-swiper .swiper-slide--image img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(645px, 100vw - 104px);
  -o-object-fit: contain;
     object-fit: contain;
}

.project-swiper__video-wrap {
  width: 100%;
  height: 100%;
}

.project-swiper__video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: #000;
}

.project-swiper__embed-wrap {
  position: relative;
  background: #000;
}
.project-swiper__embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.project-swiper__link {
  cursor: zoom-in;
}

.project-swiper .swiper-slide--media .project-swiper__link {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
}

.project-single__thumbs-wrap {
  width: min(1120px, 100%);
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 14px;
}

.project-thumbs-swiper {
  width: 100%;
}

.project-thumbs-swiper .swiper-slide {
  height: auto;
}

.project-thumb {
  width: 100%;
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.2s ease;
}
.project-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.project-thumbs-swiper .swiper-slide-thumb-active .project-thumb {
  opacity: 1;
}

.project-thumb--video {
  position: relative;
}

.project-thumb__video-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(145deg, #161616 0%, #090909 100%);
}

.project-thumb__video-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.72);
}

.project-thumb__video-fallback {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 25%, rgba(255, 120, 20, 0.26), transparent 45%), radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.12), transparent 42%), linear-gradient(135deg, #1f1f1f 0%, #0b0b0b 100%);
}

.project-thumb__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.project-thumb__video-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -50%);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff;
}

.project-thumb__video-label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 4px 8px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.64);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-swiper-prev,
.project-swiper-next {
  position: absolute;
  top: 42%;
  z-index: 4;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 98px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 0.2s ease;
}
.project-swiper-prev {
  left: 0;
}
.project-swiper-next {
  right: 0;
}
.project-swiper-prev:hover,
.project-swiper-next:hover {
  opacity: 0.75;
}
.project-swiper-prev:disabled,
.project-swiper-next:disabled {
  opacity: 0.3;
  cursor: default;
}

.project-swiper-pagination {
  position: absolute;
  left: 52px;
  right: 52px;
  bottom: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.project-swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.project-swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.15);
}

.project-single__actions {
  margin: 36px 0 0;
  width: 100%;
  text-align: center;
}

.project-hires-btn {
  display: inline-block;
  margin: 0;
  padding: 15px 30px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background-color: #000000;
  border-style: solid;
  border-width: 2px;
  border-color: #fff;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
  transition: all 0.3s;
}
.project-hires-btn:hover,
.project-hires-btn:focus-visible {
  background: #fff;
  color: #000;
}

.project-single__empty {
  margin: 40px auto;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.project-swiper.swiper-backface-hidden .swiper-slide--image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
.project-swiper.swiper-backface-hidden .swiper-slide--image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(645px, 100vw - 104px);
  -o-object-fit: contain;
     object-fit: contain;
  min-height: 0;
}

@media (max-width: 768px) {
  .project-single {
    min-height: unset;
  }
  .project-hires-btn {
    font-size: 14px;
    padding: 12px 18px;
  }
  .project-single__title {
    font-size: clamp(32px, 10vw, 60px);
  }
  .project-swiper .swiper-slide--image {
    min-height: 160px;
  }
  .project-swiper .swiper-slide--image img {
    max-height: min(56vw, 70vh);
  }
  .project-single__slider-wrap {
    padding: 0 0 32px;
  }
  .project-swiper-pagination {
    left: 36px;
    right: 36px;
  }
  .project-swiper-prev,
  .project-swiper-next {
    width: 28px;
    height: 28px;
    font-size: 32px;
  }
}

.news-single {
  background: #fff;
  color: #222;
  min-height: 100vh;
  padding: calc(var(--header-height) + 78px) 24px 80px;
}

body.single-project .site-footer,
body.single-led_suspension .site-footer {
  background: #000;
  padding: 60px 0 40px;
}
body.single-project .site-footer .site-footer__bg,
body.single-led_suspension .site-footer .site-footer__bg {
  background-color: #000;
  background-image: none;
}
body.single-project .site-footer .site-footer__overlay,
body.single-led_suspension .site-footer .site-footer__overlay {
  display: none;
}
body.single-project .site-footer .site-footer__top,
body.single-led_suspension .site-footer .site-footer__top {
  display: none;
}

body.single-news .site-footer {
  background: #fff;
  color: #7a7a7a;
  padding: 60px 0 40px;
}
body.single-news .site-footer .site-footer__bg,
body.single-news .site-footer .site-footer__overlay {
  display: none;
}
body.single-news .site-footer .site-footer__top {
  display: none;
}
body.single-news .site-footer .site-footer__col-title,
body.single-news .site-footer .site-footer__emails,
body.single-news .site-footer .site-footer__phones li,
body.single-news .site-footer .site-footer__languages-label,
body.single-news .site-footer .site-footer__languages,
body.single-news .site-footer .site-footer__address,
body.single-news .site-footer .site-footer__copy {
  color: #7a7a7a;
}
body.single-news .site-footer .site-footer__emails a,
body.single-news .site-footer .site-footer__phones li a {
  color: #7a7a7a;
}
body.single-news .site-footer .site-footer__form input,
body.single-news .site-footer .site-footer__form textarea {
  border: 1px solid transparent;
  background-color: #f5f5f5;
  color: #5b5b5b;
}

.news-single__article {
  max-width: 1040px;
  margin: 0 auto;
}

.news-single__header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 14px;
}

.news-single__title {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.news-single__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #fff;
  margin: 0 auto;
}
.news-single__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.news-single__media-block {
  border-bottom: 1px solid #000;
  padding: 35px 0;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.news-single__media-block--split .news-single__video-top {
  margin-bottom: 20px;
  background: #fff;
}

.news-single__video-top {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: #000;
  text-align: center;
}
.news-single__video-top .news-single__video {
  margin: 0 auto;
  max-width: 100%;
}

.news-single__gallery-video {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  vertical-align: top;
}

.news-single__thumbs-wrap {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 14px;
}

.news-gallery-thumbs-swiper {
  width: 100%;
  overflow: hidden;
  height: auto;
}
.news-gallery-thumbs-swiper .swiper-wrapper {
  height: auto;
  align-items: center;
}
.news-gallery-thumbs-swiper .swiper-slide {
  width: auto;
  height: auto;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news-gallery-thumbs-swiper .news-gallery__link {
  display: inline-block;
  max-width: 100%;
  line-height: 0;
  cursor: zoom-in;
  vertical-align: top;
}
.news-gallery-thumbs-swiper .news-gallery__link img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.news-gallery-thumbs-swiper--one .swiper-wrapper {
  display: block;
}
.news-gallery-thumbs-swiper--one .swiper-slide {
  width: 100% !important;
  margin-right: 0 !important;
}

.news-single__thumb-static,
.news-single__gallery-static {
  width: 100%;
  text-align: center;
}
.news-single__thumb-static .news-gallery__link,
.news-single__gallery-static .news-gallery__link {
  display: inline-block;
  max-width: 100%;
  line-height: 0;
  cursor: zoom-in;
}
.news-single__thumb-static img,
.news-single__gallery-static img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.news-single__media-block--split .news-gallery-prev--thumbs,
.news-single__media-block--split .news-gallery-next--thumbs {
  position: static;
  top: auto;
  transform: none;
  width: 40px;
  height: 40px;
  font-size: 34px;
  color: #000;
}
.news-single__media-block--split .news-gallery-pagination--thumbs {
  margin-top: 14px;
}

.news-single__media-frame {
  margin-bottom: 16px;
}

.news-single__hero {
  width: 100%;
}
.news-single__hero img {
  width: 100%;
  display: block;
  height: auto;
}

.news-single__gallery-wrap {
  margin: 0;
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  box-sizing: border-box;
}

.news-gallery-swiper {
  width: 100%;
  height: auto;
}
.news-gallery-swiper .swiper-wrapper {
  height: auto;
  align-items: center;
}
.news-gallery-swiper .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.news-gallery-swiper .news-gallery__link {
  display: inline-block;
  max-width: 100%;
  line-height: 0;
  cursor: zoom-in;
  vertical-align: top;
}
.news-gallery-swiper .news-gallery__link img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.news-gallery-prev,
.news-gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  width: 59px;
  height: 59px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 41px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}
.news-gallery-prev:disabled,
.news-gallery-next:disabled {
  opacity: 0.35;
}
.news-gallery-prev {
  left: 2px;
}

.news-gallery-next {
  right: 2px;
}

.news-gallery-pagination {
  margin-top: 12px;
  text-align: center;
}
.news-gallery-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: rgba(34, 34, 34, 0.35);
  opacity: 1;
}
.news-gallery-pagination .swiper-pagination-bullet-active {
  background: #111;
}

.news-single__content {
  margin-top: 24px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #7a7a7a;
  opacity: 0.9;
}
.news-single__content p {
  margin: 0 0 14px;
}

.news-single__nav {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #000;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px 32px;
}

.news-single__nav-link {
  display: block;
  color: #222;
  text-decoration: none;
  transition: color 0.2s ease;
}
.news-single__nav-link:hover, .news-single__nav-link:focus-visible {
  color: #555;
}
.news-single__nav-link--next {
  text-align: right;
  grid-column: 2;
}
.news-single__nav-link--prev:only-child {
  grid-column: 1;
}
.news-single__nav-link--next:only-child {
  grid-column: 2;
  margin-left: auto;
  max-width: 100%;
}

.news-single__nav-label {
  display: block;
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a7a7a;
}

.news-single__nav-title {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .news-single {
    padding: calc(var(--header-height) + 20px) 14px 48px;
  }
  .news-single__media-frame {
    padding: 16px 0;
  }
  .news-single__gallery-wrap,
  .news-single__thumbs-wrap {
    width: 100%;
    padding: 0;
  }
  .news-single__thumbs-wrap {
    grid-template-columns: 28px minmax(0, 1fr) 28px;
    gap: 10px;
  }
  .news-gallery-prev,
  .news-gallery-next,
  .news-gallery-prev--thumbs,
  .news-gallery-next--thumbs {
    font-size: 24px;
  }
  .news-single__content {
    font-size: 16px;
  }
  .news-single__nav {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
    align-items: start;
  }
  .news-single__nav-link--prev {
    text-align: left;
  }
  .news-single__nav-link--next {
    grid-column: 2;
    text-align: right;
  }
  .news-single__nav-link--next:only-child {
    margin-left: auto;
  }
  .news-single__nav-title {
    font-size: 16px;
  }
}

.home-newsletter.led-suspension-archive {
  padding-top: calc(var(--header-height) + 0px);
}
.home-newsletter.led-suspension-archive .posts_horizontal .post-media,
.home-newsletter.led-suspension-archive .post-media {
  width: 100%;
}
.led-suspension-archive__post {
  display: grid;
  grid-template-columns: 1fr;
  gap: 35px;
  align-items: center;
}
@media (min-width: 821px) {
  .home-newsletter.led-suspension-archive {
    padding-top: calc(var(--header-height) + 48px);
  }
  .led-suspension-archive__post {
    grid-template-columns: 1fr 1fr;
  }
}
.led-suspension-archive__intro {
  max-width: 820px;
  margin: -20px auto 50px;
  text-align: center;
}
.led-suspension-archive__intro p {
  margin: 0 0 14px;
  font-size: 16px;
  color: rgba(85, 85, 85, 1);
  line-height: 1.45;
  font-family: "Roboto Condensed", sans-serif;
}
.led-suspension-archive__intro p:last-child {
  margin-bottom: 0;
}
.led-suspension-archive {
  max-width: none;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}
.led-suspension-archive__header {
  display: none;
}
.led-suspension-archive__grid {
  display: none;
}
.led-suspension-card {
  margin: 0;
}
.led-suspension-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.led-suspension-card__media {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f2f2f2;
}
.led-suspension-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.led-suspension-archive__grid .led-suspension-card__media img {
  transition: transform 0.4s ease;
}
.led-suspension-archive__grid .led-suspension-card__link:hover .led-suspension-card__media img,
.led-suspension-archive__grid .led-suspension-card__link:focus-visible .led-suspension-card__media img {
  transform: scale(1.06);
}
.led-suspension-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ececec 0%, #d8d8d8 100%);
}
.led-suspension-card__title {
  margin: 14px 0 8px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  color: #111;
}
.led-suspension-card__excerpt {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.45;
  color: #444;
}
.led-suspension-archive__pagination {
  margin-top: 40px;
  text-align: center;
}
.led-suspension-archive__empty {
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  color: #666;
}
.site-main--led-suspension {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}
.led-suspension-videos {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-top: calc(var(--header-height) + 38px);
}
.led-suspension-video {
  padding: 37.31% 0 0;
  position: relative;
  background: #050505;
  overflow: hidden;
}
.led-suspension-video video,
.led-suspension-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  transform: scale(1.003);
  transition: opacity 0.45s ease;
}
.led-suspension-video video {
  -o-object-fit: cover;
     object-fit: cover;
}
.led-suspension-video.is-loading video,
.led-suspension-video.is-loading iframe {
  pointer-events: none;
}
.led-suspension-video--embed.is-loading {
  background: #fff;
}
.led-suspension-video.is-ready video,
.led-suspension-video.is-ready iframe {
  opacity: 1;
}
.led-suspension-video.is-ready .led-suspension-video__loader {
  opacity: 0;
  visibility: hidden;
}
.led-suspension-video__loader {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050505;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  pointer-events: none;
}
.led-suspension-video__loader::after {
  content: "";
  width: 44px;
  height: 44px;
  border: 3px solid rgba(255, 255, 255, 0.22);
  border-top-color: #fff;
  border-radius: 50%;
  animation: led-suspension-video-spin 0.75s linear infinite;
}
.led-suspension-video--embed .led-suspension-video__loader {
  background: #fff;
}
.led-suspension-video--embed .led-suspension-video__loader::after {
  border-color: rgba(0, 0, 0, 0.12);
  border-top-color: #111;
}
.led-suspension-video__skeleton-layout {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.79fr) minmax(0, 1fr);
  gap: 15px;
  background: #fff;
}
.led-suspension-video__skeleton-main,
.led-suspension-video__skeleton-bar,
.led-suspension-video__skeleton-spec,
.led-suspension-video__skeleton-gallery-main,
.led-suspension-video__skeleton-thumb {
  position: relative;
  overflow: hidden;
  background: #101010;
}
.led-suspension-video__skeleton-main::after,
.led-suspension-video__skeleton-bar::after,
.led-suspension-video__skeleton-spec::after,
.led-suspension-video__skeleton-gallery-main::after,
.led-suspension-video__skeleton-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.05) 48%, transparent 72%);
  background-size: 220% 100%;
  animation: led-suspension-video-skeleton-shimmer 1.6s ease-in-out infinite;
}
.led-suspension-video__skeleton-main {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.led-suspension-video__skeleton-sidebar {
  display: grid;
  grid-template-rows: 11% minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 8px;
  min-height: 0;
}
.led-suspension-video__skeleton-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.led-suspension-video__skeleton-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.led-suspension-video__skeleton-spec:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.led-suspension-video__skeleton-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  min-height: 0;
}
.led-suspension-video__skeleton-gallery-main {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.led-suspension-video__skeleton-gallery-thumbs {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  min-height: 0;
}
.led-suspension-video__skeleton-thumb:first-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
@media (max-width: 820px) {
  .led-suspension-video__skeleton-layout {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1.2fr) minmax(0, 1fr);
  }
  .led-suspension-video__skeleton-main {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .led-suspension-video__skeleton-sidebar {
    grid-template-rows: 18% minmax(0, 1fr) minmax(0, 1.1fr);
  }
}
@keyframes led-suspension-video-skeleton-shimmer {
  0% {
    background-position: 120% 0;
  }
  100% {
    background-position: -120% 0;
  }
}
@keyframes led-suspension-video-spin {
  to {
    transform: rotate(360deg);
  }
}
.led-suspension-single {
  width: 100%;
  max-width: 100%;
  padding: 0;
}
.led-suspension-single__container {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}
.led-suspension-single__body {
  padding: 24px 24px 80px;
}
.led-suspension-single__header {
  margin: 0 0 25px;
  text-align: center;
}
.led-suspension-single__title {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  color: #111;
}
.led-suspension-single__file {
  margin: 0 0 20px;
}
.led-suspension-single__file-link {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  text-decoration: underline;
}
.led-suspension-single__content {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: #222;
}
.led-suspension-single__content p {
  margin: 0 0 14px;
}
.led-suspension-single__nav {
  margin-top: 10px;
  padding-top: 24px;
  border-top: 1px solid #000;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px 32px;
}
.led-suspension-single__nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #222;
  text-decoration: none;
  transition: color 0.2s ease;
}
.led-suspension-single__nav-link:hover,
.led-suspension-single__nav-link:focus-visible {
  color: #555;
}
.led-suspension-single__nav-link--next {
  justify-content: flex-end;
  text-align: right;
  grid-column: 2;
}
.led-suspension-single__nav-link--prev:only-child {
  grid-column: 1;
}
.led-suspension-single__nav-link--next:only-child {
  grid-column: 2;
  margin-left: auto;
  max-width: 100%;
}
.led-suspension-single__nav-arrow {
  flex-shrink: 0;
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  color: #111;
}
.led-suspension-single__nav-title {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}

.led-suspension-single__carousel-wrap {
  padding: 0 0 80px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
}
.led-suspension-single__carousel-container {
  max-width: 1040px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.led-suspension-single__carousel-post {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  height: 100%;
}
.led-suspension-single__carousel-media {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
}
.led-suspension-single__carousel-media img {
  display: block;
  width: 100%;
  height: 234px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: filter 0.3s ease;
}
.led-suspension-single__carousel-media::before {
  content: "+";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  color: #fff;
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.led-suspension-single__carousel-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}
.led-suspension-single__carousel-media:hover img,
.led-suspension-single__carousel-media:focus-visible img {
  filter: brightness(0.72);
}
.led-suspension-single__carousel-media:hover::after,
.led-suspension-single__carousel-media:focus-visible::after {
  background: rgba(0, 0, 0, 0.28);
}
.led-suspension-single__carousel-media:hover::before,
.led-suspension-single__carousel-media:focus-visible::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.led-suspension-single__carousel-item-title {
  margin: 0;
  color: #222;
  font-family: "Poppins", sans-serif;
  font-size: 1.57em;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  word-wrap: break-word;
}
.led-suspension-single__carousel-item-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.led-suspension-single__carousel-item-title a:hover,
.led-suspension-single__carousel-item-title a:focus-visible {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.led-suspension-single__carousel-title {
  margin: 48px 0 28px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
  color: #111;
}

.led-suspension-single__carousel-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.led-suspension-single__carousel-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 0;
  background: #fff;
  color: #111;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.led-suspension-single__carousel-arrow:hover,
.led-suspension-single__carousel-arrow:focus-visible {
  background: #111;
  color: #fff;
}

.led-suspension-single__carousel-arrow:disabled,
.led-suspension-single__carousel-arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.led-suspension-single__carousel {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  padding-bottom: 8px;
}

.led-suspension-single__carousel:focus {
  outline: none;
}

.led-suspension-single__carousel:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.led-suspension-single__carousel .swiper-slide {
  height: auto;
  align-self: stretch;
}

.led-suspension-single__carousel-pagination {
  margin-top: 22px;
  text-align: center;
  line-height: 1;
}

.led-suspension-single__carousel-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 5px;
  background: #bdbdbd;
  opacity: 1;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.led-suspension-single__carousel-pagination .swiper-pagination-bullet-active {
  background: #111;
  transform: scale(1.15);
}

@media (min-width: 768px) and (max-width: 1024px) {
  .led-suspension-single__title {
    font-size: 42px;
  }
  .led-suspension-single__carousel-title {
    font-size: 32px;
  }
  .led-suspension-single__carousel-item-title {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .led-suspension-single__header {
    margin: 0;
  }
  .led-suspension-single__title {
    font-size: 36px;
  }
  .led-suspension-single__nav-title {
    font-size: 16px;
  }
  .led-suspension-single__carousel-media img {
    max-height: 230px;
  }
  .led-suspension-single__carousel-item-title {
    font-size: 20px !important;
  }
  .led-suspension-single__nav {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
    align-items: start;
  }
  .led-suspension-single__nav-link--prev {
    justify-content: flex-start;
    text-align: left;
  }
  .led-suspension-single__nav-link--next {
    grid-column: 2;
    justify-content: flex-end;
    text-align: right;
  }
  .led-suspension-single__nav-link--next:only-child {
    margin-left: auto;
    grid-column: 2;
  }
  .led-suspension-single__carousel-title {
    font-size: 26px !important;
  }
  .led-suspension-single__carousel-wrap {
    padding-left: 0;
    padding-right: 0;
  }
  .led-suspension-single__carousel-container {
    padding-left: 0;
    padding-right: 0;
  }
  .led-suspension-single__carousel-title,
  .led-suspension-single__carousel-pagination {
    padding-left: 15px;
    padding-right: 15px;
  }
  .led-suspension-single__carousel-controls {
    position: relative;
    gap: 0;
  }
  .led-suspension-single__carousel {
    width: 100%;
  }
  .led-suspension-single__carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.92);
  }
  .led-suspension-single__carousel-arrow--prev {
    left: 8px;
  }
  .led-suspension-single__carousel-arrow--next {
    right: 8px;
  }
  .led-suspension-single__carousel-item-title {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 600px) {
  .led-suspension-single__body {
    padding-left: 14px;
    padding-right: 14px;
  }
  .led-suspension-single__carousel-title {
    margin-top: 36px;
    margin-bottom: 22px;
  }

  .led-suspension-single__carousel-controls {
    gap: 8px;
  }

  .led-suspension-single__carousel-arrow {
    width: 34px;
    height: 34px;
    font-size: 22px;
  }
}

.cookie-policy-page {
  background: #fff;
  color: #2d2d2d;
  padding: 100px 0 80px;
}
.cookie-policy-page__title-bar {
  text-align: center;
  padding: 72px 20px 48px;
}
.cookie-policy-page__title-bar .page-title {
  margin: 0;
  font-family: "Poppins", Sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  color: #161616;
  letter-spacing: 0.02em;
}
.cookie-policy-page__article {
  display: block;
}
.cookie-policy-page .content-limiter {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.cookie-policy-page__content {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2d2d2d;
}
.cookie-policy-page__content p {
  margin: 0 0 18px;
}
.cookie-policy-page__content strong {
  font-weight: 700;
  color: #161616;
}
.cookie-policy-page__content ul {
  margin: 0 0 22px;
  padding-left: 22px;
}
.cookie-policy-page__content li {
  margin-bottom: 14px;
}
.cookie-policy-page__content a {
  color: #2d2d2d;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-policy-page__content a:hover,
.cookie-policy-page__content a:focus-visible {
  color: #000;
}

.top-message-container {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 1200;
  padding: 0;
  background-color: rgb(0, 0, 0);
  color: rgb(193, 193, 193);
  text-transform: none;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}
.top-message-container.bottom-screen {
  bottom: 0;
  padding-bottom: 0;
}
.top-message-container.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(110%);
  pointer-events: none;
}
.top-message-container:not(.is-hidden) {
  pointer-events: auto;
}
.top-message-container .top-message {
  margin: 0 auto;
  max-width: 1240px;
  width: 100%;
  min-height: 40px;
  padding: 8px 40px 6px;
  display: table;
  line-height: 26px;
  font-size: 11px;
  box-sizing: border-box;
  background: transparent;
  border: none;
  box-shadow: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.top-message-container .message {
  margin: 0;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  text-transform: none;
}
.top-message-container .message a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.top-message-container .message a:hover,
.top-message-container .message a:focus-visible {
  color: rgb(255, 255, 255);
}
.top-message-container .button {
  display: inline-block;
  height: 26px;
  line-height: 26px;
  text-transform: uppercase;
  text-align: center;
  font-size: 11px;
  font-weight: bold;
  white-space: nowrap;
  padding: 0 10px;
  margin-left: 10px;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 3px;
  cursor: pointer;
  background: transparent;
  color: rgb(255, 255, 255);
  vertical-align: middle;
  transition: border-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
  font-family: inherit;
}
.top-message-container .button span {
  display: inline;
  white-space: nowrap;
}
.top-message-container .button:hover,
.top-message-container .button:focus-visible {
  border-color: rgb(255, 255, 255);
  color: rgb(255, 255, 255);
  background: transparent;
}
@media (max-width: 767px) {
  .top-message-container .top-message {
    display: block;
    padding: 10px 16px 8px;
    line-height: 1.45;
  }
  .top-message-container .message {
    display: block;
    margin-bottom: 10px;
  }
  .top-message-container .button {
    display: block;
    width: 100%;
    margin-left: 0;
    height: auto;
    line-height: 26px;
    padding: 0 10px;
  }
  .top-message-container .button span {
    white-space: normal;
  }
}
  #works {
  scroll-margin-top: -185px;
  }
/*# sourceMappingURL=main.css.map */