:root {
  --main-color: #d2470b;
  --font-family: "Outfit";
  --text-color: #06152d;
  --alt-color: #696969;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: none;
  font-size: inherit;
}
ul.dropdown-menu {
  display: block;
  visibility: hidden;
  position: fixed !important;
  inset-inline: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  transform: translateY(30px);
  border: 0;
  padding: 32px 15px;
  box-shadow: 0px 10px 12px 0 rgba(0, 0, 0, 0.1215686275);
  border-top: 1px solid #eee;
  min-width: 220px;
}
ul.dropdown-menu a.dropdown-item {
  color: var(--alt-color);
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding-block: 8px;
  gap: 5px;
}
.header:not(.fixed-header) ul.dropdown-menu {
  box-shadow: none;
  border-bottom: 1px solid #eee;
  background: #fafafa;
}
ul.dropdown-menu a.dropdown-item:hover {
  color: var(--main-color);
}
ul.dropdown-menu a.dropdown-item:focus {
  background: transparent;
}
.dropdown-head h2 {
  font-weight: 600;
}
.dropdown-head p {
  margin-bottom: 0;
  max-width: 80%;
  color: #7c7d8a;
  line-height: 23px;
}
.dropdown:hover ul.dropdown-menu {
  visibility: visible;
  opacity: 1;
}
.dropdown-toggle::after {
  display: none;
}
.nav-link.dropdown-toggle i {
  font-size: 13px;
  margin-left: 5px;
}
body {
  font-size: 16px;
  letter-spacing: 0.3px;
  font-family: var(--font-family), system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
  scroll-behavior: smooth;
  background-color: #f7f8fc;
}
.primaryBtn {
  font-size: 14px;
  background-color: var(--main-color);
  color: #fefefe;
  font-weight: 500;
  padding: 5px 16px 6px;
  border-radius: 90px;
  min-height: 38px;
  display: flex;
  align-items: center;
  line-height: 1.4;
  box-shadow: 0 7px 25px rgb(37 98 244 / 20%);
}
.primaryBtn:hover {
  background-color: var(--text-color);
  color: #fff;
}
/* Header Start */
.header {
  position: absolute;
  top: 0;
  inset-inline: 0;
  background-color: transparent;
  padding-block: 20px;
  z-index: 11;
  transition: linear 0.2s all;
}
.header.fixed-header {
  position: fixed;
  padding-block: 10px;
  box-shadow: 0px 4px 12px 0px rgb(0 0 0 / 10%);
  background-color: #fcfcfc;
}

.header .row.justify-content-center.align-items-center {
  padding-block: 15px;
}
.menu .navbar-nav {
  gap: 2rem;
}
.nav-link {
  position: relative;
  padding-inline: 0 !important;
  padding-block: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-color);
  transition: ease 0.3s;
}
.menu .nav-link:before {
  content: "";
  width: 0;
  height: 3px;
  background-color: var(--text-color);
  display: block;
  position: absolute;
  bottom: -1px;
  transition: width ease 0.3s;
}
.menu .nav-link:hover:before {
  width: 100%;
}
.nav-link.active {
  color: var(--main-color);
}
.menu .nav-link.active:before {
  background-color: var(--main-color);
  width: 100%;
}

.close-menu {
  font-size: 30px;
  border: 0;
  display: none;
}
.offcanvas {
  border-radius: 0 35px 35px 0;
  padding: 1rem;
  width: 85% !important;
}
.offcanvas-header .btn-close {
  opacity: 1;
  color: var(--text-color);
  font-size: 16px;
  box-shadow: none !important;
}
.offcanvas .dropdown ul.dropdown-menu {
  display: none;
  visibility: visible;
  opacity: 1;
  transform: none !important;
  position: static !important;
  box-shadow: none;
  padding: 0px;
  margin-bottom: 10px !important;
}
.offcanvas .dropdown ul.dropdown-menu.show {
  display: block;
}
.offcanvas ul.dropdown-menu a.dropdown-item {
  color: var(--text-color);
  font-weight: 600;
  font-size: 15px;
}
.spec-col.header-social .primaryBtn {
  font-size: 16px;
  padding: 10px 20px;
}
.spec-col.logo,
.spec-col.header-social {
  max-width: 15%;
}
.spec-col.col.logo a {
  max-width: 170px;
}
.social-list li {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: #1877f2;
  width: 33px;
  height: 33px;
  transition: ease 0.3s;
}
.cs-tooltip {
  --bs-tooltip-bg: var(--text-color);
  --bs-tooltip-color: var(--bs-white);
  font-family: var(--font-family);
}
.social-list li.ig {
  background: linear-gradient(115deg, #f9ce34, #ee2a7b, #6228d7);
}
.social-list li.tiktok {
  background: #212121;
}
.social-list li.whatsapp {
  background: #25d366;
}
.social-list li.youtube {
  background: #ff0000;
}
.social-list li a {
  display: block;
  font-size: 18px;
  color: #fff;
  height: 25px;
}
.social-list li:hover {
  transform: translateY(-3px);
}
/* Header End */

main {
  padding-top: 140px;
}
.hero-section {
  text-align: center;
  background-color: #fafafa;
  padding-block: 2rem;
}
.hero-container {
  padding-top: 80px;
}
.hc {
  margin-bottom: 3rem;
}
.hero-section .hero-title {
  font-weight: 600;
  font-size: clamp(2rem, 3vw, 4rem);
  color: var(--text-color);
  margin-bottom: 1.5rem;
  letter-spacing: 0.8px;
  line-height: 1.4;
}
.hero-description {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: var(--alt-color);
}
.hero-btn {
  position: relative;
  background-color: var(--text-color);
  transition: background-color 0.3s ease;
  width: fit-content;
  margin-inline: auto;
  font-size: 18px;
  font-weight: 600;
  padding: 13px 35px;
  color: #fcfcfc;
}
.hero-btn:hover {
  background-color: var(--main-color);
}
#animatedText {
  will-change: contents;
  background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='310' height='18' viewBox='0 0 286 23'><rect width='286' height='18' fill='rgb(255 105 41 / 85%)'/></svg>");
  background-size: inherit;
  background-repeat: no-repeat;
  background-position-y: 100%;
  background-position-x: 50%;
}
.typed-cursor {
  font-weight: 500;
}
.hero-thumb {
  background-position: center center;
  background-size: contain;
  background-repeat: repeat-x;
  padding-bottom: 7rem;
}
.hero-thumb-inner {
  width: fit-content;
  margin-inline: auto;
  padding: 10px;
}
.main-pic {
  transform-style: preserve-3d;
  transform: perspective(1000px);
}
@keyframes shakeY {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(0, -10px, 0);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translate3d(0, 10px, 0);
  }
}
.floatin-pic {
  position: absolute;
  animation-name: shakeY;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  animation-duration: 12s;
  width: 25%;
}
.floatin-pic.pic-1 {
  bottom: -18%;
  left: -3vh;
}
.main-hero-pic {
  max-width: 90%;
}
.floatin-pic.pic-2 {
  right: -3vw;
  bottom: 41%;
  animation-delay: 1s;
}
.heading {
  margin-bottom: 2rem;
}
.heading .subtitle {
  position: relative;
  padding-left: 20px;
  font-size: 22px;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}
