* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body,
html {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
    background-color: #f4f4f4;
}



.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 15vh;
    z-index: 100;
    transition: all 0.3s ease-in-out;
}

.nav-bar.change {
    height: 10vh;
    padding: 0px 5%;
    color: #252422;
    background-color: #f4f4f4;
}

.nav-bar.change>.logo,
.nav-bar.change>.menu-btn {
    color: #252422;
}


.logo {
    font-size: 22px;
    color: #fff;
}

.burger-container {
    width: 30px;
    display: none;
}



.menu-btn {
    display: flex;
    color: #f4f4f4;
    font-size: 16px;
    width: 50px;
    align-items: center;
    justify-content: center;
    height: 23px;
    border-radius: 10px;
}


.nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    list-style: none;
    justify-content: space-between;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #252422;
    padding: 0 5% 0;
    z-index: 900;
    transition: all 1s ease-in;
}

.nav-links.show {
    display: flex;
}

.links-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    list-style: none;
    height: 80%;
    padding: 2.5rem 0 0;

}

.nav-links li a,
.nav-links li {
    text-decoration: none;
    color: #f9cdcd;
    font-size: 20px;
    font-weight: 600;
    line-height: 40px;
}

.nav-links .initiatives {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links .initiatives svg {
    height: 20px;
    width: 20px;
}

.navlinks-footer {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.navlinks-footer p {
    padding: 2rem 0;
    font-size: 12px;
    color: #5e5e5e;
}

.navlinks-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 15vh;
    border-bottom: 1px solid #f9cdcd;

}

.navlinks-logo {
    color: #f9cdcd;
    font-size: 22px;
}

.navlinks-burger {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    border: 1px solid #f9cdcd;
    position: relative;
}

.navlinks-burger-line1 {
    height: 2px;
    width: 15px;
    background-color: #f9cdcd;
    transform: rotate(-45deg) translateX(-0px) translateY(-0px);
    transition: all 0.4s ease;
    position: absolute;
}

.navlinks-burger-line2 {
    height: 2px;
    width: 15px;
    background-color: #f9cdcd;
    transform: rotate(45deg) translateX(-0px) translateY(-0px);
    transition: all 0.4s ease;
    position: absolute;
}














/* collections section */
.collecctions {
    justify-content: space-between;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #252422;
    z-index: 100000;
    display: flex;
    align-items: center;
    transition: 0.3s ease-in;
    padding: 0rem 5%;
    transform: translateX(100%);
    overflow: hidden;
}


.collecctions.active {
    opacity: 1;
    z-index: 10000;
    display: flex;
    transform: translateX(0);
}


.collections-header {
    display: none;
}


.collections-item-container {
    padding: 1rem 0;
    width: 100%;
    height: 85vh;
    overflow: scroll;
    position: relative;
}

.collections-item-container::-webkit-scrollbar {
    display: none;
}

.initiatives-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 2.5rem;
}


.collection-item {
    min-width: 100%;
    height: 520px;
    border-bottom: 1px solid #f9cdcd;
    padding: 0 0;
}

