/* =========================================================
   TRISHA WEB - HERO SECTION
   ========================================================= */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 674px;
    padding: 60px 0;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}

/* =========================================================
   DARK OVERLAY
   ========================================================= */

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(3, 24, 55, 0.72);

    z-index: 0;
}

.hero-section > .container {
    position: relative;
    z-index: 2;

    max-width: 1200px;
}


/* =========================================================
   MAIN HERO ROW
   ========================================================= */

.hero-section .row {
    display: grid;

    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    gap: 70px;

    align-items: start;

    margin: 0;
}


/* =========================================================
   LEFT SIDE
   ========================================================= */

.hero-content-column {
    padding: 30px 0 0;

    min-width: 0;
}

.hero-badge {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 14px 22px;
    margin-bottom: 28px;

    background: #1478f2;
    color: #fff;

    border-radius: 40px;

    font-size: 16px;
    font-weight: 700;

    line-height: 1;
}

.hero-title {
    margin: 0 0 24px;

    max-width: 720px;

    color: #fff;

    font-size: 58px;
    font-weight: 800;

    line-height: 1.17;

    letter-spacing: -1.5px;
}

.hero-description {
    max-width: 700px;

    margin: 0 0 34px;

    color: #fff;

    font-size: 19px;
    font-weight: 400;

    line-height: 1.9;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 30px;

    margin: 0 0 42px;
}

.hero-buttons .btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 64px;

    padding: 0 36px;

    border-radius: 35px;

    font-size: 20px;
    font-weight: 700;

    text-decoration: none;

    transition: all .25s ease;
}


/* =========================================================
   PRIMARY BUTTON
   ========================================================= */

.hero-buttons .btn-primary {
    background: #1478f2;

    border-color: #1478f2;

    color: #fff;
}

.hero-buttons .btn-primary:hover {
    background: #0d6fe5;

    border-color: #0d6fe5;

    transform: translateY(-2px);
}


/* =========================================================
   SECONDARY BUTTON
   ========================================================= */

.hero-buttons .btn-outline-light {
    background: transparent;

    border: 1px solid #fff;

    color: #fff;
}

.hero-buttons .btn-outline-light:hover {
    background: #fff;

    color: #111;

    transform: translateY(-2px);
}


/* =========================================================
   COUNTERS
   ========================================================= */

.hero-counters {
    display: flex;

    align-items: flex-start;

    gap: 65px;

    margin-top: 4px;
}

.hero-counters > div {
    min-width: 90px;
}

.hero-counters h2 {
    margin: 0 0 6px;

    color: #fff;

    font-size: 42px;
    font-weight: 800;

    line-height: 1.1;
}

.hero-counters p {
    margin: 0;

    color: #fff;

    font-size: 16px;
    font-weight: 400;

    line-height: 1.4;
}


/* =========================================================
   RIGHT SIDE - FORM
   ========================================================= */

.hero-form-column {
    min-width: 0;

    padding-top: 0;
}

.hero-form-wrapper {
    width: 100%;

    padding: 46px;

    background: #fff;

    border-radius: 18px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .20);
}


/* =========================================================
   FORM HEADING
   ========================================================= */

.hero-form-title {
    margin: 0 0 14px;

    color: #07152b;

    font-size: 34px;
    font-weight: 700;

    line-height: 1.2;
}

.hero-form-description {
    margin: 0 0 28px;

    color: #667085;

    font-size: 16px;

    line-height: 1.6;
}


/* =========================================================
   FORM
   ========================================================= */

.hero-form {
    width: 100%;

    margin: 0;
    padding: 0;
}


/* =========================================================
   FORM FIELDS
   ========================================================= */

.hero-form .form-control,
.hero-form .form-select {
    display: block;

    width: 100%;
    height: 58px;

    margin: 0 0 14px;
    padding: 0 14px;

    background: #fff;

    border: 1px solid #d9e0e8;
    border-radius: 10px;

    color: #172033;

    font-size: 16px;

    box-shadow: none;

    outline: none;
}

.hero-form .form-control::placeholder {
    color: #667085;

    opacity: 1;
}

.hero-form .form-control:focus,
.hero-form .form-select:focus {
    border-color: #1478f2;

    box-shadow: 0 0 0 3px rgba(20, 120, 242, .10);
}


/* =========================================================
   TEXTAREA
   ========================================================= */

.hero-form textarea.form-control {
    height: 124px;

    padding: 16px 14px;

    resize: vertical;
}


/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.hero-form-submit {
    display: block;

    width: 100%;
    height: 56px;

    margin: 0;

    padding: 0 20px;

    background: #1478f2;

    border: 0;
    border-radius: 8px;

    color: #fff;

    font-size: 18px;
    font-weight: 700;

    cursor: pointer;

    transition: all .25s ease;
}

.hero-form-submit:hover {
    background: #0d6fe5;
}


/* =========================================================
   RESPONSIVE - LARGE DESKTOP
   ========================================================= */

@media (max-width: 1320px) {

    .hero-section > .container {
        max-width: 1320px;
		padding-right:20px;
		padding-left:20px
    }

    .hero-section .row {
        gap: 0px;
    }

    .hero-title {
        font-size: 58px;
    }

    .hero-form-wrapper {
        padding: 38px;
    }
}


/* =========================================================
   RESPONSIVE - LAPTOP
   ========================================================= */

