main#page-technical {
    width: 100%;
}

main#page-technical section {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-only {
    display: none;
}

@media (max-width: 1279px) {
    main#page-technical section {
        padding-left: 20px;
        padding-right: 20px;
    }

    main#page-technical h2 {
        text-align: center;
        font-size: 21px;
        line-height: 28px;
        letter-spacing: 0.6px;
        padding-top: 40px;
        margin-bottom: 24px;
    }

    .desktop-only {
        display: none;
    }
}

/* Intro */
#intro {
    background-color: white;
}

#intro .container-800 {
    display: flex;
    max-width: 800px;
    padding-bottom: 80px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

#intro span {
    color: var(--MZV-Blue, #14415A);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    /* 155.556% */
    letter-spacing: 0.8px;
}

#intro span.orange-txt {
    color: var(--Orange, #B5581C);
    font-size: 21px;
    line-height: 30px;
    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-decoration-skip-ink: none;
    text-decoration-thickness: 16.5%;
    text-underline-offset: 25%;
    text-underline-position: from-font;
}

@media (max-width: 1279px) {

    #intro span,
    #intro span.orange-txt {
        font-size: 14px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0.6px;
    }

    #intro span.orange-txt {
        font-weight: 700;
    }

    #intro .container-800 {
        padding-bottom: 40px;
    }
}

/* Case Studies */
#case {
    background: var(--Background-Light-Gray, #F2F2F2);
}