.heading .subtitle:before {
  content: "";
  height: 8px;
  box-shadow: 0 3px 11px rgba(14, 89, 242, 0.3);
  width: 8px;
  background: var(--main-color);
  top: 0;
  position: absolute;
  bottom: 0;
  margin: auto;
  left: 0;
  border-radius: 2px;
}
.heading h2.title {
  font-size: clamp(2rem, 3.2vw, 2.4rem);
  font-weight: 700;
  max-width: 50%;
  margin-bottom: 0;
}

.featurs,
.qualities,
.team {
  background-color: #fafafa;
  padding-block: 3rem;
}
.featurs .row > div {
  align-self: stretch;
}
.feature-card {
  padding: 2em 1.6em;
  border-radius: 15px;
  gap: 15px;
  height: 100%;
  transition: 0.3s ease;
}
.feature-card:hover {
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.05);
}
.feature-card .icon {
  font-size: 56px;
  color: var(--text-color);
  position: relative;
  z-index: 1;
}
.feature-card .icon:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-color: var(--main-color);
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10px;
}
.feature-card .content h3 {
  font-size: 1.756em;
  font-weight: 800;
  margin-bottom: 1rem;
}
.feature-card .content p {
  margin-bottom: 0;
  line-height: 1.8;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: var(--alt-color);
}

.quality-content {
  padding-inline: 10px;
  margin-left: 50px;
  counter-reset: quality;
}
.quality-content .heading h2.title {
  max-width: 100%;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 800;
}
.quality-content .heading h2.title b {
  color: var(--main-color);
  font-weight: 800;
}
.quality-content .heading .subtitle {
  font-size: 1.3rem;
  margin-bottom: 0;
}
.quality-content p {
  color: var(--alt-color);
  font-size: 20px;
  line-height: 2;
}
.qualities-list li span {
  font-size: 1.4rem;
  font-weight: 700;
}
.qualities-list li {
  display: flex;
  align-items: center;
  padding-block: 20px;
}
.qualities-list li:before {
  content: "0" counter(quality) ".";
  counter-increment: quality;
  display: block;
  margin-right: 15px;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--alt-color);
}
.qualities-list li:not(:last-child) {
  border-bottom: 1px solid #cecece;
}
.quality-content .btn.primaryBtn {
  font-size: 18px;
  padding: 12px 40px;
  width: fit-content;
}
.quality-thumb img {
  border-radius: 8px;
}
.quality-thumb .thumb-caption {
  position: absolute;
  bottom: -8px;
  right: 0;
  border-radius: 14px;
  background-color: var(--text-color);
  max-width: 54%;
}
.quality-thumb .thumb-caption h4.mb-0 {
  padding: 60px 45px;
  color: #f8f8f8;
  font-size: 2.2rem;
  font-weight: 700;
}