@media (max-width: 1199px) {

    .hero-section > .container {
        max-width: 960px;
    }

    .hero-section .row {
        gap: 40px;
    }

    .hero-title {
        font-size: 46px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-form-wrapper {
        padding: 32px;
    }
}


/* =========================================================
   RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 991px) {

    .hero-section {
        min-height: auto;

        padding: 50px 0 60px;
    }

    .hero-section > .container {
        max-width: 720px;
    }

    .hero-section .row {
        display: grid;

        grid-template-columns: 1fr;

        gap: 45px;
    }

    .hero-content-column {
        padding-top: 0;
    }

    .hero-title {
        max-width: 100%;

        font-size: 46px;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-form-column {
        width: 100%;
    }
}


/* =========================================================
   MOBILE - CENTER EVERYTHING
   ========================================================= */

@media (max-width: 767px) {

    .hero-section {
        padding: 40px 0 50px;
    }

    .hero-section > .container {
        width: 100%;
        max-width: 100%;

        padding-left: 20px;
        padding-right: 20px;
    }


    /* -----------------------------------------------------
       LEFT HERO CONTENT
       ----------------------------------------------------- */

    .hero-content-column {
        width: 100%;

        padding: 0;

        text-align: center;
    }


    /* -----------------------------------------------------
       BADGE
       ----------------------------------------------------- */

    .hero-badge {
        display: flex;

        width: fit-content;

        margin-left: auto;
        margin-right: auto;

        margin-bottom: 22px;

        justify-content: center;
        align-items: center;

        text-align: center;
    }


    /* -----------------------------------------------------
       HEADING
       ----------------------------------------------------- */

    .hero-title {
        width: 100%;
        max-width: 100%;

        margin-left: auto;
        margin-right: auto;

        text-align: center;

        font-size: 40px;

        line-height: 1.18;

        letter-spacing: -0.8px;
    }


    /* -----------------------------------------------------
       DESCRIPTION
       ----------------------------------------------------- */

    .hero-description {
        width: 100%;
        max-width: 100%;

        margin-left: auto;
        margin-right: auto;

        text-align: center;

        font-size: 16px;

        line-height: 1.7;
    }


    /* -----------------------------------------------------
       BUTTONS
       ----------------------------------------------------- */

    .hero-buttons {
        display: flex;

        width: 100%;

        justify-content: center;
        align-items: center;

        gap: 12px;

        flex-wrap: wrap;

        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons .btn {
        min-height: 58px;

        padding: 0 28px;

        font-size: 18px;
    }


    /* -----------------------------------------------------
       COUNTERS
       ----------------------------------------------------- */

    .hero-counters {
        display: flex;

        width: 100%;

        justify-content: center;
        align-items: flex-start;

        gap: 35px;

        margin-left: auto;
        margin-right: auto;

        text-align: center;
    }

    .hero-counters > div {
        min-width: 75px;

        text-align: center;
    }

    .hero-counters h2 {
        margin-bottom: 6px;

        text-align: center;

        font-size: 34px;
    }

    .hero-counters p {
        text-align: center;

        font-size: 15px;
    }


    /* -----------------------------------------------------
       FORM
       ----------------------------------------------------- */

    .hero-form-column {
        width: 100%;

        text-align: left;
    }

    .hero-form-wrapper {
        width: 100%;

        padding: 30px 24px;
    }

    .hero-form-title {
        font-size: 32px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575px) {

    .hero-section > .container {
        width: 100%;
        max-width: 100%;

        padding-left: 15px;
        padding-right: 15px;
    }


    /* -----------------------------------------------------
       BADGE
       ----------------------------------------------------- */

    .hero-badge {
        font-size: 14px;

        padding: 12px 18px;

        margin-bottom: 22px;
    }


    /* -----------------------------------------------------
       HEADING
       ----------------------------------------------------- */

    .hero-title {
        width: 100%;

        font-size: 35px;

        line-height: 1.18;

        text-align: center;
    }


    /* -----------------------------------------------------
       DESCRIPTION
       ----------------------------------------------------- */

    .hero-description {
        font-size: 16px;

        line-height: 1.7;

        text-align: center;
    }


    /* -----------------------------------------------------
       BUTTONS
       ----------------------------------------------------- */

    .hero-buttons {
        display: flex;

        width: 100%;

        justify-content: center;
        align-items: center;

        flex-direction: row;

        flex-wrap: wrap;

        gap: 12px;

        text-align: center;
    }

    .hero-buttons .btn {
        width: auto;

        min-height: 56px;

        padding: 0 22px;

        font-size: 17px;
    }


    /* -----------------------------------------------------
       COUNTERS
       ----------------------------------------------------- */

    .hero-counters {
        display: flex;

        width: 100%;

        justify-content: center;
        align-items: flex-start;

        gap: 20px;

        flex-wrap: nowrap;

        text-align: center;
    }

    .hero-counters > div {
        min-width: 0;

        flex: 1;

        text-align: center;
    }

    .hero-counters h2 {
        font-size: 30px;

        text-align: center;
    }

    .hero-counters p {
        font-size: 14px;

        text-align: center;
    }


    /* -----------------------------------------------------
       FORM
       ----------------------------------------------------- */

    .hero-form-wrapper {
        width: 100%;

        padding: 25px 20px;
    }

    .hero-form-title {
        font-size: 28px;

        text-align: left;
    }

    .hero-form-description {
        text-align: left;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .hero-section > .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .hero-buttons .btn {
        min-height: 52px;

        padding: 0 18px;

        font-size: 16px;
    }

    .hero-counters {
        gap: 12px;
    }

    .hero-counters h2 {
        font-size: 27px;
    }

    .hero-counters p {
        font-size: 13px;
    }
}