/* =========================================================
   MAD MARKETING INTERACTIVE BANNER
========================================================= */

.mad-marketing-banner {

    position: relative;

    width: 100%;

    height: 377px;

    overflow: hidden;

    background: #ED1C24;

    display: flex;

    align-items: center;

    justify-content: center;

    isolation: isolate;

    transition:
        background-color 0.6s ease;
}


/* =========================================================
   BANNER CONTENT
========================================================= */

.banner-content {

    position: relative;

    z-index: 10;

    width: 100%;

    max-width: 1100px;

    margin: 0 auto;

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 3px;

    transition:
        transform 0.5s ease;
}


/* =========================================================
   EACH TEXT LINE
========================================================= */

.banner-line {

    position: relative;

    display: flex;

    align-items: baseline;

    justify-content: center;

    flex-wrap: nowrap;

    white-space: nowrap;

    line-height: 1.05;

}


/* =========================================================
   NORMAL TEXT
========================================================= */

.normal-text {

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(42px, 4.5vw, 68px);

    font-weight: 300;

    letter-spacing: 1px;

    color: #080808;
}


/* =========================================================
   BOLD INTERACTIVE TEXT
========================================================= */

.interactive-word {

    position: relative;

    display: inline-block;

    margin-left: 10px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(42px, 4.5vw, 68px);

    font-weight: 800;

    letter-spacing: -1.5px;

    color: #050505;

    cursor: pointer;

    z-index: 20;

    transition:
        color 0.35s ease,
        transform 0.35s ease,
        background-color 0.35s ease;
}


/* =========================================================
   SECOND + THIRD LINES
========================================================= */

.banner-line-two .normal-text,
.banner-line-three .normal-text {

    font-size: clamp(38px, 4vw, 58px);
}


.banner-line-two .interactive-word,
.banner-line-three .interactive-word {

    font-size: clamp(38px, 4vw, 58px);
}


/* =========================================================
   QUOTE
========================================================= */

.quote-mark {

    position: absolute;

    right: -52px;

    top: -22px;

    font-family: Georgia, serif;

    font-size: 105px;

    line-height: 1;

    font-weight: 900;

    color: #050505;

    pointer-events: none;
}


/* =========================================================
   CHARACTER BASE
========================================================= */

.banner-character {

    position: absolute;

    z-index: 15;

    pointer-events: none;

    object-fit: contain;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.55s ease,
        transform 0.65s cubic-bezier(.22,1,.36,1),
        visibility 0.55s ease;
}


/* =========================================================
   MAD CHARACTER
========================================================= */

.mad-character {

    width: 190px;

    height: auto;

    left: 80px;

    bottom: 0;

    transform:
        translateX(-35px)
        translateY(20px)
        rotate(-2deg);
}


/* =========================================================
   REAL RESULT CHARACTER
========================================================= */

.real-result-character {

    width: 390px;

    height: auto;

    left: 105px;

    bottom: -10px;

    transform:
        translateX(-50px)
        scale(.95);
}


/* =========================================================
   BIGGER CHARACTER
========================================================= */

.bigger-character {

    width: 285px;

    height: auto;

    right: 130px;

    bottom: 0;

    transform:
        translateX(50px)
        translateY(20px);
}


/* =========================================================
   RED SHAPE
========================================================= */

.banner-red-shape {

    position: absolute;

    z-index: 1;

    left: -30px;

    top: 0;

    width: 285px;

    height: 100%;

    background: #f51d1d;

    clip-path: polygon(
        0 0,
        100% 0,
        100% 66%,
        45% 100%,
        0 100%
    );

    opacity: 0;

    transform: translateX(-80px);

    transition:
        opacity 0.55s ease,
        transform 0.65s cubic-bezier(.22,1,.36,1);
}


/* =========================================================
   CHARACTER VISIBILITY
========================================================= */

