:root {
  --head-font: "Poppins", sans-serif;
  --body-font: "Quicksand", sans-serif;
  --main-color: #22356A;
  --sub-color: #0C6E99;
  --service1-color: #21be6a;
  --service2-color: #d99422;
  --service3-color: #9B51E0;
  --service4-color: #E63946;
}

a,
a:hover {
  text-decoration: none !important;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 25px;
  background-color: #fff;
}

.main-color {
  color: var(--main-color);
}

.sub-color {
  color: var(--sub-color);
}

.service1-color {
  color: var(--service1-color);
}

.service2-color {
  color: var(--service2-color);
}

.service3-color {
  color: var(--service3-color);
}

.service4-color {
  color: var(--service4-color);
}

.grey-color {
  color: #5B5959;
}

.color-white {
  color: #fff;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700;
}

.fw-900 {
  font-weight: 900;
}

.section-padding-xl {
  padding-top: 150px;
  padding-bottom: 150px;
}

.section-padding-lg {
  padding-top: 110px;
  padding-bottom: 110px;
}

.section-padding-md {
  padding-top: 75px;
  padding-bottom: 75px;
}

.auto-container {
  position: static;
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}

.primary-button {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-family: var(--body-font);
  padding: 10px 32px;
  font-size: 16px;
  min-height: 56px;
  color: #fff !important;
  border: 2px solid var(--main-color) !important;
  border-radius: 34px;
  background-color: var(--main-color) !important;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.primary-button::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  border-radius: inherit;
  scale: 4;
  z-index: -1;
  background-color: var(--main-color);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.primary-button:hover::before {
  scale: 0;
}

.primary-button:hover {
  color: var(--main-color) !important;
  background-color: transparent !important;
  scale: 1.02;
  box-shadow: 0 0px 20px rgba(15, 35, 91, 0.4117647059);
}

.primary-button:active {
  scale: 1;
}

.primary-white-button {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-family: var(--body-font);
  padding: 10px 32px;
  font-size: 16px;
  min-height: 56px;
  color: var(--main-color);
  border: 2px solid #fff;
  border-radius: 34px;
  background-color: #fff;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.primary-white-button::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  border-radius: inherit;
  scale: 4;
  z-index: -1;
  background-color: #fff;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.primary-white-button:hover::before {
  scale: 0;
}

.primary-white-button:hover {
  color: #fff;
  background-color: transparent;
  scale: 1.02;
  box-shadow: 0 0px 20px rgba(15, 35, 91, 0.4117647059);
}

.primary-white-button:active {
  scale: 1;
}

.primary-sm-button {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-family: var(--body-font);
  padding: 5px 16px;
  font-size: 12px;
  min-height: 40px;
  color: #fff;
  border: 2px solid var(--main-color);
  border-radius: 34px;
  background-color: var(--main-color);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.primary-sm-button::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  border-radius: inherit;
  scale: 4;
  z-index: -1;
  background-color: var(--main-color);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.primary-sm-button:hover::before {
  scale: 0;
}

.primary-sm-button:hover {
  color: var(--main-color);
  background-color: transparent;
  scale: 1.02;
  box-shadow: 0 0px 20px rgba(15, 35, 91, 0.4117647059);
}

.primary-sm-button:active {
  scale: 1;
}

.banner-title {
  font-family: var(--head-font);
  font-size: 54px;
  font-style: normal;
  font-weight: 600;
  line-height: 64.8px;
  text-transform: capitalize;
}

.section-type {
  font-family: var(--body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.42px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--head-font);
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.head-m {
  font-family: var(--head-font);
  font-size: 20px;
  font-weight: 700;
}

.para-lg {
  font-family: var(--body-font);
  font-size: 18px;
  font-style: normal;
  line-height: 28px;
}

.para-m {
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px;
}

.para-sm {
  font-family: var(--body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
}

.main-banner {
  height: calc(100vh - 120px);
  max-height: 833px;
  background-color: #EAF9FF;
  padding: 0 60px;
  overflow: hidden;
}

.banner-person {
  height: calc(100vh - 230px);
  max-height: 723px;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner-content {
  height: 100%;
}

.main-banner .auto-container,
.main-services-section .auto-container,
.about-partner-section .auto-container {
  max-width: 1660px;
}

.banner-slider {
  position: absolute;
  top: 0;
  left: -60px;
}

.scrolling-text {
  overflow: hidden;
  width: 100%;
}

.scrolling-text .rail {
  display: flex;
}

.scrolling-text .rail span {
  white-space: nowrap;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.15);
  font-family: var(--head-font);
  color: #EAF9FF;
  font-size: 170px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-right: 90px;
}

.home-service-section {
  border-bottom: 1px solid #E5E5E5;
}
.home-service-section .auto-container {
  max-width: 1810px;
}

.home-service-card {
  padding: 70px 24px;
  border-right: 1px solid #E5E5E5;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.home-service-card .service-number {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--head-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: rgba(102, 102, 102, 0.4);
  padding: 8px;
  border: 1px solid rgba(102, 102, 102, 0.1294117647);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.home-service-card h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #252525;
}
.home-service-card .para-m {
  color: #666;
  font-weight: 500;
}
.home-service-card .service-card-img {
  height: 100px;
  width: -moz-fit-content;
  width: fit-content;
}

.home-service-card.card1 {
  transition: all 0.3s ease-in-out;
}
.home-service-card.card1:hover {
  background-color: #f5fffa;
}
.home-service-card.card1:hover .service-number {
  background-color: #fff;
}

.home-service-card.card2 {
  transition: all 0.3s ease-in-out;
}
.home-service-card.card2:hover {
  background-color: #fffcf6;
}
.home-service-card.card2:hover .service-number {
  background-color: #fff;
}

.home-service-card.card3 {
  transition: all 0.3s ease-in-out;
}
.home-service-card.card3:hover {
  background-color: #fbf7ff;
}
.home-service-card.card3:hover .service-number {
  background-color: #fff;
}

.home-service-card.card4 {
  transition: all 0.3s ease-in-out;
}
.home-service-card.card4:hover {
  background-color: #fff6f7;
}
.home-service-card.card4:hover .service-number {
  background-color: #fff;
}

.col-md-3:last-child .home-service-card {
  border-right: none;
}

/* Slider */
/*.slick-slide {
    margin: 0px 20px;
}
.slick-slide img {
    width: auto;
    margin: 0 auto;
}*/
.logos-slider {
  padding: 0 40px;
}

/*
.slick-slider
{
position: relative;
display: block;
box-sizing: border-box;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-touch-callout: none;
-khtml-user-select: none;
-ms-touch-action: pan-y;
touch-action: pan-y;
-webkit-tap-highlight-color: transparent;
} */
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* section clinets end */
.about-points {
  border-top: 1px solid rgba(102, 102, 102, 0.4);
}

.about-img {
  width: 1052px;
  height: 640px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  max-width: unset;
}

.year-box {
  background-color: #92684C;
  padding: 24px;
  position: relative;
}
.year-box .award-img {
  width: 92px;
}
.year-box .year-count {
  font-family: var(--head-font);
  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: 96px;
}

.work-section {
  background-image: url("../images/work-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -100px;
  padding-top: 240px;
  padding-bottom: 110px;
}
.work-section .section-type {
  color: #41ACDA;
}
.work-section .work-image {
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}
.work-section .work-image:hover {
  border: 2px solid rgb(255, 255, 255);
  box-shadow: 10px 10px 22.9px 0 #000;
  transform: translateY(-10px);
}
.work-section .work-image:hover .work-about {
  opacity: 1;
}
.work-section .work-image img {
  height: 416px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.work-section .work-image .work-about {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  padding: 32px;
  background: rgba(0, 0, 0, 0.7);
  align-content: end;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.work-section .work-image .work-about .work-title {
  font-family: var(--head-font);
  font-size: 20px;
  font-weight: 700;
}
.work-section .work-image .work-about .work-content {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}
.work-section .work-image .work-about .work-tag {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
}

.midhaan-service {
  padding: 24px 0;
  border-bottom: 1px solid #E5E5E5;
}

.midhaan-head .minus {
  display: none;
}

.midhaan-service.active .midhaan-head .plus {
  display: none;
}

.midhaan-service.active .midhaan-head .minus {
  display: inline-block;
}

.midhaan-head {
  cursor: pointer;
}

.midhaan-content {
  padding-left: 200px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}
.midhaan-content img {
  border-radius: 10px;
}

.midhaan-service.active .midhaan-content {
  display: block;
  /* show when active */
  max-height: 1000px;
}

.midhaan-service-count {
  color: #F0F0F0;
  font-family: var(--head-font);
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  line-height: 72px;
}

.midhaan-service-title {
  color: #252525;
  font-family: var(--head-font);
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 42px;
}

.home-cta {
  height: 100%;
}
.home-cta img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.home-cta-content {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 18, 40, 0) 0%, rgba(10, 18, 40, 0.54) 41.83%, #0A1228 97.6%);
  top: 0;
  align-content: end;
  padding-left: calc(70vw - 100%);
  padding-bottom: 32px;
  padding-right: 32px;
}

.cta-head {
  font-family: var(--head-font);
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: 54px;
}

.home-form {
  background: #0A1228;
  height: 100%;
  padding: 90px 90px 32px 90px;
}
.home-form label {
  font-family: var(--head-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #fff;
  margin-bottom: 16px;
}
.home-form .form-input {
  height: 56px;
  align-self: stretch;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #161E32;
  width: 100%;
  color: #fff !important;
  padding: 8px 24px;
}
.home-form .form-input:focus {
  outline: none;
}
.home-form textarea {
  min-height: 150px;
}

.globe-illus {
  position: absolute;
  bottom: 0;
  left: 0;
}

.tools-illus {
  position: absolute;
  width: 70%;
  bottom: 100px;
  left: 170px;
  animation: spin 25s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.dot-illus1 {
  position: absolute;
  top: -110px;
  left: -146px;
}

.dot-illus2 {
  position: absolute;
  bottom: -110px;
  left: -146px;
}

.tools-circle {
  position: absolute;
  bottom: -90px;
  right: -60px;
}

.tool-container {
  position: relative;
  width: 600px;
  height: 100%;
  aspect-ratio: 1/1;
}

.circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid rgb(229, 229, 229);
  border-radius: 50%;
  animation: rotate 60s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.tool {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.7;
  animation: counterRotate 60s linear infinite;
  transition: transform 0.3s ease;
}

@keyframes counterRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
.tool:hover {
  transform: scale(1.2) rotate(var(--current-rotation));
}

.tool-1 {
  top: -35px;
  left: 50%;
  margin-left: -35px;
}

.tool-2 {
  top: 50%;
  right: -35px;
  margin-top: -35px;
}

.tool-3 {
  bottom: -35px;
  left: 50%;
  margin-left: -35px;
}

.tool-4 {
  top: 50%;
  left: -35px;
  margin-top: -35px;
}

.tool-5 {
  top: 15%;
  right: 15%;
  margin-top: -35px;
  margin-right: -35px;
}

.tool-6 {
  bottom: 15%;
  right: 15%;
  margin-bottom: -35px;
  margin-right: -35px;
}

.tool-7 {
  bottom: 15%;
  left: 15%;
  margin-bottom: -35px;
  margin-left: -35px;
}

.tool-8 {
  top: 15%;
  left: 15%;
  margin-top: -35px;
  margin-left: -35px;
}

.page-banner {
  height: 45vh;
  background-color: #0A1228;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 0 60px;
  overflow: hidden;
  position: relative;
}
.page-banner::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #0a192f;
  opacity: 0.6;
  position: absolute;
  top: 0;
  right: 0;
}

.dark-box {
  padding: 42px;
  background-image: url("../images/dark-pattern.svg");
  background-position: top;
  background-size: cover;
  height: 100%;
}
.dark-box .mission-img {
  height: 100px;
  width: -moz-fit-content;
  width: fit-content;
}

.midhaan-logo .path-stroke {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.midhaan-logo .path1-stroke {
  stroke: #35E0B4;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation: draw 5s ease-in-out forwards;
}
.midhaan-logo .path2-stroke {
  stroke: #000000;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation: draw 5s ease-in-out 0.5s forwards;
}
.midhaan-logo .path3-stroke {
  stroke: #000000;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation: draw 5s ease-in-out 1s forwards;
}
.midhaan-logo .path-fill {
  opacity: 0;
  animation: fadeIn 0.8s ease-in forwards;
}
.midhaan-logo .path1-fill {
  animation-delay: 4s;
}
.midhaan-logo .path2-fill {
  animation-delay: 3s;
}
.midhaan-logo .path3-fill {
  animation-delay: 3s;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.services-para {
  font-family: var(--body-font);
  font-size: 26px;
  font-weight: 600;
  line-height: 55px;
  margin-bottom: 110px;
  color: var(--main-color);
}

.main-service-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 24px;
  min-height: 580px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.main-service-card::before {
  position: absolute;
  content: "";
  width: 20%;
  height: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: bold;
  top: 0;
  left: 0;
  border-radius: 0 0 100% 0;
  background-color: #e3f7fd;
  transition: all 0.5s;
  z-index: -1;
}
.main-service-card::after {
  position: absolute;
  content: "";
  width: 20%;
  height: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: bold;
  bottom: 0;
  right: 0;
  border-radius: 100% 0 0 0;
  background-color: #e3f7fd;
  transition: all 0.5s;
  z-index: -1;
}
.main-service-card h3 {
  font-family: var(--head-font);
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
}
.main-service-card .main-service-card-icon {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-service-card .main-service-card-img {
  height: 80px;
  width: -moz-fit-content;
  width: fit-content;
}

.main-service-card:hover::before,
.main-service-card:hover:after {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  transition: all 0.5s;
}

.main-service-chips {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.main-service-chips .chips {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 16px;
}

.partner-services-section {
  background-color: #e3f7fd;
}

.partner-cards {
  padding: 24px;
  border-left: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.partner-cards h2 {
  font-family: var(--head-font);
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
}

.partner-cards.one,
.partner-cards.three,
.partner-cards.five {
  border-left: none !important;
}

.partner-cards.five,
.partner-cards.six {
  border-bottom: none !important;
}

.partner-logo {
  margin-top: 50px;
}

.about-count-section {
  padding: 32px 0;
  border-bottom: 1px solid #e7e7e7;
}
.about-count-section .about-counts {
  width: 100%;
}
.about-count-section .about-counts h3 {
  font-family: var(--head-font);
  font-size: 45px;
  font-weight: 600;
  line-height: normal;
}

.about-partner-section {
  margin-bottom: 75px;
}

.partner-both {
  overflow: hidden;
  border-radius: 30px;
}

.partner-part {
  padding: 75px;
  background-image: url("../images/partner-pattern.svg");
  background-color: #0a192f;
  height: 100%;
}

.partner-points lottie-player {
  height: 30px;
  width: -moz-fit-content;
  width: fit-content;
}

.contact-section {
  background-image: url("../images/faq-bg.png");
  background-size: cover;
  background-position: top;
}

.contact-title {
  font-family: var(--head-font);
  font-size: 34px;
}

.contact-form-field {
  min-height: 56px;
  padding: 8px 16px !important;
  background-color: #ffffff;
  outline: none !important;
  width: 100%;
  border: 1px solid #f1f1f1 !important;
  border-radius: 10px !important;
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 600;
}
.contact-form-field:focus {
  border: 1px solid var(--sub-color) !important;
}
.contact-form-field:-moz-placeholder {
  font-weight: 600;
  color: #666;
}
.contact-form-field:placeholder-shown {
  font-weight: 600;
  color: #666;
}

.contact-textarea {
  min-height: 150px;
  padding: 16px 16px !important;
  border: 1px solid #f1f1f1 !important;
  border-radius: 10px !important;
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 600;
  background-color: #ffffff;
  outline: none !important;
}
.contact-textarea:focus {
  border: 1px solid var(--sub-color) !important;
}
.contact-textarea:-moz-placeholder {
  font-weight: 600;
  color: #666;
}
.contact-textarea:placeholder-shown {
  font-weight: 600;
  color: #666;
}

.contact-icon {
  background-color: #252525;
  color: #fff;
  padding: 24px;
  transition: all 0.5s ease-in-out;
}
.contact-icon svg {
  width: 30px;
  height: auto;
}

.contact-data {
  font-size: 18px;
}
.contact-data:hover {
  color: var(--sub-color);
}

.contact-details:hover .contact-icon {
  background-color: #fff;
  color: #252525;
}

.brand-analytics {
  padding: 16px;
  border: 1px solid #e3e3e3;
  border-radius: 5px;
}
.brand-analytics span svg {
  height: 55px;
  width: auto;
}
.brand-analytics p {
  font-size: 18px;
  color: #000;
  font-weight: 500;
}

.branding-img img {
  height: 500px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.brand-process {
  background: linear-gradient(155deg, #f7f7f7, transparent);
  overflow: hidden;
}
.brand-process::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 107%;
  top: -30px;
  background-image: url("../images/green-pattern.svg");
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.006;
}

.brand-count {
  background-color: #fff;
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 35%;
  border-radius: 8px;
  overflow: hidden;
  animation: move 2s ease-in-out infinite;
}
.brand-count .counts {
  padding: 16px;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}
.brand-count .counts::after {
  content: "";
  background-color: var(--service1-color);
  position: absolute;
  top: -151px;
  left: -30px;
  width: 120%;
  height: 200px;
  border-radius: 50%;
}
.brand-count h3 {
  font-family: var(--head-font);
  font-size: 51px;
  font-weight: 700;
  line-height: 42px;
  text-align: center;
  margin-bottom: 8px;
  position: relative;
  color: #fff;
  z-index: 1;
}
.brand-count p {
  font-family: var(--head-font);
  font-size: 18px;
  line-height: normal;
  text-align: center;
  position: relative;
  z-index: 1;
  color: #000;
}

@keyframes move {
  0% {
    bottom: 30px;
  }
  50% {
    bottom: 40px;
  }
  100% {
    bottom: 30px;
  }
}
.brand-card {
  padding: 22px;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #ddf0e5;
  min-height: 277px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.brand-card:hover {
  transform: translateY(-10px);
}
.brand-card:hover .processno {
  color: #fff;
  top: -25px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.15);
}
.brand-card .brand-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-card .brand-card-icon lottie-player {
  width: 60px;
  height: 60px;
}
.brand-card .processno {
  font-family: var(--head-font);
  font-size: 75px;
  font-weight: 800;
  line-height: 65px;
  color: #f1f1f1;
  position: absolute;
  top: 20px;
  right: 20px;
  transition: all 0.3s ease-in-out;
}

.brand-point {
  width: 40px;
  height: 40px;
}

.uiux-point svg {
  height: 30px;
  width: auto;
}

.uiux-process {
  background: linear-gradient(155deg, #fcfeff, transparent);
}
.uiux-process::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-image: url("../images/uipattern.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  opacity: 0.05;
}

.uiux-card {
  padding: 20px;
  background: #fffefc;
  border-radius: 10px;
  position: relative;
  border: 1px solid #f5f5f5;
  min-height: 284px;
  transition: all 0.3s ease-in-out;
}
.uiux-card:hover {
  transform: translate(-10px, -10px);
}
.uiux-card:hover .uiux-card-icon {
  background-color: #fff;
  border-color: #f5f5f5;
}
.uiux-card:hover .uiuxno {
  width: 90px;
  height: 90px;
  top: -20px;
  right: -20px;
}
.uiux-card .uiux-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.uiux-card .uiux-card-icon lottie-player {
  width: 60px;
  height: auto;
}
.uiux-card .uiuxno {
  width: 80px;
  height: 80px;
  background-color: #5B5959;
  border-radius: 10px;
  position: absolute;
  top: -20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 35px;
  font-weight: 700;
  border: 5px solid #fdffff;
  transition: all 0.3s ease-in-out;
}

.marketing-stmt {
  padding: 16px;
  border: 1px dashed var(--service3-color);
  font-size: 16px;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 16px;
}
.marketing-stmt lottie-player {
  width: 100px;
  height: auto;
}

.digital-features {
  position: relative;
  overflow: hidden;
}
.digital-features::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 107%;
  top: 0;
  background-image: url("../images/digital-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
  transform: rotate(180deg);
  z-index: -1;
}

.digital-feature-card {
  padding: 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(102, 102, 102, 0.1843137255);
  min-height: 230px;
}
.digital-feature-card .digital-card-icon {
  width: 80px;
  height: 80px;
}

.digital-point {
  margin-bottom: 32px;
  margin-right: 42px;
}
.digital-point .point-icon {
  position: absolute;
  left: -15px;
}
.digital-point svg {
  height: 50px;
  width: auto;
}
.digital-point p {
  padding: 5px 8px 5px 47px;
  border: 1px solid #e3e3e3;
  border-radius: 20px;
}

.saas-stmt {
  color: #d17c82;
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
  font-style: italic;
  border: 2px dashed;
  padding: 16px;
}

.saas-process {
  background: linear-gradient(155deg, #fffcfc, transparent);
  position: relative;
  overflow: hidden;
}
.saas-process::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-image: url("../images/pattern-red.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  opacity: 0.15;
}

.saas-process-card .saas-process-icon {
  width: 80px;
  height: 80px;
  border: 2px solid #d17c82;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.saas-process-card .saas-process-icon lottie-player {
  height: 60px;
  width: auto;
}
.saas-process-card .process-step {
  font-size: 16px;
  text-transform: uppercase;
  font-family: var(--body-font);
  font-weight: 700;
}
.saas-process-card .process-title {
  font-size: 18px;
  font-family: var(--head-font);
  font-weight: 600;
}

.saas-points {
  padding: 8px;
  border: 1px solid #ffc0c5;
  border-radius: 5px;
}
.saas-points span svg {
  width: 30px;
  height: auto;
}

footer {
  padding: 110px 0 16px 0;
  background-image: url(../images/footer-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
footer .footer-head {
  font-family: var(--body-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
}
footer .footer-icon {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
footer .footer-logo {
  filter: brightness(0) invert(1);
}
footer .footer-contact .footer-label {
  color: #fff;
  font-family: var(--body-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
footer .footer-contact p {
  color: #fff;
  font-family: var(--body-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
footer .footer-section2 {
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}/*# sourceMappingURL=codedesign.css.map */