.collection-item-img {
    height: 300px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.item-img1 {
    background-image: url(/assets/Initatives1.png);
}

.item-img2 {
    background-image: url(/assets/Initatives2.png);
}

.item-img3 {
    background-image: url(/assets/Initatives3.png);
}

.item-img4 {
    background-image: url(/assets/Initatives4.png);
}

.item-img5 {
    background-image: url(/assets/Initatives5.png);
}


.collection-text-container {
    padding: 15px 10px 0;
}

.collection-heading {
    display: flex;
    justify-content: space-between;
}

.collection-heading p {
    font-size: 20px;
    font-weight: 600;
    color: #f9cdcd;
}


.collection-text p {
    font-size: 12px;
    color: #f9cdcd;
    font-weight: 500;
}

.custom-cursor {
    display: none;
}

.collection-text p:nth-child(2) {
    line-height: 17px;
}

.collection-text a {
    color: #f9cdcd;
    font-size: 16px;
    font-weight: 600;
}

.collections-footer{
    width: 100%;
    padding: 0rem 5% 0rem;
    display: flex;
    align-items: center;
}

.footer-copyright {
    width: 100%;
    display: flex;
    justify-content: space-between;
}























/* header section */
header {
    z-index: 1;
    height: 100vh;
    width: 100vw;
    position: relative;
}

header video {
    z-index: 1;
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.header-cursor-container {
    display: flex;
    flex-direction: column;
    z-index: 10;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 90vh;
    top: 10vh;
}

.cursor-container {
    /* transform: translate(-50%, -50%); */
    transition: all 0.3s ease;
    transform-origin: 100% 100%;

}

.header-cursor {
    height: 60px;
    width: 60px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    padding: 0 0.5rem;
    text-align: center;
    line-height: 14px;
}

.cursor-container p {
    text-align: center;
    font-size: 12px;
}

/* reel video */
.reel-exit {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    border: 1px solid #f4f4f4;
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10001;
}

.reel-line1 {
    height: 2px;
    width: 15px;
    background-color: #f4f4f4;
    transform: rotate(-45deg) translateX(-0px) translateY(-0px);
    transition: all 0.4s ease;
    position: absolute;
}

.reel-line2 {
    height: 2px;
    width: 15px;
    background-color: #f4f4f4;
    transform: rotate(45deg) translateX(-0px) translateY(-0px);
    transition: all 0.4s ease;
    position: absolute;
}

.reel {
    min-width: 320px;
    width: 100%;
    height: 100Vh;
    position: absolute;
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 1);
}

.reel.playReel {
    display: flex;
}

.reel video {
    /* display: none; */
    position: relative;
    min-width: 100%;
    min-height: 90%;
    max-width: 900px;
    max-height: 500px;
    outline: none;
}











/* about */
.about-work {
    display: flex;
    padding: 8rem 5% 5rem;
    background-color: #f4f4f4;
    flex-direction: column;
}

.about-work-text-container {
    width: 100%;

}

.about-work-text {
    font-size: 20px;
    line-height: 22px;
    font-weight: 500;
    color: #252422;
}

.about-text span {
    font-size: 40px;
}

.cta-btn {
    margin-top: 2rem;
    border: 1px solid #252422;
    height: 30px;
    width: 100px;
    border-radius: 15px;
    cursor: pointer;
    background-color: #f4f4f4;
    outline: none;
    position: relative;
    overflow: hidden;
    color: #252422;
    z-index: 1;
    font-size: 11px;
}


.about-work-logo {
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    margin-top: 3rem;
}

.about-work-logo p {
    color: #252422;
    font-size: 80px;
    font-weight: 700;
}

.about-work-logo span {
    color: #252422;
    font-size: 180px;
    font-weight: 400;
    position: relative;
    bottom: 3rem;
}


















/* work section */
.work-section {
    display: flex;
    width: 100%;
    padding: 0 5% 1rem;
    gap: 1rem;
    background-color: #f4f4f4;
    overflow-x: scroll;
}

.work-section::-webkit-scrollbar {
    display: none;
}

.work-card {
    min-width: 200px;
    height: 500px;
    cursor: pointer;
    position: relative;
}

.work-img-container {
    width: 100%;
    height: 330px;
    position: relative;
    overflow: hidden;
}

.work-img {
    width: 100%;
    height: 300px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* overflow: hidden; */
    transition: transform 0.5s ease;
    transform: scale(1.09);
    min-width: 200px;
}

.work-img1 {
    background-image: url(/assets/work1-thumbnail.jpg);
}

.work-img2 {
    background-image: url(/assets/work2-thumbnail.jpg);
}


.work-img-container video {
    height: 315px;
    width: 200px;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.work-img-text {
    padding: 0rem;
    width: 75%;
}

.work-heading {
    font-size: 20px;
    color: #252422;
}

.work-img-text p {
    color: #252422;
    line-height: 18px;
    font-size: 14px;
}















/* featured engagements */
.featured {
    padding: 2rem 5% 2rem;
    background-color: #f4f4f4;
    position: relative;
}

.gibberish {
    border-top: 1px solid #252422;
    padding: 0.7rem 0;
    display: flex;
    justify-content: space-between;
}

.gibberish p {
    color: #252422;
    font-size: 10px;
}

.gibberish p:nth-child(2) {
    width: 40%;
}

.gibberish span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #252422;
}

.featured-cusor-container {
    display: none;
}

.featured-heading {
    padding: 3rem 0;
    font-size: 20px;
    width: 130px;
    color: #252422;
    line-height: 22px;
}

.featured-company-container {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    position: relative;
    height: 420px;
}

.featured-company-container::-webkit-scrollbar {
    height: 3px;
    background-color: #c5c5c5;
}

.featured-company-container::-webkit-scrollbar-thumb {
    background-color: #252422;
}

.company-logo {
    height: 5rem;

}

.company-logo img {
    line-height: 2rem;

}



.line {
    margin-top: 1rem;
    height: 2px;
    width: 30px;
    background-color: #252422;
}

.company-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.company-card {
    height: 350px;
    min-width: 260px;
    position: relative;
    color: #252422;
    padding: 1rem 5% 0 0;
}

.google-logo {
    width: 130px;
}

.pantagonia-logo {
    width: 220px;
}

.company-text,
.company-text a {
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #252422;
}














/* about section */
.about-section {
    display: flex;
    padding: 5rem 5% 0;
    background-color: #f4f4f4;
    width: 100%;
    flex-direction: column-reverse;
}

.about-text-container {
    padding: 3rem 0 0;
    width: 100%;
    position: relative;
}

.about-text-heading {
    font-size: 45px;
    line-height: 42px;
    color: #252422;
}

.about-text-container p {
    padding: 1rem 0 0;
    font-weight: 500;
    color: #252422;
    font-size: 16px;
}

.about-text-container p span {
    font-weight: 700;
}

.video-container {
    width: 100%;
    position: relative;
}

.video-container video {
    width: 100%;
    object-fit: cover;
}















/* featured-news */
.featured-news {
    background-color: #f4f4f4;
    padding: 2rem 5%;
    z-index: 100;
}

.featured-news-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f4f4f4;
}

