h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
  margin: 0;
}

body {
  background: #f7f7f7;
}

/* main-button */

.main-button {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 24px;
  color: #2b2b2b;
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  background: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
  outline: 0;
  border-radius: 0 !important;
  cursor: pointer;
}

.hero-section-button.main-button {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: #fff;
  color: #2b2b2b;
  border-radius: 0 !important;
  border: none !important;
  cursor: pointer;
}

.main-button svg {
  min-width: 12px;
  width: 12px;
  height: 12px;
}

.main-button svg path {
  transition: all 0.3s ease;
}

.main-button:hover svg path {
  stroke: #fff;
}

.main-button:hover {
  background: #2b2b2b;
  color: #fff;
}

/* Footer */

.site-footer-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}

.site-footer {
  background: #2b2b2b;
  padding: 160px 0 64px 0;
}

.site-footer-header {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 58px;
}

.footer-title {
  color: #fff;
  font-family: "Test Newzald", sans-serif;
  font-size: 72px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.4px;
  max-width: 700px;
}

.footer-main-image {
  height: 122px;
  width: auto;
  object-fit: contain;
  margin-left: auto;
}

.site-footer-header-links-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 100px;
}

.footer-white-main-button.main-button {
  background: #fff;
  color: #2b2b2b;
  font-size: 16px;
  line-height: 140%;
  font-weight: 300;
  width: fit-content;
  border: 1px solid #fff;
  border-radius: 0 !important;
  cursor: pointer;
}

.footer-white-main-button.main-button:hover {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-white-main-button.main-button:hover svg path {
  stroke: #fff;
}

.footer-black-main-button.main-button {
  background: transparent;
  color: #fff;
  font-size: 16px;
  line-height: 140%;
  font-weight: 300;
  border: 1px solid rgba(255, 255, 255, 0.25);
  width: fit-content;
}

.footer-black-main-button.main-button:hover {
  color: #2b2b2b;
  background: #fff;
  border: 1px solid #fff;
}

.footer-black-main-button.main-button:hover svg path {
  stroke: #2b2b2b;
}

.footer-info {
  display: flex;
  gap: 180px;
  align-items: flex-start;
}

.footer-info-richtext .footer-wysiwyg p,
.footer-info-richtext .footer-wysiwyg a {
  color: #fff;
  font-family: "Public Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /*  */
  letter-spacing: -0.4px;
}

.footer-info-richtext .footer-wysiwyg a {
  position: relative;
}

.footer-info-richtext .footer-wysiwyg a {
  width: fit-content;
  text-decoration: none;
}

.footer-info-richtext .footer-wysiwyg a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: all 0.2s ease;
}

.footer-info-richtext .footer-wysiwyg a:hover::after {
  width: 100%;
}

.footer-menu {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 48px;
  row-gap: 3px;
  padding: 0;
}

.footer-menu__link {
  color: #fff !important;
  font-family: "Public Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /*  */
  letter-spacing: -0.4px;
  text-decoration: none;
  position: relative;
  width: fit-content;
}

.footer-menu__link {
  position: relative;
}

.footer-menu__link::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: all 0.2s ease;
}

.footer-menu__link:hover::after {
  width: 100%;
}

.footer-socials__link {
  text-decoration: none;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 5.5px;
  margin-top: 65px;
}

.footer-copyright__link,
.footer-copyright__text {
  color: #fff !important;
  font-family: "Public Sans", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.4px;
  transition: all 0.2s ease;
}

.footer-copyright__link::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: all 0.2s ease;
}

.footer-copyright__link:hover::after {
  width: 100%;
}

.footer-copyright {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 100px;
  list-style: none;
  padding: 0;
}

body.home {
  margin-bottom: 0;
}

.footer-socials__item img,
.footer-socials__item {
  height: 32px;
  width: 32px;
  transition: all 0.2s ease;
}

.footer-socials__item:hover img {
  transform: translateY(-5px);
}

/* Header */
.hb-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

html {
  margin-top: 0 !important;
}
.header-open {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  background: initial;
  border: none;
  transition: all 0.2s ease;
  height: 40px;
  width: 40px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.header-open-line {
  height: 1px;
  width: 40px;
  background: #2b2b2b;
}

.site-header-wrapper {
  background: transparent;
  position: relative;
  z-index: 10;
}

.site-header-wrapper-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

.site-header-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  background: #2b2b2b;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: opacity 0.2s ease;
}

.site-header-wrapper.active::after {
  opacity: 1;
}

.header-open.active {
  rotate: 90deg;
}

.header-dark-logo {
  position: absolute;
  left: 20px;
  top: 20px;
  opacity: 0;
  height: 71px;
  width: auto;
  aspect-ratio: 1/1;
  transition: all 0.2s ease;
}

.header-main-logo {
  height: 71px;
  width: auto;
  aspect-ratio: 1/1;
  transition: all 0.2s ease;
}

.site-header-wrapper.active .header-main-logo {
  opacity: 0;
}

.site-header-wrapper.active .header-dark-logo {
  opacity: 1;
}

.header-open.active .header-open-line {
  background: #fff;
}

.site-header-wrapper-main.on-dark .header-open-line {
  background: #fff;
}

.site-header-wrapper-main.on-dark .header-main-logo {
  filter: invert(1) brightness(200%);
}

.site-header {
  position: relative;
}

/* .header-burger-menu {
  opacity: 0;
  position: fixed;
  top: -100%;
  left: 0;
  width: 100vw;
  height: calc(100vh - 100px);
  background: #2b2b2b;
  transition: all 0.3s ease;
  z-index: 9;
  overflow-y: scroll;
}
.header-burger-menu.active {
  opacity: 1;
  top: 100px;
} */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-burger-menu {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100vw;
  height: calc(100vh - 100px);
  background: #2b2b2b;
  z-index: 9;
  overflow-y: auto;

  transform: translateY(-105%);
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;

  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 300ms ease-out;
}

.header-burger-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .header-burger-menu {
    transition: none;
  }
}

#wpadminbar {
  display: none !important;
}

.header-burger-menu-wrapper {
  padding: 40px 20px;
  max-width: 1440px;
  margin: 0 auto;
}

.hb-menu__list.dim .hb-menu__link:not(.is-current) {
  opacity: 0.25;
  transition: opacity 0.2s ease;
}

.hb-menu__list.dim .hb-menu__link {
  opacity: 0.25;
  transition: opacity 0.2s ease;
}
.hb-menu__list.dim .hb-menu__link.is-current {
  opacity: 1;
}

.hb-menu__link svg {
  opacity: 0;
}

.hb-menu__link svg {
  transition: all 0.2s ease;
}

.hb-menu__link:hover svg {
  opacity: 1;
}

.hb-menu__link {
  display: block;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff !important;
  font-family: "Test Newzald", sans-serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 400;
  line-height: 90%;
  text-decoration: none;
}

.hb-menu__list {
  display: flex;
  flex-direction: column;
}

.hb-menu__list .hb-menu__link:not(:first-child) {
  padding-top: 12px;
}

.hb-menu__list .hb-menu__link:not(:last-child) {
  padding-bottom: 12px;
}

.hb-info__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 335px;
}

.hb-info__item {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.hb-info__link {
  color: #fff !important;
  font-family: "Test Newzald", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 124%;
  letter-spacing: -0.4px;
  text-decoration: none;
}

.hb-info {
  margin-top: 24px;
  margin-bottom: 24px;
}

.header-work-button {
  border: 1px solid #fff;
  width: fit-content;
}

.header-work-button:hover {
  background: transparent;
  color: #fff;
}

.hb-grid {
  display: grid;
  grid-template-columns: 0.83fr 1fr;
  gap: 140px;
}

.hb-media {
  position: relative;
  aspect-ratio: 572/734;
  overflow: hidden;
  max-width: 500px;
}
.hb-media__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

.hb-media__img.is-active {
  opacity: 1;
  visibility: visible;
}

.hb-menu__list,
.hb-info__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hb-cta {
  display: inline-flex;
  margin-top: 24px;
}

.hb-media__imgage-mobile {
  display: none;
}

/* Loader */
html.pl-lock,
body.pl-lock {
  overflow: hidden;
}

.pl-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #2f2f2f;
  display: grid;
  place-items: center;
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
  transition: transform 1s ease;
  will-change: transform;
}

.pl-overlay.is-done {
  transform: translateY(-100%);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .pl-overlay {
    transition: none;
  }
}

.pl-center {
  text-align: center;
  color: #e5e5e5;
}

.pl-logo-wrap {
  position: relative;
  width: 310px;
  height: 310px;
  margin: 0 auto 45px;
}

.pl-logo {
  width: 280px;
  height: 280px;
  object-fit: contain;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.pl-ring {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 310px;
  height: 310px;
}

.pl-ring__bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 2;
}

.pl-ring__fg {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 339.292;
  stroke-dashoffset: 339.292;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  animation: pl-stroke var(--pl-dur, 3000ms) linear forwards;
}

.pl-text {
  color: #fff;
  font-family: "Test Newzald", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 90%;
}

@keyframes pl-stroke {
  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 992px) {
  .site-footer-header-links-wrapper {
    gap: 16px;
  }
  .hb-info__item {
    padding-bottom: 8px;
  }
  .hb-info__list {
    gap: 8px;
  }
  .pl-text {
    font-size: 18px;
    padding: 0 24px;
  }

  .pl-logo-wrap {
    width: 200px;
    height: 200px;
    margin: 0 auto 40px;
  }

  .pl-logo {
    width: 180px;
    height: 180px;
  }

  .pl-ring {
    width: 200px;
    height: 200px;
  }
}

/* black-section styles */
.black-section-image-wrapper {
  display: flex;
  height: 100vh;
}
.black-section-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.black-section {
  max-width: 100%;
}

.black-section-content {
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background: #2b2b2b;
  gap: 20px;
  height: 100vh;
}

.black-subtitle {
  color: #fff;
  font-family: "Public Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: -0.4px;
  display: block;
  margin-bottom: -16px;
}

.black-section-content.black-section-content-v1 {
  justify-content: initial;
  gap: 24px;
}

.black-section-content.black-section-content-v1 .black-right-text {
  opacity: 0.8;
  font-size: 16px;
}

.black-section-content.black-section-content-v1 .black-title {
  max-width: 570px;
}

.main-button.black-section-button {
  background: transparent;
  color: #fff;
  width: fit-content;
}

.main-button.black-section-button:hover svg path {
  stroke: #2b2b2b;
}

