﻿html {
    scroll-behavior: smooth;
}

body {
    color: #000;
    font-family: "Instrument Serif";
    overscroll-behavior: none;
    /*cursor: none;*/
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    pointer-events: none;
    background: #000;
    z-index: 9999;
    transform: translate(-150%, -150%);
    transition: transform 0.1s linear;
}

main {
    /*gap: 150px;*/
}

.mainhead {
    padding: 20px;
    padding-bottom: 150px;
}
/*.header {
    padding-top: 10px;
}*/
.menu {
    gap: 25px;
}

    .menu .text {
        font-size: 16px;
        /*        font-weight: 700;*/
    }

.section {
    padding: 20px;
}

.slogan {
    padding: 140px 0;
}

    .slogan .text {
        font-size: 120px;
        font-weight: 400;
        line-height: 133px; /* 108.333% */
        letter-spacing: -2.4px;
        width: 50%;
    }

    .slogan .contact {
        width: 225px;
        height: 225px;
        border-radius: 50%;
        background: #000;
        font-size: 40px;
        font-weight: 400;
        line-height: 40px; /* 100% */
        letter-spacing: -0.8px;
        color: #fff;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

        .slogan .contact span {
            transform: rotate(-15deg);
        }

.scroller {
    gap: 32px;
    overflow: hidden;
    width: 100%;
    position: relative;
}

    .scroller ul {
        gap: 32px;
        width: 100%;
        overflow-x: hidden;
        display: flex;
        width: max-content;
        scroll-behavior: smooth;
    }

    .scroller .leftscroll {
        animation: slide-left 30s linear infinite;
    }

    .scroller .rightscroll {
        animation: scroll-right 30s linear infinite;
    }


    .scroller ul li {
        border-radius: 20px;
        background: #F8F8F8;
        flex: 0 0 255px;
        height: 118px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .scroller:before {
        content: '';
        background: linear-gradient(270deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
        width: 200px;
        height: 100%;
        position: absolute;
        z-index: 1;
    }

    .scroller:after {
        content: '';
        background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0.00)100%);
        width: 200px;
        height: 100%;
        position: absolute;
        z-index: 1;
        right: 0;
    }

@keyframes slide-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.projects {
    background: #fff;
    /*padding: 20px;*/
    /* padding-top: 150px;
    padding-bottom: 150px;*/
    color: #000;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
}

    .projects .project-inner {
        /*gap: 80px;*/
    }

.project-section {
    padding-top: 130px;
    padding-bottom: 100px;
}

.projects .headertext {
    font-size: 68px;
    font-weight: 400;
    line-height: 78px; /* 114.706% */
    letter-spacing: -1.36px;
    color: #000;
    text-align: center;
}

.projects .smallheadertext {
    color: #979797;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px; /* 100% */
    text-transform: uppercase;
    padding-bottom: 38px;
    text-align: center;
}

.projects .viewlink {
    font-size: 32px;
    font-weight: 400;
    line-height: 24px; /* 75% */
    letter-spacing: -0.64px;
    color: #000;
}

.project-item {
    gap: 32px;
    display: none;
}

    .project-item img {
        width: 100%;
    }

    .project-item .toptag {
        background: #000;
        gap: 8px;
        padding: 9px 12px;
        color: #fff;
    }

        .project-item .toptag img {
            width: 11.5px;
            height: 11.5px;
        }

        .project-item .toptag span {
            color: #FFF;
            font-family: Inter;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 14px; /* 100% */
            letter-spacing: -0.28px;
        }

    .project-item img {
    }


.project-footer .project-name {
    font-size: 28px;
    font-weight: 400;
    line-height: 32px; /* 114.286% */
}

.project-footer .tag {
    gap: 10px;
}

    .project-footer .tag li {
        border: 1px solid rgba(255, 255, 255, 0.25);
        padding: 8px 16px;
        justify-content: center;
        align-items: center;
        font-family: Inter;
        font-size: 14px;
        font-weight: 500;
        line-height: 14px; /* 116.667% */
        letter-spacing: -0.12px;
    }


.reveal-words {
    display: inline-block;
}

    .reveal-words .word-container {
        display: inline-block;
        overflow: hidden;
        margin-top: -50px;
        /*height: 130px;*/ /* adjust to your font size */
    }

        .reveal-words .word-container span {
            display: inline-block;
            transform: translateY(100%);
            opacity: 0;
            animation: slideUpReveal 1s ease forwards;
        }

        /* Delay each word by 0.2s more than the previous */
        .reveal-words .word-container:nth-child(1) span {
            animation-delay: 0s;
        }

        .reveal-words .word-container:nth-child(2) span:first-of-type {
            animation-delay: 0.2s;
        }

        .reveal-words .word-container:nth-child(2) span:nth-of-type(2) {
            animation-delay: 0.4s;
        }

        .reveal-words .word-container:nth-child(3) span {
            animation-delay: 0.6s;
        }


/* Add more nth-child rules if you have more words */

@keyframes slideUpReveal {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.services {
    background: #000;
    padding-top: 150px;
    padding-bottom: 150px;
    color: #fff;
}

.services-inner .smallheadertext {
    color: #979797;
    font-family: Inter;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px; /* 100% */
    text-transform: uppercase;
    padding-bottom: 36px;
}

.services-inner .headertext {
    font-size: 68px;
    font-weight: 400;
    line-height: 78px; /* 114.706% */
    letter-spacing: -1.36px;
    padding-bottom: 50px;
}

.services-grid {
    gap: 24px;
}

    .services-grid .service-item {
        height: 433px;
        background: rgba(255, 255, 255, 0.16);
        padding: 40px;
        position: relative;
    }

        .services-grid .service-item .head {
            font-size: 32px;
            font-weight: 400;
            line-height: 32px; /* 100% */
            letter-spacing: -0.32px;
            padding-bottom: 24px;
        }

        .services-grid .service-item .desc {
            color: rgba(255, 255, 255, 0.53);
            font-family: Inter;
            font-size: 20px;
            font-weight: 300;
            line-height: 28px; /* 140% */
            letter-spacing: 0;
        }

        .services-grid .service-item .serial {
            font-family: Inter;
            font-size: 96px;
            font-weight: 200;
            line-height: normal;
            letter-spacing: -0.96px;
            /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(102, 102, 102, 0.02) 100%); */
            /* background-clip: text; */
            /* -webkit-background-clip: text; */
            /* -webkit-text-fill-color: transparent; */
            top: 12px;
            left: 40px;
            background: linear-gradient(to bottom, #fff, #6E6E6E66);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            opacity: 0.1;
        }

.service-item.action {
    background: rgba(255,255,255,0.22);
    color: #FFF;
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    line-height: 24px; /* 75% */
    letter-spacing: -0.64px;
    transition: background-color 0.3s;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #4cce30;
}


    .service-item.action .inner {
        gap: 10px;
        z-index: 1;
    }

    /*.service-item.action .inner > span {
            position: absolute;
            top: 0;
            left: 0;
            transition: opacity 0.4s ease, transform 0.4s ease;
        }


.span-1 {
    opacity: 1;
    transform: translateY(0);
    z-index: 1;
}

.span-2 {
    opacity: 0;
    transform: translateY(10px);
    z-index: 0;
}

.service-item.action:hover .span-1 {
    opacity: 0;
    transform: translateY(-10px);
}

.service-item.action:hover .span-2 {
    opacity: 1;
    transform: translateY(0);
}*/

    .service-item.action .reveal {
        display: block;
        position: absolute;
        top: 0px;
        /*left: 0px;*/
        left: -50%;
        right: 0px;
        bottom: 0px;
        z-index: 1;
        transform: translateZ(0px);
        overflow: hidden;
        border-radius: inherit;
    }

        .service-item.action .reveal > span {
            display: block;
            /*width: 100%;*/
            width: 135%;
            height: 100%;
            transform: translateY(101%);
            background: #4cce30;
            border-radius: 50% 50% 0px 0px;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0, 1), border-radius 0.5s cubic-bezier(0.4, 0, 0, 1);
        }

    .service-item.action:hover .reveal > span {
        transform: translateY(0px);
        transition-duration: 0.5s, 0.9s;
        border-radius: 0px;
    }


.slogan .contact .reveal {
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    transform: translateZ(0px);
    overflow: hidden;
    border-radius: inherit;
    border-bottom: 3px solid #4CCE30;
}

    .slogan .contact .reveal > span {
        display: block;
        /*width: 100%;*/
        width: 100%;
        height: 100%;
        transform: translateY(101%);
        background: #4cce30;
        border-radius: 50%;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0, 1), border-radius 0.5s cubic-bezier(0.4, 0, 0, 1);
    }

