/* =========================================================
   01. ABOUT PAGE HERO
========================================================= */


.inner-hero--about {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 90px) 0 90px;
    color: var(--white);
    overflow: hidden;
    isolation: isolate;
    background: radial-gradient(circle at 78% 32%, rgba(143, 189, 47, .20), transparent 28%), radial-gradient(circle at 18% 72%, rgba(0, 149, 199, .18), transparent 32%), linear-gradient(125deg, #071b25 0%, #0b2734 40%, #103d50 72%, #071c27 100%);
}


/* BACKGROUND */

.inner-hero--about__bg {
    position: absolute;
    inset: -20%;
    z-index: -4;
    background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 70px 70px;
    transform: rotate(-7deg) scale(1.15);
    animation: aboutGridMove 18s linear infinite;
    opacity: .65;
}


/* OVERLAY */

.inner-hero--about__overlay {
    position: absolute;
    inset: 0;
    z-index: -3;
    background: linear-gradient(90deg, rgba(5, 19, 27, .94) 0%, rgba(5, 19, 27, .78) 42%, rgba(5, 19, 27, .38) 68%, rgba(5, 19, 27, .64) 100%);
    pointer-events: none;
}


/* LARGE ABOUT TEXT */

.inner-hero--about .inner-hero__word {
    position: absolute;
    z-index: -1;
    right: -2vw;
    bottom: -3vw;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .065);
    font-family: var(--font-display);
    font-size: 21vw;
    font-weight: 900;
    line-height: .75;
    letter-spacing: -.07em;
    pointer-events: none;
}


/* CONTENT */

.inner-hero--about .inner-hero__inner {
    position: relative;
    z-index: 5;
}


.about-hero-content {
    position: relative;
    z-index: 5;
    width: min(850px, 68%);
}


.inner-hero--about .eyebrow {
    color: var(--green);
}


/* HEADING */

.inner-hero--about h1 {
    max-width: 850px;
    margin: 24px 0 42px;
    font-family: var(--font-display);
    font-size: clamp(58px, 7vw, 90px);
    font-weight: 700;
    line-height: .87;
    letter-spacing: -.025em;
    text-transform: uppercase;
}

.inner-hero--about h1 em {
    display: inline-block;
    color: var(--green);
    font-family: var(--font-script);
    font-size: .72em;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    animation: aboutTitleFloat 5s ease-in-out infinite;
}

@keyframes aboutGridMove {
    0% {
        transform: rotate(-7deg) scale(1.15) translate3d(0, 0, 0);
    }

    50% {
        transform: rotate(-7deg) scale(1.15) translate3d(35px, 20px, 0);
    }

    100% {
        transform: rotate(-7deg) scale(1.15) translate3d(0, 0, 0);
    }

}


@keyframes aboutGlowFloat {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(-40px, 30px, 0) scale(1.12);
    }

}


@keyframes aboutBlueGlow {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(55px, -35px, 0) scale(1.15);
    }

}


@keyframes aboutImageFloat {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(calc(-50% - 12px)) translateX(-6px);
    }

}


@keyframes aboutCircleRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes aboutTitleFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-5px) rotate(-1deg);
    }

}

/* HERO FOOT */

.inner-hero--about .inner-hero__foot {
    max-width: 760px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    padding-top: 23px;
    border-top: 1px solid rgba(255, 255, 255, .18);
}


.inner-hero--about .inner-hero__foot p {
    max-width: 500px;
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
    line-height: 1.7;
}


.inner-hero--about .inner-hero__foot>span {
    flex: 0 0 auto;
    color: var(--green);
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}


/* HERO ROUND IMAGE */

.about-hero-circle {
    position: absolute;
    z-index: 4;
    right: 12vw;
    top: 55%;
    width: clamp(280px, 27vw, 430px);
    aspect-ratio: 1;
    padding: 9px;
    transform: translateY(-50%);
    border: 1px solid rgba(143, 189, 47, .60);
    border-radius: 50%;
    background: rgba(255, 255, 255, .055);
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .28), 0 0 55px rgba(143, 189, 47, .09);
    animation: aboutImageFloat 6s ease-in-out infinite;
}

