@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Arvo:wght@400;700&display=swap");


body {
  margin: 0;
  padding: 0;
  font-family: var(--Interfont);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  font-weight: 500;
  font-style: normal;
  color: var(--fontcolor);
  font-size: 18px;
  line-height: 1.7;
  background-color: #fff;
}

:root {
  --skycolor: #bfd9ff;
  --bluecolor: #1d7bff;
  --deepbluecolor: #0b2aa9;
  --sectionbluecolor: #14136d;
  --dottedcolor: #3b8dff;
  --dottransparetcolor: #c4dbfc;
  --buttoncolor: #ff9117;
  --buttonbluecolor: #2040c3;
  --accordionbackcolor: #2040c3;
  --footerbackcolor: #161616;
  --fontcolor: #6c6c6c;
  --whitecolor: #ffffff;
  --blackcolor: #000000;
  --Interfont: "Inter", sans-serif;
  --Arvofont: "Arvo", serif;
}

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

b,
strong {
  font-weight: 700;
}

p {
  margin: 0 0 18px 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--Arvofont);
  margin: 0 0 22px 0;
  padding: 0;
  color: var(--blackcolor);
  font-weight: 700;
}

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

h1,
.heading_one {
  font-weight: 700;
  font-size: 58px;
  line-height: 1.2;
}

h2,
.heading_two {
  font-weight: 700;
  font-size: 53px;
  line-height: 1.2;
}

h3,
.heading_three {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.3;
}

h4,
.heading_four {
  font-size: 35px;
  line-height: 1;
}

h5,
.heading_five {
  font-size: 32px;
  line-height: 1;
}

h6,
.heading_six {
  font-size: 26px;
  line-height: 1;
}

a {
  display: inline-block;
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  color: #ecb61e;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: red;
}

img {
  max-width: 100%;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
  background-color: var(--whitecolor);
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 5px;
  color: #bebebe;
  border: 0;
  height: 44px;
  padding: 0 15px;
  outline: none !important;
}

textarea {
  background-color: var(--whitecolor);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 5px;
  border: 0;
  padding: 12px 16px;
  width: 100%;
  color: #bebebe;
  height: 88px;
  resize: none;
  outline: none !important;
}

input[type="submit"] {
  background: var(--buttoncolor);
  color: var(--whitecolor);
  height: 88px;
  border: 1px solid var(--whitecolor);
  outline: 1px solid var(--whitecolor) !important;
  outline-offset: -7px !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--Arvofont);
  transition: all 0.3s ease-in-out;
}

input[type="submit"]:hover {
  background: var(--dottedcolor);
  color: var(--whitecolor);
}

::-webkit-input-placeholder {
  opacity: 1;
  color: #bebebe;
}

:-ms-input-placeholder {
  opacity: 1;
  color: #bebebe;
}

::-moz-placeholder {
  opacity: 1;
  color: #bebebe;
}

:-moz-placeholder {
  opacity: 1;
  color: #bebebe;
}

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 #fff;
  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;
}

/* 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: 30px;
  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: 2px;
  width: 17px;
  height: 16px;
  background: url(./images/round_box.svg) no-repeat center center;
  background-size: 17px;
}

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

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

.form_input_check label input[type="checkbox"]:checked+span:after {
  opacity: 1;
}

.form_input_check label input[type="checkbox"]:checked+span::before {
  opacity: 0;
}

.form_input_check label input[type="checkbox"]:checked+span:after {
  opacity: 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%;
  transition: all 0.2s ease;
}

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

.form_input_radio label input[type="radio"]:checked+span:after {
  opacity: 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;
  border-radius: 100%;
  line-height: 68px;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  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;
  transition: all 0.3s ease-in-out;
  transform: translateY(0);
}

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

/* custom css start */
.cmn_gap {
  padding: 90px 0;
}

/* custom css end */

/* navbar*/

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

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

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

.navbar-nav>li {
  margin: 0 15px;
  padding: 20px 0;
  position: relative;
}

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

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

.navbar-nav>li>a {
  color: #000;
  font-size: 16px;
  line-height: 1.2;
  position: relative;
  font-weight: normal;
}

.navbar-nav>li>a:after {
  content: "";
  display: block;
  width: 0;
  height: 52px;
  background: url("images/menuhoveicn01.svg") no-repeat;
  background-size: 100%;
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
}

.navbar-nav>li.current-menu-item>a,
.navbar-nav>li>a:hover,
.navbar-nav>li.menu-item-has-children:hover>a {
  color: #ffffff;
}

.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: 124px;
}

/* 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);
  border-radius: 0;
  width: 198px;
  padding: 0;
}

.sub-menu>li>a {
  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 {
  color: var(--buttoncolor);
}

.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 !important;
  z-index: 99;
  transition: background-color 0.5s linear;
}

/* for push-menu end*/

/* custom-css-start */

.main-head {
  position: fixed;
  padding: 3px 0;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9;
  transition: all 0.3s ease-in-out;
}

.navbar-brand {
  width: 121px;
  transition: all 0.3s ease-in-out;
}

.navbar-brand .fixt-logo {
  opacity: 0;
  display: none;
  transition: all 0.3s ease-in-out;
}

.navbar-brand .main-logo {
  opacity: 1;
  display: block;
  transition: all 0.3s ease-in-out;
}

.navbar-collapse {
  padding: 0 30px;
}

.navbar-collapse ul {
  margin: 0 auto;
}

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

.navbar-nav li {
  padding: 30px 45px 30px 0;
  margin: 0;
}

.navbar-nav li a {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}

.main-head.fixed {
  background: #ffffff !important;
  box-shadow: 0 0 20px #ebe9e9;
  transition: all 0.3s ease-in-out;
}

.main-head.fixed .navbar-brand .fixt-logo {
  opacity: 1;
  display: block;
  transition: all 0.3s ease-in-out;
  filter: grayscale(1);
}

.main-head.fixed .navbar-brand .main-logo {
  opacity: 0;
  display: none;
  transition: all 0.3s ease-in-out;
}

.main-head.fixed .navbar-nav li a {
  color: #343434;
  transition: all 0.3s ease-in-out;
}

.main-head.fixed .common-btntw {
  background: #ff9117;
  transition: all 0.3s ease-in-out;
}

.main-head.fixed .header-top-btnWrap::before {
  background: url("images/bg-btnwrapimg99.svg") no-repeat center center;
  background-size: 100%;
}

.main-head.fixed .common-btntw:hover {
  background: #000000;
  color: #ffffff;
  outline-color: #ffffff !important;
  border-color: #ffffff;
}


@media (max-width: 767px) {
  .main-head .navbar-brand {
    padding: 6px 0;
  }
}
@media (max-width: 767px) {
  .main-head .header-top-btnWrap {
    display: none;
  }
}
.main-head .header-phone-btn {
  font-size: 15px;
  color: white;
  font-weight: 500;
  white-space: nowrap;
  border-radius: 24px;
  padding: 8px 18px;
  background: #ff9117;
}
@media (max-width: 767px) {
  .main-head .header-phone-btn {
    font-size: 12px;
    padding: 6px 15px;
    margin: 0;
  }
  .main-head .header-phone-btn img {
    width: 18px;
    height: 18px;
  }
}
.main-head .header-phone-btn:hover {
  background: #e37700;
  color: white;
}
.main-head .header-phone-btn i {
  margin-right: 8px;
}
.main-head.fixed .header-phone-btn {
  background: #2040c3;
}
.main-head.fixed .header-phone-btn:hover {
  background: #193297;
  color: white;
}
@media (max-width: 991px) {
  .main-head .container {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .main-head .navbar-toggler {
    order: 0;
  }
}
@media (max-width: 991px) {
  .main-head .navbar {
    flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .main-head .btn-wrapper {
    margin-left: auto;
    margin-right: 10px;
  }
}


.home-banner-sec {
  position: relative;
  z-index: 1;
}

.home-banner-sec::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: radial-gradient(175.26% 89.2% at 50.29% 3.78%,
      #0e0d5b 0%,
      #201e94 48.87%,
      #184ce1 84.64%,
      #ffffff 100%);
}

.home-banner-wrapper-innr::before {
  content: "";
  position: absolute;
  bottom: 2%;
  left: 0;
  right: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(to bottom,
      rgba(188, 207, 244, 0) 0%,
      rgba(144, 178, 237, 0.23) 20%,
      rgba(206, 221, 246, 0.54) 47%,
      rgba(222, 232, 249, 0.8) 70%,
      rgba(235, 240, 252, 0.44) 88%,
      rgba(235, 240, 252, 0.2) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00bccff4', endColorstr='#33ebf0fc', GradientType=0);
  z-index: 2;
}

.home-banner-sec::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("images/homebanner001.png") no-repeat center;
  background-size: cover;
  z-index: 2;
}

.home-banner-btn-wrap .common-btn span {
  margin-left: 5px;
}

.home-banner-wrapper-innr {
  position: relative;
  padding: 140px 0;
}

.home-banner-txtWrap {
  position: relative;
  z-index: 3;
}

.home-banner-rw {
  align-items: center;
  --bs-gutter-x: 0;
}

.home-rght-imgWrap {
  position: relative;
  z-index: 3;
}

.home-banner-txtWrap h1 {
  color: #ffffff;
  margin-bottom: 40px;
  max-width: 560px;
  margin-right: auto;
}

.home-banner-txtWrap h1 span {
  display: inline-block;
  position: relative;
}

/* .home-banner-txtWrap h1 span::before {
  position: absolute;
  content: "";
  width: 110%;
  height: 110px;
  background: url("images/txtcircle03.svg") no-repeat;
  background-size: 100%;
  left: -20px;
  top: -20px;
  z-index: -1;
} */

.home-banner-txtWrap p {
  color: #ffffff;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 76px;
}

.common-btn {
  display: inline-block;
  background: #ff9117;
  border: 1px solid #ffffff;
  padding: 32px 42px;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  font-family: var(--Arvofont);
  outline: 1px solid #ffffff !important;
  outline-offset: -8px;
  position: relative;
}

.common-btn:hover {
  background: #ffffff;
  color: #ff9117;
  border-color: #ff9117;
  outline-color: #ff9117 !important;
  outline-offset: -8px;
}

.home-banner-btn-wrap::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url("images/btnbgimg01.svg") no-repeat center center;
  background-size: 100%;
  left: 0;
  top: 0;
}

.home-banner-btn-wrap {
  position: relative;
  padding: 33px 33px;
  display: inline-block;
}

.common-btntw {
  display: inline-block;
  background: #2040c3;
  border: 1px solid #ffffff;
  padding: 22px 30px;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  font-family: var(--Arvofont);
  outline: 1px solid #ffffff !important;
  outline-offset: -8px;
  position: relative;
}

.common-btntw:hover {
  background: #ffffff;
  color: #2040c3;
  border-color: #2040c3;
  outline-color: #2040c3 !important;
  outline-offset: -8px;
}

.header-top-btnWrap::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url("images/bg-btnwrapimg03.svg") no-repeat center center;
  background-size: 100%;
  left: 0;
  top: 0;
}

.header-top-btnWrap {
  position: relative;
  padding: 16px 22px;
  display: inline-block;
}

.home-world-over-sec {
  position: relative;
  overflow: hidden;
  margin-top: -40px;
  z-index: 3;
}

.slider-wrap-home-secnd {
  position: relative;
}

.slider-wrap-home-secnd::before {
  position: absolute;
  content: "";
  background: linear-gradient(270deg,
      #ffffff 0%,
      rgba(255, 255, 255, 0.0001) 100%);
  width: 140px;
  height: 100%;
  left: 0;
  bottom: 0;
}

.slider-wrap-home-secnd::after {
  position: absolute;
  content: "";
  background: linear-gradient(270deg,
      #ffffff 0%,
      rgba(255, 255, 255, 0.0001) 100%);
  width: 140px;
  height: 100%;
  right: 0;
  bottom: 0;
}

.home-world-over-Tittle {
  text-align: center;
  margin-bottom: 50px;
}

.home-world-over-Tittle h2 {
  font-weight: 700;
  color: #000000;
}

.home-single-sld-wrapInnr {
  max-width: 250px;
  padding: 10px;
  margin: 0 auto;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-scnd-sld-singl {
  padding: 0 5px;
}

.home-scnd-sec-slider .slick-list {
  margin: 0 -5px;
}

.home-scnd-sec-slider .slick-dots li {
  padding: 0 14px;
  margin: 0;
  width: auto;
  height: auto;
}

.home-scnd-sec-slider .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  background: #c4dbfc;
}

.home-scnd-sec-slider .slick-dots li button::before {
  display: none;
}

.home-scnd-sec-slider .slick-dots li.slick-active button {
  background: #3b8dff;
  width: 18px;
  height: 18px;
}

/* home-solution-section */
.common-gap {
  padding: 90px 0;
}

.home-solution-sec {
  position: relative;
}

.gear-solutiontxtWrap {
  position: relative;
}

.gear-solutiontxtWrap span,
.sec_subTitle {
  background: #e4efff;
  padding: 10px 20px;
  color: #224bf3;
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 30px;
}

.home-gear-solutngtxtLft {
  position: relative;
  margin-top: 30px;
  padding: 0 0 0 60px;
  font-weight: 500;
  font-size: 18px;
  color: #6c6c6c;
}

.home-gear-solutngtxtLft::before {
  position: absolute;
  content: "";
  width: 7px;
  background: url("images/icmghsi01.svg") no-repeat;
  height: 100%;
  background-size: cover;
  left: 0;
  top: 0;
}

.home-fourthcart-sec {
  position: relative;
}

.home-fourthcart-crtWrap {
  position: relative;
  background: #e4efff;
  border-radius: 10px;
  padding: 60px 40px 40px;
  color: #6c6c6c;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.home-fourthcart-crtWrap:hover {
  background: #1f44cb;
  color: #ffffff;
}

.home-fourthcart-crtWrap:hover h2 {
  color: #ffffff;
}

.home-fourthcart-crtWrap:hover a {
  color: #ffffff;
}

.home-fourthcart-crtWrap:hover a i img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.home-fourthcart-crtWrap .icn-imgcrt {
  display: inline-block;
  background: #1d7bff;
  border-radius: 6px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 40px;
  top: -35px;
}

.home-fourthcart-crtWrap h2 {
  color: #14136d;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}

.home-fourthcart-crtWrap a {
  display: inline-flex;
  align-items: center;
  color: #1d7bff;
  font-weight: 500;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
}

.home-fourthcart-crtWrap a i img {
  transition: all 0.3s ease-in-out;
}

.home-fourthcart-crtWrap a i {
  display: flex;
  padding-left: 10px;
}

.home-fourthcart-crtWrap::before {
  position: absolute;
  content: "";
  right: -12px;
  bottom: -12px;
  width: 100%;
  height: 100%;
  background: url("images/crfg-bg-wrap-img09.png") no-repeat center center;
  background-size: cover;
  z-index: -1;
  border-radius: 12px;
}

.home-fourthcart-rw {
  --bs-gutter-x: 40px;
  --bs-gutter-y: 80px;
}

.wrapitem-txtcrtmatch {
  position: relative;
  margin-bottom: 25px;
}

.home-upskill-sec {
  position: relative;
}

.home-upskill-sld-wrapinnr {
  position: relative;
  display: flex;
  margin: 0 -40px;
}

.right-silder-mainwrapper-upskill,
.home-upskill-imgwrap {
  width: 50%;
  padding: 0 40px;
}

.wrap-home-upskill-txtWrap .blcktxt-wrap {
  background: #e4efff;
  padding: 10px 20px;
  color: #224bf3;
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 30px;
}

.wrap-home-upskill-txtWrap h2 {
  font-size: 44px;
  margin-bottom: 20px;
}

.wrap-home-upskill-txtWrap ul {
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-wrap: wrap;
}

.wrap-home-upskill-txtWrap ul li {
  padding: 0 30px 0 0;
  width: 50%;
}

.wrap-home-upskill-txtWrap ul li:not(:last-child) {
  margin-bottom: 20px;
}

.wrap-home-upskill-txtWrap ul li span {
  display: block;
  font-weight: 700;
  font-size: 53px;
  color: #000000;
  font-family: var(--Arvofont);
}

.slider-right-upskill-slider .slick-arrow::before {
  display: none;
}

.slider-right-upskill-slider {
  display: flex;
  flex-wrap: wrap;
}

.slider-right-upskill-slider .slick-arrow {
  background: #e4efff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  bottom: 0;
  top: inherit;
  position: static;
  order: 2;
  margin: -20px 20px 0 0;
  z-index: 1;
}

.slider-right-upskill-slider .slick-next {
  background: url("images/arrwsgs02.svg") no-repeat center center #e4efff;
  background-size: 8px;
}

.slider-right-upskill-slider .slick-prev {
  background: url("images/arrwsgs01.svg") no-repeat center center #e4efff;
  background-size: 8px;
}

.btn-wrap-innr-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.wrap-home-upskill-txtWrap a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #1d7bff;
  font-weight: 600;
  font-size: 20px;
}

.wrap-home-upskill-txtWrap a:hover i {
  padding-left: 15px;
}

.wrap-home-upskill-txtWrap a:hover {
  color: #000000;
}

.wrap-home-upskill-txtWrap a:hover i img {
  -webkit-filter: brightness(0) invert(0);
  filter: brightness(0) invert(0);
}

.wrap-home-upskill-txtWrap a i img {
  transition: all 0.3s ease-in-out;
}

.wrap-home-upskill-txtWrap a i {
  display: flex;
  padding-left: 10px;
  transition: all 0.3s ease-in-out;
}

.wrap-home-upskill-txtWrap ul li p {
  max-width: 195px;
  margin-right: auto;
  font-weight: 500;
  font-size: 18px;
  color: #6c6c6c;
}

.home-upskill-imgwrap figure {
  margin: 0;
  position: relative;
}

.home-upskill-imgwrap figure img {
  border-radius: 12px;
  width: 100%;
}

.home-upskill-imgwrap figure i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 192px;
  height: 192px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-upskill-imgwrap figure i img {
  max-width: 115px;
  border-radius: 0;
}

.home-upskill-imgwrap figure::before {
  position: absolute;
  content: "";
  right: -12px;
  bottom: -12px;
  width: 100%;
  height: 100%;
  background: url(images/crfg-bg-wrap-img09.png) no-repeat center center;
  background-size: cover;
  z-index: -1;
  border-radius: 25px;
}

.home-middle-unname-slider-sec {
  position: relative;
  padding: 85px 0;
  background: #14136d;
  overflow: hidden;
}

.home-middle-unname-slider-wrapinnr {
  display: flex;
  position: relative;
  border-radius: 24px;
  min-height: 570px !important;
}

.bg-name-logo {
  position: absolute;
  right: 70px;
  top: -12px;
  background: #ffffff;
  width: 180px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-middle-unname-slider-wrapinnr figure {
  margin: 0;
  width: 30%;
  max-height: 550px;
}

.home-middle-unname-slider-wrapinnr .rifhtinnr-txtslidunanmae{
  max-height: 550px;
  background-color: #0b2aa9;
}

.home-middle-unname-slider-wrapinnr figure img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 24px 0 0 24px;
}

.rifhtinnr-txtslidunanmae {
  width: 70%;
  padding: 80px 50px 40px;
}

.rifhtinnr-txtslidunanmae i {
  display: inline-block;
  margin-bottom: 20px;
}

.rifhtinnr-txtslidunanmae p {
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  font-family: var(--Arvofont);
  line-height: 1.8;
  margin-bottom: 25px;
}

.rifhtinnr-txtslidunanmae span {
  color: #3b8dff;
  font-weight: 500;
  font-size: 18px;
}

.rifhtinnr-txtslidunanmae span strong {
  font-weight: 900;
}

.home-middle-unname-sliderSingl {
  padding: 15px 20px;
}

.home-middle-unname-slidermain .slick-list {
  margin: 0 -20px;
  overflow: visible !important;
}

