/* ==========================================================
   PORTFOLIO PAGE
   THE DIGITAL CAFE
========================================================== */

.tdc-portfolio-page {

    --tdc-orange: #f26322;
    --tdc-orange-dark: #d94f12;
    --tdc-orange-soft: #fff2ea;

    --tdc-dark: #111111;
    --tdc-text: #69635f;
    --tdc-border: #e5dfda;
    --tdc-bg: #f8f7f4;

    width: 100%;
    overflow: hidden;
}


.tdc-portfolio-page *,
.tdc-portfolio-page *::before,
.tdc-portfolio-page *::after {
    box-sizing: border-box;
}


/* ==========================================================
   CONTAINER
========================================================== */

.tdc-portfolio-container {

    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;
}


/* ==========================================================
   SECTION 01 — PORTFOLIO HERO
========================================================== */

.tdc-portfolio-hero {

    position: relative;

    display: flex;
    align-items: center;

    min-height: 570px;

    padding: 55px 0;

    background:

        radial-gradient(
            circle at 80% 45%,
            rgba(242, 99, 34, .09),
            transparent 28%
        ),

        linear-gradient(
            135deg,
            #ffffff 0%,
            #ffffff 58%,
            #faf7f4 100%
        );

    overflow: hidden;
}


/* BACKGROUND DECORATION */

.tdc-portfolio-hero::before {

    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    right: -240px;
    top: -230px;

    border: 1px solid rgba(242, 99, 34, .10);

    border-radius: 50%;
}


.tdc-portfolio-hero::after {

    content: "";

    position: absolute;

    width: 8px;
    height: 8px;

    left: 7%;
    bottom: 15%;

    background: var(--tdc-orange);

    border-radius: 50%;

    opacity: .25;

    box-shadow:
        130px -350px 0 rgba(242, 99, 34, .13),
        540px -20px 0 rgba(242, 99, 34, .12);
}


/* ==========================================================
   HERO GRID
========================================================== */

.tdc-portfolio-hero-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(420px, .92fr)
        minmax(520px, 1.08fr);

    align-items: center;

    gap: 70px;
}


/* ==========================================================
   LEFT CONTENT
========================================================== */

.tdc-portfolio-hero-content {

    position: relative;

    z-index: 5;

    max-width: 550px;
}


/* ==========================================================
   EYEBROW
========================================================== */

.tdc-portfolio-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 13px;

    color: var(--tdc-orange);

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: .7px;

    text-transform: uppercase;
}


.tdc-portfolio-eyebrow i {

    width: 29px;
    height: 29px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    background: var(--tdc-orange-soft);

    border-radius: 50%;

    font-size: 11px;
}


/* ==========================================================
   HEADING
========================================================== */

.tdc-portfolio-title {

    margin: 0 0 15px;

    color: var(--tdc-dark);

    font-size: clamp(40px, 4vw, 56px);
    line-height: 1.08;
    font-weight: 750;

    letter-spacing: -1.7px;
}


.tdc-portfolio-title span {

    display: block;

    margin-top: 3px;

    color: var(--tdc-orange);
}


/* ==========================================================
   DESCRIPTION
========================================================== */

.tdc-portfolio-intro {

    max-width: 530px;

    margin: 0;

    color: var(--tdc-text);

    font-size: 16px;
    line-height: 1.7;
}


/* ==========================================================
   BRAND STATEMENT
========================================================== */

.tdc-portfolio-statement {

    display: flex;

    align-items: center;

    gap: 11px;

    max-width: 490px;

    margin-top: 18px;

    padding: 11px 13px;

    background: #faf8f6;

    border: 1px solid #ebe5e0;
    border-radius: 7px;
}


.tdc-portfolio-statement-icon {

    width: 37px;
    height: 37px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    background: var(--tdc-orange-soft);

    border-radius: 50%;

    color: var(--tdc-orange);

    font-size: 11px;
}


.tdc-portfolio-statement p {

    margin: 0;

    color: #77706b;

    font-size: 13px;
    line-height: 1.5;
}


.tdc-portfolio-statement strong {

    color: #24211f;
}


/* ==========================================================
   CTA
========================================================== */

.tdc-portfolio-actions {

    margin-top: 20px;
}


.tdc-portfolio-btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 46px;

    padding: 11px 17px;

    background: var(--tdc-orange);

    border: 1px solid var(--tdc-orange);
    border-radius: 6px;

    color: #ffffff;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 7px 18px rgba(242, 99, 34, .17);

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}


