/**
   * Hero Banner section.
   *
   * @since 1.0.0
   */

.hero-banner {
    min-height: 50vh;
    padding: 140px 0;
}

.hero-banner h1 {
    font-size: 50px;
}

/**
   * Services Grid section.
   *
   * @since 1.0.0
   */

.services-grid {
    padding: 70px 0;
}

.services-grid h2 {
    font-size: 40px;
}

/**
   * Contact Us section.
   *
   * @since 1.0.0
   */

.contact-us {
    padding: 70px 0;
}

.contact-us .btn {
    color: #ffffff;
}

/**
   * Mobile Responsiveness.
   *
   * @since 1.0.0
   */

@media( max-width: 1025px ) {
   .hero-banner {
        padding: 100px 0;
    }

    .hero-banner h1 {
        font-size: 48px;
    }

    .hero-banner p {
        font-size: 17px;
    }

    .services-grid h2 {
        font-size: 38px;
    }

    .services-grid p {
        font-size: 17px;
    }
}

@media( max-width: 768px ) {
   .hero-banner {
        padding: 70px 0;
    }

    .hero-banner h1 {
        font-size: 46px;
    }

    .hero-banner p {
        font-size: 16px;
    }

    .services-grid h2 {
        font-size: 36px;
    }

    .services-grid p {
        font-size: 16px;
    }

    .services-grid .services-card {
        max-width: 380px;
    }
}

@media( max-width: 576px ) {
    .services h2 {
        font-size: 36px;
    }
}