.mad-marketing-banner.state-mad .mad-character {

    opacity: 1;

    visibility: visible;

    transform:
        translateX(0)
        translateY(0)
        rotate(-2deg);
}


.mad-marketing-banner.state-result .real-result-character {

    opacity: 1;

    visibility: visible;

    transform:
        translateX(0)
        scale(1);
}


.mad-marketing-banner.state-bigger .bigger-character {

    opacity: 1;

    visibility: visible;

    transform:
        translateX(0)
        translateY(0);
}


/* =========================================================
   DEFAULT STATE
========================================================= */

.mad-marketing-banner:not(
    .state-mad,
    .state-result,
    .state-bigger
) {

    background: #ff6b00;
}


/* =========================================================
   MAD STATE
========================================================= */

.mad-marketing-banner.state-mad {

    background: #cc00ff;
}


/* Yellow highlight behind "Mad for Marketing" */

.mad-marketing-banner.state-mad .mad-word {

    background: #fff200;

    padding:
        5px 9px 7px;

    margin-left: 8px;
}


/* Main character */

.mad-marketing-banner.state-mad .mad-character {

    width: 175px;

    left: 50%;

    bottom: 130px;

    transform:
        translateX(-50%)
        translateY(0)
        rotate(0deg);

    z-index: 25;
}


/* Hide irrelevant text in Mad state */

.mad-marketing-banner.state-mad .banner-line-two,
.mad-marketing-banner.state-mad .banner-line-three {

    display: none;
}


/* =========================================================
   RESULT STATE
========================================================= */

.mad-marketing-banner.state-result {

    background: #dddddd;
}


/* Hide other lines */

.mad-marketing-banner.state-result .banner-line-one,
.mad-marketing-banner.state-result .banner-line-three {

    display: none;
}


/* Center result line */

.mad-marketing-banner.state-result .banner-line-two {

    transform:
        translateX(30px);
}


/* Yellow result highlight */

.mad-marketing-banner.state-result .result-word {

    background: #fff200;

    padding:
        5px 12px 7px;
}


/* Character left */

.mad-marketing-banner.state-result .real-result-character {

    width: 390px;

    left: 85px;

    bottom: -12px;

    transform:
        translateX(0)
        scale(1);
}


/* =========================================================
   BIGGER STATE
========================================================= */

.mad-marketing-banner.state-bigger {

    background: #ffffff;
}


/* Hide other lines */

.mad-marketing-banner.state-bigger .banner-line-one,
.mad-marketing-banner.state-bigger .banner-line-two {

    display: none;
}


/* Bigger line */

.mad-marketing-banner.state-bigger .banner-line-three {

    transform:
        translateX(30px);
}


/* Yellow highlight */

.mad-marketing-banner.state-bigger .bigger-word {

    background: #fff200;

    padding:
        5px 12px 7px;
}


/* Red shape */

.mad-marketing-banner.state-bigger .banner-red-shape {

    opacity: 1;

    transform: translateX(0);
}


/* Bigger character */

.mad-marketing-banner.state-bigger .bigger-character {

    width: 285px;

    right: 130px;

    bottom: 0;

    transform:
        translateX(0)
        translateY(0);
}


/* =========================================================
   HOVER EFFECT
========================================================= */

