/* Software development page */
.software-development-banner {
    background-image: url('../images/nwdco/slide-4.jpg');
}

/* Cloud Infrastructure page */
.cloud-infrastructure-banner {
    background-image: url('../images/nwdco/services/cloud-img.jpg');
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

/*--APROACH SECTION - NWDCo Navy Theme--*/

:root {
    --nwdco-navy: #1e3a5f;
    --nwdco-navy-light: #2c5282;
    --nwdco-navy-medium: #234876;
    --nwdco-slate: #475569;
}

.approach-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(30, 58, 95, 0.05), transparent);
}

.approach-flow {
    display: flex;
    gap: 0;
    position: relative;
}

/* Connecting line - NWDCo navy gradient */
.approach-flow::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg,
            var(--nwdco-navy),
            var(--nwdco-navy-medium),
            var(--nwdco-navy-light),
            var(--nwdco-navy-medium),
            var(--nwdco-navy));
    opacity: 0.6;
    z-index: 0;
}

.approach-step {
    flex: 1;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

/* Step Orbs - NWDCo Navy Colors */
.step-orb {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--nwdco-navy), var(--nwdco-navy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 32px rgba(30, 58, 95, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.step-orb::after {
    content: attr(data-step);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

/* Subtle variation across steps using NWDCo palette */
.approach-step:nth-child(2) .step-orb {
    background: linear-gradient(135deg, var(--nwdco-navy-medium), var(--nwdco-navy-light));
    box-shadow: 0 8px 32px rgba(35, 72, 118, 0.4);
}

.approach-step:nth-child(3) .step-orb {
    background: linear-gradient(135deg, var(--nwdco-navy), var(--nwdco-navy-medium));
    box-shadow: 0 8px 32px rgba(30, 58, 95, 0.5);
}

.approach-step:nth-child(4) .step-orb {
    background: linear-gradient(135deg, var(--nwdco-navy-medium), var(--nwdco-navy));
    box-shadow: 0 8px 32px rgba(35, 72, 118, 0.4);
}

.approach-step:nth-child(5) .step-orb {
    background: linear-gradient(135deg, var(--nwdco-navy-light), var(--nwdco-navy));
    box-shadow: 0 8px 32px rgba(44, 82, 130, 0.4);
}

/* Inner ring detail */
.step-orb::before {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    max-width: 220px;
    margin: 0 auto;
    text-align: left;
}


/* Subtle pulse animation */
@keyframes pulse-navy {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(30, 58, 95, 0.4);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 8px 40px rgba(30, 58, 95, 0.6);
    }
}

.step-orb {
    animation: pulse-navy 4s ease-in-out infinite;
}

.approach-step:nth-child(2) .step-orb {
    animation-delay: 0.6s;
}

.approach-step:nth-child(3) .step-orb {
    animation-delay: 1.2s;
}

.approach-step:nth-child(4) .step-orb {
    animation-delay: 1.8s;
}

.approach-step:nth-child(5) .step-orb {
    animation-delay: 2.4s;
}

/* ============================================
           RESPONSIVE
           ============================================ */
@media (max-width: 968px) {
    .approach-flow {
        flex-direction: column;
        gap: 40px;
    }

    .approach-flow::before {
        display: none;
    }

    .approach-step {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 24px;
        padding: 0;
    }

    .step-orb {
        margin: 0;
        flex-shrink: 0;
        width: 64px;
        height: 64px;
    }

    .step-orb::after {
        font-size: 1.25rem;
    }

    .step-desc {
        margin: 0;
        max-width: none;
    }
}

@media (max-width: 640px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .approach-step {
        flex-direction: column;
        text-align: center;
    }

    .step-orb {
        margin: 0 auto 16px;
    }

    .step-desc {
        max-width: 300px;
    }
}

/* Hover effects for feature boxes */
.builtpartnership .feature-box:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(15, 32, 75, 0.15) !important;
    border-left-color: #2f528a !important;
    background: linear-gradient(135deg, #ffffff 0%, #fffdf9 100%) !important;
}

.builtpartnership .feature-box:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg) !important;
    background: linear-gradient(135deg, #2f528a 0%, #2f528a 100%) !important;
    box-shadow: 0 8px 20px rgba(0, 52, 255, 0.3) !important;
}

.builtpartnership .feature-box:hover .icon-wrapper i {
    color: #ffffff !important;
    transform: scale(1.1) !important;
}

.builtpartnership .feature-box:hover h4 {
    color: #0f204b !important;
}

.builtpartnership .feature-box:hover .hover-line {
    width: 100% !important;
}

.section-padding-f9.pt-0 {
    padding-top: 0px;
}

.section-padding-f9.pb-0 {
    padding-bottom: 0px;
}

/* Custom CSS extracted from inline styles */
.mt-30 {
    margin-top: 30px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-0 {
    margin-top: 0px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-0 {
    margin-bottom: 0;
}

.section-padding-f9 {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.flex-row-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.builtpartnership .feature-box {
    background: #fff;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border-left: 4px solid transparent;
}

.builtpartnership .feature-box .icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e0ecff 0%, #d7e1f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.builtpartnership .feature-box .icon-wrapper i {
    color: #2f528a;
    font-size: 28px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.builtpartnership .feature-box h4 {
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    font-size: 18px;
    transition: color 0.3s ease;
}

.builtpartnership .feature-box p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
    text-align: left;
}

.builtpartnership .feature-box p.mt-10 {
    margin-top: 10px;
}

.builtpartnership .feature-box ul {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
    margin: 10px 0 0;
    padding-left: 0;
    list-style: none;
    text-align: left;
}

.builtpartnership .feature-box ul li {
    margin-bottom: 5px;
    display: flex;
    align-items: flex-start;
}

.builtpartnership .feature-box ul li i.fa-check {
    color: #2f528a;
    margin-right: 8px;
    margin-top: 4px;
}

.builtpartnership .feature-box .hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #2f528a, #2f528a);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-choose-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid #2f528a;
}

.why-choose-box h4 {
    font-weight: 700;
    margin-top: 0;
    color: #333;
    margin-bottom: 15px;
}

.why-choose-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.5;
}

.why-choose-box li {
    margin-bottom: 8px;
    display: flex;
}

.why-choose-box li:last-child {
    margin-bottom: 0;
}

.why-choose-box li i.fa-check {
    color: #2f528a;
    margin-right: 8px;
    margin-top: 2px;
}

.faq-panel-default {
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    margin-bottom: 15px;
    border: 1px solid #eee;
    overflow: hidden;
}

.faq-panel-heading {
    background: #fff;
    padding: 0;
    border-bottom: none;
}

.faq-panel-title a {
    font-weight: 600;
    color: #0f204b;
    display: block;
    padding: 15px 25px;
    transition: all 0.3s ease;
}

.faq-panel-title a:not(.collapsed) {
    background-color: #2f528a;
    color: #ffffff;
}

.faq-accordion-arrow {
    color: #2f528a;
    font-size: 20px;
    margin-top: 2px;
    transition: color 0.3s ease;
}

.faq-panel-title a:not(.collapsed) .faq-accordion-arrow {
    color: #ffffff;
}

.faq-panel-body {
    color: #555;
    line-height: 1.6;
    border-top: 1px solid #f9f9f9;
    padding: 20px 25px;
    background: #fafafa;
}

.faq-panel-heading.active,
.panel-default>.panel-heading.active {
    background-color: #2f528a;
    color: #fff;
}

.panel-title {
    font-size: 20px;
}

.get-started-box h3 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.get-started-box p {
    color: #fff;
    text-align: center;
    line-height: 1.6;
}



.bg-navy-padding-60 {
    padding: 60px 0;
    background-color: #0f204b;
}

.btn-shutter-transparent {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.footer-contact-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-contact-text {
    color: #fff;
    margin: 0;
    text-align: center;
}

.footer-contact-link {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.footer-contact-span {
    margin: 0 10px;
}

/* Cloud infrastructure demo page */
.cloud-infrastructure-page {
    color: #243244;
}

.cloud-infrastructure-page p {
    color: #000000;
    font-size: 16px;
    line-height: 1.75;
}

.cloud-infrastructure-page .sec-title .title {
    color: #1c1e20;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 12px;
    text-transform: none;
}

.cloud-infrastructure-page .sec-title h2 span,
.cloud-infrastructure-page .grid__title span {
    color: #1c1e20;
}

.cloud-infrastructure-page .cloud-check-list li,
.cloud-infrastructure-page .grid__list li {
    line-height: 22px;
    margin-bottom: 11px;
}

.cloud-infrastructure-page .cloud-highlight {
    background: #f6f9fd;
}

.cloud-infrastructure-page .cloud-metric-panel {
    background: #ffffff;
    border: 1px solid #e2eaf3;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(17, 42, 75, 0.08);
    display: grid;
    gap: 16px;
    padding: 24px;
}

.cloud-infrastructure-page .cloud-metric {
    border-left: 4px solid #2f528a;
    padding: 8px 0 8px 18px;
}

.cloud-infrastructure-page .cloud-metric span {
    color: #102a43;
    display: block;
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.cloud-infrastructure-page .cloud-metric p {
    margin: 8px 0 0;
}

.cloud-infrastructure-page .cloud-services .container-fluid {
    /*max-width: 1380px;*/
}

.cloud-infrastructure-page .feature-box {
    border-radius: 8px;
}

.cloud-infrastructure-page .cloud-service-card {
    min-height: 620px;
}

.cloud-infrastructure-page .cloud-service-card h4 {
    line-height: 1.35;
}

/* .cloud-infrastructure-page .cloud-platform-box {
    background: #ffffff;
    border-left: 5px solid #191b1fff;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(18, 45, 78, 0.1);
    padding: 34px;
} */

.cloud-infrastructure-page .cloud-platform-box h3 {
    color: #132f4c;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 16px;
}

.cloud-infrastructure-page .cloud-modern-apps .success-summary-content {
    border-radius: 8px;
}

.cloud-infrastructure-page .cloud-why {
    background: #f6f9fd;
}

.cloud-infrastructure-page .why-choose-box {
    background: #ffffff;
    border: 1px solid #dfe8f2;
    border-left: 4px solid #2f528a;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(17, 42, 75, 0.08);
    padding: 34px;
}

.cloud-infrastructure-page .why-choose-box h4 {
    color: #132f4c;
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 18px;
}

.cloud-infrastructure-page .approach-section.cloud-approach {
    background: #ffffff;
}

.cloud-infrastructure-page .cloud-get-started {
    background: #0f2a44;
}

.cloud-infrastructure-page .cloud-get-started h3,
.cloud-infrastructure-page .cloud-get-started p,
.cloud-infrastructure-page .cloud-get-started .footer-contact-text,
.cloud-infrastructure-page .cloud-get-started .footer-contact-link,
.cloud-infrastructure-page .cloud-get-started .footer-contact-span {
    color: #ffffff;
}

.cloud-infrastructure-page .cloud-get-started .btn-shutter-transparent {
    border-color: #ffffff;
    color: #ffffff;
}

@media (max-width: 991px) {

    .cloud-infrastructure-page .cloud-metric-panel,
    .cloud-infrastructure-page .cloud-platform-box {
        margin-bottom: 30px;
    }

    .cloud-infrastructure-page .cloud-service-card {
        min-height: 0;
    }
}

@media (max-width: 767px) {

    .cloud-infrastructure-page .cloud-platform-box,
    .cloud-infrastructure-page .why-choose-box {
        padding: 22px;
    }

    .cloud-infrastructure-page .cloud-metric span {
        font-size: 30px;
    }
}

/* Cloud consulting demo page */
.cloud-consulting-page {
    color: #243244;
}

.cloud-consulting-page p {
    color: #000000;
    font-size: 16px;
    line-height: 1.75;
}

.cloud-consulting-page .sec-title .title {
    color: #1c1e20;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 12px;
    text-transform: none;
}

.cloud-consulting-page .sec-title h2 span,
.cloud-consulting-page .grid__title span {
    color: #1c1e20;
}

.cloud-consulting-page .consulting-check-list li,
.cloud-consulting-page .grid__list li {
    line-height: 22px;
    margin-bottom: 11px;
}

.cloud-consulting-page .consulting-highlight,
.cloud-consulting-page .consulting-why {
    background: #f6f9fd;
}

.cloud-consulting-page .consulting-metric-panel {
    background: #ffffff;
    border: 1px solid #e2eaf3;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(17, 42, 75, 0.08);
    display: grid;
    gap: 16px;
    padding: 24px;
}

.cloud-consulting-page .consulting-metric {
    border-left: 4px solid #2f528a;
    padding: 8px 0 8px 18px;
}

.cloud-consulting-page .consulting-metric span {
    color: #102a43;
    display: block;
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.cloud-consulting-page .consulting-metric p {
    margin: 8px 0 0;
}

.cloud-consulting-page .consulting-services .container-fluid {
    /*max-width: 1380px;*/
}

.cloud-consulting-page .feature-box {
    border-radius: 8px;
}

.cloud-consulting-page .consulting-service-card {
    min-height: 600px;
}

.cloud-consulting-page .consulting-service-card h4 {
    line-height: 1.35;
}

.cloud-consulting-page .why-choose-box {
    background: #ffffff;
    border: 1px solid #dfe8f2;
    border-left: 4px solid #2f528a;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(17, 42, 75, 0.08);
    padding: 34px;
}

.cloud-consulting-page .why-choose-box h4 {
    color: #132f4c;
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 18px;
}

.cloud-consulting-page .approach-section.consulting-approach {
    background: #ffffff;
}

.cloud-consulting-page .consulting-get-started {
    background: #0f2a44;
}

.cloud-consulting-page .consulting-get-started h3,
.cloud-consulting-page .consulting-get-started p,
.cloud-consulting-page .consulting-get-started .footer-contact-text,
.cloud-consulting-page .consulting-get-started .footer-contact-link,
.cloud-consulting-page .consulting-get-started .footer-contact-span {
    color: #ffffff;
}

.cloud-consulting-page .consulting-get-started .btn-shutter-transparent {
    border-color: #ffffff;
    color: #ffffff;
}

@media (max-width: 991px) {
    .cloud-consulting-page .consulting-metric-panel {
        margin-bottom: 30px;
    }

    .cloud-consulting-page .consulting-service-card {
        min-height: 0;
    }
}

@media (max-width: 767px) {
    .cloud-consulting-page .why-choose-box {
        padding: 22px;
    }

    .cloud-consulting-page .consulting-metric span {
        font-size: 30px;
    }
}

/* API development demo page */
.api-development-page {
    color: #243244;
}

.api-development-page p {
    color: #000000;
    font-size: 16px;
    line-height: 1.75;
}

.api-development-page .sec-title .title {
    color: #1c1e20;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 12px;
    text-transform: none;
}

.api-development-page .sec-title h2 span,
.api-development-page .grid__title span {
    color: #1c1e20;
}

.api-development-page .api-check-list li,
.api-development-page .grid__list li {
    line-height: 22px;
    margin-bottom: 0px;
}

.api-development-page .api-highlight,
.api-development-page .api-why {
    background: #f6f9fd;
}

.api-development-page .api-metric-panel {
    background: #ffffff;
    border: 1px solid #e2eaf3;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(17, 42, 75, 0.08);
    display: grid;
    gap: 16px;
    padding: 24px;
}

.api-development-page .api-metric {
    border-left: 4px solid #2f528a;
    padding: 8px 0 8px 18px;
}

.api-development-page .api-metric span {
    color: #102a43;
    display: block;
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.api-development-page .api-metric p {
    margin: 8px 0 0;
}

.api-development-page .api-services .container-fluid {
    /*max-width: 1380px;*/
}

.api-development-page .feature-box {
    border-radius: 8px;
}

.api-development-page .api-service-card {
    min-height: 610px;
}

.api-development-page .api-service-card h4 {
    line-height: 1.35;
}

.api-development-page .why-choose-box {
    background: #ffffff;
    border: 1px solid #dfe8f2;
    border-left: 4px solid #2f528a;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(17, 42, 75, 0.08);
    padding: 34px;
}

.api-development-page .why-choose-box h4 {
    color: #132f4c;
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 18px;
}

.api-development-page .approach-section.api-approach {
    background: #ffffff;
}

.api-development-page .api-get-started {
    background: #0f2a44;
}

.api-development-page .api-get-started h3,
.api-development-page .api-get-started p,
.api-development-page .api-get-started .footer-contact-text,
.api-development-page .api-get-started .footer-contact-link,
.api-development-page .api-get-started .footer-contact-span {
    color: #ffffff;
}

.api-development-page .api-get-started .btn-shutter-transparent {
    border-color: #ffffff;
    color: #ffffff;
}

@media (max-width: 991px) {
    .api-development-page .api-metric-panel {
        margin-bottom: 30px;
    }

    .api-development-page .api-service-card {
        min-height: 0;
    }
}

@media (max-width: 767px) {
    .api-development-page .why-choose-box {
        padding: 22px;
    }

    .api-development-page .api-metric span {
        font-size: 30px;
    }
}

/* Web development demo page */
.web-development-page {
    color: #243244;
}

.web-development-page p {
    color: #000000;
    font-size: 16px;
    line-height: 1.75;
}

.web-development-page .sec-title .title {
    color: #1c1e20;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 12px;
    text-transform: none;
}

.web-development-page .sec-title h2 span,
.web-development-page .grid__title span {
    color: #1c1e20;
}

.web-development-page .web-check-list li,
.web-development-page .grid__list li {
    line-height: 22px;
    margin-bottom: 11px;
}

.web-development-page .web-highlight,
.web-development-page .web-why {
    background: #f6f9fd;
}

.web-development-page .web-metric-panel {
    background: #ffffff;
    border: 1px solid #e2eaf3;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(17, 42, 75, 0.08);
    display: grid;
    gap: 16px;
    padding: 24px;
}

.web-development-page .web-metric {
    border-left: 4px solid #2f528a;
    padding: 8px 0 8px 18px;
}

.web-development-page .web-metric span {
    color: #102a43;
    display: block;
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.web-development-page .web-metric p {
    margin: 8px 0 0;
}

.web-development-page .web-services .container-fluid {
    /*max-width: 1380px;*/
}

.web-development-page .feature-box {
    border-radius: 8px;
}

.web-development-page .web-service-card {
    min-height: 625px;
}

.web-development-page .web-service-card h4 {
    line-height: 1.35;
}

.web-development-page .why-choose-box {
    background: #ffffff;
    border: 1px solid #dfe8f2;
    border-left: 4px solid #2f528a;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(17, 42, 75, 0.08);
    padding: 34px;
}

.web-development-page .why-choose-box h4 {
    color: #132f4c;
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 18px;
}

.web-development-page .approach-section.web-approach {
    background: #ffffff;
}

.web-development-page .web-get-started {
    background: #0f2a44;
}

.web-development-page .web-get-started h3,
.web-development-page .web-get-started p,
.web-development-page .web-get-started .footer-contact-text,
.web-development-page .web-get-started .footer-contact-link,
.web-development-page .web-get-started .footer-contact-span {
    color: #ffffff;
}

.web-development-page .web-get-started .btn-shutter-transparent {
    border-color: #ffffff;
    color: #ffffff;
}

@media (max-width: 991px) {
    .web-development-page .web-metric-panel {
        margin-bottom: 30px;
    }

    .web-development-page .web-service-card {
        min-height: 0;
    }
}

@media (max-width: 767px) {
    .web-development-page .why-choose-box {
        padding: 22px;
    }

    .web-development-page .web-metric span {
        font-size: 30px;
    }
}