*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--page-gutter);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.creative-design-content {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 80px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 80px;
}

.creative-design-content:last-child {
    margin-bottom: 0;
}

.creative-design-content .col-lg-6 {
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
    width: calc(50% - 30px);
    padding-left: 0;
    padding-right: 0;
}

.creative-design-content .col-lg-6:first-child {
    order: 1;
}

.creative-design-content .col-lg-6:last-child {
    order: 2;
}

.creative-design-content:nth-of-type(even) .col-lg-6:first-child {
    order: 2;
}

.creative-design-content:nth-of-type(even) .col-lg-6:last-child {
    order: 1;
}

.creative-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 32px;
    transition: transform 0.3s ease;
}

.creative-text {
    padding-right: 20px;
}

.creative-text p {
    line-height: 1.8;
    color: #6b6862;
}

.design-services {
    list-style: none;
    padding: 20px 0 0;
    margin: 24px 0 0;
    border-top: 1px solid #d8d4cc;
}

.design-services li {
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #3b3a36;
    padding: 6px 0;
}

.design-services li::before {
    content: "\2022";
    color: #a8946f;
    margin-right: 10px;
}

.CTA-button {
    margin-bottom: 8px;
}

.CTA-button .button {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid white;
    color: white;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    background-color: #00a1ca;
    transition: all 0.3s ease;
}

.CTA-button .button:hover {
    background: #3b3a36;
    color: #fff;
}


h3 {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    font-size: 20px;
}

p {
    padding-top: 10px;
    padding-bottom: 10px;
}


.logo img {
    width: 170px;
    left: -20px;
}



/* features */
.our-craft-section {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
}

.craft-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 60px;
    margin-top: 100px;
}

.craft-heading .craft-highlight {
    color: #6f7362;
    font-size: 48px;
}

.craft-heading {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    font-size: 48px;
    color: #17181c;
    margin: 0;
    max-width: 850px;
}

.craft-heading .word {
    display: inline-block;
    white-space: nowrap;
}

.craft-heading .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.craft-heading.animate .letter {
    opacity: 1;
    transform: translateY(0);
}

.section-topic {
    color: #008db1;
    padding-bottom: 20px;
    font-size: 18px;
    font-weight: 525;
}

.craft-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #6f7362;
    max-width: 300px;
    text-align: right;
    margin: 0;
}

.craft-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.craft-item {
    background: #ffffff;
    border-radius: 14px;
    padding: 36px 32px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.048);
    border: 1px solid rgba(0, 0, 0, 0.212);
    transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .4s ease, background .4s ease, border-color .4s ease;
    cursor: pointer;
    will-change: transform;
}

.craft-item:hover {
    background: #008eb1;
    border-color: transparent;
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 25px rgba(0, 141, 177, 0.4);
}

.craft-item:hover .craft-icon {
    background: #ffffff;
    color: #008db1;
    transform: rotate(360deg) scale(1.12);
    box-shadow: 0 10px 22px rgba(255, 255, 255, .4);
}

.craft-item:hover p {
    color: #ffffff;
}

.craft-item:hover h5 {
    color: #ffffff;
    letter-spacing: .3px;
}

.craft-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #008db1;
    color: #ffffff;
    border-radius: 50%;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 22px;
    box-shadow: 0 6px 14px rgba(0, 141, 177, .22);
    transition: transform .4s cubic-bezier(.22, 1, .36, 1), background .4s ease, color .4s ease, box-shadow .4s ease;
}

.craft-item h5 {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    font-size: 19px;
    color: #17181c;
    margin: 0 0 10px;
    transition: color .35s ease, letter-spacing .35s ease;
}

.craft-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #5b6470;
    margin: 0;
    transition: color .35s ease;
}

/* what we offer section */
.offer-section {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: start;
    padding: 100px 0;
}

.offer-sticky {
    position: sticky;
    top: 100px;
    border-radius: 18px;
    padding: 50px 32px;
    margin-top: 80px;
}

.offer-eyebrow {
    position: absolute;
    top: -80px;
    color: #008db1;
    padding-bottom: 20px;
    font-size: 18px;
    font-weight: 525;
    text-align: left;
    left: -7px;
}

.offer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.offer-list-item {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 22px;
    color: #17181c;
    padding: 16px 20px;
    border-radius: 12px;
    cursor: pointer;
    opacity: 1;
    filter: none;
    transform: translateX(0);
    transition:
        background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        font-weight 0.5s ease,
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 20px;
}

.offer-list-item:not(.active):hover {
    background: rgba(0, 161, 202, .08);
}

