@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

body {
  font-family: "Poppins", serif;
}

a {
  text-decoration: none;
  display: inline-block;
}

span {
  display: inline-block;
}

img {
  width: 100%;
  display: block;
}

ul {
  padding: 0;
  margin: 0;
}

p {
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

::-webkit-scrollbar {
  width: 10px;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--c1);
  border-radius: 0;
}

:root {
  /* Black */
  --c1: rgb(0 0 0);
  /* White */
  --c2: rgb(255 255 255);
  /* Main-Color */
  --c3: linear-gradient(270deg, #488589 0%, #4ca7ad 99%);
  /* SECondry Color */
  --c4: #488589;
  --custbg: #e2f1f2;
  /* Background Color */
  --bg: #121212;
  /* Font Montserrat */
  --f1: "DM Sans";
  /* Font Outfit */
  --f2: "Poppins";
}

.wrapper {
  overflow: hidden !important;
}

.spacing {
  padding: 100px 0px;
}

.web-btn a {
  background: var(--c3);
  color: var(--c2);
  border-radius: 30px;
  padding: 12px 30px;
  font-size: 18px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.6s ease-in-out, box-shadow 0.3s ease-in-out, color 0.3s ease-in-out;
  border: 1px solid var(--c4);
  text-transform: capitalize;
  font-weight: 500;
}

.web-btn a::before {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  bottom: 0;
  left: 0;
  border-right: 50px solid transparent;
  border-bottom: 50px solid vaR(--c2) !important;
  transform: translateX(-100%);
  transition: transform 0.6s ease-in-out;
  z-index: -1;
}

.web-btn a:hover {
  color: var(--c4);
  box-shadow: 0px 0px 4px var(--c4);
}

.web-btn a:hover::before {
  transform: translateX(0);
}

.web-title .letter {
  display: inline-block;
  overflow: hidden;
}

.web-title .letter-inner {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  color: inherit;
}

.web-title .text-highlight {
  color: vaR(--c4);
  display: inline-block;
}

/* loader-css */

div#preloader {
  position: fixed;
  z-index: 999999999;
  background: var(--c2);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}

.custom-loader {
  width: 50px;
  height: 50px;
  display: grid;
  border: 4px solid #0000;
  border-radius: 50%;
  border-color: var(--c1) #0000;
  animation: s6 1s infinite linear;
}

.custom-loader::before,
.custom-loader::after {
  content: "";
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
}

.custom-loader::before {
  border-color: #488589 #0000;
  animation: inherit;
  animation-duration: 0.5s;
  animation-direction: reverse;
}

.custom-loader::after {
  margin: 8px;
}

@keyframes s6 {
  100% {
    transform: rotate(1turn);
  }
}

#preloader.remove {
  opacity: 0 !important;
  visibility: hidden !important;
}

.thank-you {
  padding: 120px 0px 70px 0px;
}

/* Responsive Menu */

.responsive-btn a {
  display: block !important;
}

.responsive-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--c1);
  z-index: 9999;
  transition: all 0.5s;
}

.responsive-links ul li ul {
  display: none;
}

.responsive-links ul li i {
  transition: transform 0.3s ease;
}

.responsive-menu.active {
  left: 0;
  width: 66%;
  box-shadow: 10px 10px 30px #000;
}

.responsive-links ul li ul li {
  list-style: disc;
  color: var(--c3);
}

.responsive-menu-main {
  height: 100%;
  padding: 30px;
  position: relative;
  background: var(--c2);
  width: 100%;
  overflow: hidden;
}

.responsive-logo {
  width: 203px;
  margin: 0 auto;
  margin-bottom: 10px;
  margin-top: 13px;
}

.responsive-links ul li a {
  color: var(--c1);
  padding: 17px 0px;
  display: block !important;
  font-weight: 500;
  transition: padding 0.3s ease;
  position: relative;
}

.responsive-links ul li {
  border-bottom: 1px solid #8080803d;
  position: relative;
}

.resp-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--c4);
  padding: 6px 0px;
}

.responsive-icon a i {
  display: block;
}

.responsive-icon {
  position: absolute;
  top: 50px;
  right: 60px;
}

.responsive-icon a {
  color: var(--c3);
  font-size: 30px;
}

.responsive-links ul li:last-child {
  border: 0;
}

.responsive-links ul li a:hover {
  background: #efefef99;
  padding-left: 10px;
}

body.scroll-stop {
  overflow: hidden;
}

