/* basic styling */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-primary: 'Lato', sans-serif;
    --h2-font-size: 130px;
    --section-top-gap: 50px;
    --section-bottom-gap: 50px;
}

/* .nav-menu{
    display: none;
} */

html {
    scroll-behavior: smooth;
}

a {
    cursor: pointer;
}

.nav-menu {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

.nav-menu.active {
    max-height: 500px;
    /* must be larger than menu height */
}

.nav-container .nav-toggle {
    padding: 21px 15px;
    font-size: 16px;
    line-height: 18px;
    background-color: #09ff67;
    border-radius: 20px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    max-width: 129px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.nav-container .nav-menu>ul {
    background-color: #09ff67;
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    min-width: 150px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding-left: 10px;
    padding-right: 10px;
    min-width: 250px;
}

.nav-container .nav-menu>ul>li {
    padding: 21px 15px;
    font-size: 16px;
    line-height: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}

.nav-container {
    position: relative;
}

.nav-container .nav-menu {
    position: absolute;
    z-index: 99;
    left: -121px;
    top: 49px;
    transition: all 0.3s ease;
}

.nav-container .nav-menu>ul>li>a {
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    line-height: 18px;
    color: #000;
}

.page-center {
    max-width: 1434px;
    margin: 0 auto;
    padding-left: 60px;
    padding-right: 60px;
}

.full-width {
    max-width: 100%;
}

body {
    background-color: #000;
    color: #fff;
    font-family: var(--font-primary);
}

.primary-btn {
    min-height: 44px;
    background-color: #fff;
    border-radius: 8px;
    color: #000;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 13px 47px 13px 47px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.primary-btn:hover {
    background-color: #09ff67;
}

/* normal css */

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .page-center,
.footer .page-center {
    padding: 0 100px;
    max-width: 100%;
}

.header-inner .logo {
    position: relative;
    display: inline-block;
}

.header-inner .logo img {
    display: block;
    transition: opacity 0.1s ease;
}

.header-inner .logo-hov {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.header-inner .logo:hover .logo-hov {
    opacity: 1;
}

.header-inner .logo:hover .logo-default {
    opacity: 0;
}

.connect .box {
    display: flex;
    align-items: center;
}

.connect .box:hover {
    cursor: pointer;
}

.connect .box .arrow {
    width: 37px;
    height: 37px;
    background-color: green;
    border-radius: 50%;
    margin-left: 20px;
}

.connect .box .arrow img {
    width: 100%;
}

.header {
    padding-top: 30px;
    padding-bottom: 33px;
}

.menu-item {
    border-radius: 8px;
    padding-left: 43px;
    padding-right: 43px;
    padding-top: 5px;
    padding-bottom: 0px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    min-height: 50px;
}

.menu-item>ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.menu-item>ul>li>a {
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.88888888889;
    cursor: pointer;
    padding-bottom: 6px;
    color: #fff;
    text-decoration: none;
}

.menu-item>ul>li:first-child {
    margin-left: 0;
    margin-right: 15px;
}

.menu-item>ul>li {
    margin-left: 15px;
    margin-right: 15px;
}

.menu-item>ul>li:last-child {
    margin-right: 0;
    margin-left: 15px;
}

/* Footer Top section */
.rolling-gif.f-last {
    position: relative;
    overflow: hidden;
    padding: 100px 0 20px;
}

.rolling-gif .gif-foot {
    position: relative;
    padding: 100px 0;
    display: flex;
    align-items: center;
}

.rolling-gif .gif-foot .globe {
    z-index: -1;
    object-fit: cover;
    height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.rolling-gif .gif-foot .text {
    height: 180px;
    width: 100%;
}

.footer .logo {
    position: relative;
    display: inline-block;
}

.footer .logo img {
    display: block;
    transition: opacity 0.1s ease;
}

.footer .logo-hov {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.footer .logo:hover .logo-hov {
    opacity: 1;
}

.footer .logo:hover .logo-default {
    opacity: 0;
}

.footer .footer-inner {
    display: flex;
    justify-content: space-between;
}

.footer-inner .left .social-share ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.footer-inner .left .social-share ul>li>a {
    font-size: 20px;
    line-height: 167%;
    font-weight: 400;
    cursor: pointer;
    margin-right: 10px;
    color: #fff;
    text-decoration: none;
}

.footer-inner .left .social-share ul>li {
    margin-left: 15px;
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.footer-inner .left .social-share ul>li:first-child {
    margin-left: 0px;
}

.footer-inner .left .social-share ul>li:last-child {
    margin-right: 0px;
}

.footer-inner .left .social-share ul>li img {
    width: 18px;
}

.footer-inner .left .social-share {
    margin-bottom: 80px;
}

.footer-inner .left .privacy-info {
    margin-bottom: 80px;
}

.footer-inner .privacy-info ul {
    list-style: none;
    display: flex;
}

.footer-inner .privacy-info ul>li {
    margin-left: 15px;
    margin-right: 15px;
}

.footer-inner .privacy-info ul>li:first-child {
    margin-left: 0;
}

.footer-inner .privacy-info ul>li:last-child {
    margin-right: 0;
}

.footer-inner .privacy-info ul>li>a {
    font-size: 20px;
    line-height: 167%;
    font-weight: 400;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
}

.footer-inner .left .about-cmp p {
    font-size: 20px;
    line-height: 113.8%;
}

.footer-inner .right .company-email p a {
    cursor: pointer;
    font-size: 40px;
    line-height: 167%;
    color: #fff;
    text-decoration: none;
}

.footer-inner .right .newsletter a.foot-btn {
    display: inline-block;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
}

.footer-inner .area-of-op {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    row-gap: 50px;
    column-gap: 80px;
}

.footer .logo-cnt {
    margin-bottom: 50px;
}

.footer-inner .area-of-op .left {
    display: flex;
    align-items: flex-end;
}

.footer-inner .area-of-op .left .title {
    margin-right: 10px;
}

.footer-inner .area-of-op .left .sectors ul {
    list-style: none;
    display: flex;
}

.footer-inner .area-of-op .left .sectors ul>li {
    margin-left: 10px;
    margin-right: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    padding: 5px;
}

.footer-inner .area-of-op .left .sectors ul>li:first-child {
    margin-left: 0;
}

.footer-inner .area-of-op .left .sectors ul>li:last-child {
    margin-right: 0;
}

.footer-inner .area-of-op .left .sectors ul>li>a {
    font-size: 14px;
    line-height: 1;
    font-weight: bold;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
}

.footer-inner .area-of-op .left .title p {
    font-size: 20px;
    line-height: 167%;
}


.footer .footer-inner .area-of-op .right {
    text-align: right;
    margin-left: 30px;
    display: none;
}

.footer .footer-inner .right .company-email {
    text-align: right;
}

.footer .footer-inner .right .newsletter {
    text-align: right;
}

.menu-item>ul>li.active>a {
    color: #09ff67;
    border-bottom: 3px solid #09ff67;
}

.footer .footer-inner .area-of-op .right img {
    width: 106px;
    height: 127px;
}

.bnr-sec {
    overflow: clip;
    position: relative;
    padding-top: 100px;
    padding-bottom: 50px;
}

.bnr-sec .page-center {
    max-width: 100%;
    padding-left: 100px;
    padding-right: 100px;
}

.bnr-sec .bnr-inner {
    display: flex;
    justify-content: space-between;
}

.bnr-sec .bnr-head h2 {
    font-size: 130px;
    line-height: 1.11538461538;
}

.bnr-sec .bnr-head h2 .green {
    color: #09ff67;
}

.bnr-sec .bnr-inner .ball-anm {
    position: absolute;
    top: 4%;
    z-index: -1;
    right: -11%;
}

.guess-sec .sec-head h2:hover {
    color: #3157ff;
}

.bnr-sec .bnr-inner .ball-anm img {
    object-fit: cover;
    max-width: 70%;
}

.brand-tag {
    padding-top: var(--section-top-gap);
    padding-bottom: var(--section-bottom-gap);
}

.brand-tag .page-center {
    max-width: 100%;
    padding-left: 100px;
    padding-right: 100px;
}

.brand-tag .brand-head h2 {
    font-size: var(--h2-font-size);
    text-transform: uppercase;
    line-height: 145px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.footer {
    padding-top: var(--section-top-gap);
    padding-bottom: 66px;
}

.bnr-sec .success-box .success-cnt {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 32px 25px;
    margin-bottom: 117px;
    transition: all 0.3s ease;
}

.success-box .success-cnt .one {
    margin-bottom: 50px;
}

.success-box .success-cnt .one p {
    font-weight: 300;
    font-size: 20px;
    line-height: 1.5;
}

.success-box .success-cnt .text {
    margin-bottom: 50px;
}

.success-box .success-cnt .text h4 {
    text-align: right;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.5;
}

.success-box .success-cnt .count p {
    font-weight: bold;
    font-size: 24px;
    line-height: 24px;
}

.bnr-sec .success-box .success-cnt:hover {
    background-color: #09ff57;
}

.success-box .success-cnt:hover .one p {
    color: #000;
}

.success-box .success-cnt:hover .text h4 {
    color: #000;
}

.success-box .success-cnt:hover .count p {
    color: #000;
}

.bnr-sec .success-box .success-cnt:hover {
    border-color: #09ff67;
}

.bnr-sec .success-box .connect a.primary-btn:hover {
    background-color: #09ff67;
}

.brand-tag .brand-head h2:hover {
    color: #3157ff;
    cursor: default;
}

.clients-say {
    position: relative;
    padding-bottom: var(--section-bottom-gap);
    overflow: clip;
}

.clients-say .page-center {
    max-width: 100%;
    padding-left: 100px;
    padding-right: 100px;
}

.clients-say .sec-head {
    margin-bottom: 100px;
}

.clients-say .client-cards {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.clients-say .client-cards .card-item {
    width: calc(20%);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    margin-left: 15px;
    margin-right: 15px;
}

.clients-say .card-item .card-inner {
    padding: 44px 26px;
    height: 100%;
}

.clients-say .client-cards .card-item:first-child {
    margin-left: 0;
}

.clients-say .client-cards .card-item:last-child {
    margin-right: 0;
}

.card-item .card-inner .client-img {
    margin-bottom: 34px;
}

.card-item .card-inner .client-test {
    margin-bottom: 7px;
}

.card-item .card-inner .client-test p {
    font-weight: 400;
    font-size: 16px;
    line-height: 31px;
    letter-spacing: 0;
}

.card-item .client-det .client-name h5 {
    font-size: 18px;
    line-height: 1.875;
    font-weight: bold;
}

.card-item .client-det .client-des h5 {
    font-weight: bold;
    font-size: 18px;
    line-height: 1.875;
}

.clients-say .card-item:hover .card-inner {
    background-color: #fb302f;
    border-radius: 8px;
}

.clients-say .sec-head h2 {
    font-size: var(--h2-font-size);
    text-transform: uppercase;
    line-height: 145px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.card-item .card-inner .client-img img {
    max-width: 182px;
}

.clients-say .sec-head h2:hover {
    color: #fb302f;
    cursor: default;
}

.clients-say .ball-anm {
    position: absolute;
    bottom: -10%;
    z-index: -1;
    right: -30%;
}

.rolling-gif {
    position: relative;
    overflow: clip;
}

.rolling-gif .gif-cnt img {
    height: 460px;
    object-fit: cover;
    width: 100%;
}

.our-work {
    overflow: clip;
    padding-top: 50px;
    padding-bottom: 50px;
}

.our-work .page-center {
    max-width: 100%;
    padding-left: 100px;
    padding-right: 100px;
}

.our-work .work-inner {
    display: flex;
    justify-content: space-between;
}

.our-work .sec-head {
    margin-bottom: 0px;
}

.our-work .sec-head h2 {
    font-size: 130px;
    font-weight: bold;
    line-height: 145px;
    transition: all 0.3s ease;
}

.our-work .sec-head h2:hover {
    color: #09ff67;
}

.our-work .page-center {
    position: relative;
}

.our-work .page-center .ball-anm {
    position: absolute;
    top: -10%;
    z-index: -1;
    max-width: 400px;
    left: 26%;
}

.our-work .page-center .ball-anm img {
    max-width: 100%;
}

.our-work .sec-head {
    position: relative;
    margin-bottom: 100px;
}

.our-work .about-wrk {
    position: sticky;
    top: 30px;
}

.our-work .about-wrk .right h3 {
    font-size: 105px;
    line-height: 113px;
    color: #09ff67;
    margin-right: 0px;
    writing-mode: sideways-lr;
}

.our-work .text-sec-out .text-sec {
    height: 100%;
}

.our-work .about-wrk .left h3 {
    font-size: 70px;
    line-height: 1.5;
    color: #fff;
}

.our-work .about-wrk p {
    font-size: 18px;
    font-weight: 400;
    line-height: 154%;
}

.our-work .about-wrk .ball-anm {
    position: absolute;
    top: 47%;
    z-index: -1;
    left: 10%;
}

.our-work .about-wrk .ball-anm img {
    width: 600px;
}

.our-work .work-inner .text-sec {
    position: relative;
}

.our-work .work-inner .connect a.primary-btn {
    padding-left: 25px;
    padding-right: 25px;
}

.our-work .work-inner .connect a.primary-btn {
    padding-left: 25px;
    padding-right: 25px;
}

.text-sec-out {
    position: relative;
}

.our-work .work-inner .image-sec {
    position: relative;
}

.our-work .work-inner .image-sec .text-on-img {
    position: absolute;
    bottom: 0;
    z-index: 99;
    top: 68%;
    left: 0;
    transform: translate(10%, -50%);
    opacity: 0;
    /* color: #09ff57; */
    /* transition: all 0.3s ease-in-out; */
}

.our-work .work-inner .image-sec .text-on-img h3 {
    font-size: 50px;
    font-weight: bold;
    line-height: 1.61111111111;
}

.our-work .work-inner .image-sec img:hover+.text-on-img {
    opacity: 1;
}

.who-we-are .page-center {
    max-width: 100%;
    padding-left: 100px;
    padding-right: 100px;
}

.who-we-are .we-are-inner {
    display: flex;
    justify-content: space-between;
    gap: 100px;
}

.who-we-are {
    padding-top: 100px;
    padding-bottom: 50px;
}

.who-we-are .we-are-inner .left-col {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
}

.who-we-are .we-are-inner .left-col .ball-anm {
    position: absolute;
    z-index: -1;
    top: 0%;
    right: 0%;
}

.who-we-are .left-col .ball-anm img {
    width: 400px;
}


.who-we-are .left-col .sec-head h2 {
    font-size: 130px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.who-we-are .left-col .about-us {
    max-width: 750px;
    margin-top: 24px;
}

.who-we-are .left-col .about-us p {
    font-size: 24px;
    line-height: 160%;
    line-height: 1.2;
    font-weight: 400;
}

.who-we-are .left-col .about-us p:last-child {
    margin-top: 16px;
}

.who-we-are .we-are-inner .right-col {
    display: flex;
    width: 50%;
}

.who-we-are .right-col .about-det {
    display: flex;
    flex-direction: column;
    column-gap: 50px;
    row-gap: 28px;
}

.who-we-are .right-col .about-det .item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.who-we-are .right-col .about-det .item:last-child {
    border: none;
}

.who-we-are .right-col .item .num {
    margin-right: 33px;
    order: 1;
}

.who-we-are .right-col .item .num p {
    font-size: 30px;
    line-height: 1.5;
    font-weight: bold;
}

.who-we-are .right-col .item .feat-img {
    margin-right: 33px;
    position: relative;
    order: 2;
}

.who-we-are .right-col .item:last-child .feat-img {
    margin-left: -35px;
}

.who-we-are .right-col .item .img-col .img-col {
    position: relative;
    display: inline-block;
}

.who-we-are .right-col .item .img-col .img-col img {
    display: block;
    transition: opacity 0.3s ease;
}

.who-we-are .right-col .item .img-col .hov-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.who-we-are .right-col .item .img-col:hover .hov-img {
    opacity: 1;
}

.who-we-are .right-col .item .img-col:hover .def-img {
    opacity: 0;
}


.who-we-are .right-col .item .feat-img .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fb302f;
    opacity: 0.5;
}

.who-we-are .right-col .item .feat-img img {
    max-width: 285px;
    border-radius: 8px;
}

.who-we-are .right-col .item .our-feat {
    display: flex;
    align-items: center;
    text-align: right;
    margin-right: 0px;
    margin-left: 20px;
    order: 4;
}

.who-we-are .right-col .item .our-feat p {
    font-weight: 300;
    font-size: 32px;
    line-height: 36px;
}

.who-we-are .right-col .item .feat-count {
    display: flex;
    align-items: center;
    order: 3;
}

.who-we-are .right-col .item .feat-count p {
    font-weight: bold;
    color: #fb302f;
    font-size: 38px;
    line-height: 1;
}

.who-we-are .left-col .sec-head h2 .red {
    color: #fb302f;
}

.who-we-are .left-col .sec-head h2:hover {
    color: #fb302f;
}

.smart-sec {
    margin-top: 0px;
    position: relative;
    z-index: 99;
    padding-bottom: 200px;
}

.smart-sec .page-center {
    max-width: 100%;
    padding-left: 10;
    padding-left: 100px;
    padding-right: 100px;
}

.smart-sec .smart-inner {
    display: flex;
    justify-content: space-between;
}

.smart-sec .smart-inner .sec-head h2 {
    font-size: 100px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.smart-sec .smart-inner .phone-gif {
    position: absolute;
    z-index: -1;
    top: -18%;
    left: 30%;
}

.smart-sec .smart-inner .sec-text {
    display: flex;
    align-items: center;
    align-items: center;
    max-width: 170px;
}

.smart-sec .smart-inner .sec-text p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.smart-sec .smart-inner .phone-gif img {
    max-width: 100%;
}

.smart-sec .smart-inner .sec-head h2:hover {
    color: #09ff67;
}

.smart-sec .smart-inner .sec-text p:hover {
    color: #09ff57;
}

.rolling-gif.surf-waves {
    padding-top: 0px;
}

.what-we-do-sec .what-we-do-inner {
    position: relative;
}

.what-we-do-sec .what-we-do-inner .ball-anm {
    position: absolute;
    left: -5%;
}

.what-we-do-sec .what-we-do-inner .ball-anm img {
    max-width: 600px;
}

.surf-waves-sec {
    position: relative;
}

.surf-waves-sec .page-center {
    max-width: 100%;
    padding-left: 100px;
    padding-right: 100px;
}

.surf-waves-sec .surf-wave-inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.surf-waves-sec .sec-head h2 {
    font-size: 130px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.surf-waves-sec .sec-head h2:hover {
    color: #09ff67;
}

.surf-waves-sec .ball-anm {
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 15%;
}

.surf-waves-sec .ball-anm img {
    max-width: 100%;
}

.guess-sec {
    overflow: hidden;
    position: relative;
}

.guess-sec .page-center {
    max-width: 100%;
    padding-left: 100px;
    padding-right: 100px;
}

.guess-sec .page-center .guess-inner {
    display: flex;
    justify-content: space-between;
}

.guess-sec .sec-head h2 {
    font-size: 130px;
    text-transform: uppercase;
    line-height: 1.11538461538;
    transition: all 0.3s ease;
}

.guess-sec .ball-anm {
    position: absolute;
    top: 10%;
    left: 60%;
    z-index: -1;
}

.our-work .work-inner .connect a.primary-btn:hover {
    background-color: #09ff57;
}

.why-us {
    padding-top: 200px;
}

.why-us .page-center {
    max-width: 100%;
    padding-left: 100px;
    padding-right: 10;
    padding-right: 100px;
}

.why-us .items {
    display: flex;
}

.why-us .items .left .sec-head h2 {
    font-size: 130px;
    transition: all 0.3s ease;
}

.why-us .items .left {
    position: relative;
    width: 40%;
}

.why-us .items .left .ball-anm {
    position: absolute;
    top: 3%;
    right: 10%;
    z-index: -1;
}

.why-us .items .right {
    width: 60%;
}

.why-us .items .left .ball-anm img {
    max-width: 400px;
}

.why-us .items .img-col {
    position: relative;
    display: inline-block;
}

.why-us .items .img-col img {
    display: block;
    transition: opacity 0.3s ease;
}

.why-us .items .hov-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.why-us .items .img-col:hover .hov-img {
    opacity: 1;
}

.why-us .items .img-col:hover .def-img {
    opacity: 0;
}

.why-us .items .right .item {
    display: flex;
    column-gap: 100px;
    margin-bottom: 150px;
}

.why-us .items .right .item .text-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.why-us .right .item .text-col h5 {
    font-size: 20px;
    margin-bottom: 32px;
    font-weight: 300;
    transition: all o.3s ease;
}

.why-us .right .item .text-col h5.green {

    color: #09ff67;

}

.why-us .right .item .text-col h5.red {
    color: #fb302f;
}

.why-us .right .item .text-col h5.blue {
    color: #3157ff;
}

.why-us .right .item .text-col h5.green+h4:hover {
    color: #09ff67;
}

.why-us .right .item .text-col h5.red+h4:hover {
    color: #fb302f;
}

.why-us .right .item .text-col h5.blue+h4:hover {
    color: #3157ff;
}

.why-us .right .item .text-col h5.red+h4,
.why-us .right .item .text-col h5.blue+h4,
.why-us .right .item .text-col h5.green+h4 {
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 35px;
    transition: all 0.3s ease;
}

.why-us .right .item .text-col p {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
}

.why-us .items .left .sec-head {
    position: sticky;
    top: 50px;
}

.what-we-do-sec .image-text-col .img-col {
    position: relative;
    display: inline-block;
}

.what-we-do-sec .image-text-col .img-col img {
    display: block;
    transition: opacity 0.3s ease;
}

.what-we-do-sec .image-text-col .hov-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.what-we-do-sec .image-text-col .img-col:hover .hov-img {
    opacity: 1;
}

.what-we-do-sec .image-text-col .img-col:hover .def-img {
    opacity: 0;
}

.what-we-do-sec .page-center {
    max-width: 100%;
    padding-left: 100px;
    padding-right: 100px;
}

.what-we-do-sec .what-we-do-inner {
    display: flex;
    justify-content: space-around;
    justify-content: space-between;
    column-gap: 30px;
}

.what-we-do-sec .what-we-do-inner .sec-head h2 {
    font-size: 130px;
    line-height: 1.11538461538;
    font-weight: bold;
    transition: all 0.3s ease;
}

.what-we-do-sec .what-we-do-inner .sec-head h2:hover {
    color: #fb302f;
}

.what-we-do-sec .image-text-col p {
    font-weight: bold;
    margin-bottom: 30px;
    text-align: left;
    font-size: 40px;
    color: #fb302f;
}

.what-we-do-sec .text-col {
    max-width: 340px;
}

.what-we-do-sec .text-col p {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.what-we-do-sec .text-col .connect a.red-btn:hover {
    background-color: #fb302f;
    color: #fff;
}

.what-we-do-sec {
    padding-bottom: 50px;
}


.our-work .work-inner .img-col {
    position: relative;
    display: inline-block;
}

.our-work .work-inner .img-col img {
    display: block;
    transition: opacity 0.3s ease;
}

.our-work .work-inner .img-col .hov-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.our-work .work-inner .img-col:hover .hov-img {
    opacity: 1;
}

.our-work .work-inner .img-col:hover .def-img {
    opacity: 0;
}

.our-work .work-inner .img-col:hover+.text-on-img {
    opacity: 1;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.our-work .about-wrk .text-cnt {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
}

:root {
    --card-height: 40vw;
    --card-margin: 4vw;
    --card-top-offset: 1em;
    --numcards: 4;
    --outline-width: 0px;
}

.why-us-new {
    padding-top: 50px;
    padding-bottom: 50px;
}

.why-us-new .page-center {
    max-width: 100%;
    padding-left: 100px;
    padding-right: 100px;
}

.why-us-new .sec-head {
    margin-bottom: 140px;
    position: relative;
}

.why-us-new .sec-head h2 {
    font-size: 130px;
    font-weight: bold;
    line-height: 1.11538461538;
}

.why-us-new .why-us-cnt {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.why-us-new .sec-head h2:hover {
    color: #09ff67;
}

.why-us-new .sec-head .ball-anm {
    position: absolute;
    left: 27%;
    top: -13%;
    max-width: 400px;
    z-index: -1;
}

.why-us-new .sec-head .ball-anm img {
    max-width: 100%;
}

.why-us-new .why-us-cnt>.top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 23px;
}

.why-us-new .why-us-cnt .top>.left {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
}

.why-us-new .why-us-cnt .top .right>div {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
}

.why-us-new .why-us-cnt .top>.left {
    width: 58%;
    margin-right: 20px;
}

.why-us-new .why-us-cnt .top>.right {
    width: 42%;
}

.why-us-new .top .left .item {
    padding: 22px 70px;
    display: flex;
    align-items: center;
    column-gap: 60px;
}

.why-us-new .top .left .item .gif {
    max-width: 100%;
    height: 100%;
}

.why-us-new .top .left .item .gif img {
    max-width: 100%;
    height: 100%;
}

.why-us-new .top .left .item .text h3 {
    font-size: 90px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fb302f;
}

.why-us-new .top .left .item .text h5 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 0px;
    color: #3157ff;
}

.why-us-new .top .left .item .text h5:last-child {
    display: flex;
    justify-content: flex-end;
}

.why-us-new .top .left .item .text p {
    font-size: 20px;
    font-weight: 300;
    line-height: 130%;
}

.why-us-new .top .right .gif-sec {
    max-width: 200px;
    max-height: 200px;
}

.why-us-new .top .right .gif-sec img {
    max-width: 100%;
}

.why-us-new .why-us-cnt .top .right .item-one {
    padding: 22px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    height: 60%;
}

.why-us-new .top .right .cnt-sec h3 {
    font-size: 90px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    color: #3157ff;
}

.why-us-new .top .right .cnt-sec h5 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 0px;
    color: #09ff67;
}

.why-us-new .top .right .item-two {
    padding: 30px 20px;
    display: flex;
    align-items: center;
    gap: 45px;
    height: 33%;
}

.why-us-new .top .right .cnt-sec .text-with-img {
    display: flex;
    justify-content: flex-end;
}

.why-us-new .top .right .cnt-sec .text-with-img .gif {
    max-width: 400px;
}

.why-us-new .top .right .cnt-sec .text-with-img .gif img {
    max-width: 100%;
}

.why-us-new .top .right .cnt-sec .text-with-img h5 {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.why-us-new .top .right .cnt-sec>h5 {
    margin-bottom: 15px;
}

.why-us-new .top .right .item-two .text p {
    font-weight: 400;
    font-size: 28px;
    line-height: 1;
}



.why-us-new .why-us-cnt .bottom {
    display: flex;
    column-gap: 20px;
}

.why-us-new .why-us-cnt .bottom>div {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
}

.why-us-new .why-us-cnt .bottom .left {
    width: 55%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us-new .why-us-cnt .bottom .right {
    width: 55%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

.why-us-new .why-us-cnt .bottom .left .left-inner {
    padding: 20px 50px;
}

.why-us-new .why-us-cnt .bottom .left .left-inner .top {
    display: flex;
    gap: 30px;
    flex-direction: column;
}

.why-us-new .bottom .left .btm h3 {
    font-size: 90px;
    line-height: 120%;
    margin-bottom: 0px;
    color: #3157ff;
}

.why-us-new .bottom .left .btm h5 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 18px;
    color: #3157ff;
}

.why-us-new .bottom .right .gif {
    max-width: 580px;
    height: 100%;
}

.why-us-new .bottom .right .gif img {
    border-radius: 8px;
    height: 100%;
    max-width: 330px;
    max-height: 320px;

}

.why-us-new .bottom .right .text_gif img {
    max-width: 200px;
}

.why-us-new .bottom .right .text h3 {
    font-size: 90px;
    line-height: 1;
    font-weight: 700;
    color: #ffca37;
    margin-bottom: 10px;
    color: #3157ff;
    padding-left: 10px;
}

.why-us-new .bottom .right .text h5 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 18px;
    color: #ffca37;
}

.why-us-new .bottom .right .text {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.why-us-new .why-us-cnt .bottom .left .left-inner .cnt h5 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 0px;
    color: #fb302f;
}

.why-us-new .why-us-cnt .bottom .left .left-inner .cnt:last-child h5 {
    text-align: right;
}

.why-us-new .top .right .item-two .img-sec {
    max-width: 170px;
}

.why-us-new .top .right .item-two .img-sec img {
    max-width: 100%;
}

.why-us-new .top .right .item-two .right h5 {
    font-size: 28px;
    font-weight: bold;
    color: #ffca37;
}

.why-us-new .bottom .right .text h3 {
    font-size: 60px;
}

.unforgetable {
    padding-top: 50px;
    min-height: 907px;
    background-image: url("../assets/images/Footerblocks.jpg");
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.unforgetable .page-center {
    max-width: 100%;
    padding-left: 100px;
    padding-right: 100px;
}

.unforgetable .sec-inner .sec-text h2 {
    font-size: 130px;
    line-height: 145px;
    font-weight: bold;
    text-align: center;
}

.outcome {
    background-image: url("../assets/images/digital_city.gif");
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
    position: relative;
    background-size: cover;
    background-position: center center;
    padding: 90px 0;
}

.outcome .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
}

.outcome .page-center {
    padding-left: 100px;
    padding-right: 100px;
    max-width: 100%;
}

.outcome .inner h2 {
    font-size: 85px;
    text-align: center;
    line-height: 113px;
    position: relative;
}

.outcome .inner h2:first-child {
    margin-bottom: 40px;
    color: #00FF2C;
}

.outcome .inner h2 span {
    color: #00FF2C;
}

.why-us-new .bottom .left .arrow-img {
    max-height: 350px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.why-us-new .bottom .left .arrow-img img {
    max-width: 100%;
    /* height: 190px; */
}

.why-us-new .top .right .item-two .text h5 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #09ff67;
}

.why-us-new .top .right .item-two .text h4 {
    font-size: 24px;
    font-weight: 700;
    color: #09ff67;
}

.future-sec {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 1000px;
    background-image: url("../assets/images/balls.gif");
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 50px;
}

.future-sec .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.14;
}

.future-sec .future-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.future-sec .future-inner h3 {
    text-align: center;
    line-height: 1.22222222222;
    font-size: 90px;
    font-weight: bold;
    margin-bottom: 70px;
    position: relative;
    color: #fff;
}

.future-sec .future-inner p {
    color: #fff;
    position: relative;
    font-size: 42px;
    font-weight: 400;
    text-align: center;
    line-height: 1.69047619048;
}

.future-sec .future-inner p span {
    font-weight: 700;
}


/* our work card stack */

.our-work .card-stack {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(var(--numcards), var(--card-height));
}

.our-work .card-stack .card-item {
    position: sticky;
    top: 30px;

}

.our-work .card-stack #card_1 {
    --index: 1;
    padding-top: calc(var(--index) * var(--card-top-offset));
}

.our-work .card-stack #card_2 {
    --index: 2;
    padding-top: calc(var(--index) * var(--card-top-offset));
}

.our-work .card-stack #card_3 {
    --index: 3;
    padding-top: calc(var(--index) * var(--card-top-offset));
}

.our-work .card-stack #card_4 {
    --index: 4;
    padding-top: calc(var(--index) * var(--card-top-offset));
}

.why-us-new .sec-head .ball-anm img {
    max-width: 100%;
}

.why-us-new .top .right .item-two .text {
    display: flex;
    gap: 20px;
    align-items: center;
}

.why-us-new .top .right .item-two .left h4 {
    font-size: 28px;
    line-height: 1;
    font-weight: 400;
}

.why-us-new .top .right .item-two .right h5 {
    font-size: 90px;
    line-height: 120%;
    margin: 0;
}

.why-us-new .top .right .item-two .right h4 {
    font-size: 28px;
    line-height: 1;
    font-weight: 400;
}

.why-us-new .top .right .item-two .img-sec {
    max-width: 170px;
}

.why-us-new .top .right .item-two .img-sec img {
    max-width: 100%;
}

.why-us-new .top .right .item-two .right h5 {
    font-size: 28px;
    font-weight: bold;
    color: #ffca37;
}

.why-us-new .top .right .item-two {
    padding: 20px;
}

.why-us-new .bottom .left .left-col h5 {
    margin: 0;
    font-size: 28px;
    font-weight: 400;
}

.why-us-new .bottom .left .btm {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.why-us-new .bottom .left .right-col h5 {
    font-size: 28px;
    font-weight: 400;
    margin: 0;
}

.why-us-new .bottom .right .text h5 {
    font-size: 28px;
    line-height: 1;
    line-height: 121%;
}


.what_client_say .ball-anm img {
    width: 100%;
}

/* .our_services_section {
    overflow: hidden;
    padding-top: 50px;
}

.our_services_section .top_title h3 {
    flex: 0 0 40%;
    max-width: 40%;
    font-weight: 400;
}

.our_services_section .dragable_slider_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 60px;
    width: max-content;
    margin: 0 -30px;
    flex-wrap: nowrap;
    padding-top: 100px;
}

.our_services_section .dragable_slider_wrapper .slider_item:first-child {
    margin-left: 0;
}

.our_services_section .stickybox.draggable .draggable-box {
    height: 574px;
    left: 50%;
    position: absolute;
    top: 65%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1680px;
}

.our_services_section .page-center {
    max-width: 100%;
    padding-left: 100px;
    padding-right: 100px;
    height: 100%;
}

.our_services_section .top_title {
    display: flex;
    flex-direction: column;
}

.our_services_section .top_title h2 {
    font-size: 130px;
    transition: all 0.3s ease;
}

.our_services_section .top_title h2:hover {
    color: #fb302f;
}

.our_services_section .cont .ball-anm img {
    max-width: 400px;
}

.our_services_section .cont {
    display: flex;
}

.our_services_section .primary-btn.red-btn:hover {
    background-color: #fb302f;
}

.our_services_section .stickybox.draggable {
    height: 100vh;
    position: relative;
    overflow: visible;
}

.our_services_section .dragable_slider_wrapper .slider_item {
    height: 100%;
    margin: 0px;
    overflow: hidden;
    position: relative;
    flex: 0 0 auto;
    box-sizing: border-box;
}

.our_services_section .slider_item .top_cont h3 {
    font-size: 60px;
    font-weight: normal;
    color: #fb302f;
}

.our_services_section .slider_item .top_cont p {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.our_services_section .slider_item .btm_cont {
    display: flex;
    gap: 30px;
}

.our_services_section .slider_item .btm_cont .img-col {
    position: relative;
    display: inline-block;
    max-width: 70%;
}

.our_services_section .slider_item .btm_cont .img-col img {
    display: block;
    transition: opacity 0.3s ease;
}

.our_services_section .slider_item .btm_cont .img-col:hover .def-img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.our_services_section .slider_item .btm_cont .img-col .hov-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.our_services_section .slider_item .btm_cont .img-col:hover .hov-img {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.our_services_section .slider_item .btm_cont h3 {
    font-size: 40px;
}

.our_services_section .dragable_slider_wrapper .slider_item .slide_title {
    max-width: 30%;
    display: flex;
    flex-direction: column;
    gap: 24px;
} */

/* Partner Section Home page */

.partner-section {
    width: 100%;
    overflow: hidden;
    background: #fff;
    padding: 40px 0;
    position: relative;
}

.partner-track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
}

.partner-item {
    flex: 0 0 auto;
    width: 180px;
    margin: 0 40px;
}

.partner-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.3s ease;
}

.partner-item img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}


/* Headder with Hamburger */

.header-inner a:link,
.header-inner a:visited {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s;
}

/* HELPER CLASSES */
.header-inner .center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/***********************/
/* NAVIGATION MENU */
/***********************/

/* OVERLAY */
.header-inner .overlay {
    z-index: 9;
    position: fixed;
    top: 0;
    left: 0;
    width: 25%;
    height: 100vh;
    height: 100svh;
    background-color: rgba(0, 0, 0, 0.98);
}

.header-inner .overlay-slide-right {
    transition: all 0.4s ease-in-out;
    transform: translateX(0);
}

.header-inner .overlay-slide-left {
    transition: all 0.8s ease-in-out;
    transform: translateX(-100%);
}

/* NAV MENU ITEMS */
.header-inner nav ul {
    height: 100vh;
    height: 100svh;
    list-style: none;
}

.header-inner nav ul li {
    height: 20%;
}


.header-inner nav li a {
    letter-spacing: 0.4rem;
    font-size: 2rem;
}

.header-inner nav li a:hover,
.header-inner nav li a:active {
    transform: scale(1.2);
}

/***********************/
/* NAV SLIDE IN ANIMATION */
/***********************/

.header-inner .slide-in-1 {
    animation: slide-in 0.4s linear 0.2s both;
}

.header-inner .slide-in-2 {
    animation: slide-in 0.4s linear 0.4s both;
}

.header-inner .slide-in-3 {
    animation: slide-in 0.4s linear 0.6s both;
}

.header-inner .slide-in-4 {
    animation: slide-in 0.4s linear 0.8s both;
}

.header-inner .slide-in-5 {
    animation: slide-in 0.4s linear 1s both;
}

@keyframes slide-in {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

/***********************/
/* NAV SLIDE OUT ANIMATION */
/***********************/

.header-inner .slide-out-1 {
    animation: slide-out 0.3s linear 0.5s both;
}

.header-inner .slide-out-2 {
    animation: slide-out 0.3s linear 0.4s both;
}

.header-inner .slide-out-3 {
    animation: slide-out 0.3s linear 0.3s both;
}

.header-inner .slide-out-4 {
    animation: slide-out 0.3s linear 0.2s both;
}

.header-inner .slide-out-5 {
    animation: slide-out 0.3s linear 0.1s both;
}

@keyframes slide-out {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/***********************/
/* HAMBURGER MENU ANIMATION */
/***********************/

.header-inner .hamburger-menu {
    top: 1rem;
    z-index: 10;
    cursor: pointer;
}

.header-inner .menu-bar1,
.header-inner .menu-bar2,
.header-inner .menu-bar3 {
    width: 3.5rem;
    height: 0.2rem;
    background-color: #fff;
    margin: 0.8rem 0;
    transition: 0.4s;
}

.header-inner .menu-bar2 {
    width: 2rem;
    margin-left: auto;
}

/* ROTATE FIRST BAR */
.header-inner .active .menu-bar1 {
    transform: rotate(-45deg) translate(-0.7rem, 0.8rem);
}

/* FADE OUT SECOND BAR */
.header-inner .active .menu-bar2 {
    opacity: 0;
}

/* ROTATE LAST BAR */
.header-inner .active .menu-bar3 {
    transform: rotate(45deg) translate(-0.6rem, -0.8rem);
}

/***********************/
/* SECTION */
/***********************/

section.header-inner {
    width: 100%;
    height: 100vh;
    height: 100svh;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    text-align: center;
    color: #fff;
}

.logo {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    font-size: 1.4rem;
    letter-spacing: 0.3rem;
}

h1 {
    font-size: 3rem;
    /* background-color: rgb(0, 0, 0, 0.6); */
    padding: 0.5rem 1rem;
}



/**************************/
/* MEDIA QUERY */
/**************************/


/* BELOW 600px (Phones) */
@media (max-width: 37em) {
    .hamburger-menu {
        top: 0.5rem;
        right: 1rem;
    }

    .logo {
        top: 1rem;
        left: 1rem;
    }

    h1 {
        font-size: 2rem;
    }
}

/* End */

@media(max-width:1200px) and (min-width:768px) {
    .what_client_say .client_left h2 {
        max-width: 50%;
    }

    .what_client_say .ball-anm {
        bottom: 0%;
    }

    section.what_client_say {
        overflow-x: clip;
    }
}

@media(max-width:1200px) {
    .footer-inner .right .company-email p a {
        font-size: 30px;
    }

    .bnr-sec .bnr-head h2 {
        font-size: 80px;
        line-height: 90px;
    }

    .who-we-are .left-col .sec-head h2 {
        font-size: 80px;
        line-height: 90px;
    }

    .smart-sec .smart-inner .sec-head h2 {
        font-size: 60px;
        line-height: 70px;
    }

    .our-work .sec-head h2 {
        font-size: 80px;
        line-height: 90px;
        transition: all 0.3s ease;
    }

    .clients-say .sec-head h2 {
        font-size: 80px;
        line-height: 90px;
        transition: all 0.3s ease;
    }

    .brand-tag .brand-head h2 {
        font-size: 80px;
        line-height: 90px;
    }

    .who-we-are .left-col .ball-anm img {
        width: 1074px;
        max-width: 100%;
    }

    .who-we-are .we-are-inner .left-col .ball-anm {
        top: 0%;
    }

    .header .page-center {
        padding: 0 50px;
    }

    .bnr-sec .page-center {
        padding-left: 50px;
        padding-right: 50px;
    }

    .who-we-are .page-center {
        padding-left: 50px;
        padding-right: 50px;
    }

    .smart-sec .page-center {
        padding-left: 50px;
        padding-right: 50px;
    }

    .our-work .page-center {
        padding-left: 50px;
        padding-right: 50px;
    }

    .clients-say .page-center {
        padding-left: 50px;
        padding-right: 50px;
    }

    .brand-tag .page-center {
        padding-left: 50px;
        padding-right: 50px;
    }

    .footer .page-center {
        padding: 0 50px;
    }
}


/* inner tab hover effects css  */
.inner-tab-content .img-col {
    position: relative;
}

.inner-tab-content .img-col img {
    display: block;
    transition: opacity 0.3s ease;
}

.inner-tab-content .img-col .hov-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.inner-tab-content .img-col:hover .hov-img {
    opacity: 1;
}




/* Our client Home page */

section.what_client_say {
    padding: 50px 0;
    overflow: hidden;
}

section.why_client_say {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #262626;
    min-height: 100vh;
    overflow: hidden;
    padding: 100px 0 50px 0;
}

section.what_client_say .page-center {
    max-width: 100%;
    padding-left: 100px;
    padding-right: 100px;
}

.what_client_say .client_say_wrapr {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}

.what_client_say .client_left h2 {
    font-size: var(--h2-font-size);
    text-transform: uppercase;
    line-height: 145px;
    font-weight: bold;
}

.what_client_say .client_left h2:hover {
    color: #09ff67;
}

.what_client_say .client_left {
    width: 54%;
    position: relative;
}

.what_client_say .client_right {
    width: 45%;
    position: relative;
    cursor: grab;
}

.what_client_say .ball-anm {
    position: absolute;
    right: 18%;
    bottom: -17%;
    max-width: 200px;
    z-index: -1;
    /* max-width: 160px;
    bottom: unset;
    top: 0;
    right: unset;
    left: 60%; */
}

.what_client_say .ball-anm img {
    max-width: 300px;
}




.what_client_say .client_right .card_cont {


    display: flex;
    align-items: end;
    justify-content: center;



}

.what_client_say .acrd_content {
    /* height: 100%; */
    pointer-events: none;
}

.what_client_say .acrd_content img.M_logo_img {
    width: 180px;
    margin-bottom: 0px;
}

.what_client_say .next_btn {
    height: 100%;
    display: flex;
    align-items: end;
}

.what_client_say .acrd_content p {
    margin-top: 0px;
    font-size: 24px;
    margin-bottom: 15px;
    font-style: italic;
}

.what_client_say .acrd_content span.titl_1 {
    margin: 20px 0;
    font-size: x-large;

}

.what_client_say .client_right .bottom_cont img {
    width: 110px;
}

.what_client_say .client_right .bottom_cont {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-top: 20px;
}

.what_client_say .client_right p.titl_1 span {
    font-size: large;
    margin-bottom: 15px;
}

.why_client_say .content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.28) 0%,
            rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(30px);
    border-radius: 20px;
    width: min(900px, 100%);
    box-shadow: 0 0.5px 0 1px rgba(255, 255, 255, 0.23) inset,
        0 1px 0 0 rgba(255, 255, 255, 0.66) inset, 0 4px 16px rgba(0, 0, 0, 0.12);
    z-index: 10;
}




/* SWIPER */

.what_client_say .swiper {
    width: 700px;
    height: 500px;
}

.what_client_say .swiper-slide {
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    user-select: none;
    padding: 40px;
}

.what_client_say .swiper-slide img {
    /* position: absolute; */
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.what_client_say .img-position {
    object-position: 50% 0%;
}

.what_client_say .swiper-wrapper .swiper-slide:nth-child(1) {
    /* background: rgb(236, 65, 65); */
    background: #3157FF;
}

.what_client_say .swiper-wrapper .swiper-slide:nth-child(2) {
    /* background: rgb(39, 241, 147); */
    /* background: #00FF2C; */
    background: #41b041;
}

.what_client_say .swiper-wrapper .swiper-slide:nth-child(3) {
    /* background: rgb(68, 131, 248); */
    background: #FB302F;
}

.what_client_say .swiper-wrapper .swiper-slide:nth-child(4) {
    /* background: rgb(250, 20, 135); */
    background: #3157FF;
}

.what_client_say .swiper-wrapper .swiper-slide:nth-child(5) {
    /* background: rgb(15, 243, 156); */
    background: #41b041;
}

.what_client_say .swiper-wrapper .swiper-slide:nth-child(6) {
    /* background: rgb(137, 226, 36); */
    background: #FB302F;
}




@media (max-width: 750px) {
    .what_client_say .content {
        flex-direction: column-reverse;
    }

    .what_client_say .btn {
        margin: 10px auto 40px;
    }
}


/* Our Work Home page Updated */

.our-work .card-stack .card-item .media-1 {
    background-image: url("../assets/images/TCL.jpg")
}

.our-work .card-stack .card-item .media-2 {
    background-image: url("../assets/images/Mediatek_Car.jpg")
}

.our-work .card-stack .card-item .media-3 {
    background-image: url("../assets/images/Realme.jpg")
}

.our-work .card-stack .card-item .media-4 {
    background-image: url("../assets/images/Oppo.jpg")
}

.our-work .card-stack .card-item .media-5 {
    background-image: url("../assets/images/Transforming a fragmented.jpg")
}

/* our work hover images */


#card_1:hover .media-1 {
    background-image: url("../assets/images/TCL_HOVER.jpg");
}

#card_2:hover .media-2 {
    background-image: url("../assets/images/MediaTek_car_Hover.jpg");
}

#card_3:hover .media-3 {
    background-image: url("../assets/images/REALME_HOVER.jpg");
}

#card_4:hover .media-4 {
    background-image: url("../assets/images/OPPO_Hover.jpg");
}

#card_5:hover .media-5 {
    background-image: url("../assets/images/Transforming a fragmented_HOVER.jpg");
}

.our-work .work-inner .img-col {
    /* width: 850px;
    height: 600px; */
    width: 100%;
    height: 100%;
    /* or your image height */
    background-size: cover;
    background-position: center;
    transition: background-image 0.3s ease;
    position: relative;
    /* z-index:999; */
    border-radius: 10px;
}

.card__content {
    width: 100%;
    height: 100%;
}

.our-work .work-inner .card-item:hover .text-on-img {
    opacity: 1;
}

/* Footer Home page responsive */
.strategy-sec .inner .img-col.footer .footer-inner .right .company-email {
    margin-bottom: 20px;
}

.footer .footer-inner .area-of-op .right {
    display: none;
}

@media(max-width:1440px) {
    .header .page-center {
        padding: 0 50px;
    }

    .footer .page-center {
        padding-left: 50px;
        padding-right: 50px;
    }


    .footer {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .partner-section {
        padding: 25px 0;
    }

    .rolling-gif.f-last {
        padding: 50px 0;
    }

    .unforgetable .sec-inner .sec-text h2,
    .outcome .inner h2 {
        font-size: 70px;
        line-height: 1.11538461538;
    }

    .unforgetable .page-center {
        padding: 0 50px;
    }

    .unforgetable {
        min-height: 600px;
    }

    .what_client_say .client_left h2 {
        font-size: 70px;
        line-height: 1.11538461538;
    }

    section.what_client_say .page-center {
        padding-left: 50px;
        padding-right: 50px;
    }

    .what_client_say .swiper {
        width: 500px;
        height: 480px;
    }

    .what_client_say .client_left {
        width: 35%;
    }

    .what_client_say .client_right {
        width: 65%;
    }

    .what_client_say .acrd_content p {
        font-size: 21px;
    }

    .what_client_say .swiper-slide {
        padding: 30px;
    }

    .what_client_say .acrd_content img.M_logo_img {
        width: 150px;
    }

    section.what_client_say {
        padding-top: 0
    }

}

@media(max-width:1100px) {
    .what_client_say .swiper {
        width: 500px;
    }

    .what_client_say .acrd_content p {
        font-size: 21px;
    }
}

@media(max-width:1024px) {
    .what_client_say .client_say_wrapr {
        flex-direction: column;
    }

    .what_client_say .client_left {
        width: 100%;
    }

    .what_client_say .client_right {
        width: 100%;
    }

    .what_client_say .client_left h2 br {
        display: none;
    }

    .unforgetable {
        padding-top: 0;

    }
}


@media(max-width:991px) {
    .footer-inner .right .company-email p a {
        font-size: 20px;
    }

    .footer-inner .left .social-share ul>li>a {
        font-size: 18px;
    }

    .footer-inner .privacy-info ul>li>a {
        font-size: 18px;
    }

    .footer-inner .left .about-cmp p {
        font-size: 18px;
    }

    .footer-inner .area-of-op .left .title p {
        font-size: 18px;
    }

    .footer-inner .area-of-op .left .sectors ul>li {
        margin-left: 5px;
        margin-right: 5px;
    }

    .partner-section {
        padding: 15px 0;
    }

    .primary-btn {
        padding: 13px 35px;
    }
}

@media(max-width:767px) {
    .our-work .work-inner .image-sec .text-on-img p {
        font-size: 18px;
    }

    .footer .footer-inner {
        flex-direction: column;
        gap: 20px;
    }

    .footer-inner .left .social-share ul>li>a {
        font-size: 16px;
    }

    .footer-inner .left .social-share {
        margin-bottom: 30px;
    }

    .footer-inner .left .privacy-info {
        margin-bottom: 30px;
    }

    .footer-inner .left .social-share ul {
        justify-content: center;
    }

    .footer-inner .privacy-info ul {
        justify-content: center;
    }

    .footer-inner .left .social-share ul>li {
        margin-left: 10px;
        margin-right: 10px;
    }

    .footer-inner .privacy-info ul>li>a {
        font-size: 16px;
    }

    .footer-inner .left .about-cmp p {
        text-align: center;
        font-size: 16px;
    }

    .footer .footer-inner .right .company-email {
        text-align: center;
    }

    .footer .footer-inner .right .newsletter {
        text-align: center;
    }

    .primary-btn {
        padding: 13px 35px 13px 35px;
    }

    .footer-inner .area-of-op {
        justify-content: center;
        margin-top: 30px;
    }

    .footer .logo-cnt {
        text-align: center;
    }

    .footer-inner .right .company-email p a {
        font-size: 20px;
    }

    .footer .page-center {
        padding-left: 30px;
        padding-right: 30px
    }

    .footer {
        padding-top: 10px;
        padding-bottom: 25px;
    }

    .rolling-gif.f-last {
        padding-top: 25px;
        padding-bottom: 0;
    }

    .rolling-gif .gif-foot img.text {
        max-height: 100px;
    }

    .rolling-gif .gif-foot img.globe {
        height: 80%;
    }

    .rolling-gif .gif-foot {
        padding: 50px 0;
    }

    .unforgetable .sec-inner .sec-text h2 {
        font-size: 40px;
    }

    .unforgetable {
        min-height: 350px;
        background-position: center;
        background-size: cover;
    }

    .what_client_say .client_left h2 {
        font-size: 40px;
        text-align: center;
    }

    .what_client_say .acrd_content p {
        font-size: 16px;
    }

    .what_client_say .swiper-slide {
        padding: 20px;
    }

    .what_client_say .acrd_content img.M_logo_img {
        width: 120px;
        margin-bottom: 10px;
    }

    .what_client_say .swiper {
        height: 420px;
        width: 520px;
    }

    .what_client_say .client_right .bottom_cont img {
        width: 70px;
    }

    section.what_client_say .page-center {
        padding-left: 30px;
        padding-right: 30px
    }

    .what_client_say .client_left h2 {
        text-align: left;
    }

    .bnr-sec {
        height: 75vh;
    }

    .header-inner .active .menu-bar1 {
        transform: rotate(-45deg) translate(-27px, 5px);
    }

    .header-inner .active .menu-bar3 {
        transform: rotate(45deg) translate(-10px, 10px);
    }

    .our_services_section .top_title h2 {
        font-size: 30px;
    }
}

@media(max-width:600px) {
    .what_client_say .swiper {
        width: 430px;
    }

    .what_client_say .client_right p.titl_1 span {
        font-size: 16px;
    }
}

@media(max-width:576px) {
    .footer-inner .area-of-op .left {
        flex-direction: column;
        align-items: center;
    }

    .footer-inner .area-of-op .left .title {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .footer-inner .left .social-share ul {
        flex-direction: column;
    }

    .footer-inner .left .social-share ul>li {
        margin: 0;
        margin-bottom: 10px;
    }

    .footer-inner .privacy-info ul>li {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 10px
    }

    .footer-inner .privacy-info ul {
        flex-direction: column;
        align-items: center;
    }

    .footer-inner .left .social-share {
        margin-bottom: 15px;
    }

    .footer-inner .left .privacy-info {
        margin-bottom: 30px;
    }

    .footer-inner .area-of-op .left .sectors ul {
        flex-direction: column;
        align-items: center;
    }

    .footer-inner .area-of-op .left .sectors ul>li {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .footer-inner .area-of-op .left .title p {
        font-size: 17px;
    }

    .unforgetable .sec-inner .sec-text h2 {
        font-size: 26px;
    }
}



/* New Footer Updated cSS */
.footer .footer-inner .right .company-email {
    margin-bottom: 20px;
}

.our-work .card-stack #card_5 {
    --index: 5;
    padding-top: calc(var(--index) * var(--card-top-offset));
}

/* new footer css */

.footer .footer-inner .right .company-email {
    margin-bottom: 20px;
}

.our-work .card-stack #card_5 {
    --index: 5;
    padding-top: calc(var(--index) * var(--card-top-offset));
}

/* new footer css */

.footer-inner .privacy-info ul {
    flex-direction: column;
}

.footer-inner .privacy-info ul li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-inner .privacy-info ul li:last-child {
    border: none;
}

.footer-inner .privacy-info ul>li>a {
    text-decoration: none;
    padding-bottom: 15px;
    display: inline-block;
    padding-top: 15px;
    text-transform: none;
}

.footer-inner .privacy-info ul>li:first-child>a {
    padding-top: 0;
}

.footer-inner .privacy-info ul>li:last-child>a {
    padding-bottom: 0;
}

.footer .footer-inner {
    gap: 100px;
}

.footer .footer-inner>div:nth-child(1) {
    padding-left: 0;
}

.footer .footer-inner>div:nth-child(3) {
    padding-right: 0;
}

.footer .footer-inner {
    gap: 0;
}


.footer .footer-inner>div:nth-child(1) {
    padding-left: 0;
}

.footer .footer-inner>div:nth-child(3) {
    padding-right: 0;
}

.footer .footer-inner .middle .sec-head {
    margin-bottom: 50px;
}

.footer .footer-inner .middle .quick-menu-items ul {
    list-style: none;
    width: 100%;
}

.footer .footer-inner .middle .quick-menu-items ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding-bottom: 15px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
}

.footer .footer-inner .middle .quick-menu-items ul li:first-child {
    padding-top: 0;
}

.footer .footer-inner .middle .quick-menu-items ul li:last-child {
    border: none;
}

.footer .footer-inner .middle .quick-menu-items ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 20px;
    line-height: 185%;
    padding-bottom: 15px;
}

