/* =========================================
   EMPLOYEE ENGAGEMENT PAGE
========================================= */
body {
    font-family: "Epilogue", sans-serif;
    background: #ffffff;
    color: #111111;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    background: #ffffff;
    color: #111111;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}


/* =========================================
   PAGE WRAPPER
========================================= */

.ee-page {
    width: 100%;
    padding: 18px;
}


/* =========================================
   HERO
========================================= */

.ee-hero {
    position: relative;
    width: 100%;
    height: 720px;

    overflow: hidden;
    border-radius: 22px;

    background: #111111;
}


/* HERO IMAGE */

.ee-hero__image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* HERO DARK OVERLAY */

.ee-hero__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.48) 0%,
            rgba(0, 0, 0, 0.15) 48%,
            rgba(0, 0, 0, 0.38) 100%
        );
}


/* =========================================
   HEADER / NAVBAR
========================================= */

.ee-header {
    position: relative;
    z-index: 5;

    width: min(1180px, calc(100% - 60px));
    margin: 0 auto;
    padding-top: 35px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ee-header__nav {
    margin-top: 50px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;

    white-space: nowrap;
}


/* LOGO */

.ee-header__logo {
    color: #ffffff;

    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* NAVIGATION */

/* .ee-header__nav {
    display: flex;
    align-items: center;
    gap: 34px;
} */

.ee-header__nav a {
    position: relative;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.4px;
    transition: opacity 0.3s ease;
}

.ee-header__nav a::before {
    content: "↗";

    margin-right: 7px;

    font-size: 9px;
}

.ee-header__nav a:hover {
    opacity: 0.65;
}


/* MOBILE MENU BUTTON */

.ee-header__menu {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;

    background: transparent;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    cursor: pointer;
}

.ee-header__menu span {
    width: 16px;
    height: 1px;

    background: #ffffff;
}


/* =========================================
   HERO CONTENT
========================================= */

.ee-hero__content {
    position: absolute;
    z-index: 3;

    top: 50%;
    left: 50%;

    width: min(850px, calc(100% - 40px));

    transform: translate(-50%, -45%);

    text-align: center;
    color: #ffffff;
}

.ee-hero__content h1 {
    margin-bottom: 18px;

    font-size: clamp(44px, 5vw, 76px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -3px;
}

.ee-hero__content p {
    max-width: 600px;
    margin: 0 auto;

    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;

    color: rgba(255, 255, 255, 0.88);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .ee-page {
        padding: 12px;
    }

    .ee-hero {
        height: 650px;
        border-radius: 18px;
    }

    .ee-header {
        width: calc(100% - 40px);
        padding-top: 25px;
    }

    .ee-header__nav {
        display: none;
    }

    .ee-header__menu {
        display: flex;
    }

    .ee-hero__content h1 {
        font-size: 50px;
        letter-spacing: -2px;
    }

}


@media (max-width: 600px) {

    .ee-hero {
        height: 620px;
    }

    .ee-header {
        width: calc(100% - 28px);
    }

    .ee-hero__content {
        width: calc(100% - 30px);
    }

    .ee-hero__content h1 {
        margin-bottom: 16px;

        font-size: 42px;
        line-height: 1.08;
    }

    .ee-hero__content p {
        max-width: 340px;

        font-size: 13px;
        line-height: 1.65;
    }

}

/* =========================================
   ABOUT SECTION
========================================= */

.ee-about {
    padding: 64px 30px 74px;
    background: #ffffff;
}

.ee-about__container {
    width: min(1280px, calc(100% - 100px));
    margin: 0 auto;
}

/* TOP AREA */

.ee-about__top {
    display: block;
}


/* LABEL */

.ee-about__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 13px 25px;
    background: #ffe6e9;
    border-radius: 100px;
    color: #ff1235;
    font-size: 15px;
    font-weight: 600;
}

.ee-about__label span {
    font-size: 12px;
}


/* HEADING */

.ee-about__heading h2 {
    max-width: 723px;
    margin: 0;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: -2px;
}

.ee-about__heading h2 > span {
    color: #ff1235;
}


/* DESCRIPTION + BUTTON ROW */

.ee-about__content {
    margin-top: 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
}

.ee-about__content p {
    max-width: 530px;
    margin: 0;

    color: #777777;

    font-size: 17px;
    font-weight: 400;
    line-height: 1.45;
}


/* BUTTON */


.ee-about__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid #aaaaaa;
    border-radius: 100px;
    color: #111111;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}

.ee-about__button span {
    font-size: 16px;
}


/* =========================================
   STATS
========================================= */

.ee-about__stats {
    margin-top: 76px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 52px;
}


/* INDIVIDUAL STAT */

.ee-stat {
    padding-top: 17px;

    border-top: 1px solid #d8d8d8;

    text-align: center;
}


.ee-stat h3 {
    margin: 0 0 10px;

    color: #000000;

    font-size: 55px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -2px;
}


.ee-stat p {
    margin: 0;

    color: #777777;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .ee-about__container {
        width: calc(100% - 50px);
    }

    .ee-about__content {
        align-items: flex-end;
        gap: 30px;
    }

    .ee-about__stats {
        gap: 25px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .ee-about {
        padding: 50px 0 55px;
    }

    .ee-about__container {
        width: calc(100% - 30px);
    }

    .ee-about__heading h2 {
        font-size: 26px;
        line-height: 1.2;
    }

    .ee-about__content {
        margin-top: 20px;

        flex-direction: column;
        align-items: flex-start;

        gap: 25px;
    }

    .ee-about__stats {
        margin-top: 55px;

        grid-template-columns: repeat(2, 1fr);
        gap: 35px 20px;
    }

    .ee-stat h3 {
        font-size: 38px;
    }
}

/* =========================================
   IN-OFFICE ACTIVITIES / WORKSHOPS
========================================= */

.ee-activities {
    position: relative;

    width: calc(100% - 30px);
    margin: 0 auto 80px;
    padding: 70px 40px 40px;

    overflow: hidden;

    background-color: #f3f3f3;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.75) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.75) 1px,
            transparent 1px
        );

    background-size: 128px 86px;

    border: 1px solid #d8d8d8;
    border-radius: 18px;
}


/* =========================================
   HEADER
========================================= */

.ee-activities__header {
    text-align: center;
}


.ee-activities__label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 23px;
    padding: 13px 25px;
    background: #ffe1e6;
    border-radius: 100px;
    color: #ff1235;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
}