.about-hero-circle::before {
    content: "";
    position: absolute;
    inset: -22px;
    border: 1px dashed rgba(255, 255, 255, .22);
    border-radius: 50%;
    animation: aboutCircleRotate 22s linear infinite;
}


.about-hero-circle::after {
    content: "";
    position: absolute;
    top: 7%;
    right: 9%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 20px rgba(143, 189, 47, .75);
}


.about-hero-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}


@keyframes aboutCircleRotate {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }

}

.inner-hero--about::before {
    content: "";
    position: absolute;
    z-index: -2;
    width: 520px;
    height: 520px;
    right: 2%;
    top: 5%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(143, 189, 47, .20) 0%, rgba(143, 189, 47, .07) 40%, transparent 70%);
    filter: blur(10px);
    animation: aboutGlowFloat 8s ease-in-out infinite;
}

.inner-hero--about::after {
    content: "";
    position: absolute;
    z-index: -2;
    width: 430px;
    height: 430px;
    left: -120px;
    bottom: -150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 149, 199, .22), transparent 68%);
    filter: blur(18px);
    animation: aboutBlueGlow 10s ease-in-out infinite;
}

/* =========================================================
   02. WELCOME TO REAL GRAPHICS - NEW DESIGN
========================================================= */

.about-intro-new {
    position: relative;
    padding: 110px 0;
    background: var(--paper);
    overflow: hidden;
}


/* BIG BG WORD */

.about-intro-new__word {
    position: absolute;
    right: -25px;
    top: 15px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(11, 39, 52, .04);
    font-family: var(--font-display);
    font-size: 17vw;
    font-weight: 900;
    line-height: .8;
    letter-spacing: -.06em;
    pointer-events: none;
}


/* =========================================================
   INTRO HEADER
========================================================= */

.about-intro-new__head {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: end;
    gap: 70px;
    margin-bottom: 55px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--line);
}


.about-intro-new__head h2 {
    margin: 12px 0 0;
    max-width: 730px;
    font-family: var(--font-display);
    font-size: clamp(45px, 5vw, 63px);
    font-weight: 800;
    line-height: .9;
    letter-spacing: -.02em;
    text-transform: uppercase;
}


.about-intro-new__head h2 em {
    display: inline-block;
    color: var(--green);
    font-family: var(--font-script);
    font-size: .82em;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}


.about-intro-new__head-copy {
    padding-left: 22px;
    border-left: 1px solid var(--line);
}


.about-intro-new__head-copy>span {
    display: block;
    margin-bottom: 10px;
    color: var(--blue);
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
}


.about-intro-new__head-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   INTRO MAIN LAYOUT
========================================================= */

.about-intro-new__layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 6vw;
    align-items: start;
}


/* LEFT STATEMENT */

.about-intro-new__statement {
    position: relative;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 35px;
    background: var(--ink);
    color: var(--white);
    overflow: hidden;
}


.about-intro-new__statement::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -140px;
    bottom: -140px;
    border: 1px solid rgba(143, 189, 47, .22);
    border-radius: 50%;
}


.about-intro-new__statement::after {
    content: "RG";
    position: absolute;
    right: -6px;
    bottom: -22px;
    color: rgba(255, 255, 255, .025);
    font-family: var(--font-display);
    font-size: 190px;
    font-weight: 900;
    line-height: .75;
    pointer-events: none;
}


.about-intro-new__number {
    position: relative;
    z-index: 2;
    color: var(--green);
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
}


.about-intro-new__statement p {
    position: relative;
    z-index: 2;
    max-width: 430px;
    margin: auto 0;
    color: rgba(255, 255, 255, .86);
    font-family: var(--font-display);
    font-size: clamp(26px, 2.8vw, 38px);
    font-weight: 500;
    line-height: 1.1;
}