.tdc-portfolio-btn:hover {

    background: var(--tdc-orange-dark);

    border-color: var(--tdc-orange-dark);

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 10px 23px rgba(242, 99, 34, .23);
}


.tdc-portfolio-btn i {

    font-size: 10px;

    transition: transform .3s ease;
}


.tdc-portfolio-btn:hover i {

    transform: translateY(3px);
}


/* ==========================================================
   RIGHT VISUAL
========================================================== */

.tdc-portfolio-visual {

    position: relative;

    width: 100%;
    height: 450px;

    display: flex;

    align-items: center;
    justify-content: center;
}


/* ==========================================================
   ORBITS
========================================================== */

.tdc-portfolio-orbit {

    position: absolute;

    left: 50%;
    top: 50%;

    border-radius: 50%;

    pointer-events: none;

    transform: translate(-50%, -50%);
}


.tdc-portfolio-orbit-one {

    width: 420px;
    height: 420px;

    border: 1px dashed #ded5ce;

    animation:
        tdcPortfolioOrbit 38s linear infinite;
}


.tdc-portfolio-orbit-two {

    width: 350px;
    height: 350px;

    border: 1px solid rgba(242, 99, 34, .09);

    box-shadow:
        0 0 0 35px rgba(242, 99, 34, .018);
}


@keyframes tdcPortfolioOrbit {

    from {

        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }

    to {

        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }

}


/* ==========================================================
   DIGITAL MENU BOARD
========================================================== */

.tdc-portfolio-menu {

    position: relative;

    z-index: 4;

    width: min(100%, 430px);

    padding: 20px;

    background:
        linear-gradient(
            145deg,
            #171717,
            #0e0e0e
        );

    border: 6px solid #ffffff;

    border-radius: 12px;

    box-shadow:
        0 24px 55px rgba(23, 16, 12, .20),
        0 0 0 1px rgba(0, 0, 0, .04);

    transform: rotate(1.5deg);

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}


.tdc-portfolio-menu:hover {

    transform:
        rotate(0deg)
        translateY(-4px);

    box-shadow:
        0 28px 65px rgba(23, 16, 12, .25);
}


/* ==========================================================
   MENU HEADER
========================================================== */

.tdc-portfolio-menu-head {

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-bottom: 13px;

    border-bottom:
        1px solid rgba(255, 255, 255, .10);
}


.tdc-portfolio-menu-head > div > span {

    display: block;

    margin-bottom: 2px;

    color: var(--tdc-orange);

    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: .7px;

    text-transform: uppercase;
}


.tdc-portfolio-menu-head h2 {

    margin: 0;

    color: #ffffff;

    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
}


/* ==========================================================
   FRESH STATUS
========================================================== */

.tdc-portfolio-menu-status {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 5px 9px;

    background: rgba(242, 99, 34, .09);

    border: 1px solid rgba(242, 99, 34, .20);
    border-radius: 20px;

    color: #ff9565;

    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}


.tdc-portfolio-menu-status i {

    position: relative;

    width: 6px;
    height: 6px;

    background: var(--tdc-orange);

    border-radius: 50%;
}


.tdc-portfolio-menu-status i::after {

    content: "";

    position: absolute;

    inset: -3px;

    border: 1px solid rgba(242, 99, 34, .40);

    border-radius: 50%;

    animation:
        tdcPortfolioPulse 1.8s ease-out infinite;
}


@keyframes tdcPortfolioPulse {

    0% {

        opacity: 1;

        transform: scale(.7);
    }

    100% {

        opacity: 0;

        transform: scale(1.8);
    }

}


/* ==========================================================
   MENU LIST
========================================================== */

.tdc-portfolio-menu-list {

    display: grid;

    gap: 5px;

    padding: 12px 0;
}


/* ==========================================================
   MENU ITEM
========================================================== */

.tdc-portfolio-menu-item {

    display: grid;

    grid-template-columns:
        22px
        33px
        minmax(0, 1fr)
        24px;

    align-items: center;

    gap: 8px;

    min-height: 43px;

    padding: 5px 8px;

    border: 1px solid transparent;
    border-radius: 6px;

    opacity: 0;

    transform: translateX(15px);

    animation:
        tdcPortfolioMenuIn .55s ease forwards;

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}


.tdc-portfolio-menu-item:nth-child(1) {
    animation-delay: .15s;
}

.tdc-portfolio-menu-item:nth-child(2) {
    animation-delay: .30s;
}

