 /* ==== HEADER ==== */

 header.header {
   position: absolute;
   top: 0;
   right: 0;
   left: 0;
   z-index: 99;
 }

 .main-header {
   padding: 20px 0 0;
   position: absolute;
   top: 0;
   right: 0;
   left: 0;
   z-index: 99;
 }

 .logo-wrapper {
   width: 180px;
 }

 /* ==== HERO ==== */

 .hero {
   background-color: var(--primaryColor);
 }

 .hero-inner h1 {
   color: var(--whiteColor);
 }

 .hero-wrapper {
   height: 100vh;
 }

 .hero-content {
   width: 60%;
 }

 .hero-content p {
   margin-top: 30px;
   max-width: 900px;
 }

 .hero-inner {
   background-image: url('../images/img/hero-image.webp');
   background-size: 45%;
   background-repeat: no-repeat;
   background-position: center right;
   z-index: 2;
   display: flex;
   justify-content: space-between;
   align-items: center;
   height: 100%;
   position: relative;
 }



 .hero-inner .radial-circle {
   top: -150px;
   right: 360px;
 }

 /*.hero-img {*/
 /*  position: absolute;*/
 /*  right: -40px;*/
 /*  top: 69px;*/
 /*  z-index: -1;*/
 /*}*/

 /*.hero-img img {*/
 /*  width: 800px;*/
 /*}*/

 /* ==== CORE SERVICES ==== */

 .core-services {
   padding-bottom: 30px;
 }

 .core-services-inner {
   z-index: 1;
   position: relative;
   text-align: center;
 }

 .core-services-inner .radial-circle {
   bottom: 350px;
   left: -250px;
 }

 .core-services-inner>*:not(:last-child) {
   margin-bottom: 40px;
 }

 .core-services-inner>p {
   font-size: 20px;
   line-height: 1.5;
   max-width: 1021px;
   margin: 0 auto;
 }

 /* ==== SERVICES CARDS ==== */

 section.services {
   position: relative;
   padding: 40px;
   z-index: 1;
   background-color: var(--primaryColor);
 }

 .services .radial-ball {
   right: -10%;
   bottom: -10%;
 }

 .services .services-card {
   padding: 130px 30px 50px 30px;
   position: relative;
   border-radius: 20px;
   background-color: #292448;
   transition: all 500ms linear;
   min-height: 100%;
 }

 .services-card-inner a {
   width: 100%;
   height: 100%;
   display: block;
 }

 .icon-services {
   position: absolute;
   top: 50px;
   right: 30px;
   transition: all 500ms linear;
 }

 .services-card h3 {
   text-transform: uppercase;
   font-size: 45px;
   letter-spacing: -2px;
 }

 .services .services-card:hover {
   background-color: var(--cardHoverColor);
   box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
 }

 .services .services-card:hover .icon-services {
   top: 10px;
   right: 10px;
 }

 /*==== TREND ====*/

 section.trend {
   background-color: var(--primaryColor);
   padding: 80px 0;
   position: relative;
   z-index: 1;
 }

 section.trend .radial-circle {
   inset: 50%;
   transform: translate(-50%, -50%);
 }

 .trend-inner {
   text-align: center;
   position: relative;
 }

 .trend-inner h3 {
   font-size: 65px;
   line-height: 1;
   font-weight: 500;
 }

 .trend-inner h2 {
   font-size: 90px;
   margin-bottom: 50px;
   line-height: 1;
 }

 .trend-inner p {
   max-width: 65%;

   margin: 0 auto;
 }

 .trend-inner p:first-of-type {
   margin-bottom: 30px;
 }

 .trend-image-wrapper {
   position: absolute;
   display: flex;
   justify-content: space-between;
 }

 .trend-image img {
   width: 100px;
   filter: brightness(0) invert(1);
 }



 .trend-inner .trend-image-wrapper:nth-child(1) {
   top: -35px;
   width: 90%;
   left: 50%;
   transform: translateX(-50%);
 }

 .trend-inner .trend-image-wrapper:nth-child(2) {
   bottom: 0;
   width: 100%;
   left: 50%;
   transform: translateX(-50%);
 }

 .trend-image {
   width: 168px;
   height: 180px;
   border-radius: 20px;
   display: grid;
   place-content: center;
 }

 /*==== MARQUEE ====*/

 section.marquee-ribbons {
   background-color: var(--primaryColor);
   padding: 80px 0;
 }

 .marquee {
   z-index: 1;
   color: #000000;
   font-size: 23px;
   font-weight: 600;
   line-height: 1.5;
   height: 60px;
   overflow: hidden;
   position: relative;
   width: 150vw;
   background-color: #fff;
 }

 .marquee img {
   object-fit: cover;
   max-height: 150px;
   margin: 0 25px;
 }

 .track {
   height: 100%;
   overflow: hidden;
   padding: 12px 0 10px;
   position: absolute;
   white-space: nowrap;
 }

 .track .text {
   animation: marquee 5000ms linear infinite;
   align-items: center;
   display: inline-flex;
   will-change: transform;
 }

 .track .text.-r {
   animation-name: marquee-r;
 }

 .track .text.-twox {
   animation-duration: 5000ms;
 }

 .marquee-ribbons .marquee:nth-child(1) {
   transform: rotateZ(-2.67deg);
   left: -5px;
 }

 .marquee-ribbons .marquee:nth-child(2) {
   box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
   transform: rotateZ(5.07deg);
   left: -14px;
 }

 .portfolio-text {
   text-align: center;
   display: grid;
   grid-template-columns: 1fr;
   grid-template-rows: 1fr;
   grid-column-gap: 0px;
   grid-row-gap: 0px;
   align-items: center;
 }

 .portfolio-text h1 {
   grid-area: 1 / 1 / 2 / 2;
 }

 .portfolio-text .pixlency-badge {
   grid-area: 1 / 1 / 2 / 2;
 }

 .portfolio-text .stroke-text {
   font-size: 180px;
 }

 /* === PORTFOLIO SLIDER  === */

 section.portfolio {
   padding: 80px 0;
 }

 .portfolio-inner {
   max-width: 1300px;
   margin: 0 auto;
 }

 .portfolio-inner .slider-container img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }

 .main-slider .port-main {
   border-radius: 33px;
   border: 4px solid #fff;
   overflow: hidden;
 }

 .thumbnail-slider .port-thumbs {
   border: 4px solid #fff;
   overflow: hidden;
   border-radius: 33px;
   margin-bottom: 20px;
 }

 .thumbnail-slider .port-thumbs:last-child {
   margin-bottom: 0;
 }

 .slider-container {
   display: flex;
   height: 85vh;
   overflow: hidden;
   gap: 40px;
 }

 .thumbnail-slider {
   width: 30%;
   height: 100%;
   /* margin-right: 10px; */
   /* padding: 25px; */
 }

 .main-slider {
   width: 70%;
   height: 100%;
 }

 .port-thumbs.slick-slide.slick-current.slick-active {
   margin-top: 0;
 }

 .main-slider .slick-list.draggable,
 .thumbnail-slider .slick-list.draggable {
   height: 100% !important;
 }

 .main-slider .slick-list.draggable .slick-track {
   height: 100%;
 }

 .slick-slide {
   margin: 0 10px;
 }

 .slick-prev,
 .slick-next {
   display: none;
 }

 /*=== BLOGS ====*/

 section.blogs {
   padding: 80px 0;
   position: relative;
   z-index: 1;
 }

 section.blogs .radial-ball {
   left: -13%;
   top: -17%;
 }

 .blog-card {
   height: 420px;
 }

 .blogs-inner {
   text-align: center;
 }

 .blogs-inner .stroke-text {
   font-size: 150px;
   margin-bottom: -75px;
 }

 .blog-img {
   border-radius: 33px;
   overflow: hidden;
   height: 270px;
 }

 .blog-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center;
 }

 .blog-content {
   padding-top: 20px;
   padding-left: 10px;
 }

 .blog-content h4 {
   text-align: left;
   font-size: 20px;
   font-weight: 700;
   line-height: 1.5;
   color: #fff;
 }

 .blog-btn {
   margin-top: 50px;
 }

 /* === TESTIMONIAL === */

 .testimonial {
   padding: 80px 0;
 }

 .testimonial-inner {
   max-width: 1350px;
   border-radius: 30px;
   background-color: #3d3859;
   margin: 0 auto;
 }



 .testimonial-item {
   padding: 50px;
 }

 .testimonial-content h2 {
   font-size: 40px;
   font-weight: 700;
   line-height: 1.5;
   text-align: center;
   margin-bottom: 40px;
 }

 .testimonial-content p {
   font-size: 26px;
   font-weight: 400;
   line-height: 1.5;
   text-align: center;
   max-width: 70%;
   margin: 0 auto;
 }

 .testimonial-info {
   margin-top: 30px;
 }

 .testimonial-info h3 {
   font-size: 22px;
   font-weight: 700;
   line-height: 1.2;
   text-align: center;
 }

 .testimonial-info h4 {
   font-size: 18px;
   font-weight: 400;
   line-height: 1.2;
   text-align: center;
   color: #868686;
 }

 .testimonial-inner button.slick-arrow {
   border: none;
   background: none;
 }

 .testimonial-inner button.slick-arrow {
   position: absolute;
   z-index: 99;
   top: 50%;
   transform: translate(-50%);
 }

 .testimonial-inner button.slick-prev.slick-arrow {
   left: 50px;
 }

 .testimonial-inner button.slick-next.slick-arrow {
   right: 50px;
 }

 .testimonial-inner button.slick-arrow i {
   font-size: 28px;
   color: #f8f8f8;
 }

 /* === PARTNER === */
 section.partner {
   position: relative;

   padding: 80px 0;
 }

 section.partner .radial-circle {
   top: -50%;
   left: -10%;
 }


 .partner-img {
   position: absolute;
   right: 100px;
   top: -30px;
   z-index: -1;
   opacity: 0.7;
   animation: slowShake 6s ease-in-out infinite;
   width: 550px;
 }


 .partner-title h2 {
   font-size: 50px;
   font-weight: 700;
   line-height: 1.5;
 }

 .partner-content h3 {
   font-size: 26px;
   font-weight: 600;
   line-height: 1.5;
   text-align: left;
 }

 .partner-content p {
   font-size: 18px;
   font-weight: 400;
   line-height: 1.5;
   text-align: left;
 }

 .grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   grid-template-rows: repeat(2, 1fr);
   column-gap: 85px;
 }

 .partner-title {
   grid-column: 1/ 4;
 }

 .grid .partner-content:nth-of-type(3),
 .grid .partner-content:nth-of-type(5) {
   grid-column: 2/ 4;
 }

 .grid .partner-content:nth-of-type(3) p,
 .grid .partner-content:nth-of-type(5) p {
   max-width: 518px;
 }

 /* === FAQ's === */

 .faqs {
   padding: 80px 0;
 }

 .faqs-content h2 {
   font-size: 65px;
   font-weight: 700;
   line-height: 1.2;
 }

 .faqs-content p {
   margin: 20px 0 40px;
   font-size: 18px;
   font-weight: 400;
   line-height: 1.5;
   text-align: left;
   max-width: 506px;
 }

 .px-accordion .px-accordion-item {
   background-color: var(--accordionColor);
   border: none;
   border-radius: 7px;
   margin-bottom: 10px;
 }

 .px-accordion .px-accordion-btn {
   display: flex;
   justify-content: space-between;
   border: none;
   background: none;
   outline: none;
   text-align: left;
   width: 100%;
   position: relative;
   padding: 0;
   cursor: pointer;
   padding: 25px 20px;
 }

 .px-accordion .px-accordion-item button .px-accordion-title {
   font-size: 20px;
   font-weight: 700;
   line-height: 21.4px;
   text-align: left;
   cursor: pointer;
   color: var(--whiteColor);
 }

 .px-accordion .px-accordion-btn .px-accordion-icon {
   position: absolute;
   width: 27px;
   height: 27px;
   right: 20px;
   top: 50%;
   transform: translateY(-50%);
   transition: all 0.4s ease-in-out;
 }

 .px-accordion-btn[aria-expanded="true"] .px-accordion-icon {
   transform: translateY(-50%) rotate(135deg);
 }

 .px-accordion .px-accordion-content {
   opacity: 0;
   max-height: 0;
   overflow: hidden;
   transition: opacity 300ms linear, max-height 300ms linear;
   will-change: opacity, max-height;
 }

 .px-accordion #px-accordion-button[aria-expanded="true"]+.px-accordion-content {
   opacity: 1;
   max-height: 9em;
   transition: all 300ms linear;
   will-change: opacity, max-height;
 }

 .px-accordion .px-accordion-content p {
   font-size: 16px;
   font-weight: 400;
   line-height: 1.4;
   text-align: left;
   padding: 0 20px 25px;
   margin: 0;
 }

 /* Footer */

 footer.footer {
   padding: 80px 0 20px;
   background-color: var(--primaryColor);
   overflow: hidden;
 }

 .footer-inner {
   position: relative;
   z-index: 1;
 }

 .footer-inner .radial-circle:nth-child(1) {
   left: -20%;
   bottom: -70%;
 }

 .footer-inner .radial-circle:nth-child(2) {
   right: -160px;
   bottom: -268px;
 }

 .footer-brand {
   max-width: 330px;
 }

 .lets-chat h2 {
   font-size: 44px;
   font-weight: 700;
   line-height: 1.2;
   text-align: left;
   color: #ffffff;
 }

 /*.lets-chat p {*/
 /*  font-family: var(--fontGreyQo);*/
 /*  font-size: 120px;*/
 /*  font-weight: 400;*/
 /*  line-height: 1.2;*/
 /*  text-align: left;*/
 /*  color: #4eca71;*/
 /*}*/

 .footer-items h3,
 .get-in-touch h3 {
   font-size: 19px;
   font-weight: 700;
   line-height: 1.1;
   text-align: left;
   color: #fff;
 }

 .footer-brand a {
   margin: 0 0 20px;
 }

 .news-letter.footer-items ul {
   padding: 0px;
 }

 .news-letter.footer-items ul li {
   margin-top: 25px;
 }

 .news-letter.footer-items ul li a {
   font-size: 17px;
   font-weight: 500;
   line-height: 1.5;
   text-align: left;
   color: #fff;
 }

 .copyright-links {
   display: flex;
   justify-content: flex-end;
   align-items: center;
   gap: 10px;
 }

 .vl {
   border-right: 1px solid white;
   height: 25px;
 }

 .copyright-links a {
   font-size: 15px;
   font-weight: 400;
   line-height: 1.2;
   text-decoration: underline !important;
   color: var(--whiteColor);
 }

 .copyright {
   font-size: 15px;
   font-weight: 400;
   line-height: 1.2;
   color: var(--whiteColor);
 }

 .copyright-links a:nth-child(1)::after {
   content: "";
   width: 1px;
   background-color: var(--whiteColor);
   display: block;
   height: 100%;
 }

 span.divider {
   display: inline-block;
   background: var(--whiteColor);
   width: 1px;
   height: 100%;
   margin: 0 10px;
 }

 .get-in-touch a {
   font-size: 19px;
   font-weight: 400;
   line-height: 1;
   text-align: left;
   color: #fff;
   text-decoration: none;
 }

 ul.footer-list {
   list-style: none;
   padding: 0;
   margin-top: 25px;
 }

 ul.footer-list li {
   margin-bottom: 20px;
 }

 /*ul.footer-list li .footer-links {*/
 /*  font-size: 15px;*/
 /*  font-weight: 400;*/
 /*  line-height: 1;*/
 /*  text-align: left;*/
 /*  color: #fff;*/
 /*}*/

 .footer-links {
   position: relative;
   overflow: hidden;
   display: block;
   padding: 0;
 }

 .footer-links span {
   display: block;
   transition: transform 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55),
     -webkit-transform 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
 }

 .footer-links:after {
   position: absolute;
   top: 100%;
   left: 0;
   right: 0;
   content: attr(data-hover);
   display: inline;
   -webkit-transition: top 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
   transition: top 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
 }

 .footer-links:hover {
   color: var(--greenColor) !important;
 }

 .footer-links:hover span {
   color: var(--greenColor) !important;
   -webkit-transform: translateY(-100%);
   transform: translateY(-100%);
 }

 .footer-links:hover:after {
   top: 0;
 }

 .get-in-touch.footer-items {
   margin-bottom: 45px;
 }

 .footer-brand p {
   font-size: 15px;
   font-weight: 400;
   line-height: 1.3;
   text-align: left;
   color: #fff;
 }

 .footer-items {
   max-width: fit-content;
   margin: 0 auto;
 }

 /*==== PRELOADER CSS ====*/

 #loading-screen {
   width: 100vw;
   height: 100vh;
   position: fixed;
   background: var(--primaryColor);
   z-index: 1000;
 }

 #loading-screen .txt {
   color: #666;
   text-align: center;
   top: 40%;
   position: relative;
   text-transform: uppercase;
   letter-spacing: 0.3rem;
   font-weight: bold;
   line-height: 1.5;
   background: transparent;
   padding: 0;
 }

 /*==== SERVICES ====*/

 .innerpages-inner {
   height: 80vh;
   display: flex;
   position: relative;
   align-items: center;
   z-index: 1;
 }

 .innerpages-content {
   text-align: left;
 }

 .innerpages-content h4 {
   font-size: 30px;
   font-weight: 400;
   line-height: 1.5;
   color: var(--greenColor);
   text-transform: capitalize;
   letter-spacing: 2px;
 }

 .innerpages-content h1 {
   font-size: 70px;
   font-weight: 700;
   line-height: 1.2;
 }

 .innerpages-content p {
   font-size: 17px;
   font-weight: 300;
   line-height: 1.6;
   max-width: 709px;
   margin: 20px 0;
 }

 .innerpages-image.apple {
   position: absolute;
   right: 200px;
   top: 100px;
 }

 .innerpages-image.apple img {
   width: 550px;
 }

 /*==== OUR SERVICES ====*/

 .our-services {
   padding: 80px 0;
 }

 .our-services-inner {
   position: relative;
   z-index: 1;
 }

 .our-services-inner .radial-ball {
   position: absolute;
   top: 0;
   right: -350px;
   transform: rotate(223deg);
 }

 .our-services-inner .stroke-text {
   font-size: 150px;
   transform: scale(1.3);
   margin-bottom: -137px;
 }

 .our-services-inner h2 {
   text-transform: uppercase;
   font-size: 105px;
   font-weight: 700;
   line-height: 1;
   letter-spacing: -0.09em;
   text-align: center;
 }

 .our-services-inner p {
   font-size: 20px;
   font-weight: 300;
   line-height: 1.5;
   text-align: center;
   max-width: 800px;
   margin: 20px auto 0;
 }

 .services-card-wrapper {
   z-index: 1;
   position: relative;
 }

 .services-card-wrapper .radial-circle:nth-child(1) {
   left: -400px;
   top: 10%;
 }

 .services-card-wrapper .radial-circle:nth-child(2) {
   right: -400px;
   top: 46%;
 }

 .services-img-card {
   display: flex;
   margin-top: 80px;
 }

 .our-services-img {
   flex: 1 50%;
   border-radius: 40px;
   overflow: hidden;
 }

 .our-services-img img {
   width: 100%;
   height: 100%;
 }

 .our-services-content {
   display: flex;
   justify-content: center;
   flex-direction: column;
   background-color: var(--serviceCard);
   padding: 50px 100px;
   border: 1px solid #ffffff33;
   border-radius: 20px;
   flex: 1 50%;
   margin-top: 20px;
   margin-bottom: 20px;
   z-index: 1;
   backdrop-filter: blur(10px);
 }

 .our-services-content.img-left {
   margin-left: -50px;
 }

 .our-services-content.img-right {
   margin-right: -50px;
 }

 .our-services-content h2 {
   font-size: 60px;
   font-weight: 700;
   line-height: 1;
   text-align: left;
   margin-bottom: 32px;
 }

 .our-services-content p {
   font-size: 20px;
   font-weight: 400;
   line-height: 30px;
   letter-spacing: 0.1em;
   text-align: left;
   margin-bottom: 32px;
 }

 /*=== INNERPAGE === */

 .innerpages-inner .radial-circle:nth-child(1) {
   top: -150px;
   right: -300px;
 }

 .innerpages-inner .radial-circle:nth-child(2) {
   bottom: -95px;
   left: -370px;
 }

 .innerpages-image.ribbon {
   position: absolute;
   right: -102px;
   top: 25px;
 }

 .innerpages-image.ribbon img {
   width: 1150px;
   rotate: 5deg;
 }

 /*==== ABOUT CATEGORY ====*/

 .category {
   padding: 80px 0;
 }

 .category-inner {
   position: relative;
   z-index: 1;
 }

 .category-inner .radial-circle {
   left: -250px;
   top: 0;
 }

 .category .title h2 {
   text-align: center;
   margin-bottom: 35px;
   font-size: 50px;
   font-weight: 700;
   line-height: 1;
 }

 .category-cards-wrapper {
   display: grid;
   grid-template-columns: repeat(2, 450px);
   grid-template-rows: repeat(2, 1fr);
   gap: 40px;
   justify-content: center;
 }

 .category-card {
   border-radius: 10px;
   padding: 30px;
   background: linear-gradient(55.23deg,
       rgba(98, 70, 149, 0.2) 1.27%,
       rgba(31, 22, 47, 0.2) 99.33%);
   border: 1px solid #ffffff1a;
   transition: all 400ms ease-in;
   z-index: 1;
 }

 .category-card:hover {
   background: linear-gradient(55.23deg,
       rgba(98, 70, 149, 0.5) 1.27%,
       rgba(31, 22, 47, 0.5) 99.33%);
   border: 1px solid #624695;
   box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
     rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
 }

 .category-icon {
   margin-bottom: 30px;
 }

 .category-content h2 {
   font-size: 50px;
   font-weight: 700;
   line-height: 1;
   text-align: left;
 }

 .category-content p {
   font-size: 15px;
   font-weight: 400;
   line-height: 1.5;
   text-align: left;
   margin: 22px 0;
 }

 .category-btn a.service-btn {
   padding: 5px 20px;
   gap: 10px;
 }

 .category-btn a.service-btn span:nth-child(1) {
   font-size: 12px;
 }

 a.service-btn span:nth-child(2) {
   padding: 10px;
 }

 /*==== WHY CHOOSE  ====*/

 .why-choose {
   padding: 80px 0;
 }

 .why-choose-inner h2 {
   font-size: 60px;
   font-weight: 700;
   line-height: 1.1;
   text-align: left;
   margin-bottom: 20px;
 }

 .why-choose-inner p {
   font-size: 18px;
   font-weight: 400;
   line-height: 1.4;
   text-align: left;
   margin-bottom: 20px;
 }

 .why-choose-inner h3 {
   margin-bottom: 35px;
   font-size: 40px;
   font-weight: 700;
   line-height: 1.5;
   text-align: left;
 }

 .why-choose-inner h5 {
   font-size: 25px;
   font-weight: 600;
   line-height: 1.2;
   text-align: left;
   margin-bottom: 20px;
 }

 .why-choose-inner h5 a {
   color: var(--greenColor);
 }

 .why-choose-inner .btn.btn-green {
   margin-top: 50px;
 }

 .why-choose-inner ul {
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   padding: 0;
   margin: 0;
 }

 .why-choose-inner ul li {
   flex-basis: 40%;
   display: flex;
   gap: 20px;
   font-size: 18px;
   font-weight: 400;
   line-height: 2;
   text-align: left;
   color: var(--whiteColor);
   align-items: center;
 }

 .why-choose-inner ul li::before {
   content: "";
   display: block;
   width: 20px;
   height: 20px;
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center;
   background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Crect width='12' height='12' fill='url(%23pattern0_1_1000)'/%3E%3Cdefs%3E%3Cpattern id='pattern0_1_1000' patternContentUnits='objectBoundingBox' width='1' height='1'%3E%3Cuse xlink:href='%23image0_1_1000' transform='scale(0.0111111)'/%3E%3C/pattern%3E%3Cimage id='image0_1_1000' width='90' height='90' xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFoAAABaCAYAAAA4qEECAAAACXBIWXMAAAsTAAALEwEAmpwYAAAB1ElEQVR4nO3azWrbQBiFYTUEx13knrtzCqWL7LLLNWTh6obsXaEUly7fIKKAaVz/SJ/Go5n3WQUCx98cZFujcdNIkiRJkiRJkiRJkiRJmQHugG/AT2AHPAGfB+Y8AFtg0/+9mGbqmeGtnDUfPQXlPDS14//ldH4H5WyamnG8nM6voJx6i+Z0OZ3vQTmrpkacV073/7uAnB+ncooELICXE+W0wDJFTpGw5OlZcgKWnIAlJ2DJCVhyApZsyWXA+2RLPgm4AT41GSPts4t16LYauAeegb/AH+BxyMOR/u38tT9x2PYnDmEPWWZdcv/Cz0MGPpDTFXvoidYyYMbZl3zTX8mDBv8nqzs3I7ps5l7yXtG7MQvYy9pGL4ASSt4b4nHsQvqcVeRCKKnkXBdEhjMVtwEgo1kmkcMCyWCGJK65UGopOXpQLsipruQrfhmtE75WHiW/S3yV1XUlZ1h2W3zJGZTdVlPyFctuqyv5nZuRhNyMJORmJNP7bALuyYHb2d4nj5VqMwJ8uSCnrJJTbUZ4K3l0ThGm2oxgySFlt5Y87Wf2uV98o3Nqv7LbM4+yQnKKdqSk9sLD2ZCcGj5GVnu/WloN/PVTSI4kSZIkSZIkSZIkqSnXK8I/934Safj6AAAAAElFTkSuQmCC'/%3E%3C/defs%3E%3C/svg%3E%0A");
 }

 /* ==== CONTACT TITLE ==== */

 .contact-title {
   padding: 80px 0 0;
 }

 .contact-title-inner .radial-circle {
   right: -250px;
   top: -250px;
 }

 .contact-title-inner {
   text-align: center;
   position: relative;
   z-index: 1;
 }

 .contact-title-inner h2 {
   font-size: 70px;
   font-weight: 700;
   line-height: 1;
   margin-bottom: 15px;
 }

 .contact-title-inner p {
   font-size: 20px;
   font-weight: 400;
   line-height: 1.5;
   max-width: 788px;
   margin: 0 auto;
 }

 /*==== FORM ====*/

 .consultancy {
   border-radius: 30px;
   background: linear-gradient(176.34deg,
       rgba(217, 217, 217, 0.14) 2.85%,
       rgba(217, 217, 217, 0.14) 104.65%);
   border: 1px solid;
   border-image-source: linear-gradient(114.88deg,
       #494949 14%,
       rgba(0, 0, 0, 0) 95.66%);
   padding: 60px 40px;
   position: relative;
   z-index: 1;
 }

 .consultancy .radial-circle {
   left: 50%;
   transform: translateX(-50%);
   bottom: -100px;
 }

 .consultancy .row:nth-child(1),
 .consultancy .row:nth-child(2),
 .consultancy .title {
   margin-bottom: 70px;
 }

 .consultancy .row:nth-child(3) {
   margin-bottom: 40px;
 }

 .consultancy .title {
   border-bottom: 1px solid var(--whiteColor);
   padding-bottom: 20px;
 }

 .consultancy .title h2 {
   font-size: 32px;
   font-weight: 700;
   line-height: 1;
   text-align: center;
 }

 /* .consultancy .title h2 span {
  color: var(--greenColor);
} */

 .form__group {
   position: relative;
   padding: 20px 0 0;
   width: 100%;
   max-width: 100%;
 }

 .form__field {
   font-family: inherit;
   width: 100%;
   border: none;
   border-bottom: 1px solid var(--whiteColor);
   outline: 0;
   padding: 7px 0;
   background: transparent;
   transition: border-color 0.2s;
   color: var(--whiteColor);
 }

 .form__field::placeholder {
   color: transparent;
 }

 .form__field:placeholder-shown~.form__label {
   font-size: 18px;
   font-weight: 400;
   line-height: 1;
   color: #ffffff78;
   cursor: text;
   top: 30px;
 }

 .form__label {
   position: absolute;
   top: 0;
   display: block;
   transition: 0.2s;
   font-size: 17px;
   color: var(--whiteColor);
   pointer-events: none;
 }

 .form__field:focus {
   padding-bottom: 6px;
   font-weight: 700;
   border-width: 3px;
   border-bottom-style: solid;
   border-image: linear-gradient(90deg,
       var(--primaryColor) 0%,
       var(--greenColor) 50%,
       var(--primaryColor) 100%);
   border-image-slice: 1;
   animation-name: moving-gradient;
   animation-duration: 3s;
   animation-timing-function: linear;
   animation-iteration-count: infinite;
 }

 .form__field:focus~.form__label {
   position: absolute;
   top: 0;
   display: block;
   transition: 0.2s;
   font-size: 17px;
   color: var(--greenColor);
   font-weight: 700;
 }

 .form__field:required,
 .form__field:invalid {
   box-shadow: none;
 }

 /*==== WEB DEVELOPMENT ====*/

 .innerpages-image.david {
   position: absolute;
   right: -100px;
   top: -50px;
 }

 .innerpages-image.david img {
   width: 1000px;
 }

 .our-services-inner.web .stroke-text {
   font-size: 110px;
   margin-bottom: -80px;
   letter-spacing: -9px;
 }

 /*==== WEBSITE PORTFOLIO ====*/

 .web-portfolio-item img {
   transform: skewX(2deg);
   filter: grayscale(1) blur(2px);
   height: auto;
   width: 85%;
 }

 .web-portfolio-grid {
   display: flex;
   position: relative;
   flex-wrap: wrap;
   --gap: 20px;
   gap: var(--gap);
 }

 .web-portfolio-item {
   width: calc(33% - var(--gap));
   height: 100%;
   transition: transform 0.5s ease, opacity 0.5s ease;
   text-align: center;
 }

 div#item5 {
   min-height: 376px;
   background: url(assets/images/portfolio/mac-mockup.webp);
   background-size: 100%;
   background-position: top center;
   position: relative;
   z-index: 1;
   padding: 10px;
 }

 div#item5>img {
   transform: skew(0);
   filter: grayscale(0);
   width: 100%;
 }

 .mockup {
   z-index: -1;
   inset: 0;
   position: absolute;
 }

 button#rotate-button {
   position: absolute;
   inset: 50%;
   transform: translate(-50%);
   border-radius: 100%;
   padding: 35px;
   border: none;
   background-color: rgb(255 255 255 / 50%);
   backdrop-filter: blur(10px);
   box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
   display: flex;
   justify-content: center;
   align-items: center;
 }

 button#rotate-button i {
   font-size: 25px;
 }

 .shift-animation {
   opacity: 0;
 }

 /* ==== TECHNOLOG TABS ==== */

 section.technology-tabs {
   padding: 80px 0;
   position: relative;
   z-index: 1;
 }

 section.technology-tabs .radial-circle {
   height: 720px;
   left: -170px;
   top: 200px;
 }

 .technology-tab-inner {
   margin-top: 80px;
 }

 .technology-tab-inner ul.nav.nav-tabs {
   border: none;
 }

 .technology-tab-inner ul.nav.nav-tabs li.nav-item a.nav-link {
   font-size: 25px;
   font-weight: 600;
   line-height: 1.5;
   text-align: center;
   background-color: transparent;
   border: none;
   border-bottom: 5px solid var(--purpleSecondary);
   color: var(--whiteColor);
 }

 .technology-tab-inner ul.nav.nav-tabs li.nav-item a.nav-link:hover {
   color: var(--greyColor);
 }

 .technology-tab-inner ul.nav.nav-tabs li.nav-item a.nav-link.active {
   border-bottom: 5px solid var(--secondaryColor);
   color: var(--whiteColor);
 }

 .technology-tab-inner .tab-content div.tab-pane.fade {
   padding: 50px;
 }

 .technology-grid {
   display: grid;
   grid-template-columns: repeat(6, 1fr);
   grid-template-rows: repeat(3, auto);
   gap: 100px;
 }

 .technology-grid .technology-item {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 30px;
   flex-direction: column;
   padding: 10px;
 }

 .technology-item svg {
   width: 60px;
   height: 60px;
   fill: #fff;
 }

 .technology-item svg path {
   fill: #fff;
 }

 .technology-grid .technology-item h4 {
   font-size: 22px;
   font-weight: 600;
   line-height: 1.5;
   text-align: center;
 }

 .technology-tabs-title {
   margin-bottom: 80px;
 }

 .technology-tabs-title p {
   font-size: 25px;
   font-weight: 600;
   line-height: 2;
   text-align: center;
 }

 .technology-tabs-title h2 {
   font-size: 50px;
   font-weight: 700;
   line-height: 1.5;
   text-align: center;
 }

 /* ==== PARTNER MARQUEE ====*/

 section.partners {
   padding: 80px 0;
 }

 .partners-title {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 30px;
   flex-direction: column;
   margin-bottom: 60px;
 }

 .partners-title span.partner-badge {
   background: #2c2c2c;
   color: var(--whiteColor);
   font-size: 18px;
   font-weight: 600;
   line-height: 1;
   text-align: center;
   padding: 10px 15px 10px 15px;
   border-radius: 10px;
 }

 .partners-title h2 {
   font-size: 40px;
   font-weight: 700;
   line-height: 1.5;
   text-align: left;
 }

 :root {
   --marquee-width: 100vw;
   --marquee-height: 10vh;
   --marquee-elements-displayed: 6;
   --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
   --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
 }

 .partners-marquee {
   width: var(--marquee-width);
   height: var(--marquee-height);
   background-color: rgba(255, 255, 255, 0.1);
   color: var(--colorGreyee);
   overflow: hidden;
   position: relative;
   backdrop-filter: blur(5px);
 }

 .partners-marquee:before,
 .partners-marquee:after {
   position: absolute;
   top: 0;
   width: 10rem;
   height: 100%;
   content: "";
   z-index: 1;
 }

 .partners-marquee:before {
   left: 0;
   background: linear-gradient(to right,
       var(--primaryColor) 0%,
       transparent 100%);
 }

 .partners-marquee:after {
   right: 0;
   background: linear-gradient(to left,
       var(--primaryColor) 0%,
       transparent 100%);
 }

 .partners-marquee-content {
   list-style: none;
   height: 100%;
   display: flex;
   animation: scrolling var(--marquee-animation-duration) linear infinite;
 }

 .partners-marquee-content li {
   display: flex;
   justify-content: center;
   align-items: center;
   flex-shrink: 0;
   width: var(--marquee-element-width);
   max-height: 100%;
   font-size: calc(var(--marquee-height) * 3 / 4);
   /* 5rem; */
   white-space: nowrap;
 }

 .partners-marquee-content li img {
   width: 100%;
   border: 2px solid #eee;
 }

 .partners-marquee.left {
   margin-top: 20px;
 }

 .partners-marquee.left .partners-marquee-content {
   animation-direction: reverse;
   animation: scrolling-left var(--marquee-animation-duration) linear infinite;
 }

 /* ==== MOBILE APPLICATION ==== */

 section.image-with-text {
   position: relative;
   z-index: 1;
 }

 section.image-with-text .radial-ball {
   right: -260px;
   top: -200px;
 }

 .innerpages-image.mobile-application {
   position: absolute;
   right: 100px;
   bottom: -70px;
 }

 .innerpages-image.mobile-application img {
   width: 750px;
 }

 .our-services-inner.mobile-application .stroke-text {
   font-size: 120px;
   margin-bottom: -79px;
   letter-spacing: -9px;
 }

 .image-w-text-img img {
   width: 100%;
   height: 100%;
 }

 /*==== CONTACT PAGE ====*/

 .lets-chat {
   padding-top: 120px;
   --marqueespace: 20px;
 }

 .lets-chat-marquee {
   overflow: hidden;
   user-select: none;
   display: flex;
   gap: var(--marqueespace);
   transform: rotate(-4deg);
 }

 .lets-chat-marquee ul {
   list-style: none;
   flex-shrink: 0;
   min-width: 100%;
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: var(--marqueespace);
   animation: lmarquee 8s linear infinite;
 }

 .lets-chat-marquee ul li {
   margin: 0 20px;
 }

 .lets-chat-marquee .text {
   background: linear-gradient(to right, #a2a2a2, #ffffff, #212121);
   -webkit-background-clip: text;
   -moz-background-clip: text;
   background-clip: text;
   color: transparent;
   font-weight: 400;
   font-size: 25ch;
 }

 /* ==== WHAT WE DO ==== */

 .what-we-do {
   padding: 100px 0 0;
 }

 .what-we-do-text img {
   width: 100%;
   height: 100%;
   object-fit: contain;
 }

 .what-we-do-text {
   width: 100vw;
   margin-bottom: -150px;
 }

 .what-we-do-img img {
   width: 100%;
   height: 100%;
   object-fit: contain;
 }

 .what-we-do-content h2 {
   font-family: var(--fontPoppins);
   font-size: 150px;
   font-weight: 800;
   color: var(--colorDarkGrey);
   margin-bottom: -72px;
   letter-spacing: -6px;
 }

 .what-we-do-content h3 {
   font-family: var(--fontPoppins);
   font-weight: 700;
   color: #09d6a5;
   font-size: 40px;
   letter-spacing: -3px;
   line-height: 1;
 }

 .what-we-do-content p {
   font-size: 20px;
   line-height: 1.5;
   margin: 20px 0;
 }

 /*==== MOBILE STEPS ====*/

 section.mobile-steps {
   padding: 80px 0;
   position: relative;
   z-index: 1;
 }

 section.mobile-steps .radial-circle {
   right: -200px;
   bottom: -300px;
   height: 700px;
 }

 /* .mobile-steps-inner h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.mobile-steps-inner p {
  font-size: 25px;
  font-weight: 400;
  line-height: 2;
  max-width: 990px;
  text-align: center;
  margin: 25px auto;
} */

 .steps-grid {
   padding-top: 50px;
   display: grid;
   gap: 80px;
   grid-template-columns: repeat(5, 1fr);
 }

 .mobile-step {
   transition: color 5ms linear;
 }

 .mobile-step span {
   display: block;
   color: var(--colorwhite80);
   font-family: var(--fontPoppins);
   font-size: 90px;
   font-weight: 900;
   line-height: 1;
   text-align: center;
 }

 .mobile-step:hover span {
   -webkit-mask-image: linear-gradient(-75deg,
       rgba(0, 0, 0, 0.2) 30%,
       #000 50%,
       rgba(0, 0, 0, 0.2) 70%);
   -webkit-mask-size: 200%;
   animation: shine 2s infinite;
   transition: 0.35s;
 }

 .mobile-step p {
   font-size: 18px;
   font-weight: 400;
   line-height: 1.5;
   text-align: center;
   margin: 20px 0 0;
 }

 /*==== MOBILE PORTFOLIO ====*/

 section.mobile-portfolio {
   padding: 80px 0;
 }

 /* .mobile-portfolio-content h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.mobile-portfolio-content p {
  max-width: 986px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  margin: 20px auto 0;
} */

 .mobile-portfolio-carousel {
   position: relative;
 }

 .mobile-portfolio-strip {
   margin: 150px 0 150px;
   filter: blur(10px);
 }

 .mobile-portfolio-strip .mobile {
   cursor: pointer;
   margin: 0 !important;
 }

 .mobile-portfolio-strip img {
   max-width: 100%;
   width: 100%;
   height: auto;
 }

 .mobile-portfolio-screen {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 35%;
 }

 .mobile-portfolio-detail .mobile {
   margin: 0 !important;
 }

 /*.mobile-portfolio-screen .mobile-portfolio-detail {*/
 /*position: absolute;*/
 /*    top: 50%;*/
 /*    left: 50%;*/
 /*    z-index: 1;*/
 /*    transform: translate(-50%, -50%);*/
 /*    background-color: var(--colorGrey33);*/
 /*    width: 70%;*/
 /*}*/

 .mobile-portfolio-screen .mobile {
   margin-right: -100%;
   float: left;
   cursor: move;
 }

 /*==== SPINNER ANIMATION ====*/

 .spinner {
   position: relative;
   top: 35%;
   width: 80px;
   height: 80px;
   margin: 0 auto;
   background-color: var(--whiteColor);
   border-radius: 100%;
   -webkit-animation: sk-scaleout 1s infinite ease-in-out;
   animation: sk-scaleout 1s infinite ease-in-out;
 }

 /* ==== MENU ====*/

 .hidden {
   position: absolute;
   overflow: hidden;
   width: 0;
   height: 0;
   pointer-events: none;
 }

 /* Icons */
 .icon {
   display: block;
   width: 1.5em;
   height: 1.5em;
   margin: 0 auto;
   fill: currentColor;
 }

 /* Header */
 .header {
   position: relative;
   z-index: 100;
   display: flex;
   align-self: start;
 }

 .header__title {
   font-size: 1rem;
   line-height: 1;
   font-weight: normal;
   margin: 0 1rem;
 }

 .info {
   display: block;
   grid-area: info;
   margin: 1rem 0;
   justify-self: end;
   text-align: center;
 }

 .github {
   display: block;
   margin: 1rem 0 0 0;
 }

 /* Top Navigation Style */
 .links {
   position: relative;
   display: flex;
   justify-content: center;
   text-align: center;
   white-space: nowrap;
   font-size: 0.85rem;
 }

 .codrops-icon {
   display: inline-block;
   padding: 0.25em;
 }

 .content__title {
   font-family: "sabbath-black", serif;
   font-weight: 400;
   font-style: normal;
   font-size: 14vw;
   font-weight: normal;
   mix-blend-mode: screen;
   line-height: 0.8;
   text-transform: lowercase;
   margin: 0;
   color: var(--color-title);
   z-index: 199;
   cursor: default;
 }

 .content__tagline {
   color: var(--color-tagline);
   margin: 1rem 0 0 0;
   font-weight: bold;
   font-size: 1rem;
   letter-spacing: 0.125rem;
   word-spacing: 0.25rem;
   text-transform: uppercase;
   text-align: center;
   z-index: 1;
   cursor: default;
   position: absolute;
   right: 25px;
   transform: translateY(50%);
   height: 100vh;
 }

 .action {
   background: none;
   border: 0;
   color: #fff;
   cursor: pointer;
   padding: 0;
 }

 .action--menu {
   pointer-events: auto;
   position: absolute;
   top: 40px;
   right: 100px;
   z-index: 1000;
 }

 .menu--open .action--menu {
   pointer-events: none;
 }

 .action--close {
   position: absolute;
   top: 40px;
   right: 100px;
   z-index: 1000;
   opacity: 0;
   padding: 0 0.5rem;
 }

 .icon--menu {
   width: 2rem;
 }

 .icon--close {
   width: 1rem;
 }

 .menu {
   text-align: center;
   width: 100%;
   height: 100vh;
   overflow: hidden;
   position: fixed;
   top: 0;
   left: 0;
   z-index: 200;
   display: grid;
   grid-template-columns: 100%;
   grid-template-rows: repeat(3, 33.33%);
   pointer-events: none;
 }

 .menu--open {
   pointer-events: auto;
 }

 .menu__item {
   width: 100%;
   position: relative;
   overflow: hidden;
 }

 .menu__item-inner {
   overflow: hidden;
   transform: translate3d(100%, 0, 0);
   height: 100%;
   width: 100%;
   position: relative;
   display: flex;
   flex-direction: column;
   justify-content: center;
 }

 .menu__item--1 .menu__item-inner {
   background: var(--menuColor);
 }

 .menu__item--2 .menu__item-inner {
   background: var(--greenColor);
 }

 .menu__item--3 .menu__item-inner {
   background: var(--greenColor);
 }

 .menu__item--4 .menu__item-inner {
   background: var(--menuColor);
 }

 .menu__item--5 .menu__item-inner {
   background: var(--greenColor);
 }

 .menu__item--4,
 .menu__item--5 {
   display: none;
 }

 .label {
   display: none;
 }

 .mainmenu__item {
   opacity: 0;
 }

 .mainmenu__item,
 .sidemenu__item {
   position: relative;
   overflow: hidden;
   transition: color 0.1s;
   margin: 0.25rem 0;
   display: block;
 }

 .sidemenu__item-inner {
   color: var(--primaryColor);
   font-weight: 700;
   display: block;
   transform: translate3d(0, 100%, 0);
 }

 .menu__item-map::after {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(0, 0, 0, 0.5);
 }

 .menu__item-map {
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   background: url(../images/img/map.webp) no-repeat center;
   background-size: cover;
   transition: transform 0.8s cubic-bezier(0.2, 1, 0.8, 1);
 }

 .menu__item-inner:hover .menu__item-map {
   transform: scale3d(1.1, 1.1, 1);
 }

 .menu__item-hoverlink {
   font-weight: bold;
   text-transform: capitalize;
   position: relative;
   z-index: 1000;
   display: block;
   transition: all 0.5s ease-in;
 }

 .menu__item-hoverlink:hover {
   transform: scale(1.1);
 }

 .quote {
   font-size: 2rem;
   padding: 1rem;
   text-align: center;
   max-width: 90%;
   color: var(--lightBlackColor);
   font-weight: 500;
   font-style: italic;
 }

 .menu__item-link {
   text-align: left;
   align-self: flex-start;
   justify-self: start;
   font-size: 1.5rem;
   width: 100%;
   line-height: 1;
   padding: 2rem;
   margin: 3rem 0 auto;
   display: flex;
   flex-direction: column;
   height: calc(100% - 3rem);
 }

 .menu__item-link::after {
   content: "\27F6";
   display: block;
   margin-top: auto;
   font-size: 0.95rem;
 }

 /* ==== TERMS AND POLICY */

 .text-banner {
   padding: 150px 0;
 }

 .text-banner .text-banner-inner h1 {
   text-align: center;
 }

 .text-banner .text-inner {
   max-width: 1200px;
   margin: 0 auto;
 }

 .txt {
   background: #fff;
   padding: 100px 0;
 }


 .text-banner-inner.text-center ul {
   padding: 0;
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 20px;
   margin: 0;
 }

 .text-banner-inner.text-center ul li {
   font-size: 18px;
   color: #6c757d;
 }


 .text-inner p {
   font-size: 14px;
   margin-bottom: 5px;
 }

 .text-inner>* {
   color: var(--lightBlackColor) !important;
 }

 .text-inner h5,
 .text-inner h4,
 .text-inner h3,
 .text-inner h2,
 .text-inner h1 {
   font-size: 16px;
   margin-top: 15px;
 }

 .text-inner ul {
   padding: 0 0 0 20px;
 }

 .text-inner ul li {
   margin: 10px 0;
   font-size: 14px;
   list-style: circle;
 }

 .text-inner a {
   font-size: 14px;
   color: var(--primaryColor);
   transition: all 400ms ease;
 }

 .text-inner a:hover {
   text-decoration: underline !important;
 }

 .text-banner-inner .radial-circle:nth-child(2) {
   right: -350px;
 }

 .text-banner-inner .radial-circle:nth-child(1) {
   top: 0;
   left: -350px;
 }

 /* Digital Marketing Cards */

 .dm-cards {
   padding: 90px 0;
   position: relative;
   z-index: 1;
 }

 .dm-cards .radial-circle {
   right: -150px;
   top: 25%;
   height: 610px;
 }

 .dm-cards-inner {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   grid-template-rows: repeat(2, 500px);
   max-width: 1400px;
   margin: 0 auto;
   gap: 40px;
 }

 .dm-cards-grp {
   gap: 40px;
   max-width: 1400px;
   margin: 0 auto;
 }

 .dm-cards-grp>.row {
   gap: 40px;
 }

 .dm-card {
   overflow: hidden;
   padding: 30px 20px 50px;
   background: linear-gradient(176.34deg,
       rgba(217, 217, 217, 0.14) 2.85%,
       rgba(217, 217, 217, 0.14) 104.65%);
   border-radius: 33px;
   border: none;
   box-shadow: 0 0 0 1px transparent, 0 0 0 1px rgba(0, 0, 0, 0.2),
     0 0 0 1px #494949;
   text-align: center;
 }

 .dm-card .dm-icon {
   width: 152px;
   height: 152px;
   margin: 0 auto 30px;
 }

 .dm-card h4 {
   font-size: 30px;
   font-weight: 600;
   line-height: 1.2;
   margin-bottom: 10px;
 }

 .dm-card p {
   font-size: 20px;
   line-height: 1.3;
   font-weight: 400;
 }

 /* Digital Marketing Image w Text */

 .innerpages-image.video-animation {
   right: 0;
   bottom: -40px;
   position: absolute;
 }

 .innerpages-image.video-animation img {
   width: 1200px;
 }


 section.digital-marketing {
   position: relative;
   padding: 200px 0 50px;
 }

 section.digital-marketing .radial-ball {
   right: -260px;
   top: -200px;
 }

 .innerpages-image.digital-marketing {
   right: -100px;
   position: absolute;
   top: 95px;
 }

 .innerpages-image.digital-marketing img {
   width: 1000px;
 }

 .dm-inner {
   display: flex;
   align-items: center;
   position: relative;
 }

 .dm-text {
   flex-basis: auto;
   max-width: 50%;
   width: 50%;
 }

 .dm-text h2 {
   margin-bottom: 35px;
 }

 .dm-text p {
   max-width: 440px;
 }

 .dm-img.laptop {
   position: absolute;
   right: 0;
 }

 .dm-img.laptop img {
   width: 1200px;
 }

 .digital-marketing .radial-circle {
   left: -250px;
 }

 .dm-img img {
   width: 100%;
   height: 100%;
 }

 .dm-img.video-animation-text img {
   width: 800px;
 }

 /* Counter */

 .counters {
   padding: 60px 0;
   position: relative;
   z-index: 1;
 }

 .counters .radial-circle {
   left: -250px;
   top: 0;
 }

 /* .counter-content h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.counter-content p {
  max-width: 986px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  margin: 25px auto 0;
} */

 .counter-wrapper {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   max-width: 1400px;
   margin: 50px auto 0;
 }

 .count-items {
   text-align: center;
 }

 .count-items h3 {
   font-family: var(--fontPoppins);
   font-size: 85px;
   font-weight: 600;
   line-height: 1.5;
   color: var(--whiteColor);
   opacity: 0.4;
   letter-spacing: -0.05em;
 }

 .count-items p {
   font-size: 15px;
   font-weight: 400;
   line-height: 1.6;
   text-align: center;
 }

 .count-items h3 span.sm {
   font-size: 50px;
 }

 /* Thank You */

 .thank-you-inner {
   height: 100vh;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   text-align: center;
 }

 .thank-you-inner svg {
   width: 250px;
   margin: 0 auto;
 }

 /* MailChamp */

 .newsletter-container {
   --newsletterHeight: 50px;
   --borderRadius: 40px;
   margin-top: 20px;
   height: var(--newsletterHeight);
   overflow: hidden;
   position: relative;
   transition: all 500ms linear;
 }

 .newsletter-container .newsletter-btn {
   border: 1px solid var(--greenColor);
   background: var(--primaryColor);
   color: var(--whiteColor);
   border-radius: var(--borderRadius);
   height: var(--newsletterHeight);
   display: flex;
   gap: 10px;
   font-size: 20px;
   text-transform: uppercase;
   font-weight: 700;
   align-items: center;
   padding: 10px 20px;
   transition: all 300ms ease-in;
 }

 .newsletter-container .newsletter-btn:hover {
   background: var(--greenColor);
   color: var(--primaryColor);
 }

 .newsletter-btn svg {
   width: 20px;
   height: 20px;
 }

 .subscribe-form {
   border: 1px solid var(--greenColor);
   background: var(--primaryColor);
   color: var(--greenColor);
   border-radius: var(--borderRadius);
   height: var(--newsletterHeight);
   display: flex;
   overflow: hidden;
   position: absolute;
   z-index: 1;
   width: 100%;
   transition: all 100ms linear;
   top: 100%;
 }

 .subscribe-form .email-input {
   width: 70%;
   flex-basis: auto;
   outline: none;
   border: none;
   background: var(--primaryColor);
   color: #fff;
   padding: 20px;
   font-weight: 400;
 }

 .subscribe-form .submit-button {
   width: 30%;
   outline: none;
   border: none;
   background-color: var(--greenColor);
   color: var(--primaryColor);
   font-weight: 700;
   font-size: 16px;
   text-transform: uppercase;
   transition: all 300ms ease-in-out;
 }

 .subscribe-form .submit-button:hover {
   color: var(--greenColor);
   background-color: var(--primaryColor);
 }

 /* BRANDING */

 .brand-banner {
   padding: 80px 0;
 }

 .innerpages-image.branding {
   position: absolute;
   right: 4%;
   top: 3%;
 }

 .innerpages-image.branding img {
   width: 750px;
 }

 .dm-img.branding_text {
   position: absolute;
   right: 5%;
 }

 .dm-img.branding_text img {
   width: 750px;
 }

 /* BRANDING BANNER */

 .brand-banner-inner {
   padding: 75px 60px;
   border-radius: 30px;
   background: url(../images/img/brand-bg.webp);
   background-position: center;
   background-repeat: no-repeat;
   background-size: 100%;
 }

 .brand-banner-inner h2 {
   font-size: 60px;
   font-weight: 700;
   line-height: 1;
 }

 .brand-banner-inner h2>span {
   color: var(--primaryColor);
 }

 .brand-btn {
   margin-top: 30px;
   font-size: 20px;
   font-weight: 500;
   padding: 15px 30px;
   background-color: var(--primaryColor);
   border-radius: 10px;
   transition: all 400ms ease-in;
 }

 .brand-btn:hover {
   background-color: var(--whiteColor);
   color: var(--primaryColor);
 }

 /* GALLERY */

 .gallery {
   padding: 80px 0;
   position: relative;
   z-index: 1;
 }

 .gallery .radial-circle {
   right: 0;
 }

 .gallery-inner {
   display: flex;
   gap: 15px;
   justify-content: center;
 }

 .gallery-col {
   display: flex;
   flex-direction: column;
   gap: 15px;
 }

 .gallery-item {
   border-radius: 20px;
   overflow: hidden;
   transition: 500ms ease-in-out;
 }

 .gallery-item:hover img {
   transition: 500ms ease-in-out;
 }

 .gallery-item:hover img {
   -webkit-transform: scale(1.3);
   transform: scale(1.3);
 }

 .gallery .radial-circle {
   left: -200px;
   bottom: 0;
 }

 /* Lightbox */

 #lightbox {
   /* ----- Positioning ----- */
   position: fixed;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
   z-index: 5;

   /* The code above makes sure that the
  lightbox covers the entire page*/

   /* ----- Visibility ----- */
   display: none;

   /* ----- Styling ----- */
   background-color: rgba(0, 0, 0, 0.95);

   /* Normally, most lightboxes do not use
  a completely solid black, but with about
  90-95% opacity so that the background is
  somewhat visible */
 }

 #video-wrapper {
   /* ----- Positioning ----- */
   position: absolute;
   top: 50%;
   left: 50%;
   z-index: 2;
   -webkit-transform: translate(-50%, -50%);
   -moz-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
   -o-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);

   /* The code above makes sure the video is
  both vertically and horizontally centered
  to the screen */

   /* ----- Styling ----- */
   box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);

   /* The code above is used to add a little shadow to the video making blend in better */
 }

 #close-btn {
   /* ----- Text ----- */
   color: grey;
   font-size: 25px;

   /* ----- Positioning ----- */
   position: fixed;
   top: 3%;
   right: 3%;
   z-index: 1;

   /* The code above is used to put the button on the upper right corner of the lightbox */

   /* ----- Transformations ----- */
   -webkit-transform: scale(1, 1);
   -moz-transform: scale(1, 1);
   -ms-transform: scale(1, 1);
   -o-transform: scale(1, 1);
   transform: scale(1, 1);

   /* The code above is used to initialize the scale for the button so that it can be used in transitions */

   /* ----- Transitions ----- */
   -webkit-transition: transform 0.5s ease, color 0.5s ease;
   -moz-transition: transform 0.5s ease, color 0.5s ease;
   -ms-transition: transform 0.5s ease, color 0.5s ease;
   -o-transition: transform 0.5s ease, color 0.5s ease;
   transition: transform 0.5s ease, color 0.5s ease;
 }

 #close-btn:hover {
   /* ----- Text ----- */
   color: white;

   /* ----- Styling ----- */
   cursor: pointer;

   /* ----- Transformations ----- */
   -webkit-transform: scale(1.2, 1.2);
   -moz-transform: scale(1.2, 1.2);
   -ms-transform: scale(1.2, 1.2);
   -o-transform: scale(1.2, 1.2);
   transform: scale(1.2, 1.2);

   /* ----- Transitions ----- */
   -webkit-transition: transform 0.5s ease, color 0.5s ease;
   -moz-transition: transform 0.5s ease, color 0.5s ease;
   -ms-transition: transform 0.5s ease, color 0.5s ease;
   -o-transition: transform 0.5s ease, color 0.5s ease;
   transition: transform 0.5s ease, color 0.5s ease;
 }

 .playbtn {
   position: absolute;
   inset: 50%;
   transform: translate(-50%, -50%);
   width: 80px;
   height: 80px;
   z-index: 2;
   border: none;
   background: transparent;
 }

 .gallery-item {
   position: relative;
 }

 .playbtn svg {
   width: 100%;
   height: auto;
 }


 /* Blogs */
 section.single__blog {
   padding: 0 0 80px;
 }


 .featured_blogs {
   border-left: 1px solid #8f8f8f7a;
   padding: 20px;
 }

 .features_image {
   width: 100%;
   margin-bottom: 50px;
   border-radius: 30px;
   overflow: hidden;
   height: 400px;
 }

 .features_image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }

 .blogs_content p {
   font-size: 18px;
 }

 .blogs_content h5 {
   margin-bottom: 15px;
   font-size: 24px;
 }

 .featured_blogs h3 {
   font-size: 25px;
   margin-bottom: 20px;
   margin-left: 13px;
 }

 .featured_blogs ul {
   padding: 0;
   margin: 0;
 }

 .featured_blogs ul li {
   margin-bottom: 20px;
 }

 .featured_blogs ul li a:hover {
   background: rgba(255, 255, 255, 0.1);
 }

 .featured_blogs ul li a {
   display: flex;
   flex-direction: column;
   gap: 10px;
   border-radius: 15px;
   padding: 15px;
   transition: all 500ms linear;
 }

 .featured_blogs ul li a span.blog-title {
   font-size: 20px;
   font-weight: 500;
 }

 .featured_blogs ul li a .blog-date {
   color: #939393;
 }

 /* Job Listing*/

 section.job-listing {
   padding: 80px 0;
 }

 section.job-listing ul.job-list {
   margin: 0;
   padding: 0;
   list-style: none;
 }


 section.job-listing ul.job-list>li.job-preview {
   background: rgba(255, 255, 255, 0.2);
   border: 1px solid #83838378;
   -webkit-border-radius: 0.4rem;
   -moz-border-radius: 0.4rem;
   border-radius: 0.4rem;
   padding: 1.5rem 2rem;
   margin-bottom: 1rem;
   width: 100%;
   -webkit-transition: all 0.3s ease 0s;
   -moz-transition: all 0.3s ease 0s;
   transition: all 0.3s ease 0s;
   display: flex;
   flex-direction: row;
   justify-content: space-between;
   align-items: center;
 }

 section.job-listing ul.job-list>li.job-preview:hover {
   cursor: pointer;
   -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
   -moz-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
   box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
 }

 section.job-listing .job-title {
   margin-top: 0.6rem;
 }

 section.job-listing .company {
   color: #96a4b1;
 }

 section.job-listing .job-preview .btn {
   margin-top: 1.1rem;
 }

 section.job-listing .btn-apply {
   text-transform: uppercase;
   font-size: 0.875rem;
   font-weight: 800;
   letter-spacing: 1px;
   background-color: transparent;
   color: #393a5f;
   border: 2px solid #393a5f;
   padding: 0.6rem 2rem;
   -webkit-border-radius: 2rem;
   -moz-border-radius: 2rem;
   border-radius: 2rem;
 }

 section.job-listing .btn-apply:hover {
   background-color: #393a5f;
   color: #fff;
   border: 2px solid #393a5f;
 }


 /* White Label */

 section.innerpages-banner.white-label {
   overflow: hidden;
 }

 section.innerpages-banner.white-label .innerpages-inner {
   flex-direction: column;
   justify-content: center;
 }

 section.innerpages-banner.white-label .innerpages-inner .top-header {
   display: flex;
   gap: 40px;
   align-items: center;
   margin-bottom: 25px;
 }

 section.innerpages-banner.white-label .innerpages-inner .top-header .avatar img {
   width: 128px;
 }

 section.innerpages-banner.white-label .innerpages-inner .top-header .rating {
   font-family: var(--fontPoppins);
   font-weight: 500;
   font-size: 22px;
   color: var(--whiteColor);
 }

 section.innerpages-banner.white-label .innerpages-inner .top-header .rating i {
   color: var(--greenColor);
   font-size: 20px;
   padding: 4px;
   margin-right: 5px;
 }

 section.innerpages-banner.white-label .innerpages-inner h1 {
    font-size: 60px;
   margin-bottom: 42px;
   background: linear-gradient(to right, var(--whiteColor) 34%, var(--colorGrey9b) 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   text-align:center;
 }

 section.innerpages-banner.white-label .innerpages-inner h4 {
   margin-bottom: 10px;
   font-size: 32px;
 }

 section.innerpages-banner.white-label .innerpages-inner p {
   max-width: 60%;
   margin: 0 auto;
   text-align: center;
 }

 /* Who We Are */

 section.who-work {
   background: var(--whiteColor);
   padding: 100px 0;
 }

 .white-label-content span.icon-list {
   font-family: 'Poppins';
   font-weight: 600;
   font-size: 20px;
   color: var(--primaryColor);
   display: flex;
   align-items: center;
   gap: 10px;
   margin-bottom: 20px;
 }

 .white-label-content span.icon-list::before {
   content: '';
   display: block;
   width: 12px;
   height: 12px;
   background: var(--greenColor);
   border-radius: 100%;
 }

 .white-label-content h2 {
   font-family: 'Syne';
   color: #0C0630;
   font-weight: 600;
   font-size: 55px;
 }

 .white-label-content p {
   color: #535353;
   font-size: 18px;
   font-family: var(--fontPoppins);
   font-weight: 400;
   margin-bottom: 20px;
 }
 .white-label-content ul {
     padding-left: 0;
     margin-bottom: 30px;
 }
 .white-label-content ul li {
     color: #535353;
    font-size: 18px;
    font-family: var(--fontPoppins);
 }

 .white-label-content .arrow-link {
   color: #0C0630;
   font-size: 20px;
   font-family: var(--fontPoppins);
   font-weight: 600;
   transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);

 }

 .white-label-content .arrow-link-icon {
   margin-inline-start: 10px;
 }

 .who-work-card-grp {
   margin-top: 60px;
 }

 .who-works-card img {
   border-radius: 15px;
 }

 .who-works-card span {
   font-family: 'Poppins';
   font-weight: 600;
   font-size: 15px;
   color: #000;
 }

 .who-works-card-content {
   padding: 12px 22px;
 }

 .who-works-card-content a {
   display: flex;
   justify-content: space-between;
 }

 /* Services Offer */

 .services-offer {
   padding: 100px 0;
   background-color: #F8F8F8;
 }

 .icon-box {
   display: flex;
   gap: 15px;
   margin-top: 20px;
   padding: 20px 0;
   border-bottom: 1px solid #D9D9D9;
   position: relative;
 }

 .icon-box .icon-box_icon {
   min-width: fit-content;
 }

 .icon-box_content h3 {
   font-family: 'Poppins';
   font-weight: 500;
   font-size: 24px;
   color: #0C0630;
   margin-bottom: 10px;
 }
 
 .icon-box_content h5 {
  color: #0C0630;
  font-size: 18px;
  margin-bottom: 15px;
}

 .icon-box_link {
   position: absolute;
   right: 0;
   bottom: 20px;
 }

 .services-offer-inner {
   display: flex;
   gap: 140px;
 }

 .services-offer-image,
 .services-offer-content {
   flex-basis: 50%;
   width: 50%;
 }


 /* How it works */

 .how-it-works {
   background-color: var(--whiteColor);
   padding: 100px 0;
 }

 .how-it-works .white-label-content h1 {
   margin-bottom: 15px;
   text-align: center;
 }

 .how-it-works .white-label-content p {
   max-width: 60%;
   margin: 0 auto;
 }
 

 .how-it-works-inner {
   display: flex;
   margin-top: 65px;
   gap: 30px;
 }

 .how-it-works-card h4 {
   font-family: 'Syne', sans-serif;
   font-weight: 600;
   color: #0C0630;
   font-size: 24px;
   margin: 50px 0 20px;
 }

 .how-it-works-card p {
   font-family: 'Poppins';
   font-size: 17px;
   font-weight: 400;
   color: #0C0630;
 }

 .how-it-works-card {
   text-align: center;
   position: relative;
 }

 .how-it-works-card+.how-it-works-card::before {
   content: '';
   width: 148px;
   height: 20px;
   display: block;
   position: absolute;
   top: 40px;
   right: 50%;
   background-image: url(../images/img/arrow-right.png);
   background-position: center;
   background-repeat: no-repeat;
   background-size: contain;
   transform: translateX(-63%);
 }


 /* What you get */

 .what-you-get {
   padding: 100px 0;
   background-color: #0C0630;
 }

 .what-you-get .white-label-content h2 {
   color: var(--whiteColor);
   margin-bottom: 30px;
 }

 .what-you-get .white-label-content p {
   color: var(--whiteColor);
   max-width: 60%;
   margin: 0 auto;
 }

 .what-you-get-cards {
   margin-top: 55px;
 }

 .what-you-get-cards img {
   margin-bottom: 12px;
 }

 .what-you-get-cards p {
   font-size: 17px;
   color: #9593A4;
   margin-bottom: 0;
 }


 /* Image with text */

 .img-w-text {
   background-color: #F8F8F8;
   padding: 100px 0;
 }

 .img-w-text img {
   border-radius: 23px;
 }

 .img-w-text .white-label-content h2 {
   margin-bottom: 30px;
 }

 section.img-w-text .white-label-content a.btn.btn-green.fill {
   margin: 0;
 }


 /* Testimonial */

 body.white-label-partner .testimonial {
   padding: 100px 0;
   background-color: #fff;
 }

 .testimonial-items {
   display: flex !important;
   gap: 100px;
   padding-inline-end: 50px;
   align-items: center;
   background-image: url(../images/white-label/quotes.png);
   background-repeat: no-repeat;
   background-position: top right;
 }

 .testimonial-items img {
   border-radius: 30px;
 }

 .testimonial-text p {
   color: #535353;
   font-size: 18px;
   font-family: 'Poppins';
   margin-bottom: 80px;
 }

 span.author {
   display: block;
   font-size: 20px;
   color: #0C0630;
   font-weight: 600;
   font-family: 'Poppins';
   margin-bottom: 5px;
 }

 span.designation {
   display: block;
   font-family: 'Poppins';
   font-size: 16px;
   font-weight: 400;
   color: #535353;
 }

 .testimonial-avatar img {
   aspect-ratio: 1;
   width: 88px;
   object-fit: cover;
   object-position: top;
   border-radius: 20px;
 }

 .testimonial-avatars {
   margin-top: 60px;
   padding-left: 140px;
   position: relative;
 }

 .testimonial-avatars .slick-list.draggable {
   width: 170px;
 }

 .testimonial-avatars .slick-arrow {
   display: inline-block;
   width: 50px;
   aspect-ratio: 1;
   border: none;
   border-radius: 100%;
   border: 1px solid #0C0630;
   color: #0C0630;
   background: #fff;
   transform: translateY(-50%);
   top: 50%;
   position: absolute;
 }

 .testimonial-avatars .slick-arrow i {
   color: inherit;
 }

 button.slick-prev.slick-arrow {
   left: 0;
 }

 button.slick-next.slick-arrow {
   left: 55px;
 }

 button.slick-arrow.slick-disabled {
   background-color: #0C0630;
   color: #fff;
 }

 /* Get connected */

 .get-connect {
   padding: 100px 0;
   background-color: #FFFFFF;
 }

 .get-connect .consultancy {
   background: #0C0630;
   overflow: hidden;
 }

 .get-connect .why-choose-inner h5,
 .get-connect .why-choose-inner h2,
 .get-connect .why-choose-inner p {
   color: #000;
 }