.home-middle-unname-slidermain .slick-dots {
  bottom: -30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-middle-unname-slidermain .slick-dots li {
  padding: 0 7px;
  margin: 0;
  width: auto;
  height: auto;
}

.home-middle-unname-slidermain .slick-dots li button {
  width: 25px;
  height: 2px;
  padding: 0;
  background: #2b429e;
}

.home-middle-unname-slidermain .slick-dots li button::before {
  display: none;
}

.home-middle-unname-slidermain .slick-dots li.slick-active button {
  background: #cecefc;
  height: 2px;
}

.home-middle-unname-slidermain .slick-arrow::before {
  display: none;
}

.home-middle-unname-slidermain .slick-arrow {
  width: 50px;
  height: 50px;
  background: #1d7bff;
  border-radius: 50%;
  z-index: 1;
  top: 100%;
  margin-top: 30px;
}

.home-middle-unname-slidermain .slick-prev {
  background: url("images/arrw0031.svg") no-repeat center center #1d7bff;
  background-size: 10px;
  left: 0;
}

.home-middle-unname-slidermain .slick-next {
  background: url("images/arrw0032.svg") no-repeat center center #1d7bff;
  background-size: 10px;
  right: 0;
}

.blue_sec {
  background-color: #14136d;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.blue_sec::before {
  position: absolute;
  content: "";
  left: 30px;
  top: 20px;
  width: 100%;
  height: 100%;
  background: url("images/blue-imgbg-box01.png") no-repeat;
  background-size: cover;
}

.section-tittle {
  position: relative;
}

.section-tittle h2 {
  font-size: 48px;
}

.blue_sec .section-tittle {
  margin-bottom: 65px;
}

.blue_sec .section-tittle h2 {
  color: #ffffff;
  max-width: 568px;
  margin: 0 auto;
}

.center-txtTittle {
  text-align: center;
}

.rounded_path_sec {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.rounded_img_col {
  width: 372px;
  flex-basis: 372px;
}

.rounded_txt_col {
  width: calc(100% - 372px);
  flex-basis: calc(100% - 372px);
  padding-left: 175px;
}

.animate_img_wrap {
  position: relative;
  width: 100%;
  height: 372px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.animate_img_wrap:before {
  position: absolute;
  content: "";
  background: url(images/Ellipse.svg) center no-repeat;
  background-size: 100%;
  top: 5px;
  left: 5px;
  bottom: -4px;
  right: 5px;
  z-index: -1;
}

.animate_img_wrap .path_shape {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.animate_img_wrap .path_shape img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.animate_img_wrap ul {
  padding: 0;
  margin: 0;
}

.animate_img_wrap li a {
  width: 38px;
  height: 38px;
  background: #1d7bff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
}

.animate_img_wrap li a:hover,
.animate_img_wrap li.active a {
  background: #ffffff;
  color: #1d7bff;
}

.animate_img_wrap li {
  position: absolute;
  z-index: 2;
}

.animate_img_wrap li:nth-child(1) {
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.animate_img_wrap li:nth-child(2) {
  top: 55%;
  right: -10px;
}

.animate_img_wrap li:nth-child(3) {
  top: 55%;
  left: -10px;
}

.animate_content .icon {
  display: inline-block;
  width: 132px;
  margin-bottom: 15px;
}

.animate_content .icon img {
  width: 100%;
}

.animate_content h3 {
  font-weight: 700;
  font-size: 28px;
  color: #1d7bff;
  margin-bottom: 23px;
}

.animate_content p {
  font-weight: 500;
  font-size: 19px;
  color: #d6d6d6;
}

.animate_main {
  position: relative;
}

/* m.c css start */
.liberate-sec {
  background: var(--skycolor);
  padding: 45px 0 18px;
}

.liberate-sec .rowspan {
  --bs-gutter-x: 140px;
  align-items: center;
}

.liberate-rit {
  margin-bottom: 0;
}

.liberate-lft span {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.liberate-lft span::before {
  position: absolute;
  content: "";
  width: 119%;
  height: 110px;
  background: url(images/liba2.svg) no-repeat;
  background-size: 100%;
  left: -21px;
  top: -16px;
  z-index: -1;
}

.opt-tab .home-solution-clm figure {
  margin-bottom: 0;
}

.liberate-lft h2 b {
  position: relative;
  z-index: 2;
}

.liberate-lft h2 {
  margin-bottom: 20px;
}

.liberate-sec-cntnr {
  max-width: 1076px;
  margin-right: auto;
}

.liberate-lft p {
  font-size: 30px;
  color: #4e4e4f;
}

.opt-list ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  padding-top: 29px;
}

.opt-list li {
  position: relative;
  padding-left: 40px;
}

.opt-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 32px;
  background: url(images/tick-crcl.svg) no-repeat;
  background-size: 30px;
  background-position: center;
}

.opt-list li:not(:last-child) {
  margin-bottom: 13px;
}

.opt-rit {
  max-width: 591px;
  margin-left: auto;
}

.opt-tab .home-solution-rw {
  align-items: center;
}

.opt-tab .home-gear-solutngtxtLft::before {
  background: url(images/icmghsi02.svg) no-repeat;
  background-size: 100%;
}

.opt-tab .resp-tab-content {
  border: 0;
  padding: 0;
}

.opt-main-tab .resp-tabs-container {
  padding-top: 33px;
}

.opt-main-tab-list .resp-tab-active {
  border: 0 !important;
  background: var(--bluecolor) !important;
  color: var(--whitecolor) !important;
  padding: 16px 24px !important;
}

.opt-main-tab-list .resp-tab-active .nmbr-cls {
  background: var(--whitecolor) !important;
  color: var(--bluecolor) !important;
}

.opt-main-tab-list::before {
  content: "";
  width: 520px;
  height: 42px;
  background-image: url(images/line111.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  top: 7px;
  z-index: -1;
}

.opt-main-tab-list .resp-tab-item {
  background: #e4efff;
  border-radius: 32px;
  font-family: var(--Arvofont);
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  text-align: center;
  color: var(--bluecolor);
  display: flex;
  align-items: center;
  padding: 16px 24px;
  margin-right: 80px;
}

.opt-main-tab-list .resp-tab-item .nmbr-cls {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: var(--bluecolor);
  font-size: 12px;
  color: var(--whitecolor);
  margin-right: 9px;
}

.opt-main-tab-list .resp-tab-item:last-child {
  margin-right: 0;
}

.opt-main-tab-list {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 840px;
  margin: 0 auto !important;
}

.optimising-sec .home-world-over-Tittle {
  max-width: 810px;
  margin: 0 auto 50px;
}

.optimising-sec .home-world-over-Tittle p {
  padding: 0 100px;
}

.optimising-sec .home-world-over-Tittle h2 {
  margin-bottom: 20px;
}

/* m.c css end */

/* 13.04.23 MM css start */

/* growth potential css start */

.growth_container {
  margin: 0 auto;
  max-width: 872px;
}

.growth_potential_wraper {
  position: relative;
}

.growth_potential_wraper.cmn_gap {
  padding: 54px 0 70px 0;
}

.growth_potential_wraper .all_sm_hd {
  text-align: center;
  margin-bottom: 49px;
}

.growth_potential_wraper .all_sm_hd .heading_three {
  color: var(--whitecolor);
  margin-bottom: 26px;
}

.growth_potential_wraper .all_sm_hd p {
  font-size: 20px;
  color: var(--whitecolor);
}

.growth_potential_wraper .all_sm_hd p a {
  color: #3b8dff;
  text-transform: uppercase;
  font-weight: 800;
}

.grow_row {
  margin-bottom: -20px;
  --bs-gutter-x: 20px;
}

.grow_col {
  margin-bottom: 20px;
}

.grow_row .grow_col:nth-child(1),
.grow_row .grow_col:nth-child(2) {
  margin-bottom: 32px;
}

/* form style css start */

/* form style css end */
.growth_potential_form.colorFrm *::placeholder {
  color: #bebebe;
  opacity: 1;
}

.growth_potential_form.colorFrm *:-ms-input-placeholder {
  color: #bebebe;
  opacity: 1;
}

.growth_potential_form.colorFrm *::-ms-input-placeholder {
  color: #bebebe;
  opacity: 1;
}

.growth_potential_form.colorFrm input:not([type="submit"]),
.growth_potential_form.colorFrm select,
.growth_potential_form.colorFrm textarea {
  color: var(--blackcolor);
}

.growth_potential_form *:-ms-input-placeholder {
  color: #bebebe;
  opacity: 1;
}

.growth_potential_form *::-ms-input-placeholder {
  color: #bebebe;
  opacity: 1;
}

.growth_potential_form input[type="text"]:focus,
.growth_potential_form input[type="tel"]:focus,
.growth_potential_form input[type="email"]:focus {
  box-shadow: 0 0 0 4px #3b8dff;
}

.growth_potential_form textarea:focus {
  box-shadow: 0 0 0 4px #3b8dff;
}

.grow_submit_wrap {
  text-align: center;
}

.grow_btn {
  position: relative;
  padding: 50px 31px 46px 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.grow_btn::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(./images/button_backgroung.svg) no-repeat center;
  background-size: contain;
  pointer-events: none;
  z-index: 1;
}

.grow_col .form_input_check {
  text-align: center;
}

.form_input_check label {
  font-size: 16px;
  color: #bebebe;
  font-weight: 400;
}

.grow_box_design {
  padding: 2px;
  border-radius: 17px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  max-width: 293px;
  background: linear-gradient(143.29deg, #141572 -100.93%, #7f71e1 96.55%);
  position: absolute;
}

.grow_block {
  background: #090861;
  border-radius: 17px;
  padding: 8px 5px 8px 18px;
}

.box_color_wraper::before {
  position: absolute;
  content: "";
  top: 2.5px;
  right: 2.5px;
  bottom: 2.5px;
  left: 2.5px;
  width: 100%;
  height: 100%;
  border-radius: 17px;
  background: #090861;
}

.grow_box_design p {
  font-size: 20px;
  color: #e4efff;
  line-height: 1.4;
}

.grow_box_design.box_middle {
  max-width: 355px;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.grow_box_design.box_middle::before {
  position: absolute;
  content: "";
  bottom: -57px;
  left: 105px;
  width: 25px;
  height: 52px;
  background: url(./images/line2.svg) no-repeat;
  background-size: 100%;
}

.grow_box_design.box_right::before {
  position: absolute;
  content: "";
  bottom: -92px;
  left: 0;
  width: 189px;
  height: 82px;
  background: url(./images/line3.svg) no-repeat;
  background-size: 100%;
}

.grow_box_design.box_left {
  bottom: 105px;
  left: 0;
}

.grow_box_design.box_left::before {
  position: absolute;
  content: "";
  bottom: -80px;
  right: 0;
  width: 177px;
  height: 66px;
  background: url(./images/line1.svg) no-repeat;
  background-size: 100%;
}

.grow_box_design.box_right {
  right: 0;
  bottom: 105px;
}

.middle_house_img {
  margin: 0 auto;
  max-width: 249px;
}

.middle_house_img img {
  width: 100%;
}

.grow_middle_box {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  margin-bottom: 60px;
  padding-top: 130px;
}

/* growth potential css start */

/* message css start */
.massage_container {
  max-width: 777px;
  margin: 0 auto;
}

.massage_contant figure {
  margin: 0 auto;
  width: 86px;
  height: 86px;
  margin-bottom: 25px;
}

.massage_contant figure img {
  border-radius: 50%;
  width: 100%;
}

.massage_content_para p,
.massage_content_para ul li {
  color: #4e4e4f;
  font-size: 20px;
  line-height: 1.5;
  text-align: justify;
}

.massage_content_para p:not(:last-child) {
  margin-bottom: 30px;
}

.massage_contant .all_sm_hd {
  margin-bottom: 55px;
  text-align: center;
}

.massage_contant ul {
  padding-left: 28px;
}

.massage_contant ul li {
  display: block;
  line-height: 1;
  position: relative;
  padding-left: 67px;
  margin-bottom: 30px;
}

.massage_contant ul li:last-child {
  margin-bottom: 43px;
}

.massage_contant ul li:before {
  content: "";
  position: absolute;
  background: url(./images/right_icon.svg) no-repeat center;
  width: 35px;
  height: 30px;
  top: 0;
  left: 0;
}

.read_less_btn {
  width: 100%;
  margin-top: 53px;
  text-align: center;
  position: relative;
}

.read_less_btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px 14px 22px;
  color: var(--blackcolor);
  font-family: var(--Arvofont);
  background-color: var(--whitecolor);
  border-radius: 40px;
  border: 1px solid var(--blackcolor);
  font-size: 20px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1;
}

.read_less_btn a i {
  margin-left: 9px;
  font-size: 16px;
}

.read_less_btn::before {
  width: 100%;
  height: 1px;
  background: var(--blackcolor);
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  z-index: -1;
  content: "";
}

/* message css end */

/* Frequently Asked Questions css start */

.frequently_accordion_wraper .frequently_asked_questions .all_sm_hd {
  margin-bottom: 69px;
  text-align: center;
}

.frequently_accordion_wraper .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

.frequently_accordion_wraper .accordion-item:last-of-type {
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

.frequently_accordion_wraper .accordion-item:first-of-type {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.frequently_accordion_wraper .accordion-item {
  margin-bottom: 28px;
  background: #f2f2f2;
  border-radius: 12px;
  border: 0;
}

.frequently_accordion_wraper .accordion-button {
  font-size: 20px;
  font-weight: 700;
  position: relative;
  border: transparent;
  background: transparent;
  color: var(--blackcolor);
  line-height: 1.4;
  padding: 28px 72px 28px 28px;
}

.frequently_accordion_wraper .accordion-button::after {
  position: absolute;
  top: 36px;
  background: url(./images/plus.svg) no-repeat right center;
  right: 32px;
  width: 16px;
  height: 16px;
  background-size: 16px;
}

.frequently_accordion_wraper .accordion-button:not(.collapsed)::after {
  transform: rotate(0);
  background: url(./images/minus.svg) no-repeat right center;
  background-size: 16px;
}

.frequently_accordion_wraper .accordion-button:not(.collapsed) {
  color: var(--blackcolor);
  background-color: #f2f2f2;
  box-shadow: none;
}

.frequently_accordion_wraper .accordion-body {
  padding: 0 56px 28px 28px;
  font-weight: 400;
  color: var(--whitecolor);
  font-family: var(--Interfont);
}

.frequently_accordion_wraper .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.frequently_accordion_wraper .accordion-item.active {
  background: #1d7bff;
}

.frequently_accordion_wraper .accordion-item.active .accordion-button {
  background: #1d7bff;
  color: var(--whitecolor);
  border-radius: 12px;
}

.frequently_asked_questions .all_sm_hd {
  text-align: center;
  margin-bottom: 69px;
}

.acc_row {
  --bs-gutter-x: 48px;
}

/* Frequently Asked Questions css end */

/* footer css start */
.footer_wraper {
  position: relative;
  background-color: var(--footerbackcolor);
}

.upper_footer {
  padding: 80px 0;
}

.footer_logo {
  display: inline-block;
  width: 145px;
}

.footer_logo img {
  width: 100%;
}

.footer_menu_link li {
  display: block;
  line-height: 1;
  margin-bottom: 18px;
}

.footer_menu_link li:last-child {
  margin-bottom: 0;
}

.footer_menu_link li a {
  display: inline-block;
  line-height: 1.1;
  color: var(--whitecolor);
  font-size: 16px;
  text-transform: capitalize;
}

.footer_menu_link li a:hover {
  color: var(--buttonbluecolor);
}

.footer_social_address li {
  display: block;
  line-height: 1;
  margin-bottom: 22px;
  padding-left: 34px;
  position: relative;
}

.footer_social_address li:last-child {
  margin-bottom: 0;
}

.footer_social_address li i {
  position: absolute;
  top: -4px;
  left: 0;
  width: 22px;
}

.footer_social_address li a {
  color: var(--whitecolor);
  font-size: 16px;
}

.footer_social_address li i img {
  width: auto;
}

.footer_social_address li a:hover {
  color: var(--buttonbluecolor);
}

.footer_social_address li address {
  font-size: 16px;
  color: var(--whitecolor);
  line-height: 1.5;
}

/* bottom footer css */
.bottom_footer_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom_footer_content p {
  color: var(--whitecolor);
  font-size: 15px;
  font-weight: 400;
  margin: 0;
}

.bottom_footer_content p a {
  color: var(--whitecolor);
}

.bottom_footer_content p a:hover {
  color: var(--bluecolor);
}

.follow_connect_list {
  display: flex;
  align-items: center;
}

.follow_connect_list li {
  display: inline-block;
  margin: 0 10px;
  line-height: 1;
  font-size: 13px;
  color: var(--whitecolor);
  text-transform: uppercase;
}

.follow_connect_list li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  padding: 5px;
  color: var(--whitecolor);
  background-color: transparent;
  border: 2px solid var(--whitecolor);
}

.follow_connect_list li.google-badge a {
  border: none;
  width: 70px;
  height: 70px;
  padding: 0;
}

.follow_connect_list li a:hover {
  border-color: var(--bluecolor);
  color: var(--bluecolor);
}
.mid_footer{
  padding: 40px 0;
  border-top: 1px solid #676767;
}
.mid_footer .footer-tittle{
  margin-bottom: 30px;
}
.mid_footer .footer_social_address{
  display: flex;
  flex-wrap: wrap;
}
.mid_footer .footer_social_address li{
  width: 33.3%;
}
.mid_footer .footer_social_address li:last-child{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.mid_footer .footer_social_address li:last-child i{
  position: static;
  margin-right: 20px;
}
.bottom_footer {
  padding: 30px 0;
  border-top: 1px solid #676767;
}

.footer_col.footer_nth_one {
  width: 36%;
}

.footer_col.footer_nth_two {
  width: 19%;
}

.footer_col.footer_nth_three {
  width: 19%;
}

.footer_col.footer_nth_four {
  width: 26%;
}

/* footer css end */

/* 13.04.23 MM css end */

.moreless-button.less {
  background: url("images/arrwsh00396.svg") no-repeat #ffffff;
  background-size: 12px;
  background-position: 92%;
}

.moreless-button {
  background: url("images/arrwsh00397.svg") no-repeat #ffffff;
  background-size: 12px;
  background-position: 90% 23px;
}

.moretext {
  display: none;
}

.animate_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.animate_content>div {
  width: 100%;
}

.animate_main {
  overflow: hidden;
  min-height: 372px;
}

.num_list a {
  pointer-events: none;
}

.num_list li {
  cursor: pointer;
}

.sld-btnwrapullist {
  display: flex;
  align-items: center;
  margin: 0 -10px;
}

.sld-btnwrapullist li {
  padding: 0 10px;
}

.abt-sliderWrap {
  background: #e4efff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrap-sld-btn-links {
  display: flex;
  align-items: center;
}

.btn-wrap-innr-wrap a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #1d7bff;
  font-weight: 600;
  font-size: 20px;
}

.btn-wrap-innr-wrap a i {
  display: flex;
  padding-left: 10px;
  transition: all 0.3s ease-in-out;
}

.btn-wrap-innr-wrap a:hover i {
  padding-left: 15px;
}

.btn-wrap-innr-wrap a:hover {
  color: #000000;
}

.btn-wrap-innr-wrap a:hover i img {
  -webkit-filter: brightness(0) invert(0);
  filter: brightness(0) invert(0);
}

.btn-wrap-innr-wrap a i img {
  transition: all 0.3s ease-in-out;
}

.cmn-img {
  width: auto !important;
  height: auto !important;
}

/**********************************************/

#gform_1 .gform_footer.top_label {
  justify-content: center;
}

#field_1_8 .gchoice.gchoice_1_8_1 {
  position: relative;
  margin: 0;
  padding-left: 40px;
  display: block !important;
}

#field_1_8 .gchoice.gchoice_1_8_1 label {
  margin: 0;
  padding: 0;
  color: #fff;
  display: block !important;
  font-size: 16px !important;
  color: var(--whitecolor) !important;
  font-weight: 400 !important;
  max-width: 100% !important;
}

#field_1_8 .gchoice.gchoice_1_8_1 input[type="checkbox"] {
  visibility: hidden;
  display: none;
}

#field_1_8 .gchoice.gchoice_1_8_1 input[type="checkbox"]+label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 17px;
  height: 16px;
  background: url(./images/round_box.svg) no-repeat center center;
  background-size: 17px;
}

#field_1_8 .gchoice.gchoice_1_8_1 input[type="checkbox"]+label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 17px;
  height: 16px;
  transition: all 0.2s ease;
  background: url(./images/tick.svg) no-repeat center center;
  background-size: 17px;
}

#field_1_8 .gchoice.gchoice_1_8_1 input[type="checkbox"]:not(:checked)+label::after {
  opacity: 0;
}

#field_1_8 .gchoice.gchoice_1_8_1 input[type="checkbox"]:checked+label:after {
  opacity: 1;
}

#field_1_8 .gchoice.gchoice_1_8_1 input[type="checkbox"]:checked+label::before {
  opacity: 0;
}

#field_1_8 .gchoice.gchoice_1_8_1 input[type="checkbox"]:checked+label:after {
  opacity: 1;
  transform: scale(1);
}

fieldset#field_1_8 {
  max-width: 406px;
  margin: 0 auto;
}

#gform_1 .gform_footer.top_label {
  position: relative;
  padding: 50px 31px 46px 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#gform_1 .gform_footer.top_label::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(https://webdev.wordpress-developer.us/area-ten/wp-content/themes/area-ten/images/button_backgroung.svg) no-repeat center;
  background-size: contain;
  pointer-events: none;
  z-index: 1;
}

input#gform_submit_button_1 {
  z-index: 2;
}

form#gform_1 {
  text-align: center;
}

.footer_col.footer_nth_two {
  width: 37%;
}

.footer_menu_link li {
  display: block;
  line-height: 1;
  margin-bottom: 18px;
  margin: 0 1% 18px;
  width: 48%;
  float: left;
}

ul#menu-footer-menu {
  margin: 0 -1%;
}

.gchoice.gchoice_1_8_1 {
  text-align: left;
}

.massage_contant ul {
  padding-left: 19px;
}

/* -------- 18.04.2023 css start -------- */

.defaultpage.liberate-sec,
.single-post .liberate-sec,
.category-uncategorized .liberate-sec,
.search-no-results .liberate-sec,
.search-results .liberate-sec,
.category-24-7-live-chat .liberate-sec,
.single-case_studies .liberate-sec {
  position: relative;
}

.defaultpage.liberate-sec::before,
.single-post .liberate-sec::before,
.category-uncategorized .liberate-sec::before,
.search-no-results .liberate-sec::before,
.search-results .liberate-sec::before,
.category-24-7-live-chat .liberate-sec:before,
.single-case_studies .liberate-sec:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: radial-gradient(175.26% 89.2% at 50.29% 3.78%,
      #0e0d5b 0%,
      #201e94 48.87%,
      #184ce1 84.64%,
      #ffffff 100%);
}

.defaultpage.liberate-sec::after,
.single-post .liberate-sec::after,
.category-uncategorized .liberate-sec::after,
.search-no-results .liberate-sec::after,
.search-results .liberate-sec::after,
.category-24-7-live-chat .liberate-sec:after,
.single-case_studies .liberate-sec:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(images/homebanner001.png) no-repeat center;
  background-size: cover;
  z-index: 2;
}

.defaultpage .liberate-sec-cntnr,
.single-post .liberate-sec-cntnr,
.category-uncategorized .liberate-sec-cntnr,
.search-no-results .liberate-sec-cntnr,
.search-results .liberate-sec-cntnr,
.category-24-7-live-chat .liberate-sec-cntnr,
.single-case_studies .liberate-sec-cntnr {
  position: relative;
  z-index: 3;
  padding: 80px 0;
}

.defaultpage .liberate-lft h2,
.single-post .liberate-lft h2,
.category-uncategorized .liberate-lft h2,
.search-no-results .liberate-lft h2,
.search-results .liberate-lft h2,
.category-24-7-live-chat .liberate-lft h2,
.single-case_studies .liberate-lft h2 {
  color: #ffffff;
}

.error404 .error-img {
  text-align: center;
}

.error404 .error-img .cmn-btn {
  display: inline-block;
  background: #2040c3;
  border: 1px solid #ffffff;
  padding: 22px 30px;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  font-family: var(--Arvofont);
  outline: 1px solid #ffffff !important;
  outline-offset: -8px;
  position: relative;
  margin-top: 20px;
}

.error404 .error-img .cmn-btn:hover {
  background-color: #ff9117;
}

.error404 .main-head .navbar-brand .fixt-logo {
  opacity: 1;
  display: block;
  transition: all 0.3s ease-in-out;
}

.error404 .main-head {
  background: #ffffff !important;
  transition: all 0.3s ease-in-out;
}

.error404 .main-head .navbar-brand .main-logo {
  opacity: 0;
  display: none;
  transition: all 0.3s ease-in-out;
}

.error404 .main-head .navbar-nav li a {
  color: #343434;
  transition: all 0.3s ease-in-out;
}

.error404 .main-head .common-btntw {
  background: #2040c3;
  transition: all 0.3s ease-in-out;
}

.error404 .main-head .header-top-btnWrap::before {
  background: url(images/bg-btnwrapimg99.svg) no-repeat center center;
  background-size: 100%;
}

.error404 .common-btntw:hover {
  background: #ff9117;
  color: #fff;
  border-color: #fff;
  outline-color: #fff !important;
  outline-offset: -8px;
}

.error404 .liberate-sec {
  background-color: #ffffff;
}

.single-post .frequently_asked_questions {
  text-align: center;
}

.single-post .frequently_asked_questions figure {
  margin: 0 auto 30px;
}

.single-post .frequently_asked_questions figure img {
  width: 100%;
}

.single-post .liberate-lft h2,
.category-24-7-live-chat .liberate-lft h2,
.search-results .liberate-lft h2,
.single-case_studies .liberate-lft h2 {
  text-align: center;
}

.single-post .liberate-sec-cntnr,
.error404 .liberate-sec-cntnr {
  margin: 0 auto;
}

.category-uncategorized .date-top h4,
.search-results .date-top h4 {
  font-size: 16px;
  color: #14136d;
  margin-bottom: 10px;
}

.category-uncategorized .date-top h4 br,
.search-results .date-top h4 br {
  display: none;
}

