/* Force the header logo to a small, responsive height */
.logo-img {
    height: 108px !important;
}

/* mobile */
@media (min-width: 768px) {
    .logo-img {
        height: 125px !important;
    }
}

/* md */
@media (min-width: 1024px) {
    .logo-img {
        height: 146px !important;
    }
}

/* lg */

/* Logo title text (INSIGHTS) */
.logo-title {
    font-weight: 800;
    letter-spacing: -0.025em;
    font-size: 45px !important;
    /* text-6xl */
    line-height: 1 !important;
}

@media (min-width: 768px) {
    .logo-title {
        font-size: 60px !important;
    }

    /* md: 5rem */
}

@media (min-width: 1024px) {
    .logo-title {
        font-size: 72px !important;
    }

    /* lg: 6rem */
}

/* Logo subtitle text (CONSULTING GROUP) */
.logo-subtitle {
    font-weight: 600;
    color: #d1d5db;
    font-size: 10px !important;
    /* text-2xl */
}

@media (min-width: 768px) {
    .logo-subtitle {
        font-size: 27px !important;
    }

    /* md: text-4xl */
}

@media (min-width: 1024px) {
    .logo-subtitle {
        font-size: 36px !important;
    }

    /* lg: text-5xl */
}