.main-button.black-section-button {
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.main-button.black-section-button:hover {
  color: #2b2b2b;
  background: #fff;
}

.black-title {
  color: #fff;
  font-family: "Test Newzald", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 115%;
  letter-spacing: -0.4px;
}

.black-right-text {
  color: #fff;
  font-family: "Public Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: -0.4px;
}

.black-right-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.black-section-content-bottom {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 550px;
  margin-right: auto;
}

.black-section-image {
  object-fit: cover;
  height: auto;
  width: 100%;
  aspect-ratio: 710 / 960;
}

@media (max-width: 992px) {
  .black-right-text {
    gap: 16px;
  }

  .black-subtitle {
    font-size: 16px;
  }
  .black-section-content.black-section-content-v1 {
    gap: 16px;
    padding-bottom: 56px;
  }
  .black-section-image-wrapper {
    display: flex;
    height: initial;
  }
  .black-section-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .black-title {
    font-size: 28px;
    line-height: 115%;
  }

  .black-section-content {
    gap: 64px;
    height: initial;
    padding: 80px 24px 48px 24px;
  }

  .black-section-image {
    aspect-ratio: 430 / 304;
  }

  .black-right-text {
    font-size: 16px;
    line-height: 135%;
  }
}

/* grid-section styles */

.grid-section {
  position: relative;
  overflow: visible;
  padding-top: 200px;
}

.grid-image-bg {
  position: sticky;
  top: 100px;
  height: 410px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-left: auto;
  z-index: 0;
  pointer-events: none;
}

.grid-section-wrapper {
  overflow: hidden;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  margin-top: -410px;
}

.grid-section-item-3 {
  max-width: 1150px;
  margin: 0 auto;
}

.grid-section-icon {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.grid-section-image-wrapper {
  display: flex;
  position: relative;
}

.grid-section-text {
  margin-top: 16px;
  color: #2b2b2b;
  font-family: "Test Newzald", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.4px;
  text-decoration: none;
}

.grid-section-icon {
  padding: 0;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2b2b2b;
  transition: all 0.3s ease;
}

.grid-section-icon svg {
  min-width: 16px;
  width: 16px;
  height: 16px;
}

.grid-section-item-1 .grid-section-image-wrapper {
  max-width: 572px;
}

.grid-section-item-2 {
  margin-top: auto;
  margin-bottom: -195px;
}

.grid-section-item-1 img {
  object-fit: contain;
  aspect-ratio: 572 / 800;
  height: auto;
  width: 100%;
  max-width: 572px;
}

.grid-section-item-1 .grid-section-link {
  display: block;
  width: fit-content;
}

.grid-section-item-2 img {
  object-fit: contain;
  aspect-ratio: 690 / 560;
  height: auto;
  width: auto;
}

.grid-section-item-3 img {
  object-fit: cover;
  aspect-ratio: 1150 / 720;
  height: auto;
  width: 100%;
}

.grid-section-wrapper-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 320px;
}

.grid-section-link {
  text-decoration: none;
}
.grid-section-link img {
  transition: all 0.3s ease;
}
.grid-section-link:hover .grid-section-icon {
  background: transparent;
}
.grid-section-link:hover img {
  scale: 1.05;
}

.grid-section-link:hover .grid-section-image-wrapper::after {
  width: 100%;
  height: 100%;
}

/* .grid-section-link:hover .grid-section-icon svg path {
  stroke: #2b2b2b;
} */

.grid-section-item .grid-section-image-wrapper {
  overflow: hidden;
  position: relative;
}

.grid-section-item .grid-section-image-wrapper::after {
  content: "";
  background: rgba(43, 43, 43, 0.5);
  height: 0;
  width: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: width 700ms cubic-bezier(0.16, 1, 0.3, 1),
    height 700ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: width, height;
}

.grid-section-item .grid-section-image-wrapper img {
  transition: all 0.3s ease;
}

.duo-section {
  position: relative;
}

@media (max-width: 992px) {
  .grid-section {
    padding-top: 80px;
  }
  .grid-section-wrapper {
    margin-top: 0;
  }
  .grid-section-wrapper-top {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
    margin-bottom: 88px;
  }

  .grid-section-item-2 {
    margin-bottom: 0;
  }

  .grid-image-bg {
    display: none;
  }

  .quote-right-name {
    margin-right: auto;
    margin-left: 0 !important;
  }

  .quote-right-content {
    margin-right: auto;
  }
}

/* hero-section styles */

.hero-section-title , .careers-hero-sec-title{
  max-width: 830px;
  color: #2b2b2b;
  font-family: "Test Newzald", sans-serif;
  font-size: 72px;
  font-style: normal;
  font-weight: 400;
  line-height: 90%;
  padding: 80px 0;
  margin: 0 0 0 auto;
}

.hero-section.hero-section-no-home {
    transform: translateY(0) !important;
}

.hero-section-image-wrapper video {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-width: 100%;
  transition: all 1s ease;
}

.careers-hero-sec-image-wrapper{
  overflow: hidden;
}

.careers-hero-sec-image-wrapper video{
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-width: 100%;
}

.hero-section-wrapper .main-container , .careers-hero-sec-wrapper .main-container{
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-section {
  transform: translateY(40px);
  transition: transform 0.6s ease;
  will-change: transform;
  margin-top: -116px;
  padding-top: 116px;
}

.careers-hero-sec {
    margin-top: -116px;
  padding-top: 116px;
}

.has-seen-preloader .hero-section {
transform: translateY(0);
}
.hero-reveal .hero-section {
  transform: translateY(0);
}

.hero-section-title {
  position: relative;
  z-index: 1;
}
.hero-section-image-wrapper {
  position: relative;
  z-index: 2;
  transition: transform 1s ease, height 1s ease; /* + height */
  will-change: transform, height;
  overflow: hidden;
}

.hero-video-top .hero-section-image-wrapper {
  transform: translateY(calc(-1 * var(--hero-video-shift, 0px)));
}

@media (prefers-reduced-motion: reduce) {
  .hero-section,
  .hero-section-image-wrapper {
    transition: none;
  }
}

@media (max-width: 992px) {
  .hero-section {
    margin-top: -93px;
    padding-top: 93px;
  }
  .header-dark-logo,
  .header-main-logo {
    height: 48px;
  }
  .hero-section-wrapper .main-container , .careers-hero-sec-wrapper .main-container{
    padding: 0 24px;
  }
  .hero-section-button.main-button span {
    display: none;
  }

  .hero-section-title , .careers-hero-sec-title{
    padding: 80px 0 48px 0;
    font-size: 48px;
    line-height: 100%;
  }

  .hero-section-image-wrapper video {
    aspect-ratio: 430 / 264;
  }

  .careers-hero-sec-image-wrapper video {
    aspect-ratio: 430 / 264;
  }

  .hero-section-button.main-button {
    padding: 19px;
    right: 0;
    bottom: 0;
  }
}

@media (max-width: 768px) {
  .hero-video-top .hero-section-image-wrapper {
    height: 600px;
  }
  .hero-video-top .hero-section-image-wrapper video {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}

/* hero-slider styles */

.swiper-slide--ghost {
  display: block;
}

.hero-slider-item--ghost {
  background: transparent;
  min-height: 1px;
  visibility: hidden;
}

.hero-slider-header {
  padding: 0 20px 60px 20px;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}

.hero-slider-wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

.hero-slider-wrapper .hero-slider-swiper {
  padding: 0 20px;
}

.hero-slider-header-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 850px;
}

.hero-slider-text {
  color: #717171;
  font-family: "Public Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%;
  letter-spacing: -0.4px;
}

.hero-slider-title {
  color: #2b2b2b;
  font-family: "Test Newzald", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 124%;
  letter-spacing: -0.4px;
}

.hero-slider-item {
  display: flex;
  overflow: hidden;
  position: relative;
}

.hero-slider-item::after {
  content: "";
  background: rgba(43, 43, 43, 0.5);
  height: 0;
  width: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  background: rgba(43, 43, 43, 0.5);
  height: 0;
  width: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: width 700ms cubic-bezier(0.16, 1, 0.3, 1),
    height 700ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: width, height;
}

.hero-slider-item img {
  transition: all 0.3s ease;
}

.hero-slider-icon {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2b2b2b;
  transition: all 0.3s ease;
  z-index: 2;
}

.hero-slider-icon svg {
  min-width: 16px;
  width: 16px;
  height: 16px;
}

.hero-slider-swiper .swiper-slide img {
  aspect-ratio: 453 / 630;
  height: auto;
  width: 100%;
  object-fit: cover;
}

.slide-text {
  color: #2b2b2b;
  font-family: "Test Newzald", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.4px;
  margin-top: 16px;
}

.hero-slider {
  padding: 160px 0;
}

.hero-slider-top-none {
  padding-top: 0 !important;
}

.slider-section-button {
  border: 1px solid rgba(113, 113, 113, 0.25);
  background: transparent;
}

.hero-slider-swiper .swiper-slide:hover .hero-slider-icon {
  background: transparent;
}

.hero-slider-swiper .swiper-slide:hover img {
  scale: 1.05;
}

.hero-slider-swiper .swiper-slide:hover .hero-slider-item::after {
  width: 100%;
  height: 100%;
}

@media (max-width: 992px) {
  .swiper-slide--ghost {
    display: none !important;
  }

  .hero-slider-swiper {
    width: calc(100% - 24px);
    padding: 0;
    margin-left: auto;
    margin-right: 0;
    padding: 0;
  }

  .hero-slider-wrapper .hero-slider-swiper {
    padding: 0;
    margin-left: auto;
    margin-right: 0;
  }

  .hero-slider-header {
    padding: 0 24px 48px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 48px;
    align-items: flex-start !important;
  }

  .hero-slider-text {
    font-size: 16px;
  }

  .hero-slider {
    padding: 80px 0;
  }

  .hero-slider-title {
    font-size: 28px;
  }

  .slide-text {
    font-size: 20px;
    line-height: 110%;
  }
}

/* instafeed styles */
.instafeed {
  padding-bottom: 20px;
}

.sb_instagram_header,
#sbi_load {
  display: none !important;
}

/* instafed slider */

.instafeed-text {
  color: #2b2b2b;
  text-align: right;
  font-family: "Public Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%;
  letter-spacing: -0.4px;
}

.instafeed-header {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 0 20px 32px 20px;
  justify-content: space-between;
}

.instafeed-text a {
  text-decoration: none;
  color: #717171;
}

.instafeed-title {
  color: #2b2b2b;
  font-family: "Test Newzald", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.4px;
}

.instafeed-swiper .swiper-slide img {
  aspect-ratio: 335 / 418;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.instafeed-swiper .swiper-slide {
  display: flex;
}

@media (max-width: 992px) {
  .instafeed-header {
    padding-right: 24px;
    padding-left: 24px;
    padding-bottom: 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .instafeed-title {
    font-size: 28px;
  }

  .instafeed-text {
    font-size: 16px;
    line-height: 175%;
  }

  .instafeed {
    padding-bottom: 32px;
  }
}

/* quote-right styles */

.quote-right {
  max-width: 1440px;
  margin: 0 auto;
  padding: 160px 20px;
  overflow: hidden;
}

.quote-right.quote-right-padding-top-none {
  padding-top: 0 !important;
}

.quote-right-wrapper {
  max-width: 1050px;
  margin-left: auto;
  display: flex;
  align-items: flex-end;
  gap: 100px;
  padding-bottom: 48px;
  border-bottom: 1px solid #717171;
}

.quote-right-name {
  color: #717171;
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%;
  letter-spacing: -0.4px;
  margin-left: auto;
}

.quote-right-title {
  color: #2b2b2b;
  font-family: "Test Newzald", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  max-width: 567px;
  letter-spacing: -0.4px;
}

.quote-right-text {
  color: #2b2b2b;
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  letter-spacing: -0.4px;
  opacity: 0.8;
}

.quote-right-medium-width .quote-right-text{
  max-width: 501px !important;
}

.quote-right-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 690px;
}

@media (max-width: 1200px) {
  .quote-right-wrapper {
    gap: 100px;
  }
}

@media (max-width: 992px) {
  .quote-right-title {
    font-size: 28px;
    line-height: 120%;
  }

  .quote-right {
    padding: 80px 20px;
  }

  .quote-right-wrapper {
    gap: 30px;
    flex-direction: column;
  }
}

/* quote styles */

.quote-subtitle {
  color: #717171;
  font-family: "Public Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%;
  letter-spacing: -0.4px;
  display: block;
  margin-bottom: 8px;
}

.quote-text {
  color: #2b2b2b;
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  letter-spacing: -0.4px;
  margin-top: 16px;
  display: block;
  max-width: 810px;
}

.quote-title {
  color: #2b2b2b;
  font-family: "Test Newzald", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 124%;
  letter-spacing: -0.4px;
  display: block;
  max-width: 810px;
}

.quote-large-title .quote-title{
  max-width: 840px !important;
}
.quote-button {
  margin-bottom: 1px;
  margin-top: 32px;
  margin-right: auto;
  border: 1px solid rgba(113, 113, 113, 0.25);
  width: fit-content;
  background: transparent;
}

.quote-section {
  padding-top: 160px;
  overflow: hidden;
  position: relative;
}

.quote-section.quote-section-top-none-spacing {
  padding-top: 0 !important;
}

.quote-section .team-modal {
  position: fixed !important;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
}


.quote-section.spacing {
  padding-bottom: 160px;
}

.quote-section.quote-medium-width .quote-text {
  max-width: 572px;
  margin-bottom: -8px;
}

.main-container {
  padding: 0 24px;
  max-width: 1440px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .quote-section.quote-medium-width .quote-text {
    margin-top: 24px;
  }
  .quote-section.spacing {
    padding-bottom: 80px;
  }

  .quote-subtitle {
    font-size: 16px;
  }
  .quote-text {
    margin-bottom: -8px;
  }
  .quote-section {
    padding-top: 80px;
  }

  .quote-title {
    font-size: 28px;
    line-height: 124%;
  }
}

/* studio-hero styles */

.studio-hero {
  overflow: hidden;
  padding-top: 85px;
}

.studio-hero-title {
  color: #2b2b2b;
  font-family: "Test Newzald", sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 90%;
  margin-bottom: 100px;
  max-width: 600px;
  letter-spacing: 0.4px;
}

.studio-hero-wrapper {
  padding: 0 20px;
  margin: 0 auto;
  max-width: 1440px;
}

.studio-hero-image {
  height: auto;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 572 / 800;
}

.studio-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-right: auto;
  margin-left: 0;
  width: 83%;
}

@media (max-width: 992px) {
  .studio-hero {
    padding-top: 80px;
  }

  .studio-hero-title {
    font-size: 42px;
    line-height: 100%;
    margin-bottom: 48px;
  }

  .studio-hero-wrapper {
    padding: 0 24px;
  }

  .studio-hero-image {
    aspect-ratio: 182 / 264;
  }

  .studio-hero-grid {
    margin-left: auto;
    width: 100%;
  }
}

/* insights-hero styles */
.insights-featured__title {
  color: #fff;
  font-family: "Test Newzald", sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 90%; /* 57.6px */
  display: block;
  max-width: 500px;
  margin: 80px 0;
}

.insights-featured__image img {
  aspect-ratio: 690 / 560;
}

.insights-featured__text {
  margin-bottom: 16px;
  color: #fff;
  font-family: "Test Newzald", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 35.2px */
  letter-spacing: -0.4px;
  max-width: 572px;
}

.insights-featured__excerpt {
  opacity: 0.8;
  color: #fff;
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.4px;
}

.insights-featured__btn.main-button {
  width: fit-content;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-top: 32px;
}

.insights-featured__btn.main-button:hover {
  background: #fff;
  color: #2b2b2b;
}

.insights-featured__btn.main-button:hover svg path {
  stroke: #2b2b2b;
}

.insights-featured__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.insights-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  overflow: hidden;
}