.offer-list-item.active {
    background: #00a1ca;
    color: #ffffff;
    font-weight: 600;
    transform: translateX(6px);
    box-shadow: 0 10px 24px rgba(0, 161, 202, .35);
}

.offer-track {
    position: relative;
    height: 300vh;
}

.offer-step {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
}

.offer-step[data-index="0"] {
    top: 0;
}

.offer-step[data-index="1"] {
    top: 100vh;
}

.offer-step[data-index="2"] {
    top: 200vh;
}

.offer-visual {
    position: sticky;
    top: 120px;
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
}

.offer-block {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.offer-block.active {
    opacity: 1;
    visibility: visible;
}

.offer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
}

.offer-caption {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    background: rgba(20, 20, 20, 0.699);
    backdrop-filter: blur(6px);
    border-radius: 10px;
    padding: 28px 32px;
}

.offer-caption p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* growth / impact section */
.growth-section {
    max-width: none;
    background: #0a0a0a;
    margin: 0;
    padding: 60px var(--page-gutter);
}

.growth-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.growth-heading {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 34px;
    line-height: 1.3;
    color: #ffffff;
    margin: 0 0 32px;
}

.growth-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.growth-item {
    position: relative;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 26px 22px 22px;
    overflow: hidden;
    transition: transform .4s cubic-bezier(.22, 1, .36, 1), background .4s ease, border-color .4s ease;
}

.growth-item:nth-child(2) {
    margin-top: 14px;
}

.growth-item:nth-child(3) {
    margin-top: 24px;
}

.growth-item:nth-child(4) {
    margin-top: 34px;
}

.growth-item:hover {
    transform: translateY(-8px);
    background: rgba(0, 161, 202, .12);
    border-color: #00a1ca;
}

.growth-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 161, 202, .15);
    color: #00a1ca;
    margin-bottom: 14px;
}

.growth-number {
    display: block;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 44px;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 8px;
}

.growth-plus {
    font-size: 24px;
    color: #00a1ca;
}

.growth-label {
    font-size: 14px;
    line-height: 1.5;
    color: #9a9a9a;
    margin: 0 0 12px;
}

.growth-bar {
    display: block;
    height: 3px;
    width: 30%;
    background: #00a1ca;
    border-radius: 3px;
    transition: width .5s ease;
}

.growth-item:hover .growth-bar {
    width: 100%;
}

/* process */
.development-process .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.process-topic {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    font-size: 48px;
    color: #17181c;
    margin: 0;
    max-width: 850px;
    text-align: left;
}

.process-intro {
    max-width: 750px;
}

.description {
    padding-top: 20px;
    max-width: 550px;
}

.process-timeline {
    position: relative;
    width: 100%;
    align-self: center;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 90px;
    text-align: center;
}

.timeline-kicker {
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    color: #008db1;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .1em;
}

.timeline-arcs {
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 210px;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

.timeline-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.3s ease, transform 1.3s cubic-bezier(.22, 1, .36, 1);
}

.timeline-step.in-view {
    opacity: 1;
    transform: translateY(0);
}

.timeline-step[data-index="0"].in-view {
    transition-delay: 0s;
}

.timeline-step[data-index="1"].in-view {
    transition-delay: .15s;
}

.timeline-step[data-index="2"].in-view {
    transition-delay: .1s;
}

.timeline-circle {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    margin-bottom: 22px;
    transition: transform .35s ease, box-shadow .35s ease;
}

.timeline-step:hover .timeline-circle {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
}

.timeline-badge {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #0a0a0a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 14px;
}

.timeline-icon {
    color: #17181c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-step h3 {
    margin: 0 0 8px;
}

.timeline-step .process-description {
    max-width: 230px;
    margin: 0 auto;
}

/* our work */
.our-projects {
    padding-top: 0;
    padding-bottom: 0;
}

.projects-topic {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    font-size: 48px;
    color: #17181c;
    margin: 0;
    max-width: 850px;
    text-align: left;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    height: 520px;
    margin-top: 20px;
}

.bento-item {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.103);
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.bento-item:hover img {
    transform: scale(1.05);
}

.bento-large {
    grid-column: 1;
    grid-row: 1 / 3;
}

.bento-small {
    grid-column: 2;
}

.bento-small:nth-of-type(2) {
    grid-row: 1;
}

.bento-small:nth-of-type(3) {
    grid-row: 2;
}

.project-image1 {
    height: 100%;
}

/* cta section */
.CTA-banner-section {
    position: relative;
    background: #fff;
    overflow: visible;
    margin: 0;
}

