.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  background-color: var(--clr-black);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.8);
}

.hero-section .hero-content {
  color: var(--clr-white);
  max-width: 560px;
  padding: 4rem 0;
  width: 100%;
  position: relative;
  z-index: 2;
}

.intro-section {
  max-width: 768px;
  margin: auto;
}

.heading-section {
  padding: 4rem 0;
  position: relative;
  z-index: 1;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--clr-black);
}

@media (min-width: 991px) {
  .heading-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1280px) {
  .heading-section {
    padding: 7rem 0;
  }
}

.heading-section::after {
  content: "";
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.8);
}

.heading-section .heading-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 991px) {
  .heading-section .heading-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.heading-section .sub-heading-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 576px) {
  .heading-section .sub-heading-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.heading-section .container {
  position: relative;
  z-index: 2;
}

.testimonial-section .testimonial-grid.grid-cols-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 991px) {
  .testimonial-section .testimonial-grid.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-section .testimonial-col .company-logo img {
  height: 50px;
  object-fit: contain;
}

.testimonial-section .testimonial-col .author figure {
  width: 50px;
  height: 50px;
  border-radius: 99999px;
  overflow: hidden;
}

.testimonial-section .testimonial-col .author figure img {
  object-fit: fill;
  height: 100%;
  width: 100%;
  border-radius: 9999px;
}

.brand-slider figure {
  height: 40px;
  overflow: hidden;
}

.brand-slider figure img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.blog-section figure {
  max-height: 300px;
}

.blog-section .blog-btn a {
  transition: all 0.5s ease-in-out;
}

.blog-section .blog-btn a:hover {
  text-decoration: underline;
}

.feature-section {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .feature-section {
    padding: 7rem 0;
  }
}

.feature-section .feature-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .feature-section .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-section .feature-content {
  box-sizing: border-box;
}

.feature-section .feature-content .fs-h1 {
  line-height: 1.1;
}

.feature-section .feature-image {
  overflow: hidden;
}

@media (min-width: 768px) {
  .feature-section .feature-image {
    position: absolute;
    top: 0;
    width: 50vw;
    height: 100%;
    z-index: -1;
  }
}

.feature-section .feature-image-left {
  left: 0;
}

.feature-section .feature-image-right {
  right: 0;
}

.feature-section .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-section.feature-section-2 .feature-content {
  order: 2;
}

@media (min-width: 768px) {
  .feature-section.feature-section-2 .feature-content {
    order: 1;
    padding-left: 3rem;
  }
}

.feature-section.feature-section-2 .feature-image-wrapper {
  order: 2;
}

@media (min-width: 768px) {
  .feature-section.feature-section-2 .feature-image-wrapper {
    order: 1;
  }
}

.feature-section.feature-section-1 .feature-content {
  order: 2;
}

@media (min-width: 768px) {
  .feature-section.feature-section-1 .feature-content {
    order: 1;
    padding-right: 3rem;
  }
}

.feature-section.feature-section-1 .feature-image-wrapper {
  order: 1;
}

@media (min-width: 768px) {
  .feature-section.feature-section-1 .feature-image-wrapper {
    order: 2;
  }
}

.cta-section {
  background-color: var(--clr-black-400);
  color: var(--clr-white);
}

@media (min-width: 1368px) {
  .cta-section {
    padding: 7rem 0;
  }
}

.cta-section .cta-signup {
  align-items: stretch;
}

.cta-section .cta-signup .btn {
  flex-shrink: 0;
  text-transform: capitalize;
}

.gap-28 {
  gap: 4rem;
}

@media (min-width: 991px) {
  .gap-28 {
    gap: 5rem;
  }
}

@media (min-width: 1280px) {
  .gap-28 {
    gap: 7rem;
  }
}

.gap-20 {
  gap: 4rem;
}

@media (min-width: 1280px) {
  .gap-20 {
    gap: 5rem;
  }
}

.section-title {
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .section-title {
    margin-bottom: 5rem;
  }
}

/*# sourceMappingURL=styles.css.map */