.footer .footer-inner .middle .sec-head h4 {
    font-size: 24px;
    font-weight: 900;
}

.footer .footer-inner .right .sec-head {
    margin-bottom: 50px;
}

.footer .footer-inner .right .sec-head h4 {
    font-size: 24px;
    font-weight: 900;
}

.footer .footer-inner .right .ind h5 {
    font-weight: 400;
}

.footer .footer-inner .right .ind p {
    font-size: 18px;
    font-weight: 400;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 16px;
}

.footer .footer-inner .right .indon p:first-child {
    padding-top: 0;
}

.footer .footer-inner .right .indon h5 {
    font-weight: 400;
}

.footer .footer-inner .right .indon p {
    font-size: 18px;
    font-weight: 400;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 16px;
    text-transform: none;
}

.footer .footer-inner .right .indon p:first-child {
    padding-top: 0;
}

.footer .footer-inner .right .indon h5 {
    padding-top: 15px;
}

.footer .footer-inner .right .indon p {
    border: none;
}

.footer .footer-inner .right .ind p a {
    text-decoration: underline;
    cursor: pointer;
    color: #fff;
}

.footer .footer-inner .right .indon p a {
    text-decoration: underline;
    cursor: pointer;
}

.footer-inner .left .privacy-info {
    margin-bottom: 60px;
}