.category-uncategorized .crt-text h4,
.search-results .crt-text h4 {
  font-size: 26px;
  margin-bottom: 10px;
}

.category-uncategorized .crt-text h5,
.search-results .crt-text h5 {
  font-size: 16px;
  margin-bottom: 10px;
}

.category-uncategorized .crt-text h4 a,
.search-results .crt-text h4 a {
  color: #000;
}

.category-uncategorized .crt-text h4 a:hover,
.search-results .crt-text h4 a:hover {
  color: #201e94;
}

.category-uncategorized .crt-read-btn,
.search-results .crt-read-btn {
  display: inline-block;
  background: #2040c3;
  border: 1px solid #ffffff;
  padding: 15px 24px;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  font-family: var(--Arvofont);
  outline: 1px solid #ffffff !important;
  outline-offset: -8px;
  position: relative;
}

.category-uncategorized .crt-read-btn:hover,
.search-results .crt-read-btn:hover {
  background: #ff9117;
}

.category-uncategorized .img-crt figure,
.search-results .img-crt figure {
  margin-bottom: 15px;
}

.category-uncategorized .img-crt figure img,
.search-results .img-crt figure img {
  border-radius: 10px;
  width: 100%;
}

.category-uncategorized .liberate-lft span::before {
  display: none;
}

.common-btn {
  padding: 20px 25px;
}

.home-banner-btn-wrap {
  margin-left: -32px;
}

.common-btntw {
  padding: 22px 17px;
}

.home-banner-wrapper-innr {
  padding: 100px 0 150px 0;
}

input[type="submit"] {
  height: 57px;
  padding-left: 28px;
  padding-right: 28px;
}

/* --------- 18.04.2023 css end --------- */

/* ----------- 19.04.2023 css start ------------ */

.optimising_nav {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 840px;
  margin: 0 auto !important;
}

.optimising_nav::before {
  content: "";
  width: 520px;
  height: 42px;
  background-image: url(images/line111.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  top: 7px;
  z-index: -1;
}

.optimising_nav li {
  background: #e4efff;
  color: #467bff;
  border-radius: 32px;
  font-family: var(--Arvofont);
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  text-align: center;
  color: var(--bluecolor);
  display: flex;
  align-items: center;
  padding: 16px 24px;
  margin-right: 80px;
  cursor: pointer;
}

.optimising_nav li:last-child {
  margin-right: 0;
}

.optimising_nav .nmbr-cls {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: var(--bluecolor);
  font-size: 12px;
  color: var(--whitecolor);
  margin-right: 9px;
}

.optimising_nav li.on {
  background-color: var(--bluecolor);
  color: #fff;
}

.optimising_nav li.on .nmbr-cls {
  background: #fff;
  color: var(--bluecolor);
}

.slide_paging {
  display: none;
}

.optimising-slider .slick-dots {
  display: none;
}

.optimising-slider {
  position: relative;
  margin-top: 33px;
}

.optimising-slider .home-solution-rw {
  align-items: center;
}

/* ----------- 19.04.2023 css end ------------ */

/* support 20/4/23 */

.home-middle-unname-slider-sec .bg-name-logo {
  color: #14136d;
  font-weight: 700;
  /* font-weight: 900; */
  font-size: 25px;
  font-style: normal;
  padding: 12px;
  width: auto;
  min-width: 180px;
}

.home-middle-unname-slider-wrapinnr {
  height: 100%;
}

/* .home-middle-unname-sliderSingl{
    height: 100%;
}

.home-middle-unname-slider-wrapinnr{
    height: 100%;
}

.home-middle-unname-slider-wrapinnr figure{
    height: 100%;
}

.rifhtinnr-txtslidunanmae{
    height: 100%;
} */
/* end support 20/4/23 */

/*support 27/4/2023*/
.growth_potential_form form fieldset {
  max-width: 100%;
}

.growth_potential_form form .actions {
  text-align: center;
  padding: 50px 31px 46px 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.growth_potential_form form fieldset .hs-input.hs-fieldtype-textarea {
  width: 100%;
}

.growth_potential_form form fieldset.form-columns-1 .hs-input {
  width: 100%;
}

.growth_potential_form form fieldset .field {
  padding: 0 12px;
}

.growth_potential_form form .actions input[type="submit"] {
  height: auto;
  min-height: 88px;
}

.growth_potential_form form .hs_submit {
  text-align: center;
}

.growth_potential_form form .actions::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(./images/button_backgroung.svg) no-repeat center;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

.growth_potential_form form .hs-error-msgs {
  color: #cbcbcb;
  font-size: 14px;
}

.growth_potential_form .submitted-message {
  background-color: #1d7bff;
  padding: 30px 20px;
  text-align: center;
}

.growth_potential_form .submitted-message p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}

/*support 27/4/2023*/

/*support 28/4/2023*/
.home .rifhtinnr-txtslidunanmae p {
  font-weight: 500;
}

.home .blue_sec .cta_button {
  text-align: center;
  margin-top: 25px;
}

.home .home-banner-txtWrap p {
  font-size: 19px;
}

/*support 28/4/2023*/

/* ========== 02/05/2023 =========== */
.home .blue_sec .cta_button>.home-banner-btn-wrap {
  margin-left: 0;
}

/* ========== 02/05/2023 END =========== */

/* new-pages-css-start */
.inner-banner-sec h1 {
  font-size: 46px;
}

/* .inner-banner-sec .home-banner-txtWrap h1 span::before {
  position: absolute;
  content: "";
  background-size: 100%;
  left: -10px;
  top: -15px;
  z-index: -1;
  background: url("images/newImages/innerbanner-bgimg01svg.svg") no-repeat;
} */

/* .inner-banner-sec .home-banner-btn-wrap {
  margin-left: 0;
} */

/* .inner-banner-sec .home-banner-wrapper-innr {
  padding: 100px 0;
} */

.home-world-over-sec.inner-slider-topComn {
  margin-top: 0;
}

.innerwrap-pagetop-slider .home-scnd-sld-singl {
  padding: 0 5px;
}

.innerwrap-pagetop-slider .slick-list {
  margin: 0 -5px;
}

.innerwrap-pagetop-slider .slick-dots li {
  padding: 0 14px;
  margin: 0;
  width: auto;
  height: auto;
}

.innerwrap-pagetop-slider .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  background: #c4dbfc;
}

.innerwrap-pagetop-slider .slick-dots li button::before {
  display: none;
}

.innerwrap-pagetop-slider .slick-dots li.slick-active button {
  background: #3b8dff;
  width: 18px;
  height: 18px;
}

.seo-bigger-resultSec {
  position: relative;
}

.seo-bigger-resultSec .home-gear-solutngtxtLft {
  padding-left: 0;
}

.seo-bigger-resultSec .home-gear-solutngtxtLft::before {
  display: none;
}

.seo-bigger-resultSec .gear-solutiontxtWrap {
  max-width: 543px;
  margin-right: auto;
}

.seo-proven-process-sec {
  position: relative;
}

.seo-proven-process-sec .newSection-tittle {
  margin-bottom: 100px;
}

.newSection-tittle {
  position: relative;
  text-align: center;
}

.seo-proven-processRw {
  align-items: center;
  --bs-gutter-x: 20px;
}

.seo-proven-processRw:not(:last-child) {
  margin-bottom: 60px;
}

.seo-proven-processRw:nth-child(odd) .seo-proven-processClm:nth-child(odd) {
  text-align: right;
}

.seo-proven-processRw:nth-child(even) .seo-proven-processClm:nth-child(odd) {
  text-align: left;
}

.seo-proven-processRw:nth-child(odd) .seo-proven-processClm:nth-child(odd) .wrap-textSeo-proven-process {
  padding-right: 40px;
}

.seo-proven-processRw:nth-child(odd) .seo-proven-processClm:nth-child(even) .wrap-textSeo-proven-process {
  padding-left: 40px;
}

.seo-proven-processRw:nth-child(even) .seo-proven-processClm:nth-child(odd) .wrap-textSeo-proven-process {
  padding-left: 40px;
}

.seo-proven-processRw:nth-child(even) .seo-proven-processClm:nth-child(even) .wrap-textSeo-proven-process {
  padding-right: 40px;
}

.seo-proven-processRw:nth-child(odd) .wrap-textSeo-proven-process i {
  margin: 0 auto 0 0;
}

.seo-proven-processRw:nth-child(even) .wrap-textSeo-proven-process i {
  margin: 0 0 0 auto;
}

.wrap-textSeo-proven-process {
  position: relative;
}

.wrap-textSeo-proven-process i {
  background: #1d7bff;
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.wrap-textSeo-proven-process h3 {
  color: #14136d;
  position: relative;
}

.seo-proven-processRw:nth-child(even) {
  flex-direction: row-reverse;
}

.wrap-textSeo-proven-process span {
  position: absolute;
  right: 0;
  top: 0;
  background: #ff9117;
  width: 33px;
  height: 33px;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.seo-proven-processRw:nth-child(odd) .wrap-textSeo-proven-process span {
  right: -27px;
}

.seo-proven-processRw:nth-child(even) .wrap-textSeo-proven-process span {
  right: inherit;
  left: -27px;
}

.all-seo-carttxtwrapperTop {
  position: relative;
}

.all-seo-carttxtwrapperTop::before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 11px;
  height: 100%;
  background: url("images/newImages/linensk021.svg") no-repeat center;
  background-size: 100%;
}

.all-seo-carttxtwrapperTop::after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #1d7bff;
  background-size: 100%;
}

.seo-page-sliderwrapperNav .optimising-slider .home-solution-rw {
  align-items: inherit;
}

.seo-page-sliderwrapperNav .opt-rit {
  height: 100%;
  padding-top: 60px;
}

.seo-page-sliderwrapperNav .home-gear-solutngtxtLft {
  height: 100%;
}

.seo-page-sliderwrapperNav .home-gear-solutngtxtLft::before {
  background-size: contain;
}

.seo-page-faqSec .accordion-header {
  min-height: 165px;
}

.seo-page-faqSec .accordion-header button {
  height: 100%;
  display: flex;
  align-items: center;
  min-height: 165px;
  padding-right: 80px;
}

.seo-page-faqSec .accordion-header button::after {
  top: 50px;
}

.seo-page-formwrapper-sec .all_sm_hd h2 {
  font-size: 44px;
}

.growth_potential_form {
  max-width: 872px;
  margin: 0 auto;
}

.wrapper-seo-page-textWrapper p {
  color: #e4efff;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.wrapper-seo-page-formwrapperItem {
  position: relative;
  padding: 2px;
  height: 100%;
}

.wrapper-seo-page-formwrapperItem::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 17px;
  background: linear-gradient(143.29deg, #141572 -100.93%, #7f71e1 96.55%);
}

.wrapper-innersjt-crt {
  background: #090861;
  border-radius: 17px;
  position: relative;
  z-index: 1;
  padding: 34px 32px;
  height: 100%;
}

.wrapper-seo-page-formwrapperItem h3 {
  font-weight: 700;
  font-size: 24px;
  color: #1d7bff;
}

.wrapper-seo-page-formwrapperItem p {
  color: #ffffff;
}

.seo-page-formwrapper-rw {
  margin-bottom: 50px;
  --bs-gutter-x: 35px;
}

.footer_col{
  width: 25%;
}

/* .footer-colFirst {
  width: 20%;
}

.footer-colSecnd {
  width: 20%;
}

.footer-colThird {
  width: 40%;
} */