.CTA-banner-section .container {
    max-width: 1200px;
    margin: 0 auto;
    display: block;
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
    padding-top: 0;
    padding-bottom: 0;
}

.cta-card {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    border-radius: 32px;
    overflow: visible;
    background: linear-gradient(120deg, #00a1ca 0%, #0074a8 35%, #c10000 100%);
    padding: 10px 60px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
}

.cta-card .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.col-8.banner-text {
    flex: 0 0 58%;
    position: relative;
    z-index: 2;
    text-align: left;
}

h4.banner-text {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 34px;
    line-height: 1.3;
    color: #fff;
    margin: 0 0 20px;
    max-width: 520px;
}

.banner-text p {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .85);
    margin: 0 0 30px;
    padding: 0;
    max-width: 460px;
}

.CTA-button {
    position: relative;
    z-index: 2;
}

.CTA-button .button {
    display: inline-block;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: white;
    background: #00a1ca;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 50px;
    transition: all .3s ease;
    white-space: nowrap;
}

.CTA-button .button:hover {
    background: #0a0a0a;
    color: #fff;
}

.col-4.cta-image-wrap {
    flex: 0 0 38%;
    position: relative;
    align-self: flex-end;
    height: 100%;
    overflow: visible;
}

.cta-image {
    display: block;
    width: 100%;
    max-width: 300px;
    position: relative;
    bottom: -10px;
    top: 10px;
    margin-left: auto;
}

/* marquee */
.client-marquee {
    max-width: none;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 80px 0 100px;
    background: white;
    text-align: center;
    overflow: hidden;
    padding-top: 0;
}

.client-marquee__title {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.3;
    text-align: left;
    color: black;
    padding-left: 87px;
    margin-bottom: 40px;
}

.client-marquee__title span {
    font-weight: 700;
    color: #6f7362;
}

.client-marquee__viewport {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.client-marquee__track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
    -webkit-animation: marquee-scroll 40s linear infinite !important;
    animation: marquee-scroll 40s linear infinite !important;
}