.slogan .contact:hover .reveal > span {
    transform: translateY(0px);
    transition-duration: 0.5s, 0.9s;
    border-radius: 0px;
}

.about-us {
    padding-top: 150px;
    padding-bottom: 150px;
    background: #F4F4F4;
}

.about-us-inner .smallheadertext {
    color: #979797;
    font-family: Inter;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px; /* 100% */
    text-transform: uppercase;
    padding-bottom: 36px;
}

.about-us-inner .content {
    color: #000;
    font-size: 72px;
    font-weight: 400;
    line-height: 88px; /* 122.222% */
    letter-spacing: 0;
}

.word {
    /*opacity: 0.2;*/
    color: #c3c3c3;
    display: inline-block;
    margin-right: 6px;
    /*transition: opacity 0.6s ease-in-out;*/
    transition: color 0.1s ease-in-out;
}

    .word.visible {
        /*opacity: 1;*/
        color: #000;
    }

.scrolling {
    padding: 37px 0px;
    background: #4CCE30;
}

    .scrolling .scroller-container {
        overflow: hidden;
        width: 100%;
        position: relative;
    }

    .scrolling .scroller-track {
        animation: slide-left 40s linear infinite;
        gap: 32px;
        width: 100%;
        overflow-x: auto;
        display: flex;
        width: max-content;
        scroll-behavior: smooth;
    }

        .scrolling .scroller-track li {
            display: flex;
            justify-content: center;
            align-items: center;
            color: #000;
            font-family: Inter;
            font-size: 48px;
            font-weight: 300;
            line-height: 68px; /* 141.667% */
            letter-spacing: 0;
            text-transform: uppercase;
        }

            .scrolling .scroller-track li:after {
                content: '';
                width: 12px;
                height: 12px;
                background: #000;
                border-radius: 50%;
                margin-left: 50px;
            }