.showcase {
  counter-reset: showcase;
  padding-block: 3rem;
}
.showcase-head .heading h2.title {
  max-width: 75%;
}
.showase-navigation {
  gap: 15px;
}
.showase-navigation .swiper-button-next,
.showase-navigation .swiper-button-prev {
  position: relative;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  inset: initial;
  display: grid;
  place-content: center;
  padding: 5px;
}
.showase-navigation .swiper-button-next:after,
.showase-navigation .swiper-button-prev:after {
  font-size: 16px;
  color: #fefefe;
  font-weight: 600;
}
.showcase-item {
  overflow: hidden;
}
.showcase .swiper-slide:nth-child(3n) .showcase-item {
  background-color: #efefef;
}
.showcase .swiper-slide:nth-child(3n + 1) .showcase-item {
  background-color: #e7e7e7;
}
.showcase .swiper-slide:nth-child(3n-1) .showcase-item {
  background-color: #f7f7f7;
}
.showcase-mockup {
  padding: 100px;
  position: relative;
  z-index: 3;
  transform-style: preserve-3d;
  transform: perspective(1000px);
}
.mockup-content {
  box-shadow: 0 0 18px 0px rgb(0 0 0 / 11%);
}
.showcase-mockup-inner {
  position: relative;
  transform: translateZ(20px);
}
.js-tilt-glare {
  top: -10% !important;
  left: -10% !important;
  width: 120% !important;
  height: 120% !important;
}
.bg-holder,
.showcaseBg,
.showcase-mockup-inner > a {
  position: absolute;
  inset: 0;
}
.showcaseBg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  -webkit-transition: opacity 0.45s cubic-bezier(0.5, 0.15, 0.33, 0.88);
  -moz-transition: opacity 0.45s cubic-bezier(0.5, 0.15, 0.33, 0.88);
  transition: opacity 0.45s cubic-bezier(0.5, 0.15, 0.33, 0.88);
}
.showcase-item:hover .showcaseBg {
  opacity: 1;
}
.showcase-item:hover .showcase-description {
  display: none;
}
.mockup-title {
  position: absolute;
  bottom: 7%;
  right: -2.5%;
  box-sizing: border-box;
  padding: 12px 22px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 5px 21px 0 rgba(0, 0, 0, 0.2);
  -webkit-transform: translateZ(20px);
  -moz-transform: translateZ(20px);
  transform: translateZ(20px);
}
.mockup-content img {
  border-radius: 6px;
}
.mockup-title h2.mb-0 {
  font-size: 18px;
  font-weight: 600;
}
.showcase-description {
  position: absolute;
  right: 30px;
  bottom: 7%;
  z-index: 2;
  color: #757575;
  font-size: 18px;
  line-height: 1.73em;
  font-weight: 500;
}
.bg-holder:after {
  content: "0" counter(showcase);
  counter-increment: showcase;
  display: block;
  position: absolute;
  right: 20px;
  bottom: 0;
  color: #969696;
  font-size: 8.8vmax;
  line-height: 1.2em;
  font-weight: 500;
  z-index: 1;
}

.process {
  padding-block: 50px;
}
.row.top-row {
  position: relative;
  padding-bottom: 65px;
}
.row.top-row:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  z-index: -1;
  width: 100%;
  display: block;
  background-color: #cecece;
}
.extra-row .process-step {
  min-height: 285px;
}
.process-step-inner {
  position: relative;
  text-align: center;
  background-color: #fff;
  padding: 55px 30px 50px;
  border-radius: 15px;
  z-index: 2;
  transition: all 0.3s ease;
}
.process-step:is(.hovered, :hover) .process-step-inner {
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.07);
  animation: shakeY infinite 10s;
}
.process-step-inner:after {
  content: "";
  width: 22px;
  height: 22px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: auto;
  opacity: 0;
  z-index: 0;
  -webkit-transform: translateX(-50%) rotate(130deg) skew(-10deg);
  -ms-transform: translateX(-50%) rotate(130deg) skew(-10deg);
  transform: translateX(-50%) rotate(130deg) skew(-10deg);
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.process-step:is(.hovered, :hover) .process-step-inner:after {
  opacity: 1;
}
.row.top-row .process-step-inner:after {
  bottom: -9px;
  top: auto;
  border-right: 1px solid #f2f2f2;
  border-top: 1px solid #f2f2f2;
  box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.07);
}
.row.bottom-row .process-step-inner:after {
  top: -9px;
  border-left: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
  box-shadow: 0px -20px 30px rgba(0, 0, 0, 0.07);
}
.process-step h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.process-step p {
  font-size: 16px;
  color: var(--alt-color);
  line-height: 1.7;
  opacity: 0.8;
  text-wrap: pretty;
}
.timline-point {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -72px;
  width: 19px;
  height: 19px;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background-color: var(--text-color);
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.row.top-row .timline-point {
  top: auto;
  bottom: -72px;
}
.timline-point:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background-color: #ffffff;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.process-step:is(.hovered, :hover) .timline-point {
  background-color: rgba(22, 106, 234, 0.2);
  animation: pulse infinite 1s;
}
.process-step:is(.hovered, :hover) .timline-point:before {
  background-color: var(--main-color);
}
.row.bottom-row {
  padding-top: 60px;
}
.vid-presntation {
  padding: 30px 65px;
}
.vid-presntation h5 {
  font-size: 18px;
  font-weight: 400;
  color: var(--alt-color);
  line-height: 1.8;
  margin-bottom: 25px;
}
.vid-presntation button.btn {
  font-size: 22px;
  font-weight: 500;
  padding-inline: 0;
  gap: 10px;
}
@keyframes pulse {
  0% {
    transform: translateX(-50%) scale3d(1, 1, 1);
  }
  50% {
    transform: translateX(-50%) scale3d(1.2, 1.2, 1.2);
  }
  100% {
    transform: translateX(-50%) scale3d(1, 1, 1);
  }
}
.vid-presntation .icon {
  border: 1px solid var(--alt-color);
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: grid;
  place-content: center;
}
.vid-presntation button.btn i {
  font-size: 22px;
  color: var(--main-color);
  transform: translate(1px, 1px);
}
#presentationVideo .modal-content {
  background-color: transparent;
  border: 0;
  padding: 0;
}
#presentationVideo .modal-body {
  padding: 0;
}
#presentationVideo button.btn-close.dismiss {
  background: none;
  font-size: 31px;
  position: absolute;
  right: -60px;
  top: -50px;
  color: #fff;
  opacity: 1;
  box-shadow: none !important;
}