.insights-featured {
  padding: 118px 0 80px 0;
  margin-top: -118px;
  background: #2b2b2b;
}

.insights-featured__inner {
  max-width: 1440px;
  padding: 0 20px;
  margin: 0 auto;
}

.insights-article-button.insights-featured__btn {
  margin: 64px auto 0 auto;
  width: fit-content;
  background: #2b2b2b;
  color: #fff;
  border: 1px solid #2b2b2b;
}

.insights-article-button.insights-featured__btn:hover {
  background: transparent;
  color: #2b2b2b;
}

.insights-article-button.insights-featured__btn:hover svg path {
  stroke: #2b2b2b;
}

@media (max-width: 992px) {
  .insights-featured__title {
    font-size: 42px;
    line-height: 99%;
    margin-bottom: 32px;
  }

  .insights-featured-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .insights-featured__image img {
    aspect-ratio: 384 / 260;
  }

  .insights-featured__text {
    font-size: 24px;
    line-height: 124%;
    margin-bottom: 8px;
  }
  .insights-featured__btn.main-button {
    margin-top: 24px;
  }

  .insights-article-button.insights-featured__btn {
    margin-top: 32px;
  }

  .insights-featured {
    padding: 93px 0 80px 0;
    margin-top: -93px;
  }
}

/* insights-related-projects styles */

.insights-related-projects-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 63px;
  column-gap: 20px;
  max-width: 1440px;
  padding: 0 20px;
  margin: 0 auto;
}

.insights-related-projects {
  padding: 80px 0 160px 0;
}

.newsletter-signup {
  padding: 160px 0;
  background: #2b2b2b;
}

.newsletter-signup-title {
  color: #fff;
  text-align: center;
  font-family: "Test Newzald", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 124%; /* 39.68px */
  letter-spacing: -0.4px;
  display: block;
  margin: 0 auto 24px auto;
}

.newsletter-signup-text {
  color: #fff;
  text-align: center;
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.4px;
}

.newsletter-signup-btn.insights-featured__btn {
  margin-right: auto;
  margin-left: auto;
}

.newsletter-signup-wrapper {
  max-width: 770px;
  margin: 0 auto;
  padding: 0 40px;
}

.quote-medium-width .article-quote-right-title {
  max-width: 567px;
}