.case-cards-container {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.case-card {
    display: flex;
    width: 506px;
    padding: 24px 32px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.case-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.casenum {
    padding: 4px 16px;
    border-radius: 24px;
    background: var(--White, #FFF);
    margin-bottom: 8px;
    color: var(--Grayish-Blue, #617985);
    font-size: 18px;
    font-weight: 700 !important;
}

.case-title h3 {
    color: var(--MZV-Blue, #14415A);
    font-size: 27px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    /* 133.333% */
    letter-spacing: 0.8px;
}

.case-card ul {
    display: flex;
    width: 360px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.case-card ul li {
    display: flex;
    width: 400px;
    padding-left: 24px;
    align-items: center;
    gap: 8px;
}

.case-card ul div {
    color: var(--MZV-Blue, #14415A);
    text-align: left;

    /* P Tate */
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    /* 112.5% */
    letter-spacing: 0.8px;
}

.case-card ul div.left {
    width: 24px;
}

.case-card ul div.separator {
    width: 2px;
    align-self: stretch;
    background: #7DA0BE;
}

#case a {
    margin: 40px auto 108px;
    text-align: center;
    padding: 18px 24px;

    border-radius: 27px;
    background: var(--MZV-Blue, #14415A);

    color: var(--White, #FFF);

    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    /* 112.5% */
    letter-spacing: 0.6px;
}

main.en_US .case-card {
    align-items: flex-start;
}

main.en_US .case-card .casenum {
    align-self: baseline;
}

main.en_US .case-card ul div.left {
    width: auto;
}

main.en_US .case-card ul li {
    flex-direction: column;
    width: auto;
    padding-left: 0px;
    align-items: flex-start;
    gap: 8px;
}

main.en_US .case-card ul div.separator {
    display: none;
}

main.en_US .case-card ul div.left::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 2px;
    background-color: #7DA0BE;
    margin-right: 8px;
    margin-bottom: 4px;
}

@media (max-width: 1279px) {
    .case-cards-container {
        flex-direction: column;
    }

    .case-card {
        padding: 24px 0px;
        gap: 24px;
        width: 100%;
    }

    .casenum {
        font-size: 14px;
    }

    .case-title h3 {
        font-size: 20px !important;
        line-height: 35px !important;
    }

    .case-card ul {
        width: 100%;
        gap: 20px;
    }

    .case-card ul li {
        padding-left: 8px;
        gap: 4px;
        width: auto;
    }

    .case-card ul div {
        font-size: 14px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0.6px;
    }

    .case-card ul div.left {
        font-size: 16px;
        font-weight: 500;
        line-height: 18px;
        letter-spacing: 0.8px;
    }

    .case-card ul div.separator {
        margin: 0 10px 0 8px;
    }

    #case a {
        margin: 40px auto 48px;
        padding: 14px 20px;
        font-size: 14px;
    }
}


/* Pricing */
#pricing {
    background: var(--MZV-Blue, #14415A);
    padding-bottom: 120px;
}

#pricing p {
    color: var(--White, #FFF);
    text-align: center;

    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    /* 155.556% */
    letter-spacing: 0.8px;
}

.pricing-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.h3-container {
    margin: 48px auto 16px;
    display: flex;
    width: 748px;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.h3-container h3 {
    color: var(--White, #FFF);
    text-align: center;

    font-size: 27px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    /* 133.333% */
    letter-spacing: 0.8px;
}

.h3-hr {
    display: flex;
    height: 2px;
    flex-grow: 2;
    margin: 32px 0;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    background: #E5EAEC;
}

ul.price-cards-container {
    display: flex;
    align-items: center;
    gap: 24px;
}

li.price-card {
    align-self: stretch;
    border-radius: 10px;
    background: var(--Light-Blue, #E5EAEC);
    display: flex;
    padding: 40px 15px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

li.price-card span.title {
    display: flex;
    padding-bottom: 24px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    align-self: stretch;
    border-bottom: 1px solid var(--Accent-Blue, #7DA0BE);
    color: var(--MZV-Blue, #14415A);

    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    /* 155.556% */
    letter-spacing: 0.8px;
}

li.price-card span.price {
    color: var(--MZV-Blue, #14415A);

    /* JP/Desktop/P 26 B - LL */
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 116.667% */
    letter-spacing: 0.6px;
}

@media (max-width: 1279px) {
    #pricing {
        padding-bottom: 48px;
    }

    #pricing br {
        display: none;
    }

    #pricing p {
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
        letter-spacing: 0.6px;
        text-align: left;
    }

    .h3-container {
        margin: auto 8px;
        gap: 4px;
        width: 100%;
    }

    .h3-container h3 {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .h3-hr {
        width: 30px;
        margin: 32px auto 28px;
    }

    ul.price-cards-container {
        gap: 16px;
        flex-direction: column;
    }

    li.price-card {
        padding: 32px 8px;
        gap: 8px;
        width: 260px;
    }

    li.price-card span.title {
        padding-bottom: 11px;
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
        letter-spacing: 0.6px;
        width: 200px;
        align-self: center;
    }

    li.price-card span.price {
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
    }
}

/* Process */
section#process {
    background: var(--Light-Blue, #E5EAEC);
}

ol.process-cards-container {
    display: flex;
    padding-bottom: 48px;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    width: 880px;
    padding-bottom: 80px;
}

li.process-card {
    display: flex;
    height: 160px;
    padding: 8px 24px 8px 40px;
    align-items: center;
    gap: 40px;
    align-self: stretch;
    border-radius: 10px;
    background: var(--White, #FFF);
    box-shadow: 8px 8px 32px 5px rgba(85, 124, 170, 0.12);
}

li.process-card .order-num {
    color: var(--Accent-Blue, #617985);
    font-size: 38px;
    font-weight: 700;
}

li.process-card .process-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

li.process-card .process-title {
    color: #14425A;
    font-size: 27px;
    font-weight: 700;
    line-height: 36px;
    /* 133.333% */
}

li.process-card .process-p {
    color: #14425A;
    font-weight: 500;
}

@media (max-width: 1279px) {
    #process br {
        display: none;
    }

    ol.process-cards-container {
        display: flex;
        gap: 24px;
        width: auto;
        padding-bottom: 80px;
    }

    li.process-card {
        flex-direction: column;
        height: auto;
        padding: 16px 24px 32px 24px;
        gap: 16px;
    }

    li.process-card .order-num {
        color: var(--Accent-Blue, #617985);
        font-size: 38px;
        font-weight: 700;
    }

    li.process-card .order-num.mobile-only {
        position: relative;
        top: 2px;
        display: inline-block;
        font-size: 28px;
        letter-spacing: 0.6px;
        margin-right: 8px;
    }

    li.process-card .process-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    li.process-card .process-title {
        margin: auto;
        font-size: 20px;
        line-height: 25px;
        letter-spacing: 0.8px;
    }

    li.process-card .process-p {
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0.6px;
    }
}

/* Testimonials */
section#testimonials {
    background: var(--Background-Light-Gray, #F2F2F2);
    padding: 0 48px 120px 48px;
}

ul.testimonial-list {
    display: flex;
    max-width: 1440px;
    padding: 0 80px;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

ul.testimonial-list li {
    display: flex;
    align-self: stretch;
}

figure.testimonial-card {
    display: flex;
    min-width: 360px;
    max-width: 400px;
    padding: 68px 40px 52px 52px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex: 1 0 0;
    border-radius: 40px;
    background: #FFF;
    position: relative;
}

figure.testimonial-card .quotationmark {
    position: absolute;
    left: 13px;
    top: 28px;
    color: var(--Light-Blue, #E5EAEC);
    font-size: 80px;
    font-weight: 700;
    line-height: 38px;
    /* 47.5% */
}

figure.testimonial-card blockquote p {
    align-self: stretch;
    color: var(--MZV-Blue, #14415A);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    /* 187.5% */
    letter-spacing: 0.8px;
}

figure.testimonial-card figcaption p {
    align-self: stretch;
    color: var(--MZV-Blue, #14415A);
    font-size: 15px;
    font-style: normal;
    font-weight: 800;
    line-height: 16px;
    /* 106.667% */
    letter-spacing: 0.8px;
}

@media (max-width: 1279px) {
    section#testimonials {
        padding: 0 48px 80px 48px;
    }

    ul.testimonial-list {
        flex-direction: column;
        padding: 0 8px;
        gap: 24px;
    }

    ul.testimonial-list li {
        align-self: stretch;
    }

    figure.testimonial-card {
        min-width: unset;
        max-width: unset;
        width: auto;
        gap: 16px;
    }

    figure.testimonial-card blockquote p {
        font-size: 14px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0.6px;
    }
}



/* PM */
section#pm {
    background: var(--MZV-Blue, #14415A);
    padding: 0 70px 120px 70px;
}

.pms-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

.pm-card {
    display: flex;
    width: 1000px;
    padding: 40px 80px;
    align-items: center;
    gap: 45px;
    border-radius: 16px;
    background: var(--Background-Light-Gray, #F2F2F2);
}

.pm-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.pm-left img {
    width: 180px;
    height: 180px;
    margin-bottom: 12px;
}

.pm-left h3 {
    color: var(--MZV-Blue, #14415A);
    font-family: "Avenir Next" !important;
    font-size: 36px !important;
    line-height: 30px !important;
    /* 83.333% */
    letter-spacing: 1.8px !important;
}

.pm-left p {
    color: var(--MZV-Blue, #14415A);
    font-family: "Avenir Next" !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    letter-spacing: 0.9px !important;
}

.pm-right {
    border-left: 1px solid var(--Grayish-Blue, #7F97A2);
    display: flex;
    padding: 8px 0 8px 60px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    flex: 1 0 0;
}

.pm-right p {
    align-self: stretch;
    color: var(--MZV-Blue, #14415A);
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 24px !important;
    /* 171.429% */
    letter-spacing: 0.6px !important;
}

.pm-right a {
    color: var(--Pink, #B63580);
    font-size: 16.5px !important;
    font-weight: 900 !important;
    line-height: 18px !important;
    /* 109.091% */
    letter-spacing: 0.6px !important;
    border-bottom: 1px solid var(--Pink, #B63580);
}

@media (max-width: 1279px) {
    section#pm {
        padding: 0 0 40px 0px;
    }

    section#pm br.mobile-only {
        display: block;
    }

    .pms-container {
        gap: 16px;
    }

    .pm-card {
        flex-direction: column;
        margin: auto 0px;
        width: auto;
        padding: 32px 0px;
        gap: 8px;
    }

    .pm-left img {
        width: 140px;
        height: 140px;
        margin-bottom: 4px;
    }

    .pm-left h3 {
        font-size: 21px !important;
        line-height: 28px !important;
        letter-spacing: 0.6px !important;
    }

    .pm-left p {
        font-size: 14px !important;
        font-weight: 400 !important;
        letter-spacing: 0.6px !important;
    }

    .pm-right {
        border-left: 0px;
        padding: 8px 0 0px 6px;
        gap: 18px;
        margin: auto 20px;
        width: auto;
    }

    .pm-right p {
        font-weight: 400 !important;
    }

    .pm-right a {
        font-size: 14px !important;
        font-weight: 700 !important;
        line-height: 20px !important;
        letter-spacing: 0.8px !important;
        border-bottom: 1px solid var(--Pink, #B63580);
    }
}


/* KMG */
section#kmg {
    background: var(--Light-Blue, #E5EAEC);
    padding: 80px 0;
}

section#kmg a {
    display: flex;
    width: 680px;
    padding: 16px 38px 16px 32px;
    justify-content: center;
    align-items: center;
    gap: 16px;

    border-radius: 48px;
    border: 3px solid var(--Black, #2B343A);
    background: var(--KMG-Yellow, #FFE600);
    box-shadow: 1px 2px 8px 0 rgba(114, 114, 114, 0.20);
}

section#kmg a img {
    width: 80px;
}

section#kmg a span,
section#kmg a u {
    color: var(--Black, #2B343A);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0.6px;
}

section#kmg a u {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

@media (max-width: 1279px) {
    section#kmg {
        padding: 48px 0;
    }

    section#kmg a {
        max-width: 680px;
        margin: auto 20px;
        padding: 16px 16px 32px 24px;
        border-radius: 24px;
        width: auto;
        flex-direction: column;
    }

    section#kmg a span,
    section#kmg a u {
        font-size: 14px;
        line-height: 24px;
    }

}

/* FAQ */
section#tech-faq {
    padding-bottom: 120px;
}

.tech-faq-card-container {
    display: flex;
    width: 1000px;
    min-width: 800px;
    max-width: 1000px;
    padding: 0 80px;
    flex-direction: column;
    align-items: flex-start;
    gap: 38px;
}

.tech-faq-card {
    display: flex;
    padding: 8px 0 24px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
    border-bottom: 2px solid var(--Accent-Blue, #7DA0BE);
}

.tech-faq-card h3 {
    color: var(--MZV-Blue, #14415A);
    font-size: 21px !important;
    line-height: 30px !important;
    /* 142.857% */
}

.tech-faq-card p {
    color: var(--MZV-Blue, #14415A);
    font-weight: 500 !important;
}

@media (max-width: 1279px) {
    section#tech-faq {
        padding-bottom: 48px;
    }

    .tech-faq-card-container {
        width: auto;
        max-width: 800px;
        min-width: unset;
        padding: 0px 16px 0px 24px;
    }

    .tech-faq-card {}

    .tech-faq-card h3 {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .tech-faq-card p {
        font-weight: 400 !important;
        font-size: 14px !important;
        line-height: 24px !important;
    }
}


/* Contact */
section#contact {
    padding: 65px 206px 64px 208px;
    background: var(--MZV-Blue, #14415A);
}

.contact-container {
    display: flex;
    align-items: center;
    width: 880px;
    justify-content: space-between;
}

.contact-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-left h2 {
    color: var(--White, #FFF);
}

.contact-left p {
    color: var(--White, #FFF);
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: normal !important;
}

.contact-left a {
    width: 440px;
    color: var(--Bright-Yellow, #FF0);
    font-size: 16.5px !important;
    font-weight: 700 !important;
    line-height: 24px !important;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

a.contact-tech {
    padding: 14px 28px;
    border-radius: 27px;
    background: var(--Bright-Yellow, #FF0);
    color: var(--MZV-Blue, #14415A);
    text-align: center;
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 26px !important;
    letter-spacing: 0.6px !important;
}

@media (max-width: 1279px) {
    section#contact {
        padding: 14px 0 32px 10px;
    }

    .contact-container {
        width: auto;
        margin: auto 20px;
        flex-direction: column;
        justify-content: start;
    }

    .contact-left {}

    .contact-left h2 {
        margin-bottom: 0px;
    }

    .contact-left p {
        font-size: 12px !important;
        font-weight: 500 !important;
    }

    .contact-left a {
        width: auto;
        font-size: 12px !important;
        line-height: 20px !important;
    }

    a.contact-tech {
        margin-top: 22px;
        padding: 10px 21px;
        font-size: 16px !important;
    }
}