.resp-social ul {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.resp-social ul li a i {
  display: block;
}

.resp-social ul li a {
  padding: 10px;
  color: var(--c2);
  font-size: 24px;
}

.responsive-links ul li i {
  position: absolute;
  right: 0;
  top: 50%;
  color: var(--c3);
  transform: translateY(-50%);
  padding-right: 14px;
  font-size: 18px;
}

.responsive-links ul li ul {
  padding-left: 30px;
  border-top: 1px solid #8080803d;
}

.responsive-links ul li i.active::before {
  content: "\f068";
}

.responsive-btn a {
  color: var(--c2);
  font-size: 31px;
  text-align: end;
}

.responsive-links li.has-submenu:active ul {
  display: block;
  margin-left: 20px;
}

.responsive-links li.has-submenu ul {
  transition: all 0.2s ease-in-out;
}

.responsive-links .submenu {
  display: none;
  padding-left: 35px;
  transition: all 0.3s ease-in-out;
}

.responsive-links .has-submenu.active>.submenu {
  display: block;
}

.submenu-icon {
  font-weight: bold;
}

/* Drop Down Menu */

.header-menu ul li ul {
  position: absolute;
  flex-direction: column;
  width: 245px;
  border: unset;
  z-index: 999;
  border-radius: 10px;
  margin-top: 7px;
  transform: scaleY(0);
  transition: all 0.7s;
  background-color: var(--c2);
  transform-origin: top;
  padding: 0;
  overflow: hidden;
  gap: 0;
  box-shadow: 0px 7px 10px #00000036;
}

.header-menu ul li ul li a:hover {
  background: var(--c3);
  border-radius: 0;
  color: var(--c2);
}

.header-menu ul li ul li a {
  display: block;
  color: var(--c1);
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
  border-top: 1px solid #eee;
}

.header-menu ul li:hover ul {
  transform: scaleY(1);
}

/* Section-header */

.header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
  padding: 40px 0px;
}

.banner-shape-image {
  position: absolute;
  width: 270px;
  top: -130px;
  right: -100px;
}

.banner-shape-2-image {
  position: absolute;
  bottom: 70px;
  left: 70px;
  width: 690px;
  z-index: 2;
  animation: zoomInOut 3s ease-in-out infinite;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05) translateX(40px);
  }

  100% {
    transform: scale(1) translateX(0px);
  }
}

.header-menu ul {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.header-menu ul li a {
  font-weight: 500;
  font-size: 18px;
  color: var(--c2);
  padding: 8px 10px;
  position: relative;
}

.header-menu>ul>li>a::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  position: absolute;
  left: -3px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
  border-radius: 50%;
  opacity: 0;
}


.custom-nav a.active {
  background-color: white;
  color: black;
}

.custom-nav a:hover:before {
  opacity: 1;
}

/* Section-banner */

