.hero_section {
  background: #000;
  position: relative;
  width: 100%;
  height: auto;
  min-height: 80vh;
  max-height: 100vh;
  overflow: hidden;
}
.hero_section:before {
  content: "";
  background: #000;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.hero_section video {
  width: 100%;
  height: 100dvh;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 !important;
  transform: scale(1.2);
}
.hero_section .content {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  padding-right: 4rem;
}
.hero_section .content h1 {
  font-size: 34px;
  margin-bottom: 20px;
}
.hero_section .content p {
  max-width: 900px;
  margin-bottom: 30px;
}

.home_about {
  position: relative;
}
.home_about:before {
  content: "";
  position: absolute;
  top: 12%;
  right: 15%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(235, 215, 210, 0.2);
  filter: blur(90px);
  z-index: 0;
}
.home_about .row {
  position: relative;
  z-index: 1;
}
.home_about .row p {
  margin-bottom: 20px;
}

.home_services[data-class=bg-white] .service-excerpt {
  color: #000;
}
.home_services .services-grid {
  display: block;
}
.home_services .service-item {
  position: sticky;
  top: 0;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
}
.home_services .service-item .row {
  padding-bottom: 10px;
}
.home_services .service-item:not(:first-child) .service-index {
  background: #fff;
}
.home_services .service-index {
  display: flex;
  align-items: end;
  height: 100%;
  font-size: 80px;
}
.home_services .service-image {
  margin-bottom: 10px;
}
.home_services .service-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
  height: 250px;
}
.home_services .content {
  background: #f4f4f4;
  border-radius: 40px;
  padding: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  margin-bottom: 0;
}
.home_services .content .service-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.home_services .content .service-title .read {
  background: #fff;
  border-radius: 100%;
  min-width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
}
.home_services .content .service-title a {
  font-size: 30px;
}
.home_services .content .service-excerpt p:not(:first-child) {
  display: none;
}
.home_services .content .read-more {
  display: none;
}

.whyus_section h2, .whyus_section h3, .whyus_section .content {
  text-align: end;
}
.whyus_section .content {
  max-width: 850px;
  margin-left: auto;
}

.numbers-section .numbers-items {
  position: relative;
  padding-left: 20px;
}
.numbers-section .numbers-items .item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 40px 20px;
  position: relative;
  transition: all 0.3s ease;
  min-height: 50dvh;
}
.numbers-section .numbers-items .item .number-col .number {
  color: #ccc;
}
.numbers-section .numbers-items .item .inner {
  flex-grow: 1;
}
.numbers-section .numbers-items .item .inner h2 {
  margin-bottom: 15px;
}
.numbers-section .numbers-items .item .inner .text {
  opacity: 0.8;
  max-width: 400px;
}
.numbers-section .numbers-items .item .icon {
  width: 50px;
  height: auto;
  margin-left: auto;
}
.numbers-section .numbers-items .item .icon img {
  min-width: 50px;
  width: 100%;
  height: auto;
}
.numbers-section .scroll-progress-wrapper {
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: rgba(255, 255, 255, 0.1);
}
.numbers-section .scroll-progress-bar {
  width: 100%;
  height: 0%;
  background-color: #fff;
  transition: height 0.1s ease-out;
}

@media (max-width: 992px) {
  .home_services .service-item {
    top: 20px;
  }
  .home_services .service-item .row {
    background: #fff;
    border-radius: 40px;
  }
  .home_services .service-item .service-image img {
    max-height: 450px;
  }
  .home_services .service-item .service-index {
    background: #fff;
    border-radius: 40px;
  }
}
@media (min-width: 590px) {
  .home_services .service-item .service-image img {
    height: 450px;
  }
}