.footer-tittle {
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-inner-wrapper .footer_social_address li p {
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-inner-wrapper ul li:not(:last-child) {
  margin-bottom: 12px;
}

.footer-inner-wrapper ul li a {
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
}

.footer-inner-wrapper a:hover {
  color: #1d7bff;
}

.footer-inner-wrapper .footer_social_address li:not(:last-child) {
  margin-bottom: 28px;
}

.footer-inner-wrapper .footer_social_address li {
  padding-left: 40px;
}

.footer-inner-wrapper .footer_social_address li i {
  top: 0;
}

/* .inner-banner-sec.contact-banner .home-banner-txtWrap h1 span::before {
  background: url("images/newImages/contactsmallbgicn03141.svg") no-repeat;
  width: 160%;
  height: 100%;
  top: 5px;
  left: -30px;
} */

.conatct-page-mainFrm-sec {
  position: relative;
}

.conatct-page-mainFrm-sec .all_sm_hd {
  text-align: center;
  color: #ffffff;
  margin-bottom: 60px;
}

.conatct-page-mainFrm-sec .all_sm_hd h2 {
  color: #ffffff;
}

.conatct-page-mainFrm-sec .all_sm_hd p {
  max-width: 1049px;
  margin: 0 auto;
}

.conatct-page-mainFrm-sec .growth_potential_form input {
  height: 74px;
  color: #000000;
}

.conatct-page-mainFrm-sec .grow_btn {
  padding: 0;
  margin-top: 24px;
}

.conatct-page-mainFrm-sec .grow_btn::before {
  display: none;
}

.contact-middle-mapsec {
  position: relative;
}

.contact-middle-mapsec h3 {
  font-weight: 700;
  font-size: 44px;
}

.contact-middle-mapsec .footer_social_address {
  max-width: 424px;
  margin-right: auto;
}

.contact-middle-mapsec .footer_social_address li {
  color: #030303;
  padding-left: 60px;
}

.contact-middle-mapsec .footer_social_address li span {
  font-weight: 700;
  font-size: 16px;
  color: #030303;
  display: inline-block;
  margin-bottom: 10px;
}

.contact-middle-mapsec .footer_social_address li:not(:last-child) {
  margin-bottom: 25px;
}

.contact-middle-mapsec .footer_social_address li address {
  color: #030303;
}

.contact-middle-mapsec .footer_social_address li a {
  color: #6c6c6c;
}

.contact-middle-mapsec .footer_social_address li a:hover {
  color: #1f44cb;
}

.contact-middle-mapsec .footer_social_address li p {
  color: #14136d;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: var(--Arvofont);
}

.contact-middle-mapsec .footer_social_address li i {
  top: 2px;
  width: 38px;
}

.map-secMain-contact figure {
  margin: 0;
  width: 100%;
}

.map-secMain-contact figure img {
  width: 100%;
}

.contact-pageFaq .accordion-header button {
  min-height: 112px;
  display: flex;
  align-items: center;
}

.conatct-page-mainFrm-sec input::placeholder {
  color: #000000;
  opacity: 1;
}

.conatct-page-mainFrm-sec textarea::placeholder {
  color: #000000;
  opacity: 1;
}

.conatct-page-mainFrm-sec input::-webkit-input-placeholder {
  opacity: 1;
  color: #000000;
}

.conatct-page-mainFrm-sec input:-ms-input-placeholder {
  opacity: 1;
  color: #000000;
}

.conatct-page-mainFrm-sec input::-moz-placeholder {
  opacity: 1;
  color: #000000;
}

.conatct-page-mainFrm-sec input:-moz-placeholder {
  opacity: 1;
  color: #000000;
}

.conatct-page-mainFrm-sec textarea::-webkit-input-placeholder {
  opacity: 1;
  color: #000000;
}

.conatct-page-mainFrm-sec textarea:-ms-input-placeholder {
  opacity: 1;
  color: #000000;
}

.conatct-page-mainFrm-sec textarea::-moz-placeholder {
  opacity: 1;
  color: #000000;
}

.conatct-page-mainFrm-sec textarea:-moz-placeholder {
  opacity: 1;
  color: #000000;
}

.conatct-page-mainFrm-sec .grow_btn {
  max-width: 205px;
  width: 100%;
}

.conatct-page-mainFrm-sec .grow_btn input[type="submit"] {
  width: 100%;
}

/* .blog-innerwrap-banner .home-banner-txtWrap h1 span::before {
  background: url("images/newImages/blogbanimcn001.svg") no-repeat;
  width: 155%;
} */

.blog-wrapper-topTittle {
  position: relative;
  margin-bottom: 80px;
}

.blog-wrapper-topTittle h2 {
  font-size: 44px;
}

.inner-wrapperBlog {
  position: relative;
}

.inner-wrapperBlog figure {
  margin-bottom: 25px;
  width: 370px;
}

.inner-wrapperBlog figure a {
  width: 100%;
  border-radius: 23px;
  overflow: hidden;
}

.inner-wrapperBlog figure a:hover img {
  transform: scale(1.03);
}

.inner-wrapperBlog figure a img {
  width: 100%;
  transition: 0.5s ease-in-out;
}

.inner-wrapperBlog .txtTtls,
.frequently_asked_questions .txtTtls {
  display: inline-block;
  background: #e4efff;
  color: #224bf3;
  font-weight: 500;
  font-size: 15px;
  padding: 7px 20px;
  margin-bottom: 15px;
}

.inner-wrapperBlog h3 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 10px;
}

.inner-wrapperBlog h3 a,
.frequently_asked_questions .cart-most-sec .crt-text h4 a {
  color: #14136d;
}

.inner-wrapperBlog h3 a:hover,
.frequently_asked_questions .cart-most-sec .crt-text h4 a:hover {
  color: #1d7bff;
}

.inner-wrapperBlog .date {
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  display: inline-block;
  margin-bottom: 10px;
}

.inner-wrapperBlog p {
  font-weight: 500;
  font-size: 16px;
  color: #6c6c6c;
  line-height: 1.7;
}

.inner-wrapperBlog .blogBtn-main {
  display: inline-flex;
  align-items: center;
  color: #1d7bff;
  font-weight: 600;
  font-size: 20px;
}

.inner-wrapperBlog .blogBtn-main i img {
  transition: 0.5s ease-in-out;
}

.inner-wrapperBlog .blogBtn-main i {
  display: inline-block;
  padding-left: 5px;
  transition: 0.5s ease-in-out;
}

.inner-wrapperBlog .blogBtn-main:hover {
  color: #000000;
}

.inner-wrapperBlog .blogBtn-main:hover i img {
  filter: brightness(0) invert(0);
}

.single-blgWraper-rw,
.frequently_asked_questions .row {
  --bs-gutter-x: 40px;
  --bs-gutter-y: 60px;
  justify-content: center;
}

.blog-toprght-serch {
  position: relative;
  margin-bottom: 70px;
}

.blog-toprght-serch input[type="text"] {
  width: 100%;
  background: #ffffff;
  border: 1px solid #7d7c7c;
  border-radius: 12px;
  height: 62px;
  padding: 10px 24px;
}

.blog-toprght-serch input[type="text"]::placeholder {
  color: #6c6c6c;
  opacity: 1;
}

.blog-toprght-serch input[type="text"]::-webkit-input-placeholder {
  color: #6c6c6c;
  opacity: 1;
}

.blog-toprght-serch input[type="text"]:-ms-input-placeholder {
  color: #6c6c6c;
  opacity: 1;
}

.single-item-blogRightRwp {
  position: relative;
  margin-bottom: 65px;
  position: -webkit-sticky;
  position: sticky;
  top: 20%;
}

.single-item-blogRightRwp h4 {
  font-weight: 700;
  font-size: 22px;
  color: #14136d;
}

.single-item-blogRightRwp ul li {
  margin-bottom: 8px;
}

.single-item-blogRightRwp ul li a {
  color: #151515;
  font-weight: 500;
}

.single-item-blogRightRwp ul li a:hover {
  color: #1d7bff;
}

.right-smallBlog-wrapperRw {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.right-smallBlog-wrapperRw figure {
  margin: 0;
  width: 125px;
  flex-basis: 125px;
}

.right-smallBlog-wrapperRw figure a {
  width: 100%;
  overflow: hidden;
  border-radius: 23px;
}

.right-smallBlog-wrapperRw figure a img {
  transition: 0.5s ease-in-out;
  width: 100%;
}

.right-smallBlog-wrapperRw figure a:hover img {
  transform: scale(1.03);
}

.right-smallBlog-wrapper-txt {
  width: calc(100% - 125px);
  flex-basis: calc(100% - 125px);
  padding-left: 24px;
}

.right-smallBlog-wrapper-txt a {
  font-weight: 700;
  font-size: 18px;
  color: #14136d;
  display: inline-block;
  margin-bottom: 10px;
}

.right-smallBlog-wrapper-txt a:hover {
  color: #1d7bff;
}

.right-smallBlog-wrapper-txt p {
  color: #6c6c6c;
}

.right-smallBlog-wrapperRw {
  margin-bottom: 25px;
}

.blog-main-rw {
  --bs-gutter-x: 40px;
}

.lastblogBox-innerwrapper {
  position: relative;
  padding: 86px 35px 110px;
  border-radius: 23px;
  text-align: center;
  overflow: hidden;
  margin-top: 105px;
}

.lastblogBox-innerwrapper h4 {
  color: #ffffff;
  font-weight: 700;
  font-size: 26px;
  max-width: 226px;
  margin: 0 auto 14px;
  position: relative;
}

.lastblogBox-innerwrapper::before {
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
}

.lastblogBox-innerwrapper p {
  color: #ffffff;
  position: relative;
  font-size: 16px;
  margin: 0;
}

.lastblogBox-innerwrapper .home-banner-btn-wrap {
  margin-left: 0;
}

.lastblogBox-innerwrapper .home-banner-btn-wrap::before {
  background: url("images/newImages/btnbtnwrpicn039.svg") center center / 100% no-repeat;
}

/* .caseStudy-innerwrap-banner .home-banner-txtWrap h1 span::before {
  width: 110%;
  background-size: contain;
  left: 40px;
} */

.seo-bigger-resultClm figure {
  padding-top: 70px;
}

.home-banner-txtWrap p {
  line-height: 1.6;
}

.frequently_accordion_wraper .accordion-item.active .accordion-button {
  background: #1f44cb;
}

.frequently_accordion_wraper .accordion-item.active {
  background: #1f44cb;
}

/* .home-banner-sec.inner-banner-sec .home-banner-wrapper-innr {
  padding: 100px 0 40px;
} */

.gap-topCommon {
  padding-top: 40px;
}

.abt-sliderWrap:hover {
  background: #000000;
}

.home-middle-unname-slidermain .slick-arrow {
  transition: all 0.3s ease-in-out;
}

.home-middle-unname-slidermain .slick-arrow:hover {
  background-color: #000000;
}

.seo-page-wrapInner .home-upskill-imgwrap figure {
  margin: 0;
}

.seo-page-wrapInner .home-upskill-imgwrap figure::before {
  display: none;
}

.seo-page-formwrapper-sec.cmn_gap {
  padding: 100px 0;
}

.home-banner-sec.inner-banner-sec .common-btn {
  /* padding: 30px 20px; */
  min-width: 311px;
  text-align: center;
}

.seo-page-formwrapper-sec input[type="submit"] {
  height: 88px;
  /* padding: 0 70px; */
}

.frequently_accordion_wraper .accordion-item.active p {
  opacity: 1;
  transition: all 0.1s ease-in-out;
}

.frequently_accordion_wraper .accordion-item p {
  opacity: 0;
  transition: all 0.1s ease-in-out;
}

/* support start 19.5.23 */
.growth_potential_form .gform_heading {
  display: none;
}

.growth_potential_form input[type="text"],
.growth_potential_form input[type="email"] {
  padding: 0 15px !important;
  font-size: inherit !important;
}

.growth_potential_form .gform_wrapper.gravity-theme .gform_fields {
  grid-row-gap: 20px;
}

.growth_potential_form #field_2_3 {
  padding-bottom: 12px;
}

.growth_potential_form .gform_wrapper.gravity-theme .gfield textarea.small {
  height: 242px;
  padding: 12px 16px !important;
  font-size: inherit !important;
}

.growth_potential_form .gform_footer {
  justify-content: center;
  margin-top: 32px !important;
}

.growth_potential_form .gform_footer input[type="submit"] {
  min-width: 205px;
}

.upsklcolslft {
  width: 100%;
}

.gform_confirmation_message_2 {
  text-align: center;
  color: var(--whitecolor);
}

.map-secMain-contact iframe {
  width: 100%;
}

/* support end 19.5.23 */

.blog-main-clm .blog-toprght-serch input[type="submit"] {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
}

.frequently_asked_questions .date-top {
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  display: block;
  margin-bottom: 10px;
}

.frequently_asked_questions .cart-most-sec .crt-text h4 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.frequently_asked_questions .blogBtn-main {
  display: inline-flex;
  align-items: center;
  color: #1d7bff;
  font-weight: 600;
  font-size: 20px;
}

.frequently_asked_questions .cart-most-sec .crt-text h5 {
  font-size: 18px;
  color: #1d7bff;
}

.frequently_asked_questions .blogBtn-main i {
  display: inline-block;
  padding-left: 5px;
  transition: 0.5s ease-in-out;
}

.frequently_asked_questions .blogBtn-main:hover {
  color: #000000;
}

.frequently_asked_questions .blogBtn-main:hover i img {
  filter: brightness(0) invert(0);
}

.cart-most-sec .img-crt figure {
  margin-bottom: 25px;
}

.cart-most-sec .img-crt figure a {
  width: 100%;
  border-radius: 23px;
  overflow: hidden;
}

.cart-most-sec .img-crt figure a img {
  width: 100%;
  transition: 0.5s ease-in-out;
}

.cart-most-sec .img-crt figure a:hover img {
  transform: scale(1.03);
}

.category-24-7-live-chat .liberate-sec-cntnr,
.search-results .liberate-sec-cntnr,
.single-case_studies .liberate-sec-cntnr {
  margin-left: auto;
}

.category-24-7-live-chat .liberate-lft span::before {
  content: none;
}

.single-case {
  text-align: center;
}

.content-single {
  text-align: left;
}

.inner-wrapperBlog figure img {
  width: 100%;
}


.navbar-nav li .sub-menu>li a {
  color: var(--deepbluecolor);
  padding: 0;
}

.navbar-nav li .sub-menu>li a:hover,
.navbar-nav li .sub-menu>li.current-menu-item a {
  /* color: var(--buttoncolor); */
  color: #ffffff;
  background-color: #184ce1;
}

.inner-wrapperBlog figure,
.right-smallBlog-wrapperRw figure {
  position: relative;
}

.inner-wrapperBlog figure img {
  border-radius: 12px;
}

.inner-wrapperBlog figure a,
.right-smallBlog-wrapperRw figure a {
  border-radius: 12px;
}

.inner-wrapperBlog figure::before,
.right-smallBlog-wrapperRw figure::before {
  position: absolute;
  content: "";
  right: -12px;
  bottom: -10px;
  width: 100%;
  height: 100%;
  background: url(images/crfg-bg-wrap-img09.png) no-repeat center center;
  background-size: cover;
  z-index: -1;
  border-radius: 25px;
}

.right-smallBlog-wrapperRw figure::before {
  right: -7px;
  bottom: -4px;
  border-radius: 12px;
}

.seo-bigger-resultSec .seo-bigger-resultClm figure {
  padding-top: 0;
  max-width: 480px;
  margin-left: auto;
}

/*suport 25/3/2023*/
.navbar-nav li .sub-menu>li {
  padding: 0;
}

.navbar-nav li .sub-menu>li a {
  padding: 10px;
}

.main-head.fixed .navbar-nav li .sub-menu>li a {
  color: var(--deepbluecolor);
}

.main-head.fixed .navbar-nav li .sub-menu>li a:hover {
  color: #ffffff;
}

.main-head.fixed .navbar-nav li .sub-menu>li.current-menu-item a {
  color: #ffffff;
}

.page-template-contact .home-world-over-sec {
  padding-bottom: 120px;
}

/*suport 25/3/2023*/
.rifhtinnr-txtslidunanmae p:last-of-type {
  margin-bottom: 0;
}

.massage_content_para.new p,
.massage_content_para.new ul li {
  line-height: inherit;
  font-size: inherit;
  color: inherit;
  text-align: inherit;
}

.inner-banner-sec .home-banner-txtWrap h1 span::after,
.inner-banner-sec .home-banner-txtWrap h1 span::before {
  z-index: -1;
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  border: 3px solid #1d7bff;
  border-radius: 100%;
  transform: translate(-50%, -50%) scaleX(1.1) scaleY(1.2) rotateZ(-3deg);
  width: 100%;
  height: 100%;
}

.inner-banner-sec .home-banner-txtWrap h1 span::after {
  border-style: dashed;
  margin-top: 5%;
  margin-left: -5%;
  transform: translate(-50%, -50%) scaleX(1.05) scaleY(1.1) rotateZ(0) translateY(-15%) translateX(3%);
}

/* 05.05.23 start */

.abtBtn_wrap {
  display: flex;
}

.home-banner-sec.inner-banner-sec .abtBtn_wrap .common-btn {
  padding-left: 75px;
  padding-right: 75px;
  min-width: inherit;
}

.abtBtn_wrap .home-banner-btn-wrap {
  flex: 0 0 auto;
  padding: 30px 25px;
}

.extra_Head_title h2 {
  line-height: 1.5;
}

.extra_Head_title span {
  display: block;
  font-size: 25px;
}

.about_main_sec .sec_subTitle {
  margin-bottom: 15px;
}

.about_main_sec .section-tittle h2 {
  margin-bottom: 20px;
}

.about_main_sec .section-tittle h3 {
  margin-bottom: 0;
  font-size: 25px;
}

.about_main_sec .section-tittle {
  margin-bottom: 45px;
}

.innr_abtTxt_wrap {
  padding: 35px 0;
  max-width: 885px;
  width: 100%;
  margin: 0 auto;
}

.innr_abtTxt_wrap p span {
  color: var(--blackcolor);
}

.innr_abtTxt_wrap p {
  line-height: 1.8;
}

.abtBlue_sec {
  text-align: center;
  background-color: var(--skycolor);
}

.abtBlue_sec p:not(:last-child) {
  margin-bottom: 30px;
}

.abt_seoBiggr_sec .gear-solutiontxtWrap {
  max-width: 100%;
}

.abt_seoBiggr_sec .seo-bigger-resultRw {
  --bs-gutter-x: 69px;
}

.abt_seoBiggr_sec .seo-bigger-resultClm figure {
  width: 100%;
  max-width: 100%;
  margin-bottom: 0;
}

.abt_seoBiggr_sec .seo-bigger-resultClm figure img {
  width: 100% !important;
}

.extra_sec_head h2,
.extra_sec_head .heading_two {
  font-size: 44px;
}

.abt_seoBiggr_sec .extra_sec_head .heading_six {
  font-size: 25px;
}

.lightBlue_sec {
  position: relative;
  z-index: 1;
}

.lightBlue_sec::before {
  position: absolute;
  content: "";
  background: url(images/blue-imgbg-box01.png) no-repeat;
  background-position: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.lightBlue_sec {
  text-align: center;
  color: var(--whitecolor);
}

.lightBlue_sec .extra_sec_head h2 {
  color: var(--whitecolor);
  margin-bottom: 20px;
}

.lightBlue_sec .extra_sec_head h3 {
  color: var(--whitecolor);
}

.lightBlue_sec .extra_sec_head {
  margin-bottom: 20px;
}

.abt_upskill_sec .home-upskill-imgwrap figure::before {
  display: none;
}

.abt_team_sec .extra_sec_head {
  max-width: 1105px;
  margin: 0 auto 58px;
}

.abtTeam_slider .slick-track {
  display: flex !important;
}

.abtTeam_slide {
  padding: 25px 17px;
  height: inherit !important;
}

.abtTeam_slider .slick-list {
  margin: -25px -17px;
}

.abtTeam_slide_innr {
  background: #FFFFFF;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
}

.team_img_wrap {
  padding-top: 15px;
  background: #F9F5F5;
  position: relative;
}

.team_img_wrap::before {
  position: absolute;
  content: "";
  background: #FF9117;
  width: 186px;
  height: 186px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-radius: 50%;
}

.team_img_wrap figure {
  margin-bottom: 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.team_txt_wrap {
  padding: 35px 28px 60px;
}

.team_txt_wrap h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.team_txt_wrap .team_post {
  color: #224BF3;
  font-weight: 500;
  font-size: 16px;
  display: block;
  margin-bottom: 15px;
}

.abtTeam_slider .slick-arrow {
  background-color: var(--bluecolor);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: 1;
  opacity: 1;
  transition: .5s all;
  transform: inherit;
  top: 36%;
}

.abtTeam_slider .slick-arrow::before {
  display: none;
}

.abtTeam_slider .slick-prev {
  background-image: url(images/arrw0031.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  left: -25px;
}

.abtTeam_slider .slick-next {
  background-image: url(images/arrw0032.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  right: -25px;
}

.abtTeam_slider .slick-arrow:hover {
  background-color: var(--blackcolor);
}

.extra_optimising_nav {
  max-width: 100%;
  margin-bottom: 80px !important;
}

.new_optimiz_sec .home-world-over-Tittle {
  max-width: 930px;
}

.new_programatic_sec .section-tittle h2 {
  max-width: 790px;
}

.new_programatic_sec .animate_content h3 {
  font-size: 26px;
  color: var(--whitecolor);
}

.programmetic_bnnr_sec .home-banner-txtWrap h1 {
  max-width: 100%;
}

.programmetic_bnnr_sec .home-banner-txtWrap p {
  max-width: 650px;
}

.programmetic_after_bnnr_sec .extra_sec_head {
  max-width: 450px;
  text-align: left;
}

.programmetic_afterBnnr_rw {
  margin-bottom: 90px;
}

.programmetic_item_innr .progrm_icon {
  width: 80px;
  height: 72px;
  background: #1D7BFF;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.programmetic_item_innr {
  text-align: center;
}

.programmetic_txt_wrappr {
  padding-top: 45px;
  max-width: 350px;
  margin: 0 auto;
}

.programmetic_txt_wrappr h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.programmetic_abtBlue_sec .extra_sec_head {
  margin-bottom: 110px;
}

.programmetic_abtBlue_sec {
  text-align: left;
}

.fulBody_sec .extra_sec_head {
  max-width: 800px;
  margin: 0 auto 70px;
}

.fullBody_table_main {
  border: 1px solid #D0D0D0;
  border-radius: 11px;
}

.fullBody_table_main table tr th {
  width: 37%;
  border-right: 1px solid #D0D0D0;
  border-bottom: 1px solid #D0D0D0;
  font-size: 26px;
  color: var(--blackcolor);
  font-weight: 700;
  font-family: var(--Arvofont);
  padding: 15px 20px;
}

.fullBody_table_main table tr th:first-child {
  width: 26%;
}

.fullBody_table_main table tr td {
  border-right: 1px solid #D0D0D0;
  padding: 50px 25px;
  vertical-align: top;
}

.fullBody_table_main table tr th:last-child,
.fullBody_table_main table tr td:last-child {
  border-right: none;
}

.fullBody_table_main table tr td .side_heading {
  display: inline-block;
  padding-left: 15px;
  font-weight: 700;
  font-size: 26px;
  font-family: var(--Arvofont);
  color: var(--sectionbluecolor);
}




/* 05.05.23 end */

.inner-wrapperBlog .author {
  font-size: 18px;
  color: #1d7bff;
  font-family: var(--Arvofont);
  margin: 0 0 22px 0;
  font-weight: 700;
  display: block;
}

.cart-most-sec .img-crt figure {
  position: relative;
}

.cart-most-sec .img-crt figure::before {
  position: absolute;
  content: "";
  right: -12px;
  bottom: -10px;
  width: 100%;
  height: 100%;
  background: url(images/crfg-bg-wrap-img09.png) no-repeat center center;
  background-size: cover;
  z-index: -1;
  border-radius: 25px;
}

/* .page-template-seo-service .home-banner-rw{
  align-items: flex-start;
} */

.inner-banner-sec figure {
  position: relative;
  z-index: 1;
}

/* support-css-07-06-2023-start */

.single-post .frequently_asked_questions figure img {
  width: 100% !important;
  max-height: 550px;
  object-fit: cover;
  object-position: top center;
}

.abtBlue_sec p {
  text-align: left;
}

.lightBlue_sec p {
  text-align: left;
}

.about_main_sec p {
  text-align: left;
}

/* support-css-07-06-2023-end */


/* support-08-06-2023-css-start */

.single-post .frequently_asked_questions figure {
  max-width: 600px;
}

.single-post .frequently_asked_questions .date-top {
  max-width: 710px;
  margin: 0 auto 20px;
}

.single-post .content-single {
  max-width: 710px;
  margin: 0 auto 20px;
}

.single-post .content-single p {
  line-height: 2;
}

.single-post .frequently_asked_questions .txtTtls {
  margin-bottom: 25px;
}

.single-post .liberate-lft {
  max-width: 710px;
  margin: 0 auto;
}

.single-post .liberate-lft h2 {
  line-height: 1.4;
}

.single-post .frequently_asked_questions {
  padding-top: 40px;
}

.home-world-over-Tittle h2 span {
  display: block;
  font-size: 25px;
}

.frequently_accordion_wraper .accordion-item ul {
  margin-bottom: 20px;
}

.frequently_accordion_wraper .accordion-item ul li {
  position: relative;
  padding-left: 20px;
}

.frequently_accordion_wraper .accordion-item ul li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 5px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-radius: 50%;
}

.programmetic_abtBlue_rw figure img {
  width: 100%;
}

/* support-08-06-2023-css-end */


.home-banner-txtWrap h1 span {
  margin-left: 20px;
}

.rifhtinnr-txtslidunanmae p {
  font-weight: 500;
}

.home-middle-unname-slider-sec .bg-name-logo img {
  height: 59px;
}

/* .home-middle-unname-slider-sec .bg-name-logo img{
  max-width: 100%;
} */

.home-world-over-Tittle h2 {
  line-height: 1.5;
}

.home-banner-txtWrap h1 {
  max-width: 570px;
}

h1,
.heading_one {
  line-height: 1.4;
}

.contact-banner .home-banner-txtWrap h1 span {
  margin-left: 13px;
}

/* 15/06/2023 dm */

.programmetic_after_bnnr_sec .extra_sec_head {
  max-width: 100%;
}

/* .about_main_sec.cmn_gap {
  padding-top: 0;
} */

.fullBody_table_main {
  overflow-x: auto;
}

.fullBody_table_main table {
  min-width: 696px;
}

/* 15/06/2023 dm */



/* 19/06/2023 dm */



/* 19/06/2023 dm */


/* support start 20-6-23 */
.growth_potential_form.colorFrm input::-webkit-input-placeholder,
.growth_potential_form.colorFrm textarea::-webkit-input-placeholder {
  color: var(--blackcolor);
}

.growth_potential_form.colorFrm input:-ms-input-placeholder,
.growth_potential_form.colorFrm textarea:-ms-input-placeholder {
  color: var(--blackcolor);
}

.growth_potential_form.colorFrm input::-moz-placeholder,
.growth_potential_form.colorFrm textarea::-moz-placeholder {
  color: var(--blackcolor);
}

.growth_potential_form.colorFrm input:-moz-placeholder,
.growth_potential_form.colorFrm textarea:-moz-placeholder {
  color: var(--blackcolor);
}

.growth_potential_form.colorFrm select {
  background: url(images/sort-down11.svg) no-repeat calc(100% - 13px) center #fff;
  background-size: 14px;
}

.conatct-page-mainFrm-sec .growth_potential_form input {
  height: 44px;
}

.conatct-page-mainFrm-sec .growth_potential_form input[type="submit"] {
  color: var(--whitecolor);
}

.conatct-page-mainFrm-sec .growth_potential_form select {
  color: var(--blackcolor);
  background: url(images/sort-down11.svg) no-repeat calc(100% - 13px) center #fff;
  background-size: 14px;
}

.conatct-page-mainFrm-sec .all_sm_hd {
  margin-bottom: 20px;
}

.conatct-page-mainFrm-sec .growth_potential_form form .actions {
  padding: 35px 31px 46px 32px;
}

.home .home-rght-imgWrap figure {
  margin-bottom: 0;
}


/* support end 20-6-23 */

/* ======== AD 21/06/2023 ========= */
.home-banner-wrapper-innr {
  padding: 100px 0 80px 0;
}

.page-template-contact .home-world-over-sec {
  padding-top: 0;
}

.home-banner-txtWrap h1 {
  margin-bottom: 20px;
  line-height: 1.2;
}

.growth_potential_form input[type="text"],
.growth_potential_form input[type="email"],
.growth_potential_form input[type="password"],
.growth_potential_form input[type="tel"],
.growth_potential_form select,
.growth_potential_form textarea {
  color: var(--blackcolor);
}

.growth_potential_form select {
  background: url(images/sort-down11.svg) no-repeat calc(100% - 13px) center #fff;
  background-size: 14px;
}

.growth_potential_form ::-webkit-input-placeholder {
  opacity: 1;
  color: var(--blackcolor);
}

.growth_potential_form :-ms-input-placeholder {
  opacity: 1;
  color: var(--blackcolor);
}

.growth_potential_form ::-moz-placeholder {
  opacity: 1;
  color: var(--blackcolor);
}

.growth_potential_form :-moz-placeholder {
  opacity: 1;
  color: var(--blackcolor);
}

.home-world-over-sec.inner-slider-topComn {
  margin-top: -50px;
  padding-top: 10px;
}

.new_programatic_sec .animate_content h3 {
  color: #1d7bff;
}

.fullBody_table_main {
  overflow-x: auto;
}

.fullBody_table_main {
  scrollbar-width: 5px;
  scrollbar-color: #201e94 rgba(32, 30, 148, 0.3);
}

.fullBody_table_main::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  cursor: pointer;
  background-clip: padding-box;
}

.fullBody_table_main::-webkit-scrollbar-track {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background-color: rgba(32, 30, 148, 0.3);
}


.fullBody_table_main:-webkit-scrollbar-thumb {
  background-color: #201e94;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  height: 5px;
  width: 5px;
  background-clip: padding-box;
}

.fullBody_table_main::-webkit-scrollbar-thumb {
  width: 5px;
  height: 5px;
  background-color: #201e94;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  height: 5px;
  opacity: 0.8;
}

.about_main_sec.cmn_gap.aboutarea {
  padding-top: 0;
}


.page-template-programmatic .home-rght-imgWrap {
  padding-left: 50px;
}

/* ======== AD 21/06/2023 END ========= */
/* CSS Modification 26.06.23 */
.trstd_hdng_new .heading_five {
  font-size: 28px;
}

.trstd_hdng_new h2 span {
  font-size: 22px;
}

/* CSS Modification 26.06.23 */

/*support 4/7/2023*/
.castdy-intro-wrap .section-tittle {
  margin-bottom: 45px;
}

.castdy-aproch-contbx .section-tittle {
  margin-bottom: 30px;
}

.castdy-aprochrw {
  align-items: center;
}

.castdy-aproch-contbx {
  padding-left: 30px;
}

.castdy-aprochsec {
  background-color: #14136d;
}

.casstdy-conclutionsec {
  background-color: #f1f7ff;
}

.cstdy-cnclu-logobx {
  max-width: 140px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.rltdcsdysec .section-tittle {
  margin-bottom: 40px;
}

.rltdcsdy-slider .rltdcsdy-slide {
  padding: 0 15px;
}

.rltdcsdy-slider .slick-list {
  margin: 0 -15px;
}

.rltdcsdy-slider .slick-arrow {
  background-color: #e4efff;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  bottom: 0;
  top: auto;
}

.rltdcsdy-slider .slick-arrow:hover {
  background-color: #000000;
}

.rltdcsdy-slider {
  padding-bottom: 100px;
}

.rltdcsdy-slider .slick-arrow.slick-next {
  right: calc(50% - 60px);
  background-image: url(images/arrwsgs02.svg);
  background-position: center;
  background-repeat: no-repeat;
}

.rltdcsdy-slider .slick-arrow::before {
  content: none;
}

.rltdcsdy-slider .slick-arrow.slick-prev {
  left: calc(50% - 60px);
  background-image: url(images/arrwsgs01.svg);
  background-position: center;
  background-repeat: no-repeat;
}

.casestdy-testmonialsec .rifhtinnr-txtslidunanmae span {
  margin-top: 20px;
  display: inline-block;
}

.casestdy-testmonialsec .home-middle-unname-slidermain .slick-dots {
  display: none;
}

/*support 4/7/2023*/


/* support 06-07-23 start */
.castdy-aprochsec .section-tittle h2 {
  color: #ffffff;
}

.castdy-aproch-contbx {
  padding-left: 0;
  color: #d6d6d6;
}

.rltdcsdy_nrow h3 {
  margin-bottom: 0;
}

.rltdcsdy_nrow {
  margin-bottom: -15px;
}

.rltdcsdy_nrow .rltdcsdy_ncol {
  margin-bottom: 15px;
}

.casstudy-bnr .home-banner-wrapper-innr {
  padding: 110px 0 130px 0;
}

.perfrmInfo_each .perfrmInfo_icon {
  background: #1d7bff;
  border-radius: 6px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.perfrmInfo_each .perfrmInfo_icon img {
  height: 30px !important;
  height: 30px !important;
  object-fit: contain;
}

.perfrmInfo_each h3 {
  margin-bottom: 5px;
}

.perfrmInfo_each {
  text-align: center;
}

.perfrmInfo_col {
  margin-bottom: 30px;
}

.perfrmInfo_row {
  margin: 0 0 -30px;
}

.caseIntro_img {
  position: relative;
  height: 100%;
  line-height: 0;
  font-size: 0;
  width: 100%;
  min-height: 500px;
}

.caseIntro_img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caseIntro_row {
  align-items: center;
  margin-bottom: -30px;
}

.caseIntro_col {
  margin-bottom: 30px;
}

/* support 06-07-23 end */

/* support 07-07-23 end */
.blog_details_banner .home-banner-txtWrap {
  max-width: 730px;
  text-align: center;
  margin: 0 auto;
}

.blog_details_banner .home-banner-txtWrap h1 {
  max-width: initial;
}

.blog_details_banner .home-banner-txtWrap .author_date {
  color: #ffffff;
  margin-bottom: 30px;
}

.blog_details_banner .home-banner-txtWrap .bannerDetails_botImg {
  position: relative;
  margin-bottom: -100px;
}

.blog_details_banner .home-banner-txtWrap .bannerDetails_botImg img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.blog_details_banner .home-banner-txtWrap .inner-wrapperBlog {
  margin-bottom: 30px;
}

.blog_details_banner .home-banner-wrapper-innr {
  padding: 100px 0 110px 0;
}

.blogDetails_content_inner h2 {
  font-size: 40px;
}

.blogDetails_content_inner h3 {
  font-size: 28px;
}

.blogDetails_content_inner h4 {
  font-size: 25px;
}

.blogDetails_content_inner_head {
  margin-bottom: 40px;
}

.tableContent_details_each:not(:last-child) {
  margin-bottom: 40px;
}

.blogDetails_content_inner ol {
  margin-bottom: 40px;
}

.blogDetails_content_inner {
  max-width: 730px;
  margin: 0 auto;
}

.castdy-aprochsec.castdy_resultsNew {
  background-color: #ffffff;
}

.castdy_resultsNew.castdy-aprochsec .section-tittle h2 {
  color: var(--blackcolor);
}

.castdy_resultsNew .castdy-aproch-contbx {
  color: var(--fontcolor);
}

/* support 07-07-23 end */

/*support 10/7/2023*/
.blogDetails_content.blgdtals_content.cmn_gap {
  padding-top: 0;
}

.rltdcsdy-slide figure {
  position: relative;
}

.rltdcsdy-imglogo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.rltdcsdy-imglogo img {
  max-width: 50px;
  border-radius: 0 !important;
}

.blogtble-link ol li {
  margin-bottom: 10px;
  list-style: none;
  counter-increment: step-counter;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blogtble-link ol li::before {
  content: counter(step-counter)".";
  margin-right: 5px;
}

.blogtble-link ol {
  padding-left: 0;
}

.blogtble-link ol li a {
  color: var(--buttonbluecolor);
  cursor: pointer;
  text-decoration: underline !important;
}

.blogtble-link ol li a:hover {
  color: var(--fontcolor);
}

.blog_details_banner.blogdetailsbnr .bannerDetails_botImg {
  margin-bottom: 30px;
}

.blog_details_banner.blogdetailsbnr .home-banner-wrapper-innr {
  padding: 100px 0 70px 0;
}

/*support 10/7/2023*/






/* HTML support start 28-6-23 for landing page */
.landing-head {
  padding: 40px 0;
}

.landing-head.fixed {
  padding: 10px 0;
}

.landing-bnrs .home-banner-txtWrap h1 span::before {
  position: absolute;
  content: "";
  width: 110%;
  height: 110px;
  background: url(images/ban-span-crcls.png) no-repeat;
  background-size: 100%;
  left: -20px;
  top: -20px;
  z-index: -1;
}

.landing-bnrs .home-banner-txtWrap h1 span {
  margin-left: 0;
  display: inline-block;
  position: relative;
}

.landing-bnrs .home-banner-txtWrap h1 {
  max-width: 574px;
}

.landing-bnrs .home-banner-txtWrap {
  max-width: 618px;
}

.landing-bnrs .home-banner-txtWrap p {
  font-size: 23px;
}

.landing-bnrs .home-rght-imgWrap figure {
  margin-bottom: 0;
}

.landing-bnrs .home-banner-wrapper-innr {
  padding: 110px 0 127px;
}

.strt-txts {
  font-weight: 700;
  font-size: 31px;
  color: var(--whitecolor);
  display: block;
  margin: 40px 0 45px;
}

.landing-bnrs .home-rght-imgWrap figure {
  text-align: right;
}

.landing-bnrs .home-rght-imgWrap figure img {
  border-radius: 30px;
}

.landing-liberate .liberate-rit {
  width: 659px;
  min-width: 659px;
  height: 659px;
  background: #CEE2FF;
  border-radius: 100%;
}

.landing-liberate .liberate-rit .cmn-img {
  padding-left: 65px;
  min-height: 717px;
}

.bluclr-txts {
  font-size: 16px;
  font-weight: 500;
  color: #224BF3;
  text-transform: uppercase;
}

.landing-opt .fulBody_sec .extra_sec_head {
  max-width: 780px;
  margin: 0 auto 70px;
}

.landing-opt .fullBody_table_main table tr th:first-child {
  width: 50%;
}

.landing-opt .fullBody_table_main table tr th {
  width: 50%;
  border-bottom: 1px solid #000000;
  border-right: 1px solid #000000;
  padding: 15px 30px;
}

.landing-opt .fullBody_table_main {
  border: 1px solid #000000;
}

.landing-opt .fullBody_table_main table tr td {
  border-right: 1px solid #000000;
  border-bottom: 1px solid #000000;
  padding: 35px 30px;
  font-size: 26px;
  font-weight: 400;
  color: var(--blackcolor);
  position: relative;
  padding-left: 72px;
  line-height: 1.4;
}

.landing-opt .fullBody_table_main table tr td:first-child::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 40px;
  width: 29px;
  height: 29px;
  background: url(images/crss-111.svg) no-repeat #808080;
  background-size: 12px;
  background-position: center;
  border-radius: 100%;
}

.landing-opt .fullBody_table_main table tr td:last-child::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 40px;
  width: 29px;
  height: 29px;
  background: url(images/tick-111.svg) no-repeat #4BAE4F;
  background-size: 16px;
  background-position: center;
  border-radius: 100%;
}

.landing-opt .fullBody_table_main table tr:last-child td {
  border-bottom: 0
}

.landing-opt .extra_sec_head {
  max-width: 770px;
}

.landing-opt .extra_sec_head h2 span {
  display: inline-block;
  position: relative;
  z-index: -1;
}

.landing-opt .extra_sec_head h2 span::before {
  position: absolute;
  content: "";
  width: 109%;
  height: 109px;
  background: url(images/lib-lnd-crcl11.png) no-repeat;
  background-size: 100%;
  left: -21px;
  top: -13px;
  z-index: -1;
}

.landing-opt .fullBody_table_main table tr td:last-child {
  border-right: none;
}

.landing-opt .fullBody_table_main table tr th:last-child {
  border-right: none;
}

.landing-ftr .footer-colThird {
  width: 80%;
}

.landing-ftr .footer-inner-wrapper .footer_social_address li {
  padding-left: 33px;
  width: 33.33%;
  max-width: 312px;
}

.landing-ftr .footer_social_address {
  display: flex;
  flex-wrap: wrap;
}

.landing-growth .all_sm_hd p {
  color: #E4EFFF;
}

.landing-testi-sld .rifhtinnr-txtslidunanmae p {
  font-weight: 700;
  margin-bottom: 32px;
}

.landing-testi-sld .home-middle-unname-slider-wrapinnr figure {
  width: 40%;
}

.landing-testi-sld .rifhtinnr-txtslidunanmae {
  width: 60%;
  padding: 80px 84px 40px;
}

.landing-testi-sld .rifhtinnr-txtslidunanmae span strong {
  font-weight: 700;
}

.landing-testi-sld .home-middle-unname-sliderSingl.slick-center .home-middle-unname-slider-wrapinnr {
  margin-top: -50px;
}

.landing-testi-sld.home-middle-unname-slider-sec {
  padding: 130px 0 150px;
}

.landing-testi-sld .home-middle-unname-slidermain .slick-arrow {
  top: auto;
  bottom: -130px;
  margin-top: 0;
}

.landing-testi-sld .home-middle-unname-slidermain .slick-dots {
  bottom: -90px;
}

.landing-testi-sld .bg-name-logo {
  display: none;
}

.landing-testi-sld .home-middle-unname-sliderSingl.slick-center .home-middle-unname-slider-wrapinnr .bg-name-logo {
  display: block;
}

.landing-testi-sld .home-middle-unname-slidermain .slick-dots li.slick-active button {
  width: 45px;
}

.landing-liberate .liberate-lft {
  max-width: 586px;
}

.landing-growth .growth_potential_form select:not(option) {
  color: #BEBEBE;
}

.landing-growth .growth_potential_form select {
  background: url(images/sort-down.svg) no-repeat calc(100% - 13px) center #fff;
  background-size: 14px;
}

.landing-growth .growth_potential_form input[type="text"]::-webkit-input-placeholder,
.landing-growth .growth_potential_form input[type="tel"]::-webkit-input-placeholder,
.landing-growth .growth_potential_form input[type="password"]::-webkit-input-placeholder,
.landing-growth .growth_potential_form input[type="email"]::-webkit-input-placeholder,
.landing-growth .growth_potential_form textarea::-webkit-input-placeholder {
  color: #BEBEBE;
}

.landing-growth .growth_potential_form input[type="text"]:-ms-input-placeholder,
.landing-growth .growth_potential_form input[type="tel"]:-ms-input-placeholder,
.landing-growth .growth_potential_form input[type="password"]:-ms-input-placeholder,
.landing-growth .growth_potential_form input[type="email"]:-ms-input-placeholder,
.landing-growth .growth_potential_form textarea:-ms-input-placeholder {
  color: #BEBEBE;
}

.landing-growth .growth_potential_form input[type="text"]::-moz-placeholder,
.landing-growth .growth_potential_form input[type="tel"]::-moz-placeholder,
.landing-growth .growth_potential_form input[type="password"]::-moz-placeholder,
.landing-growth .growth_potential_form input[type="email"]::-moz-placeholder,
.landing-growth .growth_potential_form textarea::-moz-placeholder {
  color: #BEBEBE;
}

.landing-growth .growth_potential_form input[type="text"]:-moz-placeholder,
.landing-growth .growth_potential_form input[type="tel"]:-moz-placeholder,
.landing-growth .growth_potential_form input[type="password"]:-moz-placeholder,
.landing-growth .growth_potential_form input[type="email"]:-moz-placeholder,
.landing-growth .growth_potential_form textarea:-moz-placeholder {
  color: #BEBEBE;
}

.landing-ftr .footer-tittle {
  margin-bottom: 40px;
}

.landing-growth .growth_potential_form form .grow_btn input[type="submit"] {
  height: auto;
  min-height: 88px;
}

.landing-hm-ovr .home-single-sld-wrapInnr {
  max-width: inherit;
  padding: 0;
}

.landing-hm-ovr .home-scnd-sld-singl {
  padding: 0 22px;
}

.landing-hm-ovr .home-scnd-sec-slider .slick-list {
  margin: 0 -22px;
}

.landing-lib-ul li .landing-lib-ul-con span::before {
  display: none;
}

.landing-lib-ul li {
  display: flex;
  align-items: center;
}

.landing-lib-ul li i {
  width: 90px;
  min-width: 90px;
  height: 90px;
  background: #1D7BFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-right: 27px;
}

.landing-lib-ul li i img {
  max-height: 49px;
}

.landing-lib-ul li .landing-lib-ul-con {
  width: calc(100% - 90px);
}

.landing-lib-ul li .landing-lib-ul-con span {
  font-size: 26px;
  font-weight: 700;
  color: #14136D;
  display: block;
  margin-bottom: 4px;
  font-family: var(--Arvofont);
}


.landing-liberate {
  background: #E4EFFF;
  padding: 90px 0 140px;
  position: relative;
  overflow-x: hidden;
}

.lndng-lib-crclss {
  position: absolute;
  left: -55px;
  top: 35px;
  width: 104px;
  height: 104px;
  border-radius: 100%;
  background: #CBE0FF;
}

.landing-lib-ul li:not(:last-child) {
  margin-bottom: 36px;
}

.landing-lib-ul {
  padding-top: 32px;
}

.landing-liberate .liberate-lft p {
  font-size: 22px;
  color: var(--fontcolor);
}

.landing-lib-ul li .landing-lib-ul-con p {
  font-size: 18px;
  color: var(--fontcolor);
}

.landing-opt-track-btn {
  text-align: center;
  margin: 49px 0 0;
}

.landing-opt-track-btn .common-btn {
  height: auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-liberate .liberate-lft span::before {
  background: url(images/lib-lnd-crcl11.png) no-repeat;
  background-size: 100%;
}

.landing-growth .grow_box_design.box_right {
  bottom: 117px;
}

.landing-opt .extra_sec_head h2 {
  line-height: 1.3;
}

.seo-result-sec.gear-solutiontxtWrap {
  max-width: 100%;
  margin: 0;
}

.seo-result-sec p:empty {
  display: none;
}




/* HTML support end 28-6-23 for landing page */


/* support 11/7/23 start */
.rltdcsdy-slide .inner-wrapperBlog figure img {
  height: 205px;
  object-fit: cover;
}

.hbspt-form ::-webkit-input-placeholder {
  opacity: 1;
  color: var(--blackcolor) !important;
}

.hbspt-form :-ms-input-placeholder {
  opacity: 1;
  color: var(--blackcolor) !important;
  ;
}

.hbspt-form ::-moz-placeholder {
  opacity: 1;
  color: var(--blackcolor) !important;
  ;
}

.hbspt-form :-moz-placeholder {
  opacity: 1;
  color: var(--blackcolor) !important;
  ;
}

.hbspt-form input:not([type="submit"]),
.hbspt-form select,
.hbspt-form textarea {
  color: var(--blackcolor);
}

.hbspt-form select {
  background: url(images/sort-down11.svg) no-repeat calc(100% - 13px) center #fff;
  background-size: 14px;
  padding-right: 38px;
}

.hbspt-form .actions {
  margin-top: 15px;
}

.hbspt-form .hs-error-msg {
  color: #cbcbcb;
  font-size: 14px;
}

.hbspt-form .hs-main-font-element {
  color: #cbcbcb;
  font-size: 14px;
}

.blog-main-sec {
  overflow: hidden;
}

.home-middle-unname-slider-sec {
  overflow: hidden;
}

.seo-page-formwrapper-sec {
  overflow: hidden;
}

/* support 11/7/23 end */
/* 17.07.2023 */
.caseIntro_row.csitro-row2:nth-child(even) {
  flex-direction: row-reverse;
}

.caseIntro_row.csitro-row2 {
  margin-bottom: 30px;
}

.caseIntro_row.csitro-row2:last-child {
  margin-bottom: 0;
}

.perfrmInfo_sec.cmn_gap {
  padding-top: 0;
}

/* 17.07.2023 */
/* 18.07.2023 */
.castdy-aprochrw.case-study-ap2 .opt-list li::before {
  display: none;
}

.castdy-aprochrw.case-study-ap2 .opt-list li {
  list-style: disc;
  padding-left: 0;
}

.result-listnew {
  list-style: disc;
}


/* 18.07.2023 */

/*support 24/7/2023*/
.landing-bnrs .home-rght-imgWrap form .hs-submit {
  text-align: center;
}

/*support 24/7/2023*/


.home-rght-imgWrap.landingbannerimg .hs-form-private .hs-form-field>label {
  display: none;
}

.home-rght-imgWrap.landingbannerimg .hs-form-private .hs-form-field {
  margin-bottom: 25px;
}


.growth_potential_form .hs-fieldtype-intl-phone.hs-input select {
  width: 40% !important;
}

.growth_potential_form .hs-fieldtype-intl-phone.hs-input input {
  width: 56% !important;
}

.homer-skill-slider .slick-slide {
  padding: 0 15px;
  padding-bottom: 12px;
}

.btn-wrap-innr-wrap.new-wrapd-study a {
  margin: 0;
  margin-left: auto;
}

.wrap-sld-btn-links.newlisted_btn_pull {
  justify-content: center;
  padding: 0 15px;
}


/* Update 27-07-2023*/

/* Ul Added */
.privacy-policy .frequently_asked_questions ul {
  padding-left: 20px;
}

.privacy-policy .frequently_asked_questions ul li {
  list-style-type: square !important;
}

.privacy-policy .frequently_asked_questions a {
  color: #1d7bff;
}

/* Update 27-07-2023*/

/*support paulomi 28/7/2023*/
.privacy-policy .frequently_asked_questions ul li {
  list-style: none;
  padding-left: 40px;
  position: relative;
}

.privacy-policy .frequently_asked_questions ul {
  padding-left: 0;
  margin-bottom: 20px;
}

.privacy-policy .frequently_asked_questions ul li:not(:last-child) {
  margin-bottom: 15px;
}

.privacy-policy .frequently_asked_questions ul li::marker {
  content: none;
}

.privacy-policy .frequently_asked_questions ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 30px;
  height: 30px;
  background: url(images/tick-crcl.svg) no-repeat;
  background-size: 26px;
  background-position: center;
}

.privacy-policy .blogtble-link ol li {
  font-size: 20px;
}

.privacy-policy .blogtble-link ol li a {
  color: var(--fontcolor);
  text-decoration: none !important;
  font-weight: 600;
}

.privacy-policy .blogtble-link {
  margin-bottom: 40px;
}

.privacy-policy .blogtble-link ol li a:hover {
  color: #ff9117;
}

.privacy-policy .defaultpage .liberate-lft h1 {
  font-size: 58px;
  color: #ffffff;
  margin-bottom: 20px;
}

/*support paulomi 28/7/2023*/

/*support paulomi 2/8/2023*/
.ftrcallnwno {
  position: relative;
}

.footer_social_address .ftrcallnwno i {
  position: absolute;
  left: -33px;
}

.ftr-separte-callprt {
  margin-top: 40px;
}

/*support paulomi 2/8/2023*/
/* ========== responsive css =========== */

/* ---- container ---- */


@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: 1200px) {
  .container {
    max-width: 1210px;
  }
}

@media (min-width: 1600px) {}

/* 19.04.2023 css start */

@media (max-width: 1920px) {
  .home-banner-txtWrap h1 {
    margin-bottom: 30px;
  }

  .home-banner-txtWrap p {
    margin-bottom: 56px;
  }

  .home-rght-imgWrap {
    max-width: 480px;
    margin: 0 auto;
  }

  .home-world-over-Tittle {
    margin-bottom: 30px;
  }

  .home-world-over-sec {
    margin-top: -50px;
  }
}

@media (max-width: 1680px) {
  .home-banner-txtWrap p {
    margin-bottom: 26px;
  }

  .home-rght-imgWrap {
    max-width: 300px;
  }

  .home-world-over-Tittle {
    margin-bottom: 15px;
  }

  .page-template-seo-service .home-rght-imgWrap {
    max-width: 460px;
  }

  /* support start 20-6-23 */
  .home .home-banner-wrapper-innr {
    padding: 100px 0 80px;
  }

  .home .home-banner-txtWrap h1 {
    margin-bottom: 20px;
    font-size: 50px;
  }

  .home .home-banner-txtWrap p {
    font-size: 16px;
  }

  .home .common-btn {
    font-size: 16px;
  }

  .home .home-banner-btn-wrap {
    padding: 28px;
  }

  .home .home-world-over-Tittle h2 {
    font-size: 30px;
  }

  .home-single-sld-wrapInnr {
    max-width: 200px;
    min-height: 116px;
  }

  .home .home-rght-imgWrap figure {
    text-align: right;
  }

  .home .home-rght-imgWrap figure .cmn-img {
    height: 380px !important;
  }

  .home .home-banner-txtWrap p {
    margin-bottom: 20px;
  }

  /* support end 20-6-23 */



  /* ========= AD 21/06/2023 ======= */
  .page-template-programmatic .home-rght-imgWrap {
    padding-left: 0;
  }

  /* ========= AD 21/06/2023 END ======= */
  /* CSS Modification 26.06.23 */
  .trstd_hdng_new .heading_five {
    font-size: 26px !important;
  }

  .trstd_hdng_new h2 span {
    font-size: 20px;
  }

  /* CSS Modification 26.06.23 */
}

/* 19.04.2023 css end */

@media (max-width: 1399px) {
  .home-upskill-sld-wrapinnr {
    margin: 0 -25px;
  }

  .right-silder-mainwrapper-upskill,
  .home-upskill-imgwrap {
    padding: 0 25px;
  }

  .home-fourthcart-rw {
    --bs-gutter-x: 24px;
  }

  .blue_sec::before {
    left: 0;
    top: 0;
  }

  .home-fourthcart-crtWrap::before {
    right: -10px;
    bottom: -10px;
  }

  .acc_row {
    --bs-gutter-x: 20px;
  }

  .home-fourthcart-crtWrap {
    margin: 0 10px 10px 0;
  }

  .liberate-sec .rowspan {
    --bs-gutter-x: 60px;
  }

  /* 19.04.2023 css start */
  .home-rght-imgWrap {
    max-width: 100%;
  }

  /* 19.04.2023 css end */

  .home-banner-txtWrap p {
    margin-bottom: 10px;
  }

  .page-template-seo-service .home-rght-imgWrap {
    max-width: 450px;
  }
}

@media (max-width: 1299px) {
  .home-upskill-sld-wrapinnr {
    margin: 0 -15px;
  }

  .right-silder-mainwrapper-upskill,
  .home-upskill-imgwrap {
    padding: 0 15px;
  }


  /* 05.05.23 start */

  .abtTeam_slider {
    padding: 0 35px;
  }

  .abtTeam_slider .slick-next {
    right: 0;
  }

  .abtTeam_slider .slick-prev {
    left: 0;
  }

  .frequently_asked_questions .row {
    --bs-gutter-x: 25px;
  }


  /* 05.05.23 end */


  /* HTML support start 28-6-23 for landing page */

  .lndng-lib-crclss {
    width: 85px;
    height: 85px;
  }

  /* HTML support end 28-6-23 for landing page */

}


@media (max-width: 1199px) {

  h1,
  .heading_one {
    font-size: 45px;
  }

  h2,
  .heading_two {
    font-size: 35px;
  }

  h3,
  .heading_three {
    font-size: 30px;
  }

  .common-gap {
    padding: 60px 0;
  }

  .navbar-nav li {
    padding: 0 30px 0 0;
  }

  .header-top-btnWrap {
    padding: 10px 18px;
  }

  .home-single-sld-wrapInnr {
    max-width: 220px;
  }

  .home-banner-txtWrap p {
    font-size: 20px;
  }

  .common-btn {
    padding: 18px 35px;
  }

  .home-scnd-sec-slider .slick-dots li button {
    width: 8px;
    height: 8px;
  }

  .home-scnd-sec-slider .slick-dots li {
    padding: 0 8px;
  }

  .home-scnd-sec-slider .slick-dots li.slick-active button {
    width: 12px;
    height: 12px;
  }

  .wrap-home-upskill-txtWrap h2 {
    font-size: 30px;
  }

  .wrap-home-upskill-txtWrap ul li span {
    font-size: 40px;
  }

  .wrap-home-upskill-txtWrap a {
    margin: 0 0 0 auto;
  }

  .wrap-home-upskill-txtWrap ul {
    margin-bottom: 40px;
  }

  .wrap-home-upskill-txtWrap .blcktxt-wrap {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .wrap-home-upskill-txtWrap ul li:not(:last-child) {
    margin-bottom: 20px;
  }

  .opt-main-tab-list .resp-tab-item {
    font-size: 20px;
  }

  .liberate-sec .rowspan {
    --bs-gutter-x: 30px;
  }

  .home-middle-unname-slidermain .slick-list {
    padding: 0 60px !important;
  }

  .rifhtinnr-txtslidunanmae {
    padding: 80px 40px 60px;
  }

  .section-tittle h2 {
    font-size: 35px;
  }

  /* 14.04.23 MM css start */

  .acc_row {
    --bs-gutter-x: 20px;
  }

  .upper_footer {
    padding: 60px 0;
  }

  .footer_col.footer_nth_one {
    width: 32%;
  }

  .footer_col.footer_nth_four {
    width: 30%;
  }

  .bottom_footer {
    padding: 25px 0;
  }

  .frequently_accordion_wraper .accordion-button {
    font-size: 19px;
  }

  h4,
  .heading_four {
    font-size: 30px;
  }

  /* 14.04.23 MM css end */

  .rounded_img_col {
    width: 300px;
    flex-basis: 300px;
  }

  .animate_img_wrap {
    height: 300px;
  }

  .animate_img_wrap .path_shape svg {
    height: 100%;
    width: 100%;
  }

  .rounded_txt_col {
    width: calc(100% - 300px);
    flex-basis: calc(100% - 300px);
    padding-left: 60px;
  }

  /* new-pages-css */
  .navbar-collapse {
    padding: 0 10px;
  }

  .navbar-nav li a {
    font-size: 14px;
  }

  .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: 100px;
    bottom: -15px;
    height: 44px;
  }

  .navbar-brand {
    width: 110px;
  }

  .navbar-nav li {
    padding: 30px 40px 30px 0;
  }

  .inner-banner-sec h1 {
    font-size: 35px;
  }

  /* 
  .inner-banner-sec .home-banner-txtWrap h1 span::before {
    width: 100%;
    height: 70px;
    background-size: 100% !important;
    top: -10px;
    left: 0;
  } */

  h5,
  .heading_five {
    font-size: 26px;
  }

  .innerwrap-pagetop-slider .slick-dots li {
    padding: 0 6px;
  }

  .innerwrap-pagetop-slider .slick-dots li button {
    width: 8px;
    height: 8px;
  }

  .innerwrap-pagetop-slider .slick-dots li.slick-active button {
    width: 12px;
    height: 12px;
  }

  .home-gear-solutngtxtLft {
    font-size: 16px;
  }

  .seo-bigger-resultClm figure {
    padding-top: 20px;
  }

  h6,
  .heading_six {
    font-size: 24px;
  }

  .seo-proven-processRw:nth-child(odd) .seo-proven-processClm:nth-child(odd) .wrap-textSeo-proven-process {
    padding-right: 30px;
  }

  .seo-proven-processRw:nth-child(even) .seo-proven-processClm:nth-child(odd) .wrap-textSeo-proven-process {
    padding-left: 30px;
  }

  .optimising_nav li {
    font-size: 24px;
  }

  .home-gear-solutngtxtLft {
    padding-left: 30px;
  }

  .wrapper-innersjt-crt {
    padding: 20px 15px;
  }

  .wrapper-seo-page-formwrapperItem h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .wrapper-seo-page-formwrapperItem p {
    font-size: 14px;
  }

  .seo-page-formwrapper-rw {
    margin-bottom: 30px;
    --bs-gutter-x: 15px;
  }

  .seo-page-formwrapper-sec .all_sm_hd h2 {
    font-size: 35px;
  }

  .blog-wrapper-topTittle h2 {
    font-size: 35px;
  }

  .blog-wrapper-topTittle {
    margin-bottom: 40px;
  }

  .single-blgWraper-rw {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 40px;
  }

  .inner-wrapperBlog h3,
  .frequently_asked_questions .cart-most-sec .crt-text h4 {
    font-size: 20px;
  }

  .inner-wrapperBlog figure {
    margin-bottom: 15px;
  }

  .frequently_asked_questions .cart-most-sec .crt-text h5 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .inner-wrapperBlog .blogBtn-main,
  .frequently_asked_questions .blogBtn-main {
    font-size: 16px;
  }

  .blog-main-rw {
    --bs-gutter-x: 20px;
  }

  .blog-toprght-serch {
    margin-bottom: 30px;
  }

  .single-item-blogRightRwp h4 {
    font-size: 20px;
  }

  .single-item-blogRightRwp {
    margin-bottom: 30px;
  }

  .right-smallBlog-wrapper-txt {
    padding-left: 15px;
  }

  .right-smallBlog-wrapper-txt a {
    font-size: 16px;
  }

  .right-smallBlog-wrapper-txt p {
    font-size: 14px;
  }

  .lastblogBox-innerwrapper {
    padding: 60px 10px 80px;
  }

  .lastblogBox-innerwrapper .common-btn {
    padding: 15px 30px;
    font-size: 16px;
  }

  .inner-wrapperBlog .txtTtls,
  .frequently_asked_questions .txtTtls {
    font-size: 12px;
  }

  /* .caseStudy-innerwrap-banner .home-banner-txtWrap h1 span::before {
    height: 60px;
    top: 0;
  }

  .blog-innerwrap-banner .home-banner-txtWrap h1 span::before {
    height: 60px;
    top: 0;
  } */

  .contact-middle-mapsec h3 {
    font-size: 35px;
  }

  .conatct-page-mainFrm-sec .growth_potential_form input {
    height: 60px;
  }

  .conatct-page-mainFrm-sec .growth_potential_form textarea {
    height: 150px;
  }

  .seo-page-formwrapper-sec input[type="submit"] {
    height: 55px;
    padding: 0 30px;
  }

  .home-banner-sec.inner-banner-sec .common-btn {
    min-width: auto;
    padding: 18px 30px;
  }

  /* support start 23.5.23 */
  .page-template-case-study .single-blgWraper-rw,
  .page-template-blog .single-blgWraper-rw {
    --bs-gutter-x: 30px;
  }

  .page-template-case-study .single-blgWraper-rw .inner-wrapperBlog figure,
  .page-template-blog .single-blgWraper-rw .inner-wrapperBlog figure {
    margin-bottom: 22px;
  }

  /* support end 23.5.23 */


  /* 05.05.23 start */


  .home-banner-sec.inner-banner-sec .abtBtn_wrap .common-btn {
    padding-left: 30px;
    padding-right: 30px;
    min-width: inherit;
  }

  .extra_sec_head h2,
  .extra_sec_head .heading_two {
    font-size: 32px;
  }

  .about_main_sec .section-tittle h3,
  .abt_seoBiggr_sec .extra_sec_head .heading_six,
  .extra_Head_title span,
  .team_txt_wrap h3 {
    font-size: 22px;
  }

  .abtBlue_sec p:not(:last-child) {
    margin-bottom: 25px;
  }

  .team_txt_wrap {
    padding: 25px 18px 40px;
  }

  .abtTeam_slide {
    padding: 25px 10px;
  }

  .abtTeam_slider .slick-list {
    margin: -25px -10px;
  }

  .abtBtn_wrap .home-banner-btn-wrap {
    padding: 30px 15px;
  }

  .programmetic_afterBnnr_rw {
    margin-bottom: 50px;
  }

  .programmetic_abtBlue_sec .extra_sec_head {
    margin-bottom: 60px;
  }

  .fullBody_table_main table tr th,
  .programmetic_txt_wrappr h3 {
    font-size: 20px;
  }

  .fullBody_table_main table tr td {
    padding: 30px 15px;
  }

  .fullBody_table_main table tr td .side_heading {
    font-size: 20px;
  }

  .new_programatic_sec .animate_content h3 {
    font-size: 24px;
  }

  .cart-most-sec .img-crt figure::before {
    right: -8px;
    bottom: -4px;
  }

  .inner-wrapperBlog .author {
    font-size: 16px;
  }

  .cmn_gap {
    padding: 60px 0;
  }

  .home-world-over-Tittle h2 span {
    font-size: 18px;
  }

  /* 05.05.23 end */

  .abt_seoBiggr_sec .seo-bigger-resultRw {
    --bs-gutter-x: 12px;
  }

  .pin-spacer {
    width: 100% !important;
  }

  .contact-banner .home-banner-txtWrap h1 span {
    margin-left: 5px;
  }

  /* support 07-07-23 start */
  .blogDetails_content_inner h2 {
    font-size: 35px;
  }

  .blogDetails_content_inner h3 {
    font-size: 30px;
  }

  /* support 07-07-23 end */

  /* HTML support start 28-6-23 for landing page */

  .landing-liberate .liberate-lft p {
    font-size: 18px;
  }

  .landing-liberate .liberate-lft {
    max-width: 485px;
  }

  .landing-lib-ul {
    padding-top: 8px;
  }

  .landing-lib-ul li:not(:last-child) {
    margin-bottom: 20px;
  }

  .landing-lib-ul li i img {
    max-height: 35px;
  }

  .landing-lib-ul li i {
    width: 70px;
    min-width: 70px;
    height: 70px;
  }

  .landing-liberate .liberate-rit {
    width: 510px;
    min-width: 510px;
    height: 510px;
  }

  .lndng-lib-crclss {
    width: 70px;
    height: 70px;
  }

  .landing-head {
    padding: 15px 0;
  }

  .landing-bnrs .home-banner-wrapper-innr {
    padding: 80px 0 127px;
  }

  .strt-txts {
    font-size: 26px;
    margin: 34px 0 28px;
  }

  .landing-bnrs .home-banner-txtWrap p {
    font-size: 18px;
  }

  .landing-bnrs .home-banner-txtWrap {
    max-width: 512px;
  }

  .landing-opt .fullBody_table_main table tr td {
    padding: 18px 10px;
    padding-left: 45px;
    font-size: 20px;
  }

  .landing-opt .fullBody_table_main table tr td:last-child::before {
    left: 15px;
    top: 20px;
    width: 20px;
    height: 20px;
    background-size: 12px;
  }

  .landing-opt .fullBody_table_main table tr td:first-child::before {
    left: 15px;
    top: 20px;
    width: 20px;
    height: 20px;
    background-size: 12px;
  }

  .landing-opt .fullBody_table_main table tr th {
    padding: 15px;
  }

  .landing-opt .extra_sec_head {
    max-width: 550px;
    margin: 0 auto 40px;
  }

  .bluclr-txts {
    display: block;
    margin-bottom: 5px;
  }

  .landing-testi-sld .rifhtinnr-txtslidunanmae {
    width: 70%;
    padding: 80px 40px 40px;
  }

  .landing-testi-sld .home-middle-unname-slider-wrapinnr figure {
    width: 30%;
  }

  .landing-testi-sld .home-middle-unname-sliderSingl.slick-center .home-middle-unname-slider-wrapinnr {
    margin-top: -25px;
  }

  .landing-testi-sld .home-middle-unname-slidermain .slick-arrow {
    bottom: -100px;
  }

  .landing-testi-sld .home-middle-unname-slidermain .slick-dots {
    bottom: -50px;
  }

  .landing-testi-sld.home-middle-unname-slider-sec {
    padding: 85px 0;
  }

  .landing-testi-sld .home-middle-unname-slidermain .slick-dots li.slick-active button {
    width: 40px;
  }

  .landing-liberate .liberate-rit .cmn-img {
    min-height: 530px;
  }

  .landing-opt .extra_sec_head h2 span::before {
    left: -8px;
  }

  /* HTML support end 28-6-23 for landing page */



}

@media (max-width: 1024px) {

  /* navbar*/
  .navbar-nav .clickD {
    position: absolute;
    right: 10px;
    top: 54%;
    transform: translateY(-50%);
    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 {
    transform: rotate(180deg);
    top: 40%;
  }

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

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

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

  .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 {
    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 {
    opacity: 1;
  }

  /* navbar end*/
}

@media (max-width: 991px) {
  .massage_contant ul li {
    font-size: 16px !important;
    line-height: 1.4 !important;
  }

  /* navbar*/
  .navbar-toggler {
    position: relative;
    width: 33px;
    margin-left: auto;
    height: 28px;
    padding: 0;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
  }

  .stick,
  .stick:after,
  .stick:before {
    width: 30px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    top: auto;
    transition: all 0.6s;
    border-radius: 5px;
  }

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

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

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

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

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

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

  .navbar-nav .clickD.toggled {
    transform: rotate(180deg) !important;
    top: 4px;
  }

  .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.menu-item-has-children>a {
    padding-right: 30px !important;
  }

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

  .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 end*/

  /* push nav */

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

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    display: block !important;
    transform: translateX(0);
    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;
    transition: background-color 0.5s linear;
  }

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

  /* push nav end */

  h1,
  .heading_one {
    font-size: 35px;
  }

  h2,
  .heading_two {
    font-size: 30px;
  }

  h5,
  .heading_five {
    font-size: 24px;
  }

  .navbar-brand {
    order: 1;
  }

  .header-top-btnWrap {
    order: 2;
    margin: 0 20px 0 auto;
    padding: 6px 12px;
  }

  .navbar-toggler {
    order: 3;
    margin: 0;
  }

  .navbar-nav>li>a:after {
    left: 0;
    transform: inherit;
    bottom: -4px;
  }

  .common-btntw {
    padding: 18px 22px;
    font-size: 14px;
  }

  .home-banner-txtWrap h1 {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .common-btn {
    padding: 18px 22px;
    font-size: 14px;
  }

  .home-banner-btn-wrap {
    padding: 25px 24px;
  }

  .home-banner-txtWrap {
    margin-bottom: 40px;
  }

  .home-rght-imgWrap figure img {
    width: 100%;
  }

  .home-banner-sec::before {
    background: linear-gradient(rgb(14, 13, 91) 8%,
        rgb(32, 30, 148),
        rgb(24, 76, 225) 76%,
        rgb(255, 255, 255) 100%);
  }

  .home-banner-txtWrap p {
    margin-bottom: 20px;
  }

  .home-world-over-sec {
    margin-top: 0;
  }

  .home-banner-wrapper-innr {
    padding: 100px 0 80px;
  }

  .home-world-over-Tittle h2 {
    line-height: 1.1;
  }

  .home-single-sld-wrapInnr {
    max-width: 180px;
    min-height: 120px;
  }

  .home-solution-clm figure img {
    width: 100%;
  }

  .home-solution-rw {
    --bs-gutter-y: 40px;
    flex-direction: column-reverse;
  }

  .gear-solutiontxtWrap span,
  .sec_subTitle {
    font-size: 14px;
  }

  .home-gear-solutngtxtLft {
    padding: 0 0 0 40px;
    font-size: 16px;
  }

  .main-head.fixed .stick,
  .main-head.fixed .stick:after,
  .main-head.fixed .stick:before {
    background: #000000;
  }

  .wrapitem-txtcrtmatch {
    height: inherit !important;
  }

  .home-middle-unname-slidermain .slick-list {
    padding: 0 !important;
  }

  .home-upskill-sld-wrapinnr {
    flex-wrap: wrap;
  }

  .right-silder-mainwrapper-upskill {
    width: 100%;
  }

  .home-upskill-imgwrap {
    width: 100%;
    margin-bottom: 40px;
  }

  .home-upskill-imgwrap figure {
    margin: 0 10px 10px 0;
  }

  .wrap-home-upskill-txtWrap h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .wrap-home-upskill-txtWrap ul li span {
    font-size: 30px;
  }

  .wrap-home-upskill-txtWrap ul li {
    width: auto;
    flex: 1;
  }

  .slider-right-upskill-slider .slick-arrow {
    width: 40px;
    height: 40px;
    margin: -20px 2px 0 0;
  }

  .btn-wrap-innr-wrap a {
    font-size: 14px;
  }

  .wrap-home-upskill-txtWrap ul li p {
    font-size: 16px;
  }

  .bg-name-logo {
    width: 140px;
    height: 80px;
  }

  .rifhtinnr-txtslidunanmae {
    padding: 60px 20px 40px;
  }

  .rifhtinnr-txtslidunanmae i {
    margin-bottom: 20px;
  }

  .rifhtinnr-txtslidunanmae p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .rifhtinnr-txtslidunanmae span {
    font-size: 16px;
  }

  .opt-rit {
    max-width: 100%;
  }

  .opt-main-tab-list .resp-tab-item {
    font-size: 16px;
  }

  .common-gap {
    padding: 40px 0;
  }

  .liberate-lft p {
    font-size: 22px;
  }

  .liberate-lft h2 {
    margin-bottom: 30px;
  }

  .wrap-home-upskill-txtWrap a {
    font-size: 16px;
  }

  .home-upskill-imgwrap figure i {
    width: 150px;
    height: 150px;
  }

  .home-upskill-imgwrap figure i img {
    max-width: 80px;
  }

  /* .home-banner-txtWrap h1 span::before {
    top: -15px;
    left: -15px;
  } */

  .liberate-lft span::before {
    left: -15px;
    top: -10px;
  }

  /* 14.04.23 MM css start */

  .growth_potential_wraper .all_sm_hd .heading_three {
    margin-bottom: 28px;
    font-size: 30px;
  }

  .growth_potential_wraper .all_sm_hd p {
    font-size: 16px;
  }

  .growth_potential_wraper .all_sm_hd {
    margin-bottom: 35px;
  }

  .grow_box_design p {
    font-size: 16px;
  }

  .grow_box_design.box_right {
    right: -18px;
    bottom: 140px;
  }

  .grow_box_design {
    max-width: 255px;
  }

  .grow_box_design.box_middle {
    max-width: 280px;
    top: 10px;
    right: 82px;
  }

  .grow_box_design.box_left {
    bottom: 115px;
    left: -22px;
  }

  .middle_house_img {
    max-width: 210px;
  }

  .grow_row .grow_col:nth-child(1),
  .grow_row .grow_col:nth-child(2) {
    margin-bottom: 20px;
  }

  .massage_contant .all_sm_hd {
    margin-bottom: 35px;
  }

  .massage_content_para p:not(:last-child) {
    margin-bottom: 22px;
  }

  .massage_content_para p {
    font-size: 16px;
    text-align: left;
  }

  .massage_contant ul li {
    padding-left: 57px;
    margin-bottom: 24px;
  }

  .cmn_gap {
    padding: 40px 0;
  }

  .footer_col.footer_nth_one {
    width: 50%;
  }

  .footer_col.footer_nth_two {
    width: 50%;
  }

  .footer_col.footer_nth_three {
    width: 50%;
  }

  .footer_col.footer_nth_four {
    width: 50%;
  }

  .footer_row {
    margin-bottom: -30px;
  }

  .footer_col {
    margin-bottom: 30px;
  }




  .frequently_asked_questions .all_sm_hd {
    margin-bottom: 40px;
  }





  .bottom_footer_content {
    flex-direction: column;
  }

  .bottom_footer_content p {
    order: 2;
    text-align: center;
  }

  .bottom_footer_content .follow_connect_list {
    order: 1;
    margin-bottom: 15px;
  }

  .follow_connect_list li {
    margin: 0 7px;
  }

  .follow_connect_list li a {
    width: 35px;
    height: 35px;
    font-size: 15px;
  }

  input[type="submit"] {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 16px;
    height: 68px;
  }

  .acc_row {
    margin-bottom: -28px;
  }

  .accordion_column {
    margin-bottom: 28px;
  }

  h4,
  .heading_four {
    font-size: 24px;
  }

  body {
    font-size: 16px;
  }

  /* 14.04.23 MM css end */

  .home-fourthcart-clm {
    padding: 40px 10px 0;
  }

  .home-fourthcart-rw {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
  }

  .home-fourthcart-rw {
    --bs-gutter-y: 50px;
  }

  /* 18.04.2023 css start */
  .error404 .main-head .navbar-nav li a {
    color: #fff;
  }

  .error404 .stick,
  .error404 .stick:after,
  .error404 .stick:before {
    background: #000;
  }

  .error404 .stick.open,
  .single-post .stick.open {
    background: transparent;
  }

  .error404 .stick.open:after,
  .error404 .stick.open:before {
    background: #fff;
  }

  .single-post .stick,
  .single-post .stick:after,
  .single-post .stick:before {
    background: #fff;
  }

  .home .liberate-sec {
    padding: 45px 0;
  }

  .home .liberate-sec .liberate-rit {
    height: 300px;
    overflow: hidden;
  }

  /* 18.04.2023 css start */

  /* 19.04.2023 css start */
  .optimising_nav li {
    font-size: 12px;
    padding: 10px 10px;
  }

  .optimising_nav::before {
    top: 0;
  }

  .home-rght-imgWrap {
    margin: 0 auto;
  }

  .home-banner-btn-wrap {
    margin-left: -22px;
  }

  /* 19.04.2023 css end */
  /*support 277/4/2023*/
  .growth_potential_form form fieldset.form-columns-2 .hs-form-field {
    width: 100%;
  }

  .growth_potential_form form fieldset.form-columns-2 .input,
  .growth_potential_form form fieldset.form-columns-1 .input {
    margin-right: 0;
  }

  /*support 27/4/2023*/

  /*support 28/4/2023*/
  .home .home-banner-sec .home-rght-imgWrap figure {
    display: none;
  }

  .home .home-banner-sec .home-banner-txtWrap h1 {
    font-size: 50px;
  }

  /*support 28/4/2023*/

  /* new-pages-css */

  .inner-banner-sec h1 {
    font-size: 30px;
  }

  .navbar-nav>li.current-menu-item>a:after,
  .navbar-nav>li>a:hover:after,
  .navbar-nav>li.menu-item-has-children:hover>a:after {
    height: 50px;
    bottom: -12px;
    width: 115px;
  }

  .seo-bigger-resultSec .gear-solutiontxtWrap {
    max-width: 100%;
  }

  .seo-bigger-resultClm figure {
    justify-content: center;
    margin: 0 auto;
    display: flex;
  }

  .seo-proven-processRw:nth-child(odd) .seo-proven-processClm:nth-child(odd) .wrap-textSeo-proven-process {
    padding-right: 0;
    padding-left: 40px;
    text-align: left;
  }

  .seo-proven-processRw:nth-child(odd) .wrap-textSeo-proven-process span {
    right: inherit;
    left: 0;
  }

  .seo-proven-processRw:nth-child(even) .seo-proven-processClm:nth-child(odd) .wrap-textSeo-proven-process {
    padding-left: 40px;
  }

  .seo-proven-processRw:nth-child(even) .wrap-textSeo-proven-process span {
    left: 0;
  }

  .all-seo-carttxtwrapperTop::before {
    left: 12px;
    transform: inherit;
    top: 90px;
    bottom: 0;
    height: inherit;
    background-size: cover;
  }

  .seo-proven-processRw:nth-child(even) .seo-proven-processClm:nth-child(even) .wrap-textSeo-proven-process {
    padding-left: 40px;
    padding-right: 0;
  }

  .seo-proven-processRw:nth-child(even) .wrap-textSeo-proven-process i {
    margin: 0 auto 0 0;
  }

  .seo-proven-processRw {
    flex-direction: column-reverse !important;
    --bs-gutter-y: 10px;
  }

  .all-seo-carttxtwrapperTop::after {
    left: 17px;
  }

  .wrap-textSeo-proven-process i {
    width: 50px;
    height: 50px;
    padding: 15px;
  }

  .seo-proven-processRw:not(:last-child) {
    margin-bottom: 30px;
  }

  .footer-colFirst {
    width: 100%;
  }

  .footer-colSecnd {
    width: 25%;
  }

  .footer-colThird {
    width: 50%;
  }

  .footer-colFirst .fooetr_first_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }

  .seo-page-faqSec .accordion-header button {
    min-height: auto;
  }

  .seo-page-faqSec .accordion-header {
    min-height: auto;
  }

  .seo-page-faqSec .accordion-header button::after {
    top: 34px;
  }

  .home-upskill-imgwrap figure img {
    width: 100% !important;
  }

  .home-solution-clm figure img {
    width: 100% !important;
  }

  .seo-proven-process-sec .newSection-tittle {
    margin-bottom: 40px;
  }

  .optimising-sec .home-world-over-Tittle h2 {
    margin-bottom: 20px;
  }

  .seo-page-sliderwrapperNav .opt-rit {
    padding-top: 0;
  }

  .seo-page-formwrapper-rw {
    justify-content: center;
    --bs-gutter-y: 20px;
  }

  .blog-main-rw {
    --bs-gutter-y: 30px;
    flex-direction: column-reverse;
  }

  .blog-toprght-serch input[type="text"] {
    height: 50px;
  }

  .contact-middle-mapsec h3 {
    font-size: 30px;
  }

  .contact-middle-mapsec .footer_social_address {
    max-width: 100%;
  }

  .contact-middle-mapsec-rw {
    --bs-gutter-y: 30px;
  }

  .contact-pageFaq .accordion-header button {
    min-height: inherit;
  }

  /* support start 19.5.23 */
  .growth_potential_form .gform_wrapper.gravity-theme .gfield.gfield--width-half {
    -ms-grid-column-span: 12;
    grid-column: span 12;
  }

  .growth_potential_form .gform_wrapper.gravity-theme .ginput_complex {
    flex-direction: column;
  }

  .gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) span:not([style*="display:none"]):not(.ginput_full) {
    padding-right: 0 !important;
    margin-bottom: 20px;
  }

  .gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) span:not([style*="display:none"]):not(.ginput_full)~span:not(.ginput_full) {
    padding-left: 0 !important;
  }

  .growth_potential_form #field_2_3 {
    padding-bottom: 0 !important;
  }

  .growth_potential_form #input_2_3_6_container {
    margin-bottom: 0 !important;
  }

  /* support start 23.5.23 */
  .sub-menu {
    background: transparent;
    padding-left: 20px;
    padding-top: 10px;
  }

  .navbar-nav li .sub-menu>li a {
    color: var(--whitecolor);
  }

  .navbar-nav li .sub-menu>li a:hover {
    /* color: var(--buttoncolor); */
    color: #ffffff;
  }

  /* support end 23.5.23 */
  /*support 25/5/2023*/
  .page-template-contact .home-world-over-sec {
    padding-bottom: 40px;
  }

  /*support 25/5/2023*/
  /*support 1/6/2023*/
  .home-middle-unname-slidermain .slick-dots li button {
    width: 18px;
  }

  .home-middle-unname-slidermain .slick-dots li {
    padding: 0 6px;
  }

  /*support 1/6/2023*/

  /* 05.05.23 start */

  .about_main_sec .section-tittle h3,
  .abt_seoBiggr_sec .extra_sec_head .heading_six,
  .extra_Head_title span,
  .team_txt_wrap h3,
  .lightBlue_sec .extra_sec_head .heading_six {
    font-size: 20px;
  }

  .extra_sec_head h2,
  .extra_sec_head .heading_two {
    font-size: 28px;
  }

  .innr_abtTxt_wrap {
    padding: 25px 0;
  }

  .abt_seoBiggr_sec .extra_sec_head {
    margin-bottom: 30px;
  }

  .programmetic_item_innr .progrm_icon {
    width: 60px;
    height: 52px;
    padding: 15px;
  }

  .programmetic_txt_wrappr {
    padding-top: 20px !important;
  }

  .programmetic_item_innr {
    margin-bottom: 30px;
  }



  /* 05.05.23 end */

  .home-world-over-Tittle h2 {
    line-height: 1.5;
  }

  .accordion_column .accordion-item:last-child {
    margin-bottom: 0;
  }

  .single-blgWraper-rw,
  .frequently_asked_questions .row {
    --bs-gutter-y: 15px;
  }

  .main-head.fixed .navbar-nav li a {
    color: #ffffff;
  }

  .home-banner-txtWrap h1 span {
    margin-left: 13px;
  }

  /* CSS Modification 10.06.23 */
  .innerbanneroff .home-rght-imgWrap figure {
    display: none;
  }

  /* CSS Modification 10.06.23 */

  /* 15/06/2023 dm */

  .gear-solutiontxtWrap h2 {
    text-align: center;
  }

  /* 15/06/2023 dm */

  /* ======= AD 21/06/2023 ========= */
  .page-template-about-us .home-banner-txtWrap {
    margin-bottom: 0;
  }

  .about_main_sec.cmn_gap.aboutarea {
    padding-top: 30px;
  }

  /* ======= AD 21/06/2023 END ========= */
  /* CSS Modification 26.06.23 */
  .trstd_hdng_new .heading_five {
    font-size: 22px !important;
  }

  .trstd_hdng_new h2 span {
    font-size: 17px;
  }

  /* CSS Modification 26.06.23 */

  /*support 4/7/2023*/
  .castdy-aproch-contbx {
    padding-left: 0;
  }

  /*support 4/7/2023*/

  /* support 06-07-23 start */
  .casstudy-bnr .home-rght-imgWrap figure {
    display: flex;
    justify-content: center;
  }

  .casstudy-bnr .home-rght-imgWrap figure img {
    width: 150px;
  }

  .casstudy-bnr .home-banner-wrapper-innr {
    padding: 100px 0 120px 0;
  }

  .caseIntro_img img {
    position: static;
  }

  .caseIntro_img {
    min-height: initial;
  }

  /* support 06-07-23 end */


  /* support 07-07-23 start */
  .blogDetails_content_inner h2 {
    font-size: 30px;
  }

  /* support 07-07-23 end */

  /* HTML support start 28-6-23 for landing page */

  .landing-liberate .liberate-rit .cmn-img {
    padding-left: 0;
  }

  .landing-bnrs .home-banner-txtWrap {
    max-width: inherit;
  }

  .landing-bnrs .home-banner-wrapper-innr {
    padding: 100px 0 80px;
  }

  .landing-lib-ul li .landing-lib-ul-con span {
    font-size: 22px;
  }

  .landing-lib-ul li .landing-lib-ul-con p {
    font-size: 16px;
  }

  .landing-lib-ul li i {
    margin-right: 16px;
  }

  .landing-opt .fullBody_table_main table tr td {
    font-size: 17px;
  }

  .landing-opt .extra_sec_head {
    margin: 0 auto 35px;
  }

  .landing-testi-sld .home-middle-unname-slidermain .slick-arrow {
    bottom: auto;
    top: 100%;
    margin-top: 30px;
  }

  .landing-testi-sld .home-middle-unname-slidermain .slick-dots {
    bottom: -30px;
  }

  .landing-testi-sld .home-middle-unname-slidermain .slick-dots li.slick-active button {
    width: 35px;
  }

  .landing-ftr .footer-colThird {
    width: 100%;
  }

  .landing-ftr .footer-inner-wrapper .footer_social_address li:nth-child(2) {
    max-width: 202px;
    margin-left: auto;
  }

  .landing-ftr .footer_social_address li address {
    margin-bottom: 0;
  }

  .landing-opt-track-btn {
    margin: 30px 0 0;
  }

  .landing-opt-track-btn .common-btn {
    min-height: 70px;
  }

  .landing-bnrs .home-banner-txtWrap h1 span::before {
    top: -12px;
    left: -13px;
  }

  .landing-opt .fullBody_table_main table {
    min-width: inherit;
    width: auto;
  }

  /* HTML support end 28-6-23 for landing page */
  .seo-result-sec .alignright {
    margin: 0 auto;
    margin-bottom: 30px;
    float: none;
    display: table;
  }

  /* 17.07.2023 */
  .home-rght-imgWrap {
    max-width: 100%;
  }

  /* 17.07.2023 */
  .wrap-sld-btn-links.newlisted_btn_pull {
    margin-top: 30px;
  }

  /*support paulomi 28/7/2023*/
  .privacy-policy .defaultpage .liberate-lft h1 {
    font-size: 35px;
  }

  /*support paulomi 28/7/2023*/
  /*support paulomi 2/8/2023*/
  .ftrcallnwno {
    margin-top: 8px;
  }

  /*support paulomi 2/8/2023*/
}