.services {
  padding-block: 25px;
}
.services .row {
  row-gap: 1.5rem;
}
.service-card {
  position: relative;
  padding: 2em 1.6em 5em;
  border-radius: 15px;
  height: 100%;
  transition: 0.3s ease;
}
.service-card:hover {
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-8px);
}
.service-card .icon {
  font-size: 55px;
  margin-bottom: 15px;
}
.service-card .card-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.service-card .card-content h3 b {
  color: var(--main-color);
  font-weight: inherit;
  letter-spacing: 0.8px;
}
.service-card .card-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--alt-color);
}
.service-card .card-content .btn.service-btn {
  position: absolute;
  bottom: 2em;
  left: 1em;
  padding-inline: 0;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  overflow: hidden;
}
.service-card .card-content .btn.service-btn span {
  margin-left: -124px;
  transition: margin 0.3s ease;
}
.service-card .card-content .btn.service-btn i {
  transform: translateY(1.5px);
}
.service-card:hover .card-content .btn.service-btn span {
  margin-left: 0;
}
.team {
  padding-bottom: 4rem;
}
.team .heading {
  text-align: center;
}
.team .heading h2.title {
  max-width: 90%;
  margin-inline: auto;
  text-wrap: pretty;
}
.team .heading h2.title b {
  color: var(--main-color);
  font-weight: inherit;
  font-size: 2.9rem;
}
.team-snipt {
  font-size: 18px;
  color: var(--alt-color);
  font-weight: 400;
  text-wrap: pretty;
  max-width: 630px;
  display: block;
  margin-inline: auto;
}
.member-card {
  overflow: hidden;
  border-radius: 14px;
  max-height: 640px;
}
.member-card * {
  transition: transform 0.3s ease;
}
.member-card:hover img {
  transform: scale(1.1, 1.1);
}
.member-info {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  padding: 35px;
}
.member-info > *,
.member-info .social li {
  color: #fff;
  z-index: 1;
  position: relative;
  opacity: 0;
  transition-property: all;
  transition-duration: 0.3s;
  top: 10px;
  text-shadow: 0px 2px 10px rgb(0 0 0 / 17%);
}
.member-card:hover .member-info > *,
.member-card:hover .member-info .social li {
  opacity: 1;
  top: 0;
}
.member-card:hover .member-info h3.name {
  transition-delay: 0.2s;
}
.member-card:hover .member-info p.position {
  transition-delay: 0.3s;
}
.member-card:hover .member-info .social li:nth-child(1) {
  transition-delay: 0.5s;
}
.member-card:hover .member-info .social li:nth-child(2) {
  transition-delay: 0.6s;
}
.member-card:hover .member-info .social li:nth-child(3) {
  transition-delay: 0.7s;
}
.member-card:hover .member-info .social li:nth-child(4) {
  transition-delay: 0.8s;
}
.member-info h3.name {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.member-info p.position {
  font-size: 18px;
}
.member-info .social {
  gap: 35px;
  font-size: 18px;
}
.bg-colored {
  background: linear-gradient(
    0deg,
    rgba(22, 106, 234, 0.83) 0%,
    rgba(250, 249, 101, 0) 60%,
    rgba(250, 249, 101, 0) 100%
  );
  transition: opacity 0.4s ease-out;
  position: absolute;
  inset: 0;
  opacity: 0;
}
.member-card:hover .bg-colored {
  opacity: 1;
}
footer {
  text-align: center;
  background-color: #020811;
  padding-top: 60px;
}
.credite {
  padding-block: 35px;
  border-top: 1px solid rgb(221 221 221 / 40%);
}
.social-footer,
.workWithMe {
  margin-bottom: 60px;
}
.social-footer ul {
  gap: 30px;
}
.social-footer ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.social-footer ul li a i {
  font-size: 30px;
  margin-bottom: 10px;
  color: #fefefe;
  transition: all 0.3s ease;
}
.social-footer ul li a:hover i {
  transform: translateY(-10px);
}
.social-footer ul li.fb a:hover i {
  color: #1877f2;
}
.social-footer ul li.ig a:hover i {
  background: linear-gradient(115deg, #f9ce34, #ee2a7b, #6228d7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.social-footer ul li.tiktok a:hover i {
  background: linear-gradient(45deg, #ff0050, #00f2ea);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.social-footer ul li.whatsapp a:hover i {
  color: #25d366;
}
.social-footer ul li.youtube a:hover i {
  color: #ff0000;
}
.social-footer ul li a span {
  font-size: 18px;
  color: #fefefe;
}
.workWithMe h3 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  color: #fefefe;
  font-weight: 600;
  line-height: 1.5;
}
.workWithMe h3 b {
  font-weight: inherit;
  color: var(--main-color);
}
.credite p {
  color: #fefefe;
  font-size: 20px;
}

#toUp {
  position: fixed;
  bottom: 0;
  right: 30px;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  cursor: pointer;
  z-index: 22;
  transition: all ease 0.3s;
}
#toUp.showBtn {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}
#progress-scroll {
  display: grid;
  place-items: center;
  width: 59px;
  height: 59px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}