.testimonials {
    background: #000;
    padding-top: 68px;
    padding-bottom: 68px;
}

.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.testi-item {
    color: #FFF;
    padding: 160px 80px 80px;
}

    .testi-item .breif {
        font-size: 72px;
        font-weight: 400;
        line-height: 80px; /* 111.111% */
        gap: 80px;
    }

    .testi-item img {
        display: inline-block !important;
        width: auto !important;
    }


    .testi-item .detail {
        font-family: "Inter";
        font-size: 24px;
        line-height: 40px; /* 166.667% */
        width: 50%;
    }

        .testi-item .detail p {
            font-weight: 300;
            padding-bottom: 64px;
            letter-spacing: 0;
        }

        .testi-item .detail img {
            width: 75px;
            height: 75px;
            margin-right: 24px;
        }

        .testi-item .detail .name {
            font-size: 32px;
            font-style: normal;
            font-weight: 400;
            line-height: 32px;
            padding-bottom: 16px;
            font-family: "Instrument Serif";
        }

        .testi-item .detail .designation {
            font-family: Inter;
            font-size: 18px;
            font-weight: 500;
            line-height: 18px; /* 100% */
            color: #928B8F;
        }


.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 100px;
}


.owl-theme .owl-dots .owl-dot span {
    background: #869791;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    width: 21px;
    background: #fff
}

