@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&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");

/* font-family: "Poppins", sans-serif; */
/* font-family: "Inter Tight", sans-serif; */

/* body,
html {
    overflow-x: hidden;
} */
/* body,html{
    width: 100%;
} */
:root {
  --primarycolor: #4ea1fe;
  --secondarycolor: #00baff;
  --lightBlue: #4ea1fe;
  --PinkColor: #fe0f56;
  --whitecolor: #ffffff;
  --blackcolor: #000000;
  --headColor: #3a3a3a;
  --BodyPara: #404040;
  --navTextColor: #393939;
  --PoppinsFont: "Poppins", sans-serif;
  --InterFont: "Inter Tight", sans-serif;
  scroll-behavior: inherit;

  /* M.M var 01-04-2025 */
  --themeblue: #111232;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--PoppinsFont);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  font-weight: normal;
  font-style: normal;
  color: var(--BodyPara);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  background-color: var(--whitecolor);
}

b,
strong {
  font-weight: 700;
}

p {
  margin: 0 0 22px 0;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 25px 0;
  padding: 0;
  color: var(--headColor);
  font-family: var(--InterFont);
  font-weight: 600;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1,
.h1-title {
  font-size: 65px;
  line-height: 1;
}

h2,
.h2-title {
  font-size: 45px;
  line-height: 1;
  text-transform: capitalize;
}

h3,
.h3-title {
  font-size: 26px;
  line-height: 1;
}

h4,
.h4-title {
  font-size: 21px;
  line-height: 1.2;
}

h5,
.h5-title {
  font-size: 20px;
  line-height: 1.2;
}
h6,
.h6-title {
  font-size: 18px;
  line-height: 1.2;
}

a {
  display: inline-block;
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  color: var(--primarycolor);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: var(--secondarycolor);
}

figure {
  margin: 0;
}

ul,
ol,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

img {
  max-width: 100%;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
  background-color: transparent;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  color: #000;
  border: 1px solid rgba(255, 255, 255, 0.7);
  height: 58px;
  padding: 0 16px;
  outline: none !important;
}

textarea {
  background-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 12px 16px;
  width: 100%;
  color: #000;
  height: 158px;
  outline: none !important;
}

select {
  border: 1px solid rgba(255, 255, 255, 0.7);
  width: 100%;
  padding: 0 11px;
  background: url(../images/sort-down.svg) no-repeat calc(100% - 16px) center
    transparent;
  background-size: 18px;
  padding-right: 40px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type="submit"] {
  background: #eab71e;
  color: #000000;
  height: 58px;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  padding-left: 30px;
  padding-right: 30px;

  cursor: pointer;
  font-size: 24px;
  font-weight: 700;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type="submit"]:hover {
  background: #000;
  color: #eab71e;
}

::-webkit-input-placeholder {
  opacity: 0.7;
  color: #000;
}

:-ms-input-placeholder {
  opacity: 0.7;
  color: #000;
}

::-moz-placeholder {
  opacity: 0.7;
  color: #000;
}

:-moz-placeholder {
  opacity: 0.7;
  color: #000;
}

/* images alignment for wordpress content pages */
.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  float: none;
  clear: both;
}

/* custom checkbox */

.form_input_check label {
  position: relative;
  margin: 0;
  padding-left: 40px;
  display: inline-block;
}

.form_input_check label span {
  margin: 0;
  padding: 0;
}

.form_input_check label input[type="checkbox"] {
  visibility: hidden;
  display: none;
}

.form_input_check label input[type="checkbox"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  border: 1px solid #3e3e42;
  background: transparent;
}

.form_input_check label input[type="checkbox"] + span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: url(../images/tick.svg) no-repeat center center;
  background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked) + span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

/* .form_input_check input[type="checkbox"]:checked + span::before {
      
    } */

.form_input_check label input[type="checkbox"]:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* custom radio */

.form_input_radio label {
  position: relative;
  margin: 0;
  padding-left: 30px;
  display: inline-block;
}

.form_input_radio label span {
  margin: 0;
  padding: 0;
}

.form_input_radio label input[type="radio"] {
  visibility: hidden;
  display: none;
}

.form_input_radio label input[type="radio"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border: 2px solid #000000;
  border-radius: 100%;
  background: #fff;
}

.form_input_radio label input[type="radio"] + span::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #4b0049;
  position: absolute;
  top: 6px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked) + span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

/* .form_input_radio input[type="radio"]:checked + span::before {
      
    } */

.form_input_radio label input[type="radio"]:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* custom radio end */

/* back to top */

#scroll {
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  width: 55px;
  height: 55px;
  background-color: #bdd653;
  display: none;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  line-height: 68px;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  z-index: 9;
}

#scroll:hover {
  background: #88a725;
}

#scroll i {
  color: #fff;
  font-size: 44px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

#scroll:hover i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
}

/* custom css */
.cmn-gap {
  padding: 90px 0;
}

.section-head {
  margin-bottom: 40px;
}

.cmn-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: capitalize;
  background-color: var(--PinkColor);
  color: var(--whitecolor);
  padding: 8px 10px 7px 39px;
  border-radius: 50px;
  overflow: hidden;
  font-family: var(--PoppinsFont);
}
.cmn-btn span {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 17px;
  background-color: var(--whitecolor);
  border-radius: 50%;
  transition: 0.2s;
}

.cmn-btn:hover {
  background-color: var(--blackcolor);
  color: var(--whitecolor);
}
.cmn-btn:hover span {
  background-color: var(--PinkColor);
}

.cmn-btn.white {
  background-color: var(--whitecolor);
  color: var(--navTextColor);
}
.cmn-btn.white span {
  background-color: var(--lightBlue);
}
.cmn-btn.white:hover {
  background-color: var(--blackcolor);
  color: var(--whitecolor);
}

.cmn-btn span img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(7464%)
    hue-rotate(350deg) brightness(104%) contrast(96%);
}
.cmn-btn:hover span img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%)
    hue-rotate(235deg) brightness(101%) contrast(103%);
}

.sec-head {
  margin-bottom: 35px;
}
/* custom css */

/* navbar*/

.navbar-brand {
  padding: 0;
  margin: 0;
  width: 190px;
  display: inline-block;
}

.navbar {
  background: none;
  margin: 0;
  padding: 0;
  min-height: inherit;
  height: inherit;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}

.navbar-nav li {
  position: relative;
  list-style: none;
}

.navbar-nav > li {
  margin: 0 25px;
  position: relative;
}

.navbar-nav > li:last-child {
  margin-right: 0;
}

.navbar-nav > li:first-child {
  margin-left: 0;
}

.navbar-nav > li > a {
  color: var(--navTextColor);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 300;
  position: relative;
  text-transform: capitalize;
}

.navbar-nav > li.current-menu-item > a,
.navbar-nav > li > a:hover,
.navbar-nav > li.menu-item-has-children:hover > a {
  color: var(--lightBlue);
}

/* navbar submenu*/

.sub-menu {
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  width: 140px;
  padding: 0;
}

.sub-menu > li > a {
  color: #000;
  display: block;
  width: 100%;
  padding: 6px 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.sub-menu > li {
  width: 100%;
  display: block;
}

.sub-menu > li > a:hover,
.sub-menu > li.menu-item-has-children:hover > a,
.sub-menu > li.current-menu-item > a {
  background: #eab71e;
  color: #fff;
}

.navbar-nav > li:last-child > .sub-menu {
  right: 0;
  left: inherit;
  padding: 0;
}

/* 2nd level submenu */
.navbar-nav > li > .sub-menu .sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
}

/* for push-menu */
.navbar-collapse .navbar-toggler {
  display: none;
}

#navoverlay {
  display: block;
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  margin: 0;
  padding: 0;
  z-index: 99;
  -webkit-transition: background-color 0.5s linear;
  transition: background-color 0.5s linear;
}

/* for push-menu end*/

.main-head.wps-ln {
  padding: 0;
}

.main-head {
  position: fixed;
  top: 42px;
  width: 100%;
  left: 0;
  z-index: 99;
  -webkit-transition: background-color 0.5s linear;
  transition: background-color 0.5s linear;
}

.main-head .navbar {
  background-color: var(--whitecolor);
  border-radius: 50px;
  padding: 13px 15px 13px 58px;
  box-shadow: 0px 0px 70px rgba(0, 0, 0, 0.1);
}

.main-head.wps-ln.scroll_nav {
  background-color: var(--whitecolor);
  box-shadow: 0px 0px 70px rgba(0, 0, 0, 0.1);
  top: 0;
  padding: 2px 0px 6px;
}
.main-head.wps-ln.scroll_nav .navbar {
  box-shadow: none;
}

.header-btn-wrap {
  margin-left: 50px;
}

.header-btn-wrap .cmn-btn span {
  margin-left: 23px;
}

.ln-bnr-upper {
  max-width: 1200px;
  margin: 0 auto 18px;
  text-align: center;
}
.ln-bnr-upper h1 {
  color: var(--whitecolor);
  text-transform: capitalize !important;
  font-style: normal !important;
}
.ln-bnr-lower {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.ln-bnr-lwr-lft-clm {
  width: 33%;
}
.ln-bnr-lwr-lft-inr {
  padding-top: 46px;
}
.ln-bnr-lwr-lft-inr h2 {
  font-size: 35px;
  color: var(--whitecolor);
  margin-bottom: 15px;
  line-height: 1;
  font-weight: 600;
}
.ln-bnr-lwr-lft-inr p {
  color: var(--whitecolor);
  text-transform: capitalize;
}

.ln-bnr-lwr-mdl-clm {
  width: 35%;
}
.ln-bnr-lwr-rt-clm {
  width: 32%;
}

.ln-bnr-features-list li {
  margin-bottom: 25px;
  color: var(--whitecolor);
  padding-left: 30px;
  position: relative;
}
.ln-bnr-features-list li:last-child {
  margin-bottom: 0;
}
.ln-bnr-features-list li:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  background-color: var(--secondarycolor);
  border-radius: 50%;
  background-image: url(../images/bnr-list-icon.svg);
  background-position: center center;
  background-repeat: no-repeat;
}
.ln-bnr-lwr-rt-inr {
  padding-top: 30px;
  padding-left: 33px;
}
.bnr-book-btn {
  padding-top: 26px;
}
.bnr-book-btn .cmn-btn {
  padding: 8px 8px 7px 37px;
}