.progress-icon {
  width: 59px;
  height: 59px;
}
.progress-icon circle {
  fill: none;
  stroke: rgba(0, 0, 0, 0.1);
  stroke-width: 2px;
  display: flex;
}
#progress-circle {
  stroke-dashoffset: 0;
  stroke-dasharray: 93.6;
  transition: stroke-dashoffset ease-in-out;
  stroke: var(--main-color);
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(-90deg);
  transform-origin: center;
}
#progress-scroll .icon {
  display: grid;
  place-items: center;
  position: absolute;
  inset: 0;
  margin: auto;
  padding: 0 !important;
  color: var(--main-color);
  border-radius: 50%;
  font-size: 18px;
  width: 41px;
  height: 41px;
}

/**** Contact Us ****/
.contact-hero {
  padding-block: 3rem;
}
.contact-hero .heading {
  text-align: center;
  margin-bottom: 4rem;
}
.contact-hero .heading h2 {
  max-width: 100%;
  margin-bottom: 4rem;
}
.contact-hero .heading i {
  font-size: 22px;
}
.contact-hero .feature-card {
  text-align: center;
}
.contact-hero .feature-card .icon:before {
  top: 10px;
}
.accordion-button {
  background: transparent !important;
  box-shadow: none !important;
  padding-block: 1.5rem;
}
.accordion-item {
  border: 0;
  border-bottom: 1px solid #c9c9c9;
  border-radius: 0 !important;
}
.contact {
  padding-block: 5rem;
}
.heading .subtitle {
  letter-spacing: 1.5px;
  font-weight: 500;
}
.contact .heading h2.title {
  max-width: 100%;
  font-size: clamp(26px, 4vw, 3.2rem);
  line-height: 1.2em;
  margin-bottom: 15px;
}
.contact .heading p.mb-0 {
  font-size: 17px;
  line-height: 1.8;
  color: var(--alt-color);
  font-weight: 300;
}
.contact-entry {
  padding-right: 4rem;
}
.contact .input-group {
  width: calc(50% - 0.75rem);
  -webkit-box-shadow: 0 15px 15px -14px rgba(0, 0, 0, 0.009);
  -ms-box-shadow: 0 15px 15px -14px rgba(0, 0, 0, 0.009);
  box-shadow: 0 15px 15px -14px rgba(0, 0, 0, 0.009);
}
.contact .input-group.textarea {
  width: 100%;
}
.contact input,
.contact textarea {
  border: 0;
  outline: 0;
  line-height: 1.5em;
  font-size: 16px;
  transition: ease 0.3s;
  padding-block: 15px;
  border-radius: 0;
  color: #969696;
  background-color: transparent;
  resize: none;
  box-shadow: none !important;
}
.contact input:is(:active, :focus) + .line:before,
.contact textarea:is(:active, :focus) + .line:before {
  width: 100%;
}
.contact input.is-invalid + .line,
.contact textarea.is-invalid + .line {
  background-color: #dc3545;
}
.contact .input-group-text {
  border: 0;
  background: transparent;
  border-radius: 0;
  font-size: 20px;
  color: #969696;
  padding-block: 1rem;
  align-items: flex-start;
}
.contact .input-group .line {
  display: block;
  height: 1px;
  width: 100%;
  position: relative;
  background-color: #e2e2e2;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 10;
  margin-top: -2px;
  margin-left: 0 !important;
}
.contact .input-group .line::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #1f1f1f;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.contact .input-group:hover .line::before {
  width: 100%;
}
.input-row {
  margin-bottom: 37px;
}
.contact-info li:not(:last-child) {
  margin-bottom: 15px;
}
.contact-info li {
  font-size: 18px;
  font-weight: 500;
}
.contact-info li i {
  font-size: 22px;
  padding: 5px;
  margin-right: 8px;
  vertical-align: middle;
  color: var(--main-color);
}
.contact .btn.primaryBtn.submit {
  padding: 12px 33px;
  font-size: 16px;
}
.contact .btn.primaryBtn.submit i {
  margin-right: 10px;
}
.contact .invalid-feedback {
  position: absolute;
  bottom: -25px;
  left: 0;
}

.countres {
  max-width: 80%;
  margin-inline: auto;
}
.conter-container {
  font-size: 44px;
  font-weight: 600;
}
.card-text.counter {
  font-weight: 700;
  font-size: 44px;
}
.counter-card > p {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--main-color);
}
.about-hero-content {
  background-color: #eff2f8;
  padding: 60px 60px 60px 150px;
  text-align: left;
  margin-left: -100px;
  position: relative;
  z-index: -1;
  line-height: 2.2rem;
  border-radius: 20px;
  width: 100%;
}
.about-hero-content .heading {
  width: 100%;
  text-align: left;
}
.about-hero-content .heading .title {
  font-weight: 600;
  color: #1c1c25;
}
.about-hero-content .heading .subtitle {
  letter-spacing: 1px;
}
.about-hero-content ul.noList li i {
  color: var(--main-color);
  font-size: 22px;
}
.about-hero-content ul.noList li span {
  width: calc(100% - 22px);
  font-size: 18px;
  color: #7b7e86;
}
.workflow-head {
  margin-bottom: 80px;
}
.workflow-head .team-snipt {
  margin-inline: 0;
  font-size: 18px;
  line-height: 33px;
}