.insights-content-wrapper {
  max-width: 718px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.insights-content {
  padding: 80px 0 100px 0;
}

.insights-content.insights-content-top {
  padding-top: 0 !important;
}

.insights-content.insights-content-bottom {
  padding-bottom: 0 !important;
}

.insights-content__block p,
.insights-content__block a,
.insights-content__block li {
  color: rgba(43, 43, 43, 0.8);
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.4px;
  margin: 0;
}

.insights-content__block h2,
.insights-content__block h3,
.insights-content__block h4,
.insights-content__block h5,
.insights-content__block h6 {
  color: #2b2b2b;
  font-family: "Test Newzald", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.4px;
  display: block;
  margin: 0 0 8px 0;
}

.insights-media {
  padding: 80px 20px;
  max-width: 1440px;
  margin: 0 auto;
}
.insights-media.insights-media-padding-top {
  padding-top: 0 !important;
}

.insights-media.insights-media-padding-bottom {
  padding-bottom: 0 !important;
}

.insights-media-wrapper {
  width: 83%;
  aspect-ratio: 1170 / 720;
  margin: 0 auto;
}

.insights-article {
  padding-top: 16px;
}

.insights-article.insights-article-bottom-spacing {
  padding-bottom: 100px;
}

.insights-article-wrapper {
  max-width: 1440px;
  padding: 0 20px;
  margin: 0 auto;
}

.insights-article-content-wrapper {
  max-width: 670px;
  margin: 0 auto;
}

.insights-article-title {
  color: #2b2b2b;
  font-family: "Test Newzald", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.4px;
  display: block;
  margin-bottom: 16px;
  margin-top: 100px;
}

.insights-article-excerpt {
  color: #2b2b2b;
  font-family: "Public Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%; /* 24.3px */
  letter-spacing: -0.4px;
}

.insights-article-large-paragraph {
  color: #2b2b2b;
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  letter-spacing: -0.4px;
  opacity: 0.8;
  display: block;
  margin-top: 63px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.insights-article-large-paragraph a {
  color: #2b2b2b;
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  letter-spacing: -0.4px;
}

.insights-article-large-paragraph a:hover {
  text-decoration: none;
}

.insights-article-share-icons {
  display: flex;
  align-items: center;
  gap: 4px;
}

.insights-article-share-label {
  opacity: 0.8;
  color: #2b2b2b;
  text-align: center;
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.4px;
}

.share-btn {
  height: 24px;
  width: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.insights-article-share-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}

.insights-article-media-wrapper {
  display: flex;
  aspect-ratio: 1400 / 800;
}

.share-btn {
  position: relative;
}

.share-tip {
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translate(-50%, -6px);
  background: #2b2b2b;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  padding: 6px 8px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.share-tip.is-visible {
  opacity: 1;
  transform: translate(-50%, -10px);
}

@media (max-width: 992px) {
  .insights-article.insights-article-bottom-spacing {
    padding-bottom: 80px;
  }
  .insights-article {
    padding: 0;
  }
  .insights-related-projects,
  .newsletter-signup {
    padding: 80px 0;
  }

  .insights-media-wrapper {
    width: 100%;
  }

  .insights-media,
  .insights-article-wrapper {
    padding-right: 24px;
    padding-left: 24px;
  }

  .newsletter-signup-title {
    font-size: 28px;
    line-height: 124%;
    margin-bottom: 16px;
  }

  .insights-content {
    padding: 80px 0;
  }

  .insights-article-title {
    font-size: 28px;
    line-height: 110%;
    margin-top: 32px;
  }

  .insights-article-excerpt {
    line-height: 110%;
  }

  .insights-article-large-paragraph {
    margin-top: 120px;
  }

  .insights-article-media-wrapper {
    aspect-ratio: 384 / 350;
  }
}

/* black-slider styles */

.black-slider {
  overflow: hidden;
  background: #2b2b2b;
}

.article-black-slider.black-slider {
  background: transparent;
}

.black-slider-wrapper {
  max-width: 100%;
  margin: 0 auto;
  padding: 160px 0 160px 140px;
}

.black-slider-swiper .swiper-slide {
  width: auto;
  flex-shrink: 0;
}
.black-slide-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.black-slider-swiper .swiper-slide.slide--wide {
  width: 468px;
}
.black-slider-swiper .swiper-slide.slide--wide .black-slide-image {
  aspect-ratio: 468 / 385;
}

.black-slider-swiper .swiper-slide.slide--narrow {
  width: 256px;
}
.black-slider-swiper .swiper-slide.slide--narrow .black-slide-image {
  aspect-ratio: 256 / 385;
}

@media (max-width: 992px) {
  .black-slider-swiper .swiper-slide.slide--wide {
    width: 240px;
  }
  .black-slider-swiper .swiper-slide.slide--wide .black-slide-image {
    aspect-ratio: 1/1;
  }
  .black-slider-swiper .swiper-slide.slide--narrow .black-slide-image {
    aspect-ratio: 160 / 240;
  }
  .black-slider-swiper .swiper-slide.slide--narrow {
    width: 160px;
  }
}

.black-quote {
  padding-bottom: 160px;
  background: #2b2b2b;
  overflow: hidden;
}

.black-quote-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.black-quote-subtitle {
  color: #fff;
  font-family: "Public Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%;
  letter-spacing: -0.4px;
  display: block;
  margin-bottom: 8px;
}

.black-quote-title {
  color: #fff;
  font-family: "Test Newzald", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 124%;
  letter-spacing: -0.4px;
  max-width: 800px;
}

.black-quote-title.black-quote-large-title {
  max-width: 1000px !important;
}

.black-quote-text {
  color: #fff;
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  letter-spacing: -0.4px;
  display: block;
  margin-top: 16px;
  max-width: 690px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.black-quote-button {
  width: fit-content;
  margin-top: 32px;
}

.black-quote-button.main-button {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
}

.black-quote-button.main-button:hover {
  color: #2b2b2b;
  background: #fff;
}

.black-quote-button.main-button:hover path {
  stroke: #2b2b2b;
}

.black-quote-image-wrapper {
  width: 83%;
  margin-top: 160px;
  margin-left: 0;
  margin-right: auto;
  display: flex;
}

.black-quote-image {
  aspect-ratio: 1164 / 654;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 992px) {
  .black-quote-image-wrapper {
    width: calc(100% + 48px);
    margin-top: 64px;
    margin-left: -24px;
    margin-right: auto;
  }

  .black-quote-image {
    aspect-ratio: 430 / 304;
  }
  .black-slider-wrapper {
    padding: 80px 0 64px 24px;
  }

  .black-slider-swiper .swiper-slide img {
    aspect-ratio: 1/1;
  }

  .black-quote {
    padding-bottom: 0;
    background: #2b2b2b;
  }

  .black-quote-wrapper {
    padding: 0 24px;
  }

  .black-quote-subtitle {
    font-size: 16px;
  }

  .black-quote-title {
    font-size: 28px;
  }

  .black-quote-button {
    margin-top: 24px;
  }
}

/* our-team styles */

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 40px;
}
.team-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.team-card:hover .team-card__open {
  background: #fff;
}

.team-card__image-grid-item img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 335 / 461;
}

.team-card__image-grid-item {
  display: flex;
  position: relative;
  overflow: hidden;
}

.team-card__image-grid-item::after {
  content: "";
  background: rgba(43, 43, 43, 0.5);
  height: 0;
  width: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  background: rgba(43, 43, 43, 0.5);
  height: 0;
  width: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: width 700ms cubic-bezier(0.16, 1, 0.3, 1),
    height 700ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: width, height;
}

.team-card:hover .team-card__image-grid-item::after {
  width: 100%;
  height: 100%;
}
.team-card__image-grid-item img {
  transition: all 0.3s ease;
}
.team-card:hover .team-card__image-grid-item img {
  scale: 1.05;
}

.team-card__open {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0;
  height: 48px;
  width: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2b2b2b;
  transition: all 0.3s ease;
  z-index: 2;
}

.team-card:hover .team-card__open {
  background: transparent;
}

.team-card__meta {
  display: block;
  padding-top: 16px;
}
.team-card__name {
  display: block;
  color: #2b2b2b;
  font-family: "Test Newzald", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.4px;
}
.team-card__job {
  display: block;
  color: #717171;
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.4px;
}

.team-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  top: 0;
  width: 100vw;
  height: 100dvh;
  overscroll-behavior: contain;
  right: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.team-modal.is-open {
  visibility: visible;
  pointer-events: all;
}

.team-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  transition: all 0.2s ease;
  opacity: 0;
}

.team-modal.is-open .team-modal__overlay {
  opacity: 1;
}

.team-modal__dialog {
  position: absolute;
  inset: 0;
  margin-left: auto;
  width: min(600px, 100%);
  background: #2b2b2b;
  color: #fff;
  padding: 64px 20px 64px 64px;
  display: flex;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  height: 100%;
  transform: translateX(100%);
  transition: transform .6s ease, opacity .6s ease;
  opacity: 0;

}

.team-modal.is-open .team-modal__dialog {
  transform: translateX(0);
  opacity: 1;
}

.team-modal__title {
  color: #fff;
  font-family: "Test Newzald", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 124%;
  letter-spacing: -0.4px;
  display: block;
  margin-bottom: 4px;
}

.team-modal__subtitle {
  color: #717171;
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%;
  letter-spacing: -0.4px;
  display: block;
  margin-bottom: 16px;
}

.team-modal__text {
  margin-top: 17px;
}

.team-modal__content {
  color: #fff;
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  letter-spacing: -0.4px;
  max-width: 432px;
}

.team-modal__content p,
.team-modal__content span,
.team-modal__content li {
  color: #fff !important;
  font-family: "Public Sans", sans-serif !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 300 !important;
  line-height: 140% !important;
  letter-spacing: -0.4px !important;
}

.team-modal__mount {
  margin-top: auto;
  margin-bottom: 0;
  height: fit-content;
}

.team-modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  rotate: 90deg;
  transition-duration: 0.3s;
}

.team-modal.is-open .team-modal__close {
  rotate: 0deg;
}

.team-modal__media img {
  aspect-ratio: 335 / 460;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-width: 335px;
  margin-right: auto;
}
html.is-locked {
  overflow: hidden;
}

.team-modal__close-line {
  height: 40px;
  width: 1px;
  background: #fff;
}

.team-modal__close-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 40px;
  width: 40px;
}
.team-section-subtitle {
  color: #717171;
  font-family: "Public Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%;
  letter-spacing: -0.4px;
  display: block;
  margin-bottom: 8px;
}

.team-section-title {
  color: #2b2b2b;
  font-family: "Test Newzald", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 124%;
  letter-spacing: -0.4px;
}

.team-section-header {
  display: flex;
  align-items: flex-end;
  gap: 75px;
  margin-bottom: 60px;
}

.team-section-button.main-button {
  border: 1px solid rgba(113, 113, 113, 0.25);
  color: #2b2b2b;
  background: transparent;
  white-space: nowrap;
  border-radius: 0 !important;
  cursor: pointer;
  transition: all 0.3s ease !important;
}

.team-section-button.main-button:hover {
  color: #fff;
  background: #2b2b2b;
}

.team-section-button.main-button:hover svg path {
  stroke: #fff;
}

.team-section-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.team-section {
  padding: 160px 0 120px 0;
  overflow: hidden;
}

.team-modal__media {
  display: flex;
}

.team-modal__link.main-button {
  width: fit-content;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-top: 32px;
}

.team-modal__link.main-button:hover {
  color: #2b2b2b;
  background: #fff;
}

.team-modal__link.main-button:hover svg path {
  stroke: #2b2b2b;
}

@media (max-width: 992px) {
  .team-modal__text {
    margin-top: 29px;
  }

  .team-section {
    padding: 80px 0;
  }
  .team-section-wrapper {
    padding: 0 24px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-modal__content,
  .team-modal__content p,
  .team-modal__content span {
    font-size: 14px !important;
  }

  .team-modal__title {
    font-size: 32px;
    line-height: 124%;
  }

  .team-card__job {
    line-height: 125%;
    margin-top: 8px;
  }

  .team-section-header {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .team-section-title {
    line-height: 124%;
    font-size: 28px;
  }

  .team-section-subtitle {
    font-size: 16px;
  }

  .team-modal__dialog {
    padding: 40px 24px 32px 24px;
  }

  .team-modal__media img {
    max-width: 180px;
  }
}

/* services-slider styles */

.services-slider {
  position: relative;
}
.services-slider-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  overflow: visible;
}
.services-slider-grid {
  position: relative;
  overflow: visible;
}

.services-stack {
  --stick-top: 120px;
  --overlap: 160px;
  position: relative;
  overflow: visible;
  padding-bottom: 0;
}

.service-card {
  position: sticky;
  top: var(--stick-top);
  z-index: var(--z, 1);
  background: transparent;
}

.service-card:not(:first-child) {
  margin-top: calc(-1 * var(--overlap));
  padding-top: var(--overlap);
  top: -40px;
}

.service-card__grid {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 24px;
  align-items: start;
  width: 100%;
  overflow: visible;
}

.service-card__content {
  position: relative;
  background: #f7f7f7;
}

.ssc-title {
  margin: 0 0 5px;
  color: #2b2b2b;
  font-family: "Test Newzald", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.4px;
}
.ssc-text {
  color: #717171;
  font-family: "Public Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: -0.4px;
}
.ssc-btn.main-button {
  color: #2b2b2b;
  border: 1px solid rgba(113, 113, 113, 0.25);
  background: transparent;
  margin-top: 24px;
  width: fit-content;
}
.ssc-btn.main-button:hover {
  color: #fff;
  background: #2b2b2b;
}
.ssc-btn.main-button:hover svg path {
  stroke: #fff;
}

.service-card__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1024 / 650;
  border: 0;
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-slider,
.services-slider-wrapper,
.services-slider-grid,
.services-stack {
  overflow: visible;
}

@media (max-width: 1000px) {
  .services-slider-wrapper {
    padding: 0;
  }
  .services-stack {
    --stick-top: 80px;
    --overlap: 96px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 80px;
  }

  .service-card {
    top: var(--stick-top);
  }

  .service-card__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .service-card__media {
    order: -1;
    aspect-ratio: 430 / 260;
  }

  .ssc-title {
    font-size: 28px;
    margin-bottom: 8px;
  }
  .ssc-text {
    font-size: 16px;
  }

  .service-card__content {
    padding: 40px 24px 0 24px;
  }

  .service-card:not(:first-child) {
    top: -16px;
  }
}

/* .services-slider-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.services-slider {
  position: relative;
}
.services-slider-wrapper {
  position: relative;
}
.services-slider-grid {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 0;
}

.services-slider-content-col {
  position: relative;
  padding: 24px 0;
  min-height: 260px;
}
.services-content-card {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s, transform 0.35s;
  pointer-events: none;
  will-change: opacity, transform;
}
.services-content-card.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.ssc-title {
  margin: 0 0 5px;
  color: #2b2b2b;
  font-family: "Test Newzald", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.4px;
}
.ssc-text {
  color: #717171;

  font-family: "Public Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: -0.4px;
}

.ssc-btn.main-button {
  color: #2b2b2b;
  border: 1px solid rgba(113, 113, 113, 0.25);
  background: transparent;
  margin-top: 24px;
  width: fit-content;
}

.ssc-btn.main-button:hover {
  color: #fff;
  background: #2b2b2b;
}

.ssc-btn.main-button:hover svg path {
  stroke: #fff;
}

.services-image-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1024 / 650;
  overflow: hidden;
}
.services-slider-image-track {
  position: absolute;
  inset: 0;
}
.services-image {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.services-image.is-active {
  opacity: 1;
}
.services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.services-slider-image-track .services-image {
  transition: all .6s ease;
}
.services-slider-image-track .services-image{
  transform: translateY(10%) !important; 
  opacity: 0 !important;
}
.services-slider-image-track .services-image.is-active{
  transform: translateY(0) !important; 
  opacity: 1 !important;
}

@media (max-width: 1000px) {
  .services-slider-image-track .services-image{
    position: absolute !important;
  }
  .services-slider-image-col{
    order: -1;
  }
  .ssc-title {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .ssc-text {
    font-size: 16px;
  }

  .services-slider-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 80px;
  }

  .services-slider-content-col {
    position: relative;
    padding: 16px 0;
    background: transparent;
    z-index: 2;
    min-height: initial;
  }
  .services-content-card {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.28s ease, transform 0.28s ease;
    pointer-events: none;
  }
  .services-content-card.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .services-image-stage {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    aspect-ratio: auto;
    aspect-ratio: 430 / 260;
  }

  .services-slider-image-track {
    position: absolute;
    inset: 0;
    display: block;
    will-change: transform;
    transform: translate3d(0, 0, 0);
  }

  .services-image {
    position: relative !important;
    flex: 0 0 100%;
    height: 100%;
    margin: 0;
    opacity: 1 !important;
    transition: none;
  }
  .services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .services-slider {
    overscroll-behavior: contain;
    touch-action: pan-y;
  }
} */

/* blog-grid styles */
.section-posts-grid {
  padding-bottom: 160px;
}

.section-posts-grid .section-posts-grid-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 63px;
  column-gap: 20px;
  max-width: 1440px;
  padding: 0 20px;
  margin: 0 auto;
}