.ln-banner-sec {
  background: linear-gradient(110.45deg, #027dff 0%, #0039a9 100%);
  padding: 209px 0 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.ln-bnr-lwr-mdl-clm figure {
  margin-left: -86px;
  pointer-events: none;
}
.ln-banner-shp {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
  z-index: -2;
}
.cmn-large-txt {
  font-family: var(--InterFont);
  font-weight: 900;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3) -34.17%,
    rgba(4, 102, 223, 0.9) 101.67%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  line-height: 0.8;
  z-index: -1;
  pointer-events: none;
  font-size: 13.125vw;
}

.leading-wordpress-sec {
  padding: 94px 0 92px;
}
.leading-wordpress-sec .sec-head h2 {
  max-width: 880px;
  margin: 0 auto 20px;
}
.trust-wpr {
  background: #ffffff;
  box-shadow: 0px 20px 97px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 27px 79px 27px 29px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.trust-wpr-lft {
  width: 161px;
  border-right: 1px solid #cbcbcb;
}
.trust-wpr-lft .trust-wpr-lft-inr {
  padding: 51px 0;
}
.trust-wpr-rt {
  width: calc(100% - 161px);
  padding-left: 74px;
}
.trust-wpr-lft-inr .h5-title {
  color: #2c2c2c;
  font-weight: 500;
  text-transform: capitalize;
}
.businesses-globally-item .businesses-globally-item-wpr {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.businesses-globally-item {
  padding: 0 20px;
}
.businesses-globally-item-wpr img {
  max-width: 144px;
}
.not-easy-sec .sec-head {
  max-width: 1079px;
}

.not-easy-lft-clm {
  width: 57%;
}
.not-easy-rt-clm {
  width: 43%;
}
.not-easy-img {
  padding-top: 65%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.not-easy-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.not-easy-row {
  --bs-gutter-x: 54px;
  align-items: center;
}
.not-easy-text-wpr {
  display: flex;
  flex-wrap: wrap;
}
.not-easy-card-outer {
  width: 50%;
  padding: 37px 15px 25px 0;
  border-right: 1px solid #e0e0e0;
}
.not-easy-card-outer:nth-child(2n) {
  border-right: 0;
}
.not-easy-card-outer:nth-child(n + 3) {
  border-top: 1px solid #e0e0e0;
}
.not-easy-card-outer:nth-child(2n) {
  padding-left: 15px;
  padding-right: 0;
}
.not-easy-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  /* justify-content:space-between; */
}
.not-easy-card i {
  width: 40px;
  height: 40px;
  margin-bottom: 44px;
  display: block;
  flex: 0 0 auto;
}
.not-easy-card i img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.not-easy-card-txt h3 {
  margin-bottom: 5px;
}
.not-easy-card-outer:nth-child(1),
.not-easy-card-outer:nth-child(2) {
  padding-top: 0;
}

.you-might-sec {
  padding: 47px 0 100px;
}
.you-might-sec .sec-head h2 {
  font-size: 21px;
}
.you-might-row {
  --bs-gutter-x: 26px;
  --bs-gutter-y: 20px;
}
.you-might-card {
  padding-top: 74%;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}
.you-might-card:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  height: 60%;
}
.you-might-card > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.you-might-cd-txt {
  position: absolute;
  width: 100%;
  padding: 10px 47px 34px 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  z-index: 9;
  bottom: 0;
  left: 0;
}
.you-might-cd-txt i {
  width: 40px;
  flex: 0 0 auto;
}
.you-might-cd-txt i img {
  width: 100%;
}
.you-might-cd-txt h3 {
  width: calc(100% - 40px);
  padding-left: 15px;
  font-size: 21px;
  color: var(--whitecolor);
  line-height: 1.2;
  text-transform: capitalize;
}
.you-might-card:hover > img {
  transform: scale(1.1);
}

.our-top-title {
  max-width: 513px;
  margin-bottom: 44px;
}
.our-top-lft-clm {
  width: 54%;
}
.our-top-row {
  --bs-gutter-x: 0;
}
.our-top-lft-inr figure {
  margin-left: -23px;
  margin-right: -105px;
}
.our-top-lft-inr figure img {
  width: 100%;
}

.our-top-rt-clm {
  width: 46%;
}
.our-top-txt-outer {
  background: var(--whitecolor);
  box-shadow: 0px 20px 97px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 60px 41px 60px 42px;
}
.our-top-txt-outer ul li:not(:last-child) {
  margin-bottom: 32px;
}
.our-top-list li span {
  display: flex;
  /* align-items:center; */
  font-weight: 600;
  margin-bottom: 13px;
  color: var(--headColor);
}
.our-top-list li span i {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--primarycolor);
  margin-right: 10px;
  flex: 0 0 auto;
}
.our-top-para p:not(:last-child) {
  margin-bottom: 22px;
}
.our-top-sec {
  padding-top: 100px;
}

.collaborate-sec {
  padding: 85px 0 65px;
  background: #dcf2fb;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.collaborate-sec .sec-head {
  margin-bottom: 60px;
}
.collaborate-outer {
  position: relative;
}
.collaborate-list {
  display: flex;
  flex-wrap: wrap;
}
.collaborate-list-item {
  width: 50%;
}
.collaborate-list-item-card {
  max-width: 424px;
  text-align: right;
}
.collaborate-list-item:nth-child(2n) .collaborate-list-item-card {
  text-align: left;
  margin-left: auto;
}
.collaborate-outer {
  max-width: 1214px;
  margin: 0 auto;
  padding-top: 34px;
}
.collaborate-list-item:nth-child(n + 3) {
  margin-top: 105px;
}
.collaborate-list-item-card {
  display: flex;
  flex-direction: row-reverse;
}
.collaborate-list-item-card i {
  width: 63px;
  height: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--whitecolor);
  box-shadow: 0px 2.2915px 9.16599px 5.72874px rgba(0, 0, 0, 0.05);
  position: relative;
  flex: 0 0 auto;
  margin-top: 23px;
}
.collaborate-list-item-card i:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 73%;
  height: 73%;
  border-radius: 50%;
  border: 1px solid #d6d2d2;
}
.collaborate-list-txt {
  flex: 1;
  padding-right: 30px;
}
.collaborate-list-txt .h4-title {
  margin-bottom: 11px;
}

.collaborate-list-item:nth-child(2n) .collaborate-list-item-card {
  flex-direction: initial;
}

.collaborate-list-item:nth-child(2n) .collaborate-list-txt {
  padding-left: 30px;
  padding-right: 0;
}