.about-intro-new__statement p strong {
    color: var(--green);
    font-weight: 700;
}


.about-intro-new__signature {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
}


.about-intro-new__signature i {
    color: var(--green);
    font-style: normal;
    font-size: 19px;
}


/* =========================================================
   RIGHT INTRO CONTENT
========================================================= */

.about-intro-new__text {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    padding-bottom: 30px;
}


.about-intro-new__text p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   INTRO SERVICE ROWS
========================================================= */

.about-intro-new__services {
    border-top: 1px solid var(--line);
}


.about-intro-service {
    display: grid;
    grid-template-columns: 42px 1fr 35px;
    gap: 18px;
    align-items: center;
    min-height: 64px;
    border-bottom: 1px solid var(--line);
    transition: padding .3s var(--ease), background .3s;
}


.about-intro-service:hover {
    padding-left: 10px;
    background: rgba(143, 189, 47, .055);
}


.about-intro-service>span {
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
}


.about-intro-service strong {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
}


.about-intro-service i {
    justify-self: end;
    color: var(--green-dark);
    font-style: normal;
    font-size: 18px;
    transition: transform .3s var(--ease);
}


.about-intro-service:hover i {
    transform: translate(4px, -4px);
}


/* INTRO BOTTOM */

.about-intro-new__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-top: 27px;
}


.about-intro-new__bottom p {
    max-width: 430px;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}


.about-intro-new__bottom>div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
}


.about-intro-new__bottom i {
    color: var(--green);
    font-style: normal;
}



/* =========================================================
   03. IDENTITY STATEMENT
========================================================= */

.identity-statement {
    padding: 115px 0;
}


.identity-statement__grid {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 6vw;
}


.identity-statement__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
}


.identity-statement__tags span {
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, .20);
    color: rgba(255, 255, 255, .68);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
}



/* =========================================================
   04. VISION & MISSION
   DESIGN KEPT SAME
========================================================= */

.vision-mission {
    padding: 120px 0;
}


.vision-mission__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--line);
}


.vision-mission article {
    position: relative;
    min-height: 290px;
    padding: 44px;
    overflow: hidden;
}


.vision-mission article+article {
    border-left: 1px solid var(--line);
}


.vision-mission article>span {
    position: absolute;
    right: 20px;
    bottom: -90px;
    color: rgba(0, 149, 199, .06);
    font-family: var(--font-display);
    font-size: 340px;
    font-weight: 900;
    line-height: 1;
}


.vision-mission h3 {
    margin-top: 20px;
    font-size: 35px;
    line-height: 1;
}


.vision-mission p {
    max-width: 520px;
    color: var(--muted);
}



/* =========================================================
   05. CORE VALUES - NEW DESIGN
========================================================= */

.about-values-new {
    position: relative;
    padding: 105px 0 110px;
    overflow: hidden;
}


/* BACKGROUND WORD */

.about-values-new__word {
    position: absolute;
    right: -2vw;
    bottom: -4vw;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .05);
    font-family: var(--font-display);
    font-size: 20vw;
    font-weight: 900;
    line-height: .7;
    letter-spacing: -.07em;
    pointer-events: none;
}


/* =========================================================
   VALUES HEADER
========================================================= */

.about-values-new__head {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: end;
    gap: 65px;
    margin-bottom: 52px;
}


.about-values-new__head .eyebrow {
    color: var(--green);
}


.about-values-new__head h2 {
    margin: 12px 0 0;
    max-width: 720px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(45px, 5vw, 62px);
    font-weight: 800;
    line-height: .9;
    letter-spacing: -.02em;
    text-transform: uppercase;
}


.about-values-new__head h2 em {
    color: var(--green);
    font-family: var(--font-script);
    font-size: .82em;
    font-style: normal;
    font-weight: 400;
    text-transform: none;
}


.about-values-new__intro {
    padding-left: 22px;
    border-left: 1px solid rgba(255, 255, 255, .18);
}