.section-posts-grid .section-posts-grid-items .blog-grid-item:nth-child(5) {
  grid-column: span 2;
}

.section-posts-grid-items .blog-grid-item:nth-child(5) img {
  aspect-ratio: 926 / 640;
}

.section-posts-grid .section-posts-grid-items .blog-grid-item:nth-child(9) {
  grid-column: span 2;
}

.section-posts-grid-items .blog-grid-item:nth-child(9) img {
  aspect-ratio: 926 / 640;
}

.section-posts-grid .section-posts-grid-items .blog-grid-item:nth-child(15) {
  grid-column: span 2;
}

.section-posts-grid-items .blog-grid-item:nth-child(15) img {
  aspect-ratio: 926 / 640;
}

.section-posts-grid-items .grid-section-image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 453 / 640;
}

.blog-grid-section-excerpt {
  opacity: 0.8;
  color: #2b2b2b;
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.4px;
  display: block;
  margin-top: 8px;
}

.section-posts-grid-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.insights-posts-grid-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 63px;
  column-gap: 20px;
  max-width: 1440px;
  padding: 0 20px;
  margin: 0 auto;
}

.insights-posts-grid-items .grid-section-image-wrapper {
  aspect-ratio: 453 / 343;
}

.insights-posts-grid-items .grid-section-image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .insights-posts-grid {
    margin-top: -32px;
  }
  .insights-posts-grid-items {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-posts-grid {
    padding-bottom: 112px;
  }
  .section-posts-grid .section-posts-grid-items {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
    column-gap: 8px;
    padding: 0 24px;
  }

  .blog-grid-section-icon {
    height: 32px;
    width: 32px;
  }

  .blog-grid-section-icon svg {
    height: 11px;
    width: 11px;
  }

  .section-posts-grid .section-posts-grid-items .blog-grid-item:last-child {
    grid-column: span 2;
  }

  .blog-grid-section-text.grid-section-text {
    font-size: 20px;
  }

  .section-posts-grid-items .blog-grid-item:last-child img {
    aspect-ratio: 926 / 640;
  }

  /* here */
  .section-posts-grid .section-posts-grid-items .blog-grid-item:nth-child(5) {
    grid-column: span 2;
  }

  .section-posts-grid-items .blog-grid-item:nth-child(5) img {
    aspect-ratio: 926 / 640;
  }

  .section-posts-grid .section-posts-grid-items .blog-grid-item:nth-child(9) {
    grid-column: span 1;
  }

  .section-posts-grid-items .blog-grid-item:nth-child(9) img {
    aspect-ratio: 453 / 640;
  }

  .section-posts-grid .section-posts-grid-items .blog-grid-item:nth-child(10) {
    grid-column: span 2;
  }

  .section-posts-grid-items .blog-grid-item:nth-child(10) img {
    aspect-ratio: 926 / 640;
  }
  .section-posts-grid .section-posts-grid-items .blog-grid-item:nth-child(14) {
    grid-column: span 1;
  }

  .section-posts-grid-items .blog-grid-item:nth-child(14) img {
    aspect-ratio: 453 / 640;
  }

  .section-posts-grid .section-posts-grid-items .blog-grid-item:nth-child(15) {
    grid-column: span 2;
  }

  .section-posts-grid-items .blog-grid-item:nth-child(15) img {
    aspect-ratio: 926 / 640;
  }
}

@media (max-width: 600px) {
  .insights-posts-grid-items {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 40px;
  }
}

/* services-hero styles */

.services-hero-title {
  color: #2b2b2b;
  font-family: "Test Newzald", sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.4px;
  display: block;
  margin-bottom: 32px;
  margin-top: 70px;
  max-width: 500px;
}

.services-hero-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.services-hero-repeater {
  max-width: 1040px;
  margin: 0 auto;
  padding: 160px 0;
}

.services-hero-repeater-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  row-gap: 28px;
  max-width: 690px;
  margin-left: auto;
  margin-right: 0;
}

.services-hero-text {
  color: #2b2b2b;
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  letter-spacing: -0.4px;
  max-width: 685px;
  margin-right: auto;
  margin-left: 0;
}

.services-hero-item {
  display: flex;
  flex-direction: column-reverse;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(43, 43, 43, 0.25);
  width: 100%;
}

.services-key {
  color: #717171;
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  letter-spacing: -0.4px;
}

.services-number {
  color: #2b2b2b;
  font-family: "Test Newzald", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.4px;
}

@media (max-width: 992px) {
  .services-hero-title {
    margin-top: 80px;
    margin-bottom: 24px;
    font-size: 42px;
    line-height: 100%;
  }

  .services-hero-repeater {
    padding-top: 48px;
    padding-bottom: 80px;
  }

  .services-hero-wrapper {
    padding: 0 24px;
  }

  .services-hero-repeater-grid {
    row-gap: 24px;
    column-gap: 24px;
  }

  .services-number {
    font-size: 28px;
    line-height: 124%;
  }
}

.two-column-image-main {
  overflow: hidden;
}

.services-article-hero-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: flex-start;
  gap: 100px;
}
.services-article-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
  height: 100vh;
  width: 100%;
}

.services-article-hero-image-wrapper {
  display: flex;
  height: 100%;
  min-width: 570px;
}

.services-article-hero-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 570 / 640;
}

.services-article-hero-subtitle {
  color: #717171;

  font-family: "Public Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%; /* 24.3px */
  letter-spacing: -0.4px;
}

.services-article-hero-title {
  color: #2b2b2b;
  font-family: "Test Newzald", sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 90%;
  letter-spacing: -0.4px;
  margin-top: 16px;
  display: block;
}

.services-article-hero-title.small-box {
  max-width: 500px;
  line-height: 110%; /* 70.4px */
}

.services-article-hero-bold-text {
  color: #2b2b2b;

  font-family: "Test Newzald", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 41.6px */
  letter-spacing: -0.4px;
}

.services-article-hero-text {
  color: #2b2b2b;
  display: block;
  margin-top: 16px;
  font-family: "Public Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.4px;
}

.services-article-hero-content-bottom {
  max-width: 630px;
}

.services-article-hero {
  overflow: hidden;
  padding: 70px 0 160px 0;
}

.services-article-hero-content-bottom-mobile {
  display: none;
}

@media (max-width: 1200px) {
  .services-article-hero-image-wrapper {
    min-width: 400px;
  }
}
@media (max-width: 992px) {
  .services-article-hero-wrapper {
    padding: 0 24px;
    gap: 32px;
    flex-direction: column;
  }

  .services-article-hero-content-bottom-mobile {
    display: block;
    max-width: 100%;
  }

  .services-article-hero-content-bottom-desktop {
    display: none;
  }

  .services-article-hero-content {
    display: flex;
    height: auto;
    gap: 0;
    width: 100%;
    height: auto;
  }

  .services-article-hero-image-wrapper {
    display: flex;
    height: auto;
    width: 100%;
  }

  .services-article-hero-image {
    height: auto;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 384 / 430;
  }

  .services-article-hero-subtitle {
    font-size: 16px;
    line-height: 175%;
  }

  .services-article-hero-title {
    font-size: 42px;
    line-height: 100%;
    margin-top: 0;
  }

  .services-article-hero-bold-text {
    line-height: 124%;
    font-size: 24px;
  }

  .services-article-hero {
    padding: 80px 0;
  }
}

/* article-hero styles */

.article-hero-media-wrapper {
  aspect-ratio: 16 / 9;
  display: flex;
}

.article-hero-image,
.article-hero-video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.article-hero {
  margin-top: -118px;
}

.article-hero-content {
  display: grid;
  grid-template-columns: 0.83fr 1fr;
  gap: 138px;
  max-width: 1440px;
  padding: 0 20px;
  margin: 0 auto;
  align-items: flex-end;
  margin-top: 64px;
  margin-bottom: 160px;
  overflow: visible;
  padding-bottom: var(--spoiler-pb, 0px);
}

.article-spoiler {
  position: relative;
  align-self: end;
}

.article-hero-content-left {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.article-hero-title {
  color: #2b2b2b;
  font-family: "Test Newzald", sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 70.4px */
}
.article-hero-excerpt {
  max-width: 572px;
  color: #2b2b2b;
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.4px;
  opacity: 0.8;
}

.article-spoiler__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  cursor: pointer;
  color: #2b2b2b;
  font-family: "Test Newzald", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 28px */
  letter-spacing: -0.4px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(43, 43, 43, 0.25);
}

