:root {
  --mainFont: 'Outfit', sans-serif;
  --secondFont: 'Manrope', sans-serif;
  --default-transition: all 0.15s ease-in;
  --color-transition: color 0.15s ease-in;
  --white: #fff;
  --white-80: rgba(255, 255, 255, 0.8);
  --white-64: #bcbbbb;
  --white-56: rgba(255, 255, 255, 0.56);
  --white-48: #9f9f9f;
  --white-24: #696969;
  --red: #ff406f;
  --grey-80: rgba(13, 13, 13, 0.8);
  --grey-64: rgba(13, 13, 13, 0.64);
  --grey-56: #696969;
  --grey-48: rgba(13, 13, 13, 0.48);
  --grey-24: rgba(13, 13, 13, 0.24);
  --grey-16: #9f9f9f;
  --brand-black: #0d0d0d;
  --text-32: 2rem;
  --text-42: 2.625rem;
  --text-56: 3.5rem;
  --text-80: 5rem;
  --text-100: 6.25rem;
}

.hero-content {
  margin-top: auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: white;
}
@media (max-width: 480px) {
  .hero-content {
    margin-top: 100px;
  }
}

.hero-title {
  font-weight: 600;
  font-size: clamp(4.75rem, 2.6373rem + 9.0141vw, 10.75rem);
  line-height: 1;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.hero-title-line1, .hero-title-line2 {
  display: block;
}
@media (max-width: 1024px) {
  .hero-title-line1, .hero-title-line2 {
    display: inline-block;
  }
}
@media (min-width: 1025px) {
  .hero-title-line1, .hero-title-line2 {
    padding-bottom: 1rem;
  }
}
@media (min-width: 1025px) {
  .hero-title-line2 {
    position: relative;
    top: -1rem;
    margin-right: clamp(2.5rem, -13.6538rem + 25.2404vw, 9.0625rem);
    margin-left: auto;
  }
}

.hero-description {
  position: absolute;
  bottom: 48px;
  left: 8px;
  max-width: 322px;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 133%;
  letter-spacing: -0.02em;
  color: #fff;
}
@media (max-width: 1024px) {
  .hero-description {
    position: static;
    max-width: 500px;
    margin: 24px 0 40px;
  }
}
@media (max-width: 480px) {
  .hero-description {
    max-width: 100%;
    font-size: 1rem;
  }
}

.hero-services {
  position: absolute;
  top: 20px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.75rem;
}
@media (max-width: 1024px) {
  .hero-services {
    position: static;
  }
}

.hero-service {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #fff;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.hero-service:hover {
  color: #ff406f;
}
@media (max-width: 768px) {
  .hero-service {
    font-size: 1.125rem;
  }
}

.project-item {
  width: 668px;
  max-width: 100%;
}
@media (min-width: 1280px) {
  .project-item--sm {
    width: 437px;
    max-width: 100%;
  }
}

.text-gray-md {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #696969;
}

.service-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease;
  width: 207px;
}
@media (max-width: 768px) {
  .service-content {
    position: static;
    width: 100%;
    max-height: 0;
  }
}
.service-content.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  max-height: 1000px;
}

.service-title {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 100%;
  color: #9f9f9f;
}

.service-description {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 125%;
  color: #fff;
}
@media (max-width: 768px) {
  .service-description {
    font-size: 1.375rem;
  }
}

.service-nav-item {
  position: static !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid #696969;
  text-align: left;
  cursor: pointer;
  -webkit-transition: border-color 0.3s ease, padding-bottom 0.3s ease;
  transition: border-color 0.3s ease, padding-bottom 0.3s ease;
}
.service-nav-item:hover .service-nav-title {
  color: #9f9f9f;
}
@media (max-width: 768px) {
  .service-nav-item {
    padding-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .service-nav-item.active {
    padding-bottom: 24px;
  }
}
.service-nav-item.active .service-nav-title {
  color: #fff;
}
.service-nav-item.active .service-number {
  color: #fff;
}
.service-nav-item.active .service-number span {
  background: linear-gradient(226deg, #fffb00 0%, #ff406f 40.34%, #7525d6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-nav-title {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-weight: 600;
  font-size: clamp(2.25rem, 0.8415rem + 6.0094vw, 6.25rem);
  line-height: 100%;
  color: #696969;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  padding-right: 48px;
}

.service-number {
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 100%;
  color: #696969;
}
.service-number span {
  color: #9f9f9f;
  margin-inline: 4px;
}

.input-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.dialog-overlay.show {
  opacity: 1;
  visibility: visible;
}

.dialog-content {
  background-color: #fff;
  padding: 64px 70px;
  max-width: 480px;
  min-width: 320px;
  width: 90%;
  text-align: center;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.dialog-overlay.show .dialog-content {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
@media (max-width: 480px) {
  .dialog-content {
    padding: 32px;
  }
}

.dialog-title {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 125%;
  color: #696969;
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .dialog-title {
    margin-bottom: 16px;
  }
}

.dialog-text {
  font-weight: 600;
  font-size: clamp(1.5rem, 1.125rem + 1.6667vw, 2.625rem);
  line-height: 114%;
  color: #0d0d0d;
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .dialog-text {
    margin-bottom: 20px;
  }
}

.dialog-btn {
  margin: 0 auto;
}

.stats-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.stat-item h3 {
  background-color: #fff;
  color: #000;
  mix-blend-mode: screen;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}