.testi-item .quote {
    width: 351px !important;
    height: 351px;
    left: 0;
    top: 0;
}


.contactus {
    padding-top: 200px;
    padding-bottom: 200px;
    text-align: center;
}

.contactusss-inner .smallheadertext {
    color: #928B8F;
    font-family: Inter;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px; /* 100% */
    text-transform: uppercase;
    padding-bottom: 36px;
}

.contactusss-inner .content {
    color: #000;
    font-size: 120px;
    font-style: normal;
    font-weight: 400;
    line-height: 118px; /* 98.333% */
    letter-spacing: -2.4px;
    padding-bottom: 120px;
}

.contactusss-inner .action {
    border-radius: 100px;
    border-bottom: 3px solid #4CCE30;
    background: #000;
    color: #FFF;
    text-align: center;
    font-size: 64px;
    font-weight: 400;
    line-height: 64px; /* 100% */
    letter-spacing: -2.56px;
    padding: 32px 120px;
    position: relative;
    overflow: hidden;
}




    .contactusss-inner .action .reveal {
        display: block;
        position: absolute;
        top: 0px;
        left: 0px;
        right: 0px;
        bottom: 0px;
        z-index: 1;
        transform: translateZ(0px);
        overflow: hidden;
        border-radius: inherit;
    }

        .contactusss-inner .action .reveal > span {
            display: block;
            /*width: 100%;*/
            width: 100%;
            height: 100%;
            transform: translateY(101%);
            background: #4cce30;
            border-radius: 50%;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0, 1), border-radius 0.5s cubic-bezier(0.4, 0, 0, 1);
        }

    .contactusss-inner .action:hover .reveal > span {
        transform: translateY(0px);
        transition-duration: 0.5s, 0.9s;
        border-radius: 0px;
    }


footer {
    background: #F5F5F5;
    padding: 20px;
    padding-top: 150px;
    padding-bottom: 0;
}

.footer-inner .logo {
    width: 277px;
    margin-bottom: 67px;
}

.footer-inner .address {
    color: rgba(0, 0, 0, 0.80);
    font-family: "Instrument Serif";
    font-size: 32px;
    font-weight: 400;
    line-height: 40px; /* 125% */
    padding-bottom: 40px;
}

.footer-inner .contact-item {
    gap: 12px;
    color: #000;
    font-family: Inter;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: normal; /* 142.857% */
    letter-spacing: -0.56px;
    padding-bottom: 16px;
}

    .footer-inner .contact-item img {
        width: 24px;
        height: 24px;
    }

.social-icons {
    margin-top: 64px;
    gap: 24px;
    margin-bottom: 180px;
}

.powered {
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    padding: 40px 0;
    border-top: 1px solid #EAEAEA;
}

    .powered .links {
        gap: 30px;
    }


.onscrollreveal .word-container {
    display: block;
}

.reveal-words-sec .word-container {
    overflow: hidden;
    height: 130px;
    /*margin-top: -50px;*/
    /*height: 130px;*/ /* adjust to your font size */
}

.reveal-words-sec.content .word-container {
    height: auto;
}

.reveal-words-sec .word-container span {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    animation: slideUpReveal 1s ease forwards;
}

/* Delay each word by 0.2s more than the previous */
.reveal-words-sec .word-container:nth-child(1) span {
    animation-delay: 0s;
}

.reveal-words-sec .word-container:nth-child(2) span:first-of-type {
    animation-delay: 0.2s;
}

.reveal-words-sec .word-container:nth-child(2) span:nth-of-type(2) {
    animation-delay: 0.4s;
}