@media screen and (max-width: 767px){
  .footer_col{
    width: 50%;
  }
  .mid_footer .footer-tittle{
    text-align: left !important;
  }
  .mid_footer .footer_social_address li{
    width: 100%;
  }
  .mid_footer .footer_social_address li:last-child{
    justify-content: flex-start;
    margin-top: 0;
  }
  .mid_footer .footer_social_address li:last-child i{
    position: absolute;
    margin: 0;
  }
  .livechat-content-wrapper{
    padding: 80px 0;
  }
  .livechat-content-wrapper .solution-wrap .left-col{
    margin-bottom: 55px;
  }
  .livechat-content-wrapper .solution-wrap .left-col h2{
    font-size: 28px;
    text-align: center;
    margin-bottom: 25px;
  }
  .livechat-content-wrapper .solution-wrap .left-col p{
    font-size: 18px;
    line-height: 25px; /* 138.889% */
  }
  .livechat-features-wrapper{
    padding: 90px 0 70px;
  }
  .livechat-features-wrapper h2{
    font-size: 28px;
    line-height: 100%; /* 28px */
    margin-bottom: 40px;
  }
  .livechat-features-wrapper .features-wrap .features-block{
    margin-bottom: 50px;
  }
  .livechat-features-wrapper .features-wrap .features-block .content-wrap h3{
    font-size: 24px;
  }
  .optimising-sec .home-world-over-Tittle h2{
    font-size: 24px;
  }
  .optimising-sec.livechatservice .container{
    max-width: 420px;
  }
  .optimising-sec.livechatservice .optimising_nav{
    flex-wrap: wrap;
  }
  .optimising-sec.livechatservice .optimising_nav:before{
    content: none;
  }
  .optimising-sec.livechatservice .optimising_nav li{
    position: relative;
    margin-right: 30px;
    margin-bottom: 40px;
  }
  .optimising-sec.livechatservice .optimising_nav li:nth-child(2), .optimising-sec.livechatservice .optimising_nav li:last-child{
    margin-right: 0;
  }
  .optimising-sec.livechatservice .optimising_nav li:before{
    position: absolute;
    top: 50%;
    left: 100%;
    content: '';
    background: url("images/optimising-nav-mob-linebg.png") repeat-x;
    width: 110%;
    height: 1px;
  }
  .optimising-sec.livechatservice .optimising_nav li:last-child:before{
    content: none;
  }
  .optimising-sec.livechatservice .optimising_nav li:nth-child(2):before{
    background: url("images/optimising-nav-mob-linedownbg.png") no-repeat;
    top: 100%;
    left: -30%;
    transform: translateX(-50%);
    width: 233px;
    height: 40px;
  }
  .optimising-sec.livechatservice .optimising_nav .nmbr-cls{
    margin-right: 8px;
  }
  .optimising-sec.livechatservice .optimising-slider{
    margin-top: 0;
  }
  .livechat-reporting-wrapper{
    padding: 80px 0 15px;
  }
  .livechat-reporting-wrapper .title-wrap h2{
    font-size: 28px;
    color: #000000;
    line-height: normal;
    margin-bottom: 15px;
  }
  .livechat-reporting-wrapper .title-wrap p{
    color: #000000;
  }
  .livechat-reporting-wrapper .content-wrap > div{
    margin-bottom: 65px;
  }
  .livechat-reporting-wrapper .content-wrap .content-block h3{
    font-size: 40px;
    line-height: normal;
  }
  .home-upskill-sec.livechatservice{
    padding: 80px 0;
  }
  .home-upskill-sec.livechatservice h2{
    font-size: 28px;
    line-height: normal;
    margin-bottom: 40px;
  }
  .home-upskill-sec.livechatservice .wrap-home-upskill-txtWrap h2{
    font-size: 24px;
    margin-bottom: 25px;
  }
}

