/* =========================================
   RESET
========================================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    width: 100%;
    scroll-behavior: smooth;
}


body {
    width: 100%;

    font-family: "Epilogue", sans-serif;

    background: #ffffff;
    color: #191b1f;

    overflow-x: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


img {
    display: block;
    max-width: 100%;
}



/* =========================================
   PITARA FIRST SCREEN
========================================= */

.pitara-first-screen {
    width: 100%;

    min-height: 100vh;
    min-height: 100svh;

    padding: 0 12px 32px;
}



/* =========================================
   NAVIGATION
========================================= */

.pitara-nav {
    width: 100%;
    height: 59px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 31px;
}


.pitara-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;

    color: #111111;

    font-size: 12px;
    font-weight: 600;
    line-height: 1;

    white-space: nowrap;
}



.pitara-nav__arrow::before {
    content: "";

    position: absolute;

    width: 8px;
    height: 1px;

    left: 0;
    bottom: 1px;

    background: #111111;

    transform: rotate(-45deg);
    transform-origin: left center;
}


.pitara-nav__arrow::after {
    content: "";

    position: absolute;

    width: 4px;
    height: 4px;

    top: 0;
    right: 0;

    border-top: 1px solid #111111;
    border-right: 1px solid #111111;
}


/* =========================================
   HERO
========================================= */

.pitara-hero {
    position: relative;

    width: 100%;

    height: calc(100vh - 91px);
    height: calc(100svh - 91px);

    min-height: 390px;

    overflow: hidden;

    border-radius: 11px;

    background: #e9e9e9;
}



/* =========================================
   HERO IMAGE
========================================= */

.pitara-hero__image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
}



/* =========================================
   HERO CONTENT
========================================= */

.pitara-hero__content {
    position: absolute;
    z-index: 2;
    left: 4.5%;
    top: 43%;
    transform: translateY(-38%);
}



/* =========================================
   HERO TITLE
========================================= */

.pitara-hero__title {
    margin: 0;

    color: #191b1f;

    font-size: clamp(38px, 4vw, 64px);
    font-weight: 500;
    line-height: 0.92;

    letter-spacing: -0.055em;
}



/* =========================================
   HERO BUTTON
========================================= */

.pitara-hero__button {
   
    width: fit-content;
    margin-top: 26px;
    padding: 18px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    color: #ffffff;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    transition: transform 0.3s ease, opacity 0.3s ease;
}


.pitara-hero__button:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}



/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .pitara-nav {
        gap: 24px;
    }


    .pitara-hero__content {
        left: 5%;
    }


    .pitara-hero__title {
        font-size: clamp(38px, 5vw, 54px);
    }

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .pitara-first-screen {
        padding: 0 8px 8px;
    }


    .pitara-nav {
        height: 55px;

        justify-content: flex-start;

        gap: 22px;

        padding: 0 12px;

        overflow-x: auto;

        scrollbar-width: none;
    }


    .pitara-nav::-webkit-scrollbar {
        display: none;
    }


    .pitara-nav__link {
        font-size: 8px;
    }


    .pitara-hero {
        height: calc(100svh - 63px);

        min-height: 500px;

        border-radius: 9px;
    }


    .pitara-hero__image {
        object-position: 58% center;
    }


    .pitara-hero__content {
        left: 22px;
        right: 20px;

        top: auto;
        bottom: 38px;

        transform: none;
    }


    .pitara-hero__title {
        font-size: clamp(38px, 11vw, 52px);
    }


    .pitara-hero__button {
        margin-top: 22px;

        padding: 13px 19px;

        font-size: 8px;
    }

}



/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .pitara-hero__content {
        left: 18px;
        bottom: 30px;
    }


    .pitara-hero__title {
        font-size: clamp(36px, 11vw, 46px);
    }

}
/* =========================================
   OCCASIONS SECTION
========================================= */

.pitara-occasions {
    width: 100%;

    min-height: 100vh;
    min-height: 100svh;

    display: flex;
    align-items: center;

    padding: clamp(28px, 4vh, 55px) clamp(28px, 6vw, 95px);

    background: #ffffff;
}


.pitara-occasions__inner {
    width: 100%;
    max-width: 1600px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: clamp(60px, 8vw, 130px);
}



/* =========================================
   LEFT SIDE
========================================= */

.pitara-occasions__visual {
    min-width: 0;
}


.pitara-occasions__title {
    margin: 0 0 clamp(30px, 5vh, 58px);

    color: #050505;

    font-size: clamp(40px, 3.7vw, 66px);
    font-weight: 600;
    line-height: 1.04;

    letter-spacing: -0.05em;
}



/* =========================================
   IMAGE STACK
========================================= */

.pitara-occasions__image-stack {
    position: relative;

    width: min(82%, 500px);

    margin-left: 2%;
}