.ee-activities__label span {
    font-size: 10px;
}


.ee-activities__header h2 {
    margin: 0;

    color: #050505;

    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -2px;
}


.ee-activities__header p {
    margin: 28px auto 0;
    color: #777777;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.45;
}


/* =========================================
   ACTIVITIES GRID
========================================= */

.ee-activities__grid {
    margin-top: 46px;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}


/* =========================================
   ACTIVITY CARD
========================================= */

.ee-activity-card {
    min-width: 0;

    animation: eeActivityReveal 0.45s ease both;
}


.ee-activity-card:nth-child(2) {
    animation-delay: 0.06s;
}


.ee-activity-card:nth-child(3) {
    animation-delay: 0.12s;
}


.ee-activity-card__number {
    display: block;

    margin-bottom: 10px;

    color: #ff1235;

    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}


.ee-activity-card h3 {
    margin: 0 0 7px;
    color: #000000;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.6px;
}


.ee-activity-card p {
    min-height: 38px;
    margin: 0 0 17px;

    color: #777777;

    font-size: 15px;
    font-weight: 400;
    line-height: 1.35;
}


.ee-activity-card__image {
    width: 100%;
    height: 300px;

    overflow: hidden;

    background: #dddddd;
}


.ee-activity-card__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}


.ee-activity-card:hover
.ee-activity-card__image img {
    transform: scale(1.035);
}


/* =========================================
   FOOTER
========================================= */

.ee-activities__footer {
    margin-top: 16px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}


/* VIEW ALL */

.ee-activities__view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 15px 18px;
    background: #1d1d1d;
    border-radius: 100px;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    margin-top: 15px;
}

.ee-activities__view-all span {
    font-size: 14px;
}


/* ARROWS */

.ee-activities__arrows {
    justify-self: end;

    display: flex;
    align-items: center;
    gap: 7px;
}


.ee-activities__arrow {
    width: 30px;
    height: 30px;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.5);

    border: 1px solid #cccccc;
    border-radius: 50%;

    color: #111111;

    font-family: inherit;
    font-size: 16px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}


.ee-activities__arrow:hover {
    background: #ffffff;
    border-color: #999999;
}


/* =========================================
   CHANGE ANIMATION
========================================= */