.article-spoiler__toggle svg {
  transition: all 0.3s ease;
}

.article-spoiler[data-open="true"] .article-spoiler__toggle svg {
  transform: rotate(45deg);
}

.article-spoiler__panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.35s ease;
}

.article-spoiler[data-open="true"] .article-spoiler__panel {
  opacity: 1;
}

.article-tags-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
  padding: 33px 0 0 0;
}
.article-tag {
  color: #2b2b2b;
  font-family: "Test Newzald", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 28px */
  letter-spacing: -0.4px;
}

.article-tag--empty {
  color: #999;
}

/* article aniamate-hero */

.article-hero {
  position: relative;
}

.article-hero-wrapper {
  position: relative;
  margin: 0 auto;
  overflow: visible;
}

.article-hero-media-wrapper {
  position: sticky;
  top: var(--stick-top, 0);
  z-index: 1;
  overflow: hidden;
  margin-top: 0;
}

.article-hero-media-wrapper img,
.article-hero-media-wrapper video,
.article-hero-image,
.article-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-hero-content-wrapper {
  position: relative;
  z-index: 2;
  padding-top: 64px;
  overflow: visible;
}

.article-hero-content {
  display: grid;
  grid-template-columns: 0.83fr 1fr;
  gap: 138px;
  max-width: 1440px;
  padding: 0 20px;
  margin: 0 auto 160px;
  align-items: flex-end;
  overflow: visible;
  padding-bottom: var(--spoiler-pb, 0px);
}

.article-hero-content-wrapper,
.article-hero-content-left,
.article-spoiler {
  background: #f7f7f7;
}

/* спойлер остаётся внизу правой колонки */
.article-spoiler {
  position: relative;
  align-self: end;
}

/* панель спойлера (как у тебя) */
.article-spoiler__panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.35s ease;
}
.article-spoiler[data-open="true"] .article-spoiler__panel {
  opacity: 1;
}

.hero-one-column-media-wrapper {
  margin: 0 0 0 auto;
  display: flex;
  width: 83%;
  aspect-ratio: 1170 / 720;
}

@media (min-width: 2150px) {
  .article-hero-media-wrapper {
    height: 100vh;
    aspect-ratio: initial;
  }
}

@media (max-width: 1200px) {
  .article-hero-content {
    gap: 80px;
  }
}

@media (max-width: 992px) {
  .hero-one-column-media-wrapper {
    padding-top: 120px;
  }
  .hero-one-column-media-wrapper {
    width: 100%;
    aspect-ratio: 380 / 300;
  }
  .article-hero-content-left {
    gap: 16px;
    width: 100%;
  }

  .article-spoiler {
    width: 100%;
  }

  .article-hero-title {
    font-size: 42px;
    line-height: 110%;
  }

  .article-spoiler__toggle {
    padding-top: 0;
    padding-bottom: 8px;
  }

  .article-hero-excerpt {
    font-size: 16px;
    line-height: 140%;
  }

  .article-hero-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
    margin-top: 32px;
  }

  .article-hero {
    margin-top: -94px;
  }
}

@media (max-width: 500px) {
  .article-tags-grid {
    grid-template-columns: repeat(1, 1fr);
    padding-top: 16px;
  }
}

@media (max-width: 992px) {
  .article-hero-content-wrapper {
    padding-top: 32px;
    padding-bottom: 64px;
  }
  .article-hero-content {
    margin-top: 0;
    margin-bottom: 0;
  }
  .article-hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* blog-hero styles */
.blog-hero {
  padding: 70px 0 160px 0;
  overflow: hidden;
}

.blog-hero-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-hero-title {
  color: #2b2b2b;
  font-family: "Test Newzald", sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 70.4px */
  letter-spacing: -0.4px;
  display: block;
  margin-bottom: 115px;
  max-width: 700px;
}

.blog-hero-text {
  padding-left: 120px;
  color: #2b2b2b;
  font-family: "Test Newzald", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 41.6px */
  letter-spacing: -0.4px;
  margin-top: 160px;
}

.blog-hero-item {
  padding-left: 120px;
}

.blog-hero-item img {
  aspect-ratio: 1282 / 744;
  height: auto;
  width: 100%;
}

@media (max-width: 992px) {
  .blog-hero {
    padding: 80px 0;
  }

  .blog-hero-wrapper {
    padding: 0 24px;
  }

  .blog-hero-title {
    font-size: 42px;
    line-height: 100%;
    margin-bottom: 32px;
  }

  .blog-hero-text {
    padding-left: 0;
    font-size: 24px;
    line-height: 124%;
    margin-top: 32px;
  }

  .blog-hero-item {
    padding-left: 0px;
  }
}

/* one-column-image styles */

.one-column-image-button {
  border: 1px solid rgba(113, 113, 113, 0.25);
  width: fit-content;
  margin: 64px auto 0 auto;
  background: transparent;
}

.one-column-image-button:hover svg path {
  stroke: #fff;
}

.one-column-image-button:hover {
  background: #2b2b2b;
  color: transparent;
  color: #fff;
}

.one-column-image-main .one-column-media-wrapper {
  width: 83%;
  aspect-ratio: 1170 / 720;
  display: flex;
}

.one-column-center .one-column-media-wrapper {
  margin: 0 auto;
}

.one-column-media-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.one-column-left .one-column-media-wrapper {
  margin: 0 auto 0 0;
}

.one-column-right .one-column-media-wrapper {
  margin: 0 0 0 auto;
  display: flex;
}

.one-column-image-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.one-column-image {
  padding: 160px 0;
}

.one-column-image.padding-top-none {
  padding-top: 0 !important;
}

.one-column-image.padding-bottom-none {
  padding-bottom: 0 !important;
}

@media (max-width: 992px) {
  .one-column-image {
    padding: 64px 0;
  }

  .one-column-image-main .one-column-media-wrapper {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 380 / 300;
  }

  .one-column-image-wrapper {
    padding: 0 24px;
  }
}

.two-column-image {
  padding: 160px 0;
}

.two-column-image.padding-top-none {
  padding-top: 0 !important;
}

.two-column-image.padding-bottom-none {
  padding-bottom: 0 !important;
}

.two-column-image-wrapper {
  display: grid;
  align-items: flex-end;
  grid-template-columns: repeat(2, 1fr);
  gap: 138px;
  max-width: 1440px;
  padding: 0 20px;
  margin: 0 auto;
}

.two-column-media-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.two-column-media-wrapper-first,
.two-column-media-wrapper-second {
  display: flex;
}

.two-column-left .two-column-media-wrapper-first {
  aspect-ratio: 572 / 800;
}

.two-column-left .two-column-media-wrapper-second {
  aspect-ratio: 690 / 560;
}

.two-column-right .two-column-media-wrapper-first {
  aspect-ratio: 690 / 560;
}

.two-column-right .two-column-media-wrapper-second {
  aspect-ratio: 572 / 800;
}

.two-column-center .two-column-media-wrapper-second,
.two-column-center .two-column-media-wrapper-first {
  aspect-ratio: 572 / 800;
}

.two-column-center .two-column-image-wrapper {
  gap: 138px;
  max-width: 1440px;
}

/* lightbox */

.plb-overlay {
  position: fixed;
  inset: 0;
  background: #2b2b2b;
  z-index: 9999;
  display: none;
  backdrop-filter: blur(1px);
}

.plb-overlay.is-open {
  display: block;
}

.plb-swiper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(96vw, 1400px);
  height: min(70vh, 900px);
}

.plb-swiper .swiper-slide {
  width: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0.5;
}
.plb-swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
}

.plb-slide-img {
  height: 100%;
  width: auto;
  max-height: 100%;
  max-width: calc(min(96vw, 1400px) - 20vw);
  object-fit: cover;
}

.plb-bottombar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 180px;
  pointer-events: none;
}

.plb-counter {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: flex;
  gap: 5px;
  align-items: center;
  transform: translateX(-50%);
  margin-bottom: -4px;
}

.plb-counter p {
  opacity: 0.8;
  color: #fff;
  font-family: "Public Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  letter-spacing: -0.4px;
}

.plb-counter span {
  color: #fff;
  text-align: center;
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -0.4px;
}
.plb-btn {
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  background: transparent;
  border: none;
  padding: 0;
}
.plb-close .plb-close-line {
  height: 40px;
  width: 1px;
  background: #fff;
}