.service-box-four {
  display: flex;
  margin-bottom: 40px;
}

.service-four-number {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  padding-right: 30px;
  border-right: 1px solid #e3e8f4;
  margin-right: 30px;
  color: #e3e8f4;
  position: relative;
}

.service-four-number:after {
  content: "";
  height: 50px;
  width: 1px;
  right: 0;
  background: var(--main-color);
  bottom: 4px;
  border-radius: 50%;
  position: absolute;
}

.service-four-title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 10px;
}
.services-four-des {
  color: #7b7e86;
  font-size: 18px;
  line-height: 30px;
}
.service-four-icon {
  margin-top: 25px;
}

.service-four-icon svg {
  height: 60px;
  width: 60px;
}

.row > div:nth-child(2n) .service-four-number:after {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: MOVE-AB;
  animation-name: MOVE-AB;
}

.row > div:nth-child(odd) .service-four-number:after {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: MOVE-AB;
  animation-name: MOVE-BA;
}

@-webkit-keyframes MOVE-AB {
  from {
    -webkit-transform: translateY(-140px);
    transform: translateY(-140px);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes MOVE-AB {
  from {
    -webkit-transform: translateY(-140px);
    transform: translateY(-140px);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes MOVE-BA {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(-140px);
    transform: translateY(-140px);
  }
}

@keyframes MOVE-BA {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(-140px);
    transform: translateY(-140px);
  }
}

.workflow-head .heading h2.title {
  max-width: 95%;
}
.aboutUs-section {
  padding-block: 100px;
  position: relative;
}
.aboutUs-section .quality-content {
  padding-inline: 0;
  margin-left: 0;
}
.aboutUs-section .qualities-list li:not(:last-child) {
  border: none;
}
.bg-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  z-index: -1;
  height: 100%;
  background: radial-gradient(at center right, #4268f0 17%, #4268f000 76%);
  opacity: 0.14;
}
.bg-pic {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 90% 50%;
  background-size: 13% auto;
}
.overlaped-pic {
  display: inline-block;
  text-align: right;
  width: 100%;
}
.overlaped-pic img {
  max-height: 600px;
  height: 100%;
  max-width: 100%;
  border-radius: 30px;
}
.small-img {
  position: absolute;
  bottom: -60px;
  left: -30px;
}
.small-img img {
  border-radius: 30px;
  border: 5px solid #ffff;
  max-height: 500px;
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  30% {
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px);
  }
  40% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
  50% {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
  }
  60% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  70% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounce {
  -webkit-animation: bounce 4s ease-in-out infinite;
  animation: bounce 4s ease-in-out infinite;
  width: 30px;
  height: 30px;
  stroke: #2d3443;
  stroke-width: 2px;
  margin-right: 12px;
}
/* Service Page */
.service-hero {
  padding-block: 50px;
}
.servic-hero-head .heading h2.title {
  max-width: 100%;
  font-weight: 600;
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  line-height: 3.3rem;
}
.servic-hero-head .heading h2.title span {
  color: var(--main-color);
}
.floating {
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}
.service-hero-thumb .floating {
  position: absolute;
  bottom: -30px;
  left: -30px;
  max-width: 200px;
  background-color: #fefefe;
  border-radius: 8px;
  box-shadow: 0 0 8px rgb(0 0 0 / 10%);
  padding: 5px 10px;
}
.service-hero-thumb > img {
  border-radius: 10px;
}
.servic-hero-head .hero-btn {
  margin-left: 0;
  padding: 10px 20px;
  font-size: 16px;
}

.approaches {
  padding-block: 30px;
}
.approaches .title {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
  font-size: clamp(2rem, 3.2vw, 2.4rem);
}
.approaches .items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.approaches .items .item {
  flex: 0 0 calc(50% - 10px);
}

@media (max-width: 767px) {
  .approaches .items .item {
    flex: 1 1 100%;
  }
}

.approaches .items .item__content {
  border-radius: 4px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: ease 0.2s;
}
.approaches .items .item__content {
  align-items: start;
  --w: 60px;
  gap: 25px;
}
.backend-page .approaches .items .item__content svg {
  width: var(--w);
  height: var(--w);
}
.backend-page .approaches .items .item__content .item__desc {
  width: calc(100% - var(--w) - 20px);
}

.approaches .items .item__content:hover {
  transform: translateY(-5px);
  background: #fefefe;
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.07);
}

.faq .heading h2.title {
  text-align: center;
  max-width: 100%;
  font-size: clamp(2rem, 3.2vw, 2.4rem);
}

@media (max-width: 1279px) {
  .approaches .items .item__content {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .approaches .items .item__content {
    padding: 10px;
    text-align: center;
    align-items: center;
  }
  .backend-page .approaches .items .item__content .item__desc {
    width: 100%;
  }
}

.approaches .items .item__content img {
  width: 100px;
  margin-right: 20px;
}

@media (max-width: 1279px) {
  .approaches .items .item__content img {
    margin-right: 0;
    margin-bottom: 32px;
  }
}

.approaches .items .item__content h3 {
  font-weight: 800;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 16px;
}

.approaches .items .item__content p {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
}

.approaches .items .item__content p span {
  color: rgb(22 106 234);
}

.approaches .actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.approaches .actions .action {
  padding: 12px 24px;
  min-width: 124px;
}

.our_solitions .team-snipt {
  text-align: center;
  max-width: 70%;
}
.our_solitions h2.title {
  max-width: 100%;
  text-align: center;
}
.service-four-icon svg.test {
  height: 50px;
}

.text-box {
  padding: 64px 0;
}

@media (max-width: 1200px) {
  .text-box {
    padding: 32px 0;
  }
}

.text-box .accent-block {
  border-radius: 8px;
  height: 100%;
  padding: 64px;
  position: relative;
}

@media (max-width: 1200px) {
  .text-box .accent-block {
    margin-bottom: 24px;
    padding: 32px;
  }
}

@media (max-width: 991px) {
  .text-box .accent-block {
    height: auto;
  }
}

.text-box .accent-block:before {
  background-image: url(../img/white-ornament.svg);
  background-repeat: no-repeat;
  content: "";
  height: 272px;
  left: 0;
  position: absolute;
  top: 0;
  width: 272px;
}

.text-box .accent-block.dark {
  background-color: #1d1d1d;
  position: relative;
}
.text-box .accent-block.dark h2,
.text-box .description-block h3 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 36px;
}
.text-box .accent-block.dark p,
.text-box .description-block p {
  font-size: 1.2rem;
}
.text-box .description-block p {
  color: #696969;
}
.text-box .accent-block.dark h2,
.text-box .accent-block.dark h3,
.text-box .accent-block.dark p {
  color: #fff;
}
.text-box .accent-block.dark a.primaryBtn.btn {
  width: fit-content;
  font-size: 1.2rem;
  padding: 10px 20px;
}
.text-box .accent-block.dark h3,
.text-box .accent-block.dark p {
  margin-bottom: 60px;
}

.text-box .accent-block.accent {
  background: linear-gradient(270deg, rgba(255, 171, 0, 0.73), #ee9500);
}

.text-box .description-block {
  background-color: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  padding: 64px;
}

@media (max-width: 1200px) {
  .text-box .description-block {
    padding: 32px;
  }
}

@media (max-width: 991px) {
  .text-box .description-block {
    margin-bottom: 24px;
    padding: 24px;
  }
}

.text-box .description-block p:last-child {
  margin-bottom: 0;
}

.outsourcing {
  padding: 120px 0;
}

@media (max-width: 767px) {
  .outsourcing {
    padding: 40px 0;
  }
}

.outsourcing .container {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 80px;
}

@media (max-width: 767px) {
  .outsourcing .container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}

.outsourcing .container > div {
  height: 100%;
  flex: 1;
}

.outsourcing .title {
  text-align: left;
  font-weight: 700;
  margin-bottom: 25px;
}

.outsourcing .left {
  background: url(../img/languages-img.png) no-repeat center top;
  background-size: 400px;
  padding-top: 400px;
}
.outsourcing.ux-ui .left {
  background: url(../img/service-36.webp) no-repeat center top;
  background-size: 100%;
}

.outsourcing .left p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #9394a8;
  margin-bottom: 12px;
}

.outsourcing .left p:last-child {
  margin-bottom: 0;
}

.outsourcing .items .item {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.0705882353);
}