.client-marquee__item {
    flex: 0 0 auto;
    width: 120px;
    height: 70px;
    margin: 0 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-marquee__item img {
    max-width: 100%;
    max-height: 50px;
    filter: grayscale(0%);
    opacity: 1;
    transition: filter .3s ease, opacity .3s ease, transform .3s ease;
}

.client-marquee__item img:hover {
    filter: grayscale(100%);
    opacity: .7;
    transform: scale(1.05);
}

.client-marquee__track:hover {
    animation-play-state: paused;
}

@-webkit-keyframes marquee-scroll {
    0% {
        -webkit-transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-50%);
    }
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.nav-toggle-checkbox {
    display: none;
}

.navbar-toggler {
    display: none;
    width: 26px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.navbar-toggler-icon {
    position: absolute;
    top: 9px;
    left: 0;
    width: 26px;
    height: 2px;
    background: #fff;
    transition: background .3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 26px;
    height: 2px;
    background: #fff;
    transition: transform .3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

.nav-toggle-checkbox:checked~.navbar-toggler .navbar-toggler-icon {
    background: transparent;
}

.nav-toggle-checkbox:checked~.navbar-toggler .navbar-toggler-icon::before {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle-checkbox:checked~.navbar-toggler .navbar-toggler-icon::after {
    transform: translateY(-8px) rotate(-45deg);
}

.about-maintopic {
    font-size: 50px;
    text-align: left;
    max-width: 750px;
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    margin: 0;
}


/* Extra large devices (large laptops and desktops) > 1200 */
@media only screen and (min-width: 1200px) {}

/* Width 1025px to 1199px */
@media screen and (max-width: 1199px) {
    .container {
        padding: 0 40px;
    }

    .about-maintopic {
        font-size: 42px;
        max-width: 600px;
    }


    .creative-design-content {
        gap: 50px;
    }

    .creative-design-content .col-lg-6 {
        flex: 0 0 calc(50% - 25px);
        max-width: calc(50% - 25px);
        width: calc(50% - 25px);
    }

    .creative-image img {
        height: 380px;
    }
}

/* iPads (landscape) 992px to 1024px */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .about-maintopic {
        font-size: 38px;
        max-width: 520px;
        top: -80px;
    }

    .creative-design-content {
        gap: 30px;
    }

    .creative-design-content .col-lg-6 {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
        width: calc(50% - 15px);
    }

    .creative-image img {
        width: 100%;
        height: 340px;
    }

    .creative-text {
        position: relative;
        padding-right: 150px;
    }

    .CTA-button {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        margin-bottom: 0;
    }

    .CTA-button .button {
        white-space: nowrap;
    }

    .creative-text p {
        max-width: 100%;
    }

    .about-maintopic {
        font-size: 34px;
        max-width: 420px;
        line-height: 1.3;
        top: 45px;
    }

    .creative-design-content {
        margin-bottom: 60px;
    }
}

/* iPads (portrait) - 768px to 991px */
@media screen and (max-width: 991px) {
    .container {
        padding: 0 24px;
    }

    .about-maintopic {
        font-size: 34px;
        max-width: 420px;
        line-height: 1.3;
    }

    .creative-design-content {
        flex-wrap: wrap;
    }

    .creative-text {
        position: relative;
        padding-right: 150px;
    }

    .creative-text p {
        margin-bottom: 0;
    }

    .CTA-button {
        position: absolute;
        top: 4px;
        right: 0;
        margin-bottom: 0;
    }

    .CTA-button .button {
        white-space: nowrap;
    }

    .design-services {
        margin-top: 20px;
    }

    .navbar-toggler {
        display: block;
        position: relative;
        z-index: 1100;
    }

    .nav-bar {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        width: min(70vw, 320px);
        height: 100vh;
        background: #0a0a0a;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 0;
        padding: 0 40px;
        transform: translateX(100%);
        transition: transform .35s ease;
        z-index: 1050;
    }

    .nav-toggle-checkbox:checked~.nav-bar {
        transform: translateX(0);
    }

    .nav-bar a {
        color: #ffffff;
        margin: 0;
        padding: 16px 0;
        font-size: 18px;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .creative-design-content .col-lg-6,
    .creative-design-content:nth-of-type(even) .col-lg-6:first-child,
    .creative-design-content:nth-of-type(even) .col-lg-6:last-child {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        order: initial;
    }

    .creative-design-content .col-lg-6:first-child {
        order: 1;
    }

    .creative-design-content .col-lg-6:last-child {
        order: 2;
    }

    .creative-image img {
        width: 100%;
        height: 320px;
    }

    section {
        padding: 50px 20px;
    }
}

/* Smartphones (landscape) 481px to 767px */
@media screen and (max-width: 767px) {

    .container {
        padding: 0 var(--mobile-gutter);
    }


    .about-maintopic {
        font-size: 28px;
        max-width: 100%;
        letter-spacing: -0.01em;
        line-height: 1.2;
    }

    .creative-image img {
        height: 280px;
        border-radius: 20px;
    }


    .creative-text {
        position: static;
        padding-right: 0;
        display: flex;
        flex-direction: column;
    }

    .creative-text p {
        order: 1;
        width: 100%;
        max-width: 100%;
        margin-bottom: 0;
    }

    .design-services {
        order: 2;
    }

    .CTA-button {
        order: 3;
        position: static;
        top: auto;
        right: auto;
        transform: none;
        margin-top: 20px;
        margin-bottom: 0;
    }

    .CTA-button .button {
        display: inline-block;
    }


    .design-services li {
        font-size: 11px;
    }

    .CTA-button .button {
        padding: 10px 22px;
        font-size: 11px;
    }
}

/* Smartphones (portrait) < 480px */
@media screen and (max-width: 480px) {
    :root {
        --mobile-gutter: 16px;
    }

    .logo img {
        width: 90px;
    }

    .container {
        padding: 0 var(--mobile-gutter);
    }

    .about-maintopic {
        font-size: 22px;
        letter-spacing: -0.005em;
        line-height: 1.3;
        max-width: 220px;
        text-align: left;
    }

    .creative-image img {
        height: 220px;
        border-radius: 16px;
    }

    .creative-text {
        position: static;
        padding-right: 0;
        display: flex;
        flex-direction: column;
    }

    .creative-text p {
        order: 1;
        width: 100%;
        max-width: 100%;
        font-size: 13px;
        line-height: 1.7;
        text-align: left;
        margin-bottom: 0;
    }

    .design-services {
        order: 2;
        margin-top: 16px;
    }

    .CTA-button {
        order: 3;
        position: static;
        top: auto;
        right: auto;
        transform: none;
        margin-top: 18px;
        margin-bottom: 0;
    }

    .CTA-button .button {
        display: inline-block;
        text-align: center;
        padding: 12px 24px;
    }

    .design-services {
        padding-top: 14px;
        margin-top: 16px;
    }

    .design-services li {
        font-size: 10px;
        padding: 4px 0;
    }

    .CTA-button .button {
        display: block;
        text-align: center;
        padding: 12px 16px;
    }
}