.collaborate-list-item:nth-child(n + 3) .collaborate-list-item-card {
  max-width: 360px;
}
.collaborate-mdl-outer {
  width: 566px;
  height: 566px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color:red; */
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/collaborate-bdr-img.png) no-repeat center center /
    cover;
  z-index: -1;
}
.collaborate-mdl-outer:after,
.collaborate-mdl-outer:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 89%;
  height: 89%;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0px -21.7692px 32.081px rgba(0, 0, 0, 0.03);
  border-radius: 50%;
}
.collaborate-mdl-outer:before {
  width: 78%;
  height: 78%;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.6;
  filter: drop-shadow(0px -21.7692px 32.081px rgba(0, 0, 0, 0.05));
}
.collaborate-logo-wpr {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  filter: drop-shadow(0px -21.7692px 32.081px rgba(0, 0, 0, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.collaborate-logo-wpr img {
  max-width: 177px;
}
.collaborate-dots span {
  width: 15px;
  height: 15px;
  box-shadow: 0px 1.14575px 4.583px rgba(0, 0, 0, 0.25);
  display: block;
  background-color: var(--whitecolor);
  border-radius: 50%;
  position: absolute;
  z-index: 99;
  transform: translateY(-50%);
}
.collaborate-dots span:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #027dff;
}
.collaborate-dots span:nth-child(1) {
  top: 36%;
  left: 4px;
}
.collaborate-dots span:nth-child(2) {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.collaborate-dots span:nth-child(3) {
  top: 36%;
  right: 4px;
}
.collaborate-bttm-wpr {
  padding-top: 101px;
  text-align: center;
}
.collaborate-sec .cmn-large-txt {
  background: linear-gradient(
    180deg,
    rgba(0, 186, 255, 0.1) -94.17%,
    rgba(0, 186, 255, 0) 161.67%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  bottom: -15px;
}
.complete-development-sec {
  padding: 100px 0;
}

.complete-development-sec .sec-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 105px;
}
.complete-dvlmt-sec-lft {
  max-width: 724px;
  flex: 0 0 auto;
}
.complete-dvlmt-sec-right {
  flex: 1;
  padding-left: 145px;
}
.complete-dvlmt-sec-right p {
  text-transform: capitalize;
}
.complete-development-row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 75px;
}
.complete-dev-clm {
  width: 33.33%;
}
.complete-dev-card {
  height: 100%;
  background: var(--whitecolor);
  border: 1px solid rgba(39, 44, 101, 0.3);
  border-radius: 20px;
  padding: 0 38px 42px 35px;
  display: block;
  transition: 0.2s;
}
.complete-dev-icon {
  width: 90px;
  height: 90px;
  background: var(--whitecolor);
  border: 1px solid #bfc0d1;
  box-shadow: 10px 5px 34px rgba(48, 128, 197, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -45px;
  margin-bottom: 22px;
}
.complete-dev-icon img {
  max-width: 40px;
}
.complete-dev-card-txt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.complete-dev-card-txt h3 {
  max-width: 260px;
  flex: 0 0 auto;
  margin: 0;
  transition: 0.2s;
  padding-right: 10px;
}
.complete-dev-card-txt .complete-dev-arr {
  width: 51px;
  height: 51px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f3f3f3;
  margin-left: auto;
}
.complete-dev-card:hover {
  border-color: var(--whitecolor);
  box-shadow: 0px 20px 97px rgba(0, 0, 0, 0.1);
}
.complete-development-btn-wpr {
  padding-top: 52px;
  text-align: center;
}
.complete-dev-card:hover .complete-dev-card-txt h3 {
  color: var(--secondarycolor);
}

.industry-sec {
  padding: 87px 0 70px;
  background-color: #dcf2fb;
}
.industry-sldr-item {
  padding: 0 13px;
}
.industry-slider .slick-list {
  margin: 0 -13px;
}
.industry-sldr-card {
  padding-top: 122%;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  display: block;
  z-index: 2;
}
.industry-sldr-card:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 38%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  opacity: 0.7;
  pointer-events: none;
}

.industry-sldr-card > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.industry-sldr-card:hover > img {
  transform: scale(1.1);
}
.industry-sldr-txt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 10px 25px 33px;
  display: flex;
  align-items: center;
  z-index: 1;
}
.industry-sldr-txt i {
  width: 55px;
  padding-right: 15px;
  flex: 0 0 auto;
}
.industry-sldr-txt i img {
  width: 100%;
}
.industry-sldr-txt .h4-title {
  color: var(--whitecolor);
}
.industry-slider-outer {
  position: relative;
  padding: 5px 0;
}
.industry-slider-outer:after,
.industry-slider-outer::before {
  content: "";
  position: absolute;
  width: 414px;
  height: 100%;
  left: -20px;
  top: 0;
  background: linear-gradient(270deg, rgba(220, 242, 251, 0) 0%, #dcf2fb 100%);
  z-index: 2;
  pointer-events: none;
}
.industry-slider-outer::before {
  background: linear-gradient(90deg, rgba(220, 242, 251, 0) 0%, #dcf2fb 100%);
  left: auto;
  right: -20px;
}

.industry-slider-arr-outer {
  padding-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.industry-slider-arr-outer .industry-slider-arr {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  border: 1px solid #fe105740;
  transition: 0.3s;
  cursor: pointer;
}
.industry-slider-arr-outer .industry-slider-arr:hover {
  background: var(--whitecolor);
  box-shadow: 0px 24px 44px #a7d3e4;
  border-color: var(--whitecolor);
}
.industry-slider-arr-outer .industry-slider-arr:hover img {
  filter: brightness(0) saturate(100%) invert(82%) sepia(52%) saturate(3431%)
    hue-rotate(172deg) brightness(90%) contrast(85%);
}

.esteemed-client-sec {
  padding: 90px 0 100px;
  background-color: #f8f8f8;
}
.esteemed-client-row {
  display: flex;
  flex-wrap: wrap;
  margin: -13px;
  justify-content: center;
}
.esteemed-client-clm {
  width: 14.28%;
  padding: 13px;
}
.esteemed-client-card {
  height: 100%;
  background: var(--whitecolor);
  border: 1px solid rgba(39, 44, 101, 0.2);
  box-shadow: 25px 26px 64px rgba(55, 117, 186, 0.14);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 133px;
  padding: 10px;
}
.esteemed-client-card img {
  max-width: 119px;
  /* width:100%; */
}

/* 01-04-2025 M.M Css Start */

/* How We Deliver Css Start */
.how-we-deliver-sec {
  position: relative;
}
.how-we-deliver-sec .sec-head {
  max-width: 978px;
  margin: 0 auto 52px;
  text-align: center;
}
.how-we-deliver-top-shp {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 41%;
  pointer-events: none;
  user-select: none;
}
.how-we-deliver-btm-shp {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 23%;
  pointer-events: none;
  user-select: none;
}
.deliver-animation-wraper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.deliver-animation-left {
  width: 53.6%;
}
.deliver-animation-right {
  width: 46.4%;
}

.anim-main-wrap {
  overflow: hidden;
  min-height: 372px;
  position: relative;
  max-width: calc(100% - 116px);
  margin-left: auto;
}

.deliver-animation-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.deliver-animation-content h3 {
  line-height: 1.2;
  margin-bottom: 12px;
}
.deliver-animation-content p {
  font-size: 18px;
}
.anim-img-top1 {
  width: 100%;
  margin-top: 8px;
}
.anim-img-wrap li {
  margin-bottom: 8px;
}
.anim-img-wrap li a img {
  pointer-events: none;
}
.anim-img-wrap li a.active img:first-child,
.anim-img-wrap li a img:last-child {
  display: block;
}
.anim-img-wrap li a.active img:last-child,
.anim-img-wrap li a img:first-child {
  display: none;
}
.anim-img-wrap {
  width: 100%;
}

/* How We Deliver Css End */

/* Our Awards and Recognitions Css Start */

.our-awards-recognitions-sec .sec-head {
  max-width: 1043px;
  margin: 0 auto 17px;
  text-align: center;
}

.awards-recognition-box {
  width: 200px;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--whitecolor);
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 10px 15px;
}

.our-awards-recognitions-slider .awards-recognition-item {
  padding: 35px 15px;
}

.our-awards-recognitions-sec.cmn-gap {
  padding-bottom: 65px;
}

/* Our Awards and Recognitions Css End */

/* Footer css Start */
.footer-landing-sec {
  position: relative;
  background: var(--themeblue);
  padding-top: 94px;
  overflow: hidden;
}
.footer-landing-sec .cmn-large-txt {
  z-index: 0;
}
.footer-contact-row {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}
.footer-first-col {
  width: 30%;
  padding-top: 9px;
}

.footer-middle-col {
  width: 29.3%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-last-col {
  width: 40.7%;
}
.footer-copy-right {
  text-align: right;
  padding: 43px 0 27px;
}
.footer-copy-right p {
  color: var(--whitecolor);
}
.footer-htwo {
  display: block;
  font-weight: 600;
  font-size: 45px;
  line-height: 1.2;
  text-transform: capitalize;
  color: var(--whitecolor);
  margin-bottom: 30px;
  font-family: var(--InterFont);
}
.great-together-details {
  display: flex;
  flex-wrap: wrap;
  max-width: 293px;
  padding-bottom: 27px;
  margin-bottom: 30px;
  border-bottom: 1px dashed #999999;
}
.great-together-details i {
  width: 38px;
  flex-shrink: 0;
}
.great-together-dtls-right {
  padding-left: 13px;
}
.great-together-dtls-right span {
  display: block;
  font-weight: 600;
  font-size: 45px;
  line-height: 1;
  color: var(--whitecolor);
  margin-bottom: 7px;
  font-family: var(--InterFont);
}
.great-together-dtls-right p {
  font-family: var(--PoppinsFont);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: var(--whitecolor);
  text-transform: capitalize;
}
.great-together-details:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.footer-get-together-img-wrap {
  align-self: flex-end;
  margin-left: -28%;
  margin-right: -28px;
  position: relative;
  z-index: 1;
}

.consultation-form-wraper {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px);
  border-radius: 20px;
  padding: 59px 43px 73px 52px;
}
.consultation-form-wraper .footer-htwo {
  margin-bottom: 40px;
}
.consultation-form-wraper label {
  display: block !important;
  font-weight: 300 !important;
  font-size: 18px !important;
  line-height: 1 !important;
  text-transform: capitalize !important;
  color: var(--whitecolor) !important;
  margin-bottom: 2px !important;
}
.consultation-form-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px -40px;
}
.consultation-feild {
  width: 50%;
  padding: 0 15px;
}
.consultation-form-wraper input[type="text"],
.consultation-form-wraper input[type="tel"],
.consultation-form-wraper input[type="email"],
.consultation-form-wraper input[type="password"],
.consultation-form-wraper input[type="url"],
.consultation-form-wraper select,
.consultation-form-wraper textarea {
  height: 40px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--whitecolor) !important;
  padding: 0 !important;
  color: var(--whitecolor) !important;
  background: transparent !important;
  width: 100% !important;
  outline: 0 !important;
  box-shadow: none !important;
  font-size: 18px !important;
  font-weight: 300 !important;
  border-radius: 0 !important;
  resize: none !important;
}
/* 03-04-2025 M.M Css Start */
.consultation-form-wraper select {
  background: url(../images/select-down-arrow.svg) no-repeat right 12px center !important;
  background-size: 12px !important;
  padding-right: 35px !important;
}
.consultation-form-wraper select option {
  background: #111232 !important;
}

/* 03-04-2025 M.M Css End */
.consultation-form-wraper input[type="text"]:focus,
.consultation-form-wraper input[type="tel"]:focus,
.consultation-form-wraper input[type="email"]:focus,
.consultation-form-wraper input[type="password"]:focus,
.consultation-form-wraper input[type="url"]:focus,
.consultation-form-wraper select:focus,
.consultation-form-wraper textarea:focus {
  border-bottom-color: var(--lightBlue);
}

.consultation-form-wraper input::-webkit-input-placeholder {
  opacity: 0.7;
  color: var(--whitecolor);
}

.consultation-form-wraper input:-ms-input-placeholder {
  opacity: 0.7;
  color: var(--whitecolor);
}

.consultation-form-wraper input::-moz-placeholder {
  opacity: 0.7;
  color: var(--whitecolor);
}

.consultation-form-wraper input:-moz-placeholder {
  opacity: 0.7;
  color: var(--whitecolor);
}
.consultation-form-wraper textarea {
  resize: none;
  height: 70px;
}
.consultation-feild.w-full {
  width: 100%;
}
.consultation-feild {
  margin-bottom: 40px;
}
.consultation-form-wraper input[type="submit"] {
  height: 60px !important;
  background: url(../images/submit-btn-arrow-icon.svg) no-repeat right 6px
    center / 45px var(--whitecolor) !important;
  border-radius: 50px !important;
  -webkit-border-radius: 50px !important;
  -moz-border-radius: 50px !important;
  -ms-border-radius: 50px !important;
  -o-border-radius: 50px !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  text-transform: capitalize !important;
  color: var(--navTextColor) !important;
  padding: 10px 79px 10px 42px !important;
}
.consultation-form-wraper input[type="submit"]:hover {
  background-color: var(--blackcolor) !important;
  color: var(--whitecolor) !important;
}

.footer-landing-sec .cmn-large-txt {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3) -94.17%,
    rgba(255, 255, 255, 0) 161.67%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  opacity: 0.5;
  margin-bottom: -3.438vw;
  font-size: 12.5vw;
}