.interactive-word:hover {

    transform:
        translateY(-2px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .mad-marketing-banner {

        height: 330px;
    }


    .banner-content {

        padding: 0 25px;
    }


    .normal-text {

        font-size: clamp(28px, 7vw, 48px);
    }


    .interactive-word {

        font-size: clamp(28px, 7vw, 48px);
    }


    .banner-line-two .normal-text,
    .banner-line-three .normal-text {

        font-size: clamp(27px, 6.5vw, 44px);
    }


    .banner-line-two .interactive-word,
    .banner-line-three .interactive-word {

        font-size: clamp(27px, 6.5vw, 44px);
    }


    .quote-mark {

        right: -32px;

        top: -15px;

        font-size: 65px;
    }


    .mad-character {

        width: 125px;

        left: 20px;
    }


    .real-result-character {

        width: 260px;

        left: 10px;
    }


    .bigger-character {

        width: 200px;

        right: 10px;
    }


    .mad-marketing-banner.state-mad .mad-character {

        width: 125px;

        bottom: 150px;
    }


    .mad-marketing-banner.state-result .real-result-character {

        width: 260px;

        left: 0;
    }


    .mad-marketing-banner.state-bigger .bigger-character {

        width: 190px;

        right: 0;
    }


    .banner-red-shape {

        width: 190px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

    .mad-marketing-banner {

        height: 300px;
    }


    .banner-content {

        padding: 0 15px;
    }


    .banner-line {

        white-space: normal;

        flex-wrap: wrap;

        justify-content: center;
    }


    .normal-text,
    .interactive-word {

        font-size: 30px;
    }


    .banner-line-two .normal-text,
    .banner-line-two .interactive-word,
    .banner-line-three .normal-text,
    .banner-line-three .interactive-word {

        font-size: 28px;
    }


    .quote-mark {

        right: -22px;

        top: -15px;

        font-size: 50px;
    }


    .mad-marketing-banner.state-mad .mad-character {

        width: 105px;

        bottom: 170px;
    }


    .mad-marketing-banner.state-result .real-result-character {

        width: 210px;

        left: -15px;
    }


    .mad-marketing-banner.state-result .banner-line-two {

        transform:
            translateX(20px);
    }


    .mad-marketing-banner.state-bigger .bigger-character {

        width: 150px;

        right: -5px;
    }


    .mad-marketing-banner.state-bigger .banner-line-three {

        transform:
            translateX(0);
    }


    .banner-red-shape {

        width: 130px;
    }
}


/* =========================================================
   WORK SHOWCASE SECTION
========================================================= */

.work-showcase {

    width: 100%;

    min-height: 520px;

    display: grid;

    grid-template-columns: 51% 49%;

    overflow: hidden;

    background: #ffffff;
}


/* =========================================================
   LEFT PANEL
========================================================= */

.work-list-panel {

    background: #650000;

    min-height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 50px 30px;
}


/* =========================================================
   WORK LIST
========================================================= */

.work-list {

    width: 100%;

    max-width: 420px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;
}


/* =========================================================
   WORK ITEM
========================================================= */

.work-item {

    position: relative;

    border: none;

    outline: none;

    background: transparent;

    color: transparent;

    -webkit-text-stroke: 1.2px #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 21px;

    font-weight: 700;

    letter-spacing: 0.3px;

    line-height: 1.35;

    padding: 3px 15px;

    cursor: pointer;

    transition:
        color 0.3s ease,
        -webkit-text-stroke 0.3s ease,
        transform 0.3s ease,
        letter-spacing 0.3s ease;
}


/* =========================================================
   HOVER
========================================================= */

.work-item:hover {

    color: #ffffff;

    -webkit-text-stroke: 0;

    transform: translateX(5px);

    letter-spacing: 0.7px;
}


/* =========================================================
   ACTIVE ITEM
========================================================= */

.work-item.active {

    color: #ffffff;

    -webkit-text-stroke: 0;

    transform: scale(1.03);
}


/* =========================================================
   ACTIVE INDICATOR
========================================================= */

.work-item.active::before {

    content: "";

    position: absolute;

    left: -18px;

    top: 50%;

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: #ffffff;

    transform: translateY(-50%);

    box-shadow:
        0 0 8px rgba(255, 255, 255, 0.8);
}


/* =========================================================
   RIGHT PANEL
========================================================= */

.work-preview-panel {

    background: #ffffff;

    min-height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 35px;
}


/* =========================================================
   PREVIEW CONTAINER
========================================================= */

.work-preview {

    width: 100%;

    max-width: 430px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;
}


/* =========================================================
   TITLE
========================================================= */

.work-preview-title {

    margin: 0 0 14px;

    color: #d6a900;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 24px;

    font-weight: 800;

    letter-spacing: 0.5px;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


/* =========================================================
   IMAGE WRAPPER
========================================================= */

.work-image-wrapper {

    width: 350px;

    height: 395px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background: #f5f5f5;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.14);
}


/* =========================================================
   PREVIEW IMAGE
========================================================= */

.work-preview-image {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    opacity: 1;

    transform: scale(1);

    transition:
        opacity 0.35s ease,
        transform 0.5s ease;
}


/* =========================================================
   CAPTION
========================================================= */

.work-preview-caption {

    margin: 14px 0 0;

    color: #777777;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;

    font-weight: 400;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


/* =========================================================
   IMAGE CHANGE ANIMATION
========================================================= */

.work-preview-image.image-changing {

    opacity: 0;

    transform: scale(1.04);
}


.work-preview-title.content-changing,
.work-preview-caption.content-changing {

    opacity: 0;

    transform: translateY(5px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .work-showcase {

        grid-template-columns: 45% 55%;
    }


    .work-list-panel {

        min-height: 480px;

        padding: 35px 15px;
    }


    .work-item {

        font-size: 17px;

        -webkit-text-stroke: 1px #ffffff;
    }


    .work-preview-panel {

        min-height: 480px;

        padding: 25px 15px;
    }


    .work-image-wrapper {

        width: 280px;

        height: 350px;
    }


    .work-preview-title {

        font-size: 20px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .work-showcase {

        grid-template-columns: 1fr;

        min-height: auto;
    }


    /* Left */

    .work-list-panel {

        min-height: 380px;

        padding: 45px 15px;
    }


    .work-list {

        gap: 6px;
    }


    .work-item {

        font-size: 19px;

        padding: 3px 10px;
    }


    /* Right */

    .work-preview-panel {

        min-height: 500px;

        padding: 40px 15px;
    }


    .work-image-wrapper {

        width: min(85vw, 350px);

        height: 390px;
    }


    .work-preview-title {

        font-size: 22px;
    }


    .work-preview-caption {

        font-size: 15px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .work-list-panel {

        min-height: 350px;
    }


    .work-item {

        font-size: 17px;
    }


    .work-image-wrapper {

        width: 85vw;

        height: 350px;
    }
}

/*--------------- Three Card Start -----------------*/
/* =========================================================
   CTA CARDS SECTION
========================================================= */

.cta-cards-section {

    width: 100%;

    background: #ffffff;

    padding: 20px 0 30px;

    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.cta-cards-container {
       width: 900px !important;
    max-width: calc(100% - 40px) !important;


    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    align-items: stretch;
}


/* =========================================================
   CARD
========================================================= */

.cta-card {

    position: relative;

    height: 490px !important;

    overflow: hidden;

    border-radius: 30px 0 0 0;

    padding: 30px 16px 0;

    color: #ffffff;

    isolation: isolate;
}


/* =========================================================
   CARD COLORS
========================================================= */

.cta-card-red {
    background: #ca2028;
}

.cta-card-blue {
    background: #087bb9;
}

.cta-card-purple {
    background: #612b7e;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.cta-card-content {

    position: relative;

    z-index: 5;

    width: 100%;
}


/* =========================================================
   CARD HEADING
========================================================= */

.cta-card-content h2 {

    margin: 0;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 20px !important;

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -0.4px;
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.cta-card-content p {

    margin: 18px 0 0;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px !important;

    line-height: 1.3;

    font-weight: 400;
}


/* =========================================================
   ARTWORK AREA
========================================================= */

.cta-card-art {

    position: absolute;

    z-index: 2;

    left: 0;

    right: 0;

    bottom: 0;

    top: 30px;

    width: 100%;

    height: 100%;

    display: flex;

    align-items: flex-end;

    justify-content: center;

    pointer-events: none;
}


/* =========================================================
   ARTWORK
========================================================= */

.cta-card-art img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: contain;

    object-position: center bottom;

    transition:
        transform 0.5s cubic-bezier(.22,1,.36,1);
}


/* =========================================================
   SUBTLE HOVER
========================================================= */

.cta-card:hover .cta-card-art img {

    transform:
        scale(1.03)
        translateY(-3px);
}


/* =========================================================
   DESKTOP LARGE
========================================================= */

@media (min-width: 1100px) {

    .cta-cards-container {

        width: min(780px, calc(100% - 40px));

        gap: 20px;
    }


    .cta-card {

        height: 510px;

        padding: 32px 17px 0;
    }


    .cta-card-content h2 {

        font-size: 18px;
    }


    .cta-card-content p {

        font-size: 14px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .cta-cards-container {

        width: min(650px, calc(100% - 30px));

        gap: 12px;
    }


    .cta-card {

        height: 430px;

        border-radius: 22px 0 0 0;

        padding: 24px 13px 0;
    }


    .cta-card-content h2 {

        font-size: 15px;
    }


    .cta-card-content p {

        font-size: 12px;
    }


    .cta-card-art {

        height: 57%;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .cta-cards-section {

        padding: 15px 0 25px;
    }


    .cta-cards-container {

        width: calc(100% - 24px);

        grid-template-columns: 1fr;

        gap: 15px;
    }


    .cta-card {

        height: 390px;

        border-radius: 25px 0 0 0;

        padding: 28px 20px 0;
    }


    .cta-card-content {

        max-width: 300px;

        margin: 0 auto;
    }


    .cta-card-content h2 {

        font-size: 19px;

        line-height: 1.1;
    }


    .cta-card-content p {

        font-size: 14px;
    }


    .cta-card-art {

        height: 63%;
    }
}



/*--------------- Three Card End ------------------*/

/* =========================================================
   NEWSLETTER POPUP
========================================================= */

.newsletter-overlay {

    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background: rgba(0, 0, 0, 0.72);

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


/* =========================================================
   POPUP OPEN
========================================================= */

.newsletter-overlay.active {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* =========================================================
   POPUP BOX
========================================================= */

.newsletter-popup {

    position: relative;

    width: 500px;

    max-width: 100%;

    min-height: 286px;

    padding: 38px 40px 45px;

    background: #ED1C24;

    border-radius: 4px;

    text-align: center;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.45);

    transform:
        translateY(25px)
        scale(0.96);

    transition:
        transform 0.35s cubic-bezier(.22,1,.36,1);
}


.newsletter-overlay.active .newsletter-popup {

    transform:
        translateY(0)
        scale(1);
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.newsletter-close {

    position: absolute;

    top: 16px;

    right: 20px;

    width: 32px;

    height: 32px;

    padding: 0;

    border: none;

    background: transparent;

    color: #ffffff;

    font-size: 36px;

    line-height: 28px;

    font-weight: 300;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        color 0.25s ease;
}


.newsletter-close:hover {

    transform: rotate(90deg);

    color: #fff200;
}


/* =========================================================
   TITLE
========================================================= */

.newsletter-popup h2 {

    margin:  35px 14px;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 25px;

    line-height: 1.2;

    font-weight: 600;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.newsletter-popup p {

    margin: 0 auto 24px;

    max-width: 430px;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;

    line-height: 1.4;

    font-weight: 400;
}


/* =========================================================
   FORM
========================================================= */

#newsletterForm {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 25px;
}


/* =========================================================
   EMAIL INPUT
========================================================= */

#newsletterEmail {

    width: 100%;

    height: 35px;

    padding: 0 12px;

    border: none;

    outline: none;

    border-radius: 0;

    background: #ffffff;

    color: #222222;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    box-sizing: border-box;
}


#newsletterEmail::placeholder {

    color: #555555;

    opacity: 1;
}


#newsletterEmail:focus {

    box-shadow:
        0 0 0 2px rgba(255, 242, 0, 0.7);
}


/* =========================================================
   SUBSCRIBE BUTTON
========================================================= */

.newsletter-submit {

    position: relative;

    width: 180px;

    height: 36px;

    border: none;

    border-radius: 25px;

    background: #fff000;

    color: #050505;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.newsletter-submit:hover {

    background: #ffe600;

    transform: translateY(-2px);

    box-shadow:
        0 7px 18px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   ARROW CIRCLE
========================================================= */

.subscribe-arrow {

    position: absolute;

    right: 5px;

    top: 4px;

    width: 28px;

    height: 28px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(0, 0, 0, 0.35);

    font-size: 12px;

    transition:
        transform 0.3s ease;
}


.newsletter-submit:hover .subscribe-arrow {

    transform:
        translateX(2px)
        rotate(-10deg);
}


/* =========================================================
   NEWSLETTER TRIGGER
========================================================= */

.newsletter-trigger {

    margin: 8px 0 0;

    padding: 0;

    border: none;

    background: transparent;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13.5px;

    font-weight: 400;

    cursor: pointer;

    text-align: left;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


.newsletter-trigger:hover {

    opacity: 0.8;

    transform: translateX(2px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .newsletter-overlay {

        padding: 15px;
    }


    .newsletter-popup {

        width: 100%;

        min-height: auto;

        padding: 35px 25px 38px;
    }


    .newsletter-popup h2 {

        margin-left: 20px;

        margin-right: 20px;

        font-size: 22px;
    }


    .newsletter-popup p {

        font-size: 12px;
    }


    .newsletter-close {

        top: 10px;

        right: 13px;
    }


    #newsletterForm {

        gap: 22px;
    }
}

/* =========================================================
   MEDLIFY AWARDS SECTION
========================================================= */

.awards-section {

    width: 100%;

    padding: 45px 30px;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================================
   MAIN FRAME
========================================================= */

.awards-frame {

    position: relative;

    width: min(1100px, 100%);

    min-height: 510px;

    margin: auto;

    border: 2px solid #222222;

    display: grid;

    grid-template-columns: 48% 52%;

    grid-template-rows: 300px 160px;

    overflow: hidden;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.awards-content {

    position: relative;

    z-index: 5;

    padding: 65px 40px 30px 50px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.awards-heading {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    color: #080808;

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(35px, 4vw, 52px);

    line-height: 0.98;

    letter-spacing: -1.8px;
}


.awards-heading span {

    font-weight: 400;
}


.awards-heading strong {

    font-weight: 900;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.awards-description {

    max-width: 400px;

    margin: 22px 0 0;

    color: #555555;

    font-size: 14px;

    line-height: 1.5;
}


/* =========================================================
   VISUAL
========================================================= */

.awards-visual {

    position: relative;

    min-width: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;
}


/* =========================================================
   YELLOW CIRCLE
========================================================= */

.yellow-award-circle {

    position: absolute;

    width: 285px;

    height: 285px;

    border-radius: 50%;

    background: #ffd600;

    right: 75px;

    top: 12px;

    z-index: 1;
}


/* =========================================================
   MAIN AWARD
========================================================= */

.main-award-image {

    position: relative;

    z-index: 4;

    width: 300px;

    height: 290px;

    object-fit: contain;

    filter:
        drop-shadow(0 15px 15px rgba(0,0,0,.18));

    transition:
        opacity .3s ease,
        transform .45s cubic-bezier(.22,1,.36,1);
}


.main-award-image.changing {

    opacity: 0;

    transform:
        translateY(15px)
        scale(.94);
}


/* =========================================================
   STARS
========================================================= */

.award-stars {

    position: absolute;

    inset: 0;

    z-index: 5;

    pointer-events: none;
}


.award-stars span {

    position: absolute;

    color: #111111;

    font-size: 18px;
}


.award-stars span:nth-child(1) {

    top: 80px;

    left: 35px;
}


.award-stars span:nth-child(2) {

    top: 155px;

    right: 30px;

    font-size: 24px;
}


.award-stars span:nth-child(3) {

    bottom: 35px;

    left: 90px;

    font-size: 13px;
}


/* =========================================================
   AWARD ARROWS
========================================================= */

/* =========================================================
   AWARD SLIDER ARROWS - FIXED
========================================================= */

.award-arrow {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    z-index: 100 !important;

    width: 50px;
    height: 60px;

    padding: 0;
    margin: 0;

    border: none;
    outline: none;

    background: transparent;

    color: #f2c900;

    font-size: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    pointer-events: auto;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.award-arrow:hover {
    color: #111111;

    transform:
        translateY(-50%)
        scale(1.15);
}


.award-arrow:active {
    transform:
        translateY(-50%)
        scale(0.92);
}


.award-prev {
    left: 5px;
}


.award-next {
    right: 5px;
}

.awards-visual {
    pointer-events: none;
}

.award-arrow {
    pointer-events: auto;
}


/* =========================================================
   AWARDS LIST
========================================================= */

.awards-list {

    grid-column: 1 / 3;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

    padding: 20px 50px 25px;

    align-items: start;
}


/* =========================================================
   AWARD ITEM
========================================================= */

.award-item {
   
    position: relative;

    padding-top: 4px;

    cursor: pointer;

    color: #111111;

    transition:
        opacity .25s ease,
        transform .25s ease;
}


.award-item::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 0;

    height: 3px;

    background: #ffd000;

    transition:
        width .3s ease;
}


.award-item:hover {

    transform: translateY(-3px);
}


.award-item.active::before {

    width: 35px;
}


.award-item strong {

    display: block;

    margin-top: 8px;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    line-height: 1.3;

    font-weight: 800;
}


.award-item span {

    display: block;

    margin-top: 5px;

    color: #555555;

    font-size: 10px;

    line-height: 1.3;
}


.award-item small {

    display: block;

    margin-top: 5px;

    color: #999999;

    font-size: 10px;
}


/* =========================================================
   CHARACTER
========================================================= */

.award-character {

    position: absolute;

    z-index: 25;

    width: 125px;

    height: auto;

    right: 5px;

    bottom: -2px;

    object-fit: contain;

    pointer-events: none;
}


/* =========================================================
   DECORATIVE CORNERS
========================================================= */

.award-corner {

    position: absolute;

    width: 18px;

    height: 18px;

    z-index: 30;
}


.corner-top-left {

    left: -2px;

    top: -2px;

    border-left: 3px solid #222;

    border-top: 3px solid #222;
}


.corner-top-right {

    right: -2px;

    top: -2px;

    border-right: 3px solid #222;

    border-top: 3px solid #222;
}


.corner-bottom-left {

    left: -2px;

    bottom: -2px;

    border-left: 3px solid #222;

    border-bottom: 3px solid #222;
}


.corner-bottom-right {

    right: -2px;

    bottom: -2px;

    border-right: 3px solid #222;

    border-bottom: 3px solid #222;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .awards-section {

        padding: 30px 20px;
    }


    .awards-frame {

        min-height: 550px;

        grid-template-columns: 1fr 1fr;

        grid-template-rows: 330px 190px;
    }


    .awards-content {

        padding: 40px 25px;
    }


    .awards-heading {

        font-size: 35px;
    }


    .yellow-award-circle {

        width: 220px;

        height: 220px;

        right: 25px;
    }


    .main-award-image {

        width: 230px;

        height: 250px;
    }


    .award-character {

        width: 90px;
    }


    .awards-list {

        padding: 20px 30px;

        gap: 15px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .awards-section {

        padding: 25px 12px;
    }


    .awards-frame {

        min-height: 800px;

        grid-template-columns: 1fr;

        grid-template-rows:
            310px
            auto;
    }


    .awards-content {

        padding: 35px 25px 15px;

        align-items: center;

        text-align: center;
    }


    .awards-heading {

        align-items: center;

        font-size: 38px;

        line-height: 1;
    }


    .awards-description {

        max-width: 280px;
    }


    .awards-visual {

        min-height: 300px;
    }


    .yellow-award-circle {

        width: 230px;

        height: 230px;

        right: 50%;

        transform: translateX(50%);

        top: 15px;
    }


    .main-award-image {

        width: 240px;

        height: 250px;
    }


    .awards-list {

        grid-column: 1;

        grid-template-columns: 1fr 1fr;

        gap: 20px;

        padding: 25px 25px 35px;
    }


    .award-character {

        width: 75px;

        right: 0;

        bottom: 0;
    }


    .award-arrow {

        top: 50%;

        width: 32px;

        height: 32px;
    }


    .award-prev {

        left: 5px;
    }


    .award-next {

        right: 5px;
    }
}




/* =========================================================
   CTA CARDS - MOBILE IMAGE OVERLAP FIX
========================================================= */

@media (max-width: 700px) {

    .cta-cards-section {
        padding: 15px 12px 25px;
    }

    .cta-cards-container {
        width: 100%;
        max-width: 430px;

        display: grid;
        grid-template-columns: 1fr;

        gap: 16px;
    }


    /* =========================================
       CARD
    ========================================= */

    .cta-card {
        position: relative;

        width: 100% !important;

        height: 460px !important;

        min-height: 460px;

        padding: 28px 20px 0;

        overflow: hidden;

        border-radius: 24px 0 0 0;

        box-sizing: border-box;
    }


    /* =========================================
       TEXT AREA
       FIXED HEIGHT / RESERVED SPACE
    ========================================= */

    .cta-card-content {
        position: relative;

        z-index: 20;

        width: 100%;

        max-width: 100%;

        min-height: 135px;

        margin: 0;

        box-sizing: border-box;
    }


    .cta-card-content h2 {
        position: relative;

        z-index: 21;

        margin: 0;

        font-size: 20px;

        line-height: 1.08;

        font-weight: 800;
    }


    .cta-card-content p {
        position: relative;

        z-index: 21;

        margin: 12px 0 0;

        font-size: 14px;

        line-height: 1.3;
    }


    /* =========================================
       IMAGE AREA
       STARTS ONLY BELOW TEXT
    ========================================= */

    .cta-card-art {

        position: absolute;

        z-index: 5;

        left: 0;
        right: 0;

        top: 145px;

        bottom: 0;

        width: 100%;

        height: auto;

        display: flex;

        align-items: flex-end;

        justify-content: center;

        overflow: hidden;

        pointer-events: none;
    }


    .cta-card-art img {

        width: 100%;

        height: 100%;

        max-width: 100%;

        max-height: 100%;

        object-fit: contain;

        object-position: center bottom;

        display: block;

        transform: none !important;
    }


    .cta-card:hover .cta-card-art img {

        transform: none !important;
    }
}

/* ================================
   MEDLIFY INSPECT PROTECTION
================================ */

#medlify-inspect-warning {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2147483647;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(7, 10, 18, 0.96);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    font-family: Arial, sans-serif;
}

.medlify-warning-box {
    width: min(420px, calc(100% - 40px));
    padding: 45px 30px;

    text-align: center;

    border-radius: 25px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.15);

    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.5);

    color: #ffffff;
}

.medlify-warning-face {
    font-size: 70px;
    margin-bottom: 20px;
}

.medlify-warning-box h2 {
    margin: 0 0 10px;

    font-size: 30px;
    font-weight: 700;
}

.medlify-warning-box p {
    margin: 0;

    font-size: 15px;

    color: rgba(255, 255, 255, 0.65);
}