.plb-close {
  position: absolute;
  top: 14px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.js-lightbox {
  display: flex;
  height: 100%;
  width: 100%;
}

.two-column-image-main {
  overflow: hidden;
}

@media (max-width: 768px) {
  .plb-swiper {
    width: 100vw;
    height: calc(100vh - 110px);
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    padding: 0 20px;
  }
  .plb-swiper .swiper-slide {
    width: 100% !important;
    opacity: 1;
    transform: none;
  }
  .plb-slide-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  .plb-bottombar {
    bottom: 24px;
  }
}

/* lightbox */

@media (max-width: 992px) {
  .two-column-center .two-column-media-wrapper-second,
  .two-column-center .two-column-media-wrapper-first {
    aspect-ratio: 384 / 528;
  }

  .two-column-center .two-column-image-wrapper {
    gap: 64px;
  }
  .two-column-right .two-column-media-wrapper-second {
    aspect-ratio: 384 / 528;
  }

  .two-column-left .two-column-media-wrapper-first {
    aspect-ratio: 384 / 528;
  }
  .two-column-image-wrapper {
    gap: 64px;
  }

  .two-column-image {
    padding: 64px 0;
  }
}

@media (max-width: 768px) {
  .two-column-image-wrapper {
    grid-template-columns: repeat(1, 1fr);
    padding: 0 24px;
  }

  .two-column-media-wrapper-first,
  .two-column-media-wrapper-second {
    width: 100%;
  }
}

.article-black-slider .black-slider-swiper .swiper-slide.slide--wide {
  width: 572px;
}

.article-black-slider .black-slider-swiper .swiper-slide.slide--narrow {
  width: 335px;
}

.article-black-slider
  .black-slider-swiper
  .swiper-slide.slide--wide
  .black-slide-image {
  aspect-ratio: 572 / 385;
}

.article-black-slider
  .black-slider-swiper
  .swiper-slide.slide--narrow
  .black-slide-image {
  aspect-ratio: 335 / 385;
}

.article-quote-right-title {
  max-width: 610px;
}

.article-quote-right-text {
  max-width: 501px;
}

.hero-slider-swiper .swiper-slide a {
  text-decoration: none;
}

.quote-right.quote-right-spacing-none {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.quote-right.quote-bottom-spacing-none {
  padding-bottom: 0 !important;
}

/* careers-slider-swiper styles */

.careers-slider-title-wrapper {
  max-width: 1440px;
  padding: 0 20px;
  margin: 70px auto 100px auto;
}

.careers-slider-title {
  color: #2b2b2b;
  font-family: "Test Newzald", sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  display: block;
  max-width: 700px;
}

.careers-slider-swiper img {
  aspect-ratio: 584 / 640;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.careers-slider-swiper .swiper-slide {
  display: flex;
}

.careers-slider-wrapper {
  padding-left: 20px;
}

@media (max-width: 992px) {
  .careers-slider {
    margin-bottom: -48px;
  }
  .careers-slider-title-wrapper {
    padding: 0 24px;
    margin: 80px 0 32px 0;
  }

  .careers-slider-title {
    font-size: 42px;
    line-height: 100%;
  }

  .careers-slider-swiper img {
    aspect-ratio: 384 / 421;
  }

  .careers-slider-wrapper {
    padding-left: 24px;
  }

  .article-black-slider .black-slider-swiper .swiper-slide.slide--wide {
    width: 282px;
  }

  .article-black-slider .black-slider-swiper .swiper-slide.slide--narrow {
    width: 160px;
  }

  .article-black-slider
    .black-slider-swiper
    .swiper-slide.slide--wide
    .black-slide-image {
    aspect-ratio: 282 / 188;
  }

  .article-black-slider
    .black-slider-swiper
    .swiper-slide.slide--narrow
    .black-slide-image {
    aspect-ratio: 160 / 188;
  }
}

/* related-projects styles */

.related-projects {
  padding-bottom: 160px;
  overflow: hidden;
}
.related-projects-item-big img {
  aspect-ratio: 926 / 640;
}
.related-projects-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-projects-item-big {
  grid-column: span 2;
}

.related-projects-item img {
  object-fit: cover;
}

.process-slider {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 0 160px 20px;
}

.process-slider-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 44px;
  margin-right: auto;
}

.process-slider-nav-button {
  border: 1px solid rgba(113, 113, 113, 0.25);
  background: transparent;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 65px;
  cursor: pointer;
}

.process-slider-nav-button svg path {
  transition: all 0.3s ease;
}

.process-slider-nav-button:hover {
  background: #2b2b2b;
}

.process-slider-nav-button:hover svg path {
  stroke: #fff;
}

.one-column-image-main-sec {
  padding-bottom: 50px;
}

.careers-black,
.careers-section {
  padding: 0 20px;
  margin: 0 auto;
  max-width: 1440px;
}

.careers-section.careers-section-top {
  margin-top: 160px;
}

.careers-section-wrapper {
  max-width: 1440px;
  margin: auto;
  padding: 80px;
  background: #fff;
}

.job-item__row {
  grid-template-columns: 0.5fr 0.8fr 0.5fr;
  gap: 20px;
  display: grid;
  padding: 0 0 24px 0;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(113, 113, 113, 0.25);
  background: transparent;
  width: 100%;
  cursor: pointer;
}

.job-item__row:hover {
  border-color: rgba(113, 113, 113, 0.25);
}

.job-item__row .job-item__title {
  color: #2b2b2b;
  font-family: "Public Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 155.556% */
  letter-spacing: -0.4px;
  display: flex;
  align-items: center;
}

.job-item__tags {
  color: #2b2b2b;
  font-family: "Public Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 155.556% */
  letter-spacing: -0.4px;
  opacity: 0.5;
  display: flex;
  align-items: center;
  gap: 16px;
}

.job-item__cta.main-button {
  border: 1px solid rgba(113, 113, 113, 0.25);
  background: #fff;
  color: #2b2b2b;
  width: fit-content;
  margin-left: auto;
}

.job-item__cta.main-button:hover {
  color: #fff;
  background: #2b2b2b;
}

.job-item__cta.main-button:hover svg path {
  stroke: #fff;
}

.careers-black-wrapper {
  max-width: 1440px;
  margin: auto;
  padding: 114px 80px;
  background: #2b2b2b;
}

.careers-black-title {
  color: #fff;

  font-family: "Test Newzald", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 41.6px */
  letter-spacing: -0.4px;
  display: block;
  margin-bottom: 8px;
}

.careers-black-text {
  color: #fff;
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.4px;
  display: block;
  max-width: 528px;
}

.careers-black-emal-text {
  color: #fff;
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.4px;
}

.careers-black-top {
  margin-bottom: 40px;
}

.main-button.mail-button {
  color: #2b2b2b;
  background: #fff;
  border: 1px solid #fff;
  width: fit-content;
  margin-top: 10px;
}

.main-button.mail-button svg {
  width: 20px;
  min-width: 20px;
  height: 20px;
}

.main-button.mail-button:hover {
  color: #fff;
  background: #2b2b2b;
}

.main-button.mail-button:hover svg path {
  stroke: #fff;
}

.slide-subtitle {
  color: #717171;
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.4px;
}

.slide-bottom-text {
  color: #2b2b2b;

  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.4px;
  display: block;
  margin-top: 16px;
}

.testimonials-hero-slider .hero-slider-item::after {
  display: none;
}

.team-modal__content h3,
.team-modal__content h5,
.team-modal__content h4 {
  opacity: 0.5;
  color: #fff;
  font-family: "Public Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.4px;
  margin-top: 32px;
  margin-bottom: 8px;
  display: block;
}

.careers-team-modal .team-modal__title {
  margin-bottom: 8px !important;
}

.careers-team-modal .team-modal__subtitle {
  font-size: 18px;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  opacity: 0.5;
}

.careers-team-modal__link.main-button {
  color: #2b2b2b;
  width: fit-content;
  background: #fff;
  border: 1px solid #fff;
  margin-top: 32px;
}

.careers-team-modal__link.main-button:hover svg path {
  stroke: #fff;
}

.careers-team-modal__link.main-button:hover {
  background: #2b2b2b;
  color: #fff;
}

.careers-team-modal .team-modal__subtitle {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.careers-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.careers-section-title {
  color: #2b2b2b;
  font-family: "Test Newzald", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 41.6px */
  letter-spacing: -0.4px;
  display: block;
  margin-bottom: 32px;
}

.process-slider.process-slider-top .process-title {
  margin-top: 0;
}

.process-slider.process-slider-top .process-card {
  padding: 73px 32px;
}

/* contact-page styles */
.contact-button.main-button, .contact-button-link.main-button {
  color: #2b2b2b;
  background: transparent;
  border: 1px solid rgba(113, 113, 113, 0.25);
  width: fit-content;
  border-radius: 0;
  cursor: pointer;
}
.contact-button.main-button:hover, .contact-button-link.main-button:hover {
  color: #fff;
  background: #2b2b2b;
}

.contact-button.main-button:hover svg path , .contact-button-link.main-button:hover svg path{
  stroke: #fff;
}

.contact-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}

.contact-page-text {
  color: #2b2b2b;
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  letter-spacing: -0.4px;
  opacity: 0.8;
  max-width: 685px;

}
.script-section {
  padding: 50px 0;

}

.script-section-wrapper {
  max-width: 1440px;
  padding: 0 20px;
  margin: 0 auto;
}

.contact-page-text-bold {
  margin-top: 32px;
  opacity: 1;
  color: #000;
}

.contact-page-title {
  color: #2b2b2b;
  font-family: "Test Newzald", sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 90%;
  display: block;
  margin: 84px 0 32px 0;
}

.contact-page-header {
  max-width: 1440px;
  margin: 0 auto 114px auto;
  padding: 0 20px;
}

.contact-page-media-wrapper {
  aspect-ratio: 690 / 564;
  display: flex;
  width: 100%;
}

.contact-page-info-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.contact-page-wrapper {
  overflow: hidden;
}

.contact-page-get-link {
  color: #2b2b2b !important;
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.4px;
  opacity: 0.8;
  display: block;
  margin-top: 4px;
  border-bottom: 1px solid #2b2b2b;
  width: fit-content;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-page-info {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-page-hb-info__link.hb-info__link {
  color: #2b2b2b !important;
  color: #2b2b2b;
  font-family: "Test Newzald", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 124%;
  letter-spacing: -0.4px;
  text-decoration: none;
}

.contact-page-hb-info__item.hb-info__item {
  border-bottom: 1px solid rgba(43, 43, 43, 0.25);
  width: 100%;
}

.contact-page-get-link:hover {
  border-color: transparent;
}

.contact-hb-info__list.hb-info__list {
  max-width: 400px;
}

.contact-page-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.contact-page-info-block {
  padding-left: 118px;
}

.contact-page {
  padding-bottom: 160px;
}

.contact-select option {
  background: #2b2b2b !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
}

.contact-input::placeholder,
.contact-form-textarea::placeholder {
  color: #fff;
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.4px;
  opacity: 0.75;
}

.contact-input,
.contact-form-textarea {
  color: #fff !important;
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%;
  letter-spacing: -0.4px;
  padding: 16px 24px !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  background: transparent;
  width: 100%;
  border-radius: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  transition: all 0.3s ease;
}

.contact-input:focus,
.contact-form-textarea:focus,
.contact-input:focus-within,
.contact-form-textarea:focus-within {
  border-color: #fff !important;
}

.contact-input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(2);
  opacity: 0.75;
  cursor: pointer;
}

.contact-input[type="date"] {
  margin-top: 14px;
}

.contact-select-wrapper-one {
  margin-bottom: 14px;
}

.wpcf7-form label {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.contact-form-textarea {
  height: 136px;
  resize: none;
}

form.wpcf7-form p {
  display: flex;
  flex-direction: column;
  gap: 11px;
  width: 100%;
}

.team-modal__content.contact-team-modal__content {
  margin-top: 32px;
}
form.wpcf7-form br {
  display: none !important;
}

.contact-form-button.main-button {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-color: transparent;
  width: fit-content;
  border-radius: 0;
  cursor: pointer;
  line-height: 140% !important;
  padding: 14px 24px !important;
  margin-top: 32px !important;
}
.contact-form-button.main-button span {
  transition: all 0.3s ease;
}

.team-modal__content.contact-team-modal__content span {
  display: flex;
  flex-direction: column;
}

.contact-form-button.main-button:hover span {
  color: #2b2b2b !important;
}

.contact-form-button.main-button:hover {
   color: #2b2b2b !important;
}

.contact-form-button.main-button:hover svg path {
  stroke: #2b2b2b !important;
}

.contact-form-button.main-button:hover {
  background: #fff;
  border-color: #fff;
}

.file-drop {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  background: #2b2b2b;
  padding: 40px 16px 24px;
  text-align: center;
  color: #fff !important;
  margin-top: 11px;
  height: 240px;
}

.file-drop__lead {
  color: #fff !important;
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%;
  letter-spacing: -0.4px;
  position: absolute;
  top: 16px;
  text-align: left;
  color: #cfcfcf;
  width: 100%;
  padding: 0 24px;
  left: 0;
  opacity: 0.75;
}

.file-drop .file-input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-drop__label {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 10px !important;
  cursor: pointer;
  color: #fff;
  outline: none;
  display: flex;
  margin-top: 68px !important;
  justify-content: baseline;
  justify-content: center;
}

.file-drop__icon svg {
  display: block;
}
.file-drop__text {
  color: #fff;
  text-align: center;
  font-family: "Public Sans", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%; /* 15px */
  letter-spacing: -0.4px;
}

.file-drop:has(.file-input:focus-visible) {
  outline: 2px dashed #fff;
  outline-offset: -10px;
}

.file-drop__meta {
  margin-top: 10px;
  font-size: 14px;
  color: #ccc;
  text-align: center;
  min-height: 18px;
}
.file-drop__meta strong {
  color: #fff;
  font-weight: 500;
}

.file-drop .file-input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}

.file-drop__label,
.file-drop__meta {
  position: relative;
  z-index: 2;
}

.file-drop .file-input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}

.file-drop.has-file .file-drop__text {
  visibility: hidden;
}
.file-drop__meta {
  margin-top: 10px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  min-height: 18px;
}
.file-drop__meta .size {
  color: #ccc;
}

.file-drop.has-file .file-drop__text {
  white-space: normal;
  word-break: break-word;
}

.file-drop .file-input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}

.contact-input[type="date"]::placeholder {
  color: rgb(124, 124, 124) !important;
}

.contact-select-wrapper .contact-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.contact-select-wrapper {
  position: relative;
  margin-top: 14px;
}

.contact-select-wrapper svg {
  position: absolute;
  right: 24px;
  top: 18px;
  height: 24px;
  width: 24px;
  z-index: 1;
  pointer-events: none;
}
.contact-team-modal__mount .team-modal__title {
  margin-bottom: 16px !important;
}

.contact-label-first {
  margin-top: 0 !important;
}

.policy-page-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.policy-page-content {
  max-width: 572px;
  margin-right: auto;
  color: rgba(43, 43, 43, 0.8);
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  letter-spacing: -0.4px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.policy-page-content a {
  color: rgba(43, 43, 43, 0.8);
}

.policy-page-content p {
  margin: 0;
}

.policy-page-content strong,
.policy-page-content b {
  font-weight: 500;
  margin: 0;
}

.policy-page-wrapper {
  max-width: 1440px;
  padding: 0 20px;
  margin: 0 auto;
}

.policy-page-title {
  color: #2b2b2b;
  font-family: "Test Newzald", sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 90%;
  margin: 50px 0;
}

.policy-page-subtitle {
  margin-bottom: 24px;
  color: #2b2b2b;
  font-family: "Test Newzald", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  max-width: 927px;
}

.policy-page-content ul , .policy-page-content ol {
  margin: 16px 0;
  padding-left: 30px;
}

.policy-page {
  padding-bottom: 150px;
  overflow: hidden;
}

/* instafeed plugin */
.instafeed-swiper-shortcode #sb_instagram #sbi_mod_error {
  display: none !important;
}
#sbi_images, #sb_instagram {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.sbi_item .sbi_info_wrapper {
  display: none !important;
}