@media (max-width: 767px) {

  .home-world-over-sec.inner-slider-topComn{
    margin-top: 0;
  }

  /* 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;
  }

  h1,
  .heading_one {
    font-size: 26px;
  }

  h2,
  .heading_two {
    font-size: 24px;
  }

  h3,
  .heading_three {
    font-size: 22px;
  }

  h5,
  .heading_five {
    font-size: 20px;
  }

  h6,
  .heading_six {
    font-size: 18px;
  }

  .home-rght-imgWrap figure {
    margin: 0 auto;
    max-width: 100%;
  }

  /* .home-banner-txtWrap h1 span::before {
    top: -8px;
    left: -10px;
  } */

  .home-world-over-Tittle {
    margin-bottom: 30px;
  }

  .slider-wrap-home-secnd::after {
    width: 40px;
  }

  .slider-wrap-home-secnd::before {
    width: 40px;
  }

  .home-single-sld-wrapInnr {
    max-width: 130px;
    min-height: 90px;
  }

  .home-solution-clm figure {
    max-width: 80%;
    margin: 0 auto;
  }

  .home-fourthcart-sec {
    padding-top: 40px !important;
  }

  .home-gear-solutngtxtLft {
    padding-left: 20px;
  }

  .home-fourthcart-crtWrap .icn-imgcrt {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 21px;
  }

  .home-fourthcart-crtWrap {
    padding: 40px 20px 20px;
  }

  .home-fourthcart-crtWrap {
    font-size: 14px;
  }

  .home-fourthcart-crtWrap a {
    font-size: 16px;
  }

  .home-upskill-imgwrap figure i {
    width: 120px;
    height: 120px;
  }

  .wrap-home-upskill-txtWrap .blcktxt-wrap {
    font-size: 12px;
  }

  .wrap-home-upskill-txtWrap ul li span {
    font-size: 24px;
  }

  .wrap-home-upskill-txtWrap ul li {
    width: 100%;
    padding: 0;
  }

  .slider-right-upskill-slider .slick-arrow {
    width: 40px;
    height: 40px;
    background-size: 6px;
  }

  .home-middle-unname-slider-wrapinnr figure {
    width: 100%;
  }

  .home-middle-unname-slider-wrapinnr {
    flex-wrap: wrap;
  }

  .home-middle-unname-slider-wrapinnr figure img {
    border-radius: 24px 24px 0 0;
  }

  .rifhtinnr-txtslidunanmae {
    width: 100%;
    padding: 30px 20px;
  }

  .bg-name-logo {
    right: 20px;
  }

  .liberate-lft p {
    font-size: 18px;
  }

  .liberate-rit {
    max-width: 80%;
    margin: 0 auto;
  }

  .liberate-rit img {
    width: 100%;
  }

  .liberate-sec .rowspan {
    --bs-gutter-x: 0;
  }

  .home-upskill-sld-wrapinnr {
    margin: 0;
  }

  .right-silder-mainwrapper-upskill,
  .home-upskill-imgwrap {
    padding: 0;
  }

  .home-middle-unname-slidermain .slick-arrow {
    width: 40px;
    height: 40px;
    background-size: 6px;
  }

  .optimising-sec .home-world-over-Tittle p {
    padding: 0;
  }

  .home-middle-unname-slider-sec {
    padding: 60px 0;
  }

  /* 14.04.23 MM css start */
  .frequently_accordion_wraper .accordion-button {
    font-size: 17px;
    padding: 20px 60px 20px 20px;
  }

  .frequently_accordion_wraper .accordion-body {
    padding: 0 56px 20px 20px;
  }

  .frequently_accordion_wraper .accordion-item {
    margin-bottom: 20px;
  }

  .frequently_accordion_wraper .accordion-button::after {
    top: 26px;
  }

  .footer_social_address li address {
    font-size: 15px;
  }

  .footer_menu_link li {
    margin-bottom: 15px;
  }

  .footer_menu_link li a {
    font-size: 15px;
  }

  .footer_social_address li i {
    top: 0;
    width: 20px;
  }

  .grow_box_design.box_left {
    bottom: 0;
    left: 0;
  }

  .grow_box_design.box_middle {
    top: 0;
    left: 0;
    max-width: 300px;
    margin-bottom: 20px;
  }

  .grow_box_design.box_right {
    right: 0;
    bottom: 0;
  }

  .grow_box_design.box_middle::before {
    display: none;
  }

  .grow_box_design.box_left::before {
    display: none;
  }

  .grow_box_design.box_right::before {
    display: none;
  }

  .grow_box_design {
    position: relative;
  }

  .grow_middle_box {
    padding-top: 0;
    flex-direction: column;
    align-items: center;
  }

  .grow_box_design {
    max-width: 300px;
    margin-bottom: 20px;
  }

  .upper_footer {
    padding: 45px 0;
  }

  .acc_row {
    margin-bottom: -20px;
  }

  .accordion_column {
    margin-bottom: 0;
  }

  /* 14.04.23 MM css end */

  .optimising-sec h2.resp-accordion {
    display: none;
  }

  .optimising-sec ul.resp-tabs-list {
    display: block;
  }

  .rounded_img_col {
    width: 300px;
    flex-basis: 300px;
  }

  .animate_img_wrap {
    height: 300px;
  }

  .animate_img_wrap .path_shape svg {
    height: 100%;
    width: 100%;
  }

  .rounded_txt_col {
    width: 100%;
    flex-basis: 100%;
    padding-left: 0;
  }

  .rounded_img_col {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 150px;
    flex-basis: 150px;
  }

  .animate_img_wrap {
    height: 150px;
  }

  .animate_img_wrap img {
    max-width: 80px;
  }

  .section-tittle h2,
  .extra_sec_head .heading_two,
  .extra_sec_head h2 {
    font-size: 24px;
  }

  .blue_sec {
    padding: 40px 0 !important;
  }

  .animate_img_wrap:before {
    width: 140px;
    height: 140px;
    top: 7px;
    left: 5px;
  }

  .animate_img_wrap li a {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }

  .animate_content .icon {
    width: 75px;
  }

  .animate_content h3 {
    font-size: 20px;
  }

  .animate_content p {
    font-size: 14px;
  }

  .btn-wrap-innr-wrap a {
    font-size: 14px;
  }

  .sld-btnwrapullist li {
    padding: 0 4px;
  }

  .sld-btnwrapullist {
    margin: 0 -4px;
  }

  .opt-main-tab-list .resp-tab-item {
    margin: 0;
  }

  .optimising-sec ul.resp-tabs-list {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }

  .opt-main-tab-list .resp-tab-item {
    padding: 10px 12px !important;
    font-size: 12px;
  }

  .opt-main-tab-list::before {
    top: 0;
    width: 100%;
    height: 100%;
  }

  /* 18.04.2023 css start */
  .defaultpage .liberate-lft h2 {
    text-align: center;
  }

  .defaultpage .cmn-img {
    max-width: 75% !important;
    margin: 0 auto;
    display: block;
  }

  .home-middle-unname-slider-wrapinnr figure {
    height: 300px;
    overflow: hidden;
  }

  .rifhtinnr-txtslidunanmae {
    padding: 20px 15px 10px;
  }

  .rifhtinnr-txtslidunanmae i {
    margin-bottom: 10px;
  }

  .home .liberate-sec .liberate-rit {
    height: 340px;
  }

  /* 18.04.2023 css end */

  /* 19.04.2023 css start */

  .optimising_nav li {
    font-size: 10px;
    padding: 10px 8px !important;
    margin: 0;
  }

  .optimising_nav::before {
    top: 0;
    width: 100%;
    height: 100%;
  }

  .optimising_nav {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }

  /* 19.04.2023 css end */

  .home-middle-unname-slider-wrapinnr {
    flex-direction: column;
  }

  /*support 28/3/2023*/
  .home .home-banner-wrapper-innr {
    padding: 100px 0 30px;
  }

  .home-solution-sec .gear-solutiontxtWrap {
    text-align: center;
  }

  .home-solution-sec .gear-solutiontxtWrap .home-gear-solutngtxtLft {
    text-align: left;
  }

  .home .wrap-home-upskill-txtWrap ul li span {
    font-size: 24px;
  }

  .home .wrap-home-upskill-txtWrap ul li {
    font-size: 18px;
  }

  .home .liberate-sec-cntnr {
    text-align: center;
  }

  .home .blue_sec.stickyBlueSec .section-tittle h2 {
    font-size: 32px;
  }

  .home .home-banner-txtWrap p {
    font-size: 16px;
  }

  /*support 28/3/2023*/

  /* new-pages-css */
  .inner-banner-sec h1 {
    font-size: 24px;
  }

  .inner-banner-sec .home-banner-txtWrap p {
    font-size: 16px;
  }

  .seo-page-faqSec .accordion-header button::after {
    top: 24px;
  }

  .seo-page-formwrapper-sec .all_sm_hd h2 {
    font-size: 24px;
  }

  .footer-colSecnd {
    width: 26%;
  }


  .growth_potential_wraper.cmn_gap {
    padding: 40px 0;
  }

  .wrap-textSeo-proven-process span {
    font-size: 12px;
  }

  .wrap-textSeo-proven-process h3 {
    margin-bottom: 10px;
    line-height: 1.8;
  }

  .blog-wrapper-topTittle h2 {
    font-size: 30px;
  }

  .conatct-page-mainFrm-sec .growth_potential_form input {
    height: 50px;
  }

  .conatct-page-mainFrm-sec .growth_potential_form textarea {
    height: 120px;
  }

  .conatct-page-mainFrm-sec .grow_btn {
    margin-top: 0;
  }

  .conatct-page-mainFrm-sec .all_sm_hd {
    margin-bottom: 30px;
  }

  .contact-middle-mapsec h3 {
    font-size: 24px;
  }

  .blog-wrapper-topTittle {
    margin-bottom: 25px;
  }

  .home-banner-wrapper-innr::before {
    display: none;
  }

  /* support start 19.5.23 */
  .growth_potential_form .gform_footer {
    margin-top: 0 !important;
  }

  .animate_main {
    min-height: 500px;
  }

  /*support start 1/6/2023*/
  .home-middle-unname-slidermain .slick-dots li button {
    width: 14px;
  }

  .home-middle-unname-slidermain .slick-dots li {
    padding: 0 4px;
  }


  /* 05.05.23 start */

  .abtTeam_slide {
    padding: 25px;
  }

  .abtTeam_slider {
    padding: 0;
  }

  .about_main_sec .section-tittle h3,
  .abt_seoBiggr_sec .extra_sec_head .heading_six,
  .extra_Head_title span,
  .team_txt_wrap h3,
  .lightBlue_sec .extra_sec_head .heading_six {
    font-size: 18px;
  }

  .abtBlue_sec p:not(:last-child) {
    margin-bottom: 15px;
  }

  .innr_abtTxt_wrap {
    padding: 0 0 20px;
  }

  .about_main_sec .section-tittle {
    margin-bottom: 35px;
  }

  .about_main_sec .section-tittle h2 {
    margin-bottom: 5px;
  }

  .abt_seoBiggr_sec .seo-bigger-resultRw {
    --bs-gutter-x: 0;
  }

  .single-blgWraper-rw,
  .frequently_asked_questions .row {
    --bs-gutter-x: 0;
  }

  .programmetic_abtBlue_rw figure {
    margin-bottom: 30px;
  }

  .fullBody_table_main table tr td {
    padding: 15px;
  }

  .fullBody_table_main table tr th,
  .programmetic_txt_wrappr h3 {
    font-size: 18px;
    padding: 10px;
  }

  .fullBody_table_main table tr td .side_heading {
    font-size: 16px;
    padding-left: 0;
  }

  .extra_optimising_nav {
    margin-bottom: 20px !important;
  }


  /* 05.05.23 end */
  /*support 5/6/2023*/
  .optimising-slider {
    pointer-events: none;
  }

  /*support 5/6/2023*/
  .home-upskill-imgwrap figure::before {
    right: -5px;
    bottom: -5px;
    border-radius: 10px;
  }

  .home-world-over-Tittle h2 span {
    font-size: 16px;
  }

  .growth_potential_form form .actions input[type="submit"] {
    min-height: 60px;
  }

  .frequently_asked_questions {
    padding-bottom: 60px;
  }

  .animate_content {
    display: block;
    margin-top: 25px;
    height: auto;
  }

  /* .animate_main{
      height: auto !important;
      min-height: auto;
    } */

  .home-banner-txtWrap h1 span {
    margin-left: 13px;
  }

  /* CSS Modification 10.06.23 */
  .wrap-home-upskill-txtWrap.responsivesec ul li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  /* CSS Modification 10.06.23 */
  /* support start 20-6-23 */
  .home .home-banner-sec .home-banner-txtWrap {
    text-align: center;
  }

  .animate_content>div {
    text-align: center;
  }

  .home-solution-clm figure {
    max-width: 95%;
  }

  .home .optimising_item_in .home-solution-clm figure {
    display: none;
  }

  .home-single-sld-wrapInnr {
    max-width: 110px;
  }

  .testiscroll {
    max-height: 100px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .rifhtinnr-txtslidunanmae p {
    margin-bottom: 0;
  }

  .rifhtinnr-txtslidunanmae {
    padding: 20px 15px 20px;
  }

  /* support end 20-6-23 */



  /* ======== AD 21/06/2023 ========= */
  .home-banner-sec .home-banner-txtWrap {
    text-align: center;
  }

  .home-banner-sec .home-banner-txtWrap .abtBtn_wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .home-middle-unname-slider-wrapinnr figure {
    height: 230px;
  }

  .testiscroll {
    max-height: inherit;
  }

  .optimising_item_in .home-solution-clm figure {
    display: none;
  }

  /* ======== AD 21/06/2023 END ========= */

  /* 23.06.23 start */

  .home .home-world-over-Tittle h2 {
    font-size: 24px;
  }

  /* 23.06.23 end */
  /* CSS Modification 26.06.23 */
  .trstd_hdng_new .heading_five {
    font-size: 20px !important;
  }

  /* CSS Modification 26.06.23 */
  /*support 4/7/2023*/
  .rltdcsdy-slider .slick-arrow {
    width: 40px;
    height: 40px;
  }

  .rltdcsdy-slider .slick-arrow.slick-prev {
    left: calc(50% - 50px);
    background-size: 10px;
  }

  .rltdcsdy-slider .slick-arrow.slick-next {
    right: calc(50% - 50px);
    background-size: 10px;
  }

  .rltdcsdysec .inner-wrapperBlog figure::before {
    right: -5px;
    bottom: -5px;
    border-radius: 10px;
  }

  .rltdcsdy-slider .rltdcsdy-slide {
    padding: 0 12px;
  }

  .rltdcsdy-slider .slick-list {
    margin: 0 -12px;
  }

  .castdy-intro-wrap .section-tittle {
    margin-bottom: 30px;
  }

  .rltdcsdysec .section-tittle {
    margin-bottom: 30px;
  }

  /*support 4/7/2023*/

  /* support 06-07-23 start */

  .casstudy-bnr .home-rght-imgWrap figure img {
    width: 100px;
  }

  .casstudy-bnr .home-rght-imgWrap figure:not(:last-child) {
    margin-bottom: 15px;
  }

  /* support 06-07-23 end */

  /* support 07-07-23 start */
  .blogDetails_content_inner h2 {
    font-size: 24px;
  }

  .blogDetails_content_inner h3 {
    font-size: 22px;
  }

  /* support 07-07-23 end */




  /* HTML support start 28-6-23 for landing page */
  .landing-bnrs .home-rght-imgWrap figure {
    max-width: 75%;
  }

  .landing-liberate .liberate-lft {
    max-width: inherit;
    margin-bottom: 30px;
  }

  .landing-liberate .liberate-rit {
    width: 300px;
    min-width: 300px;
    height: 300px;
  }

  .landing-liberate .liberate-rit .cmn-img {
    max-height: none;
    min-height: inherit;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    object-position: center;
  }

  .landing-testi-sld .home-middle-unname-slider-wrapinnr figure {
    width: 100%;
  }

  .landing-testi-sld .rifhtinnr-txtslidunanmae {
    width: 100%;
    padding: 20px 15px 20px;
  }

  .landing-testi-sld.home-middle-unname-slider-sec {
    padding: 60px 0;
  }

  .landing-testi-sld .home-middle-unname-slidermain .slick-dots li.slick-active button {
    width: 30px;
  }

  .landing-growth .growth_potential_form form .grow_btn input[type="submit"] {
    min-height: 60px;
  }

  .landing-ftr .footer-inner-wrapper .footer_social_address li {
    width: 100%;
    max-width: inherit;
  }

  .landing-ftr .footer-inner-wrapper .footer_social_address li:nth-child(2) {
    max-width: inherit;
    margin-left: inherit;

  }

  .bluclr-txts {
    margin-bottom: 12px;
  }

  .landing-opt-track-btn .common-btn {
    min-height: 60px;
  }

  .landing-growth .grow_box_design.box_right {
    bottom: 0;
  }

  .landing-bnrs .home-banner-txtWrap h1 span::before {
    left: -10px;
  }

  .strt-txts {
    font-size: 19px;
    margin: 20px 0;
  }

  .landing-bnrs .home-banner-txtWrap p {
    font-size: 16px;
  }

  .liberate-lft h2 {
    text-align: center;
  }

  .landing-opt .extra_sec_head h2 span::before {
    left: -6px;
  }

  .landing-opt .fullBody_table_main table tr td {
    font-size: 14px;
    padding-left: 26px;
  }

  .landing-opt .fullBody_table_main table tr td:first-child::before {
    left: 5px;
    width: 15px;
    height: 15px;
    background-size: 8px;
  }

  .landing-opt .fullBody_table_main table tr td:last-child::before {
    left: 5px;
    width: 15px;
    height: 15px;
    background-size: 8px;
  }

  .landing-opt .fullBody_table_main table tr th {
    padding-left: 5px;
  }

  .landing-wrldss-sect .home-single-sld-wrapInnr {
    max-width: 175px;
    min-height: 120px;
  }

  /* HTML support end 28-6-23 for landing page */
  /*support 24/7/2023*/
  .conatct-page-mainFrm-sec .growth_potential_form .hs-fieldtype-intl-phone select.hs-input {
    height: 50px;
  }

  /*support 24/7/2023*/
  .news-home-upskill-imgwrap {
    margin-bottom: 20px;
  }

  /*support paulomi 28/7/2023*/
  .privacy-policy .blogtble-link ol li {
    font-size: 18px;
  }

  .privacy-policy .defaultpage .liberate-lft h1 {
    font-size: 26px;
    text-align: center;
    margin-bottom: 30px;
  }

  /*support paulomi 28/7/2023*/
  /*suppoty paulomi 2/8/2023*/
  .ftr-separte-callprt {
    margin-top: 50px;
  }

  /*suppoty paulomi 2/8/2023*/
}

@media (max-width: 575px) {
  /* 14.04.23 MM css start *
  .massage_contant ul {
    padding-left: 0 !important;
    padding-top: 10px !important;
  }

  .footer_col.footer_nth_one {
    width: 100%;
  }

  .footer_col.footer_nth_two {
    width: 50%;
  }

  .footer_col.footer_nth_three {
    width: 50%;
  }

  .footer_col.footer_nth_four {
    width: 100%;
  }

  .massage_contant ul {
    padding-left: 15px;
  }

  .massage_contant ul li i {
    width: 30px;
  }

  .massage_contant ul li {
    padding-left: 45px;
  }

  .massage_contant ul li:last-child {
    margin-bottom: 30px;
  }

  .frequently_accordion_wraper .accordion-body {
    font-size: 15px;
  }

  .growth_potential_wraper .all_sm_hd p {
    font-size: 15px;
  }

  input[type="text"],
  input[type="tel"],
  input[type="password"],
  input[type="email"],
  select {
    font-size: 15px;
  }

  textarea {
    font-size: 15px;
  }

  .massage_content_para p {
    font-size: 16px;
  }

  .grow_box_design {
    border-radius: 6px;
  }

  .grow_block {
    border-radius: 6px;
  }

  .home-fourthcart-rw {
    --bs-gutter-y: 30px;
  }

  .massage_contant ul li {
    padding-left: 51px !important;
  }

  .footer_col.footer_nth_two {
    width: 100% !important;
  }

  /* 14.04.23 MM css end */

  /* 18.04.2023 css start */
  .error404 .error-img .cmn-btn {
    padding: 16px 22px;
  }

  .category-uncategorized .crt-text h4 {
    font-size: 22px;
  }

  /* 18.04.2023 css end */

  .home-middle-unname-slider-sec .bg-name-logo {
    font-size: 21px;
    min-width: 150px;
    max-width: 150px;
  }

  /* new-pages-css */
  .footer-colSecnd {
    width: 50%;
    order: 2;
  }

  .footer-colThird {
    order: 3;
  }

  /* support start 23.5.23 */
  .page-template-case-study .single-blgWraper-rw,
  .page-template-blog .single-blgWraper-rw {
    --bs-gutter-x: 20px;
  }

  /* support end 23.5.23 */
  /* support start 20-6-23 */
  .home-solution-clm figure {
    max-width: 100%;
  }

  /* support end 20-6-23 */

  /* HTML support start 28-6-23 for landing page */

  .landing-liberate .liberate-rit {
    width: 280px;
    min-width: 280px;
    height: 280px;
  }

  .landing-testi-sld .home-middle-unname-sliderSingl.slick-center .home-middle-unname-slider-wrapinnr {
    margin-top: 0;
  }

  .landing-testi-sld .home-middle-unname-slidermain .slick-dots li.slick-active button {
    width: 28px;
  }

  .landing-bnrs .home-banner-txtWrap h1 span::before {
    top: -7px;
  }

  .landing-wrldss-sect .home-single-sld-wrapInnr {
    max-width: 150px;
    min-height: 120px;
  }

  .blogDetails_content_inner h4 {
    line-height: 1.2;
  }

  /* HTML support end 28-6-23 for landing page */

}

@media (max-width: 480px) {
  .growth_potential_form form fieldset.form-columns-2 .hs-form-field .hs-input {
    width: 100% !important;
  }

  .growth_potential_form .hs-fieldtype-intl-phone.hs-input select.hs-input {
    margin-bottom: 20px;
  }

  .blogDetails_content_inner h4 {
    line-height: 1.2;
  }

  /*support 24/7/2023*/
  .growth_potential_form form .hs-fieldtype-intl-phone.hs-input select.hs-input {
    margin-bottom: 27px;
  }

  .landing-bnrs form .hs-fieldtype-intl-phone #phone_ext-76f85af1-aac8-4463-af94-b207dffd949b {
    width: 100% !important;
    margin-bottom: 25px;
  }

  .landing-bnrs form .hs-fieldtype-intl-phone input#phone-76f85af1-aac8-4463-af94-b207dffd949b {
    width: 100% !important;
  }

  /*support 24/7/2023*/
}