.footer-inner .left .company-email p {
    font-size: 35px;
    color: #fff;
    line-height: 1.2;
}

.footer-inner .left .company-email p a {
    text-decoration: none;
    color: #fff;
}

.footer .footer-inner .right .ind p a {
    display: block;
    margin-top: 10px;
    cursor: pointer;
}

.footer .footer-inner .right .indon p a {
    display: block;
    margin-top: 10px;
    cursor: pointer;
}

.footer-inner .left .social-share {
    margin-bottom: 50px;
}

.footer .footer-inner .middle .quick-menu-items ul li {
    border: none;
}

.footer-inner .privacy-info ul li {
    border: none;
}

.footer .footer-inner .right .ind p {
    border: none;
}

.footer .footer-inner .middle .quick-menu-items ul li {
    flex-direction: column;
    padding: 0;
}

@media(max-width:1280px) {

    .footer-inner .left .company-email p {
        font-size: 22px;
    }

    .footer-inner .left .social-share ul>li {
        margin-right: 10px;
        margin-left: 10px;
    }

    .footer .footer-inner .middle .quick-menu-items ul li a {
        font-size: 18px;
    }

    .footer-inner .privacy-info ul>li>a {
        font-size: 18px;
    }

    .footer .footer-inner>div {
        width: calc(50% - 30px);
    }

    .footer .footer-inner {
        flex-wrap: wrap;
        row-gap: 50px;
    }
}