.about-values-new__intro>span {
    display: block;
    margin-bottom: 10px;
    color: var(--green);
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
}


.about-values-new__intro p {
    margin: 0;
    color: rgba(255, 255, 255, .60);
    font-size: 12px;
    line-height: 1.7;
}



/* =========================================================
   VALUE ROW LIST
========================================================= */

.about-values-new__list {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, .18);
}


.about-value-row {
    position: relative;
    display: grid;
    grid-template-columns: 70px .75fr 1.25fr 50px;
    align-items: center;
    gap: 25px;
    min-height: 105px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    transition: padding .4s var(--ease), background .35s;
}


.about-value-row::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--green);
    transform: scaleY(0);
    transition: transform .35s var(--ease);
}


.about-value-row:hover {
    padding-left: 18px;
    background: rgba(11, 39, 52, .20);
}


.about-value-row:hover::before {
    transform: scaleY(1);
}


/* NUMBER */

.about-value-row__number {
    color: var(--green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
}


/* TITLE */

.about-value-row h3 {
    margin: 0;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(26px, 2.4vw, 34px);
    font-weight: 700;
    line-height: .95;
    text-transform: uppercase;
    transition: color .3s;
}


.about-value-row:hover h3 {
    color: var(--green);
}


/* DESCRIPTION */

.about-value-row__text p {
    max-width: 470px;
    margin: 0;
    color: rgba(255, 255, 255, .60);
    font-size: 12px;
    line-height: 1.65;
}


/* ROUND ICON */

.about-value-row__icon {
    justify-self: end;
}


.about-value-row__icon span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 50%;
    color: var(--green);
    font-size: 18px;
    transition: background .3s, color .3s, border-color .3s, transform .35s var(--ease);
}


.about-value-row:hover .about-value-row__icon span {
    background: var(--green);
    border-color: var(--green);
    color: var(--ink);
    transform: rotate(45deg);
}


/* VALUES BOTTOM */

.about-values-new__bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 28px;
    color: rgba(255, 255, 255, .42);
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
}


.about-values-new__bottom i {
    color: var(--green);
    font-style: normal;
}



/* =========================================================
   06. SUCCESS / CUSTOMER SATISFACTION
========================================================= */

.success-section {
    padding: 120px 0;
}


.success-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8vw;
    align-items: center;
}


.success-section__visual {
    position: relative;
}


.success-section__visual img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}


.success-section__stamp {
    position: absolute;
    right: -35px;
    bottom: -35px;
    width: 170px;
    height: 170px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 23px;
    font-weight: 800;
    line-height: .9;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(-8deg);
}


.success-section__copy h2 {
    margin: 18px 0 30px;
    font-size: 60px;
    line-height: .88;
}


.success-section__copy p {
    color: var(--muted);
}



/* =========================================================
   07. TABLET
========================================================= */