.pitara-occasions__image-wrap {
    position: relative;

    z-index: 3;

    width: 100%;
    aspect-ratio: 0.84;

    overflow: hidden;

    border-radius: 20px;

    transform: rotate(-4deg);
}


.pitara-occasions__image {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.pitara-occasions__card {
    position: absolute;

    inset: 0;

    display: block;

    border-radius: 20px;
}


.pitara-occasions__card--yellow {
    z-index: 1;

    background: #ffe326;

    transform: rotate(9deg);
}


.pitara-occasions__card--black {
    z-index: 2;

    background: #000000;

    transform: translate(12px, 8px) rotate(3deg);
}



/* =========================================
   RIGHT SIDE
========================================= */

.pitara-occasions__list {
    width: 100%;
}


.pitara-occasions__item {
    padding: clamp(18px, 2.6vh, 31px) 0;

    border-bottom: 1px solid #cfcfcf;
}


.pitara-occasions__item:first-child {
    padding-top: 0;
}


.pitara-occasions__item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}


.pitara-occasions__label {
    display: block;

    margin-bottom: 7px;

    color: #ff2525;

    font-size: clamp(14px, 1vw, 18px);
    font-weight: 400;
    line-height: 1;
}


.pitara-occasions__item-title {
    margin: 0;

    color: #050505;

    font-size: clamp(25px, 2vw, 36px);
    font-weight: 600;
    line-height: 1.1;

    letter-spacing: -0.035em;
}



/* =========================================
   SHORT DESKTOP / LAPTOP SCREENS
========================================= */

@media (min-width: 992px) and (max-height: 800px) {

    .pitara-occasions {
        padding-top: 25px;
        padding-bottom: 80px;
    }


    .pitara-occasions__title {
        margin-bottom: 51px;

        font-size: clamp(38px, 3.2vw, 54px);
    }


    .pitara-occasions__image-stack {
        width: min(70%, 390px);
    }


    .pitara-occasions__item {
        padding: 18px 0;
    }


    .pitara-occasions__item-title {
        font-size: clamp(37px, 1.8vw, 30px);
    }

}



/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .pitara-occasions {
        min-height: auto;

        padding: 70px 35px;
    }


    .pitara-occasions__inner {
        grid-template-columns: 1fr 1fr;

        gap: 55px;
    }


    .pitara-occasions__image-stack {
        width: 90%;
    }


    .pitara-occasions__item-title {
        font-size: clamp(22px, 2.8vw, 30px);
    }

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .pitara-occasions {
        padding: 65px 22px 75px;
    }


    .pitara-occasions__inner {
        display: block;
    }


    .pitara-occasions__title {
        margin-bottom: 45px;

        font-size: clamp(40px, 12vw, 56px);
    }


    .pitara-occasions__image-stack {
        width: 82%;

        margin: 0 auto 75px;
    }


    .pitara-occasions__item {
        padding: 24px 0;
    }


    .pitara-occasions__label {
        font-size: 14px;
    }


    .pitara-occasions__item-title {
        font-size: clamp(23px, 7vw, 30px);
    }

}
/* =========================================
   FEATURED WORK SECTION
========================================= */

.pitara-featured {
    width: 100%;

    min-height: 100vh;
    min-height: 100svh;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: clamp(45px, 7vh, 80px) 0;

    background: #1d1d1d;
    color: #ffffff;

    overflow: hidden;
}


/* =========================================
   HEADER
========================================= */

.pitara-featured__header {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-bottom: clamp(55px, 8vh, 90px);

    padding: 0 20px;

    text-align: center;
}


.pitara-featured__badge {
    /* display: inline-flex; */
    align-items: center;
    gap: 8px;

    padding: 11px 16px;

    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 100px;

    color: #fff200;

    font-size: 13px;
    font-weight: 500;
    line-height: 1;
}