@media(max-width:840px) {
    .footer .footer-inner {
        flex-direction: column;
        gap: 50px;
    }

    .footer .footer-inner>div {
        width: 100%;
    }
}

@media(max-width:767px) {

    .footer .page-center {
        padding: 0 30px;
    }

    .footer .logo-cnt {
        text-align: left;
    }

    .footer-inner .left .social-share ul {
        justify-content: flex-start;
    }

    .footer {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media(max-width:575px) {

    .rolling-gif .gif-foot img.text {
        max-height: 50px;
    }

    .footer .logo-cnt {
        margin-bottom: 30px;
    }

    .footer-inner .left .social-share {
        margin-bottom: 30px;
    }

    .footer-inner .left .privacy-info {
        margin-bottom: 30px;
    }

    .footer .footer-inner {
        gap: 50px;
    }

    .footer-inner .left .social-share ul {
        align-items: flex-start;
    }

    .footer-inner .left .social-share ul>li {
        margin-left: 0;
        margin-right: 0;
    }

    .footer-inner .privacy-info ul {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .footer .footer-inner .middle .sec-head {
        margin-bottom: 30px;
    }

    .footer .footer-inner .right .sec-head {
        margin-bottom: 30px;
    }

    .footer-inner .left .company-email p {
        font-size: 18px;
    }

    .footer-inner .privacy-info ul>li>a {
        padding-bottom: 5px;
        padding-top: 5px;
    }

    .footer .footer-inner .middle .quick-menu-items ul li a {
        padding-top: 0;
        padding-bottom: 5px;
    }

    .footer-inner .privacy-info ul>li>a {
        font-size: 16px;
    }

    .footer .footer-inner .middle .quick-menu-items ul li a {
        font-size: 16px;
    }

    .footer .footer-inner .right .ind p {
        font-size: 16px;
    }

    .footer .footer-inner .right .indon p {
        font-size: 16px;
    }

    .footer .footer-inner .middle .sec-head h4,
    .footer .footer-inner .right .sec-head h4 {
        font-size: 22px;
    }

    section.what_client_say .page-center {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (width <=1440px) {
    .header-inner .overlay {
        width: 50%;
    }
}

@media (width <=767px) {
    .header-inner .overlay {
        width: 100%;
    }
}

.our-work .card-stack .card-item .card-inner {
    position: relative;
}

.why-us-new .why-us-cnt .bottom .left {
    width: 55%;
}

.why-us-new .why-us-cnt .bottom .right {
    width: 45%;
}

.why-us-new .bottom .left .arrow-img {
    max-width: 100%;
}

.our-work .card-stack #card_5 {
    --index: 5;
    padding-top: calc(var(--index) * var(--card-top-offset));
    /* padding-top: 170px; */
}

.our-work .work-inner .image-sec .text-on-img {
    max-width: 90%;
}

@media(min-width:1681px) {
    .our-work .work-inner .image-sec .text-on-img p {
        font-size: 24px;
    }
}

@media(max-width:1680px) {
    .who-we-are .we-are-inner {
        gap: 50px;
    }

    .who-we-are .right-col .item .our-feat p {
        font-size: 22px;
        line-height: 1.2;
    }

    .who-we-are .right-col .item .feat-img img {
        max-width: 200px;
    }

    .who-we-are .right-col .item .feat-count p {
        font-size: 22px;
    }

    .who-we-are .right-col .item .num {
        margin: 0;
    }

    .who-we-are .right-col .item .feat-img {
        margin: 0;
    }

    .who-we-are .right-col .item .our-feat {
        margin: 0;
    }

    .who-we-are .right-col .about-det .item {
        width: 100%;
        gap: 25px;
    }

    .who-we-are .right-col .item .num p {
        font-size: 24px;
    }

    .who-we-are .we-are-inner .right-col {
        justify-content: flex-end;
    }

    .who-we-are .right-col .about-det .item:last-child .img-col {
        margin-left: -25px;
    }

    .bnr-sec .bnr-inner .ball-anm img {
        max-width: 100%;
    }

    .bnr-sec .bnr-inner .ball-anm {
        max-width: 450px;
        right: 0;
        top: 20%;
    }

    who-we-are .left-col .ball-anm img {
        width: 100%;
    }

    .who-we-are .we-are-inner .left-col .ball-anm {
        max-width: 400px;
        right: -20%;
    }

    .our-work .work-inner .img-col {
        width: 700px;
    }

    .our-work .work-inner {
        gap: 30px;
    }


}


@media(max-width:1540px) {

    .who-we-are .we-are-inner .left-col .ball-anm {
        max-width: 300px;
    }

    .who-we-are .left-col .ball-anm img {
        width: 100%;
    }
}

@media (max-width: 1440px) and (min-width: 1280px) {
    .what_client_say .ball-anm {
        top: 50%;
        right: unset;
        left: 60%;
    }
}

@media(max-width: 1440px) {
    .who-we-are .page-center {
        padding: 0 50px;
    }

    .who-we-are .left-col .sec-head h2 {
        font-size: 70px;
        line-height: 1.2;
    }

    .who-we-are .left-col .about-us p {
        font-size: 20px;
    }

    .who-we-are .left-col .ball-anm img {
        width: 100%;
    }

    .who-we-are .we-are-inner .left-col .ball-anm {
        max-width: 300px;
        right: 5%;
        top: 5%;
    }

    .who-we-are {
        padding-top: 50px;
    }

    .who-we-are .right-col .about-det .item:last-child {
        padding-bottom: 0;
    }

    .bnr-sec .page-center {
        padding: 0 50px;
    }

    .bnr-sec .bnr-head h2 {
        font-size: 70px;
        line-height: 1.2;
    }

    .bnr-sec .bnr-inner .ball-anm {
        top: 0;
    }

    .bnr-sec {
        padding-top: 50px;
    }

    .why-us-new .page-center {
        padding: 0 50px;
    }

    .why-us-new .sec-head h2 {
        font-size: 70px;
    }

    .why-us-new .sec-head .ball-anm {
        max-width: 300px;
        top: -27%;
        left: 15%;
        bottom: -50%;
    }

    .why-us-new .bottom .right .text h3 {
        font-size: 40px;
        margin: 0;
        text-align: center;
    }

    .why-us-new .bottom .right .text_gif img {
        max-width: 180px;
    }

    .why-us-new .bottom .right .text .text_gif {
        text-align: center;
    }

    .future-sec .future-inner h3 {
        font-size: 60px;
        margin-bottom: 40px;
    }

    .future-sec .future-inner p {
        font-size: 30px;
        line-height: 1.2;
    }

    .future-sec {
        min-height: 800px;
    }

    .future-sec .full-width {
        padding: 0 50px;
    }

    .outcome {
        min-height: 800px;
        padding: 0;
    }

    .outcome .page-center {
        padding: 0 50px;
    }

    .our-work .about-wrk .left h3 {
        font-size: 45px;
    }

    .our-work .about-wrk .right h3 {
        font-size: 70px;
    }

    .our-work .about-wrk .text-cnt {
        margin-bottom: 50px;
    }

    .our-work .work-inner .image-sec .text-on-img h3 {
        font-size: 40px;
    }

    .our-work .sec-head h2 {
        font-size: 70px;
        line-height: 1.2;
    }

    .our-work .page-center .ball-anm {
        top: -50%;
        left: 22%;
    }
}

@media(max-width:1350px) {


    .why-us-new .bottom .right .gif img {
        max-width: 250px;
        max-height: 250px;
    }
}

@media(max-width:1280px) {

    .why-us-new .top .right .item-two .right h5 {
        font-size: 22px;
    }

    .why-us-new .top .right .cnt-sec h5 {
        font-size: 22px;
    }

    .why-us-new .top .left .item .text h5 {
        font-size: 22px;
    }

    .why-us-new .why-us-cnt .bottom .left .left-inner .cnt h5 {
        font-size: 22px;
    }

    .why-us-new .top .left .item {
        padding: 22px 30px;
    }

    .why-us-new .why-us-cnt .top .right .item-one {
        padding: 22px 30px;
    }

    .why-us-new .why-us-cnt .bottom .left .left-inner {
        padding: 20px 30px;
    }

    .why-us-new .bottom .right .text h3 {
        font-size: 30px;
    }

    .why-us-new .bottom .right .text_gif img {
        max-width: 130px;
    }

    .why-us-new .top .right .cnt-sec .text-with-img .gif {
        max-width: 250px;
        margin-right: auto;
    }

    .why-us-new .top .right .cnt-sec .text-with-img h5 {
        margin-left: auto;
    }

    .why-us-new .bottom .right .gif img {
        max-height: 200px;
    }

    /* .why-us-new .bottom .left .arrow-img img {
    height: 150px;
} */

    .why-us-new .why-us-cnt>.top {
        flex-direction: column;
        gap: 20px;
    }

    .why-us-new .why-us-cnt .top>.left {
        width: 100%;
    }

    .why-us-new .why-us-cnt .top>.right {
        width: 100%;
    }

    .why-us-new .why-us-cnt .top .right .item-one {
        justify-content: center;
    }

    .why-us-new .top .right .item-two {
        justify-content: center;
    }

    .why-us-new .why-us-cnt .bottom {
        flex-direction: column;
        gap: 20px;
    }

    .why-us-new .why-us-cnt .bottom .left {
        width: 100%;
        justify-content: center;
    }

    .why-us-new .why-us-cnt .bottom .right {
        width: 100%;
    }

    .why-us-new .bottom .right .gif img {
        max-height: unset;
        max-width: unset;
    }


    .future-sec {
        min-height: 650px;
    }

    .outcome {
        min-height: 650px;
    }

    .our-work .sec-head h2 {
        font-size: 70px;
        line-height: 1.2;
    }

    .our-work .page-center .ball-anm {
        max-width: 300px;
        top: -30%;
        left: 20%;
    }


    .our-work .page-center {
        padding: 0 50px;
    }

    .our-work .work-inner {
        flex-direction: column;
    }

    .our-work .work-inner .image-sec {
        margin-left: auto;
        margin-right: auto;
    }

    .our-work {
        padding-top: 30px;
    }


}

@media(max-width:1200px) {

    .who-we-are .we-are-inner .left-col .ball-anm {
        right: -5%;
        top: 5%;
    }







}



@media(max-width:1100px) {
    .who-we-are .we-are-inner .left-col .ball-anm {
        max-width: 250px;
        right: unset;
        left: 50%;
        top: 2%;
    }

    .bnr-sec .bnr-inner .ball-anm {
        max-width: 250px;
        top: 30%;
    }
}

@media(max-width:1025px) {
    .who-we-are .we-are-inner .left-col {
        width: 100%;
    }

    .who-we-are .we-are-inner .right-col {
        width: 100%;
    }

    .who-we-are .we-are-inner {
        flex-direction: column;
    }

    .who-we-are .we-are-inner .right-col {
        justify-content: flex-start;
    }

    .who-we-are .right-col .about-det {
        width: 100%;
    }

    .who-we-are .left-col .about-us {
        max-width: 100%;
    }

    .bnr-sec .bnr-inner .ball-anm {
        top: 25%;
    }

    .who-we-are .we-are-inner .left-col .ball-anm {
        top: -18%;
    }

    .our-work .page-center .ball-anm {
        left: 30%;
    }

    .our-work .work-inner .img-col {
        width: 650px;
        height: 700px;
    }
}



@media(max-width:767px) {
    .who-we-are .left-col .sec-head h2 {
        font-size: 40px;
        line-height: 1.2;
    }

    .who-we-are .left-col .about-us p {
        font-size: 16px;
    }

    .who-we-are .we-are-inner .left-col .ball-anm {
        max-width: 150px;
        left: 30%;
        top: -18%;
    }

    .who-we-are .page-center {
        padding: 0 30px;
    }

    .bnr-sec .page-center {
        padding: 0 30px;
    }

    .bnr-sec .bnr-head h2 {
        font-size: 40px;
        max-width: 450px;
    }

    .bnr-sec .bnr-head h2 br {
        display: none;
    }

    .bnr-sec .bnr-inner .ball-anm {
        max-width: 150px;
        top: 20%;
        right: 5%;
        margin-top: 20px;
        max-width: 377px;
    }



    .bnr-sec .bnr-head h2 {
        font-size: 45px;
        max-width: 300px;
    }

    .who-we-are {
        padding-top: 50px;
    }

    .bnr-sec {
        padding-bottom: 60px;
        padding-top: 25px;
    }

    .why-us-new .bottom .right .gif img {
        max-height: 200px;
    }

    .why-us-new .page-center {
        padding: 0 30px;
    }

    .why-us-new .top .left .item {
        padding: 22px 20px;
    }

    .why-us-new .why-us-cnt .top .right .item-one {
        padding: 20px 20px;
    }

    .why-us-new .why-us-cnt .bottom .left .left-inner {
        padding: 20px 20px;
    }

    .why-us-new .top .left .item .gif img {
        height: 100%;
        /* max-height: 150px; */
    }

    .why-us-new .sec-head .ball-anm {
        max-width: 150px;
        bottom: unset;
        left: 30%;
        top: -100%;
    }

    .why-us-new .sec-head h2 {
        font-size: 40px;
    }

    .why-us-new .sec-head {
        margin-bottom: 70px;
    }

    .why-us-new {
        padding-top: 30px;
        padding-bottom: 25px;
    }

    .header .page-center {
        padding: 0 30px;
    }

    .logo {
        top: unset;
        left: unset;
    }

    .future-sec .future-inner h3 {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .future-sec .future-inner p {
        font-size: 24px;
    }

    .future-sec {
        min-height: 500px;
    }

    .future-sec .full-width {
        padding: 0 30px;
    }

    .outcome {
        min-height: 500px;
    }

    .outcome .inner h2 {
        font-size: 40px;
    }

    .outcome .inner h2:first-child {
        margin-bottom: 20px;
    }

    .outcome .page-center {
        padding: 0 30px;
    }

    .our-work .sec-head h2 {
        font-size: 40px;
    }

    .our-work .page-center .ball-anm {
        max-width: 150px;
    }

    .our-work .sec-head {
        margin-bottom: 50px;
    }

    .our-work .about-wrk .left h3 {
        font-size: 25px;
    }

    .our-work .about-wrk .right h3 {
        font-size: 45px;
    }

    .our-work .work-inner .image-sec .text-on-img h3 {
        font-size: 30px;
    }

    .our-work .work-inner .image-sec .text-on-img {
        max-width: 80%;
    }

    .our-work .work-inner .img-col {
        width: 550px;
    }

    .our-work .page-center {
        padding: 0 30px;
    }

    .why-us-new .bottom .right .text {
        width: 100%
    }

}

@media(max-width:600px) {

    .our-work .work-inner .img-col {
        width: 450px;
    }
}

@media(max-width:575px) {
    .who-we-are .right-col .item .our-feat p {
        font-size: 16px;
    }

    .who-we-are .right-col .item .feat-count p {
        font-size: 18px;
    }

    .who-we-are .right-col .item .num p {
        font-size: 18px;
    }

    .who-we-are .right-col .item .feat-img img {
        max-width: 150px;
    }

    .who-we-are .right-col .about-det .item {
        padding-bottom: 15px;
        justify-content: center;
    }

    .who-we-are .right-col .about-det {
        row-gap: 20px;
    }

    .bnr-sec .bnr-inner {
        flex-direction: column-reverse;
    }

    .who-we-are .left-col .sec-head h2 {
        font-size: 30px;
    }

    .why-us-new .sec-head h2 {
        font-size: 30px;
    }

    .why-us-new .sec-head {
        margin-bottom: 50px;
    }

    .why-us-new .sec-head .ball-anm {
        top: -64%;
    }

    .why-us-new .top .left .item .text h5 {
        font-size: 18px;
    }

    .why-us-new .top .right .cnt-sec h5 {
        font-size: 18px;
    }

    .why-us-new .top .right .item-two .right h5 {
        font-size: 18px;
    }

    .why-us-new .why-us-cnt .bottom .left .left-inner .cnt h5 {
        font-size: 18px;
    }

    .why-us-new .bottom .right .text h3 {
        font-size: 25px;
    }

    .why-us-new .top .right .item-two .img-sec {
        max-width: 120px;
    }

    .what_client_say .client_left h2 {
        font-size: 30px;
    }

    .future-sec .future-inner h3 {
        font-size: 26px;
    }

    .future-sec .future-inner p {
        font-size: 16px;
    }

    .future-sec {
        min-height: 400px;
    }

    .who-we-are .right-col .item .our-feat p br {
        display: none;
    }

    .outcome {
        min-height: 400px;
    }

    .outcome .inner h2 {
        font-size: 30px;
    }

    .our-work .sec-head h2 {
        font-size: 30px;
    }

    .our-work .page-center .ball-anm {
        top: -45%;
    }

    .our-work .about-wrk .text-cnt {
        margin-left: -30px;
    }

    .our-work .card-stack {
        /* display: flex; */
        flex-direction: column;
        gap: 30px;
        /* position: sticky; */
        /* top: 30px; */
    }

    .our-work .card-stack #card_1 {
        /* padding: 0; */
        /* position: relative; */
    }

    .our-work .card-stack #card_2 {
        /* padding: 0; */
        /* position: relative; */
    }

    .our-work .card-stack #card_3 {
        /* padding: 0; */
        /* position: relative; */
    }

    .our-work .card-stack #card_4 {
        /* padding: 0; */
        /* position: relative; */
        /* position: relative; */
    }

    .our-work .card-stack #card_5 {
        /* padding: 0; */
        /* position: relative; */
    }

    .our-work .work-inner .img-col {
        width: 300px;
        height: 450px;
    }

    .our-work .work-inner .image-sec {
        position: sticky;
        top: 30px;
    }


    .our-work .work-inner .image-sec .card-item:nth-child(4) .text-on-img {
        top: 40%;
    }

    .our-work .work-inner .image-sec .card-item:nth-child(3) .text-on-img {
        top: 40%;
    }

    .our-work .work-inner .image-sec .card-item:nth-child(2) .text-on-img .text-on-img {
        top: 20%;
    }

    .our-work .work-inner .image-sec .card-item:nth-child(2) .text-on-img {
        top: 40%;
    }

    .our-work .work-inner .image-sec .card-item:nth-child(1) .text-on-img {
        top: 40%;
    }
}