.banner {
  position: relative;
  background: linear-gradient(270deg, #488589 0%, #4ca7ad 99%);
  overflow: hidden;

  .banner {
    position: relative;
    background: linear-gradient(270deg, #488589 0%, #4ca7ad 99%);
  }

  .banner {
    position: relative;
    background: linear-gradient(270deg, #488589 0%, #4ca7ad 99%);
  }

  .banner {
    position: relative;
    background: linear-gradient(270deg, #488589 0%, #4ca7ad 99%);
  }

  .banner {
    position: relative;
    background: linear-gradient(270deg, #488589 0%, #4ca7ad 99%);
  }
}

.banner-title h1 span {
  color: var(--c1);
}

.banner-content {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.banner-btn {
  text-align: start;
}

.ban-service-item span {
  font-family: var(--f1);
  font-weight: 600;
  font-size: 18px;
  padding: 8px 30px;
  border: 1px solid var(--c2);
  border-radius: 30px;
  color: var(--c2);
  transition: all 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.banner-image-main {
    position: absolute;
    bottom: -1px;
    right: 60px;
    width: 900px;
}

.banner-title h6 {
  background: var(--c2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-btn a::before,
.banner-btn a::before {
  border-bottom: 50px solid vaR(--c4) !important;
}

.header-btn a:hover,
.banner-btn a:hover {
  color: var(--c2);
  box-shadow: 0 0 3px #488589;
  border-color: var(--c2);
}

.header-btn a,
.banner-btn a {
  color: var(--c4);
  background: var(--c2);
}

.header-btn {
  text-align: end;
}

.banner-title {
  text-align: start;
}

.banner-title p {
    color: var(--c2);
    margin-bottom: 25px;
    font-size: 18px;
}

.marquee {
  margin-top: 130px;
}

.marquee__content {
  width: 300% !important;
  display: flex;
  animation: marquee 14s linear infinite forwards;

  &:hover {
    animation-play-state: paused;
  }
}

.list-inline {
  display: flex;
  gap: 10px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-26.6%);
  }
}

.banner-title>span {
    text-transform: capitalize;
    color: var(--c2);
    font-family: var(--f1);
    font-size: 20px;
    font-weight: 600;
    position: relative;
    padding-left: 50px;
    margin-bottom: 15px;
}

.banner-title h1 {
    font-weight: 600;
    font-size: 56px;
    color: var(--c2);
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.banner-title>span::after {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    border: 1px dashed var(--c2);
}

.banner-title span::before {
  right: -80px;
}

.marquee__content ul {
  display: flex;
  gap: 20px;
}

/* platform-section */

.platform {
  position: relative;
}

.platform-after {
  position: absolute;
  right: 0;
}

.platform-before {
  width: 400px;
  position: absolute;
  left: 0;
  top: -30px;
}

.platform-image-main {
  position: relative;
}

.platform-mobile img {
  width: 260px;
  margin: 0 auto;
  position: relative;
}

span.right-arrow:after {
  content: "";
  width: 61px;
  height: 2px;
  position: absolute;
  right: 3px;
  top: 49%;
  background: var(--c3);
  transform: translateY(-50%);
}

.contablie i {
  padding-left: 30px;
  font-size: 30px;
  margin-left: -10px;
}

.contablie {
  display: flex;
  gap: 40px;
  margin: 3px 0px;
  align-items: center;
}

.contablie span {
  background: var(--c3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
}

.contablie p {
  font-size: 18px;
  margin: 0;
}

.platform-content strong {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.1;
  color: var(--c1);
}

.platform-content {
  margin: 100px 0px 0px 20px;
}

.platform-content p {
  margin-bottom: 15px;
}

.client-review {
  background: linear-gradient(90deg, #ff967c 0%, #ff5c56 99.2%, #ff5954 105.54%);
  text-align: center;
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 25px;
  top: 305px;
  border-radius: 20px;
  color: var(--c2);
  width: 200px;
  height: 180px;
  justify-content: center;
}

.client-image img {
  width: 40px;
  margin-left: -10px;
}

.plat-form-head {
  position: relative;
  left: -250px;
}

.client-image {
  display: flex;
  justify-content: center;
  margin: 9px 0px 0px 15px;
}

.client-review span:first-child {
  font-family: var(--f1);
  font-weight: 700;
  font-size: 38px;
  line-height: 1.1;
}

/* Case-section */

.case-main-bg {
  background-color: #121212de;
  background-image: url(../images/bg-image.png);
  padding: 70px 40px 0px;
  height: 650px;
  border-radius: 30px;
  position: relative;
}

.case-studio-main {
  background-color: var(--custbg);
  border-radius: 24px;
  padding: 30px;
  height: 550px;
  overflow: hidden;
  box-shadow: 0px 20px 22px #bbbbbb7d;
  transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
}

.project-head p,
.case_head p {
  color: var(--c2);
}

.case-image {
  width: 260px;
  margin: 0 auto;
}

.case_head {
  margin-bottom: 50px;
}

.case_head h2, .project-head h2 {
  color: var(--c2) !important;
}

.case-studion-content h4 {
    font-size: 26px;
    color: var(--c1);
    font-family: var(--f1);
    font-weight: 700;
    margin-bottom: 10px;
}

.case-studion-content p {
    margin-bottom: 25px;
}

.case-main-bg .row .col-lg-4:nth-child(2) .case-studio-main {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
}

.case-bg {
    position: absolute;
    right: -70px;
    top: -120px;
    width: 240px;
}

.Case {
    padding-bottom: 200px;
}

.case_head span.sub-head, .project-head span.sub-head {
    color: var(--c2) !important;
}
.case_head span.sub-head::before, .project-head span.sub-head::before {
    border-color: var(--c2) !important;
}

/* cross-section */

.cross-main h4 a {
    font-size: 24px;
    margin: 20px 0px 12px;
    font-family: var(--f1);
    font-weight: 600;
    color: var(--c1);
    transition: all .5s;
}

.cross-head {
    padding-right: 250px;
}

.cross-image img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* .cross-main::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../images/cross-bg.png);
  background-color: var(--c2);
  z-index: -1;
  border-radius: 20px;
} */

.cross-main {
    padding: 30px 40px;
    border-radius: 20px;
    position: relative;
    box-shadow: 6px 8px 26px 6px #c1c1c1a6;
    transition: all 0.5s;
}

.cross-main p{
    transition: all .5s;
}

.cross-main:hover h4 a, .cross-main:hover p {
    color: var(--c2);
}

.cross-main:hover .crossplus a {
    background-color: var(--c2);
    color: var(--c4);
}

.crossplus a {
    background: var(--c4);
    border-radius: 4px;
    color: var(--c2);
    transition: all .5s;
    width: 40px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.title-gap {
    margin-bottom: 50px;
}

.crossplus {
  text-align: start;
  margin-top: 20px;
}

.cross-bg {
  position: absolute;
  right: 0;
  bottom: 0;
}

.cross-main:hover {
    background-color: var(--c4);
}

/* our-projec */

.our-project {
  position: relative;
}

.project-head h6,
.project-head h2 {
  background: var(--c2);
  -webkit-background-clip: text;
  color: var(--c2);
}

.project-head nav {
  margin-top: 20px;
}

.project-image {
    overflow: hidden;
    position: absolute;
    right: 0;
    width: 100%;
    top: 0;
    height: 100%;
}

.project-content {
  position: relative;
  left: 0;
  top: 0;
  z-index: 99;
}

.project-image img {
    background: var(--c3);
    height: 100%;
}

.web-Project .swiper-wrapper {
  padding-left: 120px;
}

.project-bg {
  position: absolute;
  right: 0px;
  top: -120px;
  width: 200px;
}

.project-head h2 {
  margin-bottom: 20px;
}

/* packages-section */

.package {
  position: relative;
}

.package-after {
  position: absolute;
  right: 260px;
  width: 340px;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
  rotate: -245deg;
}

.package-before {
  position: absolute;
  left: 0;
  top: 0;
  width: 400px;
  z-index: -1;
}

.package-tabs {
    margin: 40px 0px;
}

.package-head h6 {
    padding-left: 0;
}

.package-head h6::before {
    left: -47px;
}

.basic-package-main {
    background: var(--custbg);
    padding: 60px 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    transition: all 0.4s ease-in-out;
}

.package-list ul li:last-child {
    margin-bottom: 0px;
}

.basic-package {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #c1c1c12e;
    padding-bottom: 30px;
    margin-bottom: 20px;
    align-items: center;
}

.basic-package h6 {
    font-family: var(--f1);
    font-weight: 700;
    font-size: 24px;
    background: var(--c3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 1px solid #71b8bd;
    padding: 10px 30px;
    border-radius: 30px;
}

.basic-package span {
    font-weight: 600;
    font-size: 20px;
    color: var(--c1);
}

.package-list {
    padding-bottom: 30px;
    overflow-y: scroll;
    height: 300px;
    margin-right: -28px;
    margin-bottom: 10px;
}

.package-list::-webkit-scrollbar {
    width: 10px;
    height: 2px;
    background-color: transparent;
    margin: -10px;
}

.package-list::-webkit-scrollbar-thumb {
    background: var(--c3);
    border-radius: 10px 0px 0px 10px;
}

.package-list ul li {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
    color: var(--c1);
}

.package-list ul li:before {
    content: "";
    background-image: url(../images/verified.png);
    top: 1px;
    height: 15px;
    width: 15px;
    position: absolute;
    left: 0px;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 6px;
}

.package-contact {
    border-top: 2px solid #dce9e9;
    padding-top: 30px;
    display: flex;
    align-items: center;
}

.package-contact a.web-btn:hover::before {
    border-color: var(--c3);
}

.package-contact.web-btn a:after {
    background: transparent;
}

.package-icon:after {
    content: "";
    width: 50px;
    height: 2px;
    position: absolute;
    left: 12px;
    top: 10px;
    background: var(--c1);
}

.package-icon {
    position: relative;
}

.package-contact i {
    margin-left: 50px;
    color: var(--c1);
}

.package-contact span {
    background: var(--c3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--f1);
    font-weight: 600;
    font-size: 22px;
    letter-spacing: -1px;
    margin-left: 20px;
}

/* contact-section */

.contact-item a {
    font-weight: 500;
    font-size: 18px;
    color: var(--c1);
    transition: all .5s;
}

.contact-item i {
    background: var(--c3);
    border-radius: 50%;
    color: var(--c2);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
}

.contact-item span {
    font-weight: 500;
    font-size: 18px;
    color: var(--c1);
}

.contact-text a:hover {
    color: var(--c4);
}

.contact-content {
    margin-top: 40px;
    padding-right: 60px;
}

.contact-item {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.icon-rotate i {
    transform: rotate(95deg);
}

.web-input input,
.web-input textarea {
    border-bottom: 2px solid #c1c1c1 !important;
    border: unset;
    width: 100%;
    padding: 20px 10px;
    resize: none;
    outline: 0;
    color: #ffff;
    background: transparent;
}

.web-btn-input input[type="submit"]:hover {
    background: var(--c2);
    color: var(--c1);
}

.web-btn-input input[type="submit"] {
    background: var(--c4);
    border: unset;
    padding: 12px 30px;
    font-size: 18px;
    color: var(--c2);
    border-radius: 40px;
    font-family: var(--f1);
    font-weight: 500;
    transition: all .5s;
}

.web-input input::placeholder,
.web-input textarea::placeholder {
    color: var(--c2);
}

.web-btn-input {
    margin-top: 30px;
}

.contact-bg {
    position: absolute;
    right: 0;
    top: 50%;
    width: 50%;
    z-index: -1;
    height: 440px;
    transform: translateY(-50%);
}

.contact-form {
    padding: 30px 0px 30px 20px;
}

.contact-us-sec {
    position: relative;
}

.contact-inner-bg {
    position: absolute;
    right: -70px;
    top: -110px;
    width: 200px;
}

.contact-before {
    position: absolute;
    left: 40px;
    top: -145px;
    width: 250px;
    rotate: 17deg;
    z-index: -1;
}

/* footer-section */

.footer {
    background: url(../images/bg-image.png);
    background-color: #000000d1;
    border-radius: 30px 30px 0px 0px;
    position: relative;
}

.footer-before {
    position: absolute;
    left: -70px;
    bottom: -100px;
    width: 200px;
    rotate: 115deg;
}

.footer-item p {
    color: var(--c2);
    margin: 20px 0px;
}

.footer-icon-services ul {
    display: flex;
    gap: 15px;
}

.footer-item span {
    font-weight: 500;
    font-size: 24px;
    color: var(--c2);
}

.footer-links {
    margin-top: 30px;
}

.footer-links ul li a:hover:before {
    left: 0px;
}

.footer-links ul li a:hover {
    padding-left: 15px;
    color: #488589;
}

.footer-links ul li a:before {
    content: "-";
    width: 100%;
    height: 100%;
    position: absolute;
    left: -10px;
    top: 0;
    color: #488589;
    transition: all 0.5s ease-in-out;
}

.footer-links ul li a {
    margin-bottom: 5px;
    color: var(--c2);
    position: relative;
    overflow: hidden;
    transition: all .5s;
}

.footer-links.contact a,
.footer-links.contact span {
    font-weight: 400;
    font-size: 16px;
    color: var(--c2);
    transition: all .5s;
}

.footer-links.contact a:hover,
.footer-links.contact span:hover {
    color: #488589;
}

.footer-contact-item i {
    background: var(--c3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-contact-item {
    display: flex;
    gap: 13px;
    margin-bottom: 12px;
}

.footer-image {
    width: 180px;
    margin: 0 auto;
}

.footer-bottom {
    background: linear-gradient(270deg, #488589 0%, #4ca7ad 99%);
    border-radius: 50px;
    padding: 20px 30px;
    margin-top: 40px;
}

.footer-bottem-item-right ul {
    display: flex;
    gap: 20px;
    justify-content: end;
}

.footer-bottem-item-right ul li a {
    color: var(--c2);
    padding-right: 20px;
    transition: all .5s;
}

.footer-bottem-item-right ul li:last-child a {
    padding-right: 0px;
}

.footer-bottem-item-right ul li:first-child {
    border-right: 1px solid #c1c1c1;
}

.footer-bottom-item span {
    font-weight: 400;
    color: var(--c2);
}

.footer-bottom-item span a {
    color: var(--c2);
    transition: all 0.5s ease-in-out;
    font-weight: 600;
}

.footer-bottom-item span a:hover,
.footer-bottem-item-right ul li a:hover {
    color: var(--c1);
}

/* Services Section */

.inner-banner-title h6 {
    background: var(--c2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.inner-banner-title h6::before {
    content: unset;
}

.inner-banner {
    background-color: #121212e3;
    position: relative;
    height: 710px;
}

.inner-banner .banner-image {
    height: 100%;
}

.reflects p {
    color: var(--c1) !important;
}

.reflects-head h2 {
    margin-bottom: 15px;
}

.reflects-head {
    margin-bottom: 50px;
}

.reflects-content h2 {
    margin-bottom: 20px;
}

.swiper-wrapper-none {
    display: flex;
    width: 400px;
    gap: 48px;
}

.our-project-services {
    display: flex;
    gap: 30px;
}

.services-project {
    position: relative;
    margin-bottom: 200px;
}

.services-project:before {
    background: var(--c3);
    content: "";
    width: 100%;
    height: 700px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    border-radius: 30px;
}

.services-project:after {
    content: "";
    background-image: url(../images/bg-image.png);
    width: 100%;
    height: 700px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    border-radius: 30px;
}

.our-project-services a img {
    border: 6px solid rgba(243, 251, 255, 1);
    border-radius: 30px;
}

/* Mobile App */

.project-head.web-title h6:before {
    border-color: var(--c2);
}

.package-head.web-title h6::after {
    content: "";
    position: absolute;
    right: -45px;
    top: 50%;
    transform: translatey(-50%);
    border: 1px dashed #4ca2a8;
    width: 39px;
}

.project-head.web-title h6:before {
    border-color: var(--c2);
}

.package-head.web-title h6::after {
    content: "";
    position: absolute;
    right: -45px;
    top: 50%;
    transform: translatey(-50%);
    border: 1px dashed #4ca2a8;
    width: 39px;
}

.case_head.web-title h6::before {
    border-color: var(--c2);
}

.platform-content span {
    font-weight: 700;
}

.cross-cuts-arrow .swiper-button-next,
.cross-cuts-arrow .swiper-button-prev {
    position: unset;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c2);
    background: var(--c3);
    width: 50px;
    height: 50px;
    border-radius: 8px;
    transition: all 0.4s ease-in-out;
}

.cross-cuts-arrow {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: end;
}

.cros-platform .swiper {
    overflow: visible;
}

.cross-cuts-arrow .swiper-button-next:after,
.cross-cuts-arrow .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 900;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: "next";
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: "prev";
}

.portfolio-item a {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    /* border: 1px solid #c1c1c1; */
    position: relative;
}

.portfolio-item img {
    height: 560px;
    object-position: top;
    transition: all 3s;
    object-fit: cover;
}

.portfolio-item:hover img {
    object-position: bottom;
}

.swiper.web-Project .swiper-wrapper .swiper-slide {
    width: 400px;
}

.cuts-arrow:hover {
    transform: scale(107%);
    box-shadow: 2px 8px 12px #0000004f;
}

.footer-icon-services ul li a {
    border: 1px solid var(--c2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    transition: all 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
    font-size: 19px;
    color: #4ca7ad;
}

.inner-banner-title.banner-title h6 {
    padding: 0;
}

.services-project.inr-service {
    margin-bottom: 100px;
}

.cust-gap {
    row-gap: 24px;
}

.cross-cuts-arrow.branding-arrow {
    display: flex;
    gap: 10px;
    position: unset;
    align-items: center;
    justify-content: end;
}

.inner-banner.contact-us-iner {
    height: 500px;
    overflow: hidden;
}

.inner-banner.contact-us-iner .banner-image {
    height: 500px;
    object-fit: cover;
}

.Process {
    padding: 100px 0px;
    position: relative;
}

.process-border-image {
    position: absolute;
    width: 1334px;
    height: 250px;
    left: 50%;
    transform: translateX(-50%);
    top: 65px;
    z-index: -1;
}

.process-border-image img {
    height: 100%;
    object-fit: fill;
}

.process-content h4 {
    font-size: 26px;
    font-weight: 600;
    padding-bottom: 10px;
}

.process-content {
    padding-left: 10px;
}

.process-content p {
    font-size: 15px;
    color: #333333;
}

.process-box {
    transition: all 0.3s;
}

.process-box:hover {
    transform: translateY(-20px) scale(95%);
    border-radius: 23px;
}

.Process .row .col-lg-3:nth-child(2) .process-box:hover {
    transform: translateY(20px) scale(0.95);
}

.Process .row .col-lg-3:nth-child(4) .process-box:hover {
    transform: translateY(5px) scale(0.95);
}

.slide-about a::before {
    display: none;
}

.process-box:hover h4 {
    color: var(--c4);
}

.process-before {
    position: absolute;
    left: -100px;
    width: 410px;
    bottom: -140px;
}

.process-after {
    position: absolute;
    right: -10px;
    top: 10px;
    width: 210px;
    transform: rotate(125deg) !important;
}

/* graphic-PORTFOLIO */

.graph-btns ul li a {
    font-weight: 500;
    font-size: 18px;
    color: var(--c3);
    padding: 10px 30px;
    border-radius: 50px;
    transition: all 0.5s;
    border: 1px solid rgb(167 167 167 / 34%) !important;
}

.platform.web-btn {
    padding-top: 20px;
}

.case-studion-content {
    text-align: center;
}

.cros-platform {
    position: relative;
}

.cros-platform-shape-image {
    position: absolute;
    left: -190px;
    width: 570px;
    bottom: -260px;
}

.portfolio-item a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    /* background: linear-gradient(180deg, rgba(243, 251, 255, 0) 40%, #ffffff 100%); */
}

.package-head {
    text-align: center;
}

.project-slider-arrow .swiper-button-next,
.project-slider-arrow .swiper-button-prev {
    color: var(--c4);
    background: var(--c2);
}

.case-studio-main:hover {
    transform: translateY(15px);
    box-shadow: 0px -8px 14px #c1c1c142;
}

.basic-package-main:hover {
    box-shadow: 0px 0px 20px var(--c4);
}

.footer-icon-services ul li a:hover {
    background: #4ca7ad;
    color: vaR(--c2);
    border-color: var(--c2);
    box-shadow: 0px 0px 10px vaR(--c2);
}

/* SERVICES PAGE (MOBILE DEV) */

.inner-banner-title h2 {
    color: vaR(--c2);
    padding-right: 10px;
}

.inner-banner-title>span::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 54px;
    height: 0px;
    right: -67px;
    border-bottom: 3px dashed;
    transform: translateY(-50%);
}

.our-project-services .project-image {
    height: -webkit-fill-available;
}

.our-project-services .project-image img {
    object-fit: fill;
}

.responsive-links::-webkit-scrollbar {
    width: 3px;
    position: absolute;
    right: -10px;
    top: 0;

}

.responsive-links::-webkit-scrollbar-track {
    background: vaR(--c4);
    border-radius: 4px;
}

.responsive-links::-webkit-scrollbar-thumb {
    background-color: var(--c3);
    border-radius: 4px;
}

.responsive-links::-webkit-scrollbar-thumb:hover {
    background-color: #008c96;
}







/* WARIS CSS */

/* INNER BANNER CSS */

.bg-prop {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cust-inner-banner {
  padding-top: 80px;
  position: relative;
}

.cust-inner-banner-title h1 {
  color: var(--c2);
  font-weight: 700;
  font-size: 60px;
  font-family: var(--f1);
}

.cust-inner-banner .banner-shape-2-image {
  left: 120px;
}

/* FOUR WIDG SEC */

.cust-four-widg-item h2 {
  font-family: var(--f1);
  color: var(--c1);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 10px;
}

.cust-four-widg .container-fluid {
  position: relative;
}

.cust-four-widg-line {
  position: absolute;
  top: -35px;
  left: 0px;
  width: 100%;
  height: 150%;
}

.cust-four-widg-item {
  padding: 0px 20px;
}

.cust-four-widg-line img {
  height: 100%;
}

.cust-four-widg {
  padding: 140px 0px;
}

.cust-inner-banner-img {
  width: 500px;
  margin-left: auto;
}

/* SECTION CONTENT BASE */

.cust-cont-base-img {
  padding-right: 40px;
}

.web-title span.sub-head {
  text-transform: capitalize;
  color: var(--c4);
  font-family: var(--f1);
  font-size: 20px;
  font-weight: 600;
  position: relative;
  padding-left: 50px;
  margin-bottom: 15px;
}

.web-title span.sub-head::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
  border: 1px dashed var(--c4);
}

.web-title h2 span {
  color: var(--c4);
}

.web-title h2 {
  font-family: var(--f1);
  font-weight: 600;
  font-size: 50px;
  color: var(--c1);
  line-height: 1.1;
  text-transform: capitalize;
}

.web-title:has(p) h2 {
  margin-bottom: 20px;
}

.cust-cont-base-content p {
  margin-bottom: 15px;
}

.upper-btn-gap {
  margin-top: 30px;
}

/* SECTION COUNTER */

.cust-counter-item {
  text-align: center;
}

.cust-counter-item h2 {
  color: var(--c1);
  font-weight: 600;
  font-size: 70px;
  font-family: var(--f1);
}

.cust-counter-item p {
  color: gray;
  margin-top: 10px;
  font-size: 18px;
}

/* SECTION OUR STORY */

.cust-bg {
  background-color: #e2f1f2;
}

.cust-story-para P {
  margin-bottom: 15px;
}

.cust-story-para {
  margin-bottom: 70px;
}

.cust-story-img img {
  transition: all .7s;
}

.cust-story-img:hover img {
  transform: scale(1.1);
}

.cust-story-img {
  overflow: hidden;
}

.cust-story-img-three {
  margin-right: 120px;
}

/* SECTION CUST VISION */

.cust-vision-content p {
  margin-bottom: 15px;
}

.cust-vision-content {
  padding-left: 30px;
}

.contact-us-sec .contact-head {
  padding-right: 60px;
}

.contact-bg img {
  height: 100%;
}

.web-title .sub-head-both {
    text-transform: capitalize;
    color: var(--c4);
    font-family: var(--f1);
    font-size: 20px;
    font-weight: 600;
    position: relative;
    margin-bottom: 15px;
    padding: 0px 50px 0px 50px;
}
.web-title .sub-head-both::before, .web-title .sub-head-both::after {
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    border: 1px dashed var(--c4);
}
.web-title .sub-head-both::after {
    right: 0;
}
.web-title .sub-head-both::before {
    left: 0;
}

/* SECTION TABS BUTTONS */

.cust-tabs-btns ul, .package-tabs-btns .nav-tabs {
    gap: 20px;
    justify-content: center;
    border: 0;
}
.cust-tabs-btns ul li button, .package-tabs-btns button {
    border-radius: 50px !important;
    border: 1px solid var(--c2) !important;
    padding: 10px 30px;
    font-family: var(--f1);
    font-weight: 600;
    color: var(--c2);
}
.cust-tabs-btns, .package-tabs-btns .nav-tabs {
    margin: 40px 0px;
}
.cust-tabs-btns ul li button.active {
    color: var(--c4) !important;
}
.cust-tabs-btns ul li button:hover {
    color: var(--c2);
}
.package-tabs-btns button {
    border-color: var(--c4) !important;
    color: var(--c4);
}
.package-tabs-btns button.active{
    color: var(--c2) !important;
    background-color: var(--c4) !important;
}
.package-tabs-btns button{
    color: var(--c4) !important;
}
.cust-tabs-btns ul {
    justify-content: flex-start;
}
.cust-map-item iframe {
    display: block;
    width: 100%;
    height: 400px;
}

/* SECTION SINGLE SERVICE */

.single-serv-detail-content h3 {
    color: var(--c1);
    font-family: var(--f1);
    font-weight: 600;
    margin-bottom: 20px;
}
.single-serv-detail-content h3 span {
    color: var(--c4);
}
.serv-list ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}
.serv-list ul li:before {
    position: absolute;
    content: "\f058";
    top: 0;
    left: 0;
    color: var(--c4);
    font-family: "Font Awesome 5 Pro";
}
.single-serv-detail-gap {
    margin-top: 50px;
}
.single-serv-detail-content p {
    margin-bottom: 15px;
}
.single-serv-big-img {
    margin-top: 100px;
    border-radius: 30px;
    overflow: hidden;
}
.single-serv-big-img img {
    transition: all .8s;
}
.single-serv-big-img:hover img {
    transform: scale(1.1);
}

/* SECTION SINGLE LANGUAGE */

.single-lang-title {
    padding-right: 150px;
}
.single-lang-title .single-lang-btn {
    margin-top: 25px;
}
.single-lang-track {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid var(--c4);
    border-radius: 20px;
    padding: 50px 40px;
}
.single-lang-track-item {
    width: 9.09%;
    padding: 0px 20px;
}
.single-lang-track-item img {
    height: 80px;
    object-fit: contain;
    filter: contrast(0.5);
    transition: all .5s;
}

/* SECTION APP PORTFOLIO */

.cust-mob-port-item {
    padding: 50px;
    background-color: #e8e8e8;
    border-radius: 20px;
    height: 650px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    transition: all .5s;
}
.cust-mob-port-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
}
.cust-mob-port-img img {
    height: 100%;
    object-fit: cover;
}
.myAppPort {
    padding: 0px 150px;
}
.myAppPort .swiper-pagination {
    position: unset;
    margin-top: 40px;
}
.myAppPort .swiper-pagination span {
    width: 10px;
    height: 10px;
}
.myAppPort .swiper-pagination span.swiper-pagination-bullet-active {
    background-color: var(--c4);
}
.cust-mob-port-content h2 {
    font-family: var(--f1);
    font-weight: 600;
    font-size: 50px;
    color: var(--c1);
    line-height: 1.1;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.cust-mob-port-content h3 {
    color: var(--c1);
    font-family: var(--f1);
    font-weight: 600;
    margin-bottom: 20px;
}
.cust-mob-port-content p {
    margin-bottom: 20px;
}
.cust-mob-port-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}
.cust-mob-port-content ul li::before {
    position: absolute;
    content: "\f058";
    top: 0;
    left: 0;
    color: var(--c4);
    font-family: "Font Awesome 5 Pro";
}
.cust-mob-port-content ul li:last-child {
    margin-bottom: 0px;
}
.cust-mob-port-content {
    padding-right: 50px;
}
.cust-mob-port-content h2 span, .cust-mob-port-content h3 span {
    color: var(--c4);
}
.cust-mob-port-item:hover {
    border-color: var(--c4);
}

/* SECTION CONTACT FORM */

.cust-form-item input, .cust-form-item textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--c1);
    padding: 10px 0px;
    outline: 0;
    transition: all .5s;
    font-family: var(--f1);
}
.cust-form-item input:focus, .cust-form-item textarea:focus {
    border-color: var(--c4);
}
.cust-form-item textarea {
    height: 120px;
}
.cust-form-item input::placeholder, .cust-form-item textarea::placeholder {
    color: var(--c1);
    font-weight: 500;
    transition: all .5s;
}
.cust-form-item input:focus::placeholder, .cust-form-item textarea:focus::placeholder {
    opacity: 0;
    visibility: hidden;
}
.cust-form-btn input {
    background-color: var(--c4);
    border: 0;
    transition: all .5s;
    font-weight: 500;
    font-family: var(--f1);
    padding: 14px 30px;
    border-radius: 50px;
    color: var(--c2);
}
.cust-form-btn input:hover {
    background-color: var(--c1);
}
.cust-form-box {
    border: 2px solid var(--c4);
    border-radius: 10px;
    padding: 40px;
}

/* SECTION SERVICE FAQS */

.serv-faqs .accordion-item {
    margin-bottom: 20px;
}
.serv-faqs .accordion-item .accordion-button {
    box-shadow: unset;
    background-color: var(--custbg);
    color: var(--c1);
    font-size: 20px;
    padding: 25px 30px;
    font-weight: 500;
}
.serv-faqs .accordion-item .accordion-button:not(.collapsed) {
    background-color: var(--c4);
    color: var(--c2);
}
.serv-faqs .accordion-item .accordion-button::after {
    background-image: unset;
    content: "\f067";
    font-family: "Font Awesome 5 Pro";
    transform: unset;
}
.serv-faqs .accordion-item .accordion-button:not(.collapsed)::after {
    content: "\f068";
}
.cust-bg .serv-faqs .accordion-item .accordion-button {
    background-color: var(--c4);
}
.cust-bg .serv-faqs .accordion-item {
    background-color: unset;
}
.cust-bg .serv-faqs .accordion-item .accordion-body p {
    color: var(--c5);
}
.cust-bg .serv-faqs .accordion-item .accordion-button:not(.collapsed) {
    background-color: var(--c5);
    color: var(--c2);
}

/* PORTFOLIO CSS */

.web-port .portfolio-item img {
    height: 600px;
}