.pitara-featured__badge svg {
    width: 14px;
    height: 14px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.pitara-featured__title {
    margin-top: 25px;

    color: #ffffff;

    font-size: clamp(40px, 4vw, 62px);
    font-weight: 600;
    line-height: 1;

    letter-spacing: -0.05em;
}


/* =========================================
   MARQUEE ROWS
========================================= */

.pitara-featured__marquee {
    width: 100%;

    overflow: hidden;
}


.pitara-featured__marquee--row2 {
    margin-top: clamp(45px, 6vh, 70px);
}


/* =========================================
   TRACK
========================================= */

.pitara-featured__track {
    width: max-content;

    display: flex;

    will-change: transform;
}


/* ROW 1 MOVEMENT */

.pitara-featured__marquee--row1
.pitara-featured__track {
    animation: pitaraFeaturedLeft 28s linear infinite;
}


/* ROW 2 MOVEMENT */

.pitara-featured__marquee--row2
.pitara-featured__track {
    animation: pitaraFeaturedRight 32s linear infinite;
}


/* =========================================
   GROUP
========================================= */

.pitara-featured__group {
    display: flex;
    align-items: flex-end;

    gap: clamp(65px, 7vw, 120px);

    flex-shrink: 0;

    padding-right: clamp(65px, 7vw, 120px);
}


/* =========================================
   ITEM
========================================= */

.pitara-featured__item {
    min-width: max-content;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    color: #3d3d3d;

    transition: color 0.3s ease;
}


/* DEFAULT ACTIVE ITEM */

.pitara-featured__item--active {
    color: #ffffff;
}


/* REMOVE ACTIVE WHITE WHEN ROW IS HOVERED */

.pitara-featured__marquee:hover
.pitara-featured__item--active {
    color: #3d3d3d;
}


/* HOVERED ITEM */

.pitara-featured__item:hover,
.pitara-featured__marquee:hover
.pitara-featured__item--active:hover {
    color: #ffffff;
}


/* =========================================
   NUMBER BADGE
========================================= */

.pitara-featured__number {
    margin-bottom: 13px;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 6px 11px;

    border: 1px solid currentColor;
    border-radius: 100px;

    font-size: 13px;
    font-weight: 500;
    line-height: 1;

    transition: border-color 0.3s ease;
}


.pitara-featured__number svg {
    width: 13px;
    height: 13px;

    fill: none;

    stroke: #fff200;

    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================
   ITEM NAME
========================================= */

.pitara-featured__name {
    font-size: clamp(38px, 3.8vw, 62px);
    font-weight: 400;
    line-height: 1;

    letter-spacing: -0.045em;
}


/* =========================================
   PAUSE ONLY HOVERED ROW
========================================= */

.pitara-featured__marquee:hover
.pitara-featured__track {
    animation-play-state: paused;
}


/* =========================================
   INFINITE ANIMATIONS
========================================= */

@keyframes pitaraFeaturedLeft {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


@keyframes pitaraFeaturedRight {

    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }

}


/* =========================================
   SHORT LAPTOP SCREENS
========================================= */

@media (min-width: 992px) and (max-height: 750px) {

    .pitara-featured {
        padding: 35px 0;
    }


    .pitara-featured__header {
        margin-bottom: 45px;
    }


    .pitara-featured__marquee--row2 {
        margin-top: 35px;
    }


    .pitara-featured__name {
        font-size: clamp(36px, 3.4vw, 54px);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .pitara-featured {
        min-height: 85svh;

        padding: 65px 0;
    }


    .pitara-featured__header {
        margin-bottom: 60px;
    }


    .pitara-featured__badge {
        font-size: 11px;

        padding: 10px 14px;
    }


    .pitara-featured__title {
        margin-top: 20px;

        font-size: clamp(36px, 10vw, 48px);
    }


    .pitara-featured__group {
        gap: 55px;

        padding-right: 55px;
    }


    .pitara-featured__marquee--row2 {
        margin-top: 45px;
    }


    .pitara-featured__name {
        font-size: clamp(34px, 10vw, 46px);
    }

}
/* =========================================
   OUR STORY SECTION
========================================= */

.pitara-story-section {
    position: relative;

    width: 100%;

    padding: 28px 0 0;

    background: #ffffff;

    overflow: hidden;
}



/* =========================================
   STORY CARD
========================================= */

.pitara-story-card {
    width: calc(100% - 46px);
    height: clamp(420px, 42vw, 650px);

    margin: 0 auto;

    display: grid;
    grid-template-columns: 40% 60%;

    overflow: hidden;

    border-radius: 15px;

    background: #efede5;
}



/* =========================================
   LEFT CONTENT
========================================= */

.pitara-story-card__content {
    min-width: 0;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    padding:
        40px
        clamp(35px, 4vw, 75px)
        40px
        clamp(50px, 8.5vw, 165px);

    background: #efede5;
}



/* =========================================
   STORY TITLE
========================================= */

.pitara-story-card__title {
    margin: 0 0 16px;

    color: #1c1c1c;

    font-size: clamp(42px, 4vw, 62px);
    font-weight: 600;
    line-height: 1;

    letter-spacing: -0.055em;
}



/* =========================================
   STORY TEXT
========================================= */

.pitara-story-card__text {
    margin: 0;

    color: #252525;

    font-size: clamp(16px, 1.2vw, 21px);
    font-weight: 500;
    line-height: 1.55;
}



/* =========================================
   STORY BUTTON
========================================= */

.pitara-story-card__button {
    width: fit-content;

    margin-top: clamp(28px, 3.5vh, 40px);

    padding: 14px 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    background: #1d1d1d;
    color: #ffffff;

    border-radius: 100px;

    font-size: 11px;
    font-weight: 500;
    line-height: 1;

    letter-spacing: 0.05em;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.pitara-story-card__button svg {
    width: 14px;
    height: 14px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.pitara-story-card__button:hover {
    background: #000000;

    transform: translateY(-2px);
}



/* =========================================
   RIGHT IMAGE AREA
========================================= */

.pitara-story-card__media {
    width: 100%;
    height: 100%;

    overflow: hidden;
}


.pitara-story-card__image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center center;
}



/* =========================================
   YELLOW CURVED MARQUEE
========================================= */

.pitara-story-marquee {
    position: relative;
    z-index: 5;

    width: 106%;

    margin-left: -3%;
    margin-top: clamp(45px, 5vw, 75px);

    padding: clamp(20px, 2vw, 30px) 0;

    overflow: hidden;

    background: #ffea24;

    transform: rotate(-1.8deg);

    clip-path: polygon(
        0 12%,
        100% 0,
        100% 88%,
        0 100%
    );
}
.pitara-story-marquee{
    position: relative;
    z-index: 999;
}


/* =========================================
   MARQUEE TRACK
========================================= */

.pitara-story-marquee__track {
    width: max-content;

    display: flex;

    will-change: transform;

    animation: pitaraStoryMarquee 22s linear infinite;
}



/* =========================================
   MARQUEE GROUP
========================================= */

.pitara-story-marquee__group {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    gap: clamp(22px, 2.2vw, 42px);

    padding-right: clamp(22px, 2.2vw, 42px);

    white-space: nowrap;
}



/* =========================================
   MARQUEE WORDS
========================================= */

.pitara-story-marquee__word {
    font-family: sans-serif;
    flex-shrink: 0;
    font-size: clamp(55px, 6vw, 105px);
    font-weight: 750;
    line-height: 0.9;
    letter-spacing: 0.0em;
}


.pitara-story-marquee__word--solid {
    color: #181818;
}


.pitara-story-marquee__word--outline {
    color: transparent;

    -webkit-text-stroke: 1.5px #181818;
}



/* =========================================
   MARQUEE ARROWS
========================================= */

.pitara-story-marquee__arrow {
    flex-shrink: 0;
    display: inline-block;
    width: 40px;
    height: 40px;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
}


/* =========================================
   INFINITE MARQUEE
========================================= */

@keyframes pitaraStoryMarquee {
    from {
        transform: translate3d(-50%, 0, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}



/* =========================================
   SHORT LAPTOP SCREENS
========================================= */

@media (min-width: 992px) and (max-height: 800px) {

    .pitara-story-card {
        height: 500px;
    }


    .pitara-story-marquee {
        margin-top: 35px;
        margin-bottom: 35px
    }

}



/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .pitara-story-card {
        width: calc(100% - 28px);
        height: 520px;

        grid-template-columns: 42% 58%;
    }


    .pitara-story-card__content {
        padding:
            35px
            25px
            35px
            45px;
    }


    .pitara-story-card__title {
        font-size: clamp(38px, 5vw, 50px);
    }

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .pitara-story-section {
        padding-top: 12px;
    }


    .pitara-story-card {
        width: calc(100% - 16px);
        height: auto;

        display: flex;
        flex-direction: column;

        border-radius: 11px;
    }


    .pitara-story-card__content {
        width: 100%;
        min-height: 360px;

        padding: 50px 25px;
    }


    .pitara-story-card__title {
        font-size: clamp(40px, 12vw, 54px);
    }


    .pitara-story-card__text {
        font-size: 15px;
    }


    .pitara-story-card__media {
        width: 100%;
        height: 420px;
    }


    .pitara-story-card__image {
        object-position: center center;
    }


    .pitara-story-marquee {
        width: 112%;

        margin-left: -6%;
        margin-top: 35px;

        padding: 20px 0;

        transform: rotate(-2.5deg);
    }


    .pitara-story-marquee__track {
        animation-duration: 16s;
    }


    .pitara-story-marquee__word {
        font-size: clamp(48px, 16vw, 70px);
    }

}

/* =========================================
   FEATURED PITAARAS
========================================= */

.pitara-showcase {
    position: relative;

    width: 100%;
    min-height: 100vh;
    min-height: 100svh;

    padding: clamp(45px, 7vh, 80px) 0;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-color: #161616;
    color: #ffffff;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.055) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.055) 1px,
            transparent 1px
        );

    background-size: 128px 122px;
}


/* =========================================
   INNER
========================================= */

.pitara-showcase__inner {
    width: min(88%, 1450px);

    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.pitara-showcase__header {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-bottom: clamp(35px, 5vh, 55px);

    text-align: center;
}


.pitara-showcase__badge {
    /* display: inline-flex; */
    align-items: center;
    gap: 9px;

    padding: 11px 17px;

    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 100px;

    color: #fff200;

    font-size: 13px;
    font-weight: 500;
    line-height: 1;
}


.pitara-showcase__badge svg {
    width: 13px;
    height: 13px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.pitara-showcase__title {
    margin: 20px 0 0;

    font-size: clamp(42px, 4vw, 64px);
    font-weight: 600;
    line-height: 1;

    letter-spacing: -0.0em;
}


/* =========================================
   ONE FIXED IMAGE SLIDER
========================================= */

.pitara-showcase__slider {
    position: relative;

    width: 100%;
    height: clamp(360px, 41vw, 630px);

    overflow: hidden;

    border-radius: 16px;

    background: #292929;
}


/* IMPORTANT:
   every slide occupies the SAME image area
*/

.pitara-showcase__slider .swiper-wrapper {
    width: 100%;
    height: 100%;
}


.pitara-showcase__slide {
    width: 100%;
    height: 100%;

    flex-shrink: 0;

    overflow: hidden;
}


/* =========================================
   SLIDER IMAGE
========================================= */

.pitara-showcase__image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    user-select: none;
    pointer-events: none;
}


/* =========================================
   FIXED BOTTOM CONTENT
========================================= */

.pitara-showcase__bottom {
    width: 100%;

    margin-top: 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


.pitara-showcase__info {
    min-width: 0;
}


/* =========================================
   TITLE
========================================= */

.pitara-showcase__name {
    margin: 0 0 11px;

    color: #ffffff;

    font-size: clamp(24px, 2.1vw, 34px);
    font-weight: 600;
    line-height: 1;

    letter-spacing: -0.035em;
}


/* =========================================
   CATEGORY
========================================= */

.pitara-showcase__category {
    width: fit-content;

    /* display: inline-flex; */
    align-items: center;
    justify-content: center;

    padding: 7px 12px;

    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 100px;

    color: #fff200;

    font-size: 11px;
    font-weight: 500;
    line-height: 1;
}


/* =========================================
   FIXED NAVIGATION
========================================= */

.pitara-showcase__navigation {
    display: flex;
    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}


.pitara-showcase__arrow {
    width: 46px;
    height: 46px;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    cursor: pointer;

    transition:
        transform 0.15s ease,
        background 0.15s ease;
}


.pitara-showcase__arrow svg {
    width: 19px;
    height: 19px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.pitara-showcase__prev {
    background: #505050;
    color: #ffffff;
}


.pitara-showcase__next {
    background: #ffffff;
    color: #111111;
}


.pitara-showcase__arrow:hover {
    transform: scale(1.07);
}


.pitara-showcase__arrow:active {
    transform: scale(0.92);
}


/* =========================================
   SHORT LAPTOP
========================================= */

@media (min-width: 992px) and (max-height: 800px) {

    .pitara-showcase {
        padding: 35px 0;
    }


    .pitara-showcase__header {
        margin-bottom: 30px;
    }


    .pitara-showcase__slider {
        height: min(100vh, 520px);
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .pitara-showcase__inner {
        width: calc(100% - 40px);
    }


    .pitara-showcase__slider {
        height: 480px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .pitara-showcase {
        min-height: auto;

        padding: 65px 0;
    }


    .pitara-showcase__inner {
        width: calc(100% - 24px);
    }


    .pitara-showcase__header {
        margin-bottom: 35px;
    }


    .pitara-showcase__badge {
        font-size: 11px;
    }


    .pitara-showcase__title {
        font-size: clamp(38px, 11vw, 50px);
    }


    .pitara-showcase__slider {
        height: 58svh;
        min-height: 390px;
        max-height: 520px;

        border-radius: 12px;
    }


    .pitara-showcase__bottom {
        margin-top: 20px;

        gap: 15px;
    }


    .pitara-showcase__name {
        font-size: 23px;
    }


    .pitara-showcase__category {
        padding: 6px 10px;

        font-size: 10px;
    }


    .pitara-showcase__navigation {
        gap: 7px;
    }


    .pitara-showcase__arrow {
        width: 42px;
        height: 42px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .pitara-showcase__slider {
        height: 390px;
        min-height: 0;
    }


    .pitara-showcase__name {
        font-size: 20px;
    }


    .pitara-showcase__arrow {
        width: 39px;
        height: 39px;
    }

}

/* =========================================
   OUR WORK SECTION
========================================= */

.pitara-work {
    width: 100%;

    padding: clamp(50px, 7vw, 100px) 0 30px;

    background: #ffffff;
    color: #1c1c1c;
}


.pitara-work__inner {
    width: calc(100% - 56px);

    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.pitara-work__header {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-bottom: clamp(35px, 4vw, 55px);

    text-align: center;
}


.pitara-work__badge {
    align-items: center;

    gap: 9px;

    padding: 11px 18px;

    border: 1px solid #9d9d9d;
    border-radius: 100px;

    color: #1d1d1d;

    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}


.pitara-work__badge svg {
    width: 13px;
    height: 13px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.pitara-work__title {
    margin: 18px 0 0;

    font-size: clamp(42px, 4vw, 64px);
    font-weight: 600;
    line-height: 1;

    letter-spacing: -0.05em;
}


/* =========================================
   GALLERY GRID
========================================= */

.pitara-work__grid {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 0.96fr 1.2fr;

    gap: 14px;
}


/* =========================================
   COLUMNS
========================================= */

.pitara-work__column {
    display: grid;

    gap: 14px;
}


/* LEFT COLUMN */

.pitara-work__column--left {
    grid-template-rows: 0.92fr 1.08fr;
}


/* MIDDLE COLUMN */

.pitara-work__column--middle {
    grid-template-rows: 1.28fr 0.72fr;
}


/* RIGHT COLUMN */

.pitara-work__column--right {
    grid-template-rows: 1fr 1fr;
}


/* =========================================
   CARDS
========================================= */

.pitara-work__card{
    position:relative;

    width:100%;
    min-height:0;

    overflow:hidden;

    border-radius:10px;

    background:#eeeeee;
}

/* DARK OVERLAY */

.pitara-work__card::before{
    content:"";

    position:absolute;
    inset:0;

    background:rgba(0,0,0,.35);

    opacity:0;

    transition:opacity .45s ease;

    z-index:1;
}


/* =========================================
   IMAGE
========================================= */

.pitara-work__image{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    display:block;

    object-fit:cover;

    transition:transform .7s cubic-bezier(.22,1,.36,1);
}


/* IMAGE HOVER */

.pitara-work__card:hover .pitara-work__image{
    transform:scale(1.08);
}


/* DARK OVERLAY SHOW */

.pitara-work__card:hover::before{
    opacity:1;
}


/* =========================================
   FEATURED GLASS CARD
========================================= */

.pitara-work__overlay{
    position: absolute;
    left: 16px;
    bottom: 16px;

    z-index: 2;

    display: flex;
    flex-direction: column;
    gap: 12px;

    padding: 18px;

    width: fit-content;
    max-width: min(420px, calc(100% - 32px));

    border: 0.5px solid rgba(255,255,255,.25);
    border-radius: 12px;

    background: rgba(255,255,255,.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    opacity: 0;
    visibility: hidden;
    transform: translateY(24px);

    transition:
        opacity .35s ease,
        transform .35s cubic-bezier(.22,1,.36,1),
        visibility .35s ease;
}
/* =========================================
   SMALL OVERLAY
========================================= */

.pitara-work__overlay--small{
    /* left:39px; */
    right:auto;
    bottom:12px;

    width:325px;
    max-width:calc(100% - 24px);

    padding:16px 18px;
}

.pitara-work__overlay--small .pitara-work__overlay-title{
    margin-bottom:6px;

    font-size:22px;
    line-height:1.1;
}

.pitara-work__overlay--small .pitara-work__overlay-text{
    font-size:13px;
    line-height:1.45;

    margin-bottom:14px;
}

.pitara-work__overlay--small .pitara-work__button{
    margin-top:0;

    padding:10px 16px;

    font-size:10px;
}

.pitara-work__overlay--small .pitara-work__button svg{
    width:12px;
    height:12px;
}
/* SHOW CARD */

.pitara-work__card:hover .pitara-work__overlay{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* =========================================
   TITLE
========================================= */

.pitara-work__overlay-title{
    margin:0;

    color:#fff;

    font-size:clamp(20px,1.6vw,28px);

    font-weight:600;

    line-height:1.15;
}


/* =========================================
   DESCRIPTION
========================================= */

.pitara-work__overlay-text{
    margin:0;

    color:#fff;

    font-size:14px;

    line-height:1.5;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;

    overflow:hidden;
}


/* =========================================
   BUTTON
========================================= */

.pitara-work__button{
    width:fit-content;

    margin-top:4px;

    padding:12px 18px;

    border-radius:100px;

    font-size:11px;
}

.pitara-work__button:hover{

    background:#000;

    transform:translateY(-2px);

}


.pitara-work__button svg{

    width:14px;
    height:14px;

    fill:none;
    stroke:currentColor;

    stroke-width:1.5;
    stroke-linecap:round;
    stroke-linejoin:round;
}
/* =========================================
   EXPLORE BUTTON
========================================= */

.pitara-work__button,
.pitara-work__view-all {
    width: fit-content;
    letter-spacing: 0.95px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 14px 20px;

    border-radius: 100px;

    background: #1d1d1d;
    color: #ffffff;

    font-size: 11px;
    font-weight: 500;
    line-height: 1;
}


.pitara-work__button {
    margin-top: 20px;
}


.pitara-work__button svg,
.pitara-work__view-all svg {
    width: 14px;
    height: 14px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.pitara-work__button,
.pitara-work__view-all {
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}


.pitara-work__button:hover,
.pitara-work__view-all:hover {
    transform: translateY(-2px);

    background: #000000;
}


/* =========================================
   FOOTER
========================================= */

.pitara-work__footer {
    display: flex;
    justify-content: center;

    padding-top: 34px;
}


/* =========================================
   SHORT LAPTOP
========================================= */

@media (min-width: 992px) and (max-height: 800px) {

    .pitara-work {
        padding-top: 45px;
    }


    .pitara-work__header {
        margin-bottom: 30px;
    }


    .pitara-work__grid {
        height: 600px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .pitara-work__inner {
        width: calc(100% - 32px);
    }


    .pitara-work__grid {
        height: auto;

        grid-template-columns: 1fr 1fr;
    }


    .pitara-work__column {
        grid-template-rows: none;
    }


    .pitara-work__column--right {
        grid-column: 1 / -1;

        grid-template-columns: 1fr 1fr;
    }


    .pitara-work__card {
        height: 420px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .pitara-work {
        padding: 65px 0 30px;
    }


    .pitara-work__inner {
        width: calc(100% - 20px);
    }


    .pitara-work__header {
        margin-bottom: 32px;
    }


    .pitara-work__badge {
        padding: 10px 15px;

        font-size: 11px;
    }


    .pitara-work__title {
        font-size: clamp(38px, 11vw, 50px);
    }


    .pitara-work__grid {
        display: flex;
        flex-direction: column;

        gap: 10px;
    }


    .pitara-work__column,
    .pitara-work__column--right {
        display: flex;
        flex-direction: column;

        gap: 10px;
    }


    .pitara-work__card {
        height: 360px;

        border-radius: 9px;
    }


    .pitara-work__card--featured {
        height: 500px;
    }


    .pitara-work__overlay {
        left: 10px;
        right: 10px;
        bottom: 10px;

        padding: 22px;
    }


    .pitara-work__overlay-title {
        font-size: 25px;
    }


    .pitara-work__footer {
        padding-top: 25px;
    }

}
/* =========================================
   CONTACT CTA SECTION
========================================= */

.pitara-contact-cta {
    position: relative;

    width: 100%;
    min-height: 450px;

    padding-top: 115px;

    overflow: hidden;

    background-color: #f7f7f7;

    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.1) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.1) 1px,
            transparent 1px
        );

    background-size: 128px 120px;
}


/* =========================================
   UNFINISHED YELLOW MARQUEE
========================================= */

.pitara-contact-marquee {
    margin-top: 35px;
    position: absolute;
    z-index: 3;

    top: 0;
    left: -3%;

    width: 106%;

    overflow: hidden;

    padding: clamp(24px, 2.2vw, 36px) 0;

    background: #ffeb2b;

    transform: rotate(-1.8deg);

    clip-path: polygon(
        0 10%,
        100% 0,
        100% 88%,
        0 100%
    );
}


/* MOVING TRACK */

.pitara-contact-marquee__track {
    width: max-content;

    display: flex;

    /* starts already cut-off */
    transform: translate3d(-18vw, 0, 0);

    will-change: transform;

    animation: pitaraContactMarquee 24s linear infinite;
}


/* DUPLICATE GROUPS */

.pitara-contact-marquee__group {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    gap: clamp(34px, 3vw, 60px);

    padding-right: clamp(34px, 3vw, 60px);

    white-space: nowrap;
}


/* EACH LET'S TALK UNIT */

.pitara-contact-marquee__phrase {
    display: inline-flex;
    align-items: center;

    gap: clamp(22px, 2vw, 38px);

    flex-shrink: 0;
}


/* TEXT */

.pitara-contact-marquee__outline,
.pitara-contact-marquee__solid {
    flex-shrink: 0;

    font-size: clamp(62px, 6vw, 105px);
    font-weight: 700;
    line-height: 0.9;
    font-family: sans-serif;
    letter-spacing: 0.05em;
}


.pitara-contact-marquee__solid {
    color: #181818;
}


.pitara-contact-marquee__outline {
    color: transparent;

    -webkit-text-stroke: 1.5px #181818;
}


/* ARROW */

.pitara-contact-marquee__arrow{
    flex-shrink: 0;
    display: inline-block;

    width: 40px;
    height: 40px;

    margin-left: 12px;

    object-fit: contain;
    user-select: none;
    pointer-events: none;
}


/* =========================================
   SEAMLESS INFINITE MOVEMENT
========================================= */

@keyframes pitaraContactMarquee {

    from {
        transform: translate3d(calc(-50% - 18vw), 0, 0);
    }

    to {
        transform: translate3d(-18vw, 0, 0);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .pitara-contact-marquee {
        left: -6%;

        width: 112%;

        padding: 20px 0;

        transform: rotate(-2.5deg);
    }


    .pitara-contact-marquee__track {
        animation-duration: 17s;
    }


    .pitara-contact-marquee__outline,
    .pitara-contact-marquee__solid {
        font-size: clamp(52px, 17vw, 72px);
    }


    .pitara-contact-marquee__group {
        gap: 30px;

        padding-right: 30px;
    }


    .pitara-contact-marquee__phrase {
        gap: 20px;
    }

}

/* =========================================
   CTA CONTENT
========================================= */

.pitara-contact-cta__content {
    min-height: 335px;

    padding: 85px 20px 55px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}


.pitara-contact-cta__title {
    margin: 0;

    color: #1d1d1d;

    font-size: clamp(38px, 4vw, 62px);
    font-weight: 600;
    line-height: 1;

    letter-spacing: -0.05em;
}


.pitara-contact-cta__text {
    margin: 10px 0 0;

    color: #242424;

    font-size: clamp(15px, 1.3vw, 20px);
    font-weight: 400;
    line-height: 1.4;
}


.pitara-contact-cta__button {
    width: fit-content;

    margin-top: 38px;

    padding: 15px 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    border-radius: 100px;

    background: #000000;
    color: #fff200;

    font-size: 12px;
    font-weight: 600;
    line-height: 1;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


.pitara-contact-cta__button svg {
    width: 13px;
    height: 13px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.pitara-contact-cta__button:hover {
    transform: translateY(-2px);

    opacity: 0.85;
}


/* =========================================
   FOOTER
========================================= */

.pitara-footer {
    width: 100%;

    background: #000000;
    color: #ffffff;
}


/* =========================================
   FOOTER MAIN
========================================= */

.pitara-footer__main {
    width: min(84%, 1450px);

    margin: 0 auto;

    padding: 48px 0 55px;

    display: grid;
    grid-template-columns: 1fr 1fr 1.1fr;

    gap: 80px;
}


.pitara-footer__heading {
    margin: 0 0 20px;

    color: #fff200;

    font-size: 17px;
    font-weight: 500;
    line-height: 1;
}


.pitara-footer__text {
    margin: 0;

    color: rgba(255, 255, 255, 0.75);

    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
}


/* =========================================
   QUICK LINKS
========================================= */

.pitara-footer__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 13px;
}


.pitara-footer__links a {
    color: rgba(255, 255, 255, 0.9);

    font-size: 13px;
    font-weight: 400;
    line-height: 1;

    transition: color 0.2s ease;
}


.pitara-footer__links a:hover {
    color: #fff200;
}


/* =========================================
   NEWSLETTER
========================================= */

.pitara-footer__newsletter {
    justify-self: end;

    width: min(100%, 330px);
}


.pitara-footer__form {
    position: relative;

    width: 100%;

    margin-top: 20px;
}


.pitara-footer__form input {
    width: 100%;
    height: 42px;

    padding: 0 52px 0 17px;

    border: 1px solid #d2d2d2;
    border-radius: 100px;
    outline: none;

    background: #ffffff;
    color: #111111;

    font-family: inherit;
    font-size: 11px;
}


.pitara-footer__form button {
    position: absolute;

    top: 4px;
    right: 4px;

    width: 34px;
    height: 34px;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: #ffeb2b;
    color: #111111;

    cursor: pointer;
}


.pitara-footer__form button svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================
   COPYRIGHT
========================================= */

.pitara-footer__copyright {
    min-height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px 20px;

    background: #ffffff;
    color: #111111;

    text-align: center;

    font-size: 10px;
    font-weight: 600;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .pitara-footer__main {
        width: calc(100% - 60px);

        grid-template-columns: 1fr 1fr;

        gap: 50px;
    }


    .pitara-footer__newsletter {
        justify-self: start;

        grid-column: 1 / -1;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .pitara-contact-cta {
        min-height: 480px;

        padding-top: 90px;

        background-size: 80px 90px;
    }


    .pitara-contact-marquee {
        width: 112%;

        left: -6%;

        padding: 19px 0;

        transform: rotate(-2.5deg);
    }


    .pitara-contact-marquee__track {
        animation-duration: 15s;
    }


    .pitara-contact-marquee__word {
        font-size: clamp(52px, 17vw, 72px);
    }


    .pitara-contact-cta__content {
        min-height: 390px;

        padding: 90px 20px 55px;
    }


    .pitara-contact-cta__title {
        max-width: 500px;

        font-size: clamp(38px, 11vw, 50px);
    }


    .pitara-contact-cta__text {
        max-width: 340px;

        font-size: 15px;
    }


    .pitara-contact-cta__button {
        margin-top: 30px;

        padding: 14px 20px;

        font-size: 10px;
    }


    .pitara-footer__main {
        width: calc(100% - 40px);

        padding: 50px 0;

        grid-template-columns: 1fr;

        gap: 42px;
    }


    .pitara-footer__newsletter {
        grid-column: auto;

        width: 100%;
    }

}