

@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&display=swap");
html {
    overflow-x: hidden;
}

.home-overflow {
    overflow-x: visible;
}

body {
    overflow-x: hidden;
    background: #E8EFF4;
}

.white-theme {
    background: #E8EFF4;
}



a {
    text-decoration: none !important;
}

p {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
}

.white-theme p {
    color: rgb(0 0 0 / 70%);
    font-weight: 400;
    text-transform: capitalize;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}




/*--------------- header ---------------*/

.header-area {
    padding: 20px 0px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.logo a {
    display: inline-block;
}

.logo a img {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    width: 120px;
}

.stick {
    padding: 15px 0px;
    margin: 0px;
    background: #1a1a1a;
}

.stick .logo a img {
    width: 110px;
}


/*-----*/

.main-menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-menu ul {
    margin: 0;
}

.main-menu ul li {
    margin-right: 25px;
    display: inline-block;
}

.main-menu ul li a {
    color: rgb(255 255 255 / 60%);
    font-weight: 300;
    font-size: 15px;
    padding: 0;
    transition: all 0.2s ease-In;
}

.main-menu ul li a:hover {
    color: #fff;
}

.arrow-link img {
    width: 12px;
    opacity: 0.6;
    transform-origin: 0% 50%;
    transition: all 0.2s ease-In;
}

.arrow-link:hover img {
    opacity: 1;
    transform: rotate(-45deg);
}

/*-----*/

.white-theme .main-menu ul li a {
    color: rgb(0 0 0 / 60%);
}

.white-theme .main-menu ul li a:hover {
    color: #000;
}

.white-theme .arrow-link img {
    opacity: 0.4;
    filter: brightness(0) saturate(100%);
}

.white-theme .arrow-link:hover img {
    opacity: 0.8;
}

/*-----*/


.menu-button span {
    background: #fff;
    border-radius: 10px;
    height: 2px;
    margin: 3px 0;
    transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.menu-button:hover span {
    background: #ffa011;
}

.menu-button span:nth-of-type(1) {
    width: 50%;
}

.menu-button span:nth-of-type(2) {
    width: 100%;
}

.menu-button span:nth-of-type(3) {
    width: 75%;
}

.menu-button input[type="checkbox"] {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    z-index: 1;
    cursor: pointer;
}

.menu-button input[type="checkbox"]:checked~span:nth-of-type(1) {
    transform-origin: bottom;
    transform: rotatez(45deg) translate(4px, 0px);
}

.menu-button input[type="checkbox"]:checked~span:nth-of-type(2) {
    transform-origin: top;
    transform: rotatez(-45deg);
}

.menu-button input[type="checkbox"]:checked~span:nth-of-type(3) {
    transform-origin: bottom;
    width: 50%;
    transform: translate(14px, -3px) rotatez(45deg);
} */

/*-------------------*/



.element-effectimage {
    transition: transform 0.5s;
    -webkit-transition: transform 0.5s;
    -moz-transition: transform 0.5s;
    -o-transition: transform 0.5s;
}

.element-speedchange {
    perspective: 60px;
}

.vector-bounce {
    animation: bounce-1 2.7s ease infinite;
}

@keyframes bounce-1 {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}


/*-----------------*/

/*-----------------*/


/*-----------------*/


/*--------------- footer ---------------*/

.footer {
    position: relative;
    margin-top: 80px;
    padding-bottom: 15px;
    overflow: hidden;
}

.footer-talk {
    border-bottom: 1px solid rgb(217 217 217 / 40%);
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.footer-talk .heading {
    text-transform: uppercase;
}

.footer-talk p {
    width: 55%;
    margin: 20px auto;
    text-transform: capitalize;
}

.footer-talk label {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    display: block;
    margin: 20px 0px 0px;
}

.footer-talk label span {
    font-weight: 400;
}

.footer-link ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-link ul li {
    margin-right: 22px;
}

.footer-link ul li:last-child {
    margin-right: 0px;
}

.footer-link ul li a {
    color: rgb(255 255 255 / 60%);
    font-weight: 300;
    font-size: 14px;
    transition: all 0.2s ease-In;
}

.footer-link ul li a:hover {
    color: #fff;
}

.footer-social {
    text-align: right;
}

.footer-social ul {
    margin: 0;
}

.footer-social ul li {
    display: inline-block;
    transition: all 800ms cubic-bezier(0, 0, 0.58, 1);
}

.footer-social ul li a {
    transition: all 0.2s ease-In;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background: #242424;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 2px;
    font-size: 12px;
    border: 1px solid rgb(255 255 255 / 12%);
}

.footer-social ul li:nth-child(1) a:hover {
    background: #3b579d;
    border-color: #3b579d;
}

.footer-social ul li:nth-child(2) a:hover {
    background: #d62976;
    border-color: #d62976;
}

.footer-social ul li:nth-child(3) a:hover {
    background: #0f1419;
    border-color: #0f1419;
}

.footer-social ul li:nth-child(4) a:hover {
    background: #006699;
    border-color: #006699;
}

.footer-logo img {
    width: 110px;
}

.footer-blur {
    position: absolute;
    bottom: 0;
    right: -150px;
    width: 320px;
    filter: blur(45px);
    z-index: -1;
}

/*-----*/


/*--------------- ui/ux ---------------*/

.uxpage-head {
    padding-top: 10px;
    position: relative;
}

.uxpage-head .heading {
    margin-bottom: 12px;
}

.uxpage-head .img-responsive {
    animation-name: bounce-2;
    animation-timing-function: ease;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}


.ux-head-blur {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.9;
}

.ux-number {
    padding: 10px 0px 80px;
}

.ux-number .number-count-item {
    margin-top: 30px;
}

.ux-mun-blur {
    position: absolute;
    top: -30px;
    left: 0;
    width: 90px;
    filter: blur(90px);
    opacity: 0.9;
    z-index: -1;
}

.uxpage-testimonial {
    position: relative;
}

.ux-testi-slider {
    border-radius: 30px;
    padding: 60px 60px 90px;
    background: linear-gradient( to right, transparent 30%, rgb(255 255 255 / 6%) 60%);
}

.ux-testi-slider .slick-dots {
    bottom: 60px;
}

.ux-testi-box {
    text-align: center;
}


.ux-testi-blur {
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    width: 250px;
    filter: blur(60px);
    z-index: -1;
    transform: translate(-50%, -50%);
    opacity: 0.8;
}

.efficient-blur {
    position: absolute;
    top: 0;
    right: -90px;
    width: 280px;
    filter: blur(40px);
    z-index: -1;
    opacity: 0.7;
}

.uxpage-stage {
    position: relative;
}

.uxstage-head {
    text-align: center;
}

.uxstage-head p {
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    margin: 10px auto 0px;
    width: 90%;
}



/*--------------- brand identity ---------------*/

 .brandhead {
    padding-bottom: 30px;
}

.brandhead .heading {
    font-size: 46px;
}

.brandhead-image {
    display: block;
    max-width: 100%;
    height: auto;
    width: 90%;
    float: right;
}

.brand-business .align-items-center {
    background: rgb(0 0 0 / 30%);
}

.brandpage-startup {
    position: relative;
    text-align: center;
    margin-bottom: 80px;
} 

.brandpage-startup p {
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    margin: 10px auto 0px;
    width: 90%;
}

.brandpage-rebrand {
    position: relative;
}

.brandpage-rebrand .heading {
    font-size: 48px;
}

.rebrand-box {
    position: relative;
    border: 1px solid rgb(255 255 255 / 15%);
    background: #242424;
    background-clip: padding-box;
    border-radius: 20px;
    padding: 30px;
    display: inline-block;
    margin-top: 30px;
    width: 100%;
    min-height: 271px;
}

.rebrand-box:after {
    content: "";
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    background: transparent;
    z-index: -1;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.2s ease-In;
}

.rebrand-box:hover:after {
    opacity: 1;
    background: linear-gradient(to bottom, #ff3ba1 0%, #ffa011 80%);
}

.rebrand-box p {
    margin-bottom: 20px;
}

.rebrand-box-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.rebrand-box-head h4 {
    color: #fff;
    font-size: 29px;
    margin: 0;
    text-transform: capitalize;
}

.rebrand-box-head .h4 {
    color: #fff;
    font-size: 29px;
    margin: 0;
    text-transform: capitalize;
}

.rebrand-box-head img {
    width: 50px;
}

.rebrand-blur {
    position: absolute;
    top: 50%;
    left: -100px;
    width: 280px;
    filter: blur(65px);
    z-index: -1;
    transform: rotate(118deg) translateX(-50%);
    opacity: 0.8;
}

.brand-contact {
    margin-bottom: 80px;
}

.brandpage-award {
    padding-top: 80px;
}

.brandaward-blur-1 {
    position: absolute;
    top: 0px;
    right: -20px;
    width: 200px;
    filter: blur(60px);
    z-index: -1;
    opacity: 0.9;
}

.brandaward-blur-2 {
    position: absolute;
    bottom: 0px;
    left: -30px;
    width: 180px;
    filter: blur(60px);
    z-index: -1;
    opacity: 0.9;
    transform: rotateY(180deg);
}

.brandgrowth-blur {
    position: absolute;
    bottom: 100px;
    right: 0;
    width: 100px;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.7;
}


.ecomhead-blur {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 90px;
    filter: blur(60px);
    opacity: 0.9;
    z-index: -1;
}

.ecomm-work-para {
    margin: 0;
    line-height: 1.8;
}

.ecommwork-slider {
    margin-right: -120px;
    margin-top: 30px;
    padding-bottom: 35px;
}

.ecommwork-slider .slick-dots {
    text-align: left;
    padding-left: 15px;
}

.ecommwork-box {
    margin: 0px 15px;
}

.ecommwork-box div {
    overflow: hidden;
    border-radius: 20px;
}

.ecommwork-box div img {
    transition: transform 0.4s ease-in-out 0s;
}

.ecommwork-box:hover img {
    transform: scale(1.03);
}

.ecommwork-box h4 {
    color: #000;
    font-size: 22px;
    font-weight: 400;
    margin: 15px 0px 6px;
}

.ecommwork-box .h4 {
    color: #000;
    font-size: 22px;
    font-weight: 400;
    margin: 15px 0px 6px;
}

.ecommwork-box p {
    margin-bottom: 15px;
}

.ecommwork-box span {
    color: rgb(0 0 0 / 40%);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    display: flex;
    align-items: center;
    transition: all 0.2s ease-In;
}

.ecommwork-box span img {
    width: 12px;
    transform-origin: 0% 50%;
    transition: all 0.2s ease-In;
    opacity: 0.4;
    filter: brightness(0) saturate(100%);
    margin-left: 3px;
}

.ecommwork-box:hover span {
    color: #000;
}

.ecommwork-box:hover span img {
    opacity: 0.8;
    transform: rotate(-45deg);
}

.ecomwork-blur-1 {
    position: absolute;
    top: 50%;
    left: 45%;
    width: 280px;
    filter: blur(40px);
    z-index: -1;
    transform: translate(-50%, -50%) rotate(-70deg);
    opacity: 0.7;
}

.ecomwork-blur-2 {
    position: absolute;
    bottom: 0px;
    right: -50px;
    width: 200px;
    filter: blur(40px);
    z-index: -1;
    opacity: 0.6;
}

.ecomm-transform {
    background: #E8EFF4;
    padding: 30px 0px 60px;
    text-align: center;
}

.ecomm-transform img {
    width: 60%;
    margin: 0 auto 20px;
}

.ecomm-service {
    position: relative;
    text-align: right;
}

.ecomm-service .container {
    margin: 0 auto;
    text-align: left;
}

.ecomm-service .heading {
    font-size: 50px;
}

.ecomm-service p {
    margin: 10px 0px 0px;
    line-height: 1.8;
    width: 90%;
}

.ecomm-service img {
    width: 50%;
}

.Eservice-area-2 {
    text-align: left;
    margin: 20px 0px;
}

.Eservice-area-2 img {
    width: 47%;
}

.Eservice-area-3 img {
    mix-blend-mode: darken;
}

.Eservice-blur-1 {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 190px !important;
    filter: blur(50px);
    z-index: -1;
    opacity: 0.7;
}

.Eservice-blur-2 {
    position: absolute;
    bottom: -50px;
    left: -20px;
    width: 250px !important;
    filter: blur(50px);
    z-index: -1;
    opacity: 0.8;
}

.ecomm-approach {
    position: relative;
    margin: 80px 0px;
}

.ecomm-approach .heading br {
    display: none;
}

.ecomm-approach-box {
    margin-top: 40px;
}

.ecomm-approach-box img {
    width: 65px;
}

.ecomm-approach-box h4 {
    color: #000;
    font-size: 22px;
    font-weight: 400;
    margin: 15px 0px 10px;
}

.ecomm-approach-box .h4 {
    color: #000;
    font-size: 22px;
    font-weight: 400;
    margin: 15px 0px 10px;
}

.ecomm-approach-box p {
    margin: 0px;
}

.approach-blur {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 220px;
    filter: blur(60px);
    z-index: -1;
    opacity: 0.8;
}

.ecomm-expertise {
    position: relative;
    padding-bottom: 80px;
}

.Eexpertise-head {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-right: 55px;
}

.Eexpertise-head p {
    margin: 15px 0px 0px;
}

.Eexpertise-head img {
    width: 90%;
    margin: 0 auto;
}

.Eexpertise-box {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgb(2 2 2 / 20%);
}

.Eexpertise-box:nth-child(1) {
    margin-top: 0px;
}

.Eexpertise-box h4 {
    color: #000;
    font-size: 22px;
    font-weight: 400;
    text-transform: capitalize;
    display: flex;
    align-items: center;
}

.Eexpertise-box h4 span {
    width: 10px;
    height: 10px;
    background: linear-gradient(to right, #ff3ba1 0%, #ffa011 80%);
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.Eexpertise-box p {
    margin-bottom: 6px;
}

.whitearrow-link {
    color: rgb(0 0 0 / 40%);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    display: inline-block;
    transition: all 0.2s ease-In;
    line-height: 1;
}

.whitearrow-link img {
    width: 11px;
    transform-origin: 0% 50%;
    transition: all 0.2s ease-In;
    opacity: 0.4;
    filter: brightness(0) saturate(100%);
    margin-left: 1px;
    vertical-align: baseline;
}

.whitearrow-link:hover {
    color: #000;
}

.whitearrow-link:hover img {
    opacity: 0.8;
    transform: rotate(-45deg);
}

.Eexpert-blur-1 {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 220px;
    filter: blur(70px);
    z-index: -1;
    transform: rotateY(180deg);
    opacity: 0.9;
}

.Eexpert-blur-2 {
    position: absolute;
    bottom: -100px;
    right: 0;
    width: 100px;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.9;
}

.ecomm-challenge .heading {
    width: 60%;
    font-size: 50px;
}

.echallenge-blur {
    position: absolute;
    top: 50%;
    left: 0;
    width: 90px;
    filter: blur(60px);
    opacity: 0.8;
    z-index: -1;
    transform: translateY(-50%);
}

.ecomm-contact {
    position: relative;
    margin: 80px 0px;
}

.ecomm-contact .row {
    background: url(../img/Econtact-bg.webp) no-repeat;
    background-size: cover;
    margin: 0;
    border-radius: 20px;
    padding: 60px 0px;
    justify-content: center;
    text-align: center;
}

 .ecomm-contact .heading {
    color: #fff;
    font-size: 50px;
    text-transform: none;
}

.ecomm-contact p {
    color: #fff;
    margin: 15px 0px 30px;
}

.Econtact-blur {
    position: absolute;
    top: 0;
    right: -80px;
    width: 250px;
    filter: blur(40px);
    z-index: -1;
    opacity: 0.7;
}

.ecomm-client {
    position: relative;
}

.ecomm-client .heading {
    font-size: 44px;
    width: 85%;
    margin: 0 auto;
}

.ecomlogo-slider {
    margin: 50px 0px;
}

.ecomlogo-box {
    margin: 0px 10px;
}

.ecomlogo-box img {
    width: 64%;
    margin: 0 auto;
}

.Eclient-image {
    mix-blend-mode: multiply;
}

.Eclient-blur {
    position: absolute;
    top: 20px;
    left: 0px;
    width: 220px;
    filter: blur(60px);
    z-index: -1;
    opacity: 0.8;
    transform: rotateY(180deg);
}

.ecomm-digital {
    position: relative;
    margin: 80px 0px;
}

.Edigital-para {
    margin: 15px auto 20px;
    width: 60%;
    text-align: center;
}

.ecomm-digital-box {
    margin-top: 50px;
}

.ecomm-digital-box img {
    width: 64px;
}

.ecomm-digital-box h4 {
    color: #000;
    font-size: 22px;
    font-weight: 400;
    margin: 15px 0px 10px;
}

.ecomm-digital-box .h4 {
    color: #000;
    font-size: 22px;
    font-weight: 400;
    margin: 15px 0px 10px;
}

.ecomm-digital-box p {
    margin: 0px;
}

.Edigital-blur {
    position: absolute;
    top: 20px;
    right: 0px;
    width: 220px;
    filter: blur(60px);
    z-index: -1;
    opacity: 0.8;
}

.ecomm-advantage {
    position: relative;
    padding: 80px 0px;
}

.Eadvantage-sub {
    margin: 15px auto 10px;
    width: 50%;
    text-align: center;
}

.Eadvantage-box {
    box-shadow: 0 2px 16px 4px rgba(40, 44, 63, 0.05);
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    transition: all 0.2s ease-In;
    min-height: 246px;
}

.Eadvantage-box:hover {
    box-shadow: 0 2px 16px 4px rgba(40, 44, 63, 0.1);
    transform: translateY(-4px);
}

.Eadvantage-box img {
    width: 60px;
}

.Eadvantage-box h4 {
    color: #000;
    font-size: 30px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 12px 0px 6px;
}

.Eadvantage-box .h4 {
    color: #000;
    font-size: 30px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 12px 0px 6px;
}

.Eadvantage-box p {
    margin: 0;
}

.Eadvantage-blur-1 {
    position: absolute;
    bottom: -100px;
    right: 0;
    width: 80px;
    filter: blur(60px);
    z-index: -1;
    opacity: 0.9;
}

.Eadvantage-blur-2 {
    position: absolute;
    top: -20px;
    left: 0;
    width: 90px;
    filter: blur(60px);
    opacity: 0.7;
    z-index: -1;
}