.feature-container {
    background-color: #f4f4f4;
    border-top: 1px solid #252422;
    padding: 1rem 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* height: 280px; */
    cursor: pointer;
    margin-bottom: 3rem;
    position: relative;
}

.feature-img-container {
    min-width: 100%;
    height: 250px;
    overflow: hidden;
}

.feature-img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform 0.5s ease;
    transform: scale(1.09);
}

.feature-img1 {
    background-image: url(/assets/feature-img1.png);
}

.feature-img2 {
    background-image: url(/assets/feature-img2.jpg);
}

.feature-img3 {
    background-image: url(/assets/feature-img3.png);
}

.feature-img4 {
    background-image: url(/assets/feature-img4.png);
}

.feature-img5 {
    background-image: url(/assets/feature-img5.jpg);
}

.feature-img6 {
    background-image: url(/assets/feature-img6.png);
}

.feature-img7 {
    background-image: url(/assets/feature-img7.jpg);
}

.feature-about-text {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
}

.feature-heading {
    font-size: 25px;
    line-height: 27px;
    width: 100%;
    font-weight: 500;
    transition: text-decoration 1s ease;
    padding: 1.5rem 0 0rem;
    height: 9rem;

}

.feature-about-text p {
    font-weight: 600;
    font-size: 12px;
}

.feature-about-text p span {
    font-weight: 400;
}

figure {
    width: 15px;
    height: 15px;
    position: absolute;
    right: 0;
    bottom: 8px;
}

figure svg {
    color: #252422;
}
















/* footer section */
.footer {
    width: 100%;
    padding: 1rem 5% 0rem;
    background-color: #252422;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.footer-about {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 0;
}

.footer-logo {
    color: #f9cdcd;
    font-weight: 700;
    font-size: 18px;
}

.footer-about-text {
    flex-direction: column;
    width: 55%;
    padding-top: 4rem;
}