.item__desc {
  width: calc(100% - 100px);
}

.outsourcing .items .item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}
.item__content-text p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  color: #9394a8;
}

.outsourcing .items .item__content {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.outsourcing .items .item__content-counter span {
  display: block;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: var(--main-color);
  padding: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 38px;
  width: 32px;
  height: 32px;
}

.outsourcing .items .item__content h3 {
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 8px;
}

.service-info {
  padding-block: 2rem;
}
.service-info-title {
  text-align: center;
  font-weight: 800;
}
.service-info-title p {
  font-size: 2rem;
  opacity: 0.5;
  color: var(--main-color);
}
.service-info-title h3 {
  font-weight: 700;
  margin-bottom: 0;
}

.faq {
  padding-block: 4rem;
}
.cards-4__col {
  margin-top: 50px;
}

.card-4__icon {
  width: 75px;
  height: 75px;
}

.align-center .card-4__icon {
  margin-left: auto;
  margin-right: auto;
}

.card-4__title,
.card-4__desc {
  margin-top: 20px;
}

@media screen and (min-width: 768px) and (max-width: 829px) {
  .cards-4__row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
  }

  .cards-4__col {
    width: 100%;
    max-width: 50%;
    padding: 0 15px;
  }
}

@media screen and (min-width: 830px) {
  .card-4__icon {
    width: 50px;
    height: 50px;
  }

  .card-4__desc {
    margin-top: 15px;
  }
}

@media screen and (min-width: 1172px) {
  .cards-4__col {
    margin-top: 65px;
  }

  .card-4__icon {
    width: 60px;
    height: 60px;
  }

  .card-4__title {
    margin-top: 40px;
  }
}

@media screen and (min-width: 1650px) {
  .cards-4__col {
    margin-top: 80px;
  }

  .card__icon {
    width: 75px;
    height: 75px;
  }

  .card-4__title {
    margin-top: 56px;
  }

  .card-4__desc {
    margin-top: 16px;
  }
}