@keyframes eeActivityReveal {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .ee-activities {
        width: calc(100% - 24px);
        padding: 40px 22px 28px;
    }

    .ee-activities__grid {
        gap: 20px;
    }

    .ee-activity-card__image {
        height: 250px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .ee-activities {
        width: calc(100% - 20px);
        padding: 38px 16px 24px;

        border-radius: 15px;
    }

    .ee-activities__header h2 {
        font-size: 31px;
        letter-spacing: -1.4px;
    }

    .ee-activities__header p br {
        display: none;
    }

    .ee-activities__grid {
        margin-top: 38px;

        grid-template-columns: 1fr;
    }

    .ee-activity-card__image {
        height: 360px;
    }

    .ee-activities__footer {
        grid-template-columns: auto 1fr;
    }

    .ee-activities__footer-spacer {
        display: none;
    }

    .ee-activities__view-all {
        justify-self: start;
    }

    .ee-activities__arrows {
        justify-self: end;
    }

}
/* =========================================
   ONE-DAY OUTINGS / OFFSITE ACTIVITIES
========================================= */

.ee-outings {
    width: min(1280px, calc(100% - 100px));
    margin: 0 auto;
    padding: 70px 0 60px;
}


/* =========================================
   HEADER
========================================= */

.ee-outings__header {
    text-align: center;
}


.ee-outings__header p {
    margin: 28px auto 0;
    color: #777777;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.45;
}

.ee-outings__header h2 {
    margin: 0;

    color: #050505;

    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -2px;
}

.ee-outings__header p {
    margin: 28px auto 0;
    color: #777777;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
}

/* =========================================
   OUTINGS GRID
========================================= */

.ee-outings__grid {
    margin-top: 46px;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}


/* =========================================
   OUTING CARD
========================================= */

.ee-outing-card {
    min-width: 0;

    animation: eeOutingReveal 0.45s ease both;
}


.ee-outing-card:nth-child(2) {
    animation-delay: 0.06s;
}


.ee-outing-card:nth-child(3) {
    animation-delay: 0.12s;
}


.ee-outing-card__number {
    display: block;

    margin-bottom: 10px;

    color: #ff1235;

    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}


.ee-outing-card h3 {
    margin: 0 0 7px;

    color: #090909;

    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.6px;
}


.ee-outing-card p {
    min-height: 38px;
    margin: 0 0 17px;

    color: #777777;

    font-size: 15px;
    font-weight: 400;
    line-height: 1.35;
}


/* IMAGE */

.ee-outing-card__image {
    width: 100%;
    height: 300px;

    overflow: hidden;

    background: #dddddd;
}


.ee-outing-card__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}


.ee-outing-card:hover
.ee-outing-card__image img {
    transform: scale(1.035);
}


/* =========================================
   FOOTER
========================================= */

.ee-outings__footer {
    margin-top: 16px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}


/* VIEW ALL */

.ee-outings__view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 18px;
    background: #1d1d1d;
    border-radius: 100px;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
}


.ee-outings__view-all span {
    font-size: 14px;
}


/* ARROWS */

.ee-outings__arrows {
    justify-self: end;

    display: flex;
    align-items: center;
    gap: 7px;
}


.ee-outings__arrow {
    width: 30px;
    height: 30px;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border: 1px solid #cccccc;
    border-radius: 50%;

    color: #111111;

    font-family: inherit;
    font-size: 16px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}


.ee-outings__arrow:hover {
    background: #f3f3f3;
    border-color: #999999;
}


/* =========================================
   CHANGE ANIMATION
========================================= */

@keyframes eeOutingReveal {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .ee-outings {
        width: calc(100% - 50px);
        padding: 60px 0 50px;
    }


    .ee-outings__grid {
        gap: 20px;
    }


    .ee-outing-card__image {
        height: 250px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .ee-outings {
        width: calc(100% - 30px);
        padding: 55px 0 45px;
    }


    .ee-outings__header h2 {
        font-size: 31px;
        letter-spacing: -1.4px;
    }


    .ee-outings__header p br {
        display: none;
    }


    .ee-outings__grid {
        margin-top: 38px;

        grid-template-columns: 1fr;
    }


    .ee-outing-card__image {
        height: 360px;
    }


    .ee-outings__footer {
        grid-template-columns: auto 1fr;
    }


    .ee-outings__footer-spacer {
        display: none;
    }


    .ee-outings__view-all {
        justify-self: start;
    }


    .ee-outings__arrows {
        justify-self: end;
    }

}
/* =========================================
   MAJOR CELEBRATIONS
========================================= */

.ee-celebrations {
    position: relative;

    width: calc(100% - 30px);
    margin: 0 auto 80px;
    padding: 48px 30px 30px;

    overflow: hidden;

    background-color: #f3f3f3;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.75) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.75) 1px,
            transparent 1px
        );

    background-size: 128px 86px;

    border: 1px solid #d8d8d8;
    border-radius: 18px;
}