@media (max-width: 479px) {

  .home-rght-imgWrap figure,
  .home-solution-clm figure,
  .liberate-rit {
    max-width: 60%;
  }

  .navbar-brand {
    width: 100px;
  }

  .common-btntw {
    padding: 11px 11px;
    font-size: 12px;
  }

  .header-top-btnWrap {
    margin-right: 10px;
  }

  .common-btn {
    font-size: 12px;
  }

  .slider-right-upskill-slider .slick-arrow {
    margin: 30px 10px 0 0;
  }

  .wrap-home-upskill-txtWrap a {
    margin: 0 auto 0 0;
  }

  .home-middle-unname-slider-sec {
    padding: 40px 0;
  }

  /* 14.04.23 MM css start */
  .form_input_check label input[type="checkbox"]+span::before {
    top: 0;
  }

  .form_input_check label input[type="checkbox"]+span::after {
    top: 0;
  }

  .form_input_check label {
    font-size: 13px;
    padding-left: 28px;
  }

  .grow_middle_box {
    margin-bottom: 35px;
  }

  .follow_connect_list li {
    margin: 0 5px;
  }

  .follow_connect_list li a {
    font-size: 12px;
    width: 26px;
    height: 26px;
  }

  .bottom_footer {
    padding: 20px 0;
  }

  .upper_footer {
    padding: 45px 0 30px 0;
  }

  .frequently_accordion_wraper .accordion-button {
    font-size: 16px;
  }

  .massage_content_para p:not(:last-child) {
    margin-bottom: 15px;
  }

  .massage_contant .all_sm_hd {
    margin-bottom: 25px;
  }

  input[type="submit"] {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
    height: 58px;
  }

  .grow_btn {
    padding: 28px 22px 29px 24px;
  }

  .frequently_accordion_wraper .accordion-body {
    padding: 0 30px 15px 15px;
    font-size: 15px;
  }

  .frequently_accordion_wraper .accordion-button {
    font-size: 14px;
    padding: 15px 60px 15px 15px;
  }

  .frequently_accordion_wraper .accordion-button::after {
    top: 18px;
  }

  .read_less_btn a {
    min-width: 145px;
    text-indent: -7px;
    padding: 14px 10px;
    font-size: 16px;
  }

  .bottom_footer_content p br {
    display: block;
  }

  .frequently_asked_questions .all_sm_hd {
    margin-bottom: 25px;
  }

  .growth_potential_wraper.cmn_gap {
    padding: 40px 0 50px 0;
  }

  .footer_logo {
    width: 120px;
  }

  .upper_footer {
    padding: 40px 0 30px 0;
  }

  .cmn_gap {
    padding: 40px 0;
  }

  .bottom_footer_content .follow_connect_list {
    margin-bottom: 10px;
  }

  .growth_potential_wraper .all_sm_hd {
    margin-bottom: 30px;
  }

  h4,
  .heading_four {
    font-size: 22px;
  }

  .bottom_footer_content p {
    max-width: 265px;
    margin: 0 auto;
  }

  /* 14.04.23 MM css end */

  .opt-main-tab-list .resp-tab-item .nmbr-cls {
    width: 12px;
    height: 12px;
    font-size: 8px;
    margin-right: 2px;
  }

  .opt-main-tab-list .resp-tab-item {
    padding: 8px 10px !important;
    font-size: 11px;
  }

  .moreless-button {
    background-position: 90% 19px;
  }

  /* 18.04.2023 css start */
  .defaultpage .liberate-sec-cntnr,
  .single-post .liberate-sec-cntnr,
  .category-uncategorized .liberate-sec-cntnr,
  .search-no-results .liberate-sec-cntnr,
  .search-results .liberate-sec-cntnr {
    padding: 50px 0;
  }

  .error404 .error-img .cmn-btn {
    padding: 14px 18px;
    font-size: 15px;
  }

  .home-middle-unname-slidermain .slick-dots li button {
    width: 10px;
  }

  /* 18.04.2023 css end */

  /* 19.04.2023 css start */

  .optimising_nav li {
    padding: 8px 10px !important;
    font-size: 11px;
  }

  .optimising_nav .nmbr-cls {
    width: 12px;
    height: 12px;
    font-size: 8px;
    margin-right: 2px;
  }

  /* 19.04.2023 css end */

  /*support 28/4/2023*/
  .home .home-banner-sec .home-banner-txtWrap h1 {
    font-size: 30px;
  }

  .home .blue_sec.stickyBlueSec .section-tittle h2 {
    font-size: 24px;
  }

  .home .blue_sec.stickyBlueSec .animate_content h3 {
    font-size: 24px;
  }

  /*support 28/4/2023*/

  /* new-page-css */
  .gear-solutiontxtWrap span,
  .sec_subTitle {
    font-size: 10px;
  }

  .blog-wrapper-topTittle h2 {
    font-size: 24px;
  }

  .right-smallBlog-wrapperRw figure a {
    border-radius: 12px;
  }

  .inner-wrapperBlog figure a {
    border-radius: 12px;
  }

  .lastblogBox-innerwrapper h4 {
    font-size: 22px;
  }

  .frequently_accordion_wraper .accordion-button::after {
    right: 20px;
  }

  h6,
  .heading_six {
    font-size: 16px;
  }

  /*support 1/6/2023*/
  .home-middle-unname-slidermain .slick-dots li {
    padding: 0 3px;
  }

  .animate_content {
    height: auto;
  }

  .animate_main {
    min-height: auto;
  }

  /*support 1/6/2023*/

  /* 05.05.23 start */

  .abtBtn_wrap {
    flex-wrap: wrap;
  }

  .abtBtn_wrap .home-banner-btn-wrap {
    padding: 15px;
  }

  .about_main_sec .section-tittle h3,
  .abt_seoBiggr_sec .extra_sec_head .heading_six,
  .extra_Head_title span,
  .team_txt_wrap h3,
  .lightBlue_sec .extra_sec_head .heading_six {
    font-size: 16px;
  }

  .fullBody_table_main table {
    width: 800px;
  }

  .fullBody_table_main {
    overflow-x: auto;
  }

  /* 05.05.23 end */

  /*support 5/6/2023*/
  .slider-wrap-home-secnd::after {
    height: 90%;
    top: 50%;
    transform: translateY(-50%);
  }

  .slider-right-upskill-slider .slick-arrow {
    margin: 8px 10px 0 0;
  }

  /*support 5/6/2023*/

  .home .home-banner-wrapper-innr {
    padding: 61px 0 30px;
  }

  .home-banner-sec.inner-banner-sec .home-banner-wrapper-innr {
    padding: 61px 0 40px;
  }

  .home-banner-txtWrap h1 span {
    margin-left: 5px;
  }

  /* support start 20-6-23 */
  .home-banner-sec.inner-banner-sec .home-banner-wrapper-innr {
    padding: 90px 0 40px;
  }

  .home-solution-clm figure {
    max-width: 100%;
  }

  /* support end 20-6-23 */


  /* ======== AD 21/06/2023 ========= */
  .home-middle-unname-slider-wrapinnr figure {
    height: 210px;
  }

  .home-middle-unname-slidermain .slick-list {
    overflow: hidden !important;
  }

  .home-middle-unname-slidermain .home-middle-unname-slider-wrapinnr {
    min-height: -webkit-fit-content !important;
    min-height: -moz-fit-content !important;
    min-height: fit-content !important;
  }

  /* ======== AD 21/06/2023 END ========= */
  /*support 4/7/2023*/
  .cstdy-cnclu-logobx {
    max-width: 100px;
  }

  /*support 4/7/2023*/

  /* support 06-07-23 start */
  .casstudy-bnr.home-banner-sec.inner-banner-sec .home-banner-wrapper-innr {
    padding: 70px 0 70px;
  }

  /* support 06-07-23 end */


  /* support 07-07-23 start */
  .blog_details_banner.home-banner-sec.inner-banner-sec .home-banner-wrapper-innr {
    padding: 90px 0 100px;
  }

  .blogDetails_content_inner h4 {
    font-size: 20px;
  }

  /* support 07-07-23 end */

  /*support 10/7/2023*/
  .rltdcsdy-imglogo {
    width: 100px;
    height: 100px;
  }

  .rltdcsdy-imglogo img {
    max-width: 50px;
  }

  .blog_details_banner.blogdetailsbnr.home-banner-sec.inner-banner-sec .home-banner-wrapper-innr {
    padding: 90px 0 40px;
  }

  /*support 10/7/2023*/

  /* HTML support start 28-6-23 for landing page */

  .landing-testi-sld.home-middle-unname-slider-sec {
    padding: 40px 0;
  }

  .landing-testi-sld .home-middle-unname-slidermain .slick-dots li.slick-active button {
    width: 25px;
  }

  .landing-growth .grow_col {
    width: 100%;
  }

  .bluclr-txts {
    font-size: 15px;
  }

  .landing-bnrs .home-rght-imgWrap figure {
    max-width: 80%;
  }

  .landing-opt .fullBody_table_main table tr td {
    font-size: 13px;
  }

  /* HTML support end 28-6-23 for landing page */

  /* 17.07.2023 */
  .inner-banner-sec figure {
    max-width: 100% !important;

  }

  .growth_potential_wraper .all_sm_hd .heading_three {
    margin-bottom: 20px;
    font-size: 25px;
  }

  /* 17.07.2023 */
  .right-silder-mainwrapper-upskill.new-upskill .wrap-home-upskill-txtWrap ul {
    margin-bottom: 10px;
  }

}