.reveal-words-sec .word-container:nth-child(3) span {
    animation-delay: 0.6s;
}

.reveal-words-sec .word-container:nth-child(4) span {
    animation-delay: 0.8s;
}

.parallax {
    position: relative;
    width: 100%;
    height: 900px;
    overflow: hidden;
}

    .parallax .bg-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        z-index: 0;
        transform: translate3d(0px, 0%, 0px) scale(1.2, 1.2);
        /*transition: transform 0.1s ease-out;*/
    }

#parallax1 .bg-image {
    /*background-image: url('/content/img/perkins.png');*/
    background-image: url('/content/img/iMac_on_Table_Mockup_2.jpg');
}

#parallax2 .bg-image {
    background-image: url('/content/img/zerodha.png');
}

#parallax3 .bg-image {
    /*background-image: url('/content/img/gochart.png');*/
    background-image: url('/content/img/Go charting 2.png');
}


#parallax4 .bg-image {
    /*background-image: url('/content/img/atlas.png');*/
    background-image: url('/content/img/Atlas LM Mockup.jpg');
}

#parallax5 .bg-image {
    /*background-image: url('/content/img/onlyoptions2.png');*/
    background-image: url('/content/img/1ly options.jpg');
}

#parallax6 .bg-image {
    /*background-image: url('/content/img/foyr.png');*/
    background-image: url('/content/img/Foyr.jpg');
}

.project-item-full {
    width: 100%;
    overflow: hidden;
    z-index: 1;
    transition: all 2s ease; /* animatable properties */
}

    .project-item-full.fixed {
        position: sticky;
        width: 100%;
        height: 1024px;
        top: 0;
    }

    .project-item-full > div {
        height: 1024px;
    }

    .project-item-full.blue {
        background: #034797;
    }

    .project-item-full.black {
        background: #010101;
    }

    .project-item-full.purple {
        background: #391a63;
    }

    .project-item-full.green {
        background: #193a27;
    }


    .project-item-full .content-holder {
        padding-top: 200px;
        padding-bottom: 200px;
        gap: 32px;
        flex: 1;
        z-index: 2;
    }

        .project-item-full .content-holder .content {
            color: #FFF;
            font-size: 50px;
            font-weight: 400;
            line-height: 60px; /* 120% */
            /*letter-spacing: -1px;*/
        }

        .project-item-full .content-holder ul {
            gap: 10px;
            flex-direction: row;
            display: flex;
        }

            .project-item-full .content-holder ul li {
                padding: 8px 12px;
                border-radius: 24px;
                border: 1px solid rgba(255, 255, 255, 0.15);
                text-align: center;
                color: rgba(255, 255, 255, 0.68);
                font-family: Inter;
                font-size: 14px;
                font-weight: 400;
                line-height: 14px; /* 100% */
                text-transform: capitalize;
            }

        .project-item-full .content-holder .viewlink {
            color: #FFF;
            font-size: 24px;
            font-style: normal;
            font-weight: 400;
            line-height: 24px;
            margin-top: 200px;
            /*text-decoration-line: underline;*/
        }



    .project-item-full .image {
        flex: 1;
    }

        .project-item-full .image img {
            position: absolute;
            bottom: 0;
            right: 0;
        }

            .project-item-full .image img.perkins {
                right: -360px;
            }

            .project-item-full .image img.atlas {
                right: -470px;
                bottom: 100px;
            }

            .project-item-full .image img.only {
                right: -360px;
            }

@media (max-width: 425px) {
}

@media (max-width: 426px) {
}

@media (min-width: 600px) and (max-width: 768px) {
}

@media (min-width: 750px) and (max-width: 1023px) {
}

@media (min-width: 768px) and (max-width: 1023px) {
}


@media (min-width: 1024px) and (max-width: 1199px) {
}


@media (min-width: 1200px) {
}
