@import url('past-performance.css');
/*----service page----*/
.service-hero-content {
    max-width: 52rem;
}

.service-hero-content > p {
    max-width: 48rem;
    font-size: 1.15rem;
}

.service-hero-actions,
.service-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.service-hero-image {
    position: relative;
}

.service-hero-image::before {
    content: "";
    position: absolute;
    inset: 1rem -1rem -1rem 1rem;
    border: 2px solid #c00000;
}

.service-hero-image img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.service-challenge-card,
.service-offering-card,
.service-benefit-grid article,
.service-experience-card,
.service-insight-card {
    height: 100%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .1);
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .06);
}

.service-challenge-card,
.service-offering-card,
.service-benefit-grid article {
    padding: 2rem;
}

.service-challenge-card > i,
.service-benefit-grid article > i {
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
    color: #c00000;
}

.service-offering-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    margin-bottom: 1.25rem;
    background: #c00000;
    color: #fff;
}

.service-offering-card ul {
    display: grid;
    gap: .7rem;
    padding: 0;
    margin: 1.5rem 0 0;
    list-style: none;
}

.service-offering-card li {
    display: flex;
    gap: .65rem;
    align-items: flex-start;
}

.service-offering-card li i {
    margin-top: .25rem;
    color: #c00000;
}

.service-process {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.service-process-step {
    padding: 2rem;
    border-top: 3px solid #c00000;
    background: #fff;
}

.service-process-step > span {
    display: block;
    margin-bottom: 1rem;
    font-weight: 800;
    color: #c00000;
}

.service-benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.service-experience-card,
.service-insight-card {
    overflow: hidden;
}

.service-experience-card img,
.service-insight-card img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 8 / 5;
    object-fit: cover;
}

.service-card-body {
    padding: 1.75rem;
}

.service-card-body > span {
    display: inline-block;
    margin-bottom: .75rem;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #c00000;
}

.service-insight-card h2 a {
    color: inherit;
    text-decoration: none;
}

.service-faq-accordion {
    max-width: 60rem;
    margin-inline: auto;
}

.service-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: clamp(2rem, 5vw, 4rem);
    background: #111;
    color: #fff;
}

.service-cta-inner > div:first-child {
    max-width: 48rem;
}

.service-cta-inner p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .78);
}

@media (max-width: 1199.98px) {
    .service-process {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .service-process,
    .service-benefit-grid {
        grid-template-columns: 1fr;
    }

    .service-cta-inner {
        display: block;
    }
}

.service-section-actions {
    margin-top: -2.5rem;
}

/*----service benefits----*/
.service-benefits-column {
    align-self: stretch;
}

@media (min-width: 992px) {
    .service-benefits-sticky {
        position: sticky;
        top: 7rem;
    }
}