@media (max-width: 980px) {

    /* HERO */
    .inner-hero--about {
        min-height: 680px;
        padding: calc(var(--header-h) + 75px) 0 75px;
    }

    .about-hero-content {
        width: 62%;
    }

    .about-hero-circle {
        right: 4vw;
        width: 280px;
        top: 55%;
    }

    /* WELCOME */
    .about-intro-new__head {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-intro-new__head-copy {
        max-width: 580px;
        padding: 17px 0 0;
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .about-intro-new__layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-intro-new__statement {
        min-height: 350px;
    }

    /* IDENTITY */
    .identity-statement__grid {
        grid-template-columns: 1fr;
    }

    /* VISION */
    .vision-mission__grid {
        grid-template-columns: 1fr;
    }

    .vision-mission article+article {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .vision-mission h3 {
        font-size: 28px;
    }

    /* VALUES */
    .about-values-new__head {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-values-new__intro {
        max-width: 580px;
        padding: 17px 0 0;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .18);
    }

    .about-value-row {
        grid-template-columns: 55px .8fr 1.2fr 45px;
    }

    /* SUCCESS */
    .success-section__grid {
        grid-template-columns: 1fr;
    }

    .success-section__copy h2 {
        font-size: 50px;
    }

}



/* =========================================================
   08. MOBILE
========================================================= */

@media (max-width: 720px) {

    .inner-hero--about {
        min-height: auto;
        display: block;
        padding: calc(var(--header-h) + 55px) 0 55px;
    }

    .about-hero-circle {
        position: relative;
        top: auto;
        right: auto;
        width: 205px;
        margin: 0 auto 45px;
        transform: none;
    }

    .about-hero-circle {
        animation: none;

        transform: none;
    }

    .inner-hero--about::before {
        width: 300px;
        height: 300px;

        right: -100px;
        top: 15%;
    }

    .inner-hero--about::after {
        width: 280px;
        height: 280px;
    }

    .inner-hero--about__bg {
        background-size: 46px 46px;

        opacity: .45;
    }

    .about-hero-content {
        width: 100%;
    }

    .inner-hero--about h1 {
        margin-bottom: 30px;
        font-size: 47px;
    }

    .inner-hero--about.inner-hero__foot {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .about-intro-new {
        padding: 75px 0;
    }

    .about-intro-new__head {
        margin-bottom: 35px;
        padding-bottom: 25px;
    }

    .about-intro-new__head h2 {
        font-size: 40px;
    }

    .about-intro-new__statement {
        min-height: 300px;
        padding: 25px;
    }

    .about-intro-new__statement p {
        font-size: 27px;
    }

    .about-intro-new__text {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .about-intro-service {
        grid-template-columns: 32px 1fr 28px;
        min-height: 58px;
    }

    .about-intro-service strong {
        font-size: 20px;
    }

    .about-intro-new__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    /* IDENTITY */
    .identity-statement {
        padding: 80px 0;
    }

    /* VISION MISSION */
    .vision-mission {
        padding: 80px 0;
    }

    .vision-mission article {
        min-height: 320px;
        padding: 30px;
    }

    .vision-mission h3 {
        font-size: 24px;
    }

    /* =====================================================   CORE VALUES====================================================== */
    .about-values-new {
        padding: 75px 0 80px;
    }

    .about-values-new__head {
        margin-bottom: 35px;
    }

    .about-values-new__head h2 {
        font-size: 41px;
    }

    .about-value-row {
        grid-template-columns: 35px 1fr 38px;
        gap: 13px;
        min-height: auto;
        padding: 22px 0;
    }

    .about-value-row__title {
        grid-column: 2;
    }

    .about-value-row__text {
        grid-column: 2 / -1;
    }

    .about-value-row__icon {
        grid-column: 3;
        grid-row: 1;
        align-self: center;
    }

    .about-value-row__text p {
        font-size: 12px;
    }

    .about-value-row h3 {
        font-size: 25px;
    }

    .about-values-new__bottom {
        flex-wrap: wrap;
    }

    /* SUCCESS */
    .success-section {
        padding: 80px 0;
    }

    .success-section__copy h2 {
        font-size: 43px;
    }

    .success-section__stamp {
        width: 125px;
        height: 125px;
        right: -3px;
        bottom: -22px;
        font-size: 17px;
    }

}



/* =========================================================
   09. SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
    .inner-hero--about h1 {
        font-size: 50px;
    }

    .about-hero-circle {
        width: 180px;
    }

    .about-intro-new__head h2,
    .about-values-new__head h2 {
        font-size: 40px;
    }

    .about-intro-new__statement {
        min-height: 280px;
        padding: 22px;
    }

    .about-intro-new__statement p {
        font-size: 24px;
    }

    .about-intro-service strong {
        font-size: 18px;
    }

    .about-value-row h3 {
        font-size: 22px;
    }

    .success-section__copy h2 {
        font-size: 38px;
    }

}



/* =========================================================
   10. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .about-hero-circle::before {
        animation: none !important;
    }

}