/* =========================================
   HEADER
========================================= */

.ee-celebrations__header {
    text-align: center;
}


.ee-celebrations__header h2 {
    margin: 0;

    color: #050505;

    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -2px;
}


.ee-celebrations__header p {
    margin: 17px auto 0;

    color: #777777;

    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
}


/* =========================================
   CELEBRATIONS GRID
========================================= */

.ee-celebrations__grid {
    margin-top: 42px;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}


/* =========================================
   CELEBRATION CARD
========================================= */

.ee-celebration-card {
    min-width: 0;

    animation: eeCelebrationReveal 0.45s ease both;
}


.ee-celebration-card:nth-child(2) {
    animation-delay: 0.06s;
}


.ee-celebration-card:nth-child(3) {
    animation-delay: 0.12s;
}


.ee-celebration-card__number {
    display: block;

    margin-bottom: 10px;

    color: #ff1235;

    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}


.ee-celebration-card h3 {
    margin: 0 0 7px;

    color: #090909;

    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.6px;
}


.ee-celebration-card p {
    min-height: 38px;
    margin: 0 0 17px;

    color: #777777;

    font-size: 15px;
    font-weight: 400;
    line-height: 1.35;
}


/* IMAGE */

.ee-celebration-card__image {
    width: 100%;
    height: 300px;

    overflow: hidden;

    background: #dddddd;
}


.ee-celebration-card__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}


.ee-celebration-card:hover
.ee-celebration-card__image img {
    transform: scale(1.035);
}


/* =========================================
   FOOTER
========================================= */

.ee-celebrations__footer {
    margin-top: 16px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}


/* VIEW ALL */

.ee-celebrations__view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 15px 18px;

    background: #1d1d1d;
    border-radius: 100px;

    color: #ffffff;
    text-decoration: none;

    font-size: 13px;
    font-weight: 500;
    line-height: 1;
}


.ee-celebrations__view-all span {
    font-size: 14px;
}


/* ARROWS */

.ee-celebrations__arrows {
    justify-self: end;

    display: flex;
    align-items: center;
    gap: 7px;
}


.ee-celebrations__arrow {
    width: 30px;
    height: 30px;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.5);

    border: 1px solid #cccccc;
    border-radius: 50%;

    color: #111111;

    font-family: inherit;
    font-size: 16px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}


.ee-celebrations__arrow:hover {
    background: #ffffff;
    border-color: #999999;
}


/* =========================================
   ANIMATION
========================================= */

@keyframes eeCelebrationReveal {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .ee-celebrations {
        width: calc(100% - 24px);
        padding: 42px 22px 28px;
    }


    .ee-celebrations__grid {
        gap: 20px;
    }


    .ee-celebration-card__image {
        height: 250px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .ee-celebrations {
        width: calc(100% - 20px);
        padding: 38px 16px 24px;

        border-radius: 15px;
    }


    .ee-celebrations__header h2 {
        font-size: 31px;
        letter-spacing: -1.4px;
    }


    .ee-celebrations__header p br {
        display: none;
    }


    .ee-celebrations__grid {
        margin-top: 38px;

        grid-template-columns: 1fr;
    }


    .ee-celebration-card__image {
        height: 360px;
    }


    .ee-celebrations__footer {
        grid-template-columns: auto 1fr;
    }


    .ee-celebrations__footer-spacer {
        display: none;
    }


    .ee-celebrations__view-all {
        justify-self: start;
    }


    .ee-celebrations__arrows {
        justify-self: end;
    }

}
/* =========================================
   FOOD EXPERIENCES
========================================= */

.ee-food {
    width: min(1280px, calc(100% - 100px));
    margin: 0 auto;
    padding: 70px 0 60px;
}


/* HEADER */

.ee-food__header {
    text-align: center;
}

.ee-food__header h2 {
    margin: 0;

    color: #050505;

    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -2px;
}

.ee-food__header p {
    margin: 17px auto 0;

    color: #777777;

    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
}


/* GRID */

.ee-food__grid {
    margin-top: 46px;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}


/* CARD */

.ee-food-card {
    min-width: 0;

    animation: eeFoodReveal 0.45s ease both;
}

.ee-food-card:nth-child(2) {
    animation-delay: 0.06s;
}

.ee-food-card:nth-child(3) {
    animation-delay: 0.12s;
}

.ee-food-card__number {
    display: block;

    margin-bottom: 10px;

    color: #ff1235;

    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}

.ee-food-card h3 {
    margin: 0 0 7px;
    color: #090909;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.6px;
}

.ee-food-card p {
    min-height: 38px;
    margin: 0 0 17px;

    color: #777777;

    font-size: 15px;
    font-weight: 400;
    line-height: 1.35;
}


/* IMAGE */

.ee-food-card__image {
    width: 100%;
    height: 300px;

    overflow: hidden;

    background: #dddddd;
}

.ee-food-card__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.ee-food-card:hover
.ee-food-card__image img {
    transform: scale(1.035);
}


/* FOOTER */

.ee-food__footer {
    margin-top: 16px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}


/* VIEW ALL */

.ee-food__view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 15px 18px;

    background: #1d1d1d;
    border-radius: 100px;

    color: #ffffff;
    text-decoration: none;

    font-size: 13px;
    font-weight: 500;
    line-height: 1;
}