.tdc-portfolio-menu-item:nth-child(3) {
    animation-delay: .45s;
}

.tdc-portfolio-menu-item:nth-child(4) {
    animation-delay: .60s;
}

.tdc-portfolio-menu-item:nth-child(5) {
    animation-delay: .75s;
}

.tdc-portfolio-menu-item:nth-child(6) {
    animation-delay: .90s;
}


@keyframes tdcPortfolioMenuIn {

    to {

        opacity: 1;

        transform: translateX(0);
    }

}


.tdc-portfolio-menu-item:hover {

    background: rgba(255, 255, 255, .045);

    border-color: rgba(255, 255, 255, .07);

    transform: translateX(3px);
}


/* NUMBER */

.tdc-portfolio-menu-number {

    color: #56514e;

    font-size: 9px;
    line-height: 1.4;
    font-weight: 700;
}


/* ICON */

.tdc-portfolio-menu-icon {

    width: 31px;
    height: 31px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(242, 99, 34, .09);

    border-radius: 50%;

    color: var(--tdc-orange);

    font-size: 10px;

    transition:
        background .3s ease,
        color .3s ease;
}


.tdc-portfolio-menu-item:hover
.tdc-portfolio-menu-icon {

    background: var(--tdc-orange);

    color: #ffffff;
}


/* SERVICE */

.tdc-portfolio-menu-item strong {

    color: #dedad7;

    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
}


/* CHECK */

.tdc-portfolio-menu-check {

    width: 20px;
    height: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(61, 169, 91, .10);

    border-radius: 50%;

    color: #55b970;

    font-size: 7px;
}


/* ==========================================================
   MENU FOOTER
========================================================== */

.tdc-portfolio-menu-footer {

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding-top: 12px;

    border-top:
        1px solid rgba(255, 255, 255, .10);
}


.tdc-portfolio-menu-footer > div > span {

    display: block;

    margin-bottom: 1px;

    color: #625e5a;

    font-size: 9px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}


.tdc-portfolio-menu-footer > div > strong {

    display: block;

    color: #ffffff;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 600;
}


/* FRESHLY BREWED */

.tdc-portfolio-fresh {

    display: inline-flex;

    align-items: center;

    gap: 5px;

    flex: 0 0 auto;

    color: var(--tdc-orange);

    font-size: 9px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}


.tdc-portfolio-fresh i {

    font-size: 10px;

    animation:
        tdcPortfolioCup 3s ease-in-out infinite;
}


@keyframes tdcPortfolioCup {

    0%,
    100% {

        transform: translateY(0);
    }

    50% {

        transform: translateY(-3px);
    }

}


/* ==========================================================
   FLOATING TAGS
========================================================== */

.tdc-portfolio-tag {

    position: absolute;

    z-index: 6;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 55px;
    min-height: 31px;

    padding: 6px 10px;

    background: #ffffff;

    border: 1px solid #e4ddd7;
    border-radius: 20px;

    color: #3a3531;

    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;

    box-shadow:
        0 7px 20px rgba(29, 20, 15, .07);

    animation:
        tdcPortfolioTagFloat 4s ease-in-out infinite;
}


.tdc-portfolio-tag::before {

    content: "";

    width: 5px;
    height: 5px;

    margin-right: 6px;

    background: var(--tdc-orange);

    border-radius: 50%;
}


.tdc-portfolio-tag-one {

    left: 1px;
    top: 60px;

    animation-delay: 0s;
}


.tdc-portfolio-tag-two {

    right: 0;
    top: 105px;

    animation-delay: .9s;
}


.tdc-portfolio-tag-three {

    right: 20px;
    bottom: 45px;

    animation-delay: 1.7s;
}