#sbi_images.sbi_carousel .sbi-owl-stage-outer,
#sbi_images.sbi_carousel .sbi-owl-stage {
  touch-action: pan-y;
  -ms-touch-action: pan-y; 
  overscroll-behavior: contain; 
  will-change: transform;
}
  .instafeed-swiper-shortcode #sb_instagram #sbi_images.sbi_carousel .sbi_item {
    padding: 10px !important;
  }
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: transform 0.3s ease; 
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.testimonials-slider-nav{
  display: none !important;
}


.error-404.not-found {
  padding: 40px 20px;
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}
.error-button {
    margin: 0 auto;
    border: 1px solid rgba(113, 113, 113, 0.25);
    width: fit-content;
    background: transparent;
}

.page-title-error {
   font-family: "Test Newzald", sans-serif;
}

.error-404-title {
    color: #2b2b2b;
    font-family: "Test Newzald", sans-serif;
    font-size: 150px;
    font-style: normal;
    font-weight: 400;
    line-height: 90%;
    margin: 0 auto;
}

.page-content-404{
  display: flex;
  flex-direction: column;
  gap: 36px;
  justify-content: center;
  align-items: center;
}

@media(max-width: 600px) {
  #sbi_images {
    margin-left: -4px;
  }
  .instafeed-swiper-shortcode #sb_instagram #sbi_images.sbi_carousel .sbi_item {
    padding: 4px !important;
  }
}
@media (max-width: 992px) {
  .testimonials-hero-slider .hero-slider-wrapper {
    padding: 0 24px;
  }
  .testimonials-hero-slider .hero-slider-swiper{
    width: 100% !important;
  }
  
  .script-section {
  padding: 30px 0;

}

.script-section-wrapper {
  max-width: 1440px;
  padding: 0 24px;
  margin: 0 auto;
}
  .contact-page-text-bold {
    margin-top: 16px;
  }
  .careers-section.careers-section-top {
  margin-top: 80px;
}
  .process-slider-nav {
    margin-top: 32px !important;
  }
  .policy-page-content ul , .policy-page-content ol{
    padding-left: 20px;
  }
  .policy-page-wrapper {
    padding: 0 24px;
  }
  .policy-page {
    padding-bottom: 112px;
  }

  .policy-page-title {
    margin: 80px 0 32px 0;
    font-size: 42px;
    line-height: 100%;
  }

  .contact-team-modal__mount .team-modal__title {
    font-size: 28px !important;
    margin-bottom: 16px !important;
  }
  form.wpcf7-form p,
  .contact-team-modal__content.team-modal__content span {
    font-size: 16px !important;
  }
  .contact-buttons {
    flex-direction: column;
    margin-top: 16px;
    align-items: flex-start;
    gap: 8px;
  }
  .contact-page-hb-info__link.hb-info__link {
    font-size: 18px !important;
    padding-bottom: 16px !important;
  }
  .contact-hb-info__list.hb-info__list {
    max-width: 100%;
    gap: 16px;
  }
  .contact-page-title {
    font-size: 42px;
    line-height: 100%;
    margin-top: 80px;
    margin-bottom: 16px;
  }
  .contact-page-info {
    align-items: flex-start;
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
    padding: 0 24px;
  }
  .contact-page-info-block {
    padding: 0;
    width: 100%;
  }

  .contact-page-header {
    padding: 0 24px;
    margin-bottom: 40px;
  }

  .contact-page {
    padding-bottom: 112px;
  }

  .process-slider.process-slider-top .process-card {
    padding: 88px 32px;
  }
  .process-slider.process-slider-top .process-title {
    font-size: 22px;
  }

  .careers-list {
    gap: 32px;
  }

  .one-column-image-main-sec .one-column-image-wrapper {
    padding: 0;
  }
  .one-column-image-main-sec .one-column-media-wrapper {
    aspect-ratio: 430/242;
  }
  .job-item__row {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .careers-team-modal .team-modal__title {
    font-size: 28px;
  }

  .careers-section-title {
    margin-bottom: 24px;
    font-size: 28px;
    line-height: 140%;
  }

  .careers-section {
    padding: 0;
  }

  .careers-section-wrapper {
    padding: 80px 24px;
  }

  .job-item__cta.main-button {
    margin: 8px auto 0 0;
  }

  .job-item__tags {
    font-size: 16px;
  }

  .careers-team-modal .team-modal__subtitle {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .team-modal__content h3,
  .team-modal__content h5,
  .team-modal__content h4 {
    font-size: 16px;
  }

  .slide-text.slide-text-testimonials {
    font-size: 24px;
  }

  .careers-black {
    padding: 0;
  }

  .careers-black-wrapper {
    padding: 114px 24px;
  }

  .careers-black-title {
    line-height: 125%;
    margin-bottom: 16px;
  }

  .careers-black-text {
    font-weight: 400;
    line-height: 125%;
  }

  .careers-black-top {
    margin-bottom: 32px;
  }

  .one-column-image-main-sec {
    padding-bottom: 0;
  }
  .process-slider {
    padding: 0 0 80px 24px;
  }

  .process-slider.process-slider-top {
    padding-top: 80px !important;
  }

  .related-projects {
    padding-bottom: 80px;
  }

  .related-projects-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0 24px;
  }

  .related-projects-item-big {
    grid-column: span 1;
  }

  .related-projects-item img {
    aspect-ratio: 188 / 264;
  }

  /* Header */
  .hb-menu__list .hb-menu__link:not(:first-child) {
    padding-top: 10px;
  }

  .hb-menu__list .hb-menu__link:not(:last-child) {
    padding-bottom: 10px;
  }

  .hb-menu__link {
    font-size: 40px;
  }
  .hb-menu__link svg {
    display: none;
  }
  .hb-grid {
    display: block;
    width: 100%;
  }
  .hb-media {
    display: none;
  }

  .hb-media__imgage-mobile {
    display: block;
    aspect-ratio: 195/ 250;
    width: 100%;
    height: auto;
    object-fit: cover;
    grid-column: 2;
    grid-row: 2;
    margin-top: -72px;
    max-width: 195px;
    margin-right: -24px;
    margin-left: auto;
  }

  .hb-menu-with-img {
    display: block;
    margin-bottom: 40px;
  }

  .hb-info {
    margin-top: 0;
  }

  .header-burger-menu {
    top: 80px;
    height: calc(100vh - 80px);
  }

  .header-burger-menu-wrapper {
    padding: 32px 24px;
  }
  /* Footer */
  .footer-socials__item img,
  .footer-socials__item {
    height: 40px;
    width: 40px;
  }

  .footer-socials {
    flex-wrap: wrap;
    gap: 6.5px;
  }

  .footer-title {
    font-size: 44px;
    font-weight: 400;
    line-height: 100%;
    max-width: 400px;
  }

  .footer-info-richtext .footer-wysiwyg p,
  .footer-info-richtext .footer-wysiwyg a {
    line-height: 135%;
  }

  .footer-main-image {
    margin-left: 0;
    margin-right: auto;
    height: 64px;
  }

  .site-footer-header {
    justify-content: flex-start;
    align-items: flex-start;
    gap: 32px;
    flex-direction: column;
    margin-bottom: 48px;
  }

  .footer-buttons {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    margin-bottom: 64px;
  }

  .footer-info {
    display: flex;
    gap: 44px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }

  .footer-socials {
    margin-top: 44px;
  }

  .footer-copyright {
    margin-top: 44px;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .site-footer {
    padding: 80px 0 32px 0;
  }

  .site-footer-wrapper {
    padding: 0 24px;
  }
}

@media(max-width: 768px) {
  .testimonials-slider-nav{
    display: flex !important;
    padding: 0 24px;
  }
}

@media (max-width: 500px) {
  .hb-menu-with-img {
    column-gap: 0;
  }
}