.footer-about-text,
.footer-about-text a {
    font-size: 20px;
    line-height: 22px;
    font-weight: 600;
    color: #f9cdcd;
}


.footer-links-container {
    display: flex;
    justify-content: space-between;
    padding: 3rem 0;
    flex-direction: column;
}

.footer-email {
    width: 100%;
}

.footer-heading {
    font-size: 16px;
    line-height: 19px;
    color: #f9cdcd;
    font-weight: 500;
    margin-bottom: 1rem;
}

.email-section {
    display: flex;
    height: 2.5rem;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid #f9cdcd;
}

.email-section input {
    background: transparent;
    font-size: 18px;
    height: 3rem;
    border: none;
    outline: none;
    color: #f9cdcd;
    width: 90%;
}

.email-section input::placeholder {
    color: #f9cdcd;
}

.email-section button {
    background: none;
    border: none;

}

.email-section button svg {
    width: 20px;
    height: 17px;
    color: #f9cdcd;
}

.error {
    display: flex;
}

.error p {
    font-size: 12px;
    color: rgb(221, 63, 63);
    display: none;
}

.ul-links-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-direction: column;
}

.footer-links {
    display: flex;
    flex-direction: column;
    margin-top: 3rem;
}

.footer-links span {
    color: #f9cdcd;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    cursor: pointer;
}

.footer-copyright-container {
    width: 100%;
    background-color: #252422;
}

.copyright-container {
    background-color: #141414d0;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem 5% 1rem;
}

.footer-copyright p {
    color: #5e5e5e;
    font-size: 12px;
    cursor: pointer;
}

.footer-copyright p:nth-child(2):hover,
.footer-copyright p:nth-child(3):hover {
    text-decoration: underline;
}





