@media(max-width:480px) {

    .who-we-are .right-col .about-det .item .num {
        display: none;
    }

    .who-we-are .right-col .item .feat-img {
        display: none;
    }

    .bnr-sec .bnr-inner .ball-anm {
        position: relative;
        margin-left: auto;
        /* margin-right: auto; */
        top: unset;
        right: unset;
    }



    .bnr-sec .bnr-head h2 {
        max-width: 100%;
    }


    .why-us-new .why-us-cnt .bottom .right {
        flex-direction: column;
    }

    .unforgetable {
        min-height: 180px;
    }

}

@media(max-width:390px) {

    .who-we-are .we-are-inner .left-col .ball-anm {
        left: 35%;
    }

    .why-us-new .sec-head .ball-anm {
        left: 50%;
        top: -140%;
    }

    .why-us-new .top .right .item-two {
        gap: 25px;
        padding: 10px;
    }

    .why-us-new .why-us-cnt .top .right .item-one {
        padding: 10px;
    }

    .why-us-new .why-us-cnt .bottom .left .left-inner {
        padding: 10px;
    }

    .our-work .work-inner .img-col {
        width: 270px;
    }


    .our-work .page-center .ball-anm {
        left: 40%;
    }

    .why-us-new .sec-head .ball-anm {
        top: -50%;
    }

    .what_client_say .ball-anm {
        left: 50% !important;
        top: -40% !important;
    }
}


