/*----home hero----*/
.home-hero {
    align-items: center;
    background: var(--st-black);
    display: flex;
    min-height: calc(100vh - 5.5rem);
    overflow: hidden;
    position: relative;
}

.home-hero-carousel,
.home-hero-carousel .carousel-inner,
.home-hero-carousel .carousel-item {
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
}

.home-hero-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    transform: scale(1.02);
    width: 100%;
}

.home-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.92) 0%,
            rgba(0,0,0,.76) 42%,
            rgba(0,0,0,.38) 72%,
            rgba(0,0,0,.20) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0,0,0,.15) 0%,
            rgba(0,0,0,.10) 55%,
            rgba(0,0,0,.48) 100%
        );
    inset: 0;
    position: absolute;
    z-index: 1;
}

.home-hero-content {
    padding-bottom: 6rem;
    padding-top: 6rem;
    position: relative;
    z-index: 2;
}

.home-hero-eyebrow {
    align-items: center;
    color: var(--st-white);
    display: flex;
    font-size: .8rem;
    font-weight: 700;
    gap: .85rem;
    letter-spacing: .16em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.home-hero-eyebrow::before {
    background: var(--st-red);
    content: '';
    height: 2px;
    width: 3rem;
}

.home-hero h1 {
    color: var(--st-white);
    font-size: clamp(3rem, 6vw, 5.75rem);
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1.03;
    margin-bottom: 1.75rem;
    max-width: 70rem;
}

.home-hero-intro {
    color: rgba(255,255,255,.84);
    font-size: clamp(1.125rem, 1.8vw, 1.35rem);
    line-height: 1.65;
    margin-bottom: 2.25rem;
    max-width: 52rem;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.home-hero-actions .btn {
    min-width: 13rem;
}

.home-hero-scroll {
    align-items: center;
    bottom: 2rem;
    color: rgba(255,255,255,.7);
    display: flex;
    font-size: .7rem;
    font-weight: 600;
    gap: .8rem;
    letter-spacing: .16em;
    position: absolute;
    right: 3rem;
    text-transform: uppercase;
    transform: rotate(90deg);
    transform-origin: right center;
    z-index: 2;
}

.home-hero-scroll-line {
    background: rgba(255,255,255,.6);
    display: block;
    height: 1px;
    width: 3rem;
}

.home-hero-carousel .carousel-item {
    transition: opacity 1.2s ease-in-out;
}

@media (max-width: 991.98px) {
    .home-hero {
        min-height: calc(100vh - 5rem);
    }

    .home-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0,0,0,.90) 0%,
                rgba(0,0,0,.70) 100%
            ),
            linear-gradient(
                180deg,
                rgba(0,0,0,.18) 0%,
                rgba(0,0,0,.42) 100%
            );
    }

    .home-hero-content {
        padding-bottom: 5rem;
        padding-top: 5rem;
    }

    .home-hero-scroll {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .home-hero {
        min-height: calc(100svh - 4.75rem);
    }

    .home-hero-content {
        padding-bottom: 4rem;
        padding-top: 4rem;
    }

    .home-hero h1 {
        font-size: clamp(2.6rem, 12vw, 4rem);
    }

    .home-hero-intro {
        font-size: 1.05rem;
    }

    .home-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .home-hero-actions .btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero-carousel {
        display: none;
    }

    .home-hero {
        background-image: url('../../images/home/hero-government-technology.jpg');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
}

/*----home solutions----*/
.home-solutions {
    background: var(--st-gray-100);
}

/*----home why singtone----*/
.home-why-singtone {
    background: var(--st-gray-200);
}

.home-why-singtone .section-heading {
    margin-bottom: 1.5rem;
}

.home-why-singtone-image {
    min-height: 38rem;
    overflow: visible;
    position: relative;
}

.home-why-singtone-image::before {
    background: var(--st-red);
    bottom: -1.25rem;
    content: '';
    left: -1.25rem;
    position: absolute;
    top: 4rem;
    width: 1.25rem;
    z-index: 0;
}

.home-why-singtone-image img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.home-why-singtone-accent {
    align-items: flex-start;
    background: var(--st-black);
    bottom: -1.5rem;
    color: var(--st-white);
    display: flex;
    flex-direction: column;
    min-width: 10rem;
    padding: 1.5rem 1.75rem;
    position: absolute;
    right: -1.5rem;
    z-index: 2;
}

.home-why-singtone-accent span {
    color: var(--st-gray-400);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.home-why-singtone-accent strong {
    font-size: 2rem;
    line-height: 1;
    margin-top: .5rem;
}

@media (max-width: 991.98px) {
    .home-why-singtone-image {
        margin-bottom: 2rem;
        min-height: 32rem;
    }

    .home-why-singtone-image::before {
        left: -.75rem;
    }

    .home-why-singtone-accent {
        right: -.75rem;
    }
}

@media (max-width: 575.98px) {
    .home-why-singtone-image {
        min-height: 25rem;
    }

    .home-why-singtone-image::before {
        bottom: -.75rem;
        left: -.5rem;
        top: 2rem;
        width: .5rem;
    }

    .home-why-singtone-accent {
        bottom: -.75rem;
        min-width: 8rem;
        padding: 1.1rem 1.25rem;
        right: -.5rem;
    }

    .home-why-singtone-accent strong {
        font-size: 1.6rem;
    }
}

/*----home capabilities----*/
.home-capabilities {
    background: var(--st-black);
    position: relative;
}

.home-capabilities::before {
    background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 4rem 4rem;
    content: '';
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.home-capabilities .container {
    position: relative;
    z-index: 1;
}

/*----company snapshot actions----*/
.company-snapshot-actions {
    margin-top: 2.5rem;
}

.company-snapshot-actions .btn {
    align-items: center;
    display: inline-flex;
    justify-content: center;
}

/*----home past performance----*/
.home-past-performance {
    background: var(--st-gray-300);
}

.home-past-performance .section-heading {
    margin-bottom: 0;
}

/*----home experience----*/
.home-experience {
    background: var(--st-white);
}

.home-experience-grid {
    border: 1px solid var(--st-gray-400);
}

.home-experience-action {
    margin-top: 3rem;
}

/*----insights----*/
.home-insights {
    background: var(--st-gray-100);
}

.home-insights .section-heading {
    margin-bottom: 0;
}

.home-insight-card {
    overflow: hidden;
}

.home-insight-card-featured .home-insight-image {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.home-insight-card-secondary {
    min-height: 15rem;
}

.home-insight-card-secondary .home-insight-image {
    object-fit: cover;
}

.home-insight-image-link {
    display: block;
    overflow: hidden;
}

.home-insight-image {
    transition: transform var(--transition-medium);
}

.home-insight-card:hover .home-insight-image {
    transform: scale(1.03);
}

.home-insight-card h2 a:hover,
.home-insight-card h2 a:focus,
.home-insight-card .fw-semibold:hover,
.home-insight-card .fw-semibold:focus {
    color: var(--st-red) !important;
}

@media (max-width: 575.98px) {
    .home-insight-card-secondary .home-insight-image {
        aspect-ratio: 16 / 9;
    }
}

/*----review cards----*/
.reviews-section {
	background: var(--st-gray-200);
}

.review-col {
    display: flex;
}

.review-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 2rem;
    background: #fff;
    border-radius: .75rem;
    box-shadow: 0 .25rem 1rem rgba(0,0,0,.08);
}

.review-card blockquote {
    flex: 1 1 auto;
    margin: 1.25rem 0;
}

.review-card blockquote p {
    margin-bottom: 0;
}

.review-attribution {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.review-stars {
    color: #ffc107;
    line-height: 1;
}

.carousel-item .row {
    align-items: stretch;
}

.carousel-item .col-lg-4 {
    display: flex;
}

.review-card {
    min-height: 22rem;
}

.reviews-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

/*----trust marquee----*/
.trust-marquee {
    position: relative;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    background-color: #fff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.trust-marquee__viewport {
    position: relative;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    padding: 1.5rem 0;
}

.trust-marquee__viewport::before,
.trust-marquee__viewport::after {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 6rem;
    content: "";
    pointer-events: none;
}

.trust-marquee__viewport::before {
    left: 0;
    background: linear-gradient(
        to right,
        #fff 0%,
        rgba(255, 255, 255, 0) 100%
    );
}

.trust-marquee__viewport::after {
    right: 0;
    background: linear-gradient(
        to left,
        #fff 0%,
        rgba(255, 255, 255, 0) 100%
    );
}

.trust-marquee__track {
    display: flex;
    flex: 0 0 auto;
    width: max-content;
    will-change: transform;
    animation: trust-marquee-scroll 90s linear infinite;
    -webkit-animation: trust-marquee-scroll 90s linear infinite;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

.trust-marquee__group {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 3.5rem;
    width: max-content;
    padding-right: 3.5rem;
}

.trust-marquee__item {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-width: 10rem;
    height: 4.5rem;
}

.trust-marquee__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none;
}

.trust-marquee__logo {
    display: block;
    width: auto;
    max-width: 10rem;
    height: auto;
    max-height: 4rem;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.78;
    transition:
        filter 0.25s ease,
        opacity 0.25s ease,
        transform 0.25s ease;
}

.trust-marquee__link:hover .trust-marquee__logo,
.trust-marquee__link:focus-visible .trust-marquee__logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.04);
}

.trust-marquee__name {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.75rem 1.25rem;
    color: #2f3439;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    white-space: nowrap;
    border: 1px solid #d7dbe0;
    border-radius: 0.5rem;
    background-color: #f8f9fa;
}

.trust-marquee:hover .trust-marquee__track,
.trust-marquee:focus-within .trust-marquee__track {
    animation-play-state: paused;
    -webkit-animation-play-state: paused;
}

@media (prefers-reduced-motion: no-preference) {
    .trust-marquee-note {
        display: none;
    }
}

.trust-marquee-note {
    margin-top: .75rem;
    color: var(--st-gray-600);
    font-size: .875rem;
    text-align: center;
}

@keyframes trust-marquee-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@-webkit-keyframes trust-marquee-scroll {
    from {
        -webkit-transform: translate3d(0, 0, 0);
    }

    to {
        -webkit-transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 767.98px) {
    .trust-marquee__viewport {
        padding: 1.125rem 0;
    }

    .trust-marquee__viewport::before,
    .trust-marquee__viewport::after {
        width: 2.5rem;
    }

    .trust-marquee__track {
        animation-duration: 90s;
        -webkit-animation-duration: 90s;
    }

    .trust-marquee__group {
        gap: 2rem;
        padding-right: 2rem;
    }

    .trust-marquee__item {
        min-width: 8rem;
        height: 3.75rem;
    }

    .trust-marquee__logo {
        max-width: 8rem;
        max-height: 3.25rem;
    }
}

.trust-marquee__viewport {
    touch-action: pan-x;
}

@media (prefers-reduced-motion: reduce) {
    .trust-marquee__viewport {
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 1.25rem;
		scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .trust-marquee__track {
        width: max-content;
        animation: none;
        -webkit-animation: none;
        transform: none;
        -webkit-transform: none;
        will-change: auto;
    }

    .trust-marquee__group {
        flex-wrap: nowrap;
        width: max-content;
        padding-right: 2rem;
    }

    .trust-marquee__group[aria-hidden="true"] {
        display: none;
    }

    .trust-marquee__viewport::before,
    .trust-marquee__viewport::after {
        display: none;
    }
}