.api-box {
  display: grid;
  border-radius: 4px;
  place-content: center;
  padding: 40px;
  height: 100%;
  transition: ease 0.2s;
}
.api-box:hover {
  transform: translateY(-5px);
  background: #fefefe;
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.07);
}
.api-box img {
  height: 65px;
}

/**** Breake Points *****/

@media screen and (min-width: 768px) {
  /* Scrollbar custom */
  ::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 8px;
    height: 5px;
  }
  ::-webkit-scrollbar-track {
    background-color: #f7f8f9;
    box-shadow: inset 0 0 6px #f7f8f9;
  }
  body::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    border-radius: 80px;
  }
  :not(body)::-webkit-scrollbar-thumb {
    background-color: #ccc;
  }
}
@media screen and (max-width: 1200px) {
  .floatin-pic {
    width: 25vw;
  }
  .floatin-pic.pic-2 {
    right: -2vw;
    top: 3vw;
  }
  .floatin-pic.pic-1 {
    bottom: -10vw;
    left: -2vw;
  }
  .showcase-mockup {
    padding: 20vw;
  }

  .social-footer ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  .social-footer ul li {
    flex: 1 0 25%;
  }
  .showcase-item .showcaseBg {
    opacity: 1;
  }
  .showcase-description {
    left: 10px;
    bottom: 0;
  }
}
@media screen and (max-width: 991.9px) {
  .header .row.justify-content-center.align-items-center {
    padding-block: 10px;
  }
  ul.navbar-nav {
    height: calc(100dvh - 200px);
    overflow-y: auto;
    overflow-x: hidden;
  }
  .close-menu {
    display: block;
    width: 0;
    margin-right: auto;
  }
  .menu {
    display: none;
  }
  .social-list li a {
    font-size: 18px;
  }
  .spec-col.col.logo {
    max-width: 100%;
  }
  .offcanvas .spec-col.header-social {
    display: block;
    bottom: 0;
    inset-inline: 0;
    background-color: #fff;
    padding: 2rem;
    max-width: 100%;
    position: absolute;
  }
  .spec-col.logo,
  .spec-col.header-social {
    max-width: 50%;
  }
  .spec-col.col.logo a {
    position: absolute;
    inset-inline: 0;
    max-width: 130px;
    margin-inline: auto;
    display: block;
  }

  .heading h2.title,
  .showcase-head .heading h2.title {
    max-width: 100%;
  }
  .quality-content {
    margin-left: 0;
    margin-top: 2rem;
  }
  .showase-navigation {
    display: none !important;
  }
  .quality-thumb .thumb-caption h4.mb-0 {
    padding: 10vw 9vw;
    font-size: 8vw;
  }
  .member-card .member-info > *,
  .member-card .member-info .social li,
  .bg-colored {
    opacity: 1;
    top: 0;
  }
  .row.top-row,
  .row.bottom-row {
    padding: 0;
  }
  .row.top-row:after,
  .row.bottom-row:after {
    display: none;
  }
  .process-step .process-step-inner {
    animation: none !important;
    box-shadow: 0 3px 30px rgba(0, 0, 0, 0.07) !important;
  }
  .process-step-inner {
    margin-block: 10px;
  }
  .process-step-inner:after {
    display: none;
  }
  .timline-point {
    left: -42px;
    top: 50% !important;
    transform: translate(-50%, -50%);
    animation: none !important;
    background-color: rgba(22, 106, 234, 0.2);
  }
  .vid-presntation {
    text-align: center;
    padding: 30px 20px;
    display: grid;
    place-items: center;
  }
  .process-step .timline-point:before {
    background-color: var(--main-color) !important;
  }
  .extra-row {
    position: relative;
    padding: 0 0 0 59px;
    margin-block: 10px;
  }
  .extra-row::before {
    content: "";
    position: absolute;
    bottom: 0;
    top: auto;
    left: 28px;
    height: 100%;
    width: 4px;
    display: block;
    background-color: #cecece;
  }
  .service-card {
    box-shadow: 0 3px 30px rgba(0, 0, 0, 0.05);
  }
  .service-card .card-content .btn.service-btn span {
    margin-left: 0;
  }
  .contact .input-group {
    width: 100%;
  }
  .nav-link {
    font-size: 16px;
    padding-block: 8px;
  }
  .offcanvas-body {
    padding: 0;
    flex: 0 0 auto;
  }
  main {
    padding-top: 70px;
  }
  .header {
    padding-block: 0 !important;
  }
  .team .row {
    gap: 20px;
  }
  .about-hero-content {
    width: 100%;
    margin: 0;
    padding: 25px 0;
    margin-top: 35px;
  }
  .about-hero-content .heading .title,
  .about-hero-content .team-snipt {
    margin-bottom: 20px !important;
  }
  .workflow-head .heading h2.title {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: 2.3rem;
  }
  .small-img {
    inset-inline: auto;
    bottom: -90px;
  }
}
@media screen and (max-width: 767px) {
  .servic-hero-head .heading h2.title {
    font-size: 27px;
    line-height: 1.8;
  }
  .servic-hero-head .hero-btn {
    margin-inline: auto;
  }
  .service-four-number {
    font-size: 30px;
    padding-right: 15px;
    margin-right: 15px;
  }
  .spec-col.header-social .primaryBtn span {
    display: none;
  }
  .spec-col.header-social .primaryBtn i {
    margin: 0 !important;
  }
  .quality-thumb .thumb-caption {
    max-width: 80%;
  }
}