@keyframes tdcPortfolioTagFloat {

    0%,
    100% {

        transform: translateY(0);
    }

    50% {

        transform: translateY(-6px);
    }

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1100px) {

    .tdc-portfolio-hero {

        min-height: auto;

        padding: 55px 0;
    }


    .tdc-portfolio-hero-grid {

        grid-template-columns:
            minmax(350px, .9fr)
            minmax(430px, 1.1fr);

        gap: 35px;
    }


    .tdc-portfolio-visual {

        height: 420px;
    }


    .tdc-portfolio-menu {

        width: min(100%, 400px);
    }


    .tdc-portfolio-orbit-one {

        width: 370px;
        height: 370px;
    }


    .tdc-portfolio-orbit-two {

        width: 310px;
        height: 310px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .tdc-portfolio-container {

        width: min(100% - 30px, 1180px);
    }


    .tdc-portfolio-hero {

        min-height: auto;

        padding: 42px 0 38px;
    }


    .tdc-portfolio-hero-grid {

        grid-template-columns: 1fr;

        gap: 30px;
    }


    /* CONTENT */

    .tdc-portfolio-hero-content {

        max-width: 100%;
    }


    .tdc-portfolio-eyebrow {

        margin-bottom: 10px;

        font-size: 12px;
    }


    .tdc-portfolio-title {

        margin-bottom: 13px;

        font-size: 36px;
        line-height: 1.08;

        letter-spacing: -1px;
    }


    .tdc-portfolio-intro {

        font-size: 16px;
        line-height: 1.55;
    }


    .tdc-portfolio-statement {

        margin-top: 15px;

        padding: 10px;
    }


    .tdc-portfolio-statement p {

        font-size: 13px;
    }


    .tdc-portfolio-btn {

        width: 100%;
    }


    /* VISUAL */

    .tdc-portfolio-visual {

        max-width: 440px;

        height: auto;

        margin: 0 auto;

        padding: 25px 0 30px;
    }


    .tdc-portfolio-orbit {

        display: none;
    }


    .tdc-portfolio-menu {

        width: calc(100% - 12px);

        padding: 16px;

        border-width: 4px;

        transform: none;
    }


    .tdc-portfolio-menu:hover {

        transform: translateY(-3px);
    }


    .tdc-portfolio-menu-head h2 {

        font-size: 20px;
    }


    .tdc-portfolio-menu-item {

        grid-template-columns:
            20px
            31px
            minmax(0, 1fr)
            22px;

        gap: 7px;
    }


    .tdc-portfolio-menu-item strong {

        font-size: 13px;
    }


    .tdc-portfolio-menu-footer {

        align-items: flex-start;

        flex-direction: column;

        gap: 7px;
    }


    /* TAGS */

    .tdc-portfolio-tag {

        display: none;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 420px) {

    .tdc-portfolio-title {

        font-size: 32px;
    }


    .tdc-portfolio-menu {

        padding: 14px 12px;
    }


    .tdc-portfolio-menu-status {

        padding: 4px 7px;

        font-size: 9px;
    }


    .tdc-portfolio-menu-item {

        padding-left: 4px;
        padding-right: 4px;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .tdc-portfolio-orbit-one,
    .tdc-portfolio-menu-status i::after,
    .tdc-portfolio-fresh i,
    .tdc-portfolio-tag,
    .tdc-portfolio-menu-item {

        animation: none;
    }


    .tdc-portfolio-menu-item {

        opacity: 1;

        transform: none;
    }

}
/* ==========================================================
   SECTION 02 — CLIENT LOGO WALL
========================================================== */

.tdc-portfolio-clients {
    position: relative;
    width: 100%;
    padding: 55px 0 65px;
    background: #f8f7f4;
    overflow: hidden;
}


/* ==========================================================
   BACKGROUND DETAILS
========================================================== */

.tdc-portfolio-clients::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -270px;
    top: -260px;
    border: 1px solid rgba(242, 99, 34, .08);
    border-radius: 50%;
    pointer-events: none;
}


.tdc-portfolio-clients::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    left: -210px;
    bottom: -210px;
    background:
        radial-gradient(
            circle,
            rgba(242, 99, 34, .07),
            transparent 68%
        );
    border-radius: 50%;
    pointer-events: none;
}


/* ==========================================================
   SECTION INTRO
========================================================== */

.tdc-portfolio-section-head {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto 30px;
    text-align: center;
}


/* LABEL */

.tdc-portfolio-section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;

    color: var(--tdc-orange);

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: .65px;
    text-transform: uppercase;
}


.tdc-portfolio-section-label i {
    font-size: 11px;
}


/* HEADING */

.tdc-portfolio-section-head h2 {
    margin: 0 0 10px;

    color: var(--tdc-dark);

    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;

    letter-spacing: -.5px;
}


.tdc-portfolio-section-head h2 span {
    color: var(--tdc-orange);
}


/* DESCRIPTION */

.tdc-portfolio-section-head > p {
    max-width: 650px;
    margin: 0 auto;

    color: var(--tdc-text);

    font-size: 16px;
    line-height: 1.6;
}


/* ==========================================================
   LOGO GRID
========================================================== */