.footer-landing-inner-wraper {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
}

.footer-light-bg {
  position: absolute;
  bottom: 0;
  left: 6.2%;
  max-width: 80%;
}

/* Footer css End */

/* 01-04-2025 M.M Css End */

.services-why-choose-sec.wps-ln {
  position: relative;
  z-index: 1;
}
.services-why-choose-sec.wps-ln:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background-image: url(../images/wps-ln-why-chs-shp.png);
  background-repeat: no-repeat;
  background-position: top left;
  width: 41%;
  height: 100%;
  z-index: -1;
  opacity: 0.3;
}
.services-msme-sec.wps-ln .services-msme-row .banner-video {
  width: 52%;
}

.services-msme-sec.wps-ln .services-msme-right {
  width: 48%;
}
.services-msme-sec.wps-ln .services-msme-content {
  padding: 15px 0 15px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: none;
  border-radius: 0;
  margin: 0;
  height: 100%;
  border: 0;
  background: transparent;
}
.services-msme-sec.wps-ln .hm-bnr-vdowpr {
  position: relative;
  top: 0;
  left: 0;
  box-shadow: none;
  animation: none;
  padding: 0;
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  justify-content: flex-start;
}
.ln-wps-msme-para {
  margin-bottom: 31px;
}

.services-msme-sec.wps-ln .services-msme-row .hm-bnr-vdowpr span {
  width: 90px;
  height: 90px;
  background: transparent;
  border: 1px solid rgba(55, 117, 186, 0.2);
  backdrop-filter: blur(30px);
  position: relative;
  z-index: 1;
  margin-right: 20px;
  box-shadow: none;
}
.services-msme-sec.wps-ln .services-msme-row .hm-bnr-vdowpr span:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background: #dcf2fb;
  border: 1px solid rgba(55, 117, 186, 0.5);
  backdrop-filter: blur(30px);
  z-index: -1;
}
.services-msme-sec.wps-ln .services-msme-row .hm-bnr-vdowpr span img {
  margin-left: 4px;
  filter: brightness(0) saturate(100%) invert(0%) sepia(92%) saturate(0%)
    hue-rotate(333deg) brightness(101%) contrast(106%);
}
.services-msme-sec.wps-ln .services-msme-row .hm-bnr-vdowpr {
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #232323;
}
.services-msme-sec.wps-ln .banner-video.expand {
  width: 100%;
}
.services-msme-sec.wps-ln {
  position: relative;
  z-index: 1;
  padding-bottom: 0;
}
.services-msme-sec.wps-ln:after,
.faq-section.wps-ln:after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  background-image: url(../images/wps-ln-who-we-shp.png);
  background-repeat: no-repeat;
  background-position: top left;
  width: 40%;
  height: 100%;
  z-index: -1;
  opacity: 0.3;
}

.faq-section.wps-ln {
  background: transparent;
  position: relative;
}
.faq-section.wps-ln .section-head {
  max-width: 1084px;
}

.faq-section.wps-ln .accordion-header .accordion-button {
  font-family: var(--InterFont);
  font-size: 26px;
  font-weight: 600;
  /* padding: 26px 50px 25px; */
  text-transform: capitalize;
}
.faq-section.wps-ln:after {
  background-image: url(../images/wps-ln-faq-shp.png);
}

.consultation-form-wraper .gform-footer {
  margin-top: 40px !important;
}

.faq-section.wps-ln .accordion-button::after {
  background-image: url(../images/wps-ln-faq-arr.svg) !important;
}
.gform_validation_errors {
  display: none !important;
}