@media (max-width: 374px) {
  .navbar-brand {
    width: 70px;
  }

  .common-btntw {
    font-size: 11px;
  }

  /* 14.04.23 MM css start */
  .massage_contant ul li i {
    width: 22px;
    top: 1px;
  }

  .massage_contant ul li {
    padding-left: 32px;
  }

  /* 14.04.23 MM css end */

  .optimising_nav li {
    font-size: 10px;
  }

  /*support 1/6/2023*/
  .home-middle-unname-slidermain .slick-dots li {
    padding: 0 2px;
  }

  .home-middle-unname-slidermain .slick-arrow {
    width: 30px;
    height: 30px;
  }

  /*support 1/6/2023*/

  /* HTML support start 28-6-23 for landing page */

  .landing-opt .fullBody_table_main table tr td {
    font-size: 14px;
  }

  .landing-opt .fullBody_table_main table tr th {
    font-size: 14px;
  }

  .landing-opt .fullBody_table_main table tr td {
    font-size: 12px;
  }

  .landing-wrldss-sect .home-single-sld-wrapInnr {
    max-width: 120px;
    min-height: 90px;
  }

}


.hs-form-field {
  width: 50%;
  float: left;
}

.hs_message{
  width: 100%;
}

.hs-fieldtype-intl-phone.hs-input input{
  float: right;
}

.hs-fieldtype-intl-phone.hs-input:after {
  clear: both;
  content: " ";
  display: table;
}

.hbspt-form ::-webkit-input-placeholder {
  opacity: 1;
  color: var(--blackcolor) !important;
}

.hbspt-form :-ms-input-placeholder {
  opacity: 1;
  color: var(--blackcolor) !important;
  ;
}

.hbspt-form ::-moz-placeholder {
  opacity: 1;
  color: var(--blackcolor) !important;
  ;
}

.hbspt-form :-moz-placeholder {
  opacity: 1;
  color: var(--blackcolor) !important;
  ;
}

.hbspt-form input:not([type="submit"]),
.hbspt-form select,
.hbspt-form textarea {
  color: var(--blackcolor);
}

.hbspt-form select {
  background: url(images/sort-down11.svg) no-repeat calc(100% - 13px) center #fff;
  background-size: 14px;
  padding-right: 38px;
}

.hbspt-form .actions {
  margin-top: 15px;
}

.hbspt-form .hs-error-msg {
  color: #cbcbcb;
  font-size: 14px;
}

.hbspt-form .hs-main-font-element {
  color: #cbcbcb;
  font-size: 14px;
}