/* Cookie Policy */

.cc-backdrop {
    position: fixed;
    inset: 0;
    display: none;
    background: rgba(0, 0, 0, .35);
    z-index: 9998;
    opacity: 0;
    transition: opacity .25s ease;
}

.cc-backdrop.show {
    display: block;
    opacity: 1;
}

.cookie-consent {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: min(420px, calc(100% - 40px));
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    padding: 30px;
    z-index: 9999;
    transform: translateY(20px);
    opacity: 0;
    transition: transform .28s cubic-bezier(.2, .9, .2, 1), opacity .28s;
    box-shadow: 0 0 32px 0 rgba(34, 34, 34, .05);
    border: 1px solid #000;
}

.cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
}

.cc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.cc-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.1;
}

.cc-close {
    background: transparent;
    border: none;
    font-size: 20px;
    line-height: 1;
    padding: 6px;
    cursor: pointer;
    color: #333;
    border-radius: 6px;
}

.cc-close:focus {
    outline: 2px solid #7aa7ff;
}

.cc-body {
    font-size: 18px;
    color: #333;
    margin-bottom: 24px;
}

.cc-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cc-actions .primary-btn.red:hover {
    background-color: #fb302f;
}

.cc-actions button:focus {
    outline: 2px solid #7aa7ff;
}

