/* =========================
   HERO SECTION
========================= */
.modern-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f1f5f9;
    padding: 80px 0;
}

.services-container {
    width: min(90%);
    margin: auto;
}

/* .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
} */

/* =========================
   COLUMNS
========================= */
.col {
    flex: 1 1 500px;
}

/* =========================
   HEADING
========================= */
.banner-one__title {
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.2;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

/* TYPEWRITER FIX */
.type-dynamic{
    color:#f73427;
    display:inline-block;
}

/* CURSOR */
@keyframes blink {
    0%,100% {
        border-color: transparent;
    }
    50% {
        border-color: #f73427;
    }
}

/* =========================
   TEXT
========================= */
.banner-one__text {
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

/* =========================
   BUTTON
========================= */
.thm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 32px;
    background: #f73427;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    transition: .3s ease;
}

/* =========================
   FORM BOX
========================= */
.hero-form-box {
    width: 100%;
    max-width: 420px;
    background: #111827;
    padding: 35px;
    border-radius: 20px;
    margin-inline: auto;
}

.hero-form-box h3 {
    color: #fff;
    margin-bottom: 20px;
}

.hero-form-box input {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 15px;
    border-radius: 12px;
    border: none;
    background: #1f2937;
    color: #fff;
}

.hero-form-box button {
    width: 100%;
    border: none;
    cursor: pointer;
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {

    .modern-hero {
        padding: 60px 0;
    }
    .cta-one__btn-one{
        width:100%;
        display:flex;
        justify-content:center;
    }

    .row {
        gap: 40px;
    }

    .banner-one__title {
        text-align: center;
    }

    .banner-one__text {
        text-align: center;
    }

    .banner-one__thm-and-other-btn-box {
        justify-content: center !important;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .row {
        flex-direction: column;
    }

    .col {
        width: 100%;
    }

    .hero-form-box {
        max-width: 100%;
    }

    .type-dynamic {
        min-height: 90px;
    }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {

    .modern-hero {
        padding: 50px 0;
    }

    .services-container {
        width: 92%;
    }

    .type-dynamic {
        min-height: 110px;
    }
}