/**
 * Homepage
 * Hero Section
 */

/* ----------------------------------------------------------
   Hero
---------------------------------------------------------- */

.tr-hero {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.tr-hero__badge {
    display: inline-block;
    padding: .5rem 1rem;
    margin-bottom: 1.5rem;

    border-radius: 999px;

    background: rgba(13,110,253,.10);
    color: #0d6efd;

    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .03em;
}

.tr-hero__title {
    margin-bottom: 1.5rem;

    color: #1f2937;

    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.15;
}

.tr-hero__description {
    max-width: 600px;

    margin-bottom: 2rem;

    color: #6b7280;

    font-size: 1.125rem;
    line-height: 1.8;
}

.tr-hero__actions {
    margin-top: 2rem;
}

.tr-hero__actions .btn {
    min-width: 220px;
}

.tr-hero__image {
    width: 100%;
    max-width: 650px;
    height: auto;
}

/* ----------------------------------------------------------
   Responsive
---------------------------------------------------------- */

@media (max-width: 991.98px) {

    .tr-hero {
        padding: 4rem 0;
        text-align: center;
    }

    .tr-hero__description {
        margin-left: auto;
        margin-right: auto;
    }

    .tr-hero__actions {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {

    .tr-hero__title {
        font-size: 2rem;
    }

    .tr-hero__actions .btn {
        width: 100%;
    }
}