.ee-food__view-all span {
    font-size: 14px;
}


/* ARROWS */

.ee-food__arrows {
    justify-self: end;

    display: flex;
    align-items: center;
    gap: 7px;
}

.ee-food__arrow {
    width: 30px;
    height: 30px;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border: 1px solid #cccccc;
    border-radius: 50%;

    color: #111111;

    font-family: inherit;
    font-size: 16px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}

.ee-food__arrow:hover {
    background: #f3f3f3;
    border-color: #999999;
}


/* ANIMATION */

@keyframes eeFoodReveal {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* TABLET */

@media (max-width: 900px) {

    .ee-food {
        width: calc(100% - 50px);
        padding: 60px 0 50px;
    }

    .ee-food__grid {
        gap: 20px;
    }

    .ee-food-card__image {
        height: 250px;
    }

}


/* MOBILE */

@media (max-width: 650px) {

    .ee-food {
        width: calc(100% - 30px);
        padding: 55px 0 45px;
    }

    .ee-food__header h2 {
        font-size: 31px;
        letter-spacing: -1.4px;
    }

    .ee-food__header p br {
        display: none;
    }

    .ee-food__grid {
        margin-top: 38px;

        grid-template-columns: 1fr;
    }

    .ee-food-card__image {
        height: 360px;
    }

    .ee-food__footer {
        grid-template-columns: auto 1fr;
    }

    .ee-food__footer-spacer {
        display: none;
    }

    .ee-food__view-all {
        justify-self: start;
    }

    .ee-food__arrows {
        justify-self: end;
    }

}

/* =========================================
   LET'S TALK CTA
========================================= */

.ee-cta {
    position: relative;

    width: 100vw;
    height: 500px;

    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    overflow: hidden;
    background: #111111;
}


/* =========================================
   BACKGROUND
========================================= */

.ee-cta__image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


.ee-cta__overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.64);
}


/* =========================================
   INFINITE TALK MARQUEE
========================================= */

.ee-cta__marquee {
    position: relative;
    z-index: 2;

    width: 100%;
    margin-top: 48px;

    overflow: hidden;

    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}


/* MOVING TRACK */

.ee-cta__track {
    display: flex;
    width: max-content;

    animation: eeTalkMove 20s linear infinite;

    will-change: transform;
}


/* EACH DUPLICATED GROUP */

.ee-cta__group {
    display: flex;
    align-items: center;
    gap: 25px;

    flex-shrink: 0;

    padding: 25px 25px 25px 0;

    white-space: nowrap;
}


.ee-cta__group span {
    flex-shrink: 0;
}


/* SOLID TEXT */