.tdc-portfolio-logo-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 12px;

    max-width: 1050px;
    margin: 0 auto;
}


/* ==========================================================
   LOGO CARD
========================================================== */

.tdc-portfolio-logo-card {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 0;
    height: 125px;

    padding: 22px 25px;

    background: #ffffff;

    border: 1px solid #e6e0db;
    border-radius: 8px;

    overflow: hidden;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}


/* ORANGE BOTTOM LINE */

.tdc-portfolio-logo-card::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 0;
    height: 3px;

    background: var(--tdc-orange);

    transform: translateX(-50%);

    transition: width .35s ease;
}


/* SUBTLE CORNER DETAIL */

.tdc-portfolio-logo-card::before {
    content: "";

    position: absolute;

    right: -25px;
    top: -25px;

    width: 55px;
    height: 55px;

    background: var(--tdc-orange-soft);

    border-radius: 50%;

    opacity: 0;

    transform: scale(.5);

    transition:
        opacity .3s ease,
        transform .3s ease;
}


/* ==========================================================
   LOGO IMAGE
========================================================== */

.tdc-portfolio-logo-card img {
    position: relative;
    z-index: 2;

    display: block;

    width: auto;
    height: auto;

    max-width: 82%;
    max-height: 68px;

    object-fit: contain;

    filter: grayscale(100%);

    opacity: .68;

    transition:
        filter .35s ease,
        opacity .35s ease,
        transform .35s ease;
}


/* ==========================================================
   CARD HOVER
========================================================== */

.tdc-portfolio-logo-card:hover {
    background: #ffffff;

    border-color: #ddd4cd;

    transform: translateY(-4px);

    box-shadow:
        0 12px 28px rgba(29, 20, 15, .07);
}


.tdc-portfolio-logo-card:hover::after {
    width: 45px;
}


.tdc-portfolio-logo-card:hover::before {
    opacity: 1;

    transform: scale(1);
}


.tdc-portfolio-logo-card:hover img {
    filter: grayscale(0%);

    opacity: 1;

    transform: scale(1.04);
}


/* ==========================================================
   BOTTOM MESSAGE
========================================================== */

.tdc-portfolio-clients-bottom {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    max-width: 700px;

    margin: 23px auto 0;

    text-align: center;
}


/* ICON */

.tdc-portfolio-clients-bottom > span {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    background: var(--tdc-orange-soft);

    border-radius: 50%;

    color: var(--tdc-orange);

    font-size: 11px;
}


/* TEXT */

.tdc-portfolio-clients-bottom p {
    margin: 0;

    color: #77706b;

    font-size: 14px;
    line-height: 1.5;
}


.tdc-portfolio-clients-bottom strong {
    color: #24211f;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 950px) {

    .tdc-portfolio-logo-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        max-width: 800px;
    }


    .tdc-portfolio-logo-card {
        height: 120px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .tdc-portfolio-clients {
        padding: 44px 0 52px;
    }


    /* INTRO */

    .tdc-portfolio-section-head {
        margin-bottom: 23px;

        text-align: left;
    }


    .tdc-portfolio-section-label {
        font-size: 12px;
    }


    .tdc-portfolio-section-head h2 {
        font-size: 24px;
        line-height: 1.25;
    }


    .tdc-portfolio-section-head > p {
        font-size: 16px;
        line-height: 1.5;
    }


    /* LOGOS */

    .tdc-portfolio-logo-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 9px;
    }


    .tdc-portfolio-logo-card {
        height: 105px;

        padding: 18px 15px;
    }


    .tdc-portfolio-logo-card img {
        max-width: 85%;
        max-height: 57px;
    }


    /* BOTTOM */

    .tdc-portfolio-clients-bottom {
        align-items: flex-start;
        justify-content: flex-start;

        margin-top: 20px;

        text-align: left;
    }


    .tdc-portfolio-clients-bottom p {
        font-size: 14px;
        line-height: 1.5;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 400px) {

    .tdc-portfolio-logo-grid {
        gap: 7px;
    }


    .tdc-portfolio-logo-card {
        height: 95px;

        padding: 14px 12px;
    }


    .tdc-portfolio-logo-card img {
        max-width: 88%;
        max-height: 50px;
    }

}


/* ==========================================================
   TOUCH DEVICES
========================================================== */

@media (hover: none) {

    .tdc-portfolio-logo-card img {
        filter: grayscale(0%);
        opacity: 1;
    }

}