.wps-ln-popup .modal-dialog {
  max-width: 1140px;
}
.wps-ln-popup .modal-content {
  background-color: transparent;
  border: 0;
}
.wps-ln-popup .golf-contact-left {
  background-color: #0039a9;
}
.wps-ln-popup .golf-achive-wraper {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.wps-ln-popup .btn-close {
  position: absolute;
  top: -14px;
  right: -9px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #fe1055;
  opacity: 1;
  outline: 0;
  box-shadow: none;
}
.wps-ln-popup .golf-hthree,
.wps-ln-popup .golf-achive-title {
  font-weight: 400;
}

.services-msme-sec.wps-ln .banner-long-video {
  min-height: 800px;
}
.consultation-form-wraper .gform_heading {
  display: none !important;
}
.consultation-form-wraper .gfield_required {
  font-size: 18px !important;
  line-height: 0.7 !important;
}

.how-we-deliver-sec-outer {
  overflow: hidden;
}
.consultation-form-wraper .gfield_required {
  position: absolute;
  display: inline-block !important;
}
.consultation-form-wraper label {
  position: relative;
}

/* 04-04-2025 M.M Css Start */
.anim-img-wrap li a {
  pointer-events: none;
  user-select: none;
}

/* New M.M Css Start */

.funnel-section .sec-head {
  max-width: 990px;
  margin: 0 auto 52px;
  text-align: center;
}
.product-list-text .product-acc-box {
  display: none;
}

.product-slider-outer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.product-slider-button-wpr {
  width: 53.6%;
}
.product-inner-sld {
  width: 46.4%;
}
.product-acc-box img {
  width: 100%;
}
.product-acc-box {
  width: 100%;
  cursor: pointer;
}
.product-navigation.active .inactive-image,
.product-acc-box .active-image {
  display: none;
}
.product-navigation.active .active-image {
  display: block;
}
.product-action-btn .product-navigation:not(:last-child) {
  margin-bottom: 17px;
}
.deliver-animation-content-new p {
  color: #2c2c2c;
  font-size: 18px;
}
.deliver-animation-content-new h3 {
  margin-bottom: 10px;
}
.deliver-animation-content-new {
  max-width: 493px;
  margin-left: auto;
}

.funnel-btn-wpr {
  text-align: center;
  padding-top: 80px;
}
.funnel-section {
  position: relative;
  overflow: hidden;
}

/* New M.M Css End */

/* Client Testimonials Css Start */

.new-testmonials-sec {
  position: relative;
  background-color: #e8f8fe;
}

.new-testmonials-card {
  padding: 30px 20px;
  background-color: var(--whitecolor);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.new-testmonials-client-wraper {
  display: flex;
  flex-wrap: wrap;
  /* align-items: center; */
}
.testmonials-client-profile {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.testmonials-client-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testmonials-client-details {
  width: calc(100% - 80px);
  padding-left: 15px;
}
.new-testmonials-slider .slick-list {
  margin: 0 -15px;
}
.new-testmonials-slider .new-testmonials-item {
  padding: 0 15px;
}
.testmonials-client-name {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.1;
  margin-bottom: 1px;
  text-transform: capitalize;
}
.new-testmonials-designation {
  font-size: 18px;
  margin-bottom: 10px;
}
.new-testmonials-designation strong {
  font-weight: 500;
}
.new-testmonials-card h3 {
  line-height: 1.3;
  margin-bottom: 30px;
  font-size: 26px;
  font-weight: 400;
}
.new-testmonials-slider-outer {
  position: relative;
}
.new-testmonials-slider {
  position: relative;
  z-index: 2;
}
.client-testmonials-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.clutch-test-wraper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.clutch-test-wraper p {
  margin-bottom: 0;
  font-size: 18px;
  color: rgb(103 175 202);
  font-style: italic;
  font-weight: 400;
}
.clutch-test-wraper img {
  width: 60px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 15px;
}
/* Client Testimonials Css End */

/* 07-04-2025 M.M Css Start */
.new-testmonials-btm-head {
  text-align: center;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 500px;
}
.new-testmonials-btm-head h2 {
  font-size: 32px;
  margin-bottom: 12px;
}
.new-testmonials-slider .slick-track {
  display: flex;
}

.new-testmonials-slider .slick-slide {
  height: inherit;
}
.new-testmonials-slider .slick-prev {
  left: -75px;
}
.new-testmonials-slider .slick-next {
  right: -75px;
}
/* .full-stack-page-template .consultation-form-wraper .gfield_required {
  display: none !important;
} */
.mobile-app-dev-template .ln-bnr-lwr-mdl-clm figure {
  margin-left: 0;
}
.full-stack-page-template .ln-bnr-upper {
  max-width: 100%;
}
/* 07-04-2025 M.M Css End */

/* 10-04-2025 start KM */
.ln-banner-mod-row {
  align-items: flex-end;
}

.ln-banner-mod-media img {
  width: 100%;
}

.ln-banner-mod-content h1 {
  font-size: 41px;
  text-transform: capitalize !important;
  font-style: normal !important;
  margin: 0 0 42px 0;
}

.ln-banner-mod-content h1,
.ln-banner-mod-content h2 {
  color: var(--whitecolor);
}

.ln-banner-mod-content h2 {
  font-size: 24px;
  font-weight: bold;
}

.ln-banner-mod-content .ln-bnr-features-list {
  column-count: 2;
}

.ln-banner-mod-content {
  padding: 0 0 162px;
}

.ln-banner-mod .ln-banner-shp {
  left: auto;
  margin: 0;
  right: -4%;
  width: 64.1%;
}

.cmn-large-txt {
  font-size: 9.125vw;
}
/* 10-04-2025 end KM */

/* ========== responsive css =========== */

@media (min-width: 1025px) {
  /* navbar*/
  .navbar-nav .clickD {
    display: none;
  }

  .navbar-nav li.menu-item-has-children:hover > .sub-menu {
    display: block;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1464px;
    /* padding: 0 12px; */
  }
}

@media (min-width: 1920px) {
  .cmn-large-txt {
    font-size: 210px;
  }
  .collaborate-sec .cmn-large-txt {
    bottom: -70px;
  }

      /* 10-04-2025 start KM */
      .cmn-large-txt {
        font-size: 160px;
    }
    /* 10-04-2025 end KM */
}

@media (max-width:1699px) {
   /* 07-04-2025 M.M Css Start */
   .new-testmonials-slider .slick-arrow {
    width: 55px;
    height: 55px;
  }
  .new-testmonials-slider .slick-prev {
    left: -65px;
}
  .new-testmonials-slider .slick-next {
    right: -65px;
}
  /* 07-04-2025 M.M Css End */
}

@media (max-width: 1599px) {
  h1,
  .h1-title {
    font-size: 55px;
  }
  .main-head {
    top: 30px;
  }
  .you-might-cd-txt h3 br {
    display: none;
  }
  .ln-banner-shp {
    max-width: 76%;
  }

  .not-easy-card i {
    margin-bottom: 15px;
  }
  .not-easy-card-outer {
    padding: 25px 15px 20px 0;
  }
  .complete-dvlmt-sec-right {
    flex: 1;
    padding-left: 40px;
  }
  .footer-get-together-img-wrap {
    margin-left: -20%;
  }
  .footer-htwo {
    font-size: 40px;
  }
  .ln-bnr-lwr-mdl-clm figure {
    margin-left: -10px;
  }
  .ln-bnr-features-list li {
    margin-bottom: 10px;
  }

  .navbar-nav > li {
    margin: 0 15px;
  }
  .header-btn-wrap {
    margin-left: 30px;
  }
  .ln-banner-sec {
    padding: 160px 0 0;
  }
  .ln-bnr-lwr-rt-inr {
    padding-top: 20px;
    padding-left: 20px;
  }
  .ln-bnr-lwr-lft-inr p {
    max-width: 330px;
  }
  .consultation-form-wraper {
    padding: 39px 18px 53px 29px;
  }
  .footer-htwo {
    font-size: 36px;
  }
  /* 07-04-2025 M.M Css Start */
  .full-stack-page-template .ln-bnr-upper h1 {
    font-size: 48px;
  }

  /* 07-04-2025 M.M Css End */
  /* 10-04-2025 start KM */
  .ln-banner-mod-content h1 {
    font-size: 40px;
}

.ln-banner-mod-content h2 {
    font-size: 26px;
}

.ln-banner-mod .ln-banner-shp {
    right: -14%;
    width: 80%;
}
/* 10-04-2025 end KM */
}

@media (max-width: 1399px) {
  h1,
  .h1-title {
    font-size: 56px;
  }
  h2,
  .h2-title {
    font-size: 40px;
  }
  h3,
  .h3-title {
    font-size: 22px;
  }

  .ln-bnr-lwr-lft-inr h2 {
    font-size: 28px;
    line-height: 1.1;
  }
  .ln-bnr-lwr-lft-inr p {
    max-width: 250px;
  }
  .ln-bnr-lwr-mdl-clm figure {
    margin-left: -110px;
  }
  .ln-bnr-features-list li {
    margin-bottom: 13px;
  }
  .ln-bnr-lwr-rt-inr {
    padding-left: 20px;
  }
  .ln-banner-shp {
    max-width: 95%;
  }
  .trust-wpr-lft .trust-wpr-lft-inr {
    padding: 20px 0;
  }
  .trust-wpr-rt {
    padding-left: 30px;
  }
  .navbar-nav > li {
    margin: 0 15px;
    position: relative;
  }
  .businesses-globally-item-wpr img {
    max-width: 100px;
  }
  .not-easy-lft-clm {
    width: 50%;
  }
  .not-easy-rt-clm {
    width: 50%;
  }
  .not-easy-row {
    --bs-gutter-x: 24px;
  }
  .not-easy-card-txt p {
    line-height: 1.3;
  }
  .not-easy-card i {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
  }
  .you-might-cd-txt h3 {
    padding-left: 10px;
    font-size: 18px;
  }
  .you-might-cd-txt i {
    width: 36px;
  }
  .our-top-txt-outer {
    padding: 40px 30px 30px 32px;
  }
  .our-top-para p:not(:last-child) {
    margin-bottom: 15px;
  }
  .collaborate-list-item-card {
    max-width: 390px;
  }
  .collaborate-mdl-outer {
    width: 476px;
    height: 476px;
  }
  .collaborate-list-item:nth-child(n + 3) .collaborate-list-item-card {
    max-width: 375px;
  }
  .collaborate-dots span:nth-child(1) {
    top: 43%;
    left: -4px;
  }
  .collaborate-dots span:nth-child(3) {
    top: 43%;
    right: -4px;
  }
  .esteemed-client-card {
    min-height: 110px;
  }
  .footer-htwo {
    font-size: 30px;
  }
  .great-together-dtls-right span {
    font-size: 34px;
  }
  .consultation-form-wraper {
    padding: 25px 23px 34px 30px;
  }
  .footer-get-together-img-wrap {
    margin-right: -13px;
  }
  .great-together-details {
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
  .great-together-details i {
    width: 28px;
  }
  .consultation-feild {
    margin-bottom: 30px;
  }
  .header-btn-wrap {
    margin-left: 20px;
  }

  .consultation-form-wraper label {
    font-size: 16px !important;
  }
}

@media (max-width:1299px) {
  .new-testmonials-slider {
    padding-bottom: 70px;
  }
  .new-testmonials-slider .slick-arrow {
    top: auto;
    bottom: 0;
    transform: translate(0%, -0%);
    -webkit-transform: translate(0%, -0%);
    -moz-transform: translate(0%, -0%);
    -ms-transform: translate(0%, -0%);
    -o-transform: translate(0%, -0%);
}
.new-testmonials-slider .slick-prev {
  left: calc(50% - 60px);
}
.new-testmonials-slider .slick-next {
  right: calc(50% - 60px);
}

/* 10-04-2025 start KM */
.ln-banner-mod-content h1 {
  font-size: 32px;
}

.ln-banner-mod-content h2 {
  font-size: 25px;
}

.ln-banner-sec {
  padding: 170px 0 0;
}

.ln-banner-mod .ln-banner-shp {
  right: -16%;
}

.ln-banner-mod-content {
  padding: 0 0 138px;
}
/* 10-04-2025 end KM */

}


@media (max-width: 1199px) {
  h1,
  .h1-title {
    font-size: 45px;
  }
  h2,
  .h2-title {
    font-size: 36px;
  }
  h3,
  .h3-title {
    font-size: 20px;
  }

  .cmn-btn {
    padding: 8px 10px 7px 25px;
  }
  .cmn-btn span {
    width: 35px;
    height: 35px;
    margin-left: 14px;
  }

  .main-head .navbar {
    padding: 13px 15px 13px 28px;
  }
  .navbar-nav > li {
    margin: 0 10px;
  }
  .header-btn-wrap {
    margin-left: 10px;
  }
  .navbar-brand {
    width: 140px;
  }
  .header-btn-wrap {
    margin-left: 30px;
  }
  .header-btn-wrap .cmn-btn span {
    margin-left: 12px;
  }
  .ln-banner-sec {
    padding: 190px 0 0;
  }
  .ln-bnr-lwr-lft-inr {
    padding-top: 20px;
  }
  .ln-bnr-lwr-lft-inr p {
    max-width: 210px;
  }
  .ln-bnr-lwr-lft-inr h2 {
    font-size: 23px;
  }
  .ln-bnr-lwr-mdl-clm figure {
    margin-left: -100px;
  }
  .ln-bnr-lwr-rt-inr {
    padding-left: 10px;
    padding-top: 20px;
  }
  .ln-bnr-features-list li {
    margin-bottom: 10px;
  }
  .ln-bnr-features-list li:after {
    width: 18px;
    height: 18px;
    background-size: 10px;
  }
  .bnr-book-btn {
    padding-top: 20px;
  }
  .bnr-book-btn .cmn-btn {
    padding: 8px 8px 7px 20px;
  }
  .ln-bnr-lwr-lft-inr h2 {
    margin-bottom: 11px;
  }
  .leading-wordpress-sec {
    padding: 70px 0 60px;
  }
  .businesses-globally-item-wpr img {
    max-width: 80px;
  }
  .trust-wpr {
    padding: 20px 40px 20px 29px;
  }
  .trust-wpr-lft .trust-wpr-lft-inr {
    padding: 14px 0;
  }
  .not-easy-card-outer {
    padding: 15px 10px 10px 0;
  }
  .not-easy-card-txt h3 {
    font-size: 17px;
  }
  .you-might-cd-txt {
    padding: 10px 10px 15px 20px;
  }
  .you-might-card {
    border-radius: 10px;
  }
  .our-top-txt-outer ul li:not(:last-child) {
    margin-bottom: 14px;
  }
  .our-top-sec {
    padding-top: 70px;
  }
  .collaborate-mdl-outer {
    width: 396px;
    height: 396px;
  }
  .collaborate-list-item-card {
    max-width: 330px;
  }
  .collaborate-list-item:nth-child(n + 3) {
    margin-top: 75px;
  }
  .collaborate-list-item-card i {
    margin-top: 10px;
  }
  .collaborate-list-item:nth-child(n + 3) .collaborate-list-item-card {
    max-width: 345px;
  }
  .collaborate-dots span:nth-child(1) {
    top: 50%;
    left: -6px;
  }
  .collaborate-dots span:nth-child(3) {
    top: 50%;
    right: -7px;
  }
  .collaborate-list-item:nth-child(2n) .collaborate-list-txt {
    padding-left: 14px;
  }
  .collaborate-list-txt {
    padding-right: 14px;
  }
  .collaborate-logo-wpr img {
    max-width: 100px;
  }
  .collaborate-bttm-wpr {
    padding-top: 50px;
  }
  .complete-dvlmt-sec-lft {
    max-width: 474px;
  }
  .complete-development-sec {
    padding: 70px 0;
  }
  .complete-dev-icon {
    width: 70px;
    height: 70px;
    margin-top: -35px;
  }
  .complete-dev-icon img {
    max-width: 30px;
  }
  .complete-dev-card {
    border-radius: 10px;
    padding: 0 18px 22px 25px;
  }
  .industry-slider-outer:after,
  .industry-slider-outer::before {
    width: 200px;
  }
  .industry-slider-arr-outer .industry-slider-arr {
    width: 58px;
    height: 58px;
    margin: 0 5px;
  }
  .esteemed-client-clm {
    width: 16.66%;
  }
  .footer-htwo {
    font-size: 26px;
  }
  .great-together-dtls-right span {
    font-size: 26px;
  }
  .great-together-dtls-right {
    padding-left: 10px;
  }
  .great-together-dtls-right p {
    font-size: 14px;
  }
  .consultation-feild {
    padding: 0 10px;
  }

  .consultation-form-row {
    margin: 0 -10px -30px;
  }

  /* How We deliver Css Start */
  .anim-main-wrap {
    max-width: calc(100% - 40px);
  }
  .how-we-deliver-sec .sec-head {
    margin: 0 auto 40px;
  }
  /* How We deliver Css End */

  .services-msme-sec.wps-ln .services-msme-content {
    padding: 15px 0 15px 35px;
  }
  .services-msme-sec.wps-ln .services-msme-row .banner-video video {
    object-fit: cover;
  }

  .faq-section.wps-ln .accordion-header .accordion-button {
    font-size: 21px;
    padding: 26px 30px 25px;
  }
  .consultation-form-wraper label {
    font-size: 15px !important;
  }

  .wps-ln-popup .modal-dialog {
    max-width: 900px;
  }

  .wps-ln-popup .golf-hthree,
  .wps-ln-popup .golf-htwo {
    font-size: 30px;
  }
  .wps-ln-popup .together-profile-img-wrap {
    width: 76px;
    height: 76px;
  }
  .wps-ln-popup .together-profile-img-wrap.profile-two {
    width: 66px;
    height: 66px;
  }
  .wps-ln-popup .together-profile-img-wrap.profile-three {
    width: 56px;
    height: 56px;
  }
  .wps-ln-popup .together-profile-img-wrap.profile-four {
    width: 50px;
    height: 50px;
  }
  .wps-ln-popup .together-profile-wrap {
    min-height: 100px;
  }
  .wps-ln-popup .together-item {
    padding-left: 7px;
    padding-right: 7px;
  }
  .wps-ln-popup .together-profile-name {
    font-size: 13px;
  }
  .wps-ln-popup .golf-achive-title {
    font-size: 24px;
  }

  .consultation-form-wraper input[type="text"],
  .consultation-form-wraper input[type="tel"],
  .consultation-form-wraper input[type="email"],
  .consultation-form-wraper input[type="password"],
  .consultation-form-wraper input[type="url"],
  .consultation-form-wraper select,
  .consultation-form-wraper textarea {
    font-size: 16px !important;
  }

   /* 07-04-2025 M.M Css Start */
   .full-stack-page-template .ln-bnr-upper h1 {
    font-size: 42px;
    line-height: 1.1;
  }

  /* 07-04-2025 M.M Css End */

  /* 10-04-2025 start KM */
  .ln-banner-sec {
    padding: 154px 0 0;
}

.ln-banner-mod-content h1 {
    font-size: 32px;
    width: 600px;
}

.ln-banner-mod-content h2 {
    font-size: 22px;
}

.ln-banner-mod-content {
    padding: 0 0 100px;
}

.ln-banner-mod .ln-banner-shp {
    right: -23%;
    width: 85%;
}
/* 10-04-2025 end KM */
}

@media (max-width: 1024px) {
  /* navbar*/
  .navbar-nav .clickD {
    position: absolute;
    right: 0;
    top: 17px;
    width: 20px;
    height: 20px;
    background: url(../images/sort-down.svg) center center no-repeat;
    display: block;
    background-size: 10px;
    cursor: pointer;
  }

  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sub-menu > li.menu-item-has-children .clickD {
    top: 8px;
    right: 5px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  .sub-menu > li.menu-item-has-children .clickD.toggled {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .navbar-nav > li.menu-item-has-children {
    padding-right: 20px;
  }

  .sub-menu > li.menu-item-has-children > a {
    padding-right: 20px;
  }

  .sub-menu.show {
    display: block;
  }

  .navbar-nav > li.current-menu-item > a:after,
  .navbar-nav > li > a:after,
  .navbar-nav > li.menu-item-has-children > a:after {
    width: 100%;
    opacity: 0;
  }

  .navbar-nav > li.current-menu-item > a:after,
  .navbar-nav > li > a:hover:after,
  .navbar-nav > li.menu-item-has-children:hover > a:after {
    width: 6px;
    opacity: 1;
  }

  /* navbar end*/
}

@media (max-width: 991px) {
  /* navbar*/
  .navbar-toggler {
    position: relative;
    width: 43px;
    margin-left: 20px;
    height: 43px;
    padding: 0;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 50%;
    background-color: var(--PinkColor);
  }

  .stick,
  .stick:after,
  .stick:before {
    width: 20px;
    height: 2px;
    background: var(--whitecolor);
    position: absolute;
    left: 0;
    top: auto;
    transition: all 0.6s;
    border-radius: 5px;
    right: 0;
    margin: 0 auto;
  }
  #navoverlay {
    border-radius: 0;
  }

  .stick:before {
    content: "";
    top: -8px;
    left: 0;
  }

  .stick:after {
    content: "";
    top: 8px;
    left: 0;
  }

  .stick.open {
    transform: translateX(-50px);
    background: transparent;
  }

  .stick.open:before {
    transform: rotate(45deg) translate(40px, -30px);
    left: 1px;
  }

  .stick.open:after {
    transform: rotate(-45deg) translate(40px, 28px);
    left: 2px;
  }

  .navbar-nav .clickD {
    top: 8px;
    right: 10px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sub-menu > li.menu-item-has-children .clickD {
    top: 8px;
    right: 10px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  .sub-menu,
  .navbar-nav > li > .sub-menu .sub-menu {
    position: relative;
    width: 100%;
    left: inherit;
    top: inherit;
    border: none;
    right: inherit;
  }

  .navbar-nav > li.menu-item-has-children {
    padding-right: 0;
  }

  .navbar-nav > li {
    margin: 0;
    padding: 0;
  }

  .navbar-nav > li > a {
    padding: 10px 20px;
    display: inline-block;
    width: 100%;
  }

  .navbar-nav li.menu-item-has-children > a {
    padding-right: 30px;
  }

  .sub-menu > li > a {
    padding-left: 40px;
  }

  .sub-menu .sub-menu > li > a {
    padding-left: 60px;
  }

  .sub-menu .sub-menu .sub-menu > li > a {
    padding-left: 80px;
  }

  .navbar-nav > li > a:after {
    bottom: 0;
  }

  /* navbar end*/

  /* push nav */

  .navbar-collapse {
    background: #fff;
    position: fixed;
    top: 0;
    height: 100% !important;
    width: 290px;
    overflow-y: auto;
    transition: inherit !important;
    right: 0;
    margin: 0;
    display: block !important;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
    z-index: 100;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    display: block !important;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
  }

  .navbar-collapse .navbar-nav {
    margin: 80px 0 0 !important;
    padding: 0 0 40px 0;
  }

  .navbar-collapse .navbar-toggler {
    display: block;
    right: 20px;
    top: 20px;
    position: absolute;
  }

  #navoverlay.open {
    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: all;
    -webkit-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
  }

  body.open-nav,
  html.open-nav {
    height: 100%;
    overflow: hidden;
  }

  /* push nav end */

  h1,
  .h1-title {
    font-size: 40px;
  }
  h1 br,
  .h1-title br {
    display: none;
  }
  h2,
  .h2-title {
    font-size: 32px;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0 0 12px 0;
  }

  .main-head {
    top: 20px;
  }

  .ln-bnr-lwr-lft-clm {
    width: 50%;
  }
  .ln-bnr-lwr-mdl-clm {
    width: 100%;
    order: 3;
  }
  .ln-bnr-lwr-rt-clm {
    width: 50%;
  }
  .ln-bnr-lwr-lft-inr p {
    max-width: 90%;
  }
  .ln-bnr-lwr-lft-inr {
    padding-top: 0;
  }
  .ln-bnr-lwr-mdl-clm figure {
    max-width: 350px;
    margin: 30px auto 0;
  }
  .ln-bnr-lwr-rt-inr {
    padding-top: 0;
  }
  .ln-bnr-upper {
    margin: 0 auto 30px;
  }
  .ln-banner-sec {
    padding: 150px 0 0;
  }

  .trust-wpr-lft {
    width: 100%;
    border-right: 0;
    text-align: center;
    margin-bottom: 30px;
  }
  .trust-wpr-rt {
    width: 100%;
    padding-left: 0;
  }
  .trust-wpr-lft .trust-wpr-lft-inr {
    padding: 0;
  }
  .not-easy-sec .sec-head {
    text-align: center;
  }
  .not-easy-lft-clm,
  .not-easy-rt-clm {
    width: 100%;
  }
  .not-easy-text-wpr {
    margin-top: 40px;
  }
  .not-easy-card-outer {
    padding: 25px 20px 20px 0;
  }
  .you-might-clm {
    width: 50%;
  }
  .you-might-row {
    --bs-gutter-x: 15px;
    justify-content: center;
  }
  .you-might-cd-txt h3 {
    font-size: 17px;
  }
  .you-might-cd-txt i {
    width: 30px;
  }
  .our-top-lft-clm {
    width: 100%;
  }
  .our-top-lft-inr figure {
    margin-left: 0;
    margin-right: 0;
  }
  .our-top-title {
    max-width: 100%;
    text-align: center;
  }
  .our-top-rt-clm {
    width: 100%;
  }
  .collaborate-mdl-outer {
    position: relative;
  }
  .collaborate-outer {
    display: flex;
    flex-direction: column-reverse;
  }
  .collaborate-sec .sec-head {
    margin-bottom: 20px;
  }
  .collaborate-list-item-card {
    flex-direction: inherit;
    text-align: left;
  }
  .collaborate-list-item-card i {
    margin-top: 0;
  }
  .collaborate-list-txt {
    padding-right: 0;
    padding-left: 14px;
  }
  .collaborate-list-item:nth-child(n + 3) {
    margin-top: 30px;
  }
  .complete-dvlmt-sec-lft {
    max-width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }
  .complete-dvlmt-sec-right {
    padding-left: 0;
    text-align: center;
  }
  .complete-dev-clm {
    width: 50%;
  }
  .complete-development-row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 55px;
  }
  .complete-dev-card-txt .complete-dev-arr {
    width: 31px;
    height: 31px;
  }
  .complete-dev-arr img {
    max-width: 8px;
  }
  .complete-dev-icon img {
    max-width: 25px;
  }
  .complete-development-sec .sec-head {
    margin-bottom: 60px;
  }
  .esteemed-client-clm {
    width: 25%;
    padding: 6px;
  }
  .esteemed-client-row {
    margin: -6px;
  }

  .leading-wordpress-sec,
  .esteemed-client-sec,
  .industry-sec,
  .complete-development-sec,
  .collaborate-sec,
  .you-might-sec {
    padding: 60px 0;
    overflow: hidden;
  }
  .footer-first-col {
    width: 50%;
    padding-top: 0;
  }
  .footer-middle-col {
    display: none;
  }
  .footer-last-col {
    width: 50%;
    padding-right: 10px;
  }
  .consultation-feild {
    width: 100%;
  }
  .consultation-form-wraper input[type="text"],
  .consultation-form-wraper input[type="tel"],
  .consultation-form-wraper input[type="email"],
  .consultation-form-wraper input[type="password"],
  .consultation-form-wraper input[type="url"],
  .consultation-form-wraper select,
  .consultation-form-wraper textarea {
    height: 32px;
    font-size: 16px;
  }
  .consultation-form-wraper {
    padding: 25px 15px 25px 20px;
  }
  .footer-htwo {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .consultation-form-wraper .footer-htwo {
    margin-bottom: 30px;
  }
  .header-btn-wrap {
    margin-left: auto;
  }

  /* How We Deliver Css Start */
  .deliver-animation-left {
    width: 100%;
    display: none;
  }
  .deliver-animation-right {
    width: 100%;
  }
  .anim-main-wrap {
    max-width: 100%;
  }
  .deliver-animation-content {
    position: static;
  }
  .anim-main-wrap {
    min-height: 1px;
  }
  .deliver-animation-content-inner {
    text-align: center;
    background: var(--whitecolor);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 15px;
    width: 100%;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    background: #ffffff;
    border: 1px solid rgba(39, 44, 101, 0.3);
    height: 100%;
  }
  .anim-main-wrap .slick-list {
    margin: 0 -12px;
  }
  .anim-main-wrap .slick-slide {
    padding: 0 12px;
  }

  .anim-main-wrap .slick-track {
    display: flex;
  }

  .anim-main-wrap .slick-slide {
    height: inherit;
  }
  .anim-main-wrap .slick-dots {
    padding: 0;
    margin: 25px 0 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .anim-main-wrap .slick-dots li {
    margin: 0 5px;
    line-height: 0;
  }
  .anim-main-wrap .slick-dots li button {
    padding: 0;
    margin: 0;
    font-size: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: #f3f3f3;
    outline: 0;
    box-shadow: none;
    border: 0;
  }
  .anim-main-wrap .slick-dots li.slick-active button {
    background: #4ea1fe;
  }
  .how-we-deliver-sec .sec-head {
    margin: 0 auto 30px;
  }
  /* How We Deliver Css End */

  .services-msme-sec.wps-ln .services-msme-row .banner-video,
  .services-msme-sec.wps-ln .services-msme-right {
    width: 100%;
  }
  .services-msme-sec.wps-ln .services-msme-content {
    padding: 30px 0 0;
  }
  .ln-wps-msme-para {
    margin-bottom: 0;
  }
  .consultation-form-wraper .gform-theme--foundation .gfield--width-half {
    grid-column: span 12 !important;
  }
  .consultation-form-wraper .gform-theme--foundation .gform_fields {
    row-gap: 20px !important;
  }

  .wps-ln-popup .golf-contact-left {
    display: none;
  }
  .wps-ln-popup .modal-dialog {
    max-width: 640px;
  }
  .wps-ln-popup .golf-contact-right {
    border-radius: 20px;
  }
  /* 03-04-2025 M.M Css Start */
  .consultation-form-wraper label {
    font-size: 16px !important;
  }
  /* 03-04-2025 M.M Css End */

  /* 07-04-2025 M.M Css Start */
  .new-testmonials-btm-head h2 {
    font-size: 28px;
}
.new-testmonials-btm-head {
  margin-bottom: 30px;
}
.new-testmonials-card h3 {
  font-size: 22px;
}
.mobile-app-dev-template .ln-bnr-lwr-mdl-clm figure {
  margin-left: auto;
}
.full-stack-page-template .ln-bnr-upper h1 br {
  display: none;
}
  /* 07-04-2025 M.M Css End */

  /* 10-04-2025 start KM */
  .ln-banner-mod-content h1 {
    width: 100%;
    margin: 0 0 25px;
    font-size: 38px;
}

.ln-banner-mod-content h2 {
    font-size: 22px;
    margin: 0 0 20px;
}

.ln-banner-mod-content {
    padding: 0 0 30px;
}

.ln-banner-mod-media img {
    max-width: 350px;
}

.ln-banner-mod-media {
    text-align: center;
}

.ln-banner-mod .ln-banner-shp {
    right: 0;
    left: 0;
    width: 100%;
    max-width: 95%;
    margin: auto;
}

.ln-banner-sec {
    padding: 138px 0 0;
}

.cmn-large-txt {
    font-size: 13.125vw;
}
/* 10-04-2025 end KM */

}

@media (max-width: 767px) {
  /* images alignment for wordpress content pages */
  .alignright,
  .alignleft,
  .aligncenter {
    float: none;
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    clear: both;
    margin-bottom: 24px;
  }
  .cmn-gap {
    padding: 60px 0;
  }

  h1,
  .h1-title {
    font-size: 32px;
  }
  h2,
  .h2-title {
    font-size: 26px;
  }
  h3,
  .h3-title {
    font-size: 18px;
  }

  .navbar-brand {
    width: 140px;
  }
  .main-head {
    top: 20px;
  }
  .ln-banner-sec {
    padding: 140px 0 80px;
  }
  .ln-bnr-lwr-lft-clm {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .ln-bnr-lwr-rt-clm {
    width: 80%;
    margin: 0 auto;
  }
  .ln-bnr-lwr-lft-inr p {
    max-width: 100%;
  }
  .bnr-book-btn {
    text-align: center;
  }
  .ln-bnr-lwr-mdl-clm {
    display: none;
  }
  .you-might-clm {
    width: 100%;
  }
  .collaborate-list-item {
    width: 100%;
    margin-bottom: 30px;
  }
  .collaborate-list-item-card {
    max-width: 100%;
  }
  .collaborate-list-item:nth-child(n + 3) .collaborate-list-item-card {
    max-width: 100%;
  }
  .collaborate-list-item-card:last-child {
    margin-bottom: 0;
  }
  .collaborate-list-item:nth-child(n + 3) {
    margin-top: 0;
  }
  .collaborate-list-txt .h4-title br {
    display: none;
  }
  .complete-dev-icon {
    width: 50px;
    height: 50px;
    margin-top: -25px;
  }
  .complete-dev-icon img {
    max-width: 20px;
  }
  .industry-slider-arr-outer .industry-slider-arr {
    width: 48px;
    height: 48px;
  }
  .industry-slider-arr-outer {
    padding-top: 30px;
  }
  .industry-sldr-txt {
    padding: 10px 10px 15px 20px;
  }
  .industry-sldr-txt i {
    width: 45px;
  }
  .esteemed-client-clm {
    width: 33.33%;
  }
  .esteemed-client-card {
    min-height: 100px;
  }
  .footer-first-col {
    width: 100%;
    margin-bottom: 30px;
  }
  .footer-last-col {
    width: 100%;
    padding-right: 0;
  }
  .great-together-details {
    margin: 0 auto 20px;
    width: 45%;
  }
  .footer-htwo {
    text-align: center;
    width: 100%;
  }
  .footer-htwo br {
    display: none;
  }
  .footer-copy-right {
    text-align: center;
  }
  .great-together-wraper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .great-together-details:last-child {
    border-bottom: 1px dashed #999999;
    margin-bottom: 20px;
  }
  .our-awards-recognitions-sec.cmn-gap {
    padding-bottom: 60px;
  }
  .ln-bnr-lwr-rt-inr {
    padding-left: 0;
  }

  .wps-ln-popup .modal-dialog {
    max-width: 500px;
  }

  /* S.M Css Start 04-04-25  */
  .product-slider-button-wpr {
    width: 100%;
  }
  .product-inner-sld {
    width: 100%;
    padding-top: 40px;
    text-align: center;
  }
  .funnel-btn-wpr {
    padding-top: 40px;
  }
  .funnel-section .sec-head {
    margin: 0 auto 30px;
  }

  /* S.M Css End 04-04-25  */

  /* 07-04-2025 M.M Css Strat */
  .testmonials-client-profile {
    width: 65px;
    height: 65px;
  }
  .testmonials-client-name {
    font-size: 18px;
  }
  .new-testmonials-designation {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .clutch-test-wraper p {
    font-size: 16px;
  }
  .testmonials-client-details {
    width: calc(100% - 65px);
  }
  .full-stack-page-template .ln-bnr-upper h1 {
    font-size: 32px;
}
  /* 07-04-2025 M.M Css End */

  .complete-dev-card-txt .complete-dev-arr {
    display: none;
}

.complete-dev-card-txt {
    justify-content: center;
}

.complete-dev-card-txt h3 {
    width: 100%;
    padding-right: 0;
}

/* 10-04-2025 start KM */
.ln-banner-sec {
  padding: 130px 0 0;
}

.ln-banner-mod-content h1 {
  font-size: 32px;
  text-align: center;
}

.ln-banner-mod-content .ln-bnr-features-list {
  column-count: 1;
}

.ln-banner-mod-media img {
  max-width: 310px;
}

.ln-banner-mod .ln-banner-shp {
  max-width: unset;
}

.industry-sldr-card {
  padding-top: 100%;
}
/* 10-04-2025 end KM */

}

@media (max-width: 575px) {
  h2,
  .h2-title {
    line-height: 1.1;
  }
  .navbar-toggler {
    margin-left: 10px;
  }
  .cmn-btn span {
    width: 30px;
    height: 30px;
    margin-left: 8px;
  }
  .cmn-btn {
    padding: 6px 7px 6px 16px;
  }
  h1,
  .h1-title {
    font-size: 30px;
  }

  .ln-banner-sec {
    padding: 130px 0 70px;
  }
  .ln-bnr-upper {
    margin: 0 auto 20px;
  }
  .collaborate-bttm-wpr {
    padding-top: 10px;
  }
  .complete-dev-clm {
    width: 100%;
  }
  .complete-dev-card-txt h3 {
    width: 90%;
  }
  .complete-dev-card-txt h3 br {
    display: none;
  }
  .complete-development-row {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 35px;
  }
  .not-easy-row {
    --bs-gutter-x: 11px;
  }
  .you-might-row {
    --bs-gutter-x: 10px;
  }
  .industry-slider-outer:after,
  .industry-slider-outer::before {
    width: 130px;
  }
  .footer-landing-sec {
    padding-top: 50px;
  }
  .great-together-details {
    width: 100%;
    max-width: 100%;
  }
  .great-together-details:last-child {
    border-bottom: 0;
    margin-bottom: 0;
  }
  .wps-ln-template .services-why-choose-slider-outer .slick-arrow {
    display: none !important;
  }
  .wps-ln-popup .btn-close {
    top: -4px;
    right: -5px;
    width: 30px;
    height: 30px;
  }
  .wps-ln-popup .modal-dialog {
    max-width: 100%;
    padding: 0 15px;
  }

  /* S.M Css Start 04.04.25 */

  .funnel-btn-wpr {
    padding-top: 20px;
  }
  .product-inner-sld {
    padding-top: 25px;
  }
  /* S.M Css Start 04.04.25 */

  /* 07-04-2025 M.M Css Start */

  .full-stack-page-template .ln-bnr-upper h1 {
    font-size: 30px;
}
  /* 07-04-2025 M.M Css End */
  /* 10-04-2025 start KM */
  .ln-banner-sec {
    padding-bottom: 0;
}

.ln-banner-mod-content h1 {
    font-size: 30px;
}
/* 10-04-2025 start KM */
}

@media (max-width: 479px) {
  h1,
  .h1-title {
    font-size: 26px;
  }
  h4,
  .h4-title {
    font-size: 18px;
    line-height: 1.2;
  }
  .navbar-nav li:last-child {
    display: block;
  }

  .main-head .navbar {
    padding: 9px 10px 13px 17px;
  }
  .navbar-brand {
    width: 110px;
  }
  .header-btn-wrap .cmn-btn {
    padding: 14px 10px;
    font-size: 12px;
  }
  .header-btn-wrap .cmn-btn span {
    display: none;
  }
  .navbar-toggler {
    margin-left: 6px;
  }
  .ln-banner-sec {
    padding: 120px 0 50px;
  }
  .ln-bnr-lwr-lft-inr h2 {
    font-size: 20px;
  }
  .ln-bnr-lwr-rt-clm {
    width: 100%;
  }
  .not-easy-card-outer:first-child {
    border: 0;
  }
  .not-easy-card-outer {
    width: 100%;
    border-right: 0;
    border-top: 1px solid #e0e0e0;
  }
  .not-easy-card-outer {
    padding: 15px;
  }
  .not-easy-card-outer:nth-child(1),
  .not-easy-card-outer:nth-child(2) {
    padding-top: 15px;
    padding-left: 15px;
  }
  .our-top-txt-outer {
    padding: 25px;
  }
  .our-top-list li span {
    font-size: 16px;
  }
  .collaborate-mdl-outer {
    width: 276px;
    height: 276px;
  }
  .collaborate-list-item-card i {
    width: 53px;
    height: 53px;
  }
  .collaborate-list-item-card i img {
    max-width: 20px;
  }
  .complete-dev-card-txt h3 {
    width: 80%;
  }
  .complete-development-btn-wpr {
    padding-top: 30px;
  }
  .leading-wordpress-sec,
  .esteemed-client-sec,
  .industry-sec,
  .complete-development-sec,
  .collaborate-sec,
  .you-might-sec {
    padding: 50px 0;
  }
  .industry-slider-arr-outer {
    padding-top: 20px;
  }
  .industry-slider-arr-outer .industry-slider-arr {
    width: 38px;
    height: 38px;
  }
  .esteemed-client-clm {
    width: 50%;
  }
  .awards-recognition-box {
    width: 170px;
    min-height: 120px;
    padding: 10px;
  }
  .awards-recognition-box img {
    max-width: 70px;
  }
  .consultation-form-wraper input[type="submit"] {
    height: 55px;
    padding: 10px 79px 10px 30px;
  }

  .wps-ln-popup .golf-hthree,
  .wps-ln-popup .golf-htwo {
    font-size: 26px;
    line-height: 1.1;
  }
  .wps-ln-popup .gform-footer input[type="submit"] {
    width: 100% !important;
  }
  /* 07-04-2025 M.M Css Start */
  .new-testmonials-card {
    padding: 25px 15px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
.new-testmonials-card h3 {
  font-size: 20px;
  text-align: center;
} 
.clutch-test-wraper,
.new-testmonials-client-wraper {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.testmonials-client-details {
  width: 100%;
  padding-left: 0;
  padding-top: 12px;
}
.clutch-test-wraper img {
  margin-left: 0;
  margin-top: 12px;
}
.new-testmonials-slider .slick-arrow {
  width: 38px;
  height: 38px;
}

.new-testmonials-slider .slick-prev {
  left: calc(50% - 43px);
}
.new-testmonials-slider .slick-next {
  right: calc(50% - 43px);
}
.new-testmonials-slider {
  padding-bottom: 55px;
}

.full-stack-page-template .ln-bnr-upper h1 {
  font-size: 26px;
}
  /* 07-04-2025 M.M Css End */

  /* 10-04-2025 start KM */
  .ln-banner-sec {
    padding-bottom: 0;
}

.ln-banner-mod-content h1 {
    font-size: 26px;
}
/* 10-04-2025 start KM */

}