.ee-cta__solid {
    color: #ffffff;

    font-size: clamp(42px, 6vw, 78px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -3px;
}


/* OUTLINE TEXT */

.ee-cta__outline {
    color: transparent;

    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.65);

    font-size: clamp(42px, 6vw, 78px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -3px;
}


/* RED ARROW */

.ee-cta__arrow {
    color: #ff1235;

    font-size: clamp(40px, 4vw, 65px);
    font-weight: 300;
    line-height: 1;
}


/* PERFECT INFINITE MOVEMENT */

@keyframes eeTalkMove {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}

/* =========================================
   CTA CONTENT
========================================= */

.ee-cta__content {
    position: relative;
    z-index: 3;

    height: calc(100% - 150px);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    color: #ffffff;
}


.ee-cta__content h2 {
    margin: 0;

    font-size: clamp(28px, 4vw, 50px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -1.5px;
}


/* =========================================
   BUTTON
========================================= */

.ee-cta__button {
    margin-top: 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 14px 18px;

    background: #ff1235;
    border-radius: 100px;

    color: #ffffff;
    text-decoration: none;

    font-size: 10px;
    font-weight: 500;
    line-height: 1;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.ee-cta__button:hover {
    transform: translateY(-2px);
    background: #e90027;
}


.ee-cta__button span {
    font-size: 14px;
}


/* =========================================
   MARQUEE ANIMATION
========================================= */

@keyframes eeTalkMove {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .ee-cta {
        height: 450px;
    }

    .ee-cta__marquee {
        margin-top: 35px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .ee-cta {
        height: 420px;
    }

    .ee-cta__marquee {
        margin-top: 28px;
    }

    .ee-cta__track {
        gap: 18px;
        padding: 14px 0;
    }

    .ee-cta__content {
        padding: 0 25px;
    }

    .ee-cta__content h2 {
        font-size: 29px;
        line-height: 1.2;
    }

}
/* =========================================
   FOOTER
========================================= */

.ee-footer {
    width: 100vw;

    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    font-family: "Epilogue", sans-serif;
}


/* =========================================
   MAIN FOOTER
========================================= */

.ee-footer__main {
    background: #fff1f3;
}


.ee-footer__inner {
    width: min(1280px, calc(100% - 120px));
    margin: 0 auto;

    padding: 55px 0 50px;

    display: grid;
    grid-template-columns: 1fr 1fr 1.25fr;
    gap: 100px;
}


/* =========================================
   COMMON CONTENT
========================================= */

.ee-footer h3 {
    margin: 0 0 20px;

    color: #111111;

    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}


.ee-footer p {
    margin: 0;

    color: #555555;

    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
}


/* =========================================
   QUICK LINKS
========================================= */

.ee-footer__links nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
}


.ee-footer__links a {
    color: #111111;

    font-size: 15px;
    font-weight: 400;
    line-height: 1;

    text-decoration: none;

    transition: opacity 0.25s ease;
}


.ee-footer__links a:hover {
    opacity: 0.55;
}


/* =========================================
   NEWSLETTER
========================================= */

.ee-footer__newsletter {
    justify-self: end;

    width: 100%;
    max-width: 330px;
}


.ee-footer__newsletter p {
    margin-bottom: 24px;
}


.ee-footer__form {
    position: relative;

    width: 100%;
}


.ee-footer__form input {
    width: 100%;
    height: 44px;

    padding: 0 55px 0 17px;

    background: #ffffff;

    border: 1px solid #999999;
    border-radius: 100px;

    outline: none;

    color: #111111;

    font-family: inherit;
    font-size: 10px;
}


.ee-footer__form input::placeholder {
    color: #555555;
}


.ee-footer__form input:focus {
    border-color: #111111;
}


/* SUBMIT BUTTON */

.ee-footer__form button {
    position: absolute;

    top: 50%;
    right: 4px;

    width: 36px;
    height: 36px;

    transform: translateY(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    background: #ff1235;

    border: 0;
    border-radius: 50%;

    color: #ffffff;

    font-family: inherit;
    font-size: 16px;

    cursor: pointer;

    transition: transform 0.25s ease;
}


.ee-footer__form button:hover {
    transform:
        translateY(-50%)
        scale(1.05);
}


/* =========================================
   COPYRIGHT
========================================= */

.ee-footer__bottom {
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
}


.ee-footer__bottom p {
    color: #111111;

    font-size: 9px;
    font-weight: 500;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .ee-footer__inner {
        width: calc(100% - 60px);

        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }


    .ee-footer__newsletter {
        justify-self: start;

        grid-column: 1 / -1;

        max-width: 420px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .ee-footer__inner {
        width: calc(100% - 40px);

        padding: 45px 0;

        grid-template-columns: 1fr;
        gap: 40px;
    }


    .ee-footer__newsletter {
        grid-column: auto;

        width: 100%;
        max-width: none;
    }


    .ee-footer__bottom {
        height: 70px;
    }

}