@media screen and (min-width: 1024px) {

    /* scroll bar change */
    /* ::-webkit-scrollbar {
        width: 10px;
        background: rgba(218, 218, 218, 0.295);
        border-radius: 3px;
    }

    ::-webkit-scrollbar:hover {
        display: block;
    }

    ::-webkit-scrollbar-thumb {
        background: #252422;
        border-radius: 3px;
    } */

    .scroll-down .nav-bar {
        transform: translate3d(0, -100%, 0);
    }



    .nav-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 5%;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 15vh;
        z-index: 10000;
        transition: all 0.3s ease-in-out;
    }

    .nav-bar.change {
        padding: 20px 5%;
        color: #252422;
        background-color: #f4f4f4;
    }

    .nav-bar.change>.logo,
    .nav-bar.change>.nav-links li a {
        color: #252422;
    }

    .nav-bar.change .burger span {
        background-color: #252422;
    }

    .logo {
        font-size: 28px;
        color: #fff;
        cursor: pointer;
    }

    .burger-container {
        width: 30px;
        display: flex;
    }

    .burger {
        width: 23px;
        height: 20px;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        cursor: pointer;
        transition: 0.3s ease;
        position: relative;
    }

    .burger:hover {
        width: 29px;
    }

    .burger:hover .burger span:nth-child(2) {
        margin: 0 3px;
    }

    .burger span {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background-color: #fff;
    }

    .menu-btn {
        display: none;
    }


    .nav-links {
        display: flex;
        align-items: baseline;
        flex-direction: row;
        max-width: 70%;
        list-style: none;
        justify-content: space-between;
        height: 27px;
        position: relative;
        padding: 0 0 10px;
        background-color: transparent;
        transition: opacity 0.1s ease-in-out;
    }

    .links-container {
        /* position: relative; */
        display: flex;
        align-items: flex-end;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        background-color: transparent;
    }

    .nav-links li a {
        text-decoration: none;
        color: #fff;
        font-size: 14px;
        font-weight: 500;
    }

    /* .nav-links li a::after {
        content: "";
        position: relative;
        width: 100%;
        height: 20px;
        left: 0;
        bottom: -50px;
        color: aqua;
        background-color: yellow;
    } */

    .nav-links li:nth-child(8) {
        display: none;
    }

    .navlinks-nav,
    .navlinks-footer {
        display: none;
    }



    /* hide some nav items when burger is clicke */
    .nav-bar.hide {
        background-color: transparent;
    }
    .nav-bar.hide>.logo,
    .nav-bar.hide>.nav-links {
        opacity: 0;
    }

    .burger-container.circle {
        width: 40px;
        height: 40px;
    }

    .burger.circle {
        position: relative;
        width: 40px;
        height: 40px;
        align-items: center;
        border-radius: 50%;
        border: 2px solid #f9cdcd;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .burger.circle span:nth-child(1) {
        height: 3px;
        width: 25px;
        background-color: #f9cdcd;
        transform: rotate(-45deg) translateX(-0px) translateY(-0px);
        transition: all 0.4s ease;
        position: absolute;
        border-radius: 0;
    }

    .burger.circle span:nth-child(2) {
        opacity: 0;
    }

    .burger.circle span:nth-child(3) {
        height: 3px;
        width: 25px;
        background-color: #f9cdcd;
        transform: rotate(45deg) translateX(-0px) translateY(-0px);
        transition: all 0.4s ease;
        position: absolute;
        border-radius: 0;
    }













    /* collections section */
    .collecctions {
        justify-content: space-between;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        background-color: #252422;
        z-index: 1000;
        display: none;
        align-items: flex-start;
        transition: display 0.3s ease-in;
        padding: 0;
        transform: translateX(0);
        position: fixed;
        top: 0;
        left: 0;
    }


    .collecctions.active {
        opacity: 1;
        z-index: 1000;
        display: flex;
    }


    .navlinks-nav {
        display: none;
    }

    .collections-header {
        display: flex;
        width: 100%;
        justify-content: space-between;
        padding: 2rem 5%;
        align-items: center;
    }

    .collections-circle {
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background-color: #f9cdcd;
    }

    .collections-heading {
        display: flex;
        width: 85%;
    }

    .collections-heading p {
        font-size: 14px;
        font-weight: 500px;
        color: #f9cdcd;

    }

    .collections-heading p:nth-child(1) {
        width: 190px;
        margin-right: 3rem;
    }

    .collections-heading p:nth-child(2) {
        width: 480px;
    }

    .burger-close {
        opacity: 0;
    }

    .collections-item-container {
        padding: 0 5%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow-x: scroll;
    }

    .initiatives-container {
        display: flex;
        flex-direction: row;
        overflow: auto;
        gap: 0;
        position: relative;
    }

    .initiatives-container::-webkit-scrollbar {
        display: none;
    }

    .collection-item {
        position: relative;
        min-width: 380px;
        height: 420px;
        border-bottom: 0;
        border-left: 1px solid #f9cdcd;
        padding: 0 10px;
    }

    .collection-item-img {
        height: 300px;
        width: 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .item-img1 {
        background-image: url(/assets/Initatives1.png);
    }

    .item-img2 {
        background-image: url(/assets/Initatives2.png);
    }

    .item-img3 {
        background-image: url(/assets/Initatives3.png);
    }

    .item-img4 {
        background-image: url(/assets/Initatives4.png);
    }

    .item-img5 {
        background-image: url(/assets/Initatives5.png);
    }


    .collection-text-container {
        padding: 15px 10px 0;
    }

    .collection-heading {
        display: flex;
        justify-content: space-between;
    }

    .collection-heading p {
        font-size: 20px;
        font-weight: 600;
        color: #f9cdcd;
    }

    .collection-text {
        overflow: hidden;
        height: 22px;
        transition: height 0.3s ease-in;
    }

    .collection-item:hover .collection-text {
        height: 160px;
    }

    .collection-text p {
        font-size: 12px;
        color: #f9cdcd;
        font-weight: 500;
    }

    .collection-text p:nth-child(1) {
        line-height: 25px;
    }

    .collection-item:hover .collection-item-img {
        height: 160px;
        width: 100%;
        transition: all 0.3s ease-in;
    }



    .collection-item:hover .collection-text p:nth-child(2),
    .collection-item:hover .collection-text a {
        display: block;
        overflow: hidden;
    }


    .collection-text p:nth-child(2),
    .collection-text a {
        display: none;
    }

    .collection-text p:nth-child(2) {
        line-height: 17px;
    }

    .collection-text a {
        color: #f9cdcd;
        font-size: 16px;
        font-weight: 600;
    }

    .collections-footer {
        padding: 1rem 5% 1rem;
        width: 100%;
    }















    /* header section */
    header {
        z-index: 1;
        height: 100vh;
        width: 100vw;
        position: relative;
    }

    header video {
        z-index: 1;
        height: 100vh;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover;
    }

    .header-cursor-container {
        display: flex;
        flex-direction: column;
        z-index: 10;
        position: relative;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 75vh;
        top: 25vh;
    }

    .cursor-container {
        transition: all 0.3s ease;
        position: absolute;
        transform: translate(-50%, -200px);
        transition: all 0.25s ease;
        transform-origin: 100% 100%;
    }

    .header-cursor {
        height: 100px;
        width: 100px;
        background-color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }

    .cursor-container p {
        text-align: center;
        font-size: 16px;
    }
    


    /* reel video */
    .reel-exit {
        height: 40px;
        width: 40px;
        border-radius: 50%;
        border: 2px solid #f4f4f4;
        position: absolute;
        top: 2rem;
        right: 2rem;
        cursor: pointer;
    }

    .reel-line1 {
        height: 2px;
        width: 20px;
        background-color: #f4f4f4;
        transform: rotate(-45deg) translateX(-0px) translateY(-0px);
        transition: all 0.4s ease;
        position: absolute;
    }

    .reel-line2 {
        height: 2px;
        width: 20px;
        background-color: #f4f4f4;
        transform: rotate(45deg) translateX(-0px) translateY(-0px);
        transition: all 0.4s ease;
        position: absolute;
    }

    .reel {
        min-width: 320px;
        width: 100%;
        height: 100Vh;
        position: absolute;
        z-index: 10000;
        display: none;
        justify-content: center;
        align-items: center;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 1);
        padding: 15% 8%;
    }

    .reel.playReel {
        display: flex;
    }

    .reel video {
        position: relative;
        max-width: 900px;
        max-height: 500px;
        outline: none;
    }













    /* about */
    .about-work {
        display: flex;
        padding: 10rem 5%;
        background-color: #f4f4f4;
        flex-direction: row;
    }

    .about-work-text-container {
        width: 50%;
    }

    .about-work-text {
        font-size: 38px;
        line-height: 42px;
        font-weight: 500;
        color: #252422;
    }

    .about-text span {
        font-size: 40px;
    }

    .cta-btn {
        margin-top: 1rem;
        border: 1px solid #252422;
        height: 30px;
        width: 140px;
        border-radius: 15px;
        cursor: pointer;
        background-color: #f4f4f4;
        outline: none;
        position: relative;
        overflow: hidden;
        color: #252422;
        z-index: 1;
    }

    .cta-btn::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        bottom: 0;
        left: 0;
        background-color: #252422;
        z-index: -1;
        transition: transform 0.3s ease-in-out;
        transform-origin: 0 0;
        transform: translateY(100%);
        
    }

    .cta-btn:hover::before {
        transform: translateY(0);
    }

    .cta-btn:hover  {
        color: #f4f4f4;
        z-index: 3;
    }



    .about-work-logo {
        padding: 0;
        height: 60vh;
        width: 50%;
        display: flex;
        justify-content: flex-end;
        align-items: flex-start;
        margin-top: 0rem;
    }

    .about-work-logo p {
        color: #252422;
        font-size: 180px;
        font-weight: 700;
    }

    .about-work-logo span {
        color: #252422;
        font-size: 330px;
        font-weight: 300;
        position: relative;
        bottom: 4rem;
    }



    /* work section */
    .work-section {
        display: flex;
        width: 100%;
        height: 100vh;
        padding: 0 5% 3rem;
        gap: 1rem;
        background-color: #f4f4f4;
    }

    .work-card {
        width: 100%;
        cursor: pointer;
    }

    .work-card:hover .work-img {
        width: 100%;
        cursor: pointer;
        transform: scale(1);
    }

    .work-img-container {
        width: 100%;
        height: 500px;
        position: relative;
        overflow: hidden;
    }

    .work-img {
        width: 100%;
        height: 500px;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        overflow: hidden;
        transition: transform 0.5s ease;
        transform: scale(1.09);
    }

    .work-img1 {
        background-image: url(/assets/work1-thumbnail.jpg);
    }

    .work-img2 {
        background-image: url(/assets/work2-thumbnail.jpg);
    }


    .work-img-container video {
        height: 500px;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover;
    }

    .work-img-text {
        padding: 1.5rem;
        width: 100%;
        padding-right: 35%;
    }

    .work-heading {
        font-size: 26px;
        color: #252422;
    }

    .work-img-text p {
        color: #252422;
        line-height: 18px;
        font-size: 14px;
    }











    /* featured engagements */
    .featured {
        padding: 2rem 5% 5rem;
        background-color: #f4f4f4;
        position: relative;
    }

    .gibberish {
        border-top: 1px solid #252422;
        padding: 0.5rem 0;
        display: flex;
        justify-content: space-between;
    }

    .gibberish p {
        color: #252422;
        font-size: 14px;
    }

    .gibberish p:nth-child(2) {
        width: 40%;
    }

    .gibberish span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #252422;
    }

    .featured-heading {
        padding: 8rem 0;
        font-size: 2.6rem;
        width: 300px;
        color: #252422;
        line-height: 2.8rem;
    }

    .featured-company-container {
        display: flex;
        overflow-x: auto;
        gap: 2rem;
        position: relative;
        height: 580px;
    }

    .collections-item-container {
        display: flex;
        position: relative;
        max-height: 560px;
        width: 100%;
    }

    .collections-item-container::-webkit-scrollbar {
        display: none;
    }

    .custom-cursor {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background-color: #f9cdcd;
        z-index: 10;
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translate(-60%, -200%);
        pointer-events: none;
        transition: all 0.2s ease;
        transform-origin: 100% 100%;
    }

    .custom-cursor p {
        color: #252422;
        width: 100%;
        height: 100%;
        font-size: 18px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .featured-company-container::-webkit-scrollbar {
        height: 3px;
        background-color: #c5c5c5;
    }

    .featured-company-container::-webkit-scrollbar-thumb {
        background-color: #252422;
    }

    .company-logo {
        height: 11rem;
    }

    .company-logo img {
        line-height: 4rem;
    }

    .line {
        margin-top: 1rem;
        height: 2px;
        width: 30px;
        background-color: #252422;
    }

    .company-name {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 1.5rem;
    }

    .company-card {
        height: 500px;
        min-width: 400px;
        position: relative;
        color: #252422;
        padding: 1rem 5% 0 0;
    }

    .google-logo {
        width: 130px;
    }

    .pantagonia-logo {
        width: 220px;
    }

    .company-text,
    .company-text a {
        font-weight: 500;
        font-size: 18px;
        color: #252422;
    }











    /* about section */
    .about-section {
        display: flex;
        padding: 5rem 5% 0;
        background-color: #f4f4f4;
        height: 170vh;
        flex-direction: row;
        z-index: 1;
    }

    .about-text-container {
        padding: 3rem 0 0;
        width: 100%;
        position: relative;
    }

    .about-text-heading {
        font-size: 85px;
        line-height: 77px;
        color: #252422;
    }

    .about-text-container p {
        padding: 2rem 0 1rem;
        font-weight: 500;
        color: #252422;
        font-size: 18px;
    }

    .about-text-container p span {
        font-weight: 700;
    }

    .video-container {
        min-width: 50%;
        position: relative;
        padding-bottom: 10rem;
    }

    .video-container video {
        width: 100%;
        height: 157vh;
        object-fit: cover;
    }












    /* featured-news */
    .featured-news {
        background-color: #f4f4f4;
        padding: 4rem 5%;
    }

    .featured-news-heading {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .feature-container {
        border-top: 1px solid #252422;
        padding: 1rem 0 0 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        height: 280px;
        cursor: pointer;
        margin-bottom: 5rem;
    }

    .feature-container:hover .feature-img {
        transform: scale(1);
    }

    .feature-container:hover .feature-heading {
        text-decoration: underline;
        transition: text-decoration 1s ease;
    }

    .feature-img-container {
        min-width: 380px;
        height: 100%;
        overflow: hidden;
    }

    .feature-img {
        width: 100%;
        height: 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        transition: transform 0.5s ease;
        transform: scale(1.09);
    }

    .feature-img1 {
        background-image: url(/assets/feature-img1.png);
    }

    .feature-img2 {
        background-image: url(/assets/feature-img2.jpg);
    }

    .feature-img3 {
        background-image: url(/assets/feature-img3.png);
    }

    .feature-img4 {
        background-image: url(/assets/feature-img4.png);
    }

    .feature-img5 {
        background-image: url(/assets/feature-img5.jpg);
    }

    .feature-img6 {
        background-image: url(/assets/feature-img6.png);
    }

    .feature-img7 {
        background-image: url(/assets/feature-img7.jpg);
    }

    .feature-about-text {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
        width: 62%;
    }

    .feature-heading {
        font-size: 40px;
        line-height: 42.2px;
        width: 60%;
        font-weight: 500;
        transition: text-decoration 1s ease;
        padding: 0;
    }

    .feature-about-text p {
        font-weight: 600;
        font-size: 14px;
    }

    .feature-about-text p span {
        font-weight: 400;
    }

    figure {
        width: 35px;
        height: 35px;
        position: relative;
    }

    figure svg {
        color: #252422;
    }




    /* footer section */
    .footer {
        width: 100%;
        height: 90vh;
        padding: 2rem 5% 5rem;
        background-color: #252422;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .footer-about {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 2rem 0;
    }

    .footer-logo {
        color: #f9cdcd;
        font-weight: 700;
        font-size: 25px;
    }

    .footer-about-text {
        flex-direction: column;
        width: 50%;
        padding-top: 0rem;
    }

    .footer-about-text,
    .footer-about-text a {
        font-size: 32px;
        line-height: 33px;
        font-weight: 600;
        color: #f9cdcd;
    }


    .footer-links-container {
        display: flex;
        justify-content: space-between;
        padding: 3rem 0;
        flex-direction: row;
    }

    .footer-email {
        max-width: 40%;
    }

    .footer-email button {
        cursor: pointer;
    }

    .footer-heading {
        font-size: 18px;
        line-height: 19px;
        color: #f9cdcd;
        font-weight: 500;
        margin-bottom: 1rem;
    }

    .email-section {
        display: flex;
        height: 2.5rem;
        width: 100%;
        justify-content: space-between;
        border-bottom: 1px solid #f9cdcd;
    }

    .email-section input {
        background: transparent;
        font-size: 18px;
        border: none;
        outline: none;
        color: #f9cdcd;
    }

    .email-section input::placeholder {
        color: #f9cdcd;
    }

    .email-section button {
        background: none;
        border: none;

    }

    .email-section button svg {
        width: 20px;
        height: 17px;
        color: #f9cdcd;
    }

    .ul-links-container {
        display: flex;
        justify-content: space-between;
        max-width: 50%;
        flex-direction: row;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        margin-top: 0;
    }

    .footer-links span {
        color: #f9cdcd;
        font-size: 18px;
        line-height: 22px;
        font-weight: 400;
        cursor: pointer;
    }

    .footer-links span:hover {
        text-decoration: underline;
    }

    .footer-copyright-container {
        width: 100%;
        background-color: #252422;
        height: 10vh;
    }

    .copyright-container {
        background-color: #141414d0;
        height: 100%;
    }

    .footer-copyright {
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0rem 5%;
    }

    .footer-copyright p {
        color: #5e5e5e;
        font-size: 12px;
        cursor: pointer;
    }

    .footer-copyright p:nth-child(2):hover,
    .footer-copyright p:nth-child(3):hover {
        text-decoration: underline;
    }




}