.cc-accept {
    /* background: #0b74de; */
    /* color: #fff; */
    /* border-color: rgba(11, 116, 222, .9); */
}

.cc-reject {
    background: #fff;
    color: #111;
    border: 1px solid #ddd;
}

.cc-link {
    color: #0b74de;
    text-decoration: underline;
}

@media (max-width:520px) {
    .cookie-consent {
        right: 10px;
        left: 10px;
        width: auto;
        padding: 14px;
    }
}

@media(max-width:1680px) {
    .what_client_say .client_left {
        width: 35%;
    }

    .what_client_say .client_right {
        width: 65%;
    }

    .what_client_say .client_say_wrapr {
        gap: 100px;
    }

    .what_client_say .client_left h2 {
        font-size: 70px;
        line-height: 1.11538461538;
    }
}

@media(max-width:1024px) {
    .what_client_say .client_left {
        width: 100%;
    }

    .what_client_say .client_right {
        width: 100%;
    }
}

@media(max-width:767px) {
    .why-us-new .top .right .item-two {
        gap: 24px;
        /* flex-direction: column; */
    }

    .what_client_say .client_left h2 {
        font-size: 40px;
    }

    .what_client_say .client_say_wrapr {
        gap: 50px;
    }

    .what_client_say .client_left h2 {
        text-align: left;
        max-width: 50%;
    }

    .what_client_say .ball-anm {
        max-width: 150px;
    }

    .our-work .card-stack {
        gap: 190px;
    }

    .our-work .card-stack #card_1 {
        padding: 0;
    }

    .our-work .card-stack #card_2 {
        padding: 0;
    }

    .our-work .card-stack #card_3 {
        padding: 0;
    }

    .our-work .card-stack #card_4 {
        padding: 0;
    }

    .our-work .card-stack #card_5 {
        padding: 0;
    }

    .our-work .card-stack {
        gap: 200px;
    }

    .our-work .card-stack .card-item .media-1 {
        background-image: url("../assets/images/TCL_HOVER.jpg");
    }

    .our-work .work-inner .card-item .text-on-img {
        opacity: 1;
    }

    .our-work .work-inner .card-item .text-on-img {
        opacity: 1;
    }

    .our-work .card-stack .card-item .media-2 {
        background-image: url("../assets/images/MediaTek_car_Hover.jpg");
    }

    .our-work .card-stack .card-item .media-3 {
        background-image: url("../assets/images/REALME_HOVER.jpg");
    }

    .our-work .card-stack .card-item .media-4 {
        background-image: url("../assets/images/OPPO_Hover.jpg");
    }

    .our-work .card-stack .card-item .media-5 {
        background-image: url("../assets/images/Transforming a fragmented_HOVER.jpg");
    }

    .our-work .card-stack {
        gap: 200px;
    }

    .what_client_say .ball-anm {
        left: 40% !important;
        top: -80% !important;
    }

    section.what_client_say {
        overflow: unset;
    }

    .tabber_sec .content-image img {
        height: 100%;
        object-fit: cover;
    }

    .our_services_section .top_title h2 {
        font-size: 30px;
    }

    .case-study-sec .grid-items.squares img {
        height: 350px;
    }

    .what_client_say .client_left h2 {
        max-width: 50%;
        text-align: left;
    }

    .what_client_say .swiper {
        width: 450px;
    }

    section.what_client_say {
        overflow-x: clip;
    }

    .bnr-sec {
        height: 55vh;
    }

    .bnr-sec .bnr-inner {
        flex-direction: column;
    }

    .bnr-sec .bnr-inner .ball-anm {
        margin-top: 30px;
        max-width: 300px;
    }

    .what_client_say .ball-anm {
        max-width: 150px;
        right: 0%;
        bottom: unset;
        top: -20%;
    }

    .what_client_say .client_left h2 {
        max-width: 50%;
        text-align: left;
    }

    .what_client_say .ball-anm {
        left: 60% !important;
        top: -40% !important;
    }

    .header-inner .menu-bar1,
    .header-inner .menu-bar2,
    .header-inner .menu-bar3 {
        width: 35px;
        margin: 8px 0;
    }

    .outcome.innovate {
        margin-top: 0;
    }

    .header-inner .menu-bar2 {
        width: 20px;
        margin-left: auto;
    }

    .outcome.innovate .inner h1 {
        padding-left: 0;
    }

    .bnr-sec {
        height: 75vh;
    }

    .header-inner .active .menu-bar1 {
        transform: rotate(-45deg) translate(-27px, 5px);
    }

    .header-inner .active .menu-bar3 {
        transform: rotate(45deg) translate(-10px, 10px);
    }

    .our_services_section .top_title h2 {
        font-size: 30px;
    }
}

