/*!
Theme Name: icustoms
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: icustoms
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

icustoms is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
@font-face {
  font-family: "Aeonik Air";
  src: url("fonts/Aeonik-Air.woff2") format("woff2"),
    url("fonts/Aeonik-Air.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aeonik";
  src: url("fonts/Aeonik-Bold.woff2") format("woff2"),
    url("fonts/Aeonik-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aeonik";
  src: url("fonts/Aeonik-Black.woff2") format("woff2"),
    url("fonts/Aeonik-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aeonik";
  src: url("fonts/Aeonik-Medium.woff2") format("woff2"),
    url("fonts/Aeonik-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aeonik";
  src: url("fonts/Aeonik-Regular.woff2") format("woff2"),
    url("fonts/Aeonik-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aeonik";
  src: url("fonts/Aeonik-Thin.woff2") format("woff2"),
    url("fonts/Aeonik-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aeonik";
  src: url("fonts/Aeonik-Light.woff2") format("woff2"),
    url("fonts/Aeonik-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* font-family: 'Roboto', sans-serif; */

body,
html {
  overflow-x: hidden;
}

/* body,html{
      width: 100%;
  } */
body {
  margin: 0;
  padding: 0;
  font-family: var(--aeonik-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  font-weight: 400;
  font-style: normal;
  color: #000;
  font-size: 30px;
  line-height: 1.14;
  background-color: var(--light-white);
}

:root {
  scroll-behavior: inherit;
  --aeonik-font: "Aeonik";
  --footer-black: #1e1e1e;
  --black-clr: #000000;
  --white-clr: #ffffff;
  --blue-clr: #4532ee;
  --light-sky: #e3eff0;
  --light-clr: #f7f7ed;
  --blue-clr2: #4642f0;
  --orange: #ff6211;
  --light-clr2: #e1ff67;
  --black-clr2: #262626;
  --light-blue1: #76a7f8;
  --light-white: #f3f9ff;
}

b,
strong {
  font-weight: bold;
}

p {
  margin: 0 0 22px 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 25px 0;
  padding: 0;
  color: var(--footer-black);
  font-weight: bold;
  line-height: 1.14;
}

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

h1,
.h1-title {
  font-size: 90px;
}

h2,
.h2-title {
  font-size: 70px;
}

h3,
.h3-title {
  font-size: 50px;
}

h4,
.h4-title {
  font-size: 40px;
}

h5,
.h5-title {
  font-size: 30px;
}

h6,
.h6-title {
  font-size: 24px;
}

a {
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  color: #ecb61e;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

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

img {
  max-width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* custom checkbox */

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

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

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

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

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

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

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

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

/* custom radio */

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

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

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

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

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

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

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

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

/* custom radio end */

/* back to top */

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

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

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

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

/* navbar*/

.navbar-brand {
  padding: 0;
  margin: 0;
  width: 244px;
  flex: 0 0 auto;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

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

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

.navbar-nav > li {
  margin: 0 36.5px;
  padding: 0;
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.navbar-nav > li > a {
  color: var(--footer-black);
  font-size: 20px;
  line-height: 1.14;
  position: relative;
  font-weight: 500;
}

/* .navbar-nav > li > a:after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #3b61dc;
    opacity: 0;
    position: absolute;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    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: var(--blue-clr);
}

/* .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: 100%;
  } */

/* navbar submenu*/

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

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

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

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

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

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

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

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

/* for push-menu end*/

/* cmn css start 11-6-24 */
.container {
  max-width: 1588px;
  width: 100%;
}

.large-container {
  max-width: 1612px;
  width: 100%;
}

.cmn-btn {
  background: var(--orange);
  color: var(--light-white);
  display: inline-block;
  text-align: center;
  padding: 19px;
  min-width: 245px;
  border-radius: 100px;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  overflow: hidden;
  line-height: 1.14;
}

.cmn-btn:hover {
  background: var(--light-clr2);
  /* transition-delay: 0.3s; */
  color: var(--blue-clr);
}

.bdr-btn {
  background: transparent;
  color: var(--light-white);
  border: 1px solid var(--light-white);
  display: inline-block;
  text-align: center;
  padding: 18px;
  min-width: 202px;
  border-radius: 100px;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  overflow: hidden;
  line-height: 1.14;
}

.bdr-btn:hover {
  color: var(--blue-clr2);
  border: 1px solid var(--light-clr2);
  background-color: var(--light-clr2);
}

/* .cmn-btn::after {
    content: "";
    z-index: -1;
    background-color: var(--light-clr2);
    opacity: 1;
    width: 0;
    height: 100%;
    transition: all 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    border-radius: 40px;
  } */

/* .cmn-btn:hover::after {
    width: 100%;
    left: 0;
    right: auto;
  } */

/* cmn css end 11-6-24 */

/* footer start */
.main-footer {
  background: var(--footer-black);
}

.menu-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.ftr-innr-row {
  display: flex;
  flex-wrap: wrap;
}

.ftr-head {
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--light-white);
}

.ftr-innr-cl1 {
  width: 25%;
}

.menu-list li a {
  color: var(--light-white);
  font-size: 20px;
}

.menu-list li a:hover {
  border-bottom: 1px solid var(--light-white);
}

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

.ftr-top {
  padding: 130px 0 337px;
}

.ftr-logo {
  display: inline-block;
  width: 244px;
}

.btm-list {
  display: flex;
  align-items: center;
  padding-left: 30px;
  list-style-type: none;
  padding-left: 30px;
  margin-bottom: 0;
}

.ftr-btm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 197px;
  flex-wrap: wrap;
}

.btm-list li:not(:last-child) {
  margin-right: 145px;
}

.btm-list li a,
.ftr-btm p {
  font-size: 20px;
  font-weight: 400;
  color: var(--light-white);
}

.ftr-btm p a {
  color: var(--light-white);
}

.ftr-row {
  border-top: 1px solid var(--white-clr);
  padding-top: 41px;
  margin-top: 62px;
  display: flex;
  flex-wrap: wrap;
}

.addrs-ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.addrs-ul span {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}

.addrs-ul span:last-child {
  margin-bottom: 0;
}

.addrs-ul li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: var(--light-white);
  margin-bottom: 34px;
}

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

.addrs-ul li a {
  color: var(--light-white);
  font-size: 24px;
  font-weight: bold;
}

.addrs-ul li i {
  width: 25px;
  min-width: 25px;
}

.addrs-ul li a {
  width: calc(100% - 25px);
  padding-left: 20px;
}

.ftrcl1 {
  width: 34%;
}

.ftrcl2 {
  width: 66%;
}

.addrs-ul li {
  font-size: 20px;
}

.ftr-btm p {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.ftr-btm a {
  border-bottom: 1px solid transparent;
}

.ftr-btm a:hover {
  border-bottom: 1px solid var(--light-white);
}

.addrs-ul li a:hover {
  color: var(--orange);
}

.addrs-ul {
  max-width: 243px;
}

/* footer end */

/* get sec start */
.get-sec {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  padding: 162px 0 163px;
}

.getbgs {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.pstn-rltv {
  position: relative;
  z-index: 1;
}

.get-blk i {
  display: inline-block;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  overflow: hidden;
  margin-bottom: 40px;
}

.get-blk i img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}

.get-blk,
.get-blk h2 {
  color: var(--light-white);
}

.get-blk h2 {
  max-width: 843px;
  margin: 0 auto 63px;
  text-align: center;
}

.watch-ul {
  display: flex;
  align-items: center;
  list-style-type: none;
  padding-left: 0;
  justify-content: center;
  margin-bottom: 79px;
  flex-wrap: wrap;
}

.watch-ul li img {
  max-height: 45px;
  object-fit: contain;
}

.watch-ul li:not(:last-child) {
  margin-right: 69px;
}

/* get sec end */

/* innovative sec start */
.innovative-sec {
  background: var(--light-clr);
  padding: 140px 0;
}

.innovative-blk .sec-head {
  margin-bottom: 175px;
}

.innovative-btm-blk .rowspan {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
  justify-content: center;
}

.innovative-btm-blk .clspan:nth-child(1) .innovative-card {
  background: var(--light-white);
}

.innovative-btm-blk .clspan:nth-child(2) .innovative-card {
  background: var(--white-clr);
}

.innovative-btm-blk .clspan:nth-child(3) .innovative-card {
  background: var(--light-sky);
}

.innovative-btm-blk .innovative-card {
  padding: 50px;
  border-radius: 20px;
  height: 100%;
}

.innovative-figure {
  margin-bottom: 30px;
}

.innovative-figure img {
  width: 100%;
  border-radius: 20px;
}

.save-txt {
  display: block;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--footer-black);
}

.save-blk {
  max-width: 312px;
  margin: 0 auto;
  margin-top: 100px;
}

.innovative-card p {
  font-size: 24px;
  color: var(--footer-black);
}

/* innovative sec end */

/* smart sec start */
.smart-sec {
  background: var(--footer-black);
  padding: 141px 0 177px;
}

.smart-blk h2 {
  margin-bottom: 150px;
  color: var(--light-white);
  max-width: 662px;
}

.smart-bg-blk {
  margin-bottom: 120px;
}

.smart-bg-blk img {
  width: 100%;
}

/* smart sec end */

/* solutions sec start */

.solutions-sec {
  background: var(--light-sky);
  padding: 163px 0 292px;
}

.solutions-inner-sld .solutions-list-text {
  display: none;
}

.solutions-slider-outer {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.solutions-slider-outer .solutions-slider-button-wpr {
  width: 40.6%;
}

.solutions-slider-outer .solutions-inner-sld {
  width: 59.4%;
}

.solutions-acc-body {
  -webkit-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  height: 0;
  overflow: hidden;
  padding: 5px 2px 0px 0;
}

.solutions-acc-box .solutions-acc-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  padding: 0 25px 0 70px;
  min-height: 79px;
}

/* .solutions-acc-box .solutions-acc-button::after {
    content: "";
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    right: 0;
    width: 16px;
    height: 13px;
    background: url(./images/dwn-arrow.svg) no-repeat right center;
    background-size: auto;
}

.solutions-navigation.active .solutions-acc-box .solutions-acc-button::after {
    display: none;
} */

.solutions-acc-box .solutions-acc-button h3 {
  color: var(--footer-black);
  font-size: 30px;
  font-weight: bold;
  line-height: 1.14;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  transition: 0.3s all;
}

.solutions-acc-box .solutions-acc-button h3 i {
  width: 86px;
  height: 86px;
  background-color: var(--blue-clr);
  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;
  border-radius: 50%;
  padding: 10px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.solutions-acc-box .solutions-acc-button h3 span {
  padding-left: 40px;
}

.solutions-acc-box {
  position: relative;
  padding: 20px;
  border-top: 1px solid rgba(236, 236, 236, 0.4);
  cursor: pointer;
  border-radius: 20px;
  min-height: 126px;
}

.solutions-action-btn .solutions-navigation:last-child .solutions-acc-box {
  border-bottom: 1px solid rgba(236, 236, 236, 0.4);
}

.solutions-action-btn .solutions-navigation.active .solutions-acc-box {
  background-color: var(--whitecolor);
  border-radius: 20px;
  border-top: 0;
  padding-bottom: 0;
}

.solutions-action-btn
  .solutions-navigation.active
  + .solutions-navigation
  .solutions-acc-box {
  border-top: 0;
}

.solutions-action-btn
  .solutions-navigation.active
  .solutions-acc-box
  .solutions-acc-button
  h3 {
  color: var(--light-white);
  font-size: 50px;
  margin-bottom: 30px;
  max-width: 312px;
}

.solutions-action-btn .solutions-navigation.active .solutions-acc-body {
  height: auto;
  padding-bottom: 51px;
}

.solutions-acc-body .cmn-btn {
  -webkit-box-shadow: 0px 14px 28px 0px rgba(0, 105, 177, 0.21);
  box-shadow: 0px 14px 28px 0px rgba(0, 105, 177, 0.21);
}

.solutions-right-img-wpr {
  background: var(--light-clr);
  padding: 80px 38px;
  border-radius: 30px;
  height: 100%;
  min-height: 739px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.solutions-big-img img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  min-height: 500px;
}

.solutions-inner-wpr {
  position: relative;
  max-width: 1600px;
  margin: -4.026vw auto 0;
}

.solutions-small-img {
  width: 88px;
  height: 88px;
  margin-bottom: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid var(--whitecolor);
  -webkit-box-shadow: 0px 74px 104px rgba(14, 52, 82, 0.57);
  box-shadow: 0px 74px 104px rgba(14, 52, 82, 0.57);
  position: absolute;
  top: -39px;
  left: 56%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
  z-index: 3;
}

.solutions-left-img {
  border-radius: 20px;
  overflow: hidden;
  position: absolute;
  left: -39px;
  bottom: 135px;
  margin-bottom: 0;
  /* transform: translateY(150px); */
  opacity: 0;
  -webkit-transition-delay: 2s;
  -o-transition-delay: 2s;
  transition-delay: 2s;
  -webkit-box-shadow: 0px 74px 104px 0px rgba(14, 52, 82, 0.57);
  box-shadow: 0px 74px 104px 0px rgba(14, 52, 82, 0.57);
}

.solutions-inner-sld .solutions-slider .slick-list {
  padding-left: 76px;
}

/* .solutions-slider .solutions-item {
    padding-right: 50px;
    padding-bottom: 80px;
  } */

.solutions-inner-sld
  .solutions-slider
  .solutions-item.slick-active
  .solutions-small-img {
  opacity: 1;
  /* transform: translateX(-50%) scale(1);
    transition-delay: 0.3s; */
  -webkit-animation: slideUp 2s;
  animation: slideUp 2s;
}

.solutions-inner-sld
  .solutions-slider
  .solutions-item.slick-active
  .solutions-left-img {
  opacity: 1;
  /* transform: translateY(0);
    transition-delay: 0.5s; */
  -webkit-animation: slideLeft 3s;
  animation: slideLeft 3s;
}

@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateX(-50%) scale(0.5);
    transform: translateX(-50%) scale(0.5);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
}

@keyframes slideUp {
  0% {
    -webkit-transform: translateX(-50%) scale(0.5);
    transform: translateX(-50%) scale(0.5);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(-50%) scale(0.5);
    transform: translateX(-50%) scale(0.5);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
}

@keyframes slideLeft {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.solutions-blk h2 {
  margin-bottom: 118px;
}

.solutions-navigation.active .solutions-acc-button h3 i {
  display: none;
}

/* .solutions-action-btn .solutions-navigation.active .solutions-acc-body {
    padding-left: 0;
  } */
.solutions-navigation.active .solutions-acc-box .solutions-acc-button h3 span {
  padding-left: 0;
}

.solutions-navigation.active .solutions-acc-box .solutions-acc-button {
  padding-left: 0;
}

.solutions-navigation:not(.active) .solutions-acc-box {
  background: var(--light-clr);
}

.solutions-navigation.active .solutions-acc-box {
  background: var(--blue-clr) !important;
}

.solutions-action-btn .solutions-navigation:not(:last-child) {
  margin-bottom: 20px;
}

.solutions-ulss {
  color: var(--light-white);
  margin-bottom: 40px;
  padding-left: 25px;
}

.solutions-ulss li {
  font-size: 24px;
  line-height: 1.14;
}

.solutions-acc-btn .cmn-btn {
  min-width: 183px;
}

.solutions-big-img {
  background: var(--white-clr);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 0;
}

.solutions-navigation.active .solutions-acc-button {
  padding-top: 20px;
}

.solutions-ulss li:not(:last-child) {
  margin-bottom: 2px;
}

.solutions-acc-box .solutions-acc-button h3 i img {
  width: 43px;
  min-width: 43px;
}

.solutions-acc-btn .cmn-btn:hover::after {
  background: var(--light-clr2);
  color: var(--blue-clr);
}

.solutions-navigation.active .solutions-acc-box {
  padding-left: 50px;
}

/* solutions sec end */

/* why icustomer start */

.why-icustoms-section {
  padding: 203px 0;
  background-color: var(--footer-black);
}

.why-icustoms-container {
  max-width: 1400px;
  padding: 0 50px;
  margin: 0 auto;
}

.why-icustoms-section-heading {
  text-align: center;
  margin-bottom: 100px;
}

.why-icustoms-section-heading h2 {
  color: var(--light-white);
  padding-bottom: 70px;
  margin: 0;
  position: relative;
}

.why-icustoms-section-heading h2::after {
  content: "";
  position: absolute;
  width: 772px;
  height: 40px;
  background: url(images/header-bottom.svg) no-repeat top center;
  background-size: contain;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.why-icustoms-slider-item-in {
  background-color: var(--color-lightsky);
  padding: 50px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.why-icustoms-sld-text-wpr h3 {
  font-family: var(--aeonikbold);
  font-size: 40px;
  line-height: 1.14;
  color: #1e1e1e;
  margin: 0 0 10px;
  font-weight: bold;
}

.why-icustoms-sld-text-wpr p {
  font-family: var(--aeonikregular);
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 1.14;
  color: #1e1e1e;
  margin: 0;
}

.why-icustoms-left {
  background-color: #262626;
  padding: 74px 49px 74px 49px;
  border-radius: 20px;
}

.why-icustoms-left-top {
  display: flex;
  flex-wrap: wrap;
}

.why-icustoms-action {
  width: calc(100% - 50px);
}

.slides-numbers {
  width: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sr-only {
  display: none;
}

.progress-bar-outer {
  height: calc(100% - 53px);
}

.progress-bar {
  height: 100%;
  width: 1px;
  background-color: #e3eff0;
  border-radius: 3px;
  position: relative;
  overflow: visible;
}

.progress {
  background-color: #4642f0;
  position: absolute;
  top: 0;
  left: -1px;
  right: 0;
  width: 3px;
  border-radius: 3px;
  transition: all 1.5s linear;
}

.why-icustoms-action a {
  font-family: var(--aeonikbold);
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 57px;
  color: #f3f9ff;
  opacity: 0.1;
  display: block;
  margin: 0 0 10px;
}

.why-icustoms-action a.active {
  opacity: 1;
}

.slides-numbers-text {
  font-family: var(--aeonikregular);
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  color: #f3f9ff;
  opacity: 0.5;
}

.slides-numbers-text.active {
  margin-bottom: 15px;
}

.slides-numbers-text.total {
  margin-top: 15px;
}

.why-icustoms-slider-item .why-icustoms-text {
  display: none;
}

.why-icustoms-left-bottom {
  margin-top: 40px;
}

.common-button {
  font-family: var(--aeonikbold);
  font-weight: bold;
  font-size: 20px;
  line-height: 1.14;
  color: #f3f9ff;
  padding: 18px 21px;
  background-color: #ff6211;
  border-radius: 40px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-block;
  min-width: 245px;
  text-align: center;
}

.common-button:hover {
  color: var(--blue-clr);
  background-color: var(--light-clr2);
}

/* .common-button::after {
    content: "";
    z-index: -1;
    background-color: var(--light-clr2);
    opacity: 1;
    width: 0;
    height: 100%;
    transition: all 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    border-radius: 40px;
  } */

/* .common-button:hover::after {
    width: 100%;
    left: 0;
    right: auto;
  } */

.why-icustoms-right,
.why-icustoms-slider .slick-list,
.why-icustoms-slider .slick-track,
.why-icustoms-slider .why-icustoms-slider-item,
.why-icustoms-slider .why-icustoms-slider-item-in,
.why-icustoms-slider {
  height: 100%;
}

/* .why-icustoms-slider-item:nth-child(2) .why-icustoms-slider-item-in {
    background-color: #fff;
  } */

/* .why-icustoms-slider-item:nth-child(3) .why-icustoms-slider-item-in,
  .why-icustoms-slider-item:nth-child(7) .why-icustoms-slider-item-in {
    background-color: var(--blue-clr);
  } */

.why-icustoms-slider-item:nth-child(3) .why-icustoms-slider-item-in h3,
.why-icustoms-slider-item:nth-child(3) .why-icustoms-slider-item-in p,
.why-icustoms-slider-item:nth-child(7) .why-icustoms-slider-item-in h3,
.why-icustoms-slider-item:nth-child(7) .why-icustoms-slider-item-in p {
  color: #fff;
}

/* .why-icustoms-slider-item:nth-child(4) .why-icustoms-slider-item-in {
    background-color: #e3eff0;
  }
  
  .why-icustoms-slider-item:nth-child(5) .why-icustoms-slider-item-in {
    background-color: #fff;
  }
  
  .why-icustoms-slider-item:nth-child(6) .why-icustoms-slider-item-in,
  .why-icustoms-slider-item:nth-child(1) .why-icustoms-slider-item-in {
    background-color: #f3f9ff;
  } */

.why-icustoms-slider-item:nth-child(7) .why-icustoms-slider-item-in {
  /* background-color: #f3f9ff; */
  justify-content: flex-end;
}

.why-icustoms-slider-item:nth-child(8) .why-icustoms-slider-item-in {
  /* background-color: var(--light-sky); */
  justify-content: flex-end;
}

/* why icustomer end */

/* one sec start */
.one-icon-box {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  background: var(--light-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.one-sec {
  background: var(--footer-black);
  padding: 164px 0 247px;
}

.one-blk h2 {
  color: var(--light-white);
  margin-bottom: 100px;
}

.one-blk-wrap {
  position: relative;
  margin-bottom: 160px;
}

.one-bg-img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 772px;
  bottom: -99px;
}

.trade-li {
  background: var(--light-sky);
  border-radius: 20px;
  padding: 47px 24px 39px 24px;
  position: relative;
  text-align: center;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trade-ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -37px -10px;
}

.trade-li i {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: var(--blue-clr);
  margin: 0 auto;
  margin-bottom: 11px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -33px;
}

.trade-li i img {
  max-height: 35px;
  object-fit: contain;
}

.trade-ul .trd-wrap:nth-child(1),
.trade-ul .trd-wrap:nth-child(2),
.trade-ul .trd-wrap:nth-child(3) {
  width: 33.33%;
}

.trd-wrap {
  padding: 37px 10px;
  width: 25%;
}

.today-btm {
  background: var(--black-clr2);
  padding: 80px 132px;
  border-radius: 20px;
  margin-top: 105px;
}

.today-wraps {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.today-lft {
  max-width: 550px;
}

.today-lft h2 {
  margin-bottom: 0 !important;
  color: var(--light-clr2);
}

.today-btm p {
  color: var(--light-white);
  margin-bottom: 10px;
  font-weight: 300;
}

/* one sec end */

/* transformed sec start */
.transformed-sec {
  padding: 295px 0 230px;
}

.transformed-blk {
  display: flex;
  justify-content: space-between;
  max-width: 1394px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.transformed-blk-lft span {
  width: 566px;
  height: 620px;
  border-radius: 100%;
  border-radius: 100%;
  overflow: hidden;
  display: block;
  margin-left: -112px;
}

.transformed-blk-lft span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 100%;
}

.lrg-srcl {
  width: 362px;
  height: 362px;
  border-radius: 100%;
  background: var(--blue-clr);
  position: absolute;
  left: 188px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.sml-srcl {
  width: 158px;
  height: 158px;
  border-radius: 100%;
  background: var(--light-blue1);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.transformed-blk-lft {
  display: flex;
  flex-direction: row-reverse;
  /* align-items: center; */
  position: relative;
}

.transformed-blk-lft {
  width: 72%;
}

.transformed-rit {
  width: 28%;
  text-align: right;
  padding-left: 145px;
}

.transformed-card {
  background: var(--white-clr);
  padding: 25px;
  text-align: center;
  border-radius: 15px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.transformed-card img {
  max-height: 60px;
  object-fit: contain;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.transformed-slider .slick-list {
  margin: -10px 0;
}

.transformed-item {
  padding: 10px 0;
}

.transformed-blk-btm {
  max-width: 1381px;
  margin: 0 auto;
  text-align: center;
  margin-top: 100px;
}

.transformed-blk-btm p {
  font-size: 50px;
  margin-bottom: 47px;
  line-height: 1.14;
  color: var(--footer-black);
}

.author-name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 13px;
  line-height: 1.14;
}

.desig-cls {
  font-size: 20px;
  line-height: 1.14;
}

.transformed-slider .slick-current .transformed-card {
  background: var(--orange);
}

/* splide css start */

.transformed-card-logo-box {
  width: 100%;
  min-height: 100px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: var(--white-clr);
  border-radius: 15px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.inv-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.transformed-left-list-roll .splide__slide {
  overflow: hidden;
  border-radius: 30px;
  padding-top: 0;
  position: relative;
  height: 100px !important;
  margin-bottom: 20px;
}

.our-investors-col-right .splide__arrows,
.our-investors-col-right .splide__pagination {
  display: none;
}

.our-investors-col-right .splide__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.inv-logo-roll-1 {
  border-radius: 30px 30px 0 30px;
  overflow: hidden;
}

.transformed-slider {
  border-radius: 0 30px 30px 30px;
  overflow: hidden;
}

.transformed-item.is-active .transformed-card-logo-box {
  background: var(--orange);
}

.transformed-item.is-active .transformed-card-logo-box img {
  filter: brightness(0) invert(1);
}

.transformed-card-logo-box:hover {
  background: var(--orange);
}

.transformed-card-logo-box:hover img {
  filter: brightness(0) invert(1);
}

.transformed-card-logo-box img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* splide css end */

/* transformed sec end */

/* save sec start */
.save-lft {
  max-width: 641px;
  margin-top: -22px;
}

.wetxt {
  margin-bottom: 40px;
  color: var(--footer-black);
}

.save-lft .h1-title {
  margin-bottom: 25px;
  color: var(--blue-clr2);
}

.ai-txt {
  margin-bottom: 52px;
  color: var(--blue-clr2);
}

.save-lft i {
  display: block;
  margin-bottom: 80px;
  max-width: 220px;
}

.save-figs {
  margin-bottom: 0;
}

.save-figs {
  padding-left: 60px;
}

.save-figs img {
  width: 100%;
  border-radius: 31.66px;
  border: 6.33px solid var(--footer-black);
}

.features-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  margin-bottom: 75px;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}

.company-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

.save-blk-main {
  margin-bottom: 161px;
}

.features-list li {
  padding: 0 32px;
}

.features-list li:first-child {
  padding-left: 0;
}

.features-list li:last-child {
  padding-right: 0;
}

.company-list li:not(:last-child) {
  margin-right: 60px;
}

.company-list li img {
  max-height: 70px;
  object-fit: contain;
}

.save-sec {
  padding: 207px 0 230px;
}

/* save sec end */

/* main banner start */
.ban-blks-lft {
  max-width: 1119px;
  padding-top: 96px;
}

.main-banner {
  padding: 250px 0 189px;
  background: var(--blue-clr);
  position: relative;
  min-height: calc(100vh - 166px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.banbg-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  mix-blend-mode: multiply;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

.ban-blks-lft h1,
.ban-blks-lft p {
  color: var(--light-white);
}

.ban-blks-lft h1 {
  margin-bottom: 51px;
}

.ban-para {
  margin-bottom: 77px;
  /* max-width: 683px; */
  max-width: 700px;
}

.today-btn-grp {
  display: flex;
  align-items: center;
}

.today-btn-grp a.cmn-btn {
  margin-right: 0;
}

.today-btn-grp a:not(:last-child) {
  margin-right: 20px;
}

.ban-fig {
  margin-bottom: 0;
  width: 750px;
  position: absolute;
  bottom: 0;
  right: 40px;
}

.ban-fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ban-crcl {
  width: 905.13px;
  height: 905.13px;
  border-radius: 100%;
  position: absolute;
  right: -4px;
  top: -2px;
}

.ban-crcl img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* main banner end */

/* header start */
.main-head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  z-index: 10;
  padding-top: 77px;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

header.hide-header {
  transform: translateY(-100%);
}

.collpse-wrap {
  background: var(--white-clr);
  border-radius: 50px;
  padding: 0 52px 0 82px;
  min-width: 801px;
  margin: 0 24px 0 20px;
  display: flex;
  align-items: center;
  position: relative;
}

.menu-cls {
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.14;
  display: flex;
  align-items: center;
  color: var(--footer-black);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu-cls:hover {
  color: var(--blue-clr);
}

.menu-cls span {
  padding-right: 16px;
}

/* .navbar-nav .clickD {
    position: absolute;
    display: inline-block;
    width: 10px;
    height: 6px;
    background: url(images/ply.svg) center center no-repeat transparent;
    background-size: 10px;
    right: 0;
    top: 54%;
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  } */
.navbar-nav > li.menu-item-has-children > a {
  padding-right: 20px;
}

.main-head .today-btn-grp .cmn-btn {
  background: var(--orange);
  color: var(--light-white);
}

.main-head .today-btn-grp .cmn-btn:hover {
  color: var(--blue-clr);
  background: var(--light-clr2);
  /* transition-delay: 0.3s; */
}

.main-head .today-btn-grp .cmn-btn:hover::after {
  background: var(--light-clr2);
}

/* .main-head .today-btn-grp .bdr-btn:hover {
    border-color: var(--light-clr2);
    color: var(--light-clr2);
  } */

.main-head .today-btn-grp .bdr-btn::after {
  display: none;
}

.login-btn {
  display: flex;
  background: #ecece4;
  padding: 5.79px 5.79px 6.9px;
  border-radius: 226.98px;
  min-width: 149px;
  text-align: center;
  align-items: center;
  justify-content: space-between;
  padding-left: 33px;
  font-size: 20px;
  color: var(--footer-black);
  font-weight: 500;
  line-height: 1.14;
}

.login-btn:hover {
  background: var(--light-clr2);
  color: var(--blue-clr);
}

.login-btn span {
  width: 30px;
  height: 30px;
  background: var(--blue-clr);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-btn span img {
  width: 13px;
}

.hdr-menu-wrap {
  display: flex;
  align-items: center;
  list-style-type: none;
  padding-left: 79px;
  margin-bottom: 0;
}

.hdr-menu-wrap li:not(:last-child) {
  margin-right: 63px;
}

.main-head.fixed {
  background: var(--white-clr);
  padding: 10px 0;
}

ul.hdr-menu-wrap li {
  line-height: 0;
}

.main-head.main-head.fixed .navbar-brand img {
  filter: brightness(0);
}

.main-head.fixed .bdr-btn {
  color: var(--blue-clr);
  border-color: var(--blue-clr);
}

/* .transformed-slider {
    padding: 40px 0;
  } */
.transformed-card:hover {
  background: var(--orange);
}

.transformed-card:hover img {
  filter: brightness(0) invert(1);
}

/* hamburger menu start */

.navrow {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.cstnavmenu {
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  width: 60%;
  opacity: 0;
  pointer-events: none;
  color: #fff;
}

.navlft,
.navrt {
  position: relative;
  height: 100%;
  padding: 237px 80px 73px;
  z-index: 1;
}

.navrt {
  width: 100%;
}

.navlft {
  width: 70%;
}

.navul {
  display: flex;
  flex-wrap: wrap;
}

.navul li + li {
  margin-left: 10px;
}

.navbtm {
  position: absolute;
  bottom: 36px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px 0 60px;
  opacity: 0;
  flex-wrap: wrap;
}

.navinner {
  position: relative;
  height: calc(100% - 28px);
  overflow: hidden;
  opacity: 0;
}

.navinner .navlist:not(:last-child) {
  border-bottom: 0.5px solid var(--black-clr2);
  padding-bottom: 50px;
  margin-bottom: 50px;
}

.navrt .navinner {
  height: calc(100% - 86px);
  overflow-y: auto;
  padding-right: 15px;
}

.navrt .navinner::-webkit-scrollbar {
  width: 5px;
}

.navrt .navinner::-webkit-scrollbar-track {
  background: var(--secondarycolor);
}

.navrt .navinner::-webkit-scrollbar-thumb {
  background: var(--buttonbg);
}

.navrt .navinner {
  scrollbar-width: none;
}

.navinner label {
  font-size: 20px;
  font-weight: bold;
  display: block;
  margin-bottom: 30px;
  color: var(--footer-black);
}

.navinner label + ul {
  margin-bottom: 38px;
}

.rtbg,
.lftbg,
.fullnavBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform-origin: right center;
}

.rtbg {
  background: var(--light-clr);
  opacity: 0;
}

.lftbg,
.fullnavBg {
  background: #fffaf6;
  opacity: 0;
}

.navlist li a {
  font-size: 35px;
  font-weight: 300;
  color: var(--footer-black);
}

.navSocial {
  list-style-type: none;
}

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

.navcontact a {
  color: var(--footer-black);
  margin: 0 4px;
}

.navcontact a:hover {
  color: var(--blue-clr);
}

.navlft .navtc li a:hover,
.navlft .navcopy li a:hover {
  color: var(--secondarycolor);
}

.navlist li {
  position: relative;
  margin-bottom: 15px;
}

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

.navcontact {
  font-size: 20px;
  font-weight: 400;
  color: var(--footer-black);
  margin-bottom: 0;
}

.navSocial {
  line-height: 0;
}

.navSocial li a {
  font-size: 20px;
  font-weight: 400;
  color: var(--footer-black);
  border-bottom: 1px solid var(--footer-black);
}

.navSocial li a:hover {
  color: var(--blue-clr);
  border-color: var(--blue-clr);
}

.navSocial li a img {
  width: 100%;
}

.navSocial li a:hover img {
  filter: brightness(0) saturate(100%) invert(92%) sepia(8%) saturate(5111%)
    hue-rotate(196deg) brightness(105%) contrast(103%);
}

.navlft .navbtm {
  padding: 0 50px 50px;
  bottom: 0;
}

.navlft .navinner {
  height: 100%;
}

.navlft {
  padding: 85px 82px;
}

.navlft .navcopy li {
  display: flex;
  align-items: center;
  color: var(--primarycolor);
  font-size: 16px;
}

.navlft .navcopy li a {
  display: inline-flex;
  color: var(--primarycolor);
  font-size: 16px;
  margin-left: 20px;
  font-weight: 500;
  text-decoration: underline !important;
}

.navlft .navtc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.navlft .navtc li {
  margin-right: 43px;
  line-height: 1;
  display: flex;
  align-items: center;
}

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

.navlft .navtc li a {
  color: var(--primarycolor);
  text-decoration: underline !important;
  font-weight: 500;
  font-size: 16px;
}

.rotatelogoouter {
  position: relative;
  height: 100%;
}

.logo-mid,
.logo-rotate-mid {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.logo-mid {
  max-width: 147px;
  width: 100%;
}

.logo-mid img {
  width: 100%;
}

.logo-rotate-mid {
  max-width: 380px;
  width: 100%;
}

.logo-rotate-mid img {
  width: 100%;
  -webkit-animation: rotate 20s normal linear infinite;
  animation: rotate 20s normal linear infinite;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }

  25% {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
  }

  50% {
    -webkit-transform: rotate3d(0, 0, 1, 180deg);
    transform: rotate3d(0, 0, 1, 180deg);
  }

  75% {
    -webkit-transform: rotate3d(0, 0, 1, 270deg);
    transform: rotate3d(0, 0, 1, 270deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
    transform: rotate3d(0, 0, 1, 360deg);
  }
}

.header-toggler.show span:first-child {
  transform: rotate(-45deg);
  top: 12px;
}

.header-toggler.show span:nth-child(2) {
  transform: rotate(45deg);
}

.header-toggler.show span:last-child {
  background: transparent;
}

.navlist {
  list-style-type: none;
}

.navlist li {
  /* overflow: hidden; */
  position: relative;
  line-height: 0;
}

.navlist li a {
  overflow: hidden;
}

.navlist li a:hover span,
.navlist li.current-menu-item a span {
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
  display: block;
}

.navlist li a span {
  position: relative;
  display: block;
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
}

.navlist li a span:before {
  content: attr(data-hover);
  color: var(--secondarycolor);
  display: block;
  left: 0;
  top: 100%;
  text-align: center;
  position: absolute;
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.cstnavmenu,
.cstnavmenu ul li {
  line-height: 1.4;
}

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

/* hamburger menu end */

/* mega menu start */
.sub-menu-top-box {
  display: flex;
  background: var(--orange);
  border-radius: 20px;
  padding: 32px 36px 33px 36px;
  margin-bottom: 40px;
}

.sub-menu-top-box i {
  width: 45px;
  min-width: 45px;
}

.sub-menu-top-box-lft {
  width: calc(100% - 45px);
  padding-left: 29px;
}

.sub-menu-top-box-lft span {
  font-size: 26.82px;
  font-weight: 700;
  line-height: 30.58px;
  margin-bottom: 4px;
}

.sub-menu-top-box-lft p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.14;
}

.sub-menu-top-box i img {
  max-height: 50px;
  object-fit: contain;
}

/* mega menu end */
/* header end */

.innovative-card .h4-title {
  margin-bottom: 30px;
  max-width: 270px;
}

.get-blk p {
  margin-bottom: 26px;
}

/* 14-6-24 */
.main-submenu {
  width: 641px;
  background: transparent;
  border: 0;
}

.main-submenu .submenuli {
  /* min-width: 249px;
    max-width: 280px; */
  position: static;
  padding-right: 127px;
}

.submenuli .clickD {
  display: none;
}

.submenuli a > span {
  opacity: 0;
  padding-left: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.submenuli:hover a > span {
  opacity: 1;
}

.innersubmenu-ul {
  width: 272px;
  padding: 20px 20px 32px 20px;
}

.main-submenu .submenuli a,
.main-submenu .submenuli .sub-sub-menu-wrppr {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.14;
  padding-left: 20px;
  display: inline-flex;
  align-items: center;
  color: var(--footer-black);
}

.main-submenu .submenuli a:hover {
  color: var(--blue-clr2);
}

.submenuli:not(:last-child) {
  margin-bottom: 20px;
}

.menu-cls.header-toggler span:first-child {
  transform: none;
  top: 0;
}

.navbar-nav .main-submenu .sub-menu.innersubmenu-ul {
  left: auto;
  top: 155px;
  right: 20px;
  background: var(--light-sky);
  border: 0;
  border-radius: 20px;
  display: block !important;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s all;
}

.submenus-cls {
  list-style-type: none;
  padding-left: 0;
}

.innr-submenu-cont-box {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 14px;
}

.innr-submenu-cont-box-head {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.14;
  color: var(--blue-clr);
  width: calc(100% - 60px);
}

.innersubmenu-ul p {
  font-size: 15px;
  line-height: 1.14;
  color: var(--blue-clr);
}

.innr-submenu-cont-box i {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: var(--blue-clr);
  display: flex;
  align-items: center;
  justify-content: center;
}

.innr-submenu-cont-box i img {
  max-height: 33.6px;
  object-fit: contain;
}

.hdr-products {
  background: var(--white-clr);
  padding: 27px 20px 25px 20px;
  border-radius: 20px;
  width: 100%;
  margin-top: 40px;
}

.hdr-products-head {
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.14;
  margin-bottom: 20px;
  max-width: 280px;
  color: var(--black-clr);
}

.hdr-products-ul {
  display: flex;
  align-items: center;
  list-style-type: none;
  padding-left: 0;
  flex-wrap: wrap;
}

.hdr-products-ul li {
  line-height: 1;
}

.hdr-products-ul li:not(:last-child) {
  margin-right: 20px;
}

.hdr-products-ul li a {
  color: var(--blue-clr);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.14;
}

.hdr-products-ul li a:hover {
  color: var(--orange);
}

.submenuli.current-menu-item .sub-menu.innersubmenu-ul {
  display: block;
}

.submenuli.current-menu-item a span {
  opacity: 1;
}

/* .main-menu-box-wrappers::before {
    content: "";
    position: absolute;
    left: 165px;
    top: -11px;
    width: 25px;
    height: 15px;
    background: url(images/ply2.svg) no-repeat;
    background-size: 25px;
    background-position: top;
  } */
.main-menu-lis > a::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 10px;
  height: 6px;
  background: url(images/ply.svg) center center no-repeat transparent;
  background-size: 10px;
  right: 0;
  top: 52%;
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.main-menu-lis > a {
  padding: 33px 0;
}

.main-menu-box-wrappers {
  background: var(--light-clr);
  padding: 20px 20px 31px 20px;
  border-radius: 30px;
  position: relative;
  min-height: 375px;
}

.main-head.h-light .today-btn-grp .bdr-btn {
  color: var(--footer-black);
  border-color: var(--footer-black);
}

.main-head.h-light .today-btn-grp .bdr-btn:hover {
  color: var(--blue-clr2);
  border-color: var(--light-clr2);
}

.new-navlist li a {
  display: inline-flex;
  align-items: center;
}

.new-navlist li a em {
  padding-left: 20px;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.new-navlist li a em img {
  width: 20px;
}

.new-navlist li a:hover {
  color: var(--blue-clr);
}

.new-navlist li a:hover em {
  opacity: 1;
}

/* .main-head.h-light .today-btn-grp .bdr-btn:hover {
    color: var(--blue-clr);
    border-color: var(--blue-clr);
  } */

.close-btn {
  display: none;
  border-radius: 100%;
  border: 1px solid var(--footer-black);
  width: 70px;
  height: 70px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-left: 20px;
  position: relative;
  z-index: 2;
  background: transparent;
  padding: 0;
}

.close-btn:hover {
  border-color: var(--blue-clr);
}

.close-btn img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 14px;
}

.close-btn:hover img {
  filter: brightness(0) saturate(100%) invert(22%) sepia(61%) saturate(5585%)
    hue-rotate(244deg) brightness(89%) contrast(110%);
  -webkit-filter: brightness(0) saturate(100%) invert(22%) sepia(61%)
    saturate(5585%) hue-rotate(244deg) brightness(89%) contrast(110%);
  -moz-filter: brightness(0) saturate(100%) invert(22%) sepia(61%)
    saturate(5585%) hue-rotate(244deg) brightness(89%) contrast(110%);
}

.main-head.h-light .close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-nav .main-menu-lis .main-menu-box-wrappers::before {
  content: "";
  position: absolute;
  top: -11px;
  width: 25px;
  height: 15px;
  background: url(images/ply2.svg) no-repeat;
  background-size: 25px;
  background-position: top;
}

.navbar-nav .main-menu-lis:nth-child(1) .main-menu-box-wrappers::before {
  left: 166px;
}

.navbar-nav .main-menu-lis:nth-child(2) .main-menu-box-wrappers::before {
  left: 343px;
}

.main-head.h-light .main-submenu {
  z-index: -1;
}

.nvrt-top-ss {
  display: none;
}

.one-icon-box img {
  max-height: 84px;
  object-fit: contain;
}

.save-lft i img {
  max-height: 60px;
  object-fit: contain;
}

.d-none-cls,
.main-head.h-light .close-btn.nvrtbtn {
  display: none;
}

.mbl-navbar {
  display: none;
}

.why-icustoms-sld-img-wpr img {
  width: 100%;
}

.mbl-fancybox-cls {
  display: none;
}

/* 14-6-24 */

/* 18-6-24 */
.new-navlist li a {
  position: relative;
  padding-right: 40px;
}

.new-navlist li a:hover::after {
  opacity: 1;
}

.new-navlist li a::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: url(images/blue-arw.svg) no-repeat;
  background-size: 20px;
  background-position: right center;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}

.submenuli > a.active::after,
.submenuli > a::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 30px;
  height: 20px;
  background: url(images/blue-arw.svg) center center no-repeat transparent;
  background-size: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transform: rotate(0);
  left: 10px;
  opacity: 0;
}

.submenuli a span {
  display: none;
}

.submenuli a.active::after,
.submenuli a:hover::after {
  opacity: 1;
}

.submenuli a {
  position: relative;
}

.new-navlist {
  padding-left: 0;
}

.features-list li,
.innovative-blk .sec-head p {
  color: var(--footer-black);
}

.copy-symbol {
  font-size: 23px;
  padding: 0 10px 0 31px;
  font-weight: 600;
}

.main-submenu .innersubmenu-ul a,
.main-submenu .innersubmenu-ul .sub-sub-menu-wrppr {
  display: block;
  padding: 20px 20px 25px 20px;
  width: 100%;
  height: 100%;
}

.innersubmenu-ul {
  padding: 0;
}

.submenuli .innersubmenu-ul {
  padding-top: 0;
}

/* 18-6-24 */

/* 08.07.24 start */

.solutions-blk .cmn-sec-head h2 {
  margin-bottom: 0;
}

.solutions-blk .cmn-sec-head h2 {
  margin-bottom: 10px;
}

.solutions-blk .cmn-sec-head {
  margin-bottom: 143px;
}

.solutions-blk .cmn-sec-head p {
  font-size: 40px;
}

.solutions-navigation:nth-child(3) .solutions-acc-button h3 {
  max-width: 100% !important;
}

.menu-list li {
  line-height: 1;
}

/* 08.07.24 end */

/* 09.07.24 start */

.main-banner.innr-bnnr-sec {
  /* padding: 364px 0 195px; */
  padding: 275px 0 132px;
  z-index: 1;
}

.ban-blks-lft.innr-bnnr-content {
  padding-top: 0;
}

.ban-blks-lft.innr-bnnr-content h1 {
  display: flex;
  align-items: center;
  margin-bottom: 45px;
}

.ban-blks-lft h1 i {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--orange);
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  margin-right: 30px;
}

.ban-blks-lft h1 i img {
  width: 90%;
}

.white-btn {
  background-color: var(--white-clr);
  color: var(--blue-clr2);
}

.white-btn:hover {
  color: var(--blue-clr2);
}

.cmn-btn.white-btn::after {
  background-color: var(--orange);
}

.innr-bnnr-content .ban-para {
  margin-bottom: 128px;
}

.unlimit-sec {
  padding-top: 150px;
  padding-bottom: 200px;
  background-color: var(--light-white);
}

.unlimit-head {
  max-width: 1090px;
  margin-bottom: 97px;
}

.unlimit-head p {
  max-width: 688px;
  color: var(--footer-black);
}

.innovative-sec {
  background-color: var(--footer-black);
  color: var(--white-clr);
}

.innovative-sec .sec-head {
  margin-bottom: 100px;
}

.innovative-sec .sec-head > * {
  color: var(--light-white);
}

.innovative-sec .sec-head h2 {
  margin-bottom: 30px;
}

.innovative-sec .sec-head .txt-dwnshadow {
  display: block;
  max-width: 772px;
  width: 100%;
  margin: 0 auto;
}

.innovative-sec .sec-head .txt-dwnshadow img {
  width: 100%;
}

.unlimit-rw {
  --bs-gutter-x: 78px;
  align-items: center;
}

.unlimit-left-col {
  width: 41%;
  flex: 0 0 auto;
}

.unlimit-right-col {
  width: 59%;
  flex: 0 0 auto;
}

.unlimit-wrppr {
  position: relative;
  z-index: 1;
  border-radius: 39px;
  padding: 135px 55px 150px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.unlimit-wrppr .unlimit-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.unlimit-wrppr .unlimit-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.unlimit-wrppr .card-icon {
  width: 97px;
  margin-bottom: 40px;
}

.unlimit-wrppr .card-icon img {
  width: 100%;
}

.unlimit-wrppr h3 {
  color: var(--light-white);
  max-width: 425px;
  min-height: 95px;
}

.unlimit-wrppr ul {
  color: var(--light-white);
  margin-bottom: 60px;
}

.unlimit-rght-wrrp {
  width: 100%;
  position: relative;
}

.unlimit-rght-wrrp figure {
  width: 100%;
  margin-bottom: 0;
}

.unlimit-rght-wrrp figure img {
  width: 100%;
}

.unlimit-rght-wrrp .unlimit-shpe {
  max-width: 370px;
  width: 100%;
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 1;
}

.unlimit-rght-wrrp .unlimit-shpe img {
  width: 100%;
}

.innovative-rw {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}

.innovative-wrppr {
  width: 100%;
  background-color: var(--black-clr2);
  border-radius: 30px;
  position: relative;
  z-index: 1;
  padding: 66px 60px 60px;
}

.innovative-wrppr .innovative-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  position: absolute;
  top: 45px;
  right: 38px;
}

.innovative-wrppr h3 {
  font-size: 50px;
  font-weight: 300;
  color: var(--light-clr);
  line-height: 1.15;
  margin-bottom: 62px;
}

.innovative-wrppr h3 span {
  font-weight: 500;
}

.innovative-wrppr p {
  /* margin-bottom: 125px; */
  color: var(--light-white);
}

.coming-soon-btn {
  border: none;
  background-color: var(--footer-black);
  pointer-events: none;
}

.innov-btn-wrppr {
  padding-top: 100px;
  text-align: center;
}

.testimonial-sec {
  padding-top: 244px;
  padding-bottom: 200px;
}

.testimonial-sec .sec-head {
  margin-bottom: 89px;
}

.testi-icon-main {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.testi-icon-bx {
  width: 112px;
  height: 112px;
  border-radius: 15px;
  background-color: var(--white-clr);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 21px;
}

.testi-icon-bx i {
  width: 100%;
  height: 100%;
  display: block;
  background-color: var(--light-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.testi-icon-bx i img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-icon-bx:not(:last-child) {
  margin-right: 20px;
}

.testi-icon-bx.orange-bx {
  background-color: var(--orange);
  width: 244px;
}

.testi-icon-bx.orange-bx i {
  background-color: transparent;
  border-radius: 0px;
}

.testi-icon-bx.orange-bx i img {
  width: 100%;
  height: auto;
}

.feed-main {
  width: 100%;
  max-width: 775px;
  margin: 0 auto;
}

.feed-each-item {
  text-align: center;
}

.feed-content p {
  font-size: 40px;
  color: var(--footer-black);
  line-height: 1.15;
  margin-bottom: 0;
}

.feed-content {
  margin-bottom: 40px;
}

.feed-user-wrppr p {
  font-size: 20px;
  color: var(--footer-black);
}

.feed-user-wrppr .feed-user {
  color: var(--footer-black);
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1;
}

.manage-sec {
  background-color: var(--light-sky);
  padding-bottom: 145px;
  padding-top: 100px;
}

.manage-rw {
  align-items: center;
}

.manage-img-wrppr {
  padding-right: 94px;
  display: flex;
  justify-content: flex-end;
}

.manage-img-wrppr-innr {
  padding-top: 30px;
  padding-right: 115px;
  position: relative;
}

.manage-img-big {
  width: 100%;
  max-width: 300px;
}

.manage-img-smll {
  position: absolute;
  top: 55%;
  right: 0;
  z-index: 1;
  transform: translateY(-50%);
  max-width: 150px;
  width: 100%;
}

.manage-img-vsmll {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 85px;
  max-width: 100px;
  width: 100%;
}

.manage-img-big img,
.manage-img-vsmll img,
.manage-img-smll img {
  width: 100%;
}

.manage-content p {
  font-weight: 300;
  margin-bottom: 10px;
}

.manage-content h2 {
  margin-bottom: 50px;
}

.faq-sec {
  padding: 200px 0;
  background-color: var(--white-clr);
}

.faq-sec .sec-head {
  margin-bottom: 95px;
}

.each-faq {
  border-bottom: 1px solid var(--black-clr);
}

.faq-hdng {
  padding: 43px 30px 43px 110px;
  position: relative;
  line-height: 1.15;
  color: var(--footer-black);
  font-size: 40px;
  margin-bottom: 0;
  transition: 0.5s all;
  cursor: pointer;
}

.faq-hdng::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(images/up-icon.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px;
  border: 1px solid var(--footer-black);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  /* transition: .5s ease-in-out; */
}

.faq-ans {
  max-width: 1230px;
  width: 100%;
  display: none;
  padding: 0 110px 60px;
}

.faq-ans p {
  font-weight: 300;
  line-height: 1.4;
  color: var(--footer-black);
}

.faq-hdng.active {
  color: var(--blue-clr2);
}

.faq-hdng.active::before {
  background-image: url(images/minus-icon.svg);
  border-color: var(--blue-clr2);
}

.unlimit-wrppr .each-item-wrppr-outtr {
  display: none;
}

.unlimit-nav-btn-main {
  padding-top: 56px;
}

.unlimit-navfor-sldier .each-item-wrppr-outtr {
  padding: 0 10px;
}

.each-item-wrppr {
  width: 100%;
  height: 100%;
  padding: 30px 40px;
  border-radius: 20px;
  background-color: var(--white-clr);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  transition: 0.8s all;
  cursor: pointer;
}

.each-item-wrppr i {
  flex: 0 0 auto;
  width: 96px;
  transition: 0.5s all;
}

.each-item-wrppr p {
  flex: 1;
  color: var(--footer-black);
  font-size: 35px;
  font-weight: 300;
  transition: 0.8s all;
  margin-bottom: 0;
}

.each-item-wrppr-outtr.slick-current .each-item-wrppr {
  background-color: var(--light-clr2);
}

.each-item-wrppr-outtr.slick-current .each-item-wrppr i {
  mix-blend-mode: multiply;
}

.each-item-wrppr-outtr.slick-current .each-item-wrppr p {
  font-weight: 500;
}

/* 09.07.24 end */

/* 10.07.24 start */

.idp-img-wrppr {
  width: 100%;
  max-width: 772px;
  margin-left: auto;
}

.idp-img-wrppr figure {
  width: 100%;
  margin-bottom: 0;
}

.idp-img-wrppr img {
  width: 100%;
}

.main-banner.innr-bnnr-sec.idp-innr-bnnr {
  padding: 246px 0 135px;
}

.idp-innr-bnnr .ban-blks-lft.innr-bnnr-content {
  padding-top: 30px;
  max-width: 560px;
}

.idp-innr-bnnr .innr-bnnr-content .ban-para {
  margin-bottom: 95px;
  max-width: 555px;
}

.idp-innov-wrppr {
  padding: 100px 165px 100px 60px;
  min-height: 756px;
}

.idp-innov-wrppr .innovative-icon {
  width: 100px;
  height: 100px;
  background-color: var(--footer-black);
  padding: 20px;
  top: 40px;
  right: 40px;
}

.idp-innov-wrppr .innovative-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.idp-innov-wrppr h3 {
  max-width: 315px;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 60px;
}

.idp-innov-wrppr ul {
  margin-bottom: 0;
}

.idp-innov-wrppr li {
  margin-bottom: 35px;
}

.innovative-sec .sec-head.idp-innov-head {
  margin-bottom: 188px;
}

.idp-innov-img-wrppr {
  max-width: 680px;
  width: 100%;
  margin-left: auto;
  margin-top: -62px;
}

.idp-innov-img-wrppr figure {
  width: 100%;
  margin-bottom: 0;
}

.idp-innov-img-wrppr figure img {
  width: 100%;
}

.idp-innov-rw:not(:last-child) {
  margin-bottom: 165px;
}

.idp-innov-rw:nth-child(even) {
  flex-direction: row-reverse;
}

.idp-innov-rw:nth-child(2) {
  align-items: center;
}

.idp-innov-img-wrppr.secnd-img-idp {
  max-width: 640px;
  margin-left: 0;
  margin-right: auto;
  position: relative;
  margin-top: 0;
}

.idp-innov-img-wrppr.secnd-img-idp ul {
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.idp-innov-img-wrppr.secnd-img-idp li:not(:last-child) {
  margin-bottom: 20px;
}

.idp-innov-img-wrppr.secnd-img-idp li {
  display: inline-flex;
  align-items: center;
  font-size: 25px;
  font-weight: bold;
  color: var(--blue-clr2);
  background-color: rgba(243, 249, 255, 0.9);
  position: relative;
  min-height: 80px;
  padding: 25px 30px 25px 100px;
  border-radius: 50px;
}

.idp-innov-img-wrppr.secnd-img-idp li i {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 100%;
  padding: 18px;
  background-color: var(--light-clr2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.idp-innov-rw:nth-child(3) .idp-innov-img-wrppr {
  max-width: 590px;
  margin-top: -40px;
}

.benefit-idp-sec {
  padding-top: 200px;
  padding-bottom: 270px;
}

.benefit-idp-rw {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -15px 200px;
}

.benefit-head-col {
  width: 30%;
  padding: 0 15px;
}

.benefit-slider-col {
  width: 70%;
  padding: 0 15px;
}

.benefit-head-innr {
  max-width: 377px;
}

.benefit-head-innr .sec-head {
  margin-bottom: 40px;
}

.benefit-arrw-wrppr {
  display: flex;
}

.cmn-benefit-arrw {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid var(--footer-black);
}

.cmn-benefit-arrw:not(:last-child) {
  margin-right: 20px;
}

.cmn-benefit-arrw img {
  transition: 0.5s all;
}

.cmn-benefit-arrw:hover {
  background-color: var(--blue-clr2);
  border-color: var(--blue-clr2);
}

.cmn-benefit-arrw:hover img {
  filter: brightness(0) invert(1);
}

.benefit-each-item {
  padding: 0 10px;
  height: inherit !important;
}

.benefit-card-wrppr {
  padding: 100px 40px 40px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
}

.benefit-card-wrppr .benefit-icon {
  display: flex;
  justify-content: center;
  height: 150px;
  margin-bottom: 66px;
  mix-blend-mode: multiply;
}

.benefit-card-wrppr .benefit-icon img {
  height: 100%;
  object-fit: contain;
}

.benefit-card-wrppr h3 {
  color: var(--footer-black);
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 30px;
}

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

.benefit-slider .slick-list {
  padding-left: 0 !important;
  margin: 0 -10px;
}

.benefit-slider-outtr {
  margin-right: calc(((100vw - 1580px) / 2) * -1);
}

.test-doc-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: var(--blue-clr2);
  border-radius: 20px;
  padding: 80px 113px 80px 105px;
}

.test-doc-content {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-right: 43px;
}

.test-doc-btn-wrppr {
  padding-left: 43px;
  flex: 0 0 auto;
}

.test-doc-btn-wrppr .cmn-btn {
  min-width: 309px;
}

.test-doc-icon {
  width: 136px;
  flex: 0 0 auto;
}

.test-doc-icon img {
  width: 100%;
}

.test-doc-content .test-doc-info {
  padding-left: 82px;
  flex: 1;
}

.test-doc-content .test-doc-info p {
  margin-bottom: 10px;
  font-weight: 300;
  color: var(--light-white);
}

.test-doc-content .test-doc-info h3 {
  font-size: 70px;
  font-weight: bold;
  color: var(--light-white);
  line-height: 1.15;
  margin-bottom: 0;
}

.idp-contact-sec {
  padding: 200px 0;
  background-color: var(--light-sky);
}

.idp-contact-main {
  background-color: var(--black-clr2);
  border-radius: 20px;
  padding: 70px;
}

.idp-contact-content-wrppr .sec-head {
  max-width: 505px;
  margin-bottom: 55px;
}

.idp-contact-content-wrppr .sec-head h2,
.idp-contact-content-wrppr .sec-head p {
  color: var(--light-white);
}

.idp-contact-content-wrppr .sec-head h2 {
  margin-bottom: 60px;
}

.idp-contact-content-wrppr ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.idp-contact-content-wrppr li {
  font-size: 20px;
  line-height: 1;
  color: var(--light-white);
  padding-left: 40px;
  margin-bottom: 16px;
  position: relative;
}

.idp-contact-content-wrppr li:last-child {
  margin-bottom: 0;
}

.idp-contact-content-wrppr li::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: url(images/white-tick.svg) center no-repeat;
  background-size: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.contact-frm-rw {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
  margin-bottom: 40px;
}

.frm-btn-check-rw {
  --bs-gutter-x: 20px;
  align-items: center;
}

.frm-field-wrppr input,
.frm-field-wrppr select {
  border-radius: 10px;
  background-color: var(--white-clr);
  padding: 0 20px;
  font-size: 20px;
  color: var(--footer-black);
  transition: 0.5s all;
  border: 1px solid var(--white-clr);
  height: 60px;
}

.frm-field-wrppr input:focus,
.frm-field-wrppr select:focus,
.frm-field-wrppr textarea:focus {
  border-color: var(--orange);
}

.frm-field-wrppr textarea {
  border-radius: 10px;
  background-color: var(--white-clr);
  font-size: 20px;
  color: var(--footer-black);
  transition: 0.5s all;
  height: 180px;
  padding: 20px;
  resize: none;
}

.frm-field-wrppr input::placeholder,
.frm-field-wrppr textarea::placeholder {
  color: var(--footer-black);
  opacity: 1;
}

.frm-btn-check-wrappr .form_input_check label {
  padding-left: 40px;
}

.frm-btn-check-wrappr .form_input_check label span {
  display: block;
  max-width: 210px;
  width: 100%;
  font-size: 20px;
  color: var(--white-clr);
  line-height: 1.1;
}

.frm-btn-check-wrappr .form_input_check label span a {
  color: var(--orange);
  text-decoration: underline !important;
  text-underline-offset: 5px;
}

.frm-btn-check-wrappr
  .form_input_check
  label
  input[type="checkbox"]
  + span::before {
  width: 20px;
  height: 20px;
  border: 1px solid var(--white-clr);
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.frm-btn-check-wrappr
  .form_input_check
  label
  input[type="checkbox"]
  + span::after {
  width: 20px;
  height: 20px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: url(images/white-tick-only.svg) center no-repeat;
  background-size: 12px;
  background-color: var(--orange);
}

.frm-btn-check-wrappr
  .form_input_check
  label
  input[type="checkbox"]:checked
  + span:after {
  opacity: 1;
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
}

.frm-btn-check-wrappr input[type="submit"] {
  width: 100%;
  background-color: var(--orange);
  border-radius: 10px;
  font-size: 20px;
  font-weight: bold;
  color: var(--white-clr);
  line-height: 1;
  height: 60px;
}

.frm-btn-check-wrappr input[type="submit"]:hover {
  background-color: var(--light-clr2);
  color: var(--blue-clr2);
}

.idp-unlimit-sec .unlimit-head {
  max-width: 890px;
  margin-bottom: 97px;
}

.idp-unlimit-sec .unlimit-head h2 {
  max-width: 673px;
  margin-bottom: 69px;
}

.idp-unlimit-sec .unlimit-head p,
.incts-unlimit-sec .unlimit-head p {
  max-width: 100%;
}

.incts-unlimit-sec .unlimit-head {
  max-width: 830px;
  margin-bottom: 97px;
}

.incts-unlimit-sec .unlimit-head h2 {
  max-width: 730px;
  margin-bottom: 69px;
}

.unlimit-wrppr.incts-unlimit-wrppr h3 {
  max-width: 100%;
}

.innovative-wrppr.incts-innov-wrppr {
  padding: 83px 175px 84px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 756px;
}

.incts-innov-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background-color: var(--blue-clr2);
  border-radius: 50%;
  font-size: 46px;
  color: var(--white-clr);
  line-height: 1;
  font-weight: bold;
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: -1;
}

.incts-innov-icon .innr-shpe {
  position: absolute;
  content: "";
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  /* background-image: conic-gradient(from 0deg, var(--light-blue1) 0deg var(--data-val), var(--blue-clr2) var(--data-val)); */
  top: 12px;
  right: 12px;
  z-index: -1;
  border-radius: 100px;
}

/* 
.incts-innov-icon.secnd::before,
.innovative-rw.incts-innov-rw:nth-child(2) .incts-innov-icon::before {
    position: absolute;
    content: "";
    width: calc(50% - 12px);
    height: calc(100% - 24px);
    background-color: var(--light-blue1);
    top: 12px;
    right: 12px;
    z-index: -1;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
}

.incts-innov-icon.third::before,
.innovative-rw.incts-innov-rw:nth-child(3) .incts-innov-icon::before {
    position: absolute;
    content: "";
    width: calc(50% - 12px);
    height: calc(100% - 24px);
    background-color: var(--light-blue1);
    top: 12px;
    right: 12px;
    z-index: -1;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
}

.incts-innov-icon.third::after,
.innovative-rw.incts-innov-rw:nth-child(3) .incts-innov-icon::after {
    position: absolute;
    content: "";
    width: calc(50% - 12px);
    height: calc(50% - 12px);
    background-color: var(--light-blue1);
    bottom: 12px;
    left: 12px;
    z-index: -1;
    border-bottom-left-radius: 100px;
}

.incts-innov-icon.fourth::before,
.innovative-rw.incts-innov-rw:nth-child(4) .incts-innov-icon::before {
    position: absolute;
    content: "";
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    background-color: var(--light-blue1);
    top: 50%;
    left: 50%;
    z-index: -1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
} */

.incts-innov-rw {
  align-items: center;
  --bs-gutter-x: 20px;
}

.incts-innov-rw:not(:last-child) {
  margin-bottom: 168px;
}

.incts-innov-rw:nth-child(even) {
  flex-direction: row-reverse;
}

.innovative-wrppr.incts-innov-wrppr h3 {
  font-size: 50px;
  line-height: 1;
  margin-bottom: 90px;
  font-weight: bold;
  color: var(--white-clr);
}

.innovative-wrppr.incts-innov-wrppr ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.innovative-wrppr.incts-innov-wrppr li:not(:last-child) {
  margin-bottom: 35px;
}

.incts-innov-img-wrppr {
  display: flex;
  align-items: center;
  justify-content: center;
}

.incts-innov-img-wrppr figure {
  margin-bottom: 0;
}

.incts-feed-sec {
  padding: 200px 0;
}

.each-faq:last-child {
  border-bottom: none;
}

/* 10.07.24 end */

/* 11.07.24 start */

.custm-agent-bnnr-sec {
  background-color: transparent;
}

.custm-agent-bnnr-sec .banbg-img {
  mix-blend-mode: inherit;
}

.custm-agent-bnnr-sec .ban-blks-lft h1,
.custm-agent-bnnr-sec .ban-blks-lft p {
  color: var(--footer-black);
}

.blck-btn {
  background-color: var(--footer-black);
}

.custm-agent-bnnr-sec .innr-bnnr-content .ban-para {
  /* max-width: 520px; */
  max-width: 570px;
}

.page-template-integrations .custm-agent-bnnr-sec .innr-bnnr-content .ban-para {
  max-width: 820px;
}

.custom-agent-page .navbar-brand img {
  filter: brightness(0);
}

.custom-agent-page .main-head .bdr-btn {
  color: var(--footer-black);
  border-color: var(--footer-black);
}

.cutm-agent-wrppr.unlimit-wrppr h3 {
  max-width: 100%;
}

.unlimit-wrppr.cutm-agent-wrppr ul {
  margin-bottom: 87px;
  font-size: 24px;
}

.custm-agent-unlimit-sec .unlimit-head {
  max-width: 900px;
}

.custm-agent-innov-rw .innovative-wrppr {
  padding: 180px 40px 75px 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.custm-agent-innov-rw .innovative-wrppr .bdr-btn {
  min-width: inherit;
  padding: 18px 54px;
  margin-top: auto;
}

.custm-agent-innov-sec {
  padding-bottom: 288px;
}

.custm-agent-benefit-sec {
  padding-bottom: 200px;
}

.custm-agent-benefit-sec .test-doc-content {
  padding-right: 0;
}

.custm-agent-benefit-sec .test-doc-icon {
  width: 120px;
}

.custm-agent-benefit-sec .test-doc-btn-wrppr .cmn-btn {
  min-width: 245px;
}

.custm-agent-benefit-sec .test-doc-btn-wrppr {
  padding-top: 45px;
}

.custm-agent-benefit-sec .test-doc-main {
  margin-bottom: 200px;
}

.custm-agent-benefit-sec .benefit-idp-rw {
  margin-bottom: 0;
}

.bdr-btn.blck {
  color: var(--footer-black);
  border-color: var(--footer-black);
}

.bdr-btn.blck:hover {
  background-color: var(--light-clr2);
  border-color: var(--light-clr2);
  color: var(--blue-clr2);
}

.flag-all-wrppr {
  width: 100%;
  max-width: 510px;
  display: flex;
  align-items: center;
  margin-left: auto;
}

.flag-all-wrppr .flag-wrppr {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
}

.flag-all-wrppr .flag-wrppr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.setting-icon {
  width: 150px;
  height: 150px;
  background-color: var(--blue-clr2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 33px;
  border-radius: 50%;
  flex: 0 0 auto;
  margin: 0 -20px;
  z-index: 1;
}

.custm-agent-manage-sec {
  padding: 140px 0;
}

.custm-agent-idp-sec {
  background-color: transparent;
}

.custm-agent-idp-sec .idp-contact-main {
  background-color: var(--blue-clr2);
}

.custm-agent-idp-sec .frm-btn-check-rw {
  justify-content: center;
}

.custm-agent-idp-sec .idp-contact-content-wrppr .sec-head {
  max-width: 560px;
}

.custm-declear-sec {
  padding: 200px 0;
  background-color: var(--light-sky);
}

.custm-declear-rw {
  align-items: center;
}

.custm-declear-txt-wrppr .sec-head {
  margin-bottom: 162px;
}

.slider-countr-wrppr {
  display: flex;
  flex-wrap: wrap;
}

.slider-countr-wrppr .counter-numbers-text {
  font-size: 20px;
  color: var(--footer-black);
  opacity: 0.5;
  flex: 0 0 auto;
}

.slider-countr-wrppr .counter-amin {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 30px;
  flex: 0 0 auto;
  align-items: center;
}

.slider-countr-wrppr .count-progress-bar-outer {
  flex: 1;
  width: 3px;
  overflow: hidden;
  position: relative;
}

.count-progress-bar {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(243, 249, 255, 0) 0%,
    rgba(70, 66, 240, 1) 50%,
    rgba(243, 249, 255, 0) 100%
  );
  transform: translateY(-35%);
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s all;
}

.othr-custm-declear-slidr {
  padding-left: 61px;
  flex: 1;
  min-height: 590px;
}

.custm-declear-slidr {
  display: none;
}

.product-navigation {
  margin-bottom: 20px;
}

.custm-declear-wrappr {
  border-radius: 20px;
  position: relative;
  transition: 0.5s all;
}

.custm-declear-wrappr h3 {
  color: var(--footer-black);
  font-size: 40px;
  margin-bottom: 0;
  opacity: 0.1;
  line-height: 1;
  transition: 0.5s all;
  display: inline-block;
  cursor: pointer;
}

.custm-declear-wrappr p {
  margin-bottom: 0;
  display: none;
}

.custm-declear-wrappr .span-icon {
  width: 40px;
  height: 40px;
  background-color: var(--blue-clr2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  right: 20px;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s all;
  padding: 8px;
}

.product-navigation.active .custm-declear-wrappr {
  /* padding: 30px 40px; */
  /* background-color: var(--light-white); */
  margin: 40px 0;
}

.product-navigation.active .custm-declear-wrappr h3 {
  opacity: 1;
  margin-bottom: 25px;
}

.product-navigation.active .custm-declear-wrappr p {
  display: block;
  color: var(--footer-black);
}

.product-navigation.active .custm-declear-wrappr .span-icon {
  visibility: visible;
  opacity: 1;
}

.unlimit-rght-wrrp svg circle#progressCircle.trigger {
  stroke-dasharray: 119;
  stroke-dashoffset: 119;
  -webkit-animation: dash 6s linear infinite;
  animation: dash 6s linear infinite;
}

@-webkit-keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

.unlimit-rght-wrrp > svg {
  height: 100px;
  transform: rotate(-90deg);
  width: 100px;
}

.progress-bar__background {
  fill: none;
  stroke: #e2eff0;
  stroke-width: 0.3;
}

.progress-bar__progress {
  fill: none;
  stroke: #ffffff;
  /* stroke: #78bec7; */
  stroke-dasharray: 100 100;
  stroke-dashoffset: 100;
  stroke-linecap: round;
  stroke-width: 1.1;
  transition: stroke-dashoffset 1s ease-in-out;
}

.unlimit-navfor-sldier {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.unlimit-navfor-sldier a {
  width: calc(33.33% - 14px);
}

.unlimit-navfor-sldier a.active .each-item-wrppr {
  background-color: var(--light-clr2);
}

.unlimit-navfor-sldier a.active .each-item-wrppr p {
  font-weight: 500;
}

.unlimit-navfor-sldier a .each-item-wrppr i {
  background-color: var(--white-clr);
}

.unlimit-navfor-sldier a.active .each-item-wrppr i {
  background-color: var(--light-clr2);
  transition: all ease-in-out 0.5s;
}

.unlimit-navfor-sldier a .each-item-wrppr i img {
  mix-blend-mode: multiply;
}

.svg-wrppr {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 100px;
  z-index: 1;
}

.svg-wrppr .dwn-arrw {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* 11.07.24 end */

/* 15.07.24 start */

.sec-head.unlimit-head h2 {
  font-size: 90px;
  line-height: 1.15;
}

.benefit-card-wrppr p {
  color: var(--footer-black);
}

.innovative-wrppr.incts-innov-wrppr li {
  color: var(--white-clr);
}

.innov-btn-wrppr,
.all-btn-wrpp {
  display: flex;
  justify-content: center;
}

.custm-declear-txt-wrppr .btn-wrppr,
.sec-head.manage-content .btn-all-wrppr {
  display: flex;
}

.innov-btn-wrppr > *:not(:last-child),
.all-btn-wrpp > *:not(:last-child),
.custm-declear-txt-wrppr .btn-wrppr > *:not(:last-child),
.sec-head.manage-content .btn-all-wrppr > *:not(:last-child) {
  margin-right: 20px;
}

.slider-countr-wrppr .counter-numbers-text.active {
  margin-bottom: 5px;
}

.slider-countr-wrppr .counter-numbers-text.total {
  margin-top: 5px;
}

.unlimit-wrppr ul li {
  font-size: 24px;
}

.incts-cmn-faq .faq-ans {
  max-width: 100% !important;
  padding-right: 132px;
}

.idp-innov-wrppr.idp-innov-wrppr li {
  color: var(--light-clr);
}

.custm-agent-innov-rw .innovative-wrppr h3,
.custm-agent-innov-rw .innovative-wrppr p {
  color: var(--light-white);
}

/* 15.07.24 end */

/* AD 18/07/2024 */
.idp-contact-frm-wrppr {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.idp-contact-frm-wrppr #gform_confirmation_wrapper_1 {
  margin: auto;
}

.idp-contact-frm-wrppr #gform_confirmation_message_1 {
  color: var(--white-clr);
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
  height: 100%;
}

.gform_wrapper.gravity-theme form input[type="text"],
.gform_wrapper.gravity-theme form input[type="tel"],
.gform_wrapper.gravity-theme form input[type="password"],
.gform_wrapper.gravity-theme form input[type="email"],
.gform_wrapper.gravity-theme form select {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none !important;
  border-radius: 10px;
  background-color: var(--white-clr);
  padding: 0 20px;
  font-size: 20px;
  color: var(--footer-black);
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
  border: 1px solid var(--white-clr);
  height: 60px;
}

.gform_wrapper.gravity-theme form input[type="text"]:focus,
.gform_wrapper.gravity-theme form input[type="tel"]:focus,
.gform_wrapper.gravity-theme form input[type="password"]:focus,
.gform_wrapper.gravity-theme form input[type="email"]:focus,
.gform_wrapper.gravity-theme form textarea:focus {
  border-color: var(--orange);
}

.gform_wrapper.gravity-theme form textarea {
  border-radius: 10px;
  background-color: var(--white-clr);
  font-size: 20px;
  color: var(--footer-black);
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
  height: 180px;
  padding: 20px;
  resize: none;
}

.gform_wrapper.gravity-theme form input::-webkit-input-placeholder,
.gform_wrapper.gravity-theme form textarea::-webkit-input-placeholder {
  color: var(--footer-black);
  opacity: 0.3;
}

.gform_wrapper.gravity-theme form input::-moz-placeholder,
.gform_wrapper.gravity-theme form textarea::-moz-placeholder {
  color: var(--footer-black);
  opacity: 0.3;
}

.gform_wrapper.gravity-theme form input:-ms-input-placeholder,
.gform_wrapper.gravity-theme form textarea:-ms-input-placeholder {
  color: var(--footer-black);
  opacity: 0.3;
}

.gform_wrapper.gravity-theme form input::-ms-input-placeholder,
.gform_wrapper.gravity-theme form textarea::-ms-input-placeholder {
  color: var(--footer-black);
  opacity: 0.3;
}

.gform_wrapper.gravity-theme form input::placeholder,
.gform_wrapper.gravity-theme form textarea::placeholder {
  color: var(--footer-black);
  opacity: 0.3;
}

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

.gform_wrapper.gravity-theme form .gform_footer {
  margin-top: 40px;
  padding: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.gform_wrapper.gravity-theme form .gform_footer input[type="submit"] {
  width: 100%;
  max-width: 218px;
  background-color: var(--orange);
  border-radius: 10px;
  font-size: 20px;
  font-weight: bold;
  color: var(--white-clr);
  line-height: 1;
  height: 60px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.gform_wrapper.gravity-theme form .gform_footer input[type="submit"]:hover {
  background-color: var(--light-clr2);
  color: var(--blue-clr2);
}

/* AD 18/07/2024 END */
/* AD 19/07/2024 */
.gform_wrapper.gravity-theme
  form
  input[type="checkbox"]
  + label.gform-field-label {
  position: relative;
  margin: 0;
  padding-left: 40px;
  display: inline-block;
  width: 100%;
  font-size: 20px;
  color: var(--white-clr);
  line-height: 1.1;
  cursor: pointer;
}

.gform_wrapper.gravity-theme
  form
  input[type="checkbox"]
  + label.gform-field-label::before {
  content: "";
  position: absolute;
  background-color: transparent;
  width: 20px;
  height: 20px;
  border: 1px solid var(--white-clr);
  border-radius: 50%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.gform_wrapper.gravity-theme
  form
  input[type="checkbox"]
  + label.gform-field-label::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  background: url(images/white-tick-only.svg) center no-repeat;
  background-size: 12px;
  background-color: var(--orange);
  opacity: 0;
  -webkit-transform: translateY(-50%) scale(0);
  -ms-transform: translateY(-50%) scale(0);
  transform: translateY(-50%) scale(0);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.gform_wrapper.gravity-theme
  form
  input[type="checkbox"]:checked
  + label.gform-field-label::after {
  opacity: 1;
  -webkit-transform: translateY(-50%) scale(1);
  -ms-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
}

.gform_wrapper.gravity-theme
  form
  input[type="checkbox"]
  + label.gform-field-label
  a {
  color: var(--orange);
  text-decoration: underline !important;
  text-underline-offset: 5px;
}

.gform_wrapper.gravity-theme form#gform_2 #field_2_8 input[type="checkbox"],
.gform_wrapper.gravity-theme
  form#gform_2
  input[type="checkbox"]
  + label.gform-field-label
  .gfield_required {
  display: none;
}

.error404 .error-wraper.cmn-gap {
  padding: 300px 0 200px;
  text-align: center;
}

.error404 .error-wraper.cmn-gap .error-btn {
  margin-top: 30px;
}

.tnc-sec {
  padding: 100px 0;
}

/* AD 19/07/2024 END */

/* 22/07/2024 work start */
.blog-ban-sec {
  background: transparent;
}

.blog-ban-sec h1 {
  color: #1e1e1e;
}

.blog-ban-sec .ban-para > * {
  color: #1e1e1e;
}

.blog-body-area {
  padding: 100px 0px;
}

.filbtn.cmn-btn {
  min-width: 166px;
  height: 60px;
  border: 0px;
}

.categlist {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
}

.blogrgt-catwrpr .categlist {
  margin-top: 20px;
  position: relative;
  display: none;
}

.blogrgt-catwrpr .categlist:before {
  content: "";
  position: absolute;
  top: -28px;
  left: 84px;
  border: 15px solid transparent;
  border-bottom: 15px solid #fff;
}

.blogrgt-catwrpr .categlist ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0px;
  margin: -20px;
}

.blogrgt-catwrpr .categlist li {
  margin: 20px;
}

.blogrgt-catwrpr .categlist li a {
  border: 1px solid #1e1e1e;
  border-radius: 100px;
  display: inline-flex;
  padding: 15px 35px;
  color: #1e1e1e;
  font-size: 20px;
  font-weight: 700;
}

.blogrgt-catwrpr .categlist li a.active,
.blogrgt-catwrpr .categlist li a:hover {
  background: #4642f0;
  border-color: #4642f0;
  color: #fff;
}

.filter-purpose {
  margin-bottom: 60px;
}

.blg-lstimg a img {
  width: 100%;
}

.blg-contbox {
  padding: 20px;
  background: #fff;
  border-radius: 0px 0px 20px 20px;
  flex-grow: 1;
}

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

.innercat-list li a {
  padding: 6px 15px;
  border: 1px solid #000;
  border-radius: 30px;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: capitalize;
  color: #1e1e1e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.innercat-list {
  margin-bottom: 30px;
}

.innercat-list ul {
  margin: -5px;
}

.innercat-list li {
  margin: 5px;
}

.blg-contbox .h2-title {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.3;
}

.date-author-wrap {
  margin-top: 40px;
  text-align: right;
  font-size: 20px;
  font-weight: 400;
  color: #1e1e1e;
}

.blg-lst-wrp {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blg-lst-mainwrpr .row {
  --bs-gutter-y: 50px;
}

.pagination {
  margin-top: 30px;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.page-numbers {
  margin: 10px;
  color: var(--blue-clr);
}

.page-numbers.current {
  color: var(--orange);
}

.blg-contbox a:hover h2 {
  color: var(--orange);
}

.blg-contbox a {
  transition: all 0.3s ease-in-out;
}

.blog_dtls_inner {
  background: #f3f9ff;
  padding: 100px 0px !important;
  min-height: auto;
}

.blog-post-dtls-head {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
}

.blog-post-dtls-head > * {
  font-size: 20px;
  font-weight: 400;
  color: var(--blue-clr);
  border-right: 1px solid var(--blue-clr);
  padding-right: 20px;
  padding-left: 20px;
  margin-bottom: 0px;
}

.blogdtls-user {
  margin: 0px;
}

.blg-prfl-icon {
  width: 45px;
  padding: 0px;
  border: 0px;
}

.blog-post-dtls-head > *:last-child {
  border: 0px;
}

.blg-dtls-cont-wrapr > * {
  margin-bottom: 20px;
  line-height: 1.4;
}

.blg-dtls-cont-wrapr a {
  color: inherit;
  text-decoration: underline !important;
}

.blg-dtls-cont-wrapr a:hover {
  color: var(--orange);
}

.blg-dtls-cont-wrapr h2 {
  font-size: 40px;
  margin-top: 40px;
  line-height: 1.2;
}

.blogDtlsec {
  padding-bottom: 100px;
}

.about-icustom {
  background: #e3eff0;
  border-radius: 20px;
  padding: 50px 25px;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
}

.about-icustom h4 {
  font-size: 30px;
  font-weight: 700;
}

.about-icustom .stsrt-btn {
  margin-top: 40px;
}

.products-sec {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 40px;
}

.productt-box {
  background: #e3eff0;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  margin-bottom: 30px;
}

.productt-box i img {
  width: 45px;
}

.productt-box i {
  flex-shrink: 0;
  margin-right: 15px;
}

.product-top-box-lft span {
  font-size: 26px;
  font-weight: 700;
}

.product-top-box-lft p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
}

.blgpg-lftcol .lower-list li {
  margin-top: 15px;
  list-style: none;
}

.blgpg-lftcol .lower-list ul {
  padding: 0px;
}

.blgpg-lftcol .lower-list li a {
  color: #1e1e1e;
  font-size: 20px;
  font-weight: 500;
  position: relative;
}

.blgpg-lftcol .lower-list li a:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: url(images/blue-arw.svg) no-repeat;
  background-size: 20px;
  background-position: right center;
  right: -30px;
  top: 55%;
  transform: translateY(-50%);
  opacity: 0;
  filter: brightness(0);
  transition: all 0.3s ease-in-out;
}

.blgpg-lftcol .lower-list li a:hover {
  color: var(--blue-clr);
}

.blgpg-lftcol .lower-list li a:hover:after {
  opacity: 1;
}

.get-in-touch h2 {
  margin-bottom: 30px;
}

.contact-top-blk {
  padding: 100px 0px;
}

.contact-area-box {
  background: #fff;
  border-radius: 20px;
  padding: 30px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-area-box i img {
  width: 55px;
}

.contact-area-box i {
  margin-bottom: 20px;
}

.contact-area-box .h5-title {
  font-weight: 500;
  margin-bottom: 5px;
}

.contact-area-box a {
  color: inherit;
}

.contact-area-box a:hover {
  color: var(--orange);
}

.test-doc-info h4 {
  color: #fff;
}

.contact-top-blk .row {
  --bs-gutter-y: 24px;
}

/* 22/07/2024 work end */

/* SS CSS Begin 19-08-2024 */

.testi-icon-main .testi-icon-bx i img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all ease-in-out 0.3s;
  filter: brightness(0);
}

.testi-icon-bx,
.testi-icon-bx.orange-bx {
  transition: all ease-in-out 0.3s;
  background: var(--white-clr);
  width: 244px;
}

.testi-icon-bx:hover {
  background: var(--orange);
}

.testi-icon-bx:hover i img {
  filter: brightness(0) invert(1);
}

.testi-icon-bx i {
  border-radius: 0;
  background: transparent;
}

.idp-bsub h3 {
  color: var(--white-clr);
  font-size: 40px;
  margin-left: 135px;
}

.idp-innr-bnnr .ban-blks-lft.innr-bnnr-content.idp-pur {
  max-width: 760px;
}

.idp-bsub {
  margin-bottom: 45px;
}

.ban-blks-lft.innr-bnnr-content .idp-bsub h1 {
  margin-bottom: 0;
}

.all-similir-sect .idp-innr-bnnr .ban-blks-lft.innr-bnnr-content {
  max-width: 745px;
}

.all-similir-sect .innovative-wrppr ul li strong {
  margin-bottom: 5px;
  display: inline-block;
}

.all-similir-sect .innovative-sec.product-innovative {
  margin-top: 200px;
}

.all-similir-sect .innovative-wrppr {
  height: 100%;
  padding: 180px 60px 74px;
}

.all-similir-sect .test-doc-content {
  padding-right: 0;
}

.all-similir-sect .test-doc-btn-wrppr .cmn-btn {
  min-width: 202px;
}

.all-similir-sect .test-doc-content .test-doc-info {
  padding-left: 80px;
}

.faq-ans ul {
  list-style: none;
  padding: 0;
}

.faq-ans ul li {
  position: relative;
  padding-left: 30px;
  color: var(--footer-black);
  line-height: 1.4;
  font-weight: 300;
}

.faq-ans ul li::before {
  content: "";
  font-family: "FontAwesome";
  position: absolute;
  left: 12px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--black-clr);
}

.all-similir-sect .unlimit-left-col .unlimit-wrppr .unlimit-bg img {
  display: none;
}

.all-similir-sect .unlimit-rw {
  --bs-gutter-x: 0;
  background: var(--footer-black);
  border-radius: 30px;
  align-items: stretch;
  overflow: auto;
  --bs-gutter-y: 0;
}

.all-similir-sect .unlimit-rght-wrrp figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.all-similir-sect .unlimit-rght-wrrp figure {
  width: 100%;
  height: 100%;
}

.all-similir-sect .unlimit-rght-wrrp {
  height: 100%;
}

/* End Of SS CSS 19-08-2024 */

/*support pp.c 20/8/2024*/
.full-contact-wraper .benefit-card-wrppr a {
  color: #1e1e1e;
}

.full-contact-wraper .benefit-card-wrppr a:hover {
  color: var(--orange);
}

.full-contact-wraper .innr-bnnr-sec .bdr-btn {
  border: 1px solid var(--footer-black);
  color: var(--footer-black);
}

.full-contact-wraper .innr-bnnr-sec .bdr-btn:hover {
  border: 1px solid var(--light-clr2);
  color: var(--blue-clr);
}

.full-contact-wraper .test-doc-main .cmn-btn {
  min-width: 202px;
}

.full-contact-wraper .test-doc-main h2 {
  color: var(--white-clr);
}

.light-banner .bdr-btn {
  border: 1px solid var(--footer-black);
  color: var(--footer-black);
}

.light-banner .bdr-btn:hover {
  border: 1px solid var(--blue-clr);
  color: var(--blue-clr);
}

.abt-misionsec {
  padding: 200px 0 192px 0;
}

.abt-msn-lftcol {
  width: 44%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.abt-msn-rgtcol {
  width: 56%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.abt-msn-imgbx {
  width: 100%;
}

.abt-msn-imgbx img {
  width: 100%;
}

.abt-msn-contwrpr {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  padding: 110px 55px;
  overflow: hidden;
}

.abt-msn-contbckimg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.abt-msn-contbx {
  position: relative;
  z-index: 1;
}

.abt-msn-contbx {
  color: var(--light-white);
}

.abt-msn-contbx p {
  color: var(--light-white);
}

.abt-msn-contbx h2 {
  color: var(--light-white);
  margin-bottom: 50px;
}

.abt-msn-txtbx {
  max-width: 90%;
}

.abt-msn-contwrpr .card-icon {
  margin-bottom: 40px;
}

.abt-msn-contbutn {
  margin-top: 50px;
}

.our-visionsec {
  background-color: var(--footer-black);
  padding: 200px 0;
}

.abt-msn-imgbx {
  margin-bottom: 0;
}

.our-vsn-lftcol {
  width: 30%;
}

.our-vsn-rgtcol {
  width: 70%;
}

.abtvst-contwrp .sec-head h2 {
  color: var(--light-white);
}

.abtvst-contwrp .cmn-benefit-arrw {
  border-color: var(--light-white);
}

.abtvst-contwrp .cmn-benefit-arrw img {
  -webkit-filter: brightness(0) saturate(100%) invert(94%) sepia(61%)
    saturate(1455%) hue-rotate(179deg) brightness(109%) contrast(105%);
  filter: brightness(0) saturate(100%) invert(94%) sepia(61%) saturate(1455%)
    hue-rotate(179deg) brightness(109%) contrast(105%);
}

.abtvst-contwrp .sec-head {
  margin-bottom: 120px;
}

/*support pp.c 20/8/2024*/

/* support starts 21.08.2024  */
.sky-blue {
  background-color: var(--light-blue1);
}

.abt-card-wppr p {
  text-align: left;
}

.abt-vsn-slider .slick-list {
  padding-left: 0 !important;
}

.light-sky {
  background-color: var(--light-sky);
}

.our-vsn-sldr .abt-card-wppr.abt-img {
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
}

.our-vsn-sldr .abt-card-wppr.abt-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.abt-vsn-slider .slick-track {
  display: flex !important;
}

.abt-vsn-slider .slick-slide {
  height: inherit !important;
}

.deep-blue {
  background-color: var(--blue-clr2);
}

.abt-card-wppr .benefit-icon {
  mix-blend-mode: normal;
}

.abt-card-wppr.txt-cntr .h4-title {
  color: var(--white-clr);
  text-align: center;
}

.white {
  background-color: var(--white-clr);
}

.company-profile-sec {
  padding: 200px 0;
}

.cmpny-top-img {
  /* background-color: #f7f7ed; */
  background-color: var(--white-clr);
  border-radius: 30px;
  position: relative;
  /* padding-top: 123%; */
  padding-top: 100%;
}

.cmpny-card-outer {
  position: relative;
  margin-bottom: 50px;
}

figure {
  margin: 0;
}

.company-img-content-wppr button[type="button"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  border: 1px solid var(--footer-black);
  background-color: transparent;
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 2;
}

.company-img-content-wppr {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.btn-outer.open {
  border: 1px solid var(--white-clr) !important;
}

.btn-outer.open .awr-btn {
  display: none;
}

.btn-outer.open .cross-btn {
  display: block;
}

.card-blue-bg {
  background-color: var(--blue-clr2);
  padding: 140px 40px 40px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  border-radius: 30px;
  width: 100%;
  height: 100%;
}

.card-blue-bg p {
  color: var(--white-clr);
}

.cmpny-prof-name-wppr .card-list {
  padding-left: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-bottom: 0;
}

.cmpny-prof-name-wppr {
  display: flex;
  align-items: flex-start;
}

.card-list li a {
  color: var(--white-clr);
  background-color: var(--blue-clr2);
  padding: 11px;
  display: inline-block;
  line-height: 1;
  border-radius: 4px;
}

.card-list li a:hover {
  background-color: var(--light-clr2);
  color: var(--blue-clr2);
}

.card-list li:not(:last-child) {
  margin-right: 20px;
}

.name-innr-wppr .h3-title {
  margin-bottom: 10px;
}

.padding-right {
  padding-right: 60px;
}

.padding-left {
  padding-left: 60px;
}

.cmpny-top-img figure {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.cmpny-top-img figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.cross-btn {
  display: none;
}

.card-blue-bg.show {
  opacity: 1;
  visibility: visible;
}

.sponsor-sec {
  padding: 200px 0;
  background-color: var(--footer-black);
}

.spnsr-logo-items {
  padding: 38px 80px;
  background-color: var(--black-clr2);
  border-radius: 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.sponsor-logo-slide .slick-track {
  display: flex !important;
}

.sponsor-logo-slide .slick-slide {
  height: inherit !important;
}

.spnsr-logo-items img {
  width: 70%;
  height: 100%;
  object-position: center center;
  object-fit: contain;
}

.spnsr-each-card {
  padding: 0 10px;
}

.our-award-sec {
  padding: 200px 0;
}

.our-award-sec .sec-head h2 {
  font-size: 70px;
}

.our-award-sec .sec-head {
  margin-bottom: 150px;
}

.award-innr-card {
  background-color: var(--light-sky);
  text-align: center;
  padding: 150px 30px;
  border-radius: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.awrd-txt h3 {
  font-size: 30px;
}

.award-img-wpr {
  margin-bottom: 50px;
}

.award-row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}

.our-office-sec {
  padding-top: 200px;
  background-color: var(--light-clr);
}

.office-img-wppr {
  display: flex;
  align-items: flex-start;
  max-width: 1277px;
  margin: 0 auto -280px;
  position: relative;
  z-index: 1;
}

.office-rit-txt {
  padding-left: 130px;
}

.office-lft-img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
}

.office-lft-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.office-rit-txt h2 {
  font-size: 70px;
}

.office-rit-txt h3 {
  font-size: 30px;
  margin-bottom: 10px;
}

.office-rit-txt a {
  color: var(--footer-black);
  text-decoration: underline !important;
}

.office-rit-txt p {
  font-size: 30px;
  line-height: 1.4;
}

.abt-card-wppr .h4-title {
  text-align: left;
}

.page-template-custom-agent .innr-bnnr-sec .bdr-btn {
  border: 1px solid var(--footer-black);
  color: var(--footer-black);
  background: rgba(255, 255, 255, 0.5);
}

.page-template-custom-agent .innr-bnnr-sec .bdr-btn:hover {
  border-color: var(--blue-clr);
  color: var(--blue-clr);
}

.page-id-969 .custm-agent-benefit-sec .test-doc-main {
  margin-bottom: 0;
}

.support-slide-sec {
  padding: 200px 0;
  background-color: var(--footer-black);
}

.serv-card-wpr {
  background-color: var(--white-clr);
  padding: 30px;
  min-height: 238px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.service-rit-slide .slick-track {
  display: flex !important;
}

.service-rit-slide .slick-slide {
  height: inherit !important;
}

.service-innr-card-each {
  padding: 10px;
}

/* support ends 21.08.2024  */

/* support Start 22.08.2024  */
.sec-head-para {
  color: var(--footer-black);
}

.integrations-top {
  background-color: #f3f9ff;
  padding: 200px 0;
}

.integrations-top .sec-head-para {
  max-width: 425px;
  margin-bottom: 80px;
  margin-top: 70px;
}

.slider-container {
  display: flex;
}

.slider-for {
  width: 58%;
}

.slider-nav {
  padding-left: 20px;
  width: 42%;
  display: flex;
  flex-direction: column;
}

.slider-nav div {
  cursor: pointer;
}

.slider-nav img {
  width: 60px;
  height: auto;
}

.tab-slidernav-item {
  border: none !important;
}

.tab-slidernav-item-wrap {
  display: flex;
  border-top: 1px solid #e3eff0;
  min-height: 75px;
  align-items: center;
  padding: 15px;
}

.tab-slidernav-item-wrap:hover,
.slick-current .tab-slidernav-item-wrap {
  background-color: var(--light-sky);
}

.tab-slidernav-item-wrap span {
  color: var(--footer-black);
  font-family: var(--aeonik-font);
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
  margin-left: 30px;
}

.slider-for > div {
  height: 100%;
}

.slider-for .slick-track {
  display: flex;
  height: 100%;
}

.tabslider-item-main {
  height: auto;
}

.tabslider-item-main img {
  height: 100%;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* =====support-slide======= */
.support-slide-light-bg {
  background-color: var(--light-sky);
}

.support-slide-light-bg .abtvst-contwrp .sec-head h2 {
  color: var(--footer-black);
}

.support-slide-light-bg .abtvst-contwrp .sec-head p {
  color: var(--footer-black);
}

.support-slide-light-bg .abtvst-contwrp .cmn-benefit-arrw {
  border-color: var(--footer-black);
}

.support-slide-light-bg .abtvst-contwrp .cmn-benefit-arrw img {
  filter: brightness(0) saturate(100%) invert(8%) sepia(15%) saturate(6%)
    hue-rotate(322deg) brightness(103%) contrast(93%);
}

.support-slide-light-bg .abtvst-contwrp .cmn-benefit-arrw:hover {
  border-color: var(--white-clr);
}

.support-slide-light-bg .abtvst-contwrp .cmn-benefit-arrw:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%)
    hue-rotate(151deg) brightness(102%) contrast(98%);
}

.abtvst-contwrp .sec-head {
  margin-bottom: 80px;
}

.abtvst-contwrp .sec-head h2 {
  margin-bottom: 70px;
}

/* =====sponsor======= */
.sponsor-sec-white-item .spnsr-logo-items {
  background-color: var(--white-clr);
}

.sponsor-sec-white-item .spnsr-logo-items img {
  width: auto;
}

/* ========Other integrations======= */
.other-integrations-sec {
  padding: 200px 0;
}

.logo-wrap {
  background-color: var(--white-clr);
  padding: 30px;
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-radius: 20px;
}

.logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.logo-row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}

.other-integrations-sec .sec-head {
  margin-bottom: 70px;
}

.other-integrations-sec .logo-list {
  margin-bottom: 200px;
}

.other-integrations-sec .test-doc-btn-wrppr .cmn-btn {
  min-width: 206px;
}

/* about page */
.cmpny-card-outer .card-blue-bg .card-blue-bg-scroll {
  overflow-y: auto;
  height: 100%;
}

/* ========glossary page====== */
.page-template-glossary .faq-sec {
  background-color: var(--light-white);
  padding: 360px 0 200px;
}

.faq-ans a {
  text-decoration: underline !important;
  color: var(--orange);
}

.faq-ans a:hover {
  color: var(--light-blue1);
}

.glossary-faq .faq-ans {
  max-width: 100%;
  padding: 0 5.729vw 3.125vw;
}

/* ======partners page==== */
.partners-title-wrap {
  margin-bottom: 70px;
  color: var(--footer-black);
}

.partners-title-wrap h2 {
  margin-bottom: 10px;
}

.product-navigation.active .custm-declear-wrappr.without-bg {
  /* padding: 40px 0; */
  margin: 0 !important;
}

.custm-declear-txt-col-partners {
  padding-right: 140px;
}

.product-navigation.active .custm-declear-wrappr.without-bg h3 {
  margin-bottom: 25px;
}

.custm-declear-wrappr.without-bg {
  background-color: transparent !important;
}

.custm-declear-sec-partners .othr-custm-declear-slidr {
  min-height: 540px;
}

.custm-declear-sec-partners {
  background-color: var(--light-white);
}

.booking-sec {
  background-color: var(--footer-black);
  color: var(--white-clr);
  padding: 200px 0;
}

.booking-head h2 {
  color: var(--white-clr);
  font-size: 90px;
  margin-bottom: 70px;
  line-height: normal;
}

.booking-head {
  margin-bottom: 100px;
  max-width: 925px;
}

.book-calendar iframe {
  overflow: hidden;
  height: 690px !important;
  width: 100% !important;
}

/* support End 22.08.2024  */
/* support Start 23.08.2024  */
/* ======partners page==== */
.benefit-idp-sec-partners {
  padding: 200px 0;
}

.benefit-idp-sec-partners .benefit-idp-rw {
  margin-bottom: 0;
}

.bglightsky {
  background-color: var(--light-sky) !important;
}

.booking-head p {
  max-width: 410px;
}

/* support End 23.08.2024  */

/*suuport pp.c 23/8/2024*/
/*t/c privacy cookie*/
.policy-section .polici-faq {
  background-color: transparent;
  padding-top: 0;
}

.main-banner.innr-bnnr-sec.policy-page-purpose {
  padding: 360px 0 120px 0;
}

.policy-page-purpose .innr-bnnr-content {
  max-width: 100%;
}

.policy-page-purpose .innr-bnnr-content h1 {
  text-align: center;
  display: block;
}

.policy-page-purpose .innr-bnnr-content .policy-ban-para {
  max-width: 1302px;
  margin-top: 150px;
}

.policy-page-purpose .policy-ban-para h2 {
  font-size: 50px;
  margin-bottom: 60px;
}

.policy-section .polici-faq .sec-head {
  text-align: left;
  margin-bottom: 50px;
}

.policy-section .polici-faq .sec-head h2 {
  font-size: 50px;
}

.policy-section .polici-faq .faq-ans {
  max-width: 100%;
}

.page-id-575 .policy-page-purpose .policy-ban-para {
  margin-left: auto;
  margin-right: auto;
}

.blogsec .blg-lstimg {
  width: 100%;
  height: 286px;
}

.blogsec .blg-lstimg > a {
  width: 100%;
  height: 100%;
  display: inline-block;
}

.blogsec .blg-lstimg > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.policy-page-purpose .policy-ban-para a {
  color: var(--blue-clr);
  text-decoration: underline !important;
}

.policy-page-purpose .policy-ban-para a:hover {
  color: var(--orange);
}

/*t/c privacy cookie*/
/*===blog page=====*/
.blogsec .blg-lstimg {
  width: 100%;
  height: 286px;
}

.blogsec .blg-lstimg > a {
  width: 100%;
  height: 100%;
  display: inline-block;
}

.blogsec .blg-lstimg > a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/*===blog page=====*/
/*===blog details page=====*/
.single-post .blog_dtls_inner {
  padding: 289px 0 0 0;
}

.single-post .blogDtlsec .blg-dtls-hdng-wrpr h1 {
  font-size: 50px;
  margin-bottom: 60px;
}

.single-post .blogDtlsec .blg-dtls-cont-wrapr img {
  margin-bottom: 78px;
}

.single-post .blogDtlsec .blg-dtls-cont-wrapr p {
  font-size: 24px;
}

.single-post .blg-dtls-cont-wrapr h2 {
  margin-bottom: 50px;
  margin-top: 100px;
}

.single-post .blg-dtls-cont-wrapr h3 {
  font-size: 35px;
}

.single-post .blg-dtls-cont-wrapr h4 {
  font-size: 30px;
}

.blgcmnsn-prdtwrpr {
  background-color: #f3f9ff;
  border-radius: 20px;
  padding: 20px;
}

.blgcmnsn-prd-hd {
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.2;
}

.blgcmnsn-prdt-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  margin: 0 -5px -4px -5px;
}

.blgcmnsn-prdt-list ul li {
  list-style: none;
  padding: 0 5px 4px 5px;
}

.blgcmnsn-prdt-list ul li a {
  color: var(--blue-clr);
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
}

.blgcmnsn-prdt-list ul li a:hover {
  color: var(--orange);
}

.single-post .blg-dtls-wrapr {
  padding-right: 122px;
}

/*===blog details page=====*/
/*suuport pp.c 23/8/2024*/
/*suuport pp.c 26/8/2024*/
/*home page*/
.page-template-home .main-banner .banbg-img {
  z-index: 0;
}

.page-template-home .main-banner .ban-blks-lft h1 {
  margin-bottom: 90px;
}

.page-template-home .main-banner .ban-para {
  margin-bottom: 80px;
}

.page-template-home .main-banner .ban-blks-lft {
  padding-top: 0;
}

.why-icustoms-hmsec {
  position: relative;
}

.why-icustoms-backimg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-icustoms-hmsec .why-icustoms-container {
  position: relative;
}

.page-template-home .innovative-sec {
  background-color: #f7f7ed;
}

.page-template-home .innovative-sec .sec-head h2 {
  color: var(--footer-black);
}

.page-template-home .smart-sec {
  background-color: #f7f7ed;
}

.page-template-home .smart-sec h2 {
  color: var(--footer-black);
}

.page-template-home
  .why-icustoms-slider-item:nth-child(8)
  .why-icustoms-slider-item-in,
.page-template-home
  .why-icustoms-slider-item:nth-child(7)
  .why-icustoms-slider-item-in {
  justify-content: space-between;
}

.page-template-home
  .why-icustoms-slider-item:nth-child(7)
  .why-icustoms-slider-item-in
  .why-icustoms-sld-img-wpr
  img {
  max-width: 100%;
  width: auto;
}

/*home page*/
/*blog details page*/
.blgpg-lftcol .products-sec .lower-list li a:after {
  opacity: 1;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.blgpg-lftcol .products-sec .lower-list li a:hover::after {
  -webkit-filter: brightness(100%);
  filter: brightness(100%);
}

.single-post .blg-dtls-cont-wrapr .bogtable-wrapr {
  padding: 40px;
  background-color: var(--white-clr);
  margin-bottom: 0;
  margin-top: 40px;
}

.single-post .blg-dtls-cont-wrapr table {
  color: var(--black-clr);
  font-size: 22px;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 0;
  overflow-x: auto;
}

.single-post .blg-dtls-cont-wrapr table tr td:nth-child(odd) {
  background-color: #e6efff;
  border-radius: 15px;
}

.single-post .blg-dtls-cont-wrapr table tbody tr {
  border-radius: 15px;
  background: #d5e5ff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1px;
}

.single-post .blg-dtls-cont-wrapr table tbody,
.single-post .blg-dtls-cont-wrapr table thead {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}

.single-post .blg-dtls-cont-wrapr table thead th:nth-child(odd) {
  background-color: #0061fe;
}

.single-post .blg-dtls-cont-wrapr table tr td:last-child {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.single-post .blg-dtls-cont-wrapr table tr td {
  background-color: #d5e5ff;
  border: none;
  padding: 17px 17px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.single-post .blg-dtls-cont-wrapr table tbody tr td:first-child {
  color: #0061fe;
  font-weight: 500;
}

.single-post .blg-dtls-cont-wrapr table th {
  border: none;
}

.single-post .blg-dtls-cont-wrapr table thead {
  margin-bottom: 1px;
}

.single-post .blg-dtls-cont-wrapr table thead tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #0044b2;
  border-radius: 15px;
}

.single-post .blg-dtls-cont-wrapr table thead tr th {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 20px 17px;
  background-color: #0044b2;
  line-height: 1.1;
  color: var(--white-clr);
  font-weight: 600;
}

.single-post .blg-dtls-cont-wrapr table thead tr th:nth-child(odd) {
  background-color: #0061fe;
  border-radius: 15px;
}

.archive .filter-purpose .filbtn {
  background-color: var(--footer-black);
}

.unlimit-slidermain-outtr .unlimit-wrppr p {
  color: var(--light-white);
}

.masterlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-top: 150px;
}

.masterlist .unlimite-wraping {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  padding: 40px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.masterlist .idp-innov-img-wrppr.secnd-img-idp {
  width: 50%;
  max-width: 50%;
  margin: 0;
  padding: 0 10px;
}

.masterlist .idp-innov-img-wrppr.secnd-img-idp ul {
  position: static;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.masterlist .unlimite-wraping .unlimit-shpe {
  width: 50%;
  position: static;
  max-width: 50%;
  padding: 0 10px;
}

.masterlist {
  min-height: 775px;
  position: relative;
  padding-top: 140px;
}

.masterlist > figure {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/*suuport pp.c 26/8/2024*/

/* 27/08/2024 dm */

.register-sec {
  padding-top: 296px;
  padding-bottom: 200px;
  position: relative;
  background: #262626;
}

.register-card {
  background: var(--white-clr);
  padding: 10px;
  max-width: 508px;
  margin: 0 auto;
  border-radius: 20px;
  padding-bottom: 0;
}

.register-card .card-head figure {
  width: 100%;
  padding: 44px 10px;
  background: #4642f0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.register-card .card-head figure a {
  display: inline-block;
  max-width: 55px;
}

.register-card .card-head h1 {
  font-size: 30px;
  font-family: var(--aeonik-font);
  line-height: 1.2;
  text-align: center;
}

.register-card .card-head {
  padding-bottom: 30px;
  border-bottom: 1px solid #e3eff0;
  margin-bottom: 30px;
}

.register-card .card-cont {
  max-width: 444px;
  margin: 0 auto;
}

.register-card .form-input label {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}

.register-card .form-input label sup {
  color: var(--orange);
  top: -2px;
}

.register-card .form-input input[type="text"],
.register-card .form-input input[type="email"] {
  height: 60px;
  border-radius: 10px;
  outline: none;
  box-shadow: none;
  background: #f3f9ff;
  color: var(--black-clr);
  font-size: 16px;
  padding: 0 20px;
  width: 100%;
  border: 1px solid transparent;
  transition: 0.5s all;
}

.register-card .form-input input[type="text"]:focus,
.register-card .form-input input[type="email"]:focus {
  border-color: #e1ff67;
  background: var(--white-clr);
}

.register-card .form-input:not(:last-child) {
  margin-bottom: 20px;
}

.register-card .form-input.checkbox-wrap label {
  font-weight: normal;
  font-size: 16px;
  cursor: pointer;
}

.register-card .form-input.checkbox-wrap label input[type="checkbox"] {
  display: none;
}

.register-card .checkbox-wrap label span {
  position: relative;
  padding-left: 30px;
}

.register-card .checkbox-wrap label span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid var(--black-clr);
  transition: 0.2s ease-in-out;
}

.register-card .checkbox-wrap label span::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  background: url(./images/Tick-Icon.svg) no-repeat center center;
  background-size: 10px;
  width: 10px;
  height: 10px;
  transition: 0.2s ease-in-out;
  opacity: 0;
  transform: scale(0);
}

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

.register-card
  .checkbox-wrap
  label
  input[type="checkbox"]:checked
  + span::before {
  border-color: #e1ff67;
  background: #e1ff67;
}

.register-card .checkbox-wrap label:not(:last-child) {
  margin-bottom: 20px;
}

.register-card .form-input input[type="submit"] {
  background-color: var(--orange);
  height: 61px;
  padding: 0 54px;
  font-size: 20px;
  font-weight: 700;
  color: var(--white-clr);
  border-radius: 100px;
}

.register-card .form-input input[type="submit"]:hover {
  background: var(--light-clr2);
  color: var(--blue-clr2);
}

/* .register-card .form-input:last-child {
    text-align: center;
    margin-bottom: 60px;
    margin-top: 60px;
} */

.register-card .card-footer-cont {
  padding: 30px 0 20px;
  border-top: 1px solid #e3eff0;
  text-align: center;
}

.register-card .card-footer-cont p {
  font-size: 16px;
  color: var(--black-clr);
}

.register-card .card-footer-cont p a {
  color: var(--orange);
}

.register-card .card-footer-cont p a:hover {
  color: var(--blue-clr);
}

/* 27/08/2024 dm */

/* 28.08.24 start */

.hdr-products-ul li a.disable {
  pointer-events: none;
  color: var(--black-clr);
  opacity: 0.3;
}

.save-lft .cmn-btn {
  min-width: 260px;
}

.ftrclm-lower {
  padding-top: 62px;
}

.ftrclm-lower .addrs-ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
}

.ftrclm-lower .addrs-ul li {
  margin: 0 20px 0 0;
  display: block;
}

.ftrclm-lower .addrs-ul li:last-child {
  margin: 0;
}

.ftrclm-lower .addrs-ul li a {
  color: var(--light-white);
  border: 1px solid var(--light-white);
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  padding: 16px 54px 19px;
  display: inline-block;
  width: auto;
}

.ftrclm-lower .addrs-ul li a:hover {
  background-color: var(--blue-clr2);
  border-color: var(--blue-clr2);
}

/* 28.08.24 end */

/* 29.08.24 start */

.sub-sub-menu-wrppr p {
  max-width: 200px;
}

.csoonbtn2,
.csoonbtn3,
.csoonbtn5 {
  background-color: var(--footer-black);
  border-color: var(--footer-black);
  pointer-events: none;
}

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

.unlimit-slider .slick-slide {
  height: inherit !important;
}

.unlimit-idp-innr-wrppr .unlimit-rw {
  align-items: inherit;
}

.unlimit-idp-innr-wrppr {
  background-color: var(--footer-black);
  border-radius: 30px;
  overflow: hidden;
}

.unlimit-idp-innr-wrppr .unlimit-rght-wrrp {
  height: 100%;
}

.unlimit-idp-innr-wrppr .unlimit-rght-wrrp figure {
  height: 100%;
}

.unlimit-idp-innr-wrppr .unlimit-rght-wrrp figure img {
  height: 100%;
  object-fit: cover;
}

.unlimit-btn-wrppr {
  margin-top: auto;
}

.page-id-725 .incts-unlimit-sec .unlimit-head {
  max-width: 975px;
}

.page-id-725 .incts-unlimit-sec .unlimit-head h2 {
  max-width: 750px;
}

/* .page-id-725 .innovative-rw.incts-innov-rw .incts-innov-icon::before {
    background-image: conic-gradient(from 0deg, var(--light-blue1) 0deg var(--data-val), var(--blue-clr2) var(--data-val));
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    border-radius: 100px;
} */

/* 29.08.24 end */

/* after marge start */

.light-banner .bdr-btn:hover {
  border-color: var(--light-clr2);
}

.page-id-870 .incts-unlimit-sec .unlimit-head {
  max-width: 975px;
}

.page-id-870 .incts-unlimit-sec .unlimit-head h2 {
  max-width: 100%;
}

.page-id-870 .incts-unlimit-sec .unlimit-head p {
  max-width: 767px;
}

/* .page-id-870 .innovative-rw.incts-innov-rw:nth-child(1) .incts-innov-icon::before {
    background-image: conic-gradient(from 0deg, var(--light-blue1) 0deg 33.33%, var(--blue-clr2) 33.33%);
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    border-radius: 100px;
}

.page-id-870 .innovative-rw.incts-innov-rw:nth-child(2) .incts-innov-icon::before {
    background-image: conic-gradient(from 0deg, var(--light-blue1) 0deg 66.667%, var(--blue-clr2) 66.667%);
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    border-radius: 100px;
}

.page-id-870 .innovative-rw.incts-innov-rw:nth-child(3) .incts-innov-icon::before {
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    background-color: var(--light-blue1);
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.page-id-870 .innovative-rw.incts-innov-rw:nth-child(3) .incts-innov-icon::after {
    display: none;
} */

.page-template-custom-agent .innr-bnnr-sec .bdr-btn:hover {
  background-color: var(--light-clr2);
  border-color: var(--light-clr2);
}

.page-id-914 .sec-head.unlimit-head {
  max-width: 1075px;
}

.page-id-914 .sec-head.unlimit-head h2 {
  max-width: 100%;
}

.page-id-914 .sec-head.unlimit-head p {
  max-width: 590px;
}

.page-id-914 .support-slide-sec .benefit-arrw-wrppr {
  display: none !important;
}

.page-id-914 .abtvst-contwrp {
  padding-top: 55px;
}

.cmpny-card-outer .btn-outer {
  transition: 0.5s all;
}

.cmpny-card-outer .btn-outer:hover {
  border-color: var(--blue-clr2);
  background-color: var(--blue-clr2);
}

.cmpny-card-outer .btn-outer .awr-btn,
.cmpny-card-outer .btn-outer.open .cross-btn {
  transition: 0.3s all;
}

.cmpny-card-outer .btn-outer:hover .awr-btn {
  filter: brightness(0) invert(1);
}

.cmpny-card-outer .btn-outer.open:hover {
  background-color: var(--white-clr);
}

.cmpny-card-outer .btn-outer.open:hover .cross-btn {
  filter: brightness(0);
}

.office-img-wppr .office-rit-txt a:hover {
  color: var(--orange);
}

/* after marge end */

/* 30.08.24 start */

.innov-img-wrppr {
  max-width: 453px;
  margin: 0 auto 57px;
  width: 100%;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.innov-img-wrppr figure {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
}

.innov-img-wrppr figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.innov-btn-wrppr-more {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(38, 38, 38, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  z-index: 1;
  opacity: 0;
  transition: 0.5s all;
}

.innov-btn-wrppr-more .bdr-btn {
  background-color: var(--light-clr2);
  border-color: var(--light-clr2);
  color: var(--blue-clr2);
}

.innov-btn-wrppr-more .bdr-btn.csoonbtn2,
.innov-btn-wrppr-more .bdr-btn.csoonbtn3,
.innov-btn-wrppr-more .bdr-btn.csoonbtn5 {
  background-color: var(--footer-black);
  border-color: var(--footer-black);
  color: var(--light-white);
}

.innov-img-wrppr:hover .innov-btn-wrppr-more {
  opacity: 1;
}

body.home .main-head .today-btn-grp .cmn-btn {
  background-color: var(--footer-black);
}

body.home .main-head .today-btn-grp .cmn-btn:hover {
  background-color: var(--light-clr2);
}

.custm-declear-title-icon {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.custm-declear-title-icon .span-icon {
  position: static;
  margin-left: 20px;
}

.custm-declear-title-icon h3 {
  margin-bottom: 0;
}

body.page-template-custom-agent .main-head .today-btn-grp .cmn-btn,
body.page-template-partners .main-head .today-btn-grp .cmn-btn,
body.page-template-integrations .main-head .today-btn-grp .cmn-btn,
body.page-template-contact-us .main-head .today-btn-grp .cmn-btn,
body.page-template-register .main-head .today-btn-grp .cmn-btn,
body.page-template-login .main-head .today-btn-grp .cmn-btn {
  background-color: var(--blue-clr2);
  border-color: var(--blue-clr2);
}

body.page-template-custom-agent .main-head .today-btn-grp .cmn-btn:hover,
body.page-template-partners .main-head .today-btn-grp .cmn-btn:hover,
body.page-template-integrations .main-head .today-btn-grp .cmn-btn:hover,
body.page-template-contact-us .main-head .today-btn-grp .cmn-btn:hover,
body.page-template-register .main-head .today-btn-grp .cmn-btn:hover,
body.page-template-login .main-head .today-btn-grp .cmn-btn:hover {
  background-color: var(--light-clr2);
  border-color: var(--light-clr2);
  color: var(--blue-clr2);
}

.custom-agent-page .main-head .bdr-btn:hover {
  color: var(--blue-clr2);
  border-color: var(--light-clr2);
}

.custm-agent-bnnr-sec .innr-bnnr-content .ban-para {
  max-width: 700px;
}

.page-id-969 .custm-agent-unlimit-sec .unlimit-head {
  max-width: 1135px;
}

.page-id-969 .custm-agent-unlimit-sec .unlimit-head p {
  max-width: 100%;
}

.page-id-969 .custm-agent-unlimit-sec .unlimit-head h2 {
  max-width: 440px;
}

/* book a demo page start */

.book-demo-wraper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.book-demo-row {
  flex-flow: wrap;
  max-width: 1920px;
  min-height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.mobile-fast-part {
  display: none;
}

.book-demo-logo {
  width: 244px;
  margin-bottom: 25px;
  display: inline-block;
}

.book-demo-left {
  background-color: var(--blue-clr2);
  flex-flow: column;
  justify-content: center;
  width: 45%;
  min-height: 100vh;
  display: flex;
}

.book-demo-right {
  flex-flow: column;
  justify-content: center;
  width: 55%;
  height: 100vh;
  display: flex;
  overflow-y: hidden;
  background-color: var(--footer-black);
}

.book-demo-inner-rtl {
  flex: 0 auto;
  min-height: 0;
}

.book-demo-inner-lft {
  flex-flow: column;
  justify-content: space-between;
}

.book-left-top-part {
  padding: 25px 30px 45px 100px;
}

.book-left-top-part .cmn-h3-head {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  color: var(--light-white);
  margin-bottom: 20px;
}

.book-left-top-part .watch-ul {
  display: flex;
  align-items: center;
  list-style-type: none;
  padding-left: 0;
  justify-content: flex-start;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.book-left-top-part .watch-ul li:not(:last-child) {
  margin-right: 30px;
}

.book-left-top-part .watch-ul li img {
  max-height: 30px;
}

.demo-para-wrppr p {
  color: var(--light-white);
  font-size: 20px;
}

.book-left-btm-part {
  background-color: var(--light-white);
  padding: 25px 30px 45px 100px;
  height: 100%;
}

.cmn-h3-head.expect-head {
  margin-bottom: 25px;
  color: var(--blue-clr2);
  font-size: 30px;
  line-height: 1.2;
}

.best-list {
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.best-list li {
  width: 50%;
  flex: 0 0 auto;
  padding-right: 39px;
}

.best-list li:last-child {
  padding-right: 0;
}

.best-list li > p {
  font-size: 18px;
  color: var(--footer-black);
}

.green-tick-item-wrppr {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 5px;
}

.green-tick-item-wrppr .green-tick-wrppr {
  width: 29px;
  flex: 0 0 auto;
}

.green-tick-item-wrppr p {
  flex: 1;
  padding-left: 10px;
  font-size: 18px;
  color: var(--footer-black);
  font-weight: bold;
  margin-bottom: 0;
}

.best-logo-list {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.best-logo-list li:not(:last-child) {
  margin-right: 95px;
}

.book-demo-right {
  flex-flow: column;
  justify-content: center;
  width: 55%;
  display: flex;
  padding: 50px 60px;
  position: relative;
}

.book-demo-right .book-demo-inner-rtl {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.live-demo-head-wrppr p {
  color: var(--light-white);
  font-size: 40px;
  margin-bottom: 6px;
}

.live-demo-head-wrppr h2 {
  font-size: 60px;
  color: var(--light-white);
  margin-bottom: 0;
}

.live-demo-head-wrppr {
  margin-bottom: 45px;
}

.demo-close-btn {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blue-clr2);
  border-radius: 50%;
  transition: 0.5s all;
  position: absolute;
  top: 30px;
  right: 65px;
}

.demo-close-btn img {
  filter: brightness(0) invert(1);
  transition: 0.3s all;
}

.demo-close-btn:hover {
  background-color: var(--light-clr2);
}

.demo-close-btn:hover img {
  filter: none;
}

/* book a demo page end */

/* 30.08.24 end */

.page-template-book-demo header,
.page-template-book-demo footer {
  display: none;
}

/* 02.09.2024 css */

.page-template-all-policy-page .main-head .today-btn-grp .cmn-btn {
  background: var(--blue-clr);
  color: var(--light-white);
}

.page-template-all-policy-page .main-head .today-btn-grp .cmn-btn:hover {
  color: var(--blue-clr);
  background: var(--light-clr2);
}

.book-demo-wraper {
  background: var(--footer-black);
}

.book-left-btm-part {
  position: relative;
}

.book-demo-left {
  min-height: 100vh;
}

.book-demo-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: -4999px;
  width: 5000px;
  height: 100%;
  background: var(--blue-clr2);
  z-index: 1;
  pointer-events: none;
}

.book-left-btm-part::before {
  content: "";
  position: absolute;
  left: -4999px;
  top: 0;
  bottom: 0;
  width: 5000px;
  height: 100%;
  background-color: var(--light-white);
  z-index: 1;
}

.demo-close-btn img {
  width: 24px;
  display: inline-block;
}

.best-list li > p {
  padding-left: 40px;
}

/* 02.09.2024 css */

/* 03.09.2024 starts */
.page-template-blog .main-head .today-btn-grp .cmn-btn,
.page-template-glossary .main-head .today-btn-grp .cmn-btn,
.page-template-about-us .main-head .today-btn-grp .cmn-btn,
.single-post .main-head .today-btn-grp .cmn-btn {
  background: var(--blue-clr2);
  color: var(--light-white);
}

.page-template-blog .main-head .today-btn-grp .cmn-btn:hover,
.page-template-glossary .main-head .today-btn-grp .cmn-btn:hover,
.page-template-about-us .main-head .today-btn-grp .cmn-btn:hover,
.single-post .main-head .today-btn-grp .cmn-btn:hover {
  background-color: var(--light-clr2);
  color: var(--blue-clr2);
}

/* 03.09.2024 ends */

/* SS040924 Begin */

.solutions-navigation:not(.active) .solutions-acc-box {
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.solutions-navigation:not(.active) .solutions-acc-box:hover {
  background: var(--light-clr2);
}

.testi-icon-bx:hover,
.testi-icon-bx,
.testi-icon-bx,
.testi-icon-bx.orange-bx {
  background: transparent;
}

.testi-icon-bx:hover i img {
  filter: brightness(0);
}

.watch-ul li:nth-child(3) {
  width: 186px;
}

.innovative-wrppr p {
  margin-bottom: 100px;
}

.innovative-icon img {
  width: 100%;
  height: 100%;
}

.all-similir-sect .product-innovative .innovative-wrppr {
  padding: 180px 80px 74px 60px;
}

.all-similir-sect .product-innovative .innovative-wrppr h3 {
  font-size: 90px;
}

.page-template-custom-management .innovative-sec .innovative-wrppr h3 {
  font-size: 50px;
}

.page-template-custom-management .innovative-icon img {
  width: 100%;
  height: auto;
}

/* End Of SS040924 */

/* 05.09.24 start */

.solutions-navigation:not(.active)
  .solutions-acc-box:hover
  .solutions-acc-button
  h3 {
  color: var(--blue-clr2);
}

.page-template-custom-management .innovative-sec .innovative-wrppr p {
  margin-bottom: 0;
}

.product-navigation.active .custm-declear-wrappr.without-bg {
  padding: 40px 0 20px;
}

.product-navigation.active:first-child .custm-declear-wrappr.without-bg {
  padding-top: 0;
}

.product-navigation.active:last-child .custm-declear-wrappr.without-bg {
  padding-bottom: 0;
}

.product-navigation.active:last-child {
  margin-bottom: 0;
}

.bllg-img {
  margin-bottom: 100px;
}

.book-demo-form iframe {
  height: 500px !important;
}

.register-frm-rw {
  --bs-gutter-x: 64px;
}

.form-input-col {
  width: 50%;
  flex: 0 0 auto;
}

.page-template-register .register-card {
  max-width: 1016px;
}

.page-template-register .register-card .card-cont {
  max-width: 100%;
  padding: 0 24px 40px;
}

.form-input-col.full {
  width: 100%;
}

.form-input-col .form-input {
  margin-bottom: 40px;
}

.form-input.checkbox-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -32px 40px;
}

.form-input.checkbox-wrap .form-input-col {
  padding: 0 32px;
}

.gform-footer {
  text-align: center;
}

.office-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 05.09.24 end */
/*support pp.c 6/9/2024*/
.mb-tgleicon {
  display: none;
}

.save-figsmble {
  display: none;
}

.banbg-mb {
  display: none;
}

.mbl-logo {
  display: none;
}

.navul.mobi {
  display: none;
}

.banbg-img.mobi,
.btn-all-wrppr.mobi,
.mobi-slider-btn-wrppr {
  display: none;
}

.cmpny-card-outer .card-blue-bg .card-blue-bg-scroll {
  overflow-x: hidden;
}

.card-blue-bg-scroll ul {
  padding: 0;
  margin: 0 -20px 50px;
  list-style: none;
  display: flex;
  /* flex-wrap: wrap; */
  align-items: flex-end;
}

.card-blue-bg-scroll ul li {
  width: auto;
  /* flex: 0 0 auto; */
  padding: 0 20px;
}

.card-blue-bg-scroll li img {
  width: 100%;
}

.page-template-login .register-card .form-input:last-child {
  margin-bottom: 60px;
  text-align: center;
}

/*support pp.c 6/9/2024*/

/* AD 12/09/2024 */
.manage-sec .mobi-btn-wrppr {
  display: none;
}

.tab-slidernav-item .tab-slidernav-item-wrap {
  background-color: transparent !important;
}

.tab-slidernav-item.active .tab-slidernav-item-wrap {
  background-color: var(--light-sky) !important;
}

.why-icustoms-left {
  padding: 3.854vw 1.563vw 3.854vw 2.604vw;
}

.custm-declear-sec .btn-wrppr.mbl-btn {
  display: none;
}

.best-logo-list li {
  margin-right: 0 !important;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
  padding-right: 2.604vw;
}

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.cky-consent-container .cky-consent-bar {
  border-radius: 10px !important;
  padding: 46px 20px 0 30px !important;
  background-color: var(--light-clr) !important;
  overflow: auto;
}

.cky-notice-btn-wrapper {
  margin: 23px -20px 0 -30px !important;
  padding: 24px 30px;
  background-color: var(--white-clr);
}

.cky-notice-btn-wrapper > button.cky-btn-customize {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  margin: 0 0 0 10px;
  background-color: transparent !important;
  color: var(--orange) !important;
  font-weight: 700;
  font-size: 14px;
  text-transform: capitalize;
  border: 0 !important;
  -webkit-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}

.cky-notice-btn-wrapper > button.cky-btn-customize:hover {
  color: var(--blue-clr2) !important;
}

.cky-notice-btn-wrapper .cky-btn-accept {
  background-color: var(--blue-clr2) !important;
  border-radius: 5px;
  line-height: 1;
  padding: 16px;
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
  border-color: var(--blue-clr2) !important;
  -webkit-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}

.cky-notice-btn-wrapper .cky-btn-accept:hover {
  border-color: var(--light-clr2) !important;
  background-color: var(--light-clr2) !important;
  color: var(--blue-clr) !important;
}

.cky-consent-bar .cky-banner-btn-close {
  background-color: var(--blue-clr2) !important;
  padding: 10px !important;
  border-radius: 5px;
  width: 40px !important;
  height: 40px !important;
  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;
  top: 20px !important;
  right: 20px !important;
}

.cky-consent-bar .cky-banner-btn-close img {
  width: 100% !important;
  height: auto !important;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.cky-consent-container {
  right: 8.8vw !important;
}

/* AD 12/09/2024 END */

/* support start 16-9-24 */
.pop-up-banner-for-all {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999999;
  background: var(--black-clr2);
  padding: 30px 0;
}
.ban-content-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ban-content-area p {
  margin-bottom: 0;
  color: var(--white-clr);
  font-size: 24px;
  font-weight: 700;
  padding-right: 30px;
  padding-left: 132px;
  width: 70%;
}
.wins-wrap {
  display: flex;
  align-items: center;
  width: 30%;
  justify-content: flex-end;
}
.wins-wrap .winner-button {
  width: 61px;
  height: 61px;
  background: linear-gradient(0deg, #1e1e1e, #1e1e1e),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-left: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 0;
}
.wins-wrap .winner-button:hover {
  background: var(--light-clr2);
}
.wins-wrap .winner-button img {
  width: 24px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.wins-wrap .winner-button:hover img {
  filter: brightness(0);
}
.meetings-iframe-container {
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
}
.meetings-iframe-container::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}
.book-demo-form iframe {
  height: 690px !important;
}

.thank-sec {
  padding: 242px 0 200px;
}
.thnk-blk {
  background: var(--white-clr);
  border-radius: 20px;
  text-align: center;
  padding: 10px 10px 96px 10px;
}
.thnk-logo {
  padding: 44px;
  background: var(--blue-clr2);
  border-radius: 10px;
  margin-bottom: 58px;
  display: block;
}
.thank-pass {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: var(--blue-clr2);
  border-radius: 100%;
  margin: 0 auto 46px;
}
.thank-pass img {
  width: 48px;
}
.thnk-blk h1 {
  font-size: 30px;
  margin-bottom: 29px;
  font-weight: 700;
  color: var(--footer-black);
}
.thnk-blk p {
  font-size: 20px;
  margin-bottom: 10px;
}
.thnk-blk span {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-clr2);
  display: block;
  margin-bottom: 10px;
}
.thnk-blk .cmn-btn {
  margin-top: 36px;
}
.thnk-logo img {
  width: 55px;
}
.section-visible .main-head {
  padding-top: 150px;
}
/* support end 16-9-24 */
/* ========== responsive css =========== */

@media (min-width: 1025px) {
  .navbar-nav > li.menu-item-has-children:hover > .sub-menu {
    display: block !important;
  }

  .submenus-cls > li.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    pointer-events: all;
  }
}

@media (min-width: 992px) and (max-width: 1920px) {
  body {
    font-size: 1.563vw;
    line-height: 1.781vw;
  }

  h1,
  .h1-title {
    font-size: 4.688vw;
    line-height: 5.344vw;
  }

  h2,
  .h2-title {
    font-size: 3.646vw;
    line-height: 4.156vw;
  }

  h3,
  .h3-title {
    font-size: 2.604vw;
    line-height: 2.969vw;
  }

  h4,
  .h4-title {
    font-size: 2.083vw;
    line-height: 2.375vw;
  }

  h5,
  .h5-title {
    font-size: 1.563vw;
    line-height: 1.563vw;
  }

  h6,
  .h6-title {
    font-size: 1.25vw;
    line-height: 1.25vw;
  }

  .container {
    max-width: 82.708vw;
    width: 100%;
    padding: 0 0.573vw;
  }

  .large-container {
    max-width: 83.958vw;
    padding: 0 0.573vw;
  }

  .ftr-head {
    margin-bottom: 1.563vw;
  }

  .menu-list li:not(:last-child) {
    margin-bottom: 0.781vw;
  }

  .ftr-top {
    padding: 6.771vw 0 10.156vw;
  }

  .ftr-btm {
    padding-bottom: 9.896vw;
  }

  .btm-list li a,
  .ftr-btm p,
  .menu-list li a,
  .addrs-ul li {
    font-size: 1.042vw;
  }

  .ftr-row {
    padding-top: 2.135vw;
    margin-top: 3.229vw;
  }

  .addrs-ul li a {
    font-size: 1.25vw;
  }

  .addrs-ul li i {
    width: 1.302vw;
    min-width: 1.302vw;
  }

  .hdr-menu-wrap li:not(:last-child) {
    margin-right: 3.281vw;
  }

  .addrs-ul li a {
    width: calc(100% - 1.302vw);
  }

  .addrs-ul li {
    margin-bottom: 1.771vw;
  }

  .btm-list li:not(:last-child) {
    margin-right: 7.552vw;
  }

  .get-sec {
    padding: 8.438vw 0 8.49vw;
  }

  .get-blk i {
    width: 10.417vw;
    height: 10.417vw;
    margin-bottom: 2.083vw;
  }

  .get-blk h2 {
    max-width: 43.906vw;
    margin: 0 auto 3.281vw;
  }

  .watch-ul li img {
    max-height: 2.344vw;
  }

  .watch-ul li:not(:last-child) {
    margin-right: 3.594vw;
  }

  .watch-ul {
    margin-bottom: 4.115vw;
  }

  .cmn-btn {
    padding: 0.99vw;
    min-width: 12.76vw;
    border-radius: 5.208vw;
    font-size: 1.042vw;
    line-height: 1.188vw;
  }

  .innovative-blk .sec-head {
    margin-bottom: 9.115vw;
  }

  .innovative-sec {
    padding: 7.292vw 0;
  }

  .innovative-btm-blk .innovative-card {
    padding: 2.604vw;
    border-radius: 1.042vw;
  }

  .innovative-figure {
    margin-bottom: 1.563vw;
  }

  .save-txt {
    font-size: 1.563vw;
    margin-bottom: 1.042vw;
  }

  .save-blk {
    margin-top: 5.208vw;
  }

  .innovative-card p {
    font-size: 1.25vw;
    line-height: 1.425vw;
  }

  .smart-sec {
    padding: 7.344vw 0 9.219vw;
  }

  .smart-blk h2 {
    margin-bottom: 7.813vw;
  }

  .smart-bg-blk {
    margin-bottom: 6.25vw;
  }

  .solutions-acc-box .solutions-acc-button h3 i {
    width: 4.479vw;
    height: 4.479vw;
  }

  .solutions-acc-box .solutions-acc-button h3 span {
    padding-left: 2.083vw;
  }

  .solutions-blk h2 {
    margin-bottom: 6.146vw;
  }

  .solutions-sec {
    padding: 8.49vw 0 15.208vw;
  }

  .solutions-ulss li {
    font-size: 1.25vw;
    line-height: 1.425vw;
  }

  .solutions-ulss li:not(:last-child) {
    margin-bottom: 0.104vw;
  }

  .solutions-ulss {
    margin-bottom: 2.083vw;
  }

  .solutions-acc-btn .cmn-btn {
    min-width: 12.708vw;
  }

  .solutions-right-img-wpr {
    padding: 4.167vw 1.979vw;
    border-radius: 1.563vw;
    min-height: 38.49vw;
  }

  .solutions-navigation.active .solutions-acc-button {
    padding-top: 1.042vw;
  }

  .solutions-acc-body {
    padding: 0.26vw 0.104vw 0px 0;
  }

  .solutions-acc-box .solutions-acc-button h3 i img {
    width: 2.24vw;
    min-width: 2.24vw;
  }

  .solutions-big-img img {
    max-height: 26.042vw;
    min-height: 26.042vw;
  }

  .innovative-btm-blk .rowspan {
    --bs-gutter-x: 1.042vw;
    --bs-gutter-y: 1.042vw;
  }

  .solutions-acc-box .solutions-acc-button {
    padding: 0 1.302vw 0 3.646vw;
    min-height: 4.115vw;
  }

  .solutions-inner-sld .solutions-slider .slick-list {
    padding-left: 3.958vw;
  }

  .solutions-big-img {
    padding: 2.083vw;
    border-radius: 1.042vw;
  }

  .solutions-acc-box {
    padding: 1.042vw;
    border-radius: 1.042vw;
    min-height: 6.563vw;
  }

  .solutions-action-btn
    .solutions-navigation.active
    .solutions-acc-box
    .solutions-acc-button
    h3 {
    font-size: 2.604vw;
    margin-bottom: 2.344vw;
    max-width: 16.25vw;
    line-height: 2.969vw;
  }

  .one-icon-box {
    width: 6.25vw;
    height: 6.25vw;
    border-radius: 1.042vw;
  }

  .one-sec {
    padding: 8.542vw 0 12.865vw;
  }

  .one-blk h2 {
    margin-bottom: 5.208vw;
  }

  .one-bg-img {
    width: 40.208vw;
    bottom: -5.156vw;
  }

  .trade-li {
    border-radius: 1.042vw;
    padding: 2.448vw 1.25vw 2.031vw 1.25vw;
    min-height: 6.25vw;
  }

  .trade-ul {
    margin: -1.927vw -0.521vw;
  }

  .trade-li i {
    width: 3.646vw;
    height: 3.646vw;
    margin-bottom: 0.573vw;
    top: -1.719vw;
  }

  .trade-li i img {
    max-height: 1.823vw;
  }

  .trd-wrap {
    padding: 1.927vw 0.521vw;
  }

  .one-blk-wrap {
    margin-bottom: 8.333vw;
  }

  .today-btm {
    padding: 4.167vw 6.875vw;
    border-radius: 1.042vw;
    margin-top: 5.469vw;
  }

  .today-lft {
    max-width: 28.646vw;
  }

  .today-btm p {
    margin-bottom: 0.521vw;
  }

  .bdr-btn {
    padding: 0.938vw;
    min-width: 10.521vw;
    border-radius: 5.208vw;
    font-size: 1.042vw;
    line-height: 1.188vw;
  }

  .transformed-sec {
    padding: 15.365vw 0 11.979vw;
  }

  .transformed-blk-lft span {
    width: 29.479vw;
    height: 32.292vw;
    margin-left: -5.833vw;
  }

  .lrg-srcl {
    width: 18.854vw;
    height: 18.854vw;
    left: 9.792vw;
  }

  .sml-srcl {
    width: 8.229vw;
    height: 8.229vw;
  }

  .transformed-card {
    padding: 1.302vw;
  }

  .transformed-card img {
    max-height: 3.125vw;
  }

  .transformed-slider .slick-list {
    margin: -0.521vw 0;
  }

  .transformed-item {
    padding: 0.521vw 0;
  }

  .transformed-rit {
    padding-left: 7.552vw;
  }

  .transformed-blk-btm {
    max-width: 71.927vw;
    margin-top: 5.208vw;
  }

  .transformed-blk-btm p {
    font-size: 2.604vw;
    margin-bottom: 2.448vw;
    line-height: 2.969vw;
  }

  .author-name {
    font-size: 1.25vw;
    margin-bottom: 0.677vw;
    line-height: 1.425vw;
  }

  .desig-cls {
    font-size: 1.042vw;
    line-height: 1.188vw;
  }

  .save-lft {
    max-width: 33.385vw;
    margin-top: -1.042vw;
  }

  .wetxt {
    margin-bottom: 2.083vw;
  }

  .save-lft .h1-title {
    margin-bottom: 1.302vw;
  }

  .ai-txt {
    margin-bottom: 2.708vw;
  }

  .save-lft i {
    margin-bottom: 4.167vw;
    max-width: 11.458vw;
  }

  .save-figs {
    padding-left: 3.125vw;
  }

  .save-blk-main {
    margin-bottom: 8.385vw;
  }

  .features-list li {
    padding: 0 1.667vw;
  }

  .features-list li:first-child {
    padding-left: 0;
  }

  .features-list li:last-child {
    padding-right: 0;
  }

  .features-list li {
    font-size: 1.563vw;
    line-height: 1.797vw;
  }

  .features-list {
    margin-bottom: 3.906vw;
  }

  .company-list li:not(:last-child) {
    margin-right: 3.125vw;
  }

  .company-list li img {
    max-height: 3.646vw;
  }

  .save-sec {
    padding: 10.781vw 0 11.979vw;
  }

  .ban-blks-lft {
    max-width: 58.281vw;
    padding-top: 5vw;
  }

  .main-banner {
    padding: 13.021vw 0 9.844vw;
  }

  .ban-blks-lft h1 {
    margin-bottom: 2.656vw;
  }

  .ban-para {
    margin-bottom: 4.01vw;
    max-width: 36.458vw;
  }

  .today-btn-grp a:not(:last-child) {
    margin-right: 1.042vw;
  }

  .today-btn-grp a.cmn-btn {
    margin-right: 0;
  }

  .main-head.h-light .today-btn-grp a.cmn-btn {
    margin-right: 1.042vw;
  }

  .ban-fig {
    width: 39.063vw;
    right: 2.083vw;
  }

  .ban-crcl {
    width: 47.142vw;
    height: 47.142vw;
    right: -0.208vw;
    top: -0.104vw;
  }

  .navbar-brand {
    width: 12.708vw;
  }

  .navbar-nav > li > a {
    font-size: 1.042vw;
    line-height: 1.188vw;
  }

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

  .collpse-wrap {
    border-radius: 2.604vw;
    padding: 0 2.708vw 0 4.271vw;
    min-width: 41.719vw;
    margin: 0 1.25vw 0 1.042vw !important;
  }

  .menu-cls {
    font-size: 1.042vw;
    line-height: 1.188vw;
  }

  .menu-cls span {
    padding-right: 0.833vw;
  }

  .main-head {
    padding-top: 4.01vw;
  }

  .login-btn {
    padding: 0.302vw 0.302vw 0.359vw;
    border-radius: 11.822vw;
    min-width: 7.76vw;
    padding-left: 1.719vw;
    font-size: 1.042vw;
    line-height: 1.188vw;
  }

  .login-btn span {
    width: 1.563vw;
    height: 1.563vw;
  }

  .login-btn span img {
    width: 0.677vw;
  }

  /* why icustomer start */
  .why-icustoms-section {
    padding: 10.573vw 0;
  }

  .why-icustoms-container {
    max-width: 72.917vw;
    padding: 0 2.604vw;
  }

  .why-icustoms-section-heading h2 {
    padding-bottom: 3.646vw;
  }

  .why-icustoms-section-heading {
    margin-bottom: 5.208vw;
  }

  .why-icustoms-slider-item-in {
    padding: 2.604vw;
    border-radius: 1.042vw;
  }

  .why-icustoms-sld-text-wpr h3 {
    font-size: 2.083vw;
    margin: 0 0 0.521vw;
    line-height: 2.969vw;
  }

  .why-icustoms-sld-text-wpr p {
    font-size: 1.563vw;
    line-height: 1.781vw;
  }

  .why-icustoms-action a {
    font-size: 2.604vw;
    line-height: 2.969vw;
    margin: 0 0 0.521vw;
  }

  .why-icustoms-left-bottom {
    margin-top: 2.083vw;
  }

  .common-button {
    font-size: 1.042vw;
    padding: 0.938vw 1.094vw;
    border-radius: 2.083vw;
    line-height: 1.188vw;
    min-width: 12.76vw;
  }

  /* .common-button::after {
        border-radius: 2.083vw;
    } */

  /* why icustomer end */

  /* splide slider start */
  .transformed-card-logo-box {
    min-height: 5.208vw;
    border-radius: 0.781vw;
  }

  .transformed-left-list-roll .splide__slide {
    border-radius: 1.563vw;
    height: 5.208vw !important;
    margin-bottom: 1.042vw;
  }

  .our-investors-col-right .splide__list {
    gap: 1.042vw;
  }

  .inv-logo-roll-1 {
    border-radius: 1.563vw 1.563vw 0 1.563vw;
  }

  .transformed-slider {
    border-radius: 0 1.563vw 1.563vw 1.563vw;
  }

  /* splide slider end */

  /* hamburger menu start */

  .navlft,
  .navrt {
    padding: 12.344vw 4.167vw 3.802vw;
  }

  .navul li + li {
    margin-left: 0.521vw;
  }

  .navbtm {
    bottom: 1.875vw;
    padding: 0 1.875vw 0 3.125vw;
  }

  .navinner {
    height: calc(100% - 1.458vw);
  }

  .navinner .navlist:not(:last-child) {
    padding-bottom: 2.604vw;
    margin-bottom: 2.604vw;
  }

  .navrt .navinner {
    height: calc(100% - 4.479vw);
    padding-right: 0.781vw;
  }

  .navrt .navinner::-webkit-scrollbar {
    width: 0.26vw;
  }

  .navinner label {
    font-size: 1.042vw;
    margin-bottom: 1.563vw;
  }

  .navinner label + ul {
    margin-bottom: 1.979vw;
  }

  .navlist li a {
    font-size: 1.823vw;
  }

  .navcontact a {
    margin: 0 0.208vw;
  }

  .navlist li {
    margin-bottom: 0.781vw;
  }

  .navcontact {
    font-size: 1.042vw;
  }

  .navSocial li a {
    font-size: 1.042vw;
  }

  .navlft .navbtm {
    padding: 0 2.604vw 2.604vw;
  }

  .navlft {
    padding: 4.427vw 4.271vw;
  }

  .navlft .navcopy li {
    font-size: 0.833vw;
  }

  .navlft .navcopy li a {
    font-size: 0.833vw;
    margin-left: 1.042vw;
  }

  .navlft .navtc li {
    margin-right: 2.24vw;
  }

  .navlft .navtc li a {
    font-size: 0.833vw;
  }

  .logo-mid {
    max-width: 7.656vw;
  }

  .logo-rotate-mid {
    max-width: 14.583vw;
  }

  /* hamburger menu end */
  .save-figs img {
    border-radius: 1.649vw;
    border: 0.33vw solid var(--footer-black);
  }

  .sub-menu {
    padding-top: 1.042vw;
    border-radius: 1.563vw;
  }

  .main-submenu {
    width: 33.385vw;
  }

  .solutions-action-btn
    .solutions-navigation.active
    .solutions-acc-box
    .solutions-acc-button
    h3 {
    font-size: 2.604vw;
    margin-bottom: 1.563vw;
  }

  .innovative-figure img {
    border-radius: 1.042vw;
  }

  .innovative-card .h4-title {
    margin-bottom: 1.563vw;
    max-width: 14.063vw;
  }

  .get-blk p {
    margin-bottom: 1.354vw;
  }

  .ftr-logo {
    width: 12.708vw;
  }

  .hdr-menu-wrap {
    padding-left: 4.115vw;
  }

  .transformed-blk {
    max-width: 72.604vw;
  }

  /* 14-6-24 */
  .innersubmenu-ul {
    width: 14.167vw;
  }

  .main-submenu.innersubmenu-ul a {
    padding: 1.042vw 1.042vw 1.302vw 1.042vw;
  }

  .sub-menu-top-box {
    border-radius: 1.042vw;
    padding: 1.667vw 1.875vw 1.719vw 1.875vw;
    margin-bottom: 2.083vw;
  }

  .sub-menu-top-box i {
    width: 2.344vw;
    min-width: 2.344vw;
  }

  .sub-menu-top-box-lft {
    width: calc(100% - 2.344vw);
    padding-left: 1.563vw;
  }

  .sub-menu-top-box-lft span {
    font-size: 1.397vw;
    line-height: 1.593vw;
    margin-bottom: 0.208vw;
  }

  .sub-menu-top-box-lft p {
    font-size: 0.781vw;
    line-height: 0.891vw;
  }

  .sub-menu-top-box i img {
    max-height: 2.604vw;
  }

  .main-submenu .submenuli a,
  .main-submenu .submenuli .sub-sub-menu-wrppr {
    font-size: 1.042vw;
    line-height: 1.188vw;
    padding-left: 1.042vw;
  }

  .submenuli:not(:last-child) {
    margin-bottom: 1.042vw;
  }

  .submenuli a > span {
    padding-left: 1.042vw;
  }

  .main-submenu .submenuli {
    /* min-width: 12.969vw;
      max-width: 14.583vw; */
    padding-right: 6.615vw;
  }

  .navbar-nav .main-submenu .sub-menu.innersubmenu-ul {
    top: 8.073vw;
    right: 1.042vw;
    border-radius: 1.042vw;
  }

  .innr-submenu-cont-box-head {
    font-size: 1.042vw;
    line-height: 1.15vw;
    width: calc(100% - 3.125vw);
  }

  .innersubmenu-ul p {
    font-size: 0.781vw;
    line-height: 0.891vw;
  }

  .innr-submenu-cont-box {
    margin-bottom: 0.729vw;
  }

  .innr-submenu-cont-box i {
    width: 3.125vw;
    height: 3.125vw;
  }

  .innr-submenu-cont-box i img {
    max-height: 1.75vw;
  }

  .hdr-products {
    padding: 1.406vw 1.042vw 1.302vw 1.042vw;
    border-radius: 1.042vw;
    margin-top: 2.083vw;
  }

  .hdr-products-head {
    font-size: 1.042vw;
    line-height: 1.188vw;
    margin-bottom: 1.042vw;
    max-width: 14.583vw;
  }

  .hdr-products-ul li:not(:last-child) {
    margin-right: 1.042vw;
  }

  .hdr-products-ul li a {
    font-size: 0.781vw;
    line-height: 0.891vw;
  }

  .main-menu-lis > a {
    padding: 1.719vw 0;
  }

  .main-submenu::before {
    left: 8.594vw;
    top: -0.625vw;
    width: 1.302vw;
    height: 0.781vw;
    background-size: 1.302vw;
  }

  .main-menu-lis > a::after {
    width: 0.521vw;
    height: 0.313vw;
    background-size: 0.521vw;
  }

  .main-menu-lis > a {
    padding: 1.719vw 0;
  }

  .main-menu-box-wrappers {
    padding: 1.042vw 1.042vw 1.615vw 1.042vw;
    border-radius: 1.563vw;
    min-height: 19.531vw;
  }

  .new-navlist li a em {
    padding-left: 1.042vw;
  }

  .new-navlist li a em img {
    width: 1.042vw;
  }

  .close-btn {
    width: 3.646vw;
    height: 3.646vw;
    margin-left: 1.042vw;
  }

  .close-btn img {
    width: 0.729vw;
  }

  .navbar-nav .main-menu-lis .main-menu-box-wrappers::before {
    top: -0.573vw;
    width: 1.302vw;
    height: 0.781vw;
    background-size: 1.302vw;
  }

  .navbar-nav .main-menu-lis:nth-child(1) .main-menu-box-wrappers::before {
    left: 8.646vw;
  }

  .navbar-nav .main-menu-lis:nth-child(2) .main-menu-box-wrappers::before {
    left: 17.865vw;
  }

  .one-icon-box img {
    max-height: 4.375vw;
  }

  .save-lft i img {
    max-height: 3.125vw;
  }

  .main-menu-lis > a::after {
    background-size: 0.625vw;
  }

  .solutions-acc-box .solutions-acc-button h3 {
    font-size: 1.563vw;
  }

  .why-icustoms-section-heading h2 {
    padding-bottom: 5.646vw;
  }

  .addrs-ul span {
    margin-bottom: 1.042vw;
  }

  .copy-symbol {
    font-size: 1.198vw;
    padding: 0 0.521vw 0 1.615vw;
  }

  .main-submenu .innersubmenu-ul a,
  .main-submenu .innersubmenu-ul .sub-sub-menu-wrppr {
    padding: 1.042vw 1.042vw 1.302vw 1.042vw;
  }

  /* 14-6-24 */

  /* 08.07.24 start */

  .solutions-blk .cmn-sec-head h2 {
    margin-bottom: 0;
  }

  .solutions-blk .cmn-sec-head h2 {
    margin-bottom: 0.521vw;
  }

  .solutions-blk .cmn-sec-head {
    margin-bottom: 7.448vw;
  }

  .solutions-blk .cmn-sec-head p {
    font-size: 2.083vw;
  }

  /* 08.07.24 end */

  /* 09.07.24 start */

  .ban-blks-lft.innr-bnnr-content h1 {
    margin-bottom: 2.344vw;
  }

  .ban-blks-lft h1 i {
    width: 5.208vw;
    height: 5.208vw;
    padding: 1.146vw;
    margin-right: 1.563vw;
  }

  .main-banner.innr-bnnr-sec {
    padding: 14.323vw 0 6.875vw;
  }

  .innr-bnnr-content .ban-para {
    margin-bottom: 6.667vw;
  }

  .unlimit-sec {
    padding-top: 7.813vw;
    padding-bottom: 10.417vw;
  }

  .unlimit-head {
    max-width: 56.771vw;
    margin-bottom: 5.052vw;
  }

  .unlimit-head p {
    max-width: 35.833vw;
  }

  .innovative-sec .sec-head {
    margin-bottom: 5.208vw;
  }

  .innovative-sec .sec-head h2 {
    margin-bottom: 1.563vw;
  }

  .innovative-sec .sec-head .txt-dwnshadow {
    max-width: 40.208vw;
  }

  .unlimit-rw {
    --bs-gutter-x: 4.063vw;
  }

  .unlimit-wrppr {
    border-radius: 2.031vw;
    padding: 7.031vw 2.865vw 7.813vw;
  }

  .unlimit-wrppr .card-icon {
    width: 5.052vw;
    margin-bottom: 2.083vw;
  }

  .unlimit-wrppr h3 {
    max-width: 22.135vw;
    min-height: 6vw;
  }

  .unlimit-wrppr ul {
    margin-bottom: 3.125vw;
  }

  .unlimit-rght-wrrp .unlimit-shpe {
    max-width: 19.271vw;
    bottom: 2.083vw;
    right: 2.083vw;
  }

  .innovative-rw {
    --bs-gutter-x: 1.042vw;
    --bs-gutter-y: 1.042vw;
  }

  .innovative-wrppr {
    border-radius: 1.563vw;
    /* padding: 5.573vw 3.125vw 6.771vw; */
    padding: 3.438vw 3.125vw 3.125vw;
  }

  .innovative-wrppr .innovative-icon {
    width: 5.208vw;
    height: 5.208vw;
    padding: 1.354vw;
    top: 2.344vw;
    right: 1.979vw;
  }

  .innovative-wrppr h3 {
    font-size: 4.888vw;
    margin-bottom: 3.229vw;
  }

  /* .innovative-wrppr p {
        margin-bottom: 6.51vw;
    } */

  .innov-btn-wrppr {
    padding-top: 5.208vw;
  }

  .testimonial-sec {
    padding-top: 12.708vw;
    padding-bottom: 10.417vw;
  }

  .testimonial-sec .sec-head {
    margin-bottom: 4.635vw;
  }

  .testi-icon-main {
    margin-bottom: 3.125vw;
  }

  .testi-icon-bx {
    width: 5.833vw;
    height: 5.833vw;
    border-radius: 0.781vw;
    padding: 1.094vw;
  }

  .testi-icon-bx:not(:last-child) {
    margin-right: 1.042vw;
  }

  .testi-icon-bx.orange-bx {
    width: 12.708vw;
  }

  .feed-main {
    max-width: 40.365vw;
  }

  .feed-content p {
    font-size: 2.083vw;
  }

  .feed-content {
    margin-bottom: 2.083vw;
  }

  .feed-user-wrppr p {
    font-size: 1.042vw;
  }

  .feed-user-wrppr .feed-user {
    font-size: 1.25vw;
    margin-bottom: 0.521vw;
  }

  .manage-sec {
    padding-bottom: 7.552vw;
    padding-top: 5.208vw;
  }

  .manage-img-wrppr {
    padding-right: 4.896vw;
  }

  .manage-img-wrppr-innr {
    padding-top: 1.563vw;
    padding-right: 5.99vw;
  }

  .manage-img-big {
    max-width: 15.625vw;
  }

  .manage-img-smll {
    max-width: 7.813vw;
  }

  .manage-img-vsmll {
    right: 4.427vw;
    max-width: 5.208vw;
  }

  .manage-content p {
    margin-bottom: 0.521vw;
  }

  .manage-content h2 {
    margin-bottom: 2.604vw;
  }

  .faq-sec {
    padding: 10.417vw 0;
  }

  .faq-sec .sec-head {
    margin-bottom: 4.948vw;
  }

  .each-faq {
    border-bottom: 0.052vw solid var(--black-clr);
  }

  .faq-hdng {
    padding: 2.24vw 1.563vw 2.24vw 5.729vw;
    font-size: 2.083vw;
  }

  .faq-hdng::before {
    width: 3.646vw;
    height: 3.646vw;
    background-size: 1.042vw;
    border: 0.052vw solid var(--footer-black);
  }

  .faq-ans {
    max-width: 64.208vw;
    padding: 0 5.729vw 3.125vw;
  }

  .unlimit-nav-btn-main {
    padding-top: 2.917vw;
  }

  .unlimit-navfor-sldier .each-item-wrppr-outtr {
    padding: 0 0.521vw;
  }

  .each-item-wrppr {
    padding: 1.563vw 2.083vw;
    border-radius: 1.042vw;
  }

  .each-item-wrppr i {
    width: 5vw;
  }

  .each-item-wrppr p {
    font-size: 1.823vw;
  }

  /* 09.07.24 end */

  /* 10.07.24 start */

  .idp-img-wrppr {
    max-width: 40.208vw;
  }

  .main-banner.innr-bnnr-sec.idp-innr-bnnr {
    padding: 12.812vw 0 7.031vw;
  }

  .idp-innr-bnnr .ban-blks-lft.innr-bnnr-content {
    padding-top: 1.563vw;
    max-width: 29.167vw;
  }

  .idp-innr-bnnr .innr-bnnr-content .ban-para {
    margin-bottom: 4.948vw;
    max-width: 28.906vw;
  }

  .idp-innov-wrppr {
    padding: 5.208vw 8.594vw 5.208vw 3.125vw;
    min-height: 39.375vw;
  }

  .idp-innov-wrppr .innovative-icon {
    width: 5.208vw;
    height: 5.208vw;
    padding: 1.042vw;
    top: 2.083vw;
    right: 2.083vw;
  }

  .idp-innov-wrppr h3 {
    max-width: 16.406vw;
    font-size: 2.604vw;
    margin-bottom: 3.125vw;
  }

  .idp-innov-wrppr li {
    margin-bottom: 1.823vw;
  }

  .innovative-sec .sec-head.idp-innov-head {
    margin-bottom: 9.792vw;
  }

  .idp-innov-img-wrppr {
    max-width: 35.417vw;
    margin-top: -3.229vw;
  }

  .idp-innov-rw:not(:last-child) {
    margin-bottom: 8.594vw;
  }

  .idp-innov-img-wrppr.secnd-img-idp {
    max-width: 33.333vw;
  }

  .idp-innov-img-wrppr.secnd-img-idp ul {
    bottom: 2.083vw;
    left: 2.083vw;
  }

  .idp-innov-img-wrppr.secnd-img-idp li:not(:last-child) {
    margin-bottom: 1.042vw;
  }

  .idp-innov-img-wrppr.secnd-img-idp li {
    font-size: 1.302vw;
    min-height: 4.167vw;
    padding: 1.302vw 1.563vw 1.302vw 5.208vw;
    border-radius: 2.604vw;
  }

  .idp-innov-img-wrppr.secnd-img-idp li i {
    width: 4.167vw;
    padding: 0.938vw;
  }

  .idp-innov-rw:nth-child(3) .idp-innov-img-wrppr {
    max-width: 30.729vw;
    margin-top: -2.083vw;
  }

  .benefit-idp-rw {
    margin: 0 -0.781vw 10.417vw;
  }

  .benefit-head-col {
    padding: 0 0.781vw;
  }

  .benefit-slider-col {
    padding: 0 0.781vw;
  }

  .benefit-head-innr {
    max-width: 19.635vw;
  }

  .benefit-head-innr .sec-head {
    margin-bottom: 2.083vw;
  }

  .cmn-benefit-arrw {
    width: 3.646vw;
    height: 3.646vw;
    border: 0.052vw solid var(--footer-black);
  }

  .cmn-benefit-arrw:not(:last-child) {
    margin-right: 1.042vw;
  }

  .benefit-each-item {
    padding: 0 0.521vw;
  }

  .benefit-card-wrppr {
    padding: 5.208vw 2.083vw 2.083vw;
    border-radius: 1.042vw;
  }

  .benefit-card-wrppr .benefit-icon {
    height: 7.813vw;
    margin-bottom: 3.438vw;
  }

  .benefit-card-wrppr h3 {
    font-size: 2.083vw;
    margin-bottom: 1.563vw;
  }

  .benefit-slider .slick-list {
    margin: 0 -0.521vw;
  }

  .benefit-slider-outtr {
    margin-right: calc(((100vw - 83vw) / 2) * -1);
  }

  .test-doc-main {
    border-radius: 1.042vw;
    padding: 4.167vw 5.885vw 4.167vw 5.469vw;
  }

  .test-doc-content {
    padding-right: 2.24vw;
  }

  .test-doc-btn-wrppr {
    padding-left: 2.24vw;
  }

  .test-doc-btn-wrppr .cmn-btn {
    min-width: 16.094vw;
  }

  .test-doc-icon {
    width: 7.083vw;
  }

  .test-doc-content .test-doc-info {
    padding-left: 4.271vw;
  }

  .test-doc-content .test-doc-info p {
    margin-bottom: 0.521vw;
  }

  .test-doc-content .test-doc-info h3 {
    font-size: 3.646vw;
  }

  .idp-contact-sec {
    padding: 10.417vw 0;
  }

  .idp-contact-main {
    border-radius: 1.042vw;
    padding: 3.646vw;
  }

  .idp-contact-content-wrppr .sec-head {
    max-width: 26.302vw;
    margin-bottom: 2.865vw;
  }

  .idp-contact-content-wrppr .sec-head h2 {
    margin-bottom: 3.125vw;
  }

  .idp-contact-content-wrppr li {
    font-size: 1.042vw;
    padding-left: 2.083vw;
    margin-bottom: 0.833vw;
  }

  .idp-contact-content-wrppr li::before {
    width: 1.042vw;
    height: 1.042vw;
  }

  .contact-frm-rw {
    --bs-gutter-x: 1.042vw;
    --bs-gutter-y: 1.042vw;
    margin-bottom: 2.083vw;
  }

  .frm-btn-check-rw {
    --bs-gutter-x: 1.042vw;
  }

  .frm-field-wrppr input,
  .frm-field-wrppr select {
    border-radius: 0.521vw;
    padding: 0 1.042vw;
    font-size: 1.042vw;
    border: 0.052vw solid var(--white-clr);
    height: 3.125vw;
  }

  .frm-field-wrppr textarea {
    border-radius: 0.521vw;
    font-size: 1.042vw;
    height: 9.375vw;
    padding: 1.042vw;
  }

  .frm-btn-check-wrappr .form_input_check label {
    padding-left: 2.083vw;
  }

  .frm-btn-check-wrappr .form_input_check label span {
    max-width: 10.938vw;
    font-size: 1.042vw;
  }

  .frm-btn-check-wrappr .form_input_check label span a {
    text-underline-offset: 0.26vw;
  }

  .frm-btn-check-wrappr
    .form_input_check
    label
    input[type="checkbox"]
    + span::before {
    width: 1.042vw;
    height: 1.042vw;
    border: 0.052vw solid var(--white-clr);
  }

  .frm-btn-check-wrappr
    .form_input_check
    label
    input[type="checkbox"]
    + span::after {
    width: 1.042vw;
    height: 1.042vw;
    background-size: 0.625vw;
  }

  .frm-btn-check-wrappr input[type="submit"] {
    border-radius: 0.521vw;
    font-size: 1.042vw;
    height: 3.125vw;
  }

  .idp-unlimit-sec .unlimit-head {
    max-width: 46.354vw;
    margin-bottom: 5.052vw;
  }

  .idp-unlimit-sec .unlimit-head h2 {
    max-width: 35.052vw;
    margin-bottom: 3.594vw;
  }

  .idp-unlimit-sec .unlimit-head p {
    max-width: 100%;
  }

  .incts-unlimit-sec .unlimit-head {
    max-width: 43.229vw;
    margin-bottom: 5.052vw;
  }

  .incts-unlimit-sec .unlimit-head h2 {
    max-width: 38.021vw;
    margin-bottom: 3.594vw;
  }

  .innovative-wrppr.incts-innov-wrppr {
    padding: 4.323vw 7.115vw 4.375vw 3.125vw;
    min-height: 39.375vw;
  }

  .incts-innov-icon {
    width: 5.208vw;
    height: 5.208vw;
    font-size: 2.396vw;
    top: 2.083vw;
    right: 2.083vw;
  }

  .incts-innov-icon .innr-shpe {
    width: calc(100% - 1.25vw);
    height: calc(100% - 1.25vw);
    top: 0.625vw;
    right: 0.625vw;
    border-radius: 5.208vw;
  }

  /* .incts-innov-icon.secnd::before,
    .innovative-rw.incts-innov-rw:nth-child(2) .incts-innov-icon::before {
        width: calc(50% - 0.625vw);
        height: calc(100% - 1.25vw);
        top: 0.625vw;
        right: 0.625vw;
        border-top-right-radius: 5.208vw;
        border-bottom-right-radius: 5.208vw;
    }

    .incts-innov-icon.third::before,
    .innovative-rw.incts-innov-rw:nth-child(3) .incts-innov-icon::before {
        width: calc(50% - 0.625vw);
        height: calc(100% - 1.25vw);
        top: 0.625vw;
        right: 0.625vw;
        border-top-right-radius: 5.208vw;
        border-bottom-right-radius: 5.208vw;
    }

    .incts-innov-icon.third::after,
    .innovative-rw.incts-innov-rw:nth-child(3) .incts-innov-icon::after {
        width: calc(50% - 0.625vw);
        height: calc(50% - 0.625vw);
        bottom: 0.625vw;
        left: 0.625vw;
        border-bottom-left-radius: 5.208vw;
    }

    .incts-innov-icon.fourth::before,
    .innovative-rw.incts-innov-rw:nth-child(4) .incts-innov-icon::before {
        width: calc(100% - 1.25vw);
        height: calc(100% - 1.25vw);
    } */

  .incts-innov-rw {
    --bs-gutter-x: 1.042vw;
  }

  .incts-innov-rw:not(:last-child) {
    margin-bottom: 8.75vw;
  }

  .innovative-wrppr.incts-innov-wrppr h3 {
    font-size: 2.604vw;
    margin-bottom: 4.688vw;
  }

  .innovative-wrppr.incts-innov-wrppr li:not(:last-child) {
    margin-bottom: 1.823vw;
  }

  .incts-feed-sec {
    padding: 10.417vw 0;
  }

  /* 10.07.24 end */

  /* 11.07.24 start */

  .custm-agent-bnnr-sec .innr-bnnr-content .ban-para {
    max-width: 27.083vw;
  }

  .page-template-partners .custm-agent-bnnr-sec .innr-bnnr-content .ban-para {
    max-width: 30.083vw;
  }

  .page-template-integrations
    .custm-agent-bnnr-sec
    .innr-bnnr-content
    .ban-para {
    max-width: 45vw;
  }

  .unlimit-wrppr.cutm-agent-wrppr ul {
    margin-bottom: 4.531vw;
    font-size: 1.25vw;
  }

  .custm-agent-unlimit-sec .unlimit-head {
    max-width: 47vw;
  }

  .custm-agent-innov-rw .innovative-wrppr {
    padding: 9.375vw 2.083vw 3.906vw 3.125vw;
  }

  .custm-agent-innov-rw .innovative-wrppr .bdr-btn {
    padding: 0.938vw 2.813vw;
  }

  .custm-agent-innov-sec {
    padding-bottom: 15vw;
  }

  .benefit-idp-sec {
    padding-top: 10.417vw;
    padding-bottom: 14.063vw;
  }

  .custm-agent-benefit-sec {
    padding-bottom: 10.417vw;
  }

  .custm-agent-benefit-sec .test-doc-icon {
    width: 6.25vw;
  }

  .custm-agent-benefit-sec .test-doc-btn-wrppr .cmn-btn {
    min-width: 12.76vw;
  }

  .custm-agent-benefit-sec .test-doc-btn-wrppr {
    padding-top: 2.344vw;
  }

  .custm-agent-benefit-sec .test-doc-main {
    margin-bottom: 10.417vw;
  }

  .flag-all-wrppr {
    max-width: 26.563vw;
  }

  .flag-all-wrppr .flag-wrppr {
    width: 10.417vw;
    height: 10.417vw;
  }

  .setting-icon {
    width: 7.813vw;
    height: 7.813vw;
    padding: 1.719vw;
    margin: 0 -1.042vw;
  }

  .custm-agent-manage-sec {
    padding: 7.292vw 0;
  }

  .custm-agent-idp-sec .idp-contact-content-wrppr .sec-head {
    max-width: 29.167vw;
  }

  .custm-declear-sec {
    padding: 10.417vw 0;
  }

  .custm-declear-txt-wrppr .sec-head {
    margin-bottom: 8.438vw;
  }

  .slider-countr-wrppr .counter-numbers-text {
    font-size: 1.042vw;
  }

  .slider-countr-wrppr .counter-amin {
    width: 1.563vw;
  }

  .slider-countr-wrppr .count-progress-bar-outer {
    width: 0.156vw;
  }

  .othr-custm-declear-slidr {
    padding-left: 3.177vw;
    min-height: 30.729vw;
  }

  .product-navigation {
    margin-bottom: 1.042vw;
  }

  .custm-declear-wrappr {
    border-radius: 1.042vw;
  }

  .custm-declear-wrappr h3 {
    font-size: 2.083vw;
  }

  .custm-declear-wrappr .span-icon {
    width: 2.083vw;
    height: 2.083vw;
    padding: 0.417vw;
  }

  .product-navigation.active .custm-declear-wrappr {
    /* padding: 1.563vw 2.083vw; */
    margin: 2.083vw 0;
  }

  .product-navigation.active .custm-declear-wrappr h3 {
    margin-bottom: 0.521vw;
  }

  .unlimit-rght-wrrp > svg {
    height: 5.208vw;
    width: 5.208vw;
  }

  .unlimit-navfor-sldier {
    gap: 1.042vw;
  }

  .unlimit-navfor-sldier a {
    width: calc(33.33% - 0.729vw);
  }

  .svg-wrppr {
    position: absolute;
    top: 2.083vw;
    right: 2.083vw;
    width: 5.208vw;
  }

  /* 11.07.24 end */

  /* 15.07.24 end */

  .sec-head.unlimit-head h2 {
    font-size: 4.688vw;
  }

  .innov-btn-wrppr > *:not(:last-child),
  .all-btn-wrpp > *:not(:last-child),
  .custm-declear-txt-wrppr .btn-wrppr > *:not(:last-child),
  .sec-head.manage-content .btn-all-wrppr > *:not(:last-child) {
    margin-right: 1.042vw;
  }

  .slider-countr-wrppr .counter-numbers-text.active {
    margin-bottom: 0.26vw;
  }

  .slider-countr-wrppr .counter-numbers-text.total {
    margin-top: 0.26vw;
  }

  .unlimit-wrppr ul li {
    font-size: 1.25vw;
  }

  .incts-cmn-faq .faq-ans {
    padding-right: 6.875vw;
  }

  /* 15.07.24 end */

  /* AD 18/07/2024 */
  .gform_wrapper.gravity-theme form input[type="text"],
  .gform_wrapper.gravity-theme form input[type="tel"],
  .gform_wrapper.gravity-theme form input[type="password"],
  .gform_wrapper.gravity-theme form input[type="email"],
  .gform_wrapper.gravity-theme form select {
    border-radius: 0.521vw;
    padding: 0 1.042vw;
    font-size: 1.042vw;
    border: 0.052vw solid var(--white-clr);
    height: 3.125vw;
  }

  .gform_wrapper.gravity-theme form textarea {
    border-radius: 0.521vw;
    font-size: 1.042vw;
    height: 9.375vw;
    padding: 1.042vw;
  }

  .gform_wrapper.gravity-theme #gform_1 .gform_fields {
    grid-column-gap: 1.042vw;
    grid-row-gap: 1.042vw;
  }

  .gform_wrapper.gravity-theme #gform_1 .gform_footer {
    margin-top: 2.083vw;
  }

  .gform_wrapper.gravity-theme #gform_1 .gform_footer input[type="submit"] {
    border-radius: 0.521vw;
    font-size: 1.042vw;
    height: 3.125vw;
    max-width: 17.625vw;
  }

  .idp-contact-frm-wrppr #gform_confirmation_message_1 {
    max-width: 25vw;
  }

  /* AD 18/07/2024 END */
  /* AD 19/07/2024 */
  .gform_wrapper.gravity-theme
    form
    input[type="checkbox"]
    + label.gform-field-label {
    font-size: 1.042vw;
    padding-left: 1.783vw;
  }

  .gform_wrapper.gravity-theme
    form
    input[type="checkbox"]
    + label.gform-field-label::before {
    width: 1.042vw;
    height: 1.042vw;
    border: 0.052vw solid var(--white-clr);
  }

  .gform_wrapper.gravity-theme
    form
    input[type="checkbox"]
    + label.gform-field-label::after {
    width: 1.042vw;
    height: 1.042vw;
    background-size: 0.625vw;
  }

  .gform_wrapper.gravity-theme
    form
    input[type="checkbox"]
    + label.gform-field-label
    a {
    text-underline-offset: 0.26vw;
  }

  .error404 .error-wraper.cmn-gap {
    padding: 16.75vw 0 10.5vw;
    text-align: center;
  }

  .error404 .error-wraper.cmn-gap .error-btn {
    margin-top: 1.875vw;
  }

  .tnc-sec {
    padding: 6.25vw 0;
  }

  /* AD 19/07/2024 END */

  /* 22/07/2024 work start */

  .blog-body-area {
    padding: 5.208vw 0px;
  }

  .filbtn.cmn-btn {
    min-width: 8.646vw;
    height: 3.125vw;
  }

  .categlist {
    padding: 2.083vw;
    border-radius: 20px;
  }

  .blogrgt-catwrpr .categlist {
    margin-top: 1.042vw;
  }

  .blogrgt-catwrpr .categlist:before {
    top: -1.458vw;
    left: 3.375vw;
    border: 0.781vw solid transparent;
    border-bottom: 0.781vw solid #fff;
  }

  .blogrgt-catwrpr .categlist ul {
    margin: -1.042vw;
  }

  .blogrgt-catwrpr .categlist li {
    margin: 1.042vw;
  }

  .blogrgt-catwrpr .categlist li a {
    border: 0.052vw solid #1e1e1e;
    border-radius: 5.208vw;
    padding: 0.781vw 1.823vw;
    font-size: 1.042vw;
  }

  .filter-purpose {
    margin-bottom: 3.125vw;
  }

  .blg-contbox {
    padding: 1.042vw;
    border-radius: 0px 0px 1.042vw 1.042vw;
  }

  .innercat-list li a {
    padding: 0.313vw 0.781vw;
    border: 0.052vw solid #000;
    border-radius: 1.563vw;
    font-size: 0.521vw;
  }

  .innercat-list {
    margin-bottom: 1.563vw;
  }

  .innercat-list ul {
    margin: -0.26vw;
  }

  .innercat-list li {
    margin: 0.26vw;
  }

  .blg-contbox .h2-title {
    font-size: 1.563vw;
  }

  .date-author-wrap {
    margin-top: 2.083vw;
    font-size: 1.042vw;
  }

  .blg-lst-mainwrpr .row {
    --bs-gutter-y: 2.604vw;
  }

  .pagination {
    margin-top: 1.563vw;
  }

  .page-numbers {
    margin: 0.521vw;
  }

  .blog_dtls_inner {
    padding: 5.208vw 0px !important;
  }

  .blog-post-dtls-head {
    margin-bottom: 4.167vw;
  }

  .blog-post-dtls-head > * {
    font-size: 1.042vw;
    border-right: 1px solid var(--blue-clr);
    padding-right: 1.042vw;
    padding-left: 1.042vw;
  }

  .blg-prfl-icon {
    width: 2.344vw;
    flex-shrink: 0;
    padding: 0px;
    border: 0px;
  }

  .blg-dtls-cont-wrapr > * {
    margin-bottom: 1.042vw;
  }

  .blg-dtls-cont-wrapr h2 {
    font-size: 2.083vw;
    margin-top: 2.083vw;
  }

  .blogDtlsec {
    padding-bottom: 5.208vw;
  }

  .about-icustom {
    border-radius: 1.042vw;
    padding: 2.604vw 1.302vw;
    font-size: 1.042vw;
    margin-bottom: 2.083vw;
  }

  .about-icustom h4 {
    font-size: 1.563vw;
  }

  .about-icustom .stsrt-btn {
    margin-top: 2.083vw;
  }

  .products-sec {
    border-radius: 1.042vw;
    padding: 1.042vw;
    margin-bottom: 2.083vw;
  }

  .productt-box {
    border-radius: 1.042vw;
    padding: 1.042vw;
    margin-bottom: 1.563vw;
  }

  .productt-box i img {
    width: 2.344vw;
  }

  .productt-box i {
    margin-right: 0.781vw;
  }

  .product-top-box-lft span {
    font-size: 1.354vw;
  }

  .product-top-box-lft p {
    font-size: 0.781vw;
  }

  .blgpg-lftcol .lower-list li {
    margin-top: 0.781vw;
  }

  .blgpg-lftcol .lower-list li a {
    font-size: 1.042vw;
  }

  .blgpg-lftcol .lower-list li a:after {
    width: 1.042vw;
    height: 1.042vw;
    background-size: 1.042vw;
    right: -1.563vw;
  }

  .get-in-touch h2 {
    margin-bottom: 1.563vw;
  }

  .contact-top-blk {
    padding: 5.208vw 0px;
  }

  .contact-area-box {
    border-radius: 1.042vw;
    padding: 1.563vw 0.781vw;
  }

  .contact-area-box i img {
    width: 2.865vw;
  }

  .contact-area-box i {
    margin-bottom: 1.042vw;
  }

  .contact-area-box .h5-title {
    margin-bottom: 0.26vw;
  }

  .contact-top-blk .row {
    --bs-gutter-y: 1.25vw;
  }

  /* 22/07/2024 work end */

  /* SS CSS Begin 19-08-2024 */

  .testi-icon-bx {
    width: 12.708vw;
    background: var(--white-clr);
  }

  .idp-bsub {
    margin-bottom: 2.344vw;
  }

  .idp-bsub h3 {
    margin-left: 9vw;
    font-size: 1.97vw;
  }

  .ban-blks-lft.innr-bnnr-content .idp-bsub h1 {
    margin-bottom: 0;
  }

  .idp-innr-bnnr .ban-blks-lft.innr-bnnr-content.idp-pur {
    max-width: 49.167vw;
  }

  .all-similir-sect .idp-innr-bnnr .ban-blks-lft.innr-bnnr-content {
    max-width: 39vw;
  }

  .all-similir-sect .innovative-wrppr ul li strong {
    margin-bottom: 0.26vw;
  }

  .all-similir-sect .innovative-sec.product-innovative {
    padding-top: 10.417vw;
  }

  .all-similir-sect .product-innovative .innovative-wrppr {
    padding: 9.375vw 3.125vw 3.854vw;
  }

  .all-similir-sect .test-doc-btn-wrppr .cmn-btn {
    min-width: 10.521vw;
  }

  .all-similir-sect .test-doc-content .test-doc-info {
    padding-left: 4.167vw;
  }

  .faq-ans li {
    padding-left: 2.083vw;
  }

  .idp-unlimit-sec .unlimit-head h2 {
    max-width: 35.052vw;
    margin-bottom: 3.594vw;
  }

  /* End Of SS CSS 19-08-2024 */
  /*support pp.c 20/8/2024*/
  .full-contact-wraper .test-doc-main .cmn-btn {
    min-width: 10.521vw;
  }

  /*about us*/
  .abt-misionsec {
    padding: 10.417vw 0 10vw 0;
  }

  .abt-msn-contwrpr {
    padding: 5.729vw 2.865vw;
    border-radius: 1.042vw;
  }

  .abt-msn-contwrpr .card-icon {
    margin-bottom: 2.083vw;
  }

  .abt-msn-contbx h2 {
    margin-bottom: 2.604vw;
  }

  .abt-msn-contbutn {
    margin-top: 2.604vw;
  }

  .abt-msn-contwrpr .card-icon {
    width: 5.052vw;
    margin-bottom: 2.083vw;
  }

  .our-visionsec {
    padding: 10.417vw 0;
  }

  .abtvst-contwrp .sec-head {
    margin-bottom: 6.25vw;
  }

  /*support pp.c 20/8/2024*/

  /* support starts 21.08.2024  */
  .our-vsn-sldroutr {
    margin-right: calc(((100vw - 83vw) / 2) * -1);
  }

  .abt-card-wppr p {
    font-size: 1.563vw;
  }

  .abt-vsn-slider .slick-list {
    margin: 0 -0.521vw;
  }

  .abt-card-wppr .h4-title {
    font-size: 2.083vw;
  }

  .our-vsn-sldr .abt-card-wppr.abt-img {
    border-radius: 0.833vw;
  }

  .company-profile-sec {
    padding: 10.417vw 0;
  }

  .cmpny-top-img {
    border-radius: 1.563vw;
  }

  .cmpny-card-outer {
    margin-bottom: 3.125vw;
  }

  .company-img-content-wppr button[type="button"] {
    width: 3.646vw;
    height: 3.646vw;
    top: 2.083vw;
    right: 2.083vw;
  }

  .btn-outer.open {
    border-width: 0.052vw;
  }

  .card-blue-bg {
    padding: 7.292vw 2.083vw 2.083vw;
    border-radius: 1.563vw;
  }

  .card-list li a {
    padding: 0.573vw;
    border-radius: 0.208vw;
  }

  .card-list li:not(:last-child) {
    margin-right: 1.042vw;
  }

  .name-innr-wppr .h3-title {
    margin-bottom: 0.521vw;
  }

  .padding-right {
    padding-right: 3.125vw;
  }

  .padding-left {
    padding-left: 3.125vw;
  }

  .sponsor-sec {
    padding: 10.417vw 0;
  }

  .spnsr-logo-items {
    padding: 1.979vw 4.167vw;
    border-radius: 1.042vw;
  }

  .spnsr-each-card {
    padding: 0 0.521vw;
  }

  .our-award-sec {
    padding: 10.417vw 0;
  }

  .our-award-sec .sec-head h2 {
    font-size: 3.646vw;
  }

  .our-award-sec .sec-head {
    margin-bottom: 7.813vw;
  }

  .award-innr-card {
    padding: 7.813vw 1.563vw;
    border-radius: 0.521vw;
  }

  .awrd-txt h3 {
    font-size: 1.563vw;
  }

  .award-img-wpr {
    margin-bottom: 2.604vw;
  }

  .award-row {
    --bs-gutter-x: 1.042vw;
    --bs-gutter-y: 1.042vw;
  }

  .our-office-sec {
    padding-top: 10.417vw;
  }

  .office-img-wppr {
    max-width: 66.51vw;
    margin: 0 auto -14.583vw;
  }

  .office-rit-txt {
    padding-left: 6.771vw;
  }

  .office-lft-img {
    border-radius: 1.563vw;
  }

  .office-rit-txt h2 {
    font-size: 3.646vw;
  }

  .office-rit-txt h3 {
    font-size: 1.563vw;
    margin-bottom: 0.521vw;
  }

  .office-rit-txt p {
    font-size: 1.563vw;
  }

  .page-template-custom-agent .innr-bnnr-sec .bdr-btn {
    border-width: 0.052vw;
  }

  .support-slide-sec {
    padding: 10.417vw 0;
  }

  .serv-card-wpr {
    padding: 1.563vw;
    min-height: 12.396vw;
    border-radius: 1.042vw;
  }

  .service-innr-card-each {
    padding: 0.521vw;
  }

  /* support ends 21.08.2024  */
  /* support Start 22.08.2024  */
  .integrations-top {
    padding: 10vw 0;
  }

  .integrations-top .sec-head-para {
    max-width: 22vw;
  }

  .integrations-top .sec-head-para {
    margin-bottom: 4vw;
    margin-top: 4vw;
  }

  .tab-slidernav-item-wrap span {
    font-size: 1.1vw;
    margin-left: 1.6vw;
  }

  .slider-nav img {
    width: 3.3vw;
  }

  .slider-for {
    width: 28vw;
  }

  .slider-nav {
    width: 18vw;
    margin: auto 0;
  }

  .tab-slidernav-item-wrap {
    min-height: 4vw;
    padding: 10px;
  }

  .other-integrations-sec {
    padding: 10.417vw 0;
  }

  .logo-wrap {
    min-height: 9vw;
  }

  .other-integrations-sec .sec-head {
    margin-bottom: 4.4vw;
  }

  .other-integrations-sec .logo-list {
    margin-bottom: 10.417vw;
  }

  .other-integrations-sec .test-doc-btn-wrppr .cmn-btn {
    min-width: 13.094vw;
  }

  .abtvst-contwrp .sec-head {
    margin-bottom: 5vw;
  }

  .abtvst-contwrp .sec-head h2 {
    margin-bottom: 4.375vw;
  }

  /* =====glossary page===== */
  .page-template-glossary .faq-sec {
    padding: 18.75vw 0 10.573vw;
  }

  .faq-ans {
    font-size: 1.563vw;
  }

  /* ======partners page==== */
  .partners-title-wrap {
    margin-bottom: 3.646vw;
  }

  .partners-title-wrap h2 {
    margin-bottom: 0.521vw;
  }

  .custm-declear-sec-partners .othr-custm-declear-slidr {
    min-height: 28.125vw;
  }

  .custm-declear-txt-col-partners {
    padding-right: 7.292vw;
  }

  .booking-sec {
    padding: 10.417vw 0;
  }

  .booking-head h2 {
    font-size: 4.688vw;
    margin-bottom: 3.646vw;
  }

  .booking-head {
    margin-bottom: 5.208vw;
    max-width: 48.177vw;
  }

  /* support ends 22.08.2024  */
  /* support Start 23.08.2024  */
  /* ======partners page==== */
  .benefit-idp-sec-partners {
    padding: 10.417vw 0;
  }

  .benefit-idp-sec-partners .benefit-idp-rw {
    margin-bottom: 0;
  }

  .booking-head p {
    max-width: 26vw;
  }

  /*support pp.c 23/8/2024*/
  /*t/c cookie privacy*/
  .main-banner.innr-bnnr-sec.policy-page-purpose {
    padding: 18.75vw 0 6.25vw 0;
  }

  .policy-page-purpose .innr-bnnr-content .policy-ban-para {
    max-width: 67.813vw;
    margin-top: 7.813vw;
  }

  .policy-page-purpose .policy-ban-para h2 {
    font-size: 2.604vw;
    margin-bottom: 3.125vw;
  }

  .policy-section .polici-faq .sec-head {
    margin-bottom: 2.604vw;
  }

  .policy-section .polici-faq .sec-head h2 {
    font-size: 2.604vw;
  }

  /*t/c cookie privacy*/
  /*=====blog page=====*/
  .blogsec .blg-lstimg {
    height: 12.806vw;
  }

  /*=====blog page=====*/
  /*=====blog details page=====*/
  .single-post .blog_dtls_inner {
    padding: 15.052vw 0 0 0 !important;
  }

  .single-post .blogDtlsec .blg-dtls-hdng-wrpr h1 {
    font-size: 2.604vw;
    margin-bottom: 3.125vw;
  }

  .single-post .blogDtlsec .blg-dtls-cont-wrapr img {
    margin-bottom: 4.063vw;
  }

  .single-post .blogDtlsec .blg-dtls-cont-wrapr p {
    font-size: 1.25vw;
  }

  .single-post .blg-dtls-cont-wrapr h3 {
    font-size: 1.823vw;
    margin-bottom: 1.302vw;
  }

  .single-post .blg-dtls-cont-wrapr h4 {
    font-size: 1.563vw;
    margin-bottom: 1.302vw;
  }

  .single-post .blg-dtls-cont-wrapr h2 {
    margin-bottom: 2.604vw;
    margin-top: 5.208vw;
  }

  .blgcmnsn-prdtwrpr {
    border-radius: 1.042vw;
    padding: 1.042vw;
  }

  .blgcmnsn-prd-hd {
    font-size: 1.042vw;
    margin-bottom: 1.042vw;
  }

  .blgcmnsn-prdt-list ul {
    margin: 0 -0.26vw -0.208vw -0.26vw;
  }

  .blgcmnsn-prdt-list ul li {
    padding: 0 0.26vw 0.208vw 0.26vw;
  }

  .blgcmnsn-prdt-list ul li a {
    font-size: 0.781vw;
  }

  .single-post .blg-dtls-wrapr {
    padding-right: 6.354vw;
  }

  /*=====blog details page=====*/
  /*support pp.c 23/8/2024*/
  /*support 26/8/2024*/
  /*home page*/
  .page-template-home .main-banner .ban-blks-lft h1 {
    margin-bottom: 4.688vw;
  }

  .page-template-home .main-banner .ban-para {
    margin-bottom: 4.167vw;
  }

  .page-template-home .main-banner .ban-crcl {
    top: -1.104vw;
  }

  /*home page*/
  /*blog details page*/
  .single-post .blg-dtls-cont-wrapr table {
    font-size: 1.146vw;
  }

  .single-post .blg-dtls-cont-wrapr table tr td:nth-child(odd) {
    border-radius: 0.781vw;
  }

  .single-post .blg-dtls-cont-wrapr table tbody tr {
    border-radius: 0.781vw;
  }

  .single-post .blg-dtls-cont-wrapr table tr td {
    padding: 0.885vw 0.885vw;
  }

  .single-post .blg-dtls-cont-wrapr table thead {
    margin-bottom: 0.052vw;
  }

  .single-post .blg-dtls-cont-wrapr table thead tr {
    border-radius: 0.781vw;
  }

  .single-post .blg-dtls-cont-wrapr table tr td:last-child {
    border-top-right-radius: 0.781vw;
    border-bottom-right-radius: 0.781vw;
  }

  .single-post .blg-dtls-cont-wrapr table thead tr th {
    padding: 1.042vw 0.885vw;
  }

  .single-post .blg-dtls-cont-wrapr table thead tr th:nth-child(odd) {
    border-radius: 0.781vw;
  }

  /*blog details page*/
  .masterlist .unlimite-wraping {
    padding: 2.083vw;
  }

  .masterlist .idp-innov-img-wrppr.secnd-img-idp {
    padding: 0 0.521vw;
  }

  .masterlist .unlimite-wraping .unlimit-shpe {
    padding: 0 0.521vw;
  }

  .masterlist {
    min-height: 40.365vw;
    padding-top: 7.813vw;
  }

  .faq-ans ul li::before {
    top: 0.873vw;
  }

  /*support 26/8/2024*/

  /* 27/08/2024 dm */

  .register-sec {
    padding-top: 15.417vw;
    padding-bottom: 10.417vw;
  }

  .register-card {
    padding: 0.521vw;
    max-width: 26.458vw;
    border-radius: 1.042vw;
  }

  .register-card .card-head figure {
    padding: 2.292vw 0.521vw;
    border-radius: 0.521vw;
    margin-bottom: 1.563vw;
  }

  .register-card .card-head figure a {
    max-width: 2.865vw;
  }

  .register-card .card-head h1 {
    font-size: 1.563vw;
  }

  .register-card .card-head {
    padding-bottom: 1.563vw;
    border-bottom: 0.052vw solid #e3eff0;
    margin-bottom: 1.563vw;
  }

  .register-card .card-cont {
    max-width: 23.125vw;
  }

  .register-card .form-input label {
    font-size: 1.042vw;
    margin-bottom: 0.521vw;
  }

  .register-card .form-input label sup {
    top: -0.104vw;
  }

  .register-card .form-input input[type="text"],
  .register-card .form-input input[type="email"] {
    height: 3.125vw;
    border-radius: 0.521vw;
    font-size: 0.833vw;
    padding: 0 1.042vw;
    border: 0.052vw solid transparent;
  }

  .register-card .form-input:not(:last-child) {
    margin-bottom: 1.042vw;
  }

  .register-card .form-input.checkbox-wrap label {
    font-size: 0.833vw;
  }

  .register-card .checkbox-wrap label span {
    padding-left: 1.563vw;
  }

  .register-card .checkbox-wrap label span::before {
    width: 1.042vw;
    height: 1.042vw;
    border-radius: 0.26vw;
    border: 0.052vw solid var(--black-clr);
  }

  .register-card .checkbox-wrap label span::after {
    top: 0.26vw;
    left: 0.26vw;
    background-size: 0.521vw;
    width: 0.521vw;
    height: 0.521vw;
  }

  .register-card .checkbox-wrap label:not(:last-child) {
    margin-bottom: 1.042vw;
  }

  .register-card .form-input input[type="submit"] {
    height: 3.177vw;
    padding: 0 2.813vw;
    font-size: 1.042vw;
    border-radius: 5.208vw;
  }

  /* .register-card .form-input:last-child {
        margin-bottom: 3.125vw;
        margin-top: 3.125vw;
    } */

  .register-card .card-footer-cont {
    padding: 1.563vw 0 1.042vw;
    border-top: 0.052vw solid #e3eff0;
  }

  .register-card .card-footer-cont p {
    font-size: 0.833vw;
  }

  /* 27/08/2024 dm */

  /* 28.08.24 start */

  .save-lft .cmn-btn {
    min-width: 13.542vw;
  }

  .ftrclm-lower {
    padding-top: 3.229vw;
  }

  .ftrclm-lower .addrs-ul li {
    margin: 0 1.042vw 0 0;
  }

  .ftrclm-lower .addrs-ul li a {
    border: 0.052vw solid var(--light-white);
    border-radius: 2.604vw;
    font-size: 1.042vw;
    padding: 0.833vw 2.813vw 0.99vw;
  }

  /* 28.08.24 end */

  /* 29.08.24 start */

  .sub-sub-menu-wrppr p {
    max-width: 10.417vw;
  }

  .page-id-725 .incts-unlimit-sec .unlimit-head {
    max-width: 50.781vw;
  }

  .page-id-725 .incts-unlimit-sec .unlimit-head h2 {
    max-width: 39.063vw;
  }

  /* .page-id-725 .innovative-rw.incts-innov-rw:nth-child(1) .incts-innov-icon::before {
        width: calc(100% - 1.25vw);
        height: calc(100% - 1.25vw);
        border-radius: 5.208vw;
    }

    .page-id-725 .innovative-rw.incts-innov-rw:nth-child(2) .incts-innov-icon::before {
        width: calc(100% - 1.25vw);
        height: calc(100% - 1.25vw);
        border-radius: 5.208vw;
    }

    .page-id-725 .innovative-rw.incts-innov-rw:nth-child(3) .incts-innov-icon::before {
        width: calc(100% - 1.25vw);
        height: calc(100% - 1.25vw);
    } */

  /* 29.08.24 end */

  /* after marge start */

  .page-id-870 .incts-unlimit-sec .unlimit-head {
    max-width: 50.781vw;
  }

  .page-id-870 .incts-unlimit-sec .unlimit-head p {
    max-width: 39.948vw;
  }

  /* .page-id-870 .innovative-rw.incts-innov-rw:nth-child(1) .incts-innov-icon::before {
        width: calc(100% - 1.25vw);
        height: calc(100% - 1.25vw);
        border-radius: 5.208vw;
    }

    .page-id-870 .innovative-rw.incts-innov-rw:nth-child(2) .incts-innov-icon::before {
        width: calc(100% - 1.25vw);
        height: calc(100% - 1.25vw);
        border-radius: 5.208vw;
    }

    .page-id-870 .innovative-rw.incts-innov-rw:nth-child(3) .incts-innov-icon::before {
        width: calc(100% - 1.25vw);
        height: calc(100% - 1.25vw);
    } */

  .page-id-914 .sec-head.unlimit-head {
    max-width: 55.99vw;
  }

  .page-id-914 .sec-head.unlimit-head p {
    max-width: 30.729vw;
  }

  .page-id-914 .abtvst-contwrp {
    padding-top: 2.865vw;
  }

  /* after marge end */

  /* 30.08.24 start */

  .innov-img-wrppr {
    max-width: 23.594vw;
    margin: 0 auto 2.969vw;
    border-radius: 0.781vw;
  }

  .innov-btn-wrppr-more {
    padding: 1.563vw;
  }

  .custm-declear-title-icon .span-icon {
    margin-left: 1.042vw;
  }

  .custm-declear-title-icon {
    margin-bottom: 1.563vw;
  }

  .custm-agent-bnnr-sec .innr-bnnr-content .ban-para {
    max-width: 36.458vw;
  }

  .page-id-969 .custm-agent-unlimit-sec .unlimit-head {
    max-width: 59.115vw;
  }

  .page-id-969 .custm-agent-unlimit-sec .unlimit-head h2 {
    max-width: 22.917vw;
  }

  /* book a demo page start */

  .book-demo-row {
    max-width: 100vw;
  }

  .book-demo-logo {
    width: 12.708vw;
    margin-bottom: 1.302vw;
  }

  .book-left-top-part {
    padding: 1.302vw 1.563vw 2.344vw 5.208vw;
  }

  .book-left-top-part .cmn-h3-head {
    font-size: 1.563vw;
    margin-bottom: 1.042vw;
  }

  .book-left-top-part .watch-ul {
    margin-bottom: 1.302vw;
  }

  .book-left-top-part .watch-ul li:not(:last-child) {
    margin-right: 1.563vw;
  }

  .book-left-top-part .watch-ul li img {
    max-height: 1.563vw;
  }

  .demo-para-wrppr p {
    font-size: 1.042vw;
  }

  .book-left-btm-part {
    padding: 1.302vw 1.563vw 2.344vw 5.208vw;
  }

  .cmn-h3-head.expect-head {
    margin-bottom: 1.302vw;
    font-size: 1.563vw;
  }

  .best-list {
    margin: 0 0 1.042vw 0;
  }

  .best-list li {
    padding-right: 2.031vw;
  }

  .best-list li > p {
    font-size: 0.938vw;
  }

  .green-tick-item-wrppr {
    margin-bottom: 0.26vw;
  }

  .green-tick-item-wrppr .green-tick-wrppr {
    width: 1.51vw;
  }

  .green-tick-item-wrppr p {
    padding-left: 0.521vw;
    font-size: 0.938vw;
  }

  .best-logo-list li:not(:last-child) {
    margin-right: 4.948vw;
  }

  .book-demo-right {
    padding: 2.604vw 3.125vw;
  }

  .live-demo-head-wrppr p {
    font-size: 2.083vw;
    margin-bottom: 0.313vw;
  }

  .live-demo-head-wrppr h2 {
    font-size: 3.125vw;
  }

  .live-demo-head-wrppr {
    margin-bottom: 2.344vw;
  }

  .demo-close-btn {
    width: 3.125vw;
    height: 3.125vw;
    top: 1.563vw;
    right: 3.385vw;
  }

  /* book a demo page end */

  /* 30.08.24 end */

  /* SS040924 Begin */

  .ban-blks-lft h1 i,
  .innovative-wrppr .innovative-icon {
    width: 7.321vw;
    height: 7.321vw;
    padding: 1.611vw;
  }

  .ban-blks-lft {
    max-width: 81.918vw;
  }

  .testi-icon-bx:hover,
  .testi-icon-bx,
  .testi-icon-bx,
  .testi-icon-bx.orange-bx {
    background: transparent;
  }

  .watch-ul li:nth-child(3) {
    width: 9.688vw;
  }

  .innovative-wrppr p {
    margin-bottom: 5.208vw;
  }

  .all-similir-sect .product-innovative .innovative-wrppr {
    padding: 9.375vw 4.167vw 3.854vw 3.125vw;
  }

  .all-similir-sect .product-innovative .innovative-wrppr h3 {
    font-size: 4.688vw;
  }

  .page-template-custom-management .innovative-sec .innovative-wrppr h3 {
    font-size: 2.604vw;
  }

  .page-template-custom-management .innovative-wrppr .innovative-icon {
    width: 5.208vw;
    height: 5.208vw;
    padding: 1.354vw;
  }

  /* End Of SS040924 */

  /* 05.09.24 start */

  .product-navigation.active .custm-declear-wrappr.without-bg {
    padding: 2.083vw 0 1.042vw;
  }

  .bllg-img {
    margin-bottom: 5.208vw;
  }

  .book-demo-form iframe {
    height: 70.423vh !important;
  }

  .register-frm-rw {
    --bs-gutter-x: 3.333vw;
  }

  .page-template-register .register-card {
    max-width: 52.917vw;
  }

  .page-template-register .register-card .card-cont {
    padding: 0 1.25vw 2.083vw;
  }

  .form-input-col .form-input {
    margin-bottom: 2.083vw;
  }

  .form-input.checkbox-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.667vw 2.083vw;
  }

  .form-input.checkbox-wrap .form-input-col {
    padding: 0 1.667vw;
  }

  /* 05.09.24 end */

  /* AD 12/09/2024 */
  .why-icustoms-container {
    max-width: 75vw;
  }

  .benefit-idp-sec .benefit-head-innr {
    max-width: 20.635vw;
  }

  .best-logo-list li {
    margin-right: 0;
  }

  /* AD 12/09/2024 END */

  /* support start 16-9-24 */
  .pop-up-banner-for-all {
    padding: 1.56vw 0; /* 30px -> 1.56vw */
  }
  .ban-content-area p {
    font-size: 1.25vw; /* 24px -> 1.25vw */
    padding-right: 1.56vw; /* 30px -> 1.56vw */
    padding-left: 6.88vw; /* 132px -> 6.88vw */
  }
  .wins-wrap .winner-button {
    width: 3.18vw; /* 61px -> 3.18vw */
    height: 3.18vw; /* 61px -> 3.18vw */
    margin-left: 1.04vw; /* 20px -> 1.04vw */
  }
  .wins-wrap .winner-button img {
    width: 1.25vw; /* 24px -> 1.25vw */
  }
  .book-demo-form iframe {
    height: 35.94vw !important; /* 690px -> 35.94vw */
  }
  .thank-sec {
    padding: 12.6vw 0 10.42vw; /* 242px -> 12.6vw, 200px -> 10.42vw */
  }
  .thnk-blk {
    border-radius: 1.04vw; /* 20px -> 1.04vw */
    padding: 0.52vw 0.52vw 5vw 0.52vw; /* 10px -> 0.52vw, 96px -> 5vw */
  }
  .thnk-logo {
    padding: 2.29vw; /* 44px -> 2.29vw */
    border-radius: 0.52vw; /* 10px -> 0.52vw */
    margin-bottom: 3.02vw; /* 58px -> 3.02vw */
  }
  .thank-pass {
    width: 5.21vw; /* 100px -> 5.21vw */
    height: 5.21vw; /* 100px -> 5.21vw */
    margin: 0 auto 2.4vw; /* 46px -> 2.4vw */
  }
  .thank-pass img {
    width: 2.5vw; /* 48px -> 2.5vw */
  }
  .thnk-blk h1 {
    font-size: 1.56vw; /* 30px -> 1.56vw */
    margin-bottom: 1.51vw; /* 29px -> 1.51vw */
  }
  .thnk-blk p {
    font-size: 1.04vw; /* 20px -> 1.04vw */
    margin-bottom: 0.52vw; /* 10px -> 0.52vw */
  }
  .thnk-blk span {
    font-size: 1.04vw; /* 20px -> 1.04vw */
    margin-bottom: 0.52vw; /* 10px -> 0.52vw */
  }
  .thnk-blk .cmn-btn {
    margin-top: 1.88vw; /* 36px -> 1.88vw */
  }
  .thnk-logo img {
    width: 2.865vw;
  }
  .section-visible .main-head {
    padding-top: 7.813vw;
  }
  .book-demo-form iframe {
    height: 51.94vw !important;
  }
  /* support end 16-9-24 */
}

@media (max-width: 1199px) {
  .main-menu-lis > a::after {
    background-size: 0.925vw;
    width: 0.921vw;
    height: 0.913vw;
  }

  .single-post .blg-dtls-wrapr {
    padding-right: 1.563vw;
  }

  /* 27/08/2024 dm */

  .register-sec {
    padding-top: 7.292vw;
    padding-bottom: 5.208vw;
  }

  /* 27/08/2024 dm */
}

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

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

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

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

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

  /* .navbar-nav > li {
      padding-top: 15px;
      padding-bottom: 15px;
    } */

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

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

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

  .main-menu-lis > a::after {
    right: -30px;
    opacity: 1 !important;
  }

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

  .main-menu-lis > a::after {
    display: none;
  }

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

  .clickD {
    content: "";
    position: relative;
    display: inline-block;
    width: 2.083vw;
    height: 1.563vw;
    background: url(images/ply.svg) center center no-repeat transparent;
    background-size: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  /* navbar end*/
}

@media (max-width: 991px) {
  /* 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: #000;
    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;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

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

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

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

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

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

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

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

  .main-submenu .submenul li {
    padding: 5px 0;
  }

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

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

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

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

  /* navbar end*/

  /* push nav */

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

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

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

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

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

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

  /* push nav end */

  .bdr-btn,
  .cmn-btn {
    padding: 10px 18px;
    min-width: 100px;
  }

  .today-btn-grp a:not(:last-child) {
    margin-right: 10px;
  }

  .close-btn {
    width: 40px;
    height: 40px;
    margin-left: 0;
    padding: 0;
    background-color: var(--orange);
    border-color: var(--orange);
  }

  .login-btn {
    padding: 5.79px;
    min-width: 113px;
    padding-left: 18px;
  }

  .nvrt-top-ss {
    display: flex;
    align-items: center;
  }

  .main-head .today-btn-grp {
    display: none;
  }

  .collpse-wrap {
    background: transparent;
    border-radius: 0;
    padding: 0;
    min-width: inherit;
    margin: 0;
  }

  .collpse-wrap .hdr-menu-wrap .menu-cls {
    display: none;
  }

  /* .collpse-wrap .hdr-menu-wrap .login-btn {
      display: none;
    } */
  .navbar-brand {
    width: 170px;
    order: 1;
  }

  .menu-cls {
    margin-left: auto;
  }

  .collpse-wrap .hdr-menu-wrap li:not(:last-child) {
    margin-right: 0;
  }

  .collpse-wrap .hdr-menu-wrap {
    padding-left: 0;
  }

  .main-head {
    padding-top: 20px;
  }

  .menu-cls {
    color: var(--white-clr);
  }

  .menu-cls img {
    filter: brightness(0) invert(1);
  }

  .ban-blks-lft {
    max-width: 500px;
    padding-top: 0;
  }

  .main-banner {
    padding: 100px 0 60px;
    min-height: auto;
  }

  h1,
  .h1-title {
    font-size: 40px;
  }

  h2,
  .h2-title {
    font-size: 35px;
  }

  h3,
  .h3-title {
    font-size: 30px;
  }

  h4,
  .h4-title {
    font-size: 25px;
  }

  h5,
  .h5-title {
    font-size: 20px;
  }

  h6,
  .h6-title {
    font-size: 18px;
  }

  .ban-crcl {
    width: 40%;
    height: 80%;
    border-radius: 100%;
    right: 0;
    top: 0;
  }

  .ban-crcl img {
    height: auto;
  }

  .ban-fig {
    width: 30%;
    right: 0;
  }

  .ban-para {
    margin-bottom: 30px;
    max-width: inherit;
    max-width: 550px;
  }

  .save-sec,
  .why-icustoms-section,
  .transformed-sec,
  .one-sec,
  .solutions-sec,
  .smart-sec,
  .innovative-sec,
  .get-sec,
  .sponsor-sec,
  .abt-misionsec,
  .our-visionsec,
  .company-profile-sec,
  .our-award-sec {
    padding: 60px 0;
  }

  .our-office-sec {
    padding-top: 60px;
  }

  .ftr-top {
    padding: 40px 0;
  }

  .ftr-btm {
    padding-bottom: 20px;
  }

  .ftr-row {
    padding-top: 25px;
    margin-top: 25px;
  }

  .wetxt {
    margin-bottom: 22px;
  }

  .save-lft .h1-title {
    margin-bottom: 20px;
  }

  .ai-txt {
    margin-bottom: 30px;
  }

  .save-lft i {
    margin-bottom: 30px;
  }

  .save-figs {
    padding-left: 10px;
  }

  .save-lft {
    max-width: inherit;
    margin-top: 0;
  }

  .save-blk-main {
    margin-bottom: 60px;
  }

  .features-list li:not(:last-child) {
    margin-right: 0;
  }

  .features-list li {
    font-size: 15px;
    padding: 6px 10px;
  }

  .company-list li img {
    max-height: 38px;
  }

  .company-list li:not(:last-child) {
    margin-right: 30px;
  }

  .features-list {
    margin-bottom: 60px;
  }

  .why-icustoms-section-heading {
    margin-bottom: 10px;
  }

  .why-icustoms-left {
    padding: 30px;
    height: 100%;
  }

  .why-icustoms-action a,
  .why-icustoms-sld-text-wpr h3 {
    font-size: 25px;
    line-height: 1.14;
  }

  .why-icustoms-left-bottom {
    margin-top: 30px;
  }

  .common-button {
    padding: 10px 18px;
    min-width: 100px;
  }

  .why-icustoms-slider-item-in {
    padding: 25px;
  }

  .transformed-rit {
    padding-left: 20px;
  }

  .transformed-blk-lft span {
    width: 315px;
    height: 315px;
    margin-left: -10px;
  }

  .lrg-srcl {
    width: 165px;
    height: 165px;
    left: 140px;
  }

  .sml-srcl {
    width: 110px;
    height: 110px;
  }

  .transformed-card-logo-box {
    min-height: 88px;
  }

  .transformed-blk-btm p {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .author-name {
    margin-bottom: 10px;
  }

  .desig-cls {
    font-size: 17px;
  }

  .transformed-blk-btm {
    max-width: inherit;
    margin-top: 40px;
  }

  .why-icustoms-slider-outer-imp {
    --bs-gutter-y: 20px;
  }

  .get-blk i {
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
  }

  .get-blk p {
    margin-bottom: 22px;
  }

  .get-blk h2 {
    margin: 0 auto 36px;
  }

  .watch-ul li img {
    max-height: 30px;
  }

  .watch-ul {
    margin-bottom: 38px;
  }

  .save-blk {
    max-width: inherit;
    margin-top: 35px;
  }

  .innovative-card .h4-title {
    margin-bottom: 16px;
    font-size: 20px;
  }

  body,
  .why-icustoms-sld-text-wpr p,
  .innovative-card p,
  .login-btn,
  .bdr-btn,
  .cmn-btn,
  .common-button,
  .author-name,
  .save-lft .h4-title,
  .transformed-blk-btm p {
    font-size: 18px;
  }

  .innovative-btm-blk .innovative-card {
    padding: 30px;
  }

  .innovative-blk .sec-head {
    margin-bottom: 30px;
  }

  .save-txt {
    font-size: 20px;
  }

  .smart-blk h2 {
    margin-bottom: 35px;
    max-width: inherit;
    text-align: center;
  }

  .one-blk h2 {
    margin-bottom: 30px;
  }

  .trade-li {
    padding: 30px 10px 15px;
    min-height: 78px;
  }

  .trade-li i {
    width: 50px;
    height: 50px;
    top: -25px;
  }

  .trade-li i img {
    max-height: 19px;
  }

  .trade-li .h5-title {
    font-size: 18px;
  }

  .trd-wrap {
    padding: 20px 10px;
    width: 50%;
  }

  .trade-ul .trd-wrap:nth-child(1),
  .trade-ul .trd-wrap:nth-child(2),
  .trade-ul .trd-wrap:nth-child(3) {
    width: 50%;
  }

  .trade-ul {
    margin: -20px -10px;
  }

  .today-btm {
    padding: 30px;
    margin-top: 35px;
    text-align: center;
  }

  .one-icon-box {
    width: 75px;
    height: 75px;
  }

  .one-icon-box img {
    max-height: 45px;
  }

  .one-blk-wrap {
    margin-bottom: 70px;
  }

  .one-bg-img {
    width: 50%;
    bottom: -45px;
  }

  .today-wraps {
    align-items: center;
    flex-direction: column;
  }

  .today-lft {
    max-width: inherit;
    margin-bottom: 20px;
  }

  .ban-blks-lft h1 {
    margin-bottom: 30px;
  }

  .save-lft i img {
    max-height: 40px;
  }

  .d-none-cls {
    display: flex;
    align-items: center;
    order: 3;
    margin-left: 20px;
    font-size: 16px;
  }

  .solutions-action-btn
    .solutions-navigation.active
    .solutions-acc-box
    .solutions-acc-button
    h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .solutions-navigation.active .solutions-acc-box {
    padding-left: 20px;
  }

  .main-head.h-light .close-btn.nvrtbtn {
    display: flex;
  }

  .solutions-ulss {
    margin-bottom: 20px;
    padding-left: 16px;
  }

  .solutions-navigation.active .solutions-acc-button {
    padding-top: 0;
    padding-right: 0;
  }

  .solutions-action-btn .solutions-navigation.active .solutions-acc-body {
    padding-bottom: 20px;
  }

  .solutions-acc-box .solutions-acc-button h3 i {
    width: 45px;
    height: 45px;
    top: 56%;
  }

  .solutions-acc-box .solutions-acc-button h3 span {
    padding-left: 2px;
  }

  .solutions-inner-sld .solutions-slider .slick-list {
    padding-left: 25px;
  }

  .solutions-right-img-wpr {
    padding: 20px;
    min-height: auto;
  }

  .solutions-big-img {
    padding: 20px;
    width: 100%;
  }

  .solutions-big-img img {
    max-height: none;
    min-height: auto;
  }

  .solutions-acc-box .solutions-acc-button h3 i img {
    width: 23px;
    min-width: 23px;
  }

  .solutions-acc-box {
    min-height: auto;
  }

  .solutions-acc-box .solutions-acc-button {
    min-height: auto;
    padding: 0 25px 0 63px;
  }

  .solutions-acc-box .solutions-acc-button h3 {
    font-size: 20px;
  }

  .solutions-ulss li {
    font-size: 16px;
  }

  .solutions-slider-outer .solutions-inner-sld,
  .solutions-slider-outer .solutions-slider-button-wpr {
    width: 100%;
  }

  .solutions-inner-sld .solutions-slider .slick-list {
    padding-left: 0;
    padding-top: 25px;
  }

  .innovative-btm-blk .innovative-card {
    padding: 20px;
  }

  .why-icustoms-section-heading h2::after {
    width: 350px;
  }

  .why-icustoms-section-heading h2 {
    padding-bottom: 56px;
  }

  .solutions-blk h2 {
    margin-bottom: 45px;
  }

  .smart-bg-blk {
    margin-bottom: 50px;
  }

  .btm-list li:not(:last-child) {
    margin-right: 22px;
  }

  .btm-list li a,
  .ftr-btm p {
    font-size: 16px;
  }

  .menu-list li a {
    font-size: 16px;
  }

  .addrs-ul li {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .addrs-ul li a {
    font-size: 18px;
  }

  .ftrcl1 {
    width: 30%;
  }

  .ftrcl2 {
    width: 70%;
  }

  .ftr-logo {
    width: 170px;
  }

  .ftr-head {
    margin-bottom: 20px;
  }

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

  .watch-ul li:not(:last-child) {
    margin-right: 18px;
  }

  .why-icustoms-container {
    padding: 0 11px;
  }

  .transformed-blk-lft {
    max-width: 580px;
  }

  .main-head.fixed .menu-cls {
    color: var(--black-clr);
  }

  .main-head.fixed .menu-cls img {
    filter: brightness(0);
  }

  .navrt {
    padding: 16px 20px 16px;
  }

  .navinner .navlist {
    padding-left: 10px;
  }

  .navinner label {
    font-size: 19px;
    margin-bottom: 18px;
  }

  .navlist li a {
    font-size: 17px;
  }

  .navlist li {
    margin-bottom: 10px;
  }

  .navinner .navlist:not(:last-child) {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  .navrt .bdr-btn {
    border-color: var(--black-clr2);
    color: var(--footer-black);
    margin-right: 6px;
  }

  .nvrt-top-ss {
    margin-bottom: 22px;
  }

  .main-head.h-light .close-btn.nvrtbtn {
    position: absolute;
    top: 10px;
    right: 10px;
  }

  .navbtm {
    padding: 0 20px 0 20px;
  }

  .navul {
    width: 100%;
    font-size: 17px;
  }

  .navSocial {
    padding-left: 0;
    padding-top: 8px;
  }

  .navSocial li a {
    font-size: 17px;
  }

  .navrt .bdr-btn:hover {
    border-color: var(--blue-clr);
    color: var(--blue-clr);
    margin-right: 6px;
  }

  .collpse-wrap {
    order: 2;
    margin-left: auto;
  }

  .login-btn {
    padding: 2.79px 5.79px 4.2px;
    min-width: 98px;
    padding-left: 18px;
  }

  .login-btn span {
    width: 25px;
    height: 25px;
  }

  .dsktp-navbar {
    display: none;
  }

  .mbl-navbar {
    display: block;
    position: relative;
    z-index: 2;
  }

  .main-menu-box-wrappers {
    background: var(--light-white);
    padding: 15px;
    min-height: auto;
  }

  .navbar-nav > li {
    display: block;
  }

  .navbar-nav > li {
    position: relative;
    z-index: 2;
  }

  .main-submenu .submenuli {
    min-width: auto;
    max-width: none;
    position: relative;
  }

  .navbar-nav .main-submenu .sub-menu.innersubmenu-ul {
    top: 10px;
    padding: 20px;
    left: 0px;
  }

  .main-submenu .submenuli a {
    font-size: 17px;
  }

  .innr-submenu-cont-box-head {
    font-size: 17px;
    width: calc(100% - 45px);
    padding-right: 10px;
  }

  .innr-submenu-cont-box i {
    width: 48px;
    height: 48px;
  }

  .innr-submenu-cont-box i img {
    max-height: 24px;
  }

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

  .hdr-products-head {
    font-size: 17px;
    margin-bottom: 14px;
  }

  .sub-menu-top-box {
    padding: 20px;
    margin-bottom: 25px;
  }

  .hdr-products {
    padding: 20px;
    margin-top: 26px;
  }

  .navbar-nav li.menu-item-has-children:hover > .sub-menu {
    padding-top: 8px;
  }

  .navbar-nav > li > a {
    font-size: 19px;
  }

  .sub-menu-top-box-lft span {
    font-size: 20.82px;
  }

  .navrt .navinner {
    height: calc(100% - 182px);
  }

  .mbl-navbar li:not(:last-child) {
    margin-bottom: 4px;
  }

  .sub-menu-top-box-lft {
    width: calc(100% - 30px);
    padding-left: 16px;
  }

  .sub-menu-top-box i {
    width: 30px;
    min-width: 30px;
  }

  .navbar-nav .main-submenu .sub-menu.innersubmenu-ul {
    padding: 0;
    position: absolute;
  }

  .collpse-wrap .hdr-products-ul li:not(:last-child) {
    margin-right: 10px;
    margin-bottom: 6px;
  }

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

  .innersubmenu-ul {
    margin-bottom: 25px;
  }

  .sub-menu-top-box {
    padding: 20px 15px;
  }

  .main-menu-lis > a::after {
    right: -55px;
  }

  .navbar-nav > li > a {
    width: auto;
  }

  .navbar-nav .main-menu-lis .main-menu-box-wrappers::before {
    filter: brightness(0) saturate(100%) invert(100%) sepia(78%) saturate(697%)
      hue-rotate(177deg) brightness(97%) contrast(111%);
  }

  .navbar-nav .main-menu-lis:nth-child(1) .main-menu-box-wrappers::before,
  .navbar-nav .main-menu-lis:nth-child(2) .main-menu-box-wrappers::before {
    left: 75px;
  }

  .slides-numbers-text {
    font-size: 18px;
  }

  .nvrt-top-ss .cmn-btn {
    background: var(--blue-clr);
    color: var(--light-white);
  }

  .nvrt-top-ss .cmn-btn:hover {
    background: var(--orange);
    color: var(--light-white);
  }

  .nvrt-top-ss .cmn-btn::after {
    background: var(--orange);
  }

  .copy-symbol {
    font-size: 16px;
    padding: 0 10px;
  }

  .submenus-cls li > a {
    padding: 5px 0;
  }

  .navbar-nav .clickD {
    top: 10px;
  }

  /* 08.07.24 start */

  .solutions-blk .cmn-sec-head {
    margin-bottom: 40px;
  }

  .solutions-blk .cmn-sec-head p {
    font-size: 24px;
  }

  .solutions-blk .cmn-sec-head h2 {
    margin-bottom: 5px;
  }

  /* 08.07.24 end */

  /* 12.07.24 start */

  .main-banner.innr-bnnr-sec {
    padding: 140px 0 80px !important;
  }

  .ban-blks-lft h1 i {
    width: 60px;
    height: 60px;
    margin-right: 20px;
  }

  .ban-blks-lft.innr-bnnr-content {
    max-width: 100%;
    margin-bottom: 35px;
  }

  .ban-blks-lft.innr-bnnr-content h1 {
    margin-bottom: 20px;
  }

  .innr-bnnr-content .ban-para {
    margin-bottom: 35px;
  }

  .unlimit-sec,
  .testimonial-sec,
  .manage-sec,
  .faq-sec,
  .benefit-idp-sec,
  .idp-contact-sec,
  .custm-declear-sec {
    padding: 60px 0;
  }

  .unlimit-head {
    margin-bottom: 35px;
  }

  .unlimit-left-col,
  .unlimit-right-col {
    width: 50%;
  }

  .unlimit-wrppr {
    border-radius: 20px;
    padding: 35px 25px 30px;
  }

  .unlimit-wrppr .card-icon {
    width: 50px;
    margin-bottom: 20px;
  }

  .unlimit-wrppr h3 {
    min-height: 70px;
    margin-bottom: 15px;
  }

  .unlimit-wrppr ul {
    margin-bottom: 30px;
    padding-left: 20px;
  }

  .unlimit-wrppr ul li:not(:last-child) {
    margin-bottom: 5px;
  }

  .unlimit-rw {
    --bs-gutter-x: 30px;
    align-items: inherit;
  }

  .unlimit-rght-wrrp {
    height: 100%;
  }

  .unlimit-rght-wrrp figure {
    height: 100%;
  }

  .unlimit-rght-wrrp figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .unlimit-rght-wrrp .unlimit-shpe {
    max-width: 200px;
    bottom: 15px;
    right: 15px;
  }

  .svg-wrppr {
    top: 15px;
    right: 15px;
    width: 65px;
  }

  .unlimit-nav-btn-main {
    padding-top: 30px;
  }

  .each-item-wrppr {
    padding: 15px;
  }

  .each-item-wrppr p {
    font-size: 18px;
  }

  .each-item-wrppr i {
    width: 40px;
  }

  .innovative-sec .sec-head h2 {
    margin-bottom: 15px;
  }

  .innovative-sec .sec-head {
    margin-bottom: 40px;
  }

  .innovative-wrppr {
    padding: 35px 20px;
    height: 100%;
  }

  .innovative-wrppr .innovative-icon {
    width: 55px;
    height: 55px;
    padding: 14px;
    top: 15px;
    right: 15px;
  }

  .innovative-wrppr h3 {
    font-size: 36px;
    margin-bottom: 25px;
  }

  /* .innovative-wrppr p {
        margin-bottom: 40px;
    } */

  .innov-btn-wrppr {
    padding-top: 40px;
  }

  .testimonial-sec .sec-head {
    margin-bottom: 30px;
  }

  .testi-icon-bx {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    padding: 10px;
  }

  .testi-icon-bx.orange-bx {
    width: 125px;
  }

  .testi-icon-main {
    margin-bottom: 30px;
  }

  .feed-content p {
    font-size: 22px;
  }

  .feed-content {
    margin-bottom: 25px;
  }

  .feed-user-wrppr .feed-user {
    font-size: 22px;
  }

  .feed-user-wrppr p {
    font-size: 18px;
  }

  .manage-content h2 {
    margin-bottom: 25px;
  }

  .sec-head.manage-content {
    margin-bottom: 25px;
    text-align: center;
  }

  .manage-img-wrppr {
    padding-right: 0;
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }

  .manage-img-wrppr-innr {
    padding-top: 20px;
    padding-right: 60px;
  }

  .manage-img-big {
    max-width: 100%;
  }

  .manage-img-smll {
    max-width: 90px;
  }

  .manage-img-vsmll {
    max-width: 70px;
  }

  .faq-sec .sec-head {
    margin-bottom: 35px;
  }

  .faq-hdng {
    padding: 20px 20px 20px 60px;
    font-size: 24px;
  }

  .faq-hdng::before {
    width: 45px;
    height: 45px;
    background-size: 15px;
  }

  .faq-hdng.active::before {
    background-size: 20px;
  }

  .faq-ans {
    padding: 0 20px 25px 60px;
  }

  .idp-innr-bnnr .ban-blks-lft.innr-bnnr-content {
    padding-top: 0;
    margin-bottom: 35px;
  }

  .idp-innr-bnnr .innr-bnnr-content .ban-para {
    margin-bottom: 25px;
  }

  .idp-img-wrppr {
    max-width: 75%;
    margin: 0 auto;
  }

  .idp-unlimit-sec .unlimit-head h2 {
    margin-bottom: 20px;
  }

  .idp-unlimit-sec .unlimit-head {
    margin-bottom: 35px;
  }

  .innovative-sec .sec-head.idp-innov-head {
    margin-bottom: 30px;
  }

  .idp-innov-wrppr h3 {
    font-size: 34px;
  }

  .idp-innov-wrppr ul {
    padding-left: 20px;
  }

  .idp-innov-wrppr li {
    margin-bottom: 15px;
  }

  .idp-innov-wrppr {
    min-height: inherit;
    height: 100%;
  }

  .innovative-wrppr .innovative-icon {
    width: 45px;
    height: 45px;
    padding: 10px;
  }

  .idp-innov-img-wrppr {
    margin-top: -30px;
  }

  .idp-innov-rw:not(:last-child) {
    margin-bottom: 40px;
  }

  .idp-innov-img-wrppr.secnd-img-idp ul {
    bottom: 15px;
    left: 15px;
  }

  .idp-innov-img-wrppr.secnd-img-idp li:not(:last-child) {
    margin-bottom: 15px;
  }

  .idp-innov-img-wrppr.secnd-img-idp li {
    font-size: 18px;
    min-height: 50px;
    padding: 15px 20px 15px 60px;
  }

  .idp-innov-img-wrppr.secnd-img-idp li i {
    width: 50px;
    padding: 14px;
  }

  .idp-innov-rw:nth-child(2) {
    align-items: inherit;
  }

  .idp-innov-rw:nth-child(3) .idp-innov-img-wrppr {
    max-width: 300px;
    margin-top: -20px;
  }

  .benefit-slider-outtr {
    margin-right: -15px;
  }

  .benefit-card-wrppr {
    padding: 30px 20px;
  }

  .benefit-card-wrppr .benefit-icon {
    height: 55px;
    margin-bottom: 15px;
  }

  .benefit-card-wrppr h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .benefit-head-innr .sec-head {
    margin-bottom: 25px;
  }

  .cmn-benefit-arrw {
    width: 45px;
    height: 45px;
    padding: 12px;
  }

  .cmn-benefit-arrw:not(:last-child) {
    margin-right: 15px;
  }

  .benefit-idp-rw {
    margin: 0 -15px 40px;
  }

  .test-doc-main {
    border-radius: 12px;
    padding: 30px;
  }

  .test-doc-btn-wrppr {
    padding-left: 0;
    padding-top: 15px;
  }

  .test-doc-btn-wrppr .cmn-btn {
    min-width: 230px;
  }

  .test-doc-content {
    padding-right: 15px;
  }

  .test-doc-icon {
    width: 55px;
  }

  .test-doc-content .test-doc-info {
    padding-left: 20px;
  }

  .test-doc-content .test-doc-info h3 {
    font-size: 34px;
  }

  .idp-contact-main {
    padding: 30px 20px;
  }

  .idp-contact-content-wrppr .sec-head {
    margin-bottom: 25px;
  }

  .idp-contact-content-wrppr .sec-head h2 {
    margin-bottom: 20px;
  }

  .idp-contact-content-wrppr li {
    font-size: 18px;
    padding-left: 30px;
    margin-bottom: 12px;
  }

  .idp-contact-content-wrppr {
    margin-bottom: 35px;
  }

  .frm-field-wrppr input,
  .frm-field-wrppr select {
    padding: 0 15px;
    font-size: 18px;
    height: 45px;
  }

  .frm-field-wrppr textarea {
    font-size: 18px;
    height: 130px;
    padding: 15px;
  }

  .contact-frm-rw {
    --bs-gutter-x: 15px;
    --bs-gutter-y: 15px;
    margin-bottom: 20px;
  }

  .frm-btn-check-wrappr .form_input_check label span {
    font-size: 18px;
  }

  .frm-btn-check-wrappr input[type="submit"] {
    font-size: 18px;
    height: 45px;
  }

  .incts-unlimit-sec .unlimit-head h2 {
    margin-bottom: 20px;
  }

  .incts-unlimit-sec .unlimit-head {
    margin-bottom: 35px;
  }

  .innovative-wrppr.incts-innov-wrppr {
    padding: 55px 35px 35px 15px;
    min-height: inherit;
  }

  .incts-innov-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
    top: 15px;
    right: 15px;
  }

  .incts-innov-icon .innr-shpe {
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    top: 6px;
    right: 6px;
  }

  /* .incts-innov-icon.secnd::before,
    .innovative-rw.incts-innov-rw:nth-child(2) .incts-innov-icon::before {
        width: calc(50% - 6px);
        height: calc(100% - 12px);
        top: 6px;
        right: 6px;
    }

    .incts-innov-icon.third::before,
    .innovative-rw.incts-innov-rw:nth-child(3) .incts-innov-icon::before {
        width: calc(50% - 6px);
        height: calc(100% - 12px);
        top: 6px;
        right: 6px;
    }

    .incts-innov-icon.third::after,
    .innovative-rw.incts-innov-rw:nth-child(3) .incts-innov-icon::after {
        width: calc(50% - 6px);
        height: calc(50% - 6px);
        bottom: 6px;
        left: 6px;
    }

    .incts-innov-icon.fourth::before,
    .innovative-rw.incts-innov-rw:nth-child(4) .incts-innov-icon::before {
        width: calc(100% - 12px);
        height: calc(100% - 12px);
    } */

  .innovative-wrppr.incts-innov-wrppr h3 {
    font-size: 32px;
    margin-bottom: 25px;
  }

  .incts-innov-rw:not(:last-child) {
    margin-bottom: 30px;
  }

  .innovative-wrppr.incts-innov-wrppr li:not(:last-child) {
    margin-bottom: 15px;
  }

  .custm-agent-innov-rw .innovative-wrppr {
    padding: 65px 30px 30px 20px;
  }

  .custm-agent-innov-rw .innovative-wrppr .bdr-btn {
    padding: 10px 35px;
  }

  .custm-declear-txt-wrppr .sec-head {
    margin-bottom: 20px;
  }

  .othr-custm-declear-slidr {
    padding-left: 25px;
    min-height: 400px;
  }

  .custm-declear-wrappr h3 {
    font-size: 28px;
  }

  .product-navigation {
    margin-bottom: 15px;
  }

  .product-navigation.active .custm-declear-wrappr {
    /* padding: 20px 50px 20px 20px; */
    margin: 20px 0;
  }

  .custm-declear-wrappr .span-icon {
    width: 35px;
    height: 35px;
    top: 10px;
    right: 10px;
  }

  .custm-agent-benefit-sec .test-doc-btn-wrppr .cmn-btn {
    min-width: 170px;
  }

  .custm-agent-benefit-sec .test-doc-icon {
    width: 60px;
  }

  .custm-agent-benefit-sec .test-doc-main {
    margin-bottom: 40px;
  }

  .flag-all-wrppr {
    max-width: 100%;
    justify-content: center;
  }

  .flag-all-wrppr .flag-wrppr {
    width: 115px;
    height: 115px;
  }

  .setting-icon {
    width: 80px;
    height: 80px;
    padding: 18px;
  }

  .custom-agent-page .menu-cls {
    color: var(--blue-clr);
  }

  .custom-agent-page .menu-cls img {
    filter: inherit;
  }

  .sec-head.unlimit-head h2 {
    font-size: 35px;
  }

  .unlimit-wrppr ul li {
    font-size: 18px;
  }

  .incts-cmn-faq .faq-ans {
    padding-right: 60px;
  }

  /* 12.07.24 end */

  /* AD 18/07/2024 */
  .gform_wrapper.gravity-theme form input[type="text"],
  .gform_wrapper.gravity-theme form input[type="tel"],
  .gform_wrapper.gravity-theme form input[type="password"],
  .gform_wrapper.gravity-theme form input[type="email"],
  .gform_wrapper.gravity-theme form select {
    padding: 0 15px;
    font-size: 18px;
    height: 45px;
  }

  .gform_wrapper.gravity-theme form textarea {
    font-size: 18px;
    height: 130px;
    padding: 15px;
  }

  .gform_wrapper.gravity-theme #gform_1 .gform_footer input[type="submit"] {
    font-size: 18px;
    height: 45px;
    max-width: 342px;
  }

  .gform_wrapper.gravity-theme #gform_1 .gform_fields {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .gform_wrapper.gravity-theme #gform_1 .gform_footer {
    margin-top: 20px;
  }

  /* AD 18/07/2024 END */

  /* AD 19/07/2024 */
  .tnc-sec {
    padding: 60px 0;
  }

  .error404 .error-wraper.cmn-gap {
    padding: 160px 0 120px;
  }

  /* AD 19/07/2024 END */

  /* 22/07/24 work start */
  .blog-body-area {
    padding: 60px 0px;
  }

  .filbtn.cmn-btn {
    height: 50px;
    min-width: 150px;
  }

  .blogrgt-catwrpr .categlist ul {
    margin: -10px;
  }

  .blogrgt-catwrpr .categlist li a {
    font-size: 16px;
    padding: 12px 25px;
  }

  .blogrgt-catwrpr .categlist li {
    margin: 10px;
  }

  .categlist {
    padding: 20px;
  }

  .blogrgt-catwrpr .categlist:before {
    left: 56px;
  }

  .blg-contbox .h2-title {
    font-size: 20px;
  }

  .contact-top-blk {
    padding: 60px 0px;
  }

  /* .main-banner.innr-bnnr-sec {
      padding-bottom: 0px !important;
    } */

  .blog-post-dtls-head {
    margin-bottom: 40px;
  }

  .blg-dtls-cont-wrapr h2 {
    font-size: 25px;
  }

  .blg-dtls-cont-wrapr .blgpg-lftcol {
    margin-top: 50px;
  }

  .blogDtlsec .row {
    flex-direction: column-reverse;
  }

  .blogDtlsec .blg-dtls-hdng-wrpr {
    margin-top: 50px;
  }

  /* 22/07/24 work end */

  /* SS CSS Begin 19-08-2024 */

  .testi-icon-bx {
    width: 125px;
    background: var(--white-clr);
  }

  .idp-bsub {
    margin-bottom: 20px;
  }

  .ban-blks-lft.innr-bnnr-content .idp-bsub h1 {
    margin-bottom: 0;
  }

  .idp-innr-bnnr .ban-blks-lft.innr-bnnr-content.idp-pur {
    max-width: 560px;
  }

  .idp-bsub h3 {
    margin-left: 80px;
    font-size: 30px;
  }

  .all-similir-sect .test-doc-btn-wrppr .cmn-btn {
    min-width: 170px;
  }

  .all-similir-sect .innovative-sec.product-innovative {
    margin-top: 60px;
  }

  .all-similir-sect .idp-innr-bnnr .ban-blks-lft.innr-bnnr-content {
    max-width: 360px;
  }

  .all-similir-sect .innovative-wrppr {
    padding: 35px 20px;
  }

  .faq-ans li {
    padding-left: 26px;
  }

  .faq-ans li::before {
    left: 10px;
  }

  /* End Of SS CSS 19-08-2024 */
  /*support pp.c 20/8/2024*/
  .full-contact-wraper .main-banner.innr-bnnr-sec {
    padding-bottom: 80px !important;
  }

  .full-contact-wraper .test-doc-main .cmn-btn {
    min-width: 202px;
  }

  /*support pp.c 20/8/2024*/

  /* support starts 21.08.2024  */
  .serv-card-wpr {
    min-height: 150px;
    padding: 20px;
    border-radius: 15px;
  }

  .service-innr-card-each {
    padding: 5px;
  }

  .support-slide-sec {
    padding: 60px 0;
  }

  /* support ends 21.08.2024  */
  /* css start 22/08/2024 - about page */
  .our-award-sec .sec-head h2,
  .office-rit-txt h2 {
    font-size: 35px;
  }

  .our-award-sec .sec-head {
    margin-bottom: 30px;
  }

  .name-innr-wppr .h3-title {
    font-size: 25px;
  }

  .cmpny-card-innr.padding-right {
    padding-right: 0;
  }

  .cmpny-card-outer {
    margin-bottom: 30px;
  }

  .card-list li:not(:last-child) {
    margin-right: 10px;
  }

  .awrd-txt h3,
  .office-rit-txt h3,
  .office-rit-txt p {
    font-size: 25px;
  }

  .award-innr-card {
    padding: 70px 30px;
  }

  .office-img-wppr {
    margin-bottom: 60px;
  }

  .office-rit-txt {
    padding-left: 0;
    margin-top: 30px;
  }

  .spnsr-logo-items {
    padding: 20px 10px;
  }

  .our-vsn-lftcol,
  .our-vsn-rgtcol {
    width: 100%;
  }

  .page-template-about-us .our-vision-row .abtvst-contwrp {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
  }

  .our-vision-row .abtvst-contwrp .sec-head,
  .our-vision-row .abtvst-contwrp .sec-head h2 {
    margin-bottom: 0;
  }

  .company-img-content-wppr button[type="button"] {
    width: 50px;
    height: 50px;
  }

  .abt-msn-lftcol {
    order: 2;
  }

  .abt-msn-lftcol,
  .abt-msn-rgtcol {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .abt-msn-rgtcol {
    margin-top: 30px;
  }

  .abt-msn-contwrpr {
    padding: 50px 25px;
  }

  .abt-msn-contbx h2 {
    margin-bottom: 30px;
  }

  .abt-msn-contbutn {
    margin-top: 30px;
  }

  /* css start 22/08/2024 - about page */
  /* =====glossary page===== */
  .page-template-glossary .faq-sec {
    padding: 90px 0 60px;
  }

  /* 23/08/2024 Start */
  /* =======Partners page======== */
  .custm-declear-txt-col-partners {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }

  .custm-declear-sec-partners .othr-custm-declear-slidr {
    min-height: 320px;
  }

  .custm-declear-sec-partners .custm-declear-wrappr h3 {
    font-size: 22px;
  }

  /* .product-navigation.active .custm-declear-wrappr.without-bg {
      padding: 30px 0;
    } */

  .partners-title-wrap {
    margin-bottom: 30px;
  }

  /* common space */
  .booking-sec,
  .integrations-top,
  .other-integrations-sec {
    padding: 60px 0;
  }

  .booking-head {
    margin-bottom: 30px;
  }

  .booking-head h2 {
    font-size: 35px;
    margin-bottom: 20px;
  }

  .benefit-card-wrppr h3 {
    font-size: 20px;
  }

  /* =======Integrations Page======== */
  .integrations-top .sec-head-para {
    margin-top: 0;
    margin-bottom: 30px;
    max-width: 100%;
  }

  .slider-container {
    margin-top: 30px;
  }

  .tab-slidernav-item-wrap span {
    font-size: 18px;
  }

  .slider-nav img {
    width: 50px;
  }

  /* 23/08/2024 End */
  /*support pp.c 23/8/2024*/
  /*========about page======*/
  .page-template-about-us .innr-bnnr-sec .ban-blks-lft.innr-bnnr-content {
    margin-bottom: 0;
  }

  /* =======Integrations Page======== */
  .other-integrations-sec .logo-list {
    margin-bottom: 60px;
  }

  .support-slide-light-bg .our-vision-row .abtvst-contwrp .sec-head h2 {
    margin-bottom: 15px;
  }

  .support-slide-light-bg .our-vision-row .abtvst-contwrp .sec-head {
    margin-bottom: 20px;
  }

  .page-template-integrations .innr-bnnr-sec .ban-blks-lft.innr-bnnr-content {
    margin-bottom: 0;
  }

  .other-integrations-sec .sec-head {
    margin-bottom: 30px;
  }

  .integrations-top .slider-nav {
    padding-left: 15px;
  }

  .integrations-top .tab-slidernav-item-wrap span {
    margin-left: 15px;
  }

  .integrations-top .slider-nav img {
    width: 40px;
  }

  .logo-wrap {
    padding: 16px;
    min-height: 145px;
  }

  /* =======Integrations Page======== */
  /*=======t/c privacy policypage========*/
  .policy-page-purpose .policy-ban-para h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .policy-page-purpose .innr-bnnr-content .policy-ban-para {
    margin-top: 70px;
  }

  .policy-section .polici-faq .sec-head h2 {
    font-size: 30px;
  }

  .policy-section .polici-faq .sec-head {
    margin-bottom: 30px;
  }

  .policy-page-purpose .ban-blks-lft.innr-bnnr-content {
    margin-bottom: 0;
  }

  /*=======t/c privacy policypage========*/
  /*blog dtls page*/
  .blogsec .blg-lstimg {
    height: 175px;
  }

  /*blog dtls page*/
  .single-post .blogDtlsec .blg-dtls-hdng-wrpr h1 {
    font-size: 30px;
    margin-bottom: 25px;
  }

  .single-post .blogDtlsec .blg-dtls-cont-wrapr img {
    margin-bottom: 28px;
  }

  .single-post .blogDtlsec .blg-dtls-cont-wrapr p {
    font-size: 18px;
  }

  .single-post .blg-dtls-cont-wrapr h3 {
    font-size: 23px;
    margin-bottom: 22px;
  }

  .single-post .blg-dtls-cont-wrapr h4 {
    font-size: 21px;
    margin-bottom: 22px;
  }

  .single-post .blg-dtls-cont-wrapr h2 {
    margin-bottom: 22px;
    margin-top: 28px;
  }

  .blgcmnsn-prdtwrpr {
    padding: 15px;
  }

  .blgcmnsn-prd-hd {
    margin-bottom: 15px;
  }

  .single-post .main-banner.innr-bnnr-sec.blog_dtls_inner {
    padding: 90px 0 0 0 !important;
  }

  .single-post .blg-dtls-wrapr {
    padding-right: 0;
  }

  /*blog dtls page*/
  /*support pp.c 23/8/2024*/
  /*support pp.c 26/8/2024*/
  /*home page*/
  .page-template-home .main-banner .ban-blks-lft h1 {
    margin-bottom: 30px;
  }

  .page-template-home .main-banner .ban-para {
    margin-bottom: 30px;
  }

  /*home page*/
  /*blog details page*/
  .single-post .blg-dtls-cont-wrapr .bogtable-wrapr {
    padding: 15px;
  }

  .single-post .blg-dtls-cont-wrapr table {
    font-size: 16px;
  }

  .masterlist .unlimite-wraping {
    padding: 15px;
  }

  .masterlist .unlimite-wraping .unlimit-shpe {
    padding: 0 5px;
  }

  .masterlist .idp-innov-img-wrppr.secnd-img-idp {
    padding: 0 5px;
  }

  .masterlist .idp-innov-img-wrppr.secnd-img-idp {
    width: 100%;
    max-width: 100%;
  }

  .masterlist {
    min-height: 550px;
    position: relative;
  }

  .masterlist > figure {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  .masterlist .unlimite-wraping .unlimit-shpe {
    width: 100%;
    max-width: 100%;
    text-align: right;
  }

  .masterlist .unlimite-wraping .unlimit-shpe > img {
    max-width: 250px;
    margin-left: auto;
  }

  .masterlist .unlimite-wraping .unlimit-shpe {
    margin-bottom: 15px;
  }

  .masterlist {
    padding-top: 100px;
  }

  .faq-ans ul li::before {
    top: 9px;
  }

  /*support pp.c 26/8/2024*/

  /* 27/08/2024 dm */

  .register-sec {
    padding-top: 140px;
    padding-bottom: 60px;
  }

  /* 27/08/2024 dm */

  /* 28.08.24 start */

  .ftrclm-lower .addrs-ul li a {
    font-size: 16px;
    padding: 8px 20px 10px;
  }

  .ftrclm-lower .addrs-ul li {
    margin: 0 15px 0 0;
  }

  /* 28.08.24 end */

  /* 29.08.24 start */

  /* .page-id-725 .innovative-rw.incts-innov-rw:nth-child(1) .incts-innov-icon::before {
        width: calc(100% - 12px);
        height: calc(100% - 12px);
    }

    .page-id-725 .innovative-rw.incts-innov-rw:nth-child(2) .incts-innov-icon::before {
        width: calc(100% - 12px);
        height: calc(100% - 12px);
        ;
    }

    .page-id-725 .innovative-rw.incts-innov-rw:nth-child(3) .incts-innov-icon::before {
        width: calc(100% - 12px);
        height: calc(100% - 12px);
    } */

  /* 29.08.24 end */

  /* 02.09.24 css */
  .book-demo-right,
  .book-demo-left {
    width: 100%;
  }

  .book-left-top-part {
    padding: 40px 20px 50px 15px;
  }

  .book-demo-logo {
    margin-bottom: 45px;
  }

  .book-left-btm-part {
    padding: 45px 15px 50px 15px;
  }

  .book-demo-left {
    min-height: 1px;
  }

  .book-demo-right {
    padding: 40px 15px 35px 15px;
  }

  .demo-close-btn {
    top: 20px;
    right: 15px;
  }

  .live-demo-head-wrppr p {
    font-size: 30px;
  }

  .live-demo-head-wrppr h2 {
    font-size: 42px;
  }

  .live-demo-head-wrppr {
    padding-right: 60px;
    margin-bottom: 30px;
  }

  .book-left-btm-part::before,
  .book-demo-left::before {
    display: none;
  }

  .book-demo-form iframe {
    height: auto !important;
  }

  .book-demo-wraper {
    overflow: auto;
  }

  .demo-close-btn {
    width: 45px;
    height: 45px;
  }

  .demo-close-btn > img {
    width: 20px;
  }

  /* 02.09.24 css */

  /* 05.09.24 start */

  .page-template-custom-management .innovative-sec .innovative-wrppr h3 {
    font-size: 24px;
  }

  .bllg-img {
    margin-bottom: 40px;
  }

  .about-icustom,
  .products-sec {
    margin-bottom: 25px;
  }

  /* 05.09.24 end */
  /*support pp.c 6/9/2024*/
  /*header*/
  .cstnavmenu .navinner .navlist {
    display: none;
  }

  .rtbg {
    background-color: #f3f9ff;
  }

  .mbl-navbar .sub-menu-top-box {
    display: none;
  }

  .navbar-brand {
    width: 38px;
  }

  .cstnavmenu .navinner .navlistlabel {
    display: none;
  }

  .main-head .navrt {
    padding: 30px;
  }

  .main-head.h-light .close-btn.nvrtbtn {
    top: 30px;
    right: 30px;
  }

  .main-head .navrt .close-btn img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }

  .main-head .navrt .close-btn:hover {
    background-color: var(--blue-clr);
    border-color: var(--blue-clr);
  }

  .mbl-logo {
    display: inline-block;
  }

  .dsktp-logo {
    display: none;
  }

  .nvrt-top-ss {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-right: 50px;
  }

  .main-head .navrt .navcontact.navul {
    order: 2;
  }

  .main-head .navrt .navbtm {
    padding: 0 30px;
  }

  .main-head .navrt .navinner {
    padding-right: 0;
  }

  .main-head .navbar-nav.mbl-navbar > li.menu-item-has-children {
    border-bottom: 1px solid #e3eff0;
  }

  .main-head .navbar-nav.mbl-navbar > li a {
    width: 100%;
  }

  .navbar-nav.mbl-navbar .sub-menu {
    padding: 0;
    position: relative;
  }

  .navbar-nav.mbl-navbar .sub-menu .hdr-products {
    display: none;
  }

  .main-head .navbar-nav > li.menu-item-has-children:last-child {
    border-bottom: none;
  }

  .main-head .navrt .navbtm .navSocial li {
    flex: auto;
  }

  .navbar-nav.mbl-navbar .clickD {
    position: absolute;
  }

  .main-head .navrt .navbtm .navSocial li a {
    border-bottom: none;
    font-size: 12px;
    font-weight: 500;
  }

  .main-head .navrt .navSocial {
    order: 1;
    margin-bottom: 13px;
    padding-top: 0;
  }

  /*home page*/
  .clickD {
    width: 40px;
    height: 30px;
  }

  .menu-cls.header-toggler span {
    display: none;
  }

  .menu-cls.header-toggler {
    background-color: var(--black-clr);
    border-radius: 100%;
    width: 40px;
    height: 40px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .mb-tgleicon {
    display: block;
  }

  .mb-menuicon {
    display: none;
  }

  .main-head.fixed .menu-cls img {
    filter: none;
  }

  .solutions-right-content {
    display: none;
  }

  .trade-ul {
    display: none;
  }

  .why-icustoms-left-top {
    display: none;
  }

  .why-icustoms-slider-outer-imp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .why-icustoms-left {
    background-color: transparent;
    padding: 0;
  }

  .why-icustoms-slider .why-icustoms-sld-text-wpr {
    margin-top: 39px;
  }

  .why-icustoms-left .why-icustoms-left-bottom {
    text-align: center;
    margin-top: 0;
  }

  .page-template-home .smart-sec {
    display: none;
  }

  .ftrclm-lower {
    display: none;
  }

  .ftrcl2 {
    display: none;
  }

  .solutions-blk .cmn-sec-head {
    text-align: center;
    margin-bottom: 40px;
  }

  .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 20px;
    margin-left: -2px;
    margin-right: -2px;
    justify-content: center;
  }

  .slick-dots li.slick-active button {
    background-color: #f3f9ff;
  }

  .slick-dots li {
    list-style: none;
    padding: 0 2px;
  }

  .slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: rgba(243, 249, 255, 0.3);
    border: none;
    padding: 0;
    font-size: 0;
  }

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

  .innovative-sec .slick-dots li button {
    background-color: rgba(0, 0, 0, 0.2);
  }

  .innovative-sec .slick-dots li.slick-active button {
    background-color: #000000;
  }

  .why-icustoms-container .why-icustoms-left {
    padding-bottom: 0;
  }

  /*home page*/
  /*support pp.c 6/9/2024*/

  /* 09.09.24 start */

  .mbl-navbar li:not(:last-child) {
    margin-bottom: 20px;
  }

  .navbar-nav > li > a {
    font-size: 18px !important;
    padding: 10px 20px !important;
  }

  .navbar-nav > li.menu-item-has-children > .clickD {
    background: url(images/add-icon.svg) center no-repeat;
    background-size: 15px;
    top: 5px;
  }

  .navbar-nav > li.menu-item-has-children > .clickD.toggled {
    background: url(images/minus-icon.svg) center no-repeat;
    background-size: 15px;
  }

  .navbar-nav.mbl-navbar .sub-menu {
    padding: 10px 0px !important;
    background: var(--white-clr);
    border-radius: 0;
  }

  .main-menu-box-wrappers {
    background: transparent;
    padding: 0 20px;
  }

  .navbar-nav .main-menu-lis .main-menu-box-wrappers::before {
    display: none;
  }

  .submenus-cls > li {
    margin-bottom: 0 !important;
  }

  .main-submenu .submenuli a {
    font-size: 18px;
    padding: 10px 0;
  }

  .submenuli > a.active::after,
  .submenuli > a::after {
    opacity: 1;
  }

  .main-head .navrt .navSocial {
    justify-content: space-between;
  }

  .main-head .navrt .navbtm .navSocial li {
    flex: 0 0 auto;
  }

  .navul.desktop {
    display: none;
  }

  .navul.mobi {
    display: flex;
    align-items: center;
    font-size: 14px;
  }

  .navul.mobi span {
    font-size: 18px;
    margin-right: 5px;
  }

  .why-icustoms-right,
  .why-icustoms-slider .slick-list,
  .why-icustoms-slider {
    height: auto;
  }

  .why-icustoms-slider .slick-track {
    display: flex !important;
  }

  .why-icustoms-slider .why-icustoms-slider-item {
    height: auto !important;
  }

  .why-icustoms-slider .why-icustoms-slider-item-in {
    height: 100%;
  }

  .ban-blks-lft h1 i {
    padding: 9px;
  }

  .all-similir-sect .idp-innr-bnnr .ban-blks-lft.innr-bnnr-content {
    max-width: 100%;
  }

  .idp-img-wrppr {
    max-width: 100%;
  }

  .idp-contact-content-wrppr ul {
    display: none;
  }

  .idp-contact-content-wrppr .sec-head {
    margin: 0 auto 40px;
    text-align: center;
  }

  .gform_wrapper.gravity-theme form input[type="text"],
  .gform_wrapper.gravity-theme form input[type="tel"],
  .gform_wrapper.gravity-theme form input[type="password"],
  .gform_wrapper.gravity-theme form input[type="email"],
  .gform_wrapper.gravity-theme form select {
    height: 50px;
    border-radius: 5px;
  }

  .gform_wrapper.gravity-theme form .gform_fields {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .all-similir-sect .product-innovative .innovative-wrppr h3 {
    font-size: 40px;
  }

  .all-similir-sect .product-innovative .innovative-wrppr {
    padding: 100px 20px 20px;
    border-radius: 10px;
  }

  .innovative-wrppr p {
    margin-bottom: 53px;
  }

  .all-similir-sect .test-doc-content .test-doc-info {
    padding-left: 30px;
  }

  .product-navigation.active .custm-declear-wrappr h3 {
    margin-bottom: 0;
  }

  .custm-declear-title-icon {
    margin-bottom: 15px;
  }

  .product-navigation.active .custm-declear-wrappr {
    margin: 10px 0;
  }

  .custm-agent-innov-rw .innovative-wrppr {
    padding: 100px 20px 20px !important;
  }

  .innovative-wrppr h3 {
    font-size: 40px;
  }

  .custm-declear-txt-wrppr .btn-wrppr,
  .sec-head.manage-content .btn-all-wrppr {
    justify-content: center;
  }

  .product-navigation.active .custm-declear-wrappr.without-bg {
    padding: 15px 0;
  }

  .product-navigation.active .custm-declear-wrappr.without-bg h3 {
    margin-bottom: 18px;
  }

  .abt-msn-rgtcol {
    display: none;
  }

  .abt-msn-contwrpr {
    padding: 86px 30px;
  }

  .abt-msn-contwrpr .card-icon {
    margin-bottom: 30px;
    width: 65px;
  }

  .abt-msn-contwrpr .abt-msn-contbutn {
    justify-content: flex-start !important;
  }

  .office-lft-img {
    display: none;
  }

  .office-map {
    height: 307px;
  }

  .office-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mobile-fast-part {
    display: flex;
    order: 1;
    width: 100%;
    padding: 30px 20px 0;
    justify-content: center;
  }

  .book-demo-right {
    order: 2;
    height: inherit;
    padding-top: 0;
    text-align: center;
  }

  .book-demo-left {
    order: 3;
  }

  .book-demo-logo {
    width: 55px;
    margin-bottom: 30px;
  }

  .live-demo-head-wrppr {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .book-left-top-part {
    padding: 35px 30px;
  }

  .book-left-top-part .book-demo-logo,
  .book-left-top-part .cmn-h3-head,
  .demo-para-wrppr {
    display: none;
  }

  .book-left-top-part .watch-ul {
    justify-content: center;
    margin-bottom: 0;
  }

  .book-left-btm-part {
    padding: 40px 30px;
    height: inherit;
  }

  .cmn-h3-head.expect-head {
    display: none;
  }

  /* 09.09.24 end */

  /* AD 12/09/2024 */
  .innovative-wrppr,
  .innovative-wrppr.all-similir-sect,
  .innovative-wrppr.incts-innov-wrppr {
    min-height: 368px;
  }

  .innovative-wrppr.idp-innov-wrppr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 66px;
  }

  .custm-declear-sec .btn-wrppr.dsktop-btn {
    display: none;
  }

  .custm-declear-sec .btn-wrppr.mbl-btn {
    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;
    margin-top: 60px;
  }

  .custm-declear-sec .btn-wrppr.mbl-btn > *:not(:last-child) {
    margin-right: 10px;
  }

  .innovative-wrppr > *:last-child {
    margin-bottom: 0;
  }

  .benefit-card-wrppr {
    padding: 60px 30px;
    min-height: 362px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .benefit-card-wrppr .benefit-icon {
    height: 100px;
    margin-bottom: 55px;
  }

  .benefit-card-wrppr h3 {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .abt-card-wppr p {
    font-size: 20px;
  }

  .abt-card-wppr .h4-title {
    width: 100%;
  }

  .best-logo-list li img {
    height: 60px;
  }

  /* AD 12/09/2024 END */

  /* support start 16-9-24 */
  .book-demo-form iframe {
    height: 690px !important;
  }
  .thank-sec {
    padding: 100px 0;
  }
  .thnk-logo {
    padding: 20px;
    margin-bottom: 35px;
  }
  .thank-pass {
    width: 50px;
    height: 50px;
    margin: 0 auto 30px;
  }
  .thank-pass img {
    width: 26px;
  }
  .thnk-blk p {
    font-size: 18px;
  }
  .thnk-blk .cmn-btn {
    margin-top: 25px;
  }
  .thnk-blk {
    padding: 10px 10px 30px 10px;
  }
  .thnk-logo img {
    width: 35px;
  }

  .ban-content-area p {
    font-size: 18px;
    padding: 0;
    margin-bottom: 0;
  }
  .wins-wrap .winner-button {
    width: 50px;
    height: 50px;
  }
  .wins-wrap .winner-button img {
    width: 18px;
  }
  .section-visible .main-head {
    padding-top: 100px;
  }
  .pop-up-banner-for-all {
    padding: 15px 0;
  }
  .section-visible .main-banner.innr-bnnr-sec {
    padding: 182px 0 48px !important;
  }
  .pop-up-banner-for-all {
    padding: 10px 0;
}
  /* support end 16-9-24 */
}

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

  .save-lft {
    text-align: center;
    margin-bottom: 30px;
  }

  .save-lft i {
    margin: 0 auto 30px;
  }

  .trade-li .h5-title {
    font-size: 16px;
  }

  h1,
  .h1-title {
    font-size: 35px;
  }

  h2,
  .h2-title {
    font-size: 30px;
  }

  h3,
  .h3-title {
    font-size: 25px;
  }

  h4,
  .h4-title {
    font-size: 20px;
  }

  h5,
  .h5-title {
    font-size: 18px;
  }

  h6,
  .h6-title {
    font-size: 16px;
  }

  .btm-list,
  .ftr-btm p {
    width: 100%;
    /* text-align: center;
      justify-content: center; */
  }

  .btm-list {
    margin-top: 12px;
    padding-left: 0;
  }

  .ftr-innr-cl11,
  .ftr-innr-cl22 {
    margin-bottom: 35px;
  }

  .ftr-innr-cl22,
  .ftr-innr-cl44 {
    width: 40%;
    padding-left: 10px;
  }

  .ftr-innr-cl11,
  .ftr-innr-cl33 {
    width: 60%;
  }

  .ftrcl1,
  .ftrcl2 {
    width: 100%;
  }

  .ftrcl1 {
    margin-bottom: 35px;
  }

  .addrs-ul li,
  .btm-list li a,
  .ftr-btm p,
  .menu-list li a {
    font-size: 15px;
  }

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

  .get-blk i {
    /* width: 80px;
    height: 80px; */
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }

  .ban-para {
    max-width: 410px;
  }

  .ban-crcl {
    width: 50%;
  }

  body,
  .why-icustoms-sld-text-wpr p,
  .innovative-card p,
  .login-btn,
  .bdr-btn,
  .cmn-btn,
  .common-button,
  .author-name,
  .save-lft .h4-title,
  .transformed-blk-btm p {
    font-size: 16px;
  }

  .save-sec,
  .why-icustoms-section,
  .transformed-sec,
  .one-sec,
  .solutions-sec,
  .smart-sec,
  .innovative-sec,
  .get-sec,
  .unlimit-sec,
  .testimonial-sec,
  .manage-sec,
  .faq-sec,
  .benefit-idp-sec,
  .idp-contact-sec,
  .custm-declear-sec {
    padding: 45px 0;
  }

  .one-bg-img {
    bottom: -35px;
  }

  .transformed-rit {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
  }

  .transformed-blk-lft {
    width: 100%;
    max-width: 545px;
    margin: 0 auto;
  }

  .transformed-blk-lft span {
    width: 300px;
    height: 300px;
    margin-left: 0;
  }

  .lrg-srcl {
    width: 125px;
    height: 125px;
    left: 125px;
  }

  .sml-srcl {
    width: 90px;
    height: 90px;
  }

  .why-icustoms-left {
    padding: 20px 15px;
  }

  .why-icustoms-action {
    width: calc(100% - 30px);
  }

  .slides-numbers {
    width: 30px;
  }

  .why-icustoms-action a,
  .why-icustoms-sld-text-wpr h3 {
    font-size: 20px;
  }

  .save-figs {
    padding-left: 0;
  }

  .features-list {
    margin-bottom: 40px;
  }

  .company-list li {
    width: 40%;
    padding: 10px 0;
  }

  .company-list li:not(:last-child) {
    margin-right: 25px;
  }

  .lrg-srcl {
    width: 150px;
    height: 150px;
  }

  .transformed-left-list-roll .splide__slide {
    margin-bottom: 0;
    margin-right: 20px;
  }

  .navrt {
    padding: 16px 10px 16px;
  }

  .navbar-nav > li > a,
  .navinner label {
    font-size: 17px;
  }

  .main-submenu .submenuli a,
  .navlist li a {
    font-size: 16px;
  }

  .sub-menu-top-box-lft p {
    font-size: 14px;
  }

  .hdr-products {
    padding: 20px 15px;
  }

  .navbtm {
    padding: 0 10px 0 10px;
  }

  .slides-numbers-text {
    font-size: 17px;
  }

  .mbl-fancybox-cls {
    display: block;
    margin-bottom: 50px;
  }

  .smart-bg-blk {
    display: none;
  }

  .mbl-fancybox-cls img {
    width: 100%;
  }

  .copy-symbol {
    font-size: 15px;
  }

  .main-submenu .submenuli {
    padding-right: 0;
  }

  /* 08.07.24 start */
  /* 
  .solutions-blk .cmn-sec-head {
    margin-bottom: 30px;
  } */

  .solutions-blk .cmn-sec-head p {
    font-size: 20px;
  }

  /* 08.07.24 end */

  /* 12.07.24 start */

  .main-banner.innr-bnnr-sec {
    padding: 100px 0 50px !important;
  }

  /* .ban-blks-lft h1 i {
    width: 45px;
    height: 45px;
    margin-right: 15px;
    padding: 8px;
  } */

  .ban-blks-lft.innr-bnnr-content h1 {
    margin-bottom: 15px;
  }

  .unlimit-sec,
  .testimonial-sec,
  .manage-sec,
  .faq-sec {
    padding: 40px 0;
  }

  .sec-head h2 {
    margin-bottom: 15px;
  }

  .unlimit-navfor-sldier a {
    width: calc(50% - 14px);
  }

  .unlimit-navfor-sldier {
    justify-content: center;
  }

  .faq-hdng {
    font-size: 20px;
  }

  .idp-innov-img-wrppr {
    max-width: 55%;
    margin: 0 auto;
  }

  .idp-innov-wrppr h3 {
    font-size: 30px;
    max-width: 100%;
  }

  .idp-innov-img-wrppr.secnd-img-idp {
    max-width: 350px;
    margin: 0 auto;
  }

  .idp-innov-rw:nth-child(3) .idp-innov-img-wrppr {
    max-width: 260px;
    margin-top: 0;
  }

  .benefit-head-col,
  .benefit-slider-col {
    width: 100%;
  }

  .benefit-head-innr {
    margin: 0 auto 30px;
    text-align: center;
  }

  .benefit-arrw-wrppr {
    justify-content: center;
  }

  .benefit-slider-outtr {
    margin-right: 0;
  }

  .benefit-card-wrppr h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .benefit-head-innr .sec-head {
    margin-bottom: 15px;
  }

  .test-doc-content {
    width: 100%;
    flex: 0 0 auto;
    padding-right: 0;
  }

  .test-doc-content .test-doc-info h3 {
    font-size: 28px;
  }

  .innovative-wrppr.incts-innov-wrppr h3 {
    font-size: 28px;
  }

  .unlimit-wrppr.cutm-agent-wrppr ul {
    margin-bottom: 35px;
    font-size: 16px;
  }

  .custm-agent-innov-rw .innovative-wrppr {
    padding: 25px 66px 30px 15px;
  }

  .custm-declear-txt-wrppr {
    margin-bottom: 35px;
  }

  .custm-declear-wrappr h3 {
    font-size: 24px;
  }

  .sec-head.unlimit-head h2 {
    font-size: 30px;
  }

  .unlimit-wrppr ul li {
    font-size: 16px;
  }

  .custm-agent-bnnr-sec .banbg-img {
    object-position: left;
  }

  /* 12.07.24 end */

  /* AD 19/07/2024 */
  .tnc-sec {
    padding: 40px 0;
  }

  .error404 .error-wraper.cmn-gap {
    padding: 130px 0 90px;
  }

  /* AD 19/07/2024 END */

  /* 22/07/2024 work start */
  .blog-post-dtls-head > * {
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .blg-prfl-icon {
    padding: 0px;
    margin: 0px;
    width: 25px;
  }

  .blog-post-dtls-head {
    flex-wrap: wrap;
  }

  .about-icustom h4 {
    font-size: 25px;
  }

  .about-icustom {
    padding: 30px 25px;
  }

  .blgpg-lftcol .lower-list li a {
    font-size: 16px;
  }

  /* 22/07/2024 work end */

  /* SS Css Begin 19-08-2024 */

  .idp-bsub h3 {
    margin-left: 60px;
    font-size: 24px;
  }

  .all-similir-sect .idp-innr-bnnr .ban-blks-lft.innr-bnnr-content {
    max-width: 300px;
  }

  .all-similir-sect .innovative-sec.product-innovative {
    margin-top: 40px;
  }

  /* End Of SS Css 19-08-2024 */
  /*support pp.c 20/8/2024*/
  .full-contact-wraper .main-banner.innr-bnnr-sec {
    padding-bottom: 50px !important;
  }

  /*support pp.c 20/8/2024*/

  /* support starts 21.08.2024  */
  .service-rit-wppr {
    margin-top: 20px;
  }

  .abtvst-contwrp .sec-head {
    margin-bottom: 20px;
    text-align: center;
  }

  /* css start 22/08/2024 - about page */
  .sponsor-sec,
  .abt-misionsec,
  .our-visionsec,
  .company-profile-sec,
  .our-award-sec,
  .booking-sec {
    padding: 45px 0;
  }

  .our-office-sec {
    padding-top: 45px;
  }

  .office-img-wppr {
    margin-bottom: 45px;
  }

  .company-row {
    --bs-gutter-y: 40px;
  }

  .cmpny-card-outer {
    margin-bottom: 20px;
  }

  .award-innr-card {
    padding: 50px 15px;
  }

  .award-img-wpr {
    margin-bottom: 30px;
  }

  .name-innr-wppr .h3-title {
    font-size: 22px;
  }

  .our-award-sec .sec-head h2,
  .office-rit-txt h2 {
    font-size: 30px;
  }

  .awrd-txt h3,
  .office-rit-txt h3,
  .office-rit-txt p {
    font-size: 22px;
  }

  .ftr-innr-row {
    margin: -10px;
  }

  .ftr-innr-cl1 {
    padding: 10px;
  }

  /* css End 22/08/2024 - about page */
  /* =====glossary page===== */
  .page-template-glossary .faq-sec {
    padding: 65px 0 45px;
  }

  /* 23/08/2024 Start */
  /* =======Partners page======== */
  .booking-head h2 {
    font-size: 25px;
  }

  .booking-head p {
    max-width: 100%;
  }

  .book-calendar iframe {
    height: 610px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: auto !important;
    overflow-x: hidden;
  }

  .custm-declear-sec-partners .custm-declear-wrappr h3 {
    font-size: 20px;
  }

  /* .product-navigation.active .custm-declear-wrappr.without-bg {
      padding: 20px 0;
    } */

  .custm-declear-sec-partners .othr-custm-declear-slidr {
    min-height: 260px;
  }

  /* 23/08/2024 End */
  /*support pp.c 23/8/2024*/
  /* =======Integrations Page======== */
  /*cmscss*/
  .integrations-top,
  .other-integrations-sec {
    padding: 45px 0;
  }

  .other-integrations-sec .logo-list {
    margin-bottom: 45px;
  }

  .integrations-top .slider-container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .integrations-top .slider-for {
    width: 100%;
    margin-bottom: 15px;
  }

  .integrations-top .slider-nav {
    width: 100%;
  }

  .integrations-top .slider-nav {
    padding-left: 0;
  }

  .integrations-top .tab-slidernav-item-wrap span {
    font-size: 15px;
  }

  .integrations-top .slider-nav img {
    width: 30px;
  }

  .integrations-top .tab-slidernav-item-wrap {
    padding: 10px;
    min-height: 65px;
  }

  .integrations-top .tab-slidernav-item-wrap span {
    margin-left: 10px;
  }

  .integrations-top .tab-slidernav-item-wrap {
    border-top: 0;
    border-right: 1px solid #e3eff0;
  }

  .support-slide-sec {
    padding: 45px 0;
  }

  .integrations-top .sec-head-para {
    margin-bottom: 20px;
  }

  /* =======Integrations Page======== */
  /*=======t/c privacy policypage========*/
  .policy-page-purpose .policy-ban-para h2 {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .policy-section .polici-faq .sec-head h2 {
    font-size: 25px;
  }

  .policy-page-purpose .innr-bnnr-content .policy-ban-para {
    margin-top: 50px;
  }

  /*=======t/c privacy policypage========*/
  .blogsec .blg-lstimg {
    height: auto;
  }

  /*blog details page*/
  .single-post .blogDtlsec .blg-dtls-hdng-wrpr h1 {
    font-size: 25px;
  }

  .single-post .blogDtlsec .blg-dtls-cont-wrapr p {
    font-size: 16px;
  }

  .single-post .blg-dtls-cont-wrapr h2 {
    font-size: 20px;
  }

  .single-post .blg-dtls-cont-wrapr h3 {
    font-size: 19px;
  }

  .single-post .blg-dtls-cont-wrapr h4 {
    font-size: 17px;
  }

  .blgcmnsn-prd-hd {
    font-size: 18px;
  }

  /*blog details page*/
  /*support pp.c 23/8/2024*/
  /*support pp.c 26/8/2024*/
  .single-post .blg-dtls-cont-wrapr table tr td,
  .single-post .blg-dtls-cont-wrapr table tr th {
    min-width: 200px;
  }

  /*support pp.c 26/8/2024*/

  /* 28.08.24 start */

  .ftrclm-lower {
    padding-top: 30px;
  }

  .ftrclm-lower .addrs-ul li a {
    font-size: 15px;
    padding: 8px 30px 10px;
  }

  /* 28.08.24 end */

  /* 05.09.24 start */

  .page-template-custom-management
    .innovative-sec
    .innovative-wrppr
    .innov-img-wrppr {
    margin-bottom: 25px;
  }

  /* 05.09.24 end */
  /*support pp.c 6/9/2024*/
  /*home page*/
  .ban-fig {
    display: none;
  }

  .ban-crcl {
    width: 60%;
    right: -30%;
  }

  .bdr-btn {
    padding: 12px 26px;
    font-size: 14px;
  }

  .cmn-btn {
    padding: 13px 26px;
    font-size: 14px;
  }

  .save-sec,
  .solutions-sec,
  .get-sec,
  .why-icustoms-section,
  .innovative-sec {
    padding: 60px 0;
  }

  .save-lft .h1-title {
    margin-bottom: 14px;
  }

  .save-lft {
    text-align: left;
  }

  .company-list {
    margin: 0 -15px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .company-list li {
    padding: 0 15px;
  }

  .company-list li:not(:last-child) {
    margin-right: 0;
  }

  .save-blk-main-btm .features-list {
    display: none;
  }

  .save-figs img {
    border-radius: 13px;
  }

  .container {
    padding: 0 30px;
  }

  .save-figs {
    display: none;
  }

  .save-figs.save-figsmble {
    display: block;
  }

  .savecost-rvwwrp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 39px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .save-lft .savecost-rvwwrp i {
    margin-bottom: 0;
  }

  .savecost-rvwwrp .cmn-btn {
    min-width: 135px;
  }

  .page-template-home .save-lft {
    margin-bottom: 0;
  }

  .page-template-home .save-blk-main {
    margin-bottom: 40px;
  }

  .page-template-home .save-sec .wetxt {
    display: none;
  }

  .why-icustoms-slider,
  .why-icustoms-slider .slick-list,
  .why-icustoms-slider .slick-track,
  .why-icustoms-slider .why-icustoms-slider-item-in,
  .why-icustoms-slider .why-icustoms-slider-item {
    height: auto;
  }

  .common-button {
    padding: 14px 27px;
    font-size: 14px;
  }

  .get-blk p {
    margin-bottom: 10px;
  }

  .one-sec .today-btm {
    border-radius: 10px;
  }

  .one-sec .today-btm .today-btn-grp {
    margin-top: 20px;
  }

  .innovative-btm-blk .innovative-card {
    border-radius: 10px;
  }

  .innovative-blk .save-blk {
    margin-top: 30px;
  }

  .innovative-sec .sec-head {
    margin-bottom: 30px;
  }

  .solutions-acc-box {
    border-radius: 10px;
  }

  .why-icustoms-container {
    padding: 0 30px;
  }

  /*home page*/
  /*header*/
  .cstnavmenu {
    width: 100%;
  }

  /*footer*/
  footer .btm-list {
    margin-top: 0;
    margin-bottom: 13px;
  }

  footer .btm-list li a {
    font-weight: 500;
  }

  .ftr-logo {
    width: 119px;
  }

  .ftr-btm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  footer .ftr-top {
    padding: 30px 0;
  }

  footer .ftr-btm {
    padding-bottom: 30px;
  }

  /*footer*/
  /*support pp.c 6/9/2024*/

  /* 09.09.24 start */

  .main-banner.innr-bnnr-sec {
    padding: 120px 0 60px !important;
  }

  .ban-blks-lft.innr-bnnr-content {
    margin-bottom: 0;
  }

  .all-similir-sect .idp-innr-bnnr .idp-img-col {
    display: none;
  }

  .all-similir-sect .idp-innr-bnnr .ban-blks-lft.innr-bnnr-content {
    max-width: 100% !important;
  }

  .idp-bsub h3 {
    margin-left: 80px;
  }

  .benefit-slider .slick-dots li button {
    background-color: var(--footer-black);
    opacity: 0.3;
  }

  .benefit-slider .slick-dots li.slick-active button {
    opacity: 1;
  }

  .benefit-arrw-wrppr {
    display: none;
  }

  .innovative-rw.idp-innov-rw .innovative-col:nth-child(even),
  .innovative-rw.incts-innov-rw .innovative-col:nth-child(even) {
    display: none;
  }

  .custm-declear-wrappr .span-icon {
    width: 30px;
    height: 30px;
    padding: 5px;
  }

  .custm-declear-title-icon {
    margin-bottom: 10px;
  }

  .flag-all-wrppr .flag-wrppr {
    width: 100px;
    height: 100px;
  }

  .setting-icon {
    width: 75px;
    height: 75px;
    padding: 15px;
  }

  .btn-all-wrppr.desk {
    display: none !important;
  }

  .btn-all-wrppr.mobi {
    display: flex;
    justify-content: center;
    padding-top: 40px;
  }

  .service-innr-card-each {
    padding: 2px;
  }

  .serv-card-wpr {
    min-height: 89px;
    padding: 10px;
    border-radius: 5px;
  }

  .custm-agent-bnnr-sec .idp-img-col {
    display: none;
  }

  .custm-declear-rw .custm-declear-txt-col.custm-declear-txt-col-partners {
    display: none;
  }

  .partners-title-wrap {
    text-align: center;
  }

  .abt-msn-contbutn {
    display: flex;
    justify-content: center;
    margin-top: 60px;
  }

  .spnsr-logo-items {
    height: 80px;
    padding: 20px 10px;
  }

  .integrations-top .slider-nav {
    order: 1;
    margin-bottom: 15px;
  }

  .integrations-top .slider-for {
    order: 2;
    margin-bottom: 0;
  }

  .integrations-top .tab-slidernav-item-wrap span {
    display: none;
  }

  .integrations-top .tab-slidernav-item-wrap {
    padding: 8px;
    min-height: 35px;
    justify-content: center;
  }

  .mobi-slider-btn-wrppr {
    display: flex;
    justify-content: center;
    padding-top: 40px;
  }

  .integrations-top .sec-head .cmn-btn {
    display: none;
  }

  .logo-row {
    --bs-gutter-x: 10px;
    --bs-gutter-y: 10px;
  }

  .logo-wrap {
    padding: 12px;
    min-height: 85px;
    border-radius: 10px;
  }

  .blgpg-row .col-lg-4.blgpg-lftcol {
    display: none;
  }

  .card-blue-bg-scroll ul li {
    padding: 0 10px;
  }

  .card-blue-bg-scroll ul {
    margin: 0 -10px 30px;
  }

  .page-template-login .register-card .form-input:last-child {
    margin-bottom: 20px;
  }

  .live-demo-head-wrppr p {
    font-size: 20px;
  }

  .live-demo-head-wrppr h2 {
    font-size: 34px;
  }

  /* 09.09.24 end */

  /* AD 12/09/2024 */
  .why-icustoms-slider .why-icustoms-slider-item-in {
    height: 100%;
  }

  .custm-declear-sec .custm-declear-txt-col {
    text-align: center;
  }

  .benefit-card-wrppr h3 {
    font-size: 25px;
    margin-bottom: 20px;
  }

  /* AD 12/09/2024 END */

  /* support start 16-9-24 */
  .thnk-blk p {
    font-size: 16px;
  }
  .ban-content-area p {
    font-size: 16px;
    width: 50%;
  }
  .wins-wrap {
    width: 50%;
  }
  .section-visible .cmn-btn {
    min-width: 108px;
  }
  
  /* support end 16-9-24 */
}

@media (max-width: 575px) {
  .ban-para {
    max-width: 340px;
  }

  h1,
  .h1-title {
    font-size: 30px;
  }

  h2,
  .h2-title {
    font-size: 25px;
  }

  h3,
  .h3-title {
    font-size: 22px;
  }

  h4,
  .h4-title {
    font-size: 19px;
  }

  h5,
  .h5-title {
    font-size: 17px;
  }

  body,
  .why-icustoms-sld-text-wpr p,
  .innovative-card p,
  .login-btn,
  .bdr-btn,
  .cmn-btn,
  .common-button,
  .author-name,
  .save-lft .h4-title,
  .transformed-blk-btm p {
    font-size: 15px;
  }

  .today-btm {
    padding: 20px;
  }

  .trade-ul .trd-wrap:nth-child(1),
  .trade-ul .trd-wrap:nth-child(2),
  .trade-ul .trd-wrap:nth-child(3) {
    width: 100%;
  }

  .trd-wrap {
    width: 100%;
  }

  .why-icustoms-section-heading h2::after {
    width: 70%;
  }

  .one-bg-img {
    width: auto;
  }

  .one-bg-img {
    bottom: -50px;
  }

  .one-blk-wrap {
    margin-bottom: 90px;
  }

  .transformed-blk-lft span {
    width: 230px;
    height: 230px;
  }

  .transformed-blk-lft {
    max-width: 495px;
  }

  .navSocial li {
    margin-right: 12px;
  }

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

  .navbar-brand {
    width: 150px;
  }

  .cstnavmenu {
    width: 100%;
  }

  .navSocial li a,
  .navul {
    font-size: 14px;
  }

  /* 12.07.24 start */

  .unlimit-left-col,
  .unlimit-right-col {
    width: 100%;
  }

  .unlimit-rw {
    --bs-gutter-x: 0;
    --bs-gutter-y: 30px;
  }

  .unlimit-slidermain-outtr {
    display: flex;
    flex-direction: column-reverse;
  }

  .unlimit-nav-btn-main {
    padding-top: 0;
    margin-bottom: 25px;
  }

  .unlimit-wrppr h3 {
    min-height: inherit;
  }

  /* .sec-head.unlimit-head h2 {
    font-size: 25px;
  } */

  /* 12.07.24 end */

  /* AD 19/07/2024 */
  .error404 .error-wraper.cmn-gap {
    padding: 120px 0 70px;
  }

  /* AD 19/07/2024 END */

  /* 24/07/2024 work start */
  .blogrgt-catwrpr .categlist ul {
    margin: -5px;
  }

  .blogrgt-catwrpr .categlist li {
    margin: 5px;
  }

  .blogrgt-catwrpr .categlist li a {
    font-size: 12px;
    padding: 7px 10px;
  }

  .date-author-wrap {
    font-size: 16px;
  }

  /* 24/07/2024 work end */

  /* SS Css Begin 19-08-2024 */

  .testi-icon-bx:not(:last-child) {
    margin-right: 12px;
  }

  .testi-icon-bx {
    border-radius: 6px;
  }

  /* ENd Of SS Css 19-08-2024 */

  /* css start 22/08/2024 - about page */
  .our-award-sec .sec-head h2,
  .office-rit-txt h2 {
    font-size: 25px;
  }

  .awrd-txt h3,
  .office-rit-txt h3,
  .office-rit-txt p {
    font-size: 20px;
  }

  .ftr-innr-cl1 {
    width: 33.33%;
    margin-bottom: 30px;
  }

  .ftr-innr-row {
    margin-bottom: -30px;
  }

  /* css End 22/08/2024 - about page */
  /* =====glossary page===== */
  .page-template-glossary .faq-sec {
    padding: 100px 0 45px;
  }

  /*support pp.c 23/8/2024*/
  /*=======t/c privacy policypage========*/
  .policy-page-purpose .policy-ban-para h2 {
    font-size: 23px;
  }

  .policy-section .polici-faq .sec-head h2 {
    font-size: 23px;
  }

  /*=======t/c privacy policypage========*/
  /*blog dtls page*/
  .single-post .blogDtlsec .blg-dtls-hdng-wrpr h1 {
    font-size: 23px;
  }

  .single-post .blogDtlsec .blg-dtls-cont-wrapr p {
    font-size: 15px;
  }

  /*blog dtls page*/
  /*support pp.c 23/8/2024*/

  /* 27/08/2024 dm */

  .register-card .card-head figure {
    padding: 20px 10px;
  }

  .register-card .form-input label {
    font-size: 16px;
  }

  .register-card .form-input input[type="text"],
  .register-card .form-input input[type="email"] {
    height: 50px;
  }

  /* .register-card .form-input:last-child {
        margin: 40px 0;
    } */

  .register-card .form-input input[type="submit"] {
    height: 50px;
    font-size: 16px;
  }

  .register-card .card-footer-cont {
    padding: 20px 0;
  }

  /* 27/08/2024 dm */

  /* 02.09.24 css */
  .book-demo-logo {
    margin-bottom: 30px;
    width: 180px;
  }

  .book-left-top-part .cmn-h3-head {
    font-size: 24px;
  }

  .book-left-top-part .watch-ul li:not(:last-child) {
    margin-right: 20px;
  }

  .demo-para-wrppr p {
    font-size: 18px;
  }

  .cmn-h3-head.expect-head {
    margin-bottom: 30px;
    font-size: 22px;
  }

  .best-logo-list li:not(:last-child) {
    margin-right: 45px;
  }

  .live-demo-head-wrppr p {
    font-size: 22px;
  }

  .live-demo-head-wrppr h2 {
    font-size: 32px;
  }

  .best-list li {
    padding-right: 20px;
  }

  /* 02.09.24 css */
  /*support pp.c 6/9/2024*/
  /*home page*/
  .main-banner {
    padding: 159px 0 131px 0;
  }

  .ban-crcl {
    width: 80%;
    right: -40%;
  }

  .main-head .login-btn {
    display: none;
  }

  .page-template-home .main-banner .ban-blks-lft h1 {
    margin-bottom: 15px;
  }

  .page-template-home .main-banner .ban-para {
    margin-bottom: 40px;
  }

  .bdr-btn,
  .cmn-btn {
    font-size: 14px;
  }

  .solutions-ulss li {
    font-size: 12px;
  }

  .one-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 10px;
  }

  .one-icon-box img {
    max-height: 35px;
  }

  .solutions-acc-btn .cmn-btn {
    min-width: 122px;
  }

  .cmn-btn {
    min-width: 123px;
  }

  .innovative-sec .save-txt {
    font-size: 15px;
  }

  /*footer*/
  footer .btm-list li a {
    font-size: 12px;
    font-weight: 500;
  }

  footer .ftr-btm p {
    font-size: 10px;
  }

  footer .addrs-ul li a {
    font-size: 12px;
  }

  footer .addrs-ul li {
    font-size: 12px;
  }

  footer .addrs-ul li a {
    padding-left: 10px;
  }

  /*footer*/
  /*support pp.c 6/9/2024*/

  /* 09.09.24 start */

  .unlimit-nav-btn-main {
    display: none;
  }

  .unlimit-rw .unlimit-right-col {
    display: none;
  }

  .unlimit-slider .slick-dots {
    margin-top: 30px;
  }

  .unlimit-slider .slick-dots li button {
    background-color: var(--footer-black);
    opacity: 0.3;
  }

  .unlimit-slider .slick-dots li.slick-active button {
    background-color: var(--light-clr2);
    opacity: 1;
  }

  .all-similir-sect .unlimit-rw {
    background: transparent;
    overflow: hidden;
    border-radius: 0;
  }

  .all-similir-sect .unlimit-wrppr {
    background: var(--footer-black);
    border-radius: 10px;
    padding: 85px 30px;
  }

  .idp-innov-rw:not(:last-child) {
    margin-bottom: 20px;
  }

  .innov-btn-wrppr {
    padding-top: 60px;
  }

  /* 09.09.24 end */

  /* AD 12/09/2024 */
  .main-banner {
    padding: 130px 0 90px;
  }

  .best-logo-list li img {
    height: 40px;
  }

  /* AD 12/09/2024 END */
  /* support start 16-9-24 */
  .book-demo-form iframe {
    height: auto !important;
  }
  .thnk-blk p {
    font-size: 15px;
  }
  .ban-content-area p {
    font-size: 15px;
  }
  .ban-content-area p {
    font-size: 13px;
}
  /* support end 16-9-24 */
}

@media (max-width: 479px) {
  .btm-list li a,
  .ftr-btm p {
    font-size: 14px;
  }

  .btm-list li:not(:last-child) {
    margin-right: 16px;
  }

  .btm-list {
    margin-top: 8px;
  }

  .main-banner .today-btn-grp {
    /* flex-direction: column; */
    align-items: flex-start;
  }

  .main-banner .today-btn-grp .bdr-btn {
    margin-bottom: 10px;
  }

  h2,
  .h2-title {
    font-size: 25px;
  }

  h3,
  .h3-title {
    font-size: 25px;
  }

  .watch-ul li {
    width: 40%;
    padding: 16px 0;
  }

  .one-bg-img {
    bottom: -43px;
  }

  .transformed-card-logo-box {
    min-height: 76px;
  }

  .transformed-card-logo-box {
    min-height: 80px;
  }

  .lrg-srcl {
    width: 90px;
    height: 90px;
    left: 104px;
  }

  .transformed-blk-lft span {
    width: 187px;
    height: 187px;
  }

  .transformed-blk-lft {
    max-width: 374px;
  }

  .sml-srcl {
    width: 77px;
    height: 77px;
  }

  .menu-cls span {
    padding-right: 10px;
  }

  .d-none-cls {
    margin-left: 10px;
  }

  .navbar-brand {
    width: 100px;
  }

  .copy-symbol {
    font-size: 14px;
  }

  /* 08.07.24 start */

  /* .solutions-blk .cmn-sec-head {
    margin-bottom: 25px;
  } */

  .solutions-blk .cmn-sec-head p {
    font-size: 18px;
  }

  /* 08.07.24 end */

  /* 12.07.24 start */

  .main-banner.innr-bnnr-sec {
    padding: 80px 0 40px !important;
  }

  /* .ban-blks-lft h1 i {
    width: 35px;
    height: 35px;
    padding: 8px;
  } */

  .unlimit-navfor-sldier a {
    width: 100%;
  }

  .unlimit-navfor-sldier {
    gap: 15px;
  }

  .svg-wrppr {
    width: 50px;
  }

  .innovative-wrppr .innovative-icon {
    width: 45px;
    height: 45px;
    padding: 10px;
  }

  .innovative-wrppr h3 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .testi-icon-bx {
    width: 35px;
    height: 35px;
    padding: 5px;
  }

  .testi-icon-bx:not(:last-child) {
    margin-right: 10px;
  }

  .testi-icon-bx.orange-bx {
    width: 85px;
    padding: 10px 12px;
  }

  .testimonial-sec .sec-head {
    margin-bottom: 20px;
  }

  .testi-icon-main {
    margin-bottom: 15px;
  }

  .feed-content p {
    font-size: 18px;
    line-height: 1.3;
  }

  .feed-user-wrppr .feed-user {
    font-size: 20px;
  }

  .feed-user-wrppr p {
    font-size: 16px;
  }

  .manage-img-wrppr {
    max-width: 250px;
  }

  .manage-img-wrppr-innr {
    padding-top: 15px;
    padding-right: 40px;
  }

  .manage-img-smll {
    max-width: 70px;
  }

  .manage-img-vsmll {
    max-width: 45px;
    right: 65px;
  }

  .faq-sec .sec-head {
    margin-bottom: 25px;
  }

  .each-faq {
    padding: 10px 0;
  }

  .faq-hdng {
    font-size: 20px;
    padding: 8px 0px 8px 55px;
  }

  .faq-hdng::before {
    width: 35px;
    height: 35px;
    background-size: 12px;
  }

  .faq-hdng.active::before {
    background-size: 18px;
  }

  .faq-ans {
    padding: 0 0 10px 55px;
  }

  .idp-img-wrppr {
    max-width: 100%;
  }

  .innovative-wrppr h3 {
    font-size: 24px;
  }

  .innovative-wrppr {
    padding: 30px 20px;
    border-radius: 10px;
  }

  .idp-innov-img-wrppr,
  .idp-innov-img-wrppr.secnd-img-idp,
  .idp-innov-rw:nth-child(3) .idp-innov-img-wrppr {
    max-width: 100%;
  }

  .idp-innov-img-wrppr.secnd-img-idp li {
    font-size: 15px;
    min-height: 33px;
    padding: 8px 15px 8px 40px;
  }

  .idp-innov-img-wrppr.secnd-img-idp li i {
    width: 33px;
    padding: 8px;
  }

  .idp-innov-img-wrppr.secnd-img-idp li:not(:last-child) {
    margin-bottom: 10px;
  }

  .test-doc-main {
    padding: 30px 20px;
  }

  .test-doc-content {
    flex-direction: column;
    text-align: center;
  }

  .test-doc-icon {
    width: 45px;
    margin-bottom: 15px;
  }

  .test-doc-content .test-doc-info {
    padding-left: 0;
  }

  .test-doc-content .test-doc-info h3 {
    font-size: 24px;
  }

  .test-doc-btn-wrppr {
    padding-top: 20px;
    text-align: center;
    width: 100%;
  }

  .idp-contact-main {
    padding: 30px 15px;
  }

  .frm-field-wrppr input,
  .frm-field-wrppr select {
    font-size: 15px;
    height: 40px;
  }

  .frm-field-wrppr textarea {
    font-size: 15px;
    height: 90px;
    padding: 10px 15px;
  }

  .frm-btn-check-wrappr
    .form_input_check
    label
    input[type="checkbox"]
    + span::before,
  .frm-btn-check-wrappr
    .form_input_check
    label
    input[type="checkbox"]
    + span::after {
    width: 15px;
    height: 15px;
  }

  .frm-btn-check-wrappr
    .form_input_check
    label
    input[type="checkbox"]
    + span::after {
    background-size: 9px;
  }

  .frm-btn-check-wrappr .form_input_check label span {
    font-size: 15px;
    max-width: 100%;
  }

  .frm-btn-check-wrappr .form_input_check label {
    padding-left: 25px;
    margin-bottom: 15px;
  }

  .frm-btn-check-wrappr input[type="submit"] {
    font-size: 15px;
    height: 40px;
  }

  .idp-innr-bnnr .ban-blks-lft.innr-bnnr-content {
    margin-bottom: 25px;
  }

  .innovative-wrppr.incts-innov-wrppr h3 {
    font-size: 24px;
  }

  .othr-custm-declear-slidr {
    padding-left: 15px;
    min-height: 360px;
  }

  .custm-declear-wrappr h3 {
    font-size: 22px;
  }

  .flag-all-wrppr .flag-wrppr {
    width: 85px;
    height: 85px;
  }

  .setting-icon {
    width: 60px;
    height: 60px;
    padding: 14px;
  }

  .custm-agent-benefit-sec .test-doc-icon {
    width: 45px;
  }

  .custm-agent-innov-rw .innovative-wrppr .bdr-btn {
    padding: 6px 15px;
  }

  /* .sec-head.unlimit-head h2 {
    font-size: 22px;
  } */

  .unlimit-wrppr ul li {
    font-size: 15px;
  }

  .incts-cmn-faq .faq-ans {
    padding-right: 20px;
  }

  /* 12.07.24 end */

  /* AD 18/07/2024 */
  .gform_wrapper.gravity-theme form input[type="text"],
  .gform_wrapper.gravity-theme form input[type="tel"],
  .gform_wrapper.gravity-theme form input[type="password"],
  .gform_wrapper.gravity-theme form input[type="email"],
  .gform_wrapper.gravity-theme form select {
    font-size: 15px;
    height: 40px;
  }

  .gform_wrapper.gravity-theme form textarea {
    font-size: 15px;
    height: 90px;
    padding: 10px 15px;
  }

  .gform_wrapper.gravity-theme #gform_1 .gform_footer input[type="submit"] {
    font-size: 15px;
    height: 40px;
  }

  /* AD 18/07/2024 END */
  /*support pp.c 20/8/2024*/
  .full-contact-wraper .main-banner.innr-bnnr-sec {
    padding-bottom: 40px !important;
  }

  /*support pp.c 20/8/2024*/
  /* css start 22/08/2024 - about page */
  .main-banner .innr-bnnr-content .today-btn-grp {
    flex-direction: row;
  }

  .main-banner .innr-bnnr-content .today-btn-grp a {
    font-size: 13px;
  }

  .innr-bnnr-content .ban-para {
    margin-bottom: 25px;
  }

  .our-vision-row .abtvst-contwrp {
    align-items: center;
  }

  .our-vision-row .cmn-benefit-arrw {
    width: 35px;
    height: 35px;
    padding: 8px;
  }

  .card-blue-bg {
    padding: 80px 20px 20px;
  }

  .company-img-content-wppr button[type="button"] {
    width: 40px;
    height: 40px;
    top: 20px;
    right: 20px;
  }

  .awrd-txt h3,
  .office-rit-txt h3,
  .office-rit-txt p,
  .name-innr-wppr .h3-title {
    font-size: 18px;
  }

  .ftr-innr-row {
    margin: -15px;
  }

  .ftr-innr-cl1 {
    width: 50%;
    margin-bottom: 0;
    padding: 15px;
  }

  /* .abt-msn-contwrpr {
    padding: 30px 20px;
  } */

  .benefit-each-item {
    padding: 2px;
  }

  .award-img-wpr img {
    max-width: 50%;
  }

  /* css End 22/08/2024 - about page */
  /* 23/08/2024 Start */
  /* =======Partners page======== */
  .booking-head h2 {
    font-size: 22px;
  }

  .benefit-idp-sec-partners .benefit-idp-rw {
    margin: 0;
  }

  .benefit-slider-col {
    padding: 5px;
  }

  .custm-declear-sec-partners .custm-declear-wrappr h3 {
    font-size: 18px;
    margin-bottom: 10px !important;
  }

  /* 23/08/2024 End */
  /*support pp.c 23/8/2024*/
  /*=====integration page======*/
  .logo-wrap {
    padding: 20px;
  }

  /*=====integration page======*/
  /*=======t/c privacy policypage========*/
  .policy-page-purpose .policy-ban-para h2 {
    font-size: 20px;
  }

  .policy-section .polici-faq .sec-head h2 {
    font-size: 20px;
  }

  /*=======t/c privacy policypage========*/
  /*support pp.c 23/8/2024*/
  /*support pp.c 26/8/2024*/
  .masterlist {
    min-height: 500px;
  }

  .bllg-img {
    margin-bottom: 25px;
  }

  /*support pp.c 26/8/2024*/
  /*support pp.c 6/9/2024*/
  /*home apge*/
  .bdr-btn,
  .cmn-btn {
    font-size: 10px;
    padding: 13px 27px;
  }

  .cmn-btn {
    padding: 14px 27px;
  }

  .common-button {
    font-size: 10px;
    padding: 14px 27px;
  }

  .ban-crcl {
    width: 90%;
    right: -44%;
  }

  .save-lft i {
    max-width: 120px;
  }

  .banbg-dsktp {
    display: none;
  }

  .banbg-mb {
    display: block;
  }

  .page-template-home .main-banner .banbg-img {
    object-position: left 20%;
  }

  /*home page*/
  /*support pp.c 6/9/2024*/

  /* 09.09.24 start */

  .navul.mobi {
    font-size: 10px;
  }

  .banbg-img.desktop {
    display: none;
  }

  .banbg-img.mobi {
    display: block;
  }

  .innr-bnnr-content .ban-para {
    margin-bottom: 40px;
  }

  .unlimit-wrppr {
    padding: 86px 30px;
  }

  .unlimit-wrppr .card-icon {
    width: 45px;
    margin-bottom: 30px;
  }

  .innov-img-wrppr {
    max-width: 220px;
  }

  .page-template-custom-management .innovative-sec .innovative-wrppr h3 {
    font-size: 25px;
  }

  .innovative-wrppr .innovative-icon {
    width: 50px;
    height: 50px;
    padding: 12px;
  }

  .innov-btn-wrppr {
    padding-top: 60px;
  }

  .testi-icon-bx {
    width: 85px;
    padding: 10px 12px;
    height: 40px;
    background: var(--white-clr) !important;
  }

  .sec-head.manage-content .cmn-btn {
    display: none;
  }

  .mobi-btn-wrppr {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
  }

  .manage-img-wrppr {
    max-width: 90px;
  }

  .manage-img-wrppr-innr {
    padding-top: 8px;
    padding-right: 25px;
  }

  .manage-img-vsmll {
    max-width: 22px;
    right: 18px;
  }

  .manage-img-smll {
    max-width: 35px;
  }

  .get-blk h2 {
    margin: 0 auto 40px;
  }

  .watch-ul li {
    width: auto;
    padding: 0 0 20px;
  }

  .watch-ul li:not(:last-child) {
    margin-right: 20px;
  }

  .watch-ul {
    margin-bottom: 20px;
  }

  .watch-ul li:nth-child(3) {
    width: 100%;
  }

  .watch-ul li:nth-child(3) img {
    width: 120px;
  }

  .ban-blks-lft h1 i {
    padding: 12px;
  }

  .benefit-slider .slick-list {
    margin: 0;
  }

  .gform_wrapper.gravity-theme form input[type="text"],
  .gform_wrapper.gravity-theme form input[type="tel"],
  .gform_wrapper.gravity-theme form input[type="password"],
  .gform_wrapper.gravity-theme form input[type="email"],
  .gform_wrapper.gravity-theme form select {
    padding: 0 20px;
    font-size: 15px;
  }

  .gform_wrapper.gravity-theme form .gform_footer input[type="submit"] {
    margin-bottom: 0;
    font-size: 15px;
    height: 50px;
    max-width: 100%;
  }

  .gform_wrapper.gravity-theme
    form
    input[type="checkbox"]
    + label.gform-field-label {
    padding-left: 30px;
    font-size: 12px;
  }

  .idp-contact-main {
    padding: 40px 20px;
    border-radius: 10px;
  }

  .gform_wrapper.gravity-theme form .gform_footer {
    margin-top: 25px;
  }

  .gform_wrapper.gravity-theme .gfield textarea.medium {
    height: 150px !important;
  }

  .all-similir-sect .test-doc-content .test-doc-info {
    padding-left: 0;
  }

  .test-doc-icon {
    display: none;
  }

  .all-similir-sect .test-doc-btn-wrppr .cmn-btn {
    min-width: 135px;
  }

  .test-doc-btn-wrppr {
    padding-top: 30px;
  }

  .test-doc-main {
    padding: 42px 20px 25px;
  }

  .innovative-wrppr h3 {
    font-size: 40px;
  }

  .abt-msn-contwrpr .card-icon {
    margin-bottom: 30px;
    width: 45px;
  }

  .register-sec {
    padding-top: 123px;
  }

  .register-card {
    border-radius: 10px;
    padding: 20px;
  }

  .register-card .card-head figure {
    padding: 18px 10px;
    margin-bottom: 20px;
  }

  .register-card .card-head figure a {
    max-width: 35px;
  }

  .register-card .card-head h1 {
    font-size: 15px;
  }

  .register-card .card-head {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .register-frm-rw {
    --bs-gutter-x: 0;
  }

  .form-input-col {
    width: 100%;
  }

  .form-input-col .form-input {
    margin-bottom: 20px;
  }

  .register-card .form-input label {
    font-size: 12px;
  }

  .page-template-register .register-card .card-cont {
    padding: 0 0 20px;
  }

  .register-card .form-input input[type="text"],
  .register-card .form-input input[type="email"] {
    height: 40px;
  }

  .register-card .form-input.checkbox-wrap label {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .register-card .checkbox-wrap label span::before {
    top: -3px;
  }

  .register-card .checkbox-wrap label span::after {
    content: "";
    position: absolute;
    top: 2px;
  }

  .register-card .form-input input[type="submit"] {
    height: 40px;
    font-size: 10px;
    padding: 0 30px;
  }

  .book-demo-logo {
    margin-bottom: 20px;
    width: 35px;
  }

  .live-demo-head-wrppr p {
    font-size: 15px;
  }

  .live-demo-head-wrppr h2 {
    font-size: 30px;
  }

  .book-left-top-part .watch-ul li:nth-child(3) {
    width: auto;
  }

  .demo-close-btn {
    display: none;
  }

  .book-left-top-part {
    padding: 35px 20px;
  }

  .green-tick-item-wrppr .green-tick-wrppr {
    width: 20px;
  }

  .green-tick-item-wrppr p {
    font-size: 11px;
  }

  .best-list li > p {
    font-size: 11px;
    padding-left: 30px;
  }

  /* 09.09.24 end */

  /* AD 12/09/2024 */
  .benefit-each-item {
    padding: 2px 10px;
  }

  .manage-sec .mobi-btn-wrppr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  /* AD 12/09/2024 END */

  /* support start 16-9-24 */
  .wins-wrap .winner-button {margin-left: 6px;}
  .section-visible .cmn-btn {
    min-width: 90px;
    padding: 10px;
}
.wins-wrap .winner-button {
  width: 36px;
  height: 36px;
}
  /* support end 16-9-24 */
}

@media (max-width: 384px) {
  /*support pp.c 6/9/2024*/
  .main-head .navrt {
    padding: 15px;
  }

  .main-head .navrt .navbtm {
    padding: 0 15px;
  }

  .main-head.h-light .close-btn.nvrtbtn {
    top: 15px;
    right: 15px;
  }

  /*support pp.c 6/9/2024*/
}

@media (max-width: 360px) {
  /* .ftr-innr-cl1 {
      margin-bottom: 35px;
      width: 100%;
    } */
  .ftr-innr-row .ftr-innr-cl1:last-child {
    margin-bottom: 0;
  }

  .btm-list li a,
  .ftr-btm p {
    font-size: 13px;
  }

  .btm-list li:not(:last-child) {
    margin-right: 11px;
  }

  .bdr-btn,
  .cmn-btn {
    /* padding: 10px 16px; */
    padding: 14px 16px;
    min-width: 100px;
  }

  .solutions-acc-box {
    padding: 20px 15px;
  }

  .solutions-acc-box .solutions-acc-button h3 {
    font-size: 18px;
  }

  .solutions-acc-box .solutions-acc-button {
    padding: 0 25px 0 56px;
  }

  .one-bg-img {
    bottom: -30px;
  }

  .one-blk-wrap {
    margin-bottom: 70px;
  }

  .why-icustoms-action a,
  .why-icustoms-sld-text-wpr h3 {
    font-size: 17px;
  }

  .slides-numbers {
    width: 25px;
  }

  .why-icustoms-action {
    width: calc(100% - 25px);
  }

  .transformed-card-logo-box {
    min-height: 60px;
  }

  .transformed-blk-lft span {
    width: 150px;
    height: 150px;
  }

  .transformed-blk-lft {
    max-width: 325px;
  }

  .lrg-srcl {
    left: 95px;
  }

  .login-btn {
    min-width: 90px;
    padding-left: 10px;
  }

  .copy-symbol {
    font-size: 13px;
  }

  /* SS CSS Begin 19-08-2024 */

  .testi-icon-bx,
  .testi-icon-bx.orange-bx {
    width: 85px;
    border-radius: 5px;
    padding: 6px;
  }

  .idp-bsub {
    margin-bottom: 15px;
  }

  .ban-blks-lft.innr-bnnr-content .idp-bsub h1 {
    margin-bottom: 0;
  }

  .idp-innr-bnnr .ban-blks-lft.innr-bnnr-content.idp-pur {
    max-width: 100%;
  }

  .idp-bsub h3 {
    margin-left: 50px;
    font-size: 16px;
  }

  .all-similir-sect .innovative-wrppr {
    padding: 65px 15px 30px;
  }

  /* End Of SS CSS 19-08-2024 */
  /*support pp.c 23/8/2024*/
  /*=====integration page======*/
  .logo-wrap {
    min-height: 130px;
  }

  /*=====integration page======*/
  /*support pp.c 23/8/2024*/
  /*support pp.c 6/9/2024*/
  .cmn-btn {
    min-width: 122px;
  }

  /*support pp.c 6/9/2024*/

  /* 09.09.24 start */

  .bdr-btn,
  .cmn-btn {
    min-width: 100px;
    padding: 10px 16px;
  }

  .close-btn {
    width: 30px;
    height: 30px;
  }

  .nvrt-top-ss {
    padding-right: 40px;
  }

  .mbnvmnu-top-butnwrp {
    display: flex;
  }

  .main-head.h-light .close-btn.nvrtbtn {
    top: 19px;
  }

  .mbl-navbar li:not(:last-child) {
    margin-bottom: 10px;
  }

  .navbar-nav > li > a {
    font-size: 16px !important;
    padding: 8px 10px !important;
  }

  .navbar-nav > li.menu-item-has-children > .clickD {
    top: 2px;
    right: 0;
  }

  .main-menu-box-wrappers {
    padding: 0 10px;
  }

  h1,
  .h1-title {
    font-size: 28px;
  }

  .ban-blks-lft h1 i {
    width: 50px;
    height: 50px;
    margin-right: 10px;
  }

  .sec-head.unlimit-head h2 {
    font-size: 24px;
  }

  .unlimit-wrppr {
    padding: 35px 15px;
  }

  .unlimit-slider .slick-dots {
    margin-top: 15px;
  }

  .container {
    padding: 0 15px;
  }

  .innovative-wrppr {
    padding: 65px 15px 30px;
  }

  .gform_wrapper.gravity-theme form input[type="text"],
  .gform_wrapper.gravity-theme form input[type="tel"],
  .gform_wrapper.gravity-theme form input[type="password"],
  .gform_wrapper.gravity-theme form input[type="email"],
  .gform_wrapper.gravity-theme form select {
    height: 40px;
  }

  .idp-contact-main {
    padding: 30px 15px;
  }

  .all-similir-sect .unlimit-wrppr {
    padding: 35px 15px;
  }

  .innov-btn-wrppr {
    padding-top: 30px;
  }

  .gform_wrapper.gravity-theme .gfield textarea.medium {
    height: 100px !important;
  }

  .gform_wrapper.gravity-theme form .gform_footer input[type="submit"] {
    height: 40px !important;
  }

  .all-similir-sect .product-innovative .innovative-wrppr {
    padding: 60px 15px 20px;
  }

  .all-similir-sect .product-innovative .innovative-wrppr h3 {
    font-size: 30px;
  }

  .innovative-wrppr p {
    margin-bottom: 30px;
  }

  .faq-hdng {
    font-size: 16px;
    padding: 8px 0px 8px 40px;
  }

  .faq-hdng::before {
    width: 30px;
    height: 30px;
    background-size: 12px;
  }

  .faq-hdng.active::before {
    background-size: 15px;
  }

  .incts-cmn-faq .faq-ans {
    padding: 0 0 15px 40px;
  }

  .custm-agent-innov-rw .innovative-wrppr {
    padding: 70px 15px 20px !important;
  }

  .innovative-wrppr h3 {
    font-size: 28px;
  }

  .abt-msn-contbutn {
    margin-top: 30px;
  }

  .abt-msn-contwrpr {
    padding: 35px 15px;
    border-radius: 10px;
  }

  /* 09.09.24 end */

  
}

.photo-gallery [class*="col-"] {
  display: none;
}