@media(max-width:575px) {
    .what_client_say .acrd_content img.M_logo_img {
        width: 80px;
        margin-bottom: 0;
    }

    .what_client_say .acrd_content p {
        font-size: 14px;
    }

    .what_client_say .client_right .bottom_cont img {
        width: 50px;
    }

    .what_client_say .client_right p.titl_1 span {
        font-size: 14px;
    }

    .what_client_say .swiper {
        width: 290px;
        height: 400px;
    }

    .what_client_say .client_left h2 {
        font-size: 26px;
    }

    .what_client_say .client_say_wrapr {
        gap: 30px;
    }

    .what_client_say .swiper-slide {
        padding: 15px;
    }

    section.what_client_say .page-center {
        padding-left: 10px;
        padding-right: 10px;
    }

    .what_client_say .acrd_content p {
        font-size: 16px;
    }
}




/* footer css updated new 27 feb */

.footer .footer-inner .right .ind p {
    text-transform: none;
}

.footer .footer-inner>div {
    width: calc(33.33%);
    padding-left: 50px;
    padding-right: 50px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.footer .footer-inner .middle {
    padding-left: 90px;
}

.footer .footer-inner>div:last-child {
    border: none;
}

.footer .footer-inner>div:nth-child(3) {
    padding-left: 90px;
}

@media(max-width:1680px) {
    .footer-inner .left .company-email p {
        font-size: 25px;
    }

    .footer .footer-inner .middle {
        padding-left: 50px;
    }

    .footer .footer-inner>div:nth-child(3) {
        padding-left: 50px;
    }
}

@media(max-width:1440px) and (min-width:1281px) {
    .our-work .page-center .ball-anm {
        max-width: 300px;
        top: -40%;
    }

    .what_client_say .ball-anm {
        bottom: -40%;
        right: -10%;
    }
}

@media(max-width:1280px) {
    .footer-inner .left .social-share ul>li {
        margin-left: 10px;
        margin-right: 10px;
    }

    .footer-inner .left .company-email p {
        font-size: 22px;
    }

    .footer .footer-inner>div {
        width: calc(50%);
    }

    .footer .footer-inner>div:nth-child(3) {
        padding-left: 0;
    }

    .why-us-new .bottom .right .text_gif img {
        max-width: 200px;
    }
}

@media(max-width:840px) {

    .footer .footer-inner .middle {
        padding-left: 0;
        border: none;
    }

    .footer .footer-inner>div:nth-child(1) {
        border: none;
    }

    .footer .footer-inner>div {
        width: 100%;
    }

    .footer .footer-inner .middle {
        padding-right: 0;
    }
}

@media(max-width:575px) {
    .footer-inner .left .social-share ul>li {
        margin-left: 0;
    }

    .footer-inner .left .company-email p {
        font-size: 18px;
    }

    .what_client_say .ball-anm {
        left: 60% !important;
        top: -80% !important;
    }

    .unforgetable .sec-inner .sec-text h2 {
        font-size: 35px;
    }
}


:root {
    --card-height: 40vw;
    --card-margin: 4vw;
    --card-top-offset: 1em;
    --numcards: 5;
    --outline-width: 0px;
}

#cards {
    padding-bottom: calc(var(--numcards) * var(--card-top-offset));
    /* Make place at bottom, as items will slide to that position*/
    margin-bottom: var(--card-margin);
    /* Don't include the --card-margin in padding, as that will affect the scroll-timeline*/
}

#card_1 {
    --index: 1;
}

#card_2 {
    --index: 2;
}

#card_3 {
    --index: 3;
}

#card_4 {
    --index: 4;
}

#card_5 {
    --index: 5;
}

.card {
    position: sticky;
    top: 0;
    padding-top: calc(var(--index) * var(--card-top-offset));
}



/** DEBUG **/

#debug {
    position: fixed;
    top: 1em;
    left: 1em;
}

#debug::after {
    content: " Show Debug";
    margin-left: 1.5em;
    color: white;
    white-space: nowrap;
}

#debug:checked~main {
    --outline-width: 1px;
}


/** PAGE STYLING **/

* {
    /* Poor Man's Reset */
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


main {
    width: 80vw;
    margin: 0 auto;
}

#cards {
    list-style: none;
    outline: calc(var(--outline-width) * 10) solid blue;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(var(--numcards), var(--card-height));
    gap: var(--card-margin);
}

.card {
    outline: var(--outline-width) solid hotpink;
}

.card__content {
    box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.1), 0 1em 2em rgba(0, 0, 0, 0.1);
    background: rgb(255, 255, 255);
    color: rgb(10, 5, 7);
    border-radius: 1em;
    overflow: hidden;

    /* display: grid; */
    grid-template-areas: "text img";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;

    align-items: stretch;
    outline: var(--outline-width) solid lime;
}

.card:hover .text-on-img {
    opacity: 1;
}

.card__content>figure {
    grid-area: img;
    overflow: hidden;
}

.card:hover .text-on-img {
    opacity: 1;
}

.card .card-inner {
    position: relative;
}

.card .text-on-img {
    max-width: 90%;
    position: absolute;
    bottom: 0;
    z-index: 99;
    top: 68%;
    left: 0;
    transform: translate(10%, -50%);
    opacity: 0;
    color: #09ff57;
    transition: all 0.3s ease-in-out;
}

.card .img-col {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: background-image 0.3s ease;
    position: relative;
    /* z-index: 999; */
    border-radius: 10px;
}

/* Our Work Home page Updated */

.our-work .card-stack .card-item .media-1 {
    background-image: url("../assets/images/TCL.jpg")
}

.our-work .card-stack .card-item .media-2 {
    background-image: url("../assets/images/Mediatek_Car.jpg")
}

.our-work .card-stack .card-item .media-3 {
    background-image: url("../assets/images/Realme.jpg")
}

.our-work .card-stack .card-item .media-4 {
    background-image: url("../assets/images/Oppo.jpg")
}

.our-work .card-stack .card-item .media-5 {
    background-image: url("../assets/images/Transforming a fragmented.jpg")
}

/* our work hover images */


#card_1:hover .media-1 {
    background-image: url("../assets/images/TCL_HOVER.jpg");
}

#card_2:hover .media-2 {
    background-image: url("../assets/images/MediaTek_car_Hover.jpg");
}

#card_3:hover .media-3 {
    background-image: url("../assets/images/REALME_HOVER.jpg");
}

#card_4:hover .media-4 {
    background-image: url("../assets/images/OPPO_Hover.jpg");
}

#card_5:hover .media-5 {
    background-image: url("../assets/images/Transforming a fragmented_HOVER.jpg");
}

.media-1 {
    background-image: url("../assets/images/TCL.jpg");
}

#card_1:hover .media-1 {
    background-image: url("../assets/images/TCL_HOVER.jpg");
}

.media-2 {
    background-image: url("../assets/images/Mediatek_Car.jpg");
}

#card_2:hover .media-2 {
    background-image: url("../assets/images/MediaTek_car_Hover.jpg");
}

.media-3 {
    background-image: url("../assets/images/Realme.jpg");
}

#card_3:hover .media-3 {
    background-image: url("../assets/images/REALME_HOVER.jpg");
}

.media-4 {
    background-image: url("../assets/images/OPPO_Hover.jpg");
}

#card_4:hover .media-4 {
    background-image: url("../assets/images/OPPO_Hover.jpg");
}

.media-5 {
    background-image: url("../assets/images/Transforming a fragmented.jpg");
}

#card_5:hover .media-5 {
    background-image: url("../assets/images/Transforming a fragmented_HOVER.jpg");
}

.card__content .card-inner {
    width: 100%;
    height: 100%;
}

/* h3 {
    font-size: 50px;
    font-weight: bold;
    line-height: 1.61111111111;
}

p {
    font-size: 16px;
} */

.our-work .work-inner .img-col {
    width: 100%;
}

.our-work .work-inner .image-sec {
    width: 50%;
}

.our-work .text-sec-out {
    width: 50%;
}

.card__content {
    width: 55%;
}


.card-inner:hover .text-on-img {
    opacity: 1;
}

.card-inner {
    position: relative;
}

.card-inner:hover .text-on-img {
    opacity: 1;
}

.text-on-img {
    pointer-events: none;
    /* optional if text doesn't need clicking */
}

.our-work .about-wrk .img_real {
    display: none;
}

@media (max-width: 1680px) {
    .our-work .text-sec-out {
        width: 40%;
    }

    .our-work .work-inner .image-sec {
        width: 55%;
    }
}

@media (max-width: 1280px) {
    .our-work .text-sec-out {
        width: 50%;
    }

    .our-work .work-inner .image-sec {
        width: 80%;
    }
}

@media (max-width: 767px) {
    .card__content {
        width: 100%;
    }

    .our-work .work-inner .image-sec {
        width: 100%;
    }

    .our-work .text-sec-out .card__content {
        width: 100%;
    }

    .our-work .work-inner .img-col {
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .our-work .work-inner .image-sec .text-on-img {
        position: absolute;
        top: 50%;
    }

    .why-us-new .why-us-cnt .bottom .right {
        flex-direction: column;
    }

    .our-work .about-wrk .img_real {
        display: block;
        padding: 20px 0;
    }

    .our-work .about-wrk .img_real img {
        width: 100%;
        object-fit: cover;
        width: 360px;
    }

    .our-work .about-wrk .text-cnt {
        display: none;
    }

    .our-work {
        display: none !important;
    }
}