.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:not(.esb-autoheight-slider .slick-list) {
  height: auto !important;
}

.slick-list:focus {
  outline: 0;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-list,
.slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  /* display: block; */
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.slick-track:after,
.slick-track:before {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  /* height: 100%; */
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*# sourceMappingURL=slick.min.css.map */

.fancybox-slide .fancybox-content {
  overflow: visible !important;
}

.fancybox-slide .fancybox-close-small {
  background: var(--white);
  border-radius: 100%;
  height: 30px;
  opacity: 1;
  padding: 2px;
  right: 0;
  top: -38px;
  width: 30px;
}

.fancybox-slide .fancybox-close-small svg {
  color: #000;
}

/* READ CASE STUDY */
.pop-case-study-btn {
  transform: translateY(40px) scale(0.2);
  opacity: 0;
  transition: var(--transition5);
}

.pop-case-study-btn.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.pop-case-study-wrap {
  position: fixed;
  left: 30px;
  bottom: 60px;
  z-index: 123;
}

.pop-case-study-btn .icon {
  width: 44px;
  height: 42px;
  display: block;
  background-color: var(--PrimaryGreen);
  color: var(--white);
  /* border-radius: 5px; */
  padding: 3px;
  cursor: pointer;
  position: relative;
  transition: var(--transition1s);
  z-index: 1;
  user-select: none;
}

.pop-case-study-btn .icon svg {
  width: 100%;
  height: 100%;
  transition: var(--transition1s);
}

.pop-case-study-btn.active .icon svg {
  transform: scaleX(-1);
}

.pop-case-study-btn .icon::before {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid var(--PrimaryGreen);
  right: 0;
  top: -10px;
  transform: translateY(20px);
  transition: var(--transition5);
}

.pop-case-study-btn.active.visible .icon::before {
  transform: translateY(0);
}

.pop-case-study-btn {
  position: relative;
}

.pop-case-study-btn.visible::before,
.pop-case-study-btn.visible::after {
  position: absolute;
  content: "";
  width: 3px;
  height: 16px;
  background-color: var(--PrimaryGreen);
  top: -10px;
  border-radius: 20px;
  animation: lineAnimate 1s forwards;
  animation-delay: 0s;
  opacity: 0;
}

.pop-case-study-btn.visible::after {
  height: 3px;
  width: 16px;
  top: 0px;
  left: -10px;
  transform: rotate(-25deg);
  animation: lineAnimateReverce 1s forwards;
  animation-delay: 0s;
}

@keyframes lineAnimate {
  0%,
  100% {
    opacity: 1;
  }

  100% {
    transform: skew(-50deg) translateY(-100%);
    text-shadow: 0px 0px 50px;
    opacity: 0;
  }
}

@keyframes lineAnimateReverce {
  0%,
  100% {
    opacity: 1;
  }

  100% {
    transform: skew(20deg) translateX(-100%) rotate(-25deg);
    text-shadow: 0px 0px 50px;
    opacity: 0;
  }
}

.pop-case-study-content-box {
  position: absolute;
  bottom: 54px;
  left: 100%;
  transform-origin: bottom left;
  transition: var(--transition1s);
  transform: scale(0) translate(-20px, 30px);
  opacity: 0;
  pointer-events: none;
}

.pop-case-study-content-box.active {
  transform: scale(1) translate(0, 0);
  opacity: 1;
  pointer-events: all;
}

.pop-case-study-content-box .inner {
  background-color: var(--white);
  min-width: 350px;
  /* border-radius: 10px; */
  box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
  padding: 20px;
  position: relative;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px,
    rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px;
  z-index: 1;
}

.pop-case-study-content-box p {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 8px;
  color: var(--BlueTextColor);
  margin-bottom: 8px;
  margin-top: 0;
}

.pop-case-study-content-box span {
  display: block;
  line-height: 1.4;
  font-size: 16px;
  color: var(--BlueTextColor);
  opacity: 0.8;
  margin-bottom: 20px;
}

.pop-case-study-content-box .btn a {
  width: 100%;
}

/* READ CASE STUDY */


.arrow-learn-more {
    text-decoration: none;
    display: flex;
    align-items: center;
    color: var(--2k25-text-heading) !important;
    transition: all 0.2s ease-in-out;
    width: fit-content;
    font-size: 17px;
    font-weight: 600;
    position: relative;
    transition: all 0.4s;
}

.arrow-learn-more span {
    position: relative;
    transform: translateX(-28px);
}

.arrow-learn-more::before,
.arrow-learn-more::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 8px;
    margin-bottom: -2px;
    background-image: url("data:image/svg+xml;utf8,<svg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='m14.43 6.296 6.07 6.07-6.07 6.07M3.5 12.366h16.83' stroke='%230A165E' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    opacity: 0;
    transition: all 0.4s;
}

.arrow-learn-more:hover::before {
    opacity: 1;
    margin-right: 32px;
}

.arrow-learn-more::after {
    opacity: 1;
    transform: translateX(-28px);
}

.arrow-learn-more:hover::after {
    opacity: 0;
}

.arrow-learn-more.readmore::before {
    background-image: url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.102 21.988c5.522 0 10-4.477 10-10s-4.478-10-10-10-10 4.477-10 10 4.477 10 10 10Z' stroke='%231D1D1D' stroke-width='1.5'/%3E%3Cpath d='M10.602 7.988s3 2.946 3 4-3 4-3 4' stroke='%230A165E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.arrow-learn-more.readmore::after {
    background-image: url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.102 21.988c5.522 0 10-4.477 10-10s-4.478-10-10-10-10 4.477-10 10 4.477 10 10 10Z' stroke='%231D1D1D' stroke-width='1.5'/%3E%3Cpath d='M10.602 7.988s3 2.946 3 4-3 4-3 4' stroke='%230A165E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* NEW BUTTON */
.btn a,.btn .a {
  font-size: 16px;
  line-height: 1;
  padding: 18px 25px;
  border-radius: 6px;
  font-weight: 600;
  font-family: var(--poppins);
  width: fit-content;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-flex;
  align-items: center;
  text-align: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 0;
  overflow: hidden;
  position: relative;
  letter-spacing: -0.01em;
  transform-style: preserve-3d;
  text-decoration: none;
  color: transparent;
  background-color: var(--2k25-blue-primary);
}
.btn a::after,
.btn a::before,
.btn .a::after,
.btn .a::before {
  position: absolute;
  content: attr(data-text);
  display: inline-block;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  color: var(--white);
  top: calc(50% - 7px);
  opacity: 1;
}

.btn a::after,
.btn .a::after {
  transform: translateY(150%);
  top: 50%;
  opacity: 0;
}

.btn a:hover::before,
.btn .a:hover::before {
  transform: translateY(-150%);
  top: calc(50% - 30px);
  opacity: 0;
}

.btn a:hover::after,
.btn .a:hover::after {
  transform: translateY(00%);
  top: calc(50% - 7px);
  opacity: 1;
}

.btn a img,
.btn a svg ,
.btn .a img,
.btn .a svg {
  filter: brightness(0) invert(1);
  display: none;
}

/* NEW BUTTON */

/* _buttons.css ~ Start */

.btn-group > div {
  display: inline-block;
  margin: 0 6px;
  vertical-align: middle;
}

.btn-group > div:first-child {
  margin-left: 0;
  margin-bottom: 5px;
}

.btn-group > div:last-child {
  margin-right: 0;
  margin-bottom: 5px;
}

[class*="button-"] a {
  border: solid 1px;
  padding: 11px 30px 11px 30px;
  line-height: 18px;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  min-width: 230px;
  border-radius: 11px;
  position: relative;
  text-decoration: none;
}

[class*="button-"] a img {
  transition: 200ms;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translate(0, -50%);
}

[class*="button-"] a:hover img {
  filter: grayscale(1) invert(1);
}

[class*="button-"].text-center a {
  text-align: left;
}

.button-1 a {
  background-color: var(--BluePrimary);
  border-color: var(--BluePrimary);
  color: var(--white);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  font-family: var(--poppins);
}

.button-1 a:hover {
  color: var(--white) !important;
  background-color: var(--BluePrimary);
  border-color: var(--BluePrimary);
}

.button-1 a img {
  display: none;
}

/*.button-2 a { background-color:var(--primary_color); border-color:var(--primary_color); color:var(--base_color); } 
.button-2 a:hover { background-color:#890467; border-color:#890467; color:var(--white); } */

.button-2 a {
  background-color: #890467;
  border-color: #890467;
  color: var(--white);
}

/*.button-2 a img { filter:grayscale(1) invert(1) brightness(2); } */
.button-2 a:hover {
  background-color: var(--primary_color);
  border-color: var(--primary_color);
  color: var(--base_color);
}

.button-3 a {
  background-color: transparent;
  border-color: var(--quaternary_color);
  color: var(--white);
}

.button-3 a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--quaternary_color);
  color: var(--white);
}

.button-3 a:hover img {
  filter: invert(1) contrast(1) brightness(1.2);
}

.button-3.dark-text a {
  color: var(--base_color);
}

.button-3.dark-text a:hover {
  background-color: rgba(172, 102, 242, 0.21);
}

.button-3.dark-text a:hover img {
  filter: invert(0) contrast(0) brightness(0);
}

.button-3.green a {
  border-color: var(--green2_color);
  color: var(--base_color);
}

.button-3.green a:hover {
  background-color: var(--green2_color);
  color: var(--white);
}

.button-3.green a:hover img {
  filter: grayscale(1) brightness(0) invert(1);
}

.button-3.green-fill a {
  border-color: var(--green2_color);
  background-color: var(--green2_color);
  color: var(--white);
  padding: 20px !important;
}

.button-3.green-fill a:hover {
  background-color: var(--tertiary_color);
  border-color: var(--tertiary_color);
  color: var(--base_color);
}

.button-3.green-fill a:hover img {
  filter: grayscale(1) brightness(0);
}

.button-4 a {
  background-color: var(--base_color);
  border-color: var(--base_color);
  color: var(--primary_color);
}

.button-4 a:hover {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--base_color);
}

.button-4 a:hover img {
  filter: grayscale(1) brightness(1);
}

.button-4.white-text a {
  color: var(--white);
}

.button-4.white-text a:hover {
  color: var(--base_color);
}

.button-4.white-text a:hover img {
  filter: grayscale(0) brightness(0.8);
}

.link-text a {
  color: var(--base_color);
  font-weight: 700;
  font-size: 17px;
  position: relative;
  padding: 0 23px 0 0;
  display: inline-block;
  text-decoration: none;
}

.link-text a:hover {
  color: var(--base_color);
}

.link-text a:after {
  background: url(../images/arrow_right_alt.svg) no-repeat center;
  content: "";
  position: absolute;
  right: -6px;
  top: 10px;
  width: 16px;
  height: 12px;
  transition: 200ms;
  filter: brightness(0);
}

.link-text a:hover:after {
  right: -12px;
}

/*[class*="button-"].star .icon-dv{width:25px;height:25px;background:url(../sprite-icon/button_icons.png) no-repeat 0 0;background-position:-63px -20px; position:absolute;top:50%;right:25px;transform:translate(0,-50%);}
[class*="button-"].star:hover .icon-dv{background-position:-18px -20px;}

[class*="button-"].star .icon-dv{width:25px;height:25px;background:url(../sprite-icon/button_icons.png) no-repeat 0 0;background-position:-63px -20px; position:absolute;top:50%;right:25px;transform:translate(0,-50%);}
[class*="button-"].star:hover .icon-dv{background-position:-18px -20px;}*/

[class*="button-"] a .icon-dv {
  width: 25px;
  height: 25px;
  background: url(../sprite-icon/button_iconsv2.png) no-repeat 0 0;
  background-position: -19px -108px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate3d(0, -12px, 0);
}

[class*="button-"] a:hover .icon-dv {
  background-position: -63px -108px;
}

[class*="button-"].icon-cube a .icon-dv {
  background-position: -152px -19px;
}

[class*="button-"].icon-cube a:hover .icon-dv {
  background-position: -152px -108px;
}

.button-2 a .icon-dv {
  background-position: -63px -20px;
}

.button-2 a:hover .icon-dv {
  background-position: -18px -20px;
}

.button-2.team a .icon-dv {
  background-position: -64px -108px;
}

.button-2.team a:hover .icon-dv {
  background-position: -19px -108px;
}

.button-2.icon-cube a .icon-dv {
  background-position: -152px -108px;
}

.button-2.icon-cube a:hover .icon-dv {
  background-position: -152px -19px;
}

.button-3.green-fill a .icon-dv {
  background-position: -108px -19px;
}

.button-3.green-fill a:hover .icon-dv {
  background-position: -152px -19px;
}

.button-3 a .icon-dv {
  background-position: -64px -64px;
}

.button-3 a:hover .icon-dv {
  background-position: -108px -64px;
}

[class*="button-"].search a .icon-dv {
  background-position: -196px -108px;
}

[class*="button-"].search a:hover .icon-dv {
  background-position: -20px -151px;
}

div#ez-toc-container {
  display: none;
}

.espark-easy-toc div#ez-toc-container {
  display: block;
}

/* LINE ANIMATE  */
.line-animate {
  position: relative;
  margin-bottom: 20px !important;
}

.line-animate::before {
  position: absolute;
  content: "";
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  animation: 1s linear infinite progress-bar-stripes;
  background-image: linear-gradient(
    45deg,
    rgb(0 0 0 / 15%) 0%,
    transparent 0%,
    transparent 50%,
    rgb(0 0 0 / 99%) 50%,
    rgb(0 0 0 / 15%) 51%,
    transparent 50%,
    transparent
  );
  background-size: 10px 10px;
  bottom: -14px;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: calc(100% - 32px);
  transition: all 0.6s ease;
  background-color: #ffffff00;
  height: 14px;
  transform: rotateY(180deg);
  opacity: 0.4;
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 20px;
  }
}

/* LINE ANIMATE END */

/* RESPONSIVE  */
@media (max-width: 1800px) {
  .btn a {
    font-size: 14px !important;
  }
}

@media (max-width: 1199px) {
  [class*="button-"] a {
    padding: 12px 50px 12px 15px;
  }

  [class*="button-"] a img {
    right: 15px;
  }

  .about-text.testimonial-section + .ready-to-expand {
    margin: 35px 0 0;
  }
}

@media (max-width: 991px) {
  .btn-group > div {
    display: block;
    margin: 0 0 8px;
  }
}

@media (max-width: 767px) {
  [class*="button-"] a {
    font-size: 14px;
    padding: 20px 50px 20px 20px;
  }
}

/* _buttons.css ~ End */

/* _forms.css ~ Start */

/* _forms.css ~ End */

/* .blur-ele {
  position: relative;
} */

.blur-ele.anim:after {
  animation: motion1 18s ease-in-out infinite;
}

.blur-ele.anim:before {
  animation: motion2 18s ease-in-out infinite;
}

/* Slick css */
.slick-slider .slick-arrow {
  background: var(--BluePrimary) url(../images/arrow-right.svg) no-repeat center;
  border-radius: 100%;
  transform: translateY(-50%);
  padding: 0;
  border: none;
  z-index: 5;
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 0px;
  color: var(--white);
  transition: 200ms;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-size: 25px;
}

.slick-slider .slick-arrow.slick-next {
  left: auto;
  right: 0;
}

.slick-slider .slick-arrow.slick-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.blog-posts .slick-slider .slick-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.slick-slider .slick-dots {
  text-align: center;
  padding: 0;
  margin: 20px 0 3px 0;
}

.slick-slider .slick-dots li {
  display: inline-block;
  margin: 0 6px;
}

.slick-slider .slick-dots li button {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--2k25-blue-primary);
  color: var(--2k25-blue-primary);
  border: 0;
  opacity: 0.15;
  padding: 0;
  text-indent: -9999px;
  cursor: pointer;
  transition: 200ms;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0 !important;
}

.slick-slider .slick-dots li button::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid var(--2k25-blue-primary);
  left: 50%;
  top: 50%;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  padding: 5px;
  opacity: 0;
}

.slick-slider .slick-dots li.slick-active button::before {
  opacity: 1;
}

.slick-slider .slick-dots li.slick-active button {
  opacity: 1;
}

.slick-slider.slick-dots-white .slick-dots li button {
  background-color: var(--white);
  border: 0;
  opacity: 0.3;
}

.slick-slider.slick-dots-white .slick-dots li.slick-active button {
  opacity: 1;
}

.side-arrow .slick-slider .slick-arrow {
  width: 40px;
  height: 40px;
  background-size: 15px;
  overflow: hidden;
  transition: 200ms;
}

.side-arrow .slick-slider .slick-arrow.slick-next {
  right: 14px;
}

.side-arrow .slick-slider .slick-arrow.slick-prev {
  transform: translateY(-50%) rotate(180deg);
  left: 14px;
}

.side-arrow .slick-slider .slick-arrow:hover {
  filter: brightness(1.2);
}

.swiper .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: var(--quaternary_color);
  transition: 400ms;
}

.swiper
  .swiper-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet,
.swiper
  .swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 15px;
}

/* data-small-btn="true" */
.fancybox-slide .fancybox-content {
  overflow: visible !important;
}

.fancybox-slide .fancybox-close-small {
  background: var(--white);
  border-radius: 100%;
  height: 30px;
  opacity: 1;
  padding: 2px;
  right: 0;
  top: -38px;
  width: 30px;
}

.fancybox-slide .fancybox-close-small svg {
  color: #000;
}

.image-block {
  line-height: 0px;
}

.for-desktop {
  display: none;
}

.title-part {
  max-width: 1170px;
  margin: 0 auto;
}

.title-part.full {
  max-width: none;
}

.title-part .content {
  font-weight: 400;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.title-part .content.max {
  font-size: 22px;
  font-weight: 500;
}

.title-part .content a {
  color: var(--PrimaryGreen);
  text-decoration: underline;
  font-weight: 500;
}

.title-part.left {
  margin: 0;
}

.title-part .full-caps {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 2.5px;
  padding: 17px 0 40px;
}

.title-part .full-caps span + span:before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 16px;
  background-color: var(--primary_color);
  vertical-align: top;
  margin: 8px 10px 0;
}

.title-part .pre-title {
  margin-bottom: 10px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--PrimaryGreen);
  font-family: var(--poppins);
}

.title-part h2 {
  /* margin-top: 24px; */
  font-family: var(--poppins);
}

.title-part .light-font {
  font-weight: 400;
}

.ul-dots ul {
  padding: 0;
  list-style-type: none;
}

.ul-dots ul li {
  padding-left: 15px;
  position: relative;
  margin-bottom: 10px;
}

.ul-dots ul li:after {
  position: absolute;
  content: "";
  height: 6px;
  width: 6px;
  top: 9px;
  left: 0;
  border-radius: 100%;
  background-color: var(--BlueTextColor);
}

.ul-dots.white-dots ul li:after {
  background-color: var(--white);
}

.ul-dots.pink-dots ul li:after {
  background-color: var(--primary_color);
}

.ul-dots.ul-col-2 ul,
.ul-dots.ul-col-3 ul {
  display: flex;
  flex-flow: row wrap;
}

.ul-dots.ul-col-2 ul li {
  width: 100%;
}

.ul-dots.ul-col-3 ul li {
  width: 100%;
}

.font-19.ul-dots ul li:after {
  top: 13px;
}

.ul-arrow ul {
  padding: 0;
  list-style-type: none;
  font-size: 17px;
  line-height: 27px;
  /*text-transform: capitalize;*/
}

.ul-arrow ul li {
  position: relative;
  padding: 0 0 0 30px;
}

.ul-arrow ul li:not(:last-child) {
  margin: 0 0 20px;
}

.ul-arrow ul li::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 19px;
  /* background: url(../images/list-check.svg) no-repeat center / contain; */
  background: url("data:image/svg+xml;charset=UTF-8,%3csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M13.634 6.48809L8.71934 11.7495L6.39559 9.1344C6.32548 9.05544 6.24065 8.99119 6.14594 8.94532C6.05123 8.89945 5.9485 8.87286 5.84361 8.86707C5.63177 8.85537 5.42401 8.9291 5.26603 9.07204C5.1878 9.14281 5.12415 9.22845 5.07871 9.32406C5.03327 9.41966 5.00693 9.52337 5.00119 9.62925C4.98961 9.84309 5.06265 10.0528 5.20424 10.2123L8.10951 13.4813C8.18329 13.5646 8.2734 13.6315 8.37413 13.6778C8.47486 13.7241 8.58402 13.7488 8.6947 13.7502H8.70469C8.81359 13.7503 8.92135 13.7278 9.02134 13.6843C9.12134 13.6407 9.21147 13.577 9.28621 13.4971L14.7963 7.59523C14.9353 7.4385 15.0081 7.23321 14.9993 7.02308C14.9905 6.81295 14.9008 6.61459 14.7492 6.47026C14.5977 6.32592 14.3963 6.24701 14.188 6.25035C13.9797 6.25368 13.7809 6.33898 13.634 6.48809Z' fill='%23007860'/%3e%3cpath d='M18.48 4.91507C18.3867 4.11181 17.9796 3.31368 17.3329 2.66731C16.6861 2.02094 15.8883 1.6135 15.085 1.52019H15.0792C11.7026 1.16026 8.29737 1.16026 4.92079 1.52019H4.91498C4.11169 1.6135 3.31352 2.0206 2.66713 2.66731C2.02073 3.31402 1.61328 4.11181 1.51996 4.91507V4.92088C1.16001 8.2973 1.16001 11.7024 1.51996 15.0788V15.0847C1.61328 15.8879 2.02039 16.686 2.66713 17.3324C3.31386 17.9788 4.11169 18.3862 4.91498 18.4795H4.92079C6.60786 18.6598 8.30333 18.7502 10 18.7502C11.6967 18.7504 13.3921 18.6603 15.0792 18.4802H15.085C15.8883 18.3869 16.6865 17.9798 17.3329 17.3331C17.9793 16.6864 18.3867 15.8883 18.48 15.0853V15.0795C18.84 11.7031 18.84 8.29798 18.48 4.92156V4.91507ZM17.189 14.9373C17.0652 15.9925 15.9926 17.0644 14.938 17.1885C11.6554 17.5385 8.34491 17.5385 5.06231 17.1885C4.00675 17.0648 2.93478 15.9922 2.81104 14.9373C2.46101 11.655 2.46101 8.34473 2.81104 5.06239C2.93478 4.00721 4.00743 2.93529 5.06231 2.81121C8.3448 2.4612 11.6552 2.4612 14.9377 2.81121C15.9933 2.93495 17.0649 4.00755 17.189 5.06204C17.539 8.3445 17.539 11.6549 17.189 14.9373Z' fill='%23007860'/%3e%3c/svg%3e ");
  left: 0;
  top: 4px;
  filter: brightness(0) saturate(100%) invert(27%) sepia(76%) saturate(4860%)
    hue-rotate(239deg) brightness(101%) contrast(97%);
}

.ul-arrow.ul-col-2 ul li {
  width: 100%;
}

.ul-col-3 ul {
  display: flex;
  flex-flow: row wrap;
}

.ul-col-3 ul li {
  width: 100%;
}

.ul-no-dots ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.ul-dots-pink ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.ul-dots-pink ul li {
  padding: 0 0 0 32px;
  position: relative;
  color: var(--base_color);
}

.ul-dots-pink ul li::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 0;
  top: 5px;
  background: url(../../../../wp-content/uploads/2023/08/list-icon-pink.svg);
}

.ul-dots-pink ul li:not(:last-child) {
  margin: 0 0 20px;
}

.ul-dots-pink ul li a {
  text-decoration: none;
  color: var(--base_color);
}

.ul-dots-pink ul li a:hover {
  color: var(--primary_color);
}

.ul-check-arrow ul {
  padding: 0;
  list-style-type: none;
  /*font-size:17px; line-height:26px; font-weight:500;*/
  /* text-transform: capitalize; */
}

.ul-check-arrow ul li {
  position: relative;
  padding: 0 0 0 30px;
}

.ul-check-arrow ul li:not(:last-child) {
  margin: 0 0 10px;
}

.ul-check-arrow ul li::before {
  content: "";
  position: absolute;
  width: 19px;
  height: 19px;
  /* background: url(../images/list-check-black.svg) no-repeat center / contain; */
  background: url("data:image/svg+xml;charset=UTF-8,%3csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M13.634 6.48809L8.71934 11.7495L6.39559 9.1344C6.32548 9.05544 6.24065 8.99119 6.14594 8.94532C6.05123 8.89945 5.9485 8.87286 5.84361 8.86707C5.63177 8.85537 5.42401 8.9291 5.26603 9.07204C5.1878 9.14281 5.12415 9.22845 5.07871 9.32406C5.03327 9.41966 5.00693 9.52337 5.00119 9.62925C4.98961 9.84309 5.06265 10.0528 5.20424 10.2123L8.10951 13.4813C8.18329 13.5646 8.2734 13.6315 8.37413 13.6778C8.47486 13.7241 8.58402 13.7488 8.6947 13.7502H8.70469C8.81359 13.7503 8.92135 13.7278 9.02134 13.6843C9.12134 13.6407 9.21147 13.577 9.28621 13.4971L14.7963 7.59523C14.9353 7.4385 15.0081 7.23321 14.9993 7.02308C14.9905 6.81295 14.9008 6.61459 14.7492 6.47026C14.5977 6.32592 14.3963 6.24701 14.188 6.25035C13.9797 6.25368 13.7809 6.33898 13.634 6.48809Z' fill='%23007860'/%3e%3cpath d='M18.48 4.91507C18.3867 4.11181 17.9796 3.31368 17.3329 2.66731C16.6861 2.02094 15.8883 1.6135 15.085 1.52019H15.0792C11.7026 1.16026 8.29737 1.16026 4.92079 1.52019H4.91498C4.11169 1.6135 3.31352 2.0206 2.66713 2.66731C2.02073 3.31402 1.61328 4.11181 1.51996 4.91507V4.92088C1.16001 8.2973 1.16001 11.7024 1.51996 15.0788V15.0847C1.61328 15.8879 2.02039 16.686 2.66713 17.3324C3.31386 17.9788 4.11169 18.3862 4.91498 18.4795H4.92079C6.60786 18.6598 8.30333 18.7502 10 18.7502C11.6967 18.7504 13.3921 18.6603 15.0792 18.4802H15.085C15.8883 18.3869 16.6865 17.9798 17.3329 17.3331C17.9793 16.6864 18.3867 15.8883 18.48 15.0853V15.0795C18.84 11.7031 18.84 8.29798 18.48 4.92156V4.91507ZM17.189 14.9373C17.0652 15.9925 15.9926 17.0644 14.938 17.1885C11.6554 17.5385 8.34491 17.5385 5.06231 17.1885C4.00675 17.0648 2.93478 15.9922 2.81104 14.9373C2.46101 11.655 2.46101 8.34473 2.81104 5.06239C2.93478 4.00721 4.00743 2.93529 5.06231 2.81121C8.3448 2.4612 11.6552 2.4612 14.9377 2.81121C15.9933 2.93495 17.0649 4.00755 17.189 5.06204C17.539 8.3445 17.539 11.6549 17.189 14.9373Z' fill='%23007860'/%3e%3c/svg%3e ");
  filter: brightness(0) saturate(100%) invert(27%) sepia(76%) saturate(4860%)
    hue-rotate(239deg) brightness(101%) contrast(97%);
  left: 0;
  top: 7px;
  background-repeat: no-repeat;
}

.ul-check-arrow.dark ul li::before {
  background: url(../images/hex_check_icon_blue_dark.svg) no-repeat center /
    contain;
}

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

.ul-number ul li {
  padding: 0 0 0 45px;
  position: relative;
}

.ul-number ul li .number {
  position: absolute;
  width: 31px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
  background: url(../images/hex-dual-pink.svg) no-repeat center / contain;
  font-size: 13px;
  color: var(--white);
  line-height: normal;
  letter-spacing: 0.5px;
}

.underline {
  position: relative;
  padding: 0 0 20px;
}

.underline:after {
  content: "";
  width: 104px;
  height: 6px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--primary_color);
}

.hex-mask {
  position: relative;
  -webkit-mask-image: url(../images/hex-shape.svg);
  mask-image: url(../images/hex-shape.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%;
}

.hex-mask img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hex-mask img.hex-logo {
  position: absolute;
  left: 0px;
  top: 0;
  z-index: 1;
}

.hex-mask img.hex-logo.static {
  position: static;
  width: auto;
  height: auto;
}

.hex-mask:not(.no-overlay):after {
  content: "";
  background: linear-gradient(
    180deg,
    rgba(0, 170, 69, 0.2) 8.85%,
    rgba(0, 170, 69, 0.03) 100%
  );
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.top-gradient {
  position: relative;
  z-index: 1;
}

.top-gradient:after {
  content: "";
  background: linear-gradient(
    to bottom,
    rgba(204, 151, 193, 1) 0%,
    rgba(245, 247, 252, 1) 75%
  );
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 260px;
}

.awards > div {
  text-align: center;
  width: 50%;
  margin: 0;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* _footer.css ~ Start */

.footer__desktop {
  display: none !important;
}

footer.site-footer {
  margin-top: 0;
  position: relative;
  z-index: 1;
  padding-bottom: 10px;
  /* background-color: var(--BlueTextColor); */
  background-color: var(--dark2);
}

footer.site-footer .wpforms-error {
  font-size: 14px;
  font-style: normal;
  color: red;
  font-weight: 400;
  display: block;
}

.site-footer .footer-form {
  padding: 0;
}

.site-footer .container {
  max-width: 1330px;
  width: 100%;
}

.footer-form__card {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0px 4px 20px 0px #0000000a;
  /* padding: 80px; */
  padding: 20px;
  border: 1px solid var(--LightGrey2);
}

.footer-form-wrap form {
  margin: 0;
}

.footer-form__title {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-form__title .left-side {
  width: 100%;
  /* margin-right: auto; */
}

.footer-form__title .right-side {
  width: 100%;
}

.footer-form__title .left-side h2 {
  font-family: var(--poppins);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  text-wrap: balance;
  margin: 0 0 30px;
}

.footer-form__title .right-side p {
  font-family: Hind;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
}

.footer-form-list__item {
  display: flex;
  flex-wrap: wrap;
  max-width: 420px;
}

.footer-form-list__item-img {
  width: 22px;
  height: 22px;
  display: block;
  margin-top: 5px;
}

.footer-form-list__item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-form-list__item-content {
  max-width: calc(100% - 22px);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  padding-left: 21px;
}

.footer-form-list__item-content p {
  margin: 0;
  font-weight: 700;
}

.footer-form-list__item-content span {
  display: block;
}

.footer-form-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 45%;
  position: relative;
}

.footer-form-list::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  border-right: 1px dashed var(--BlueTextColor);
  right: 50px;
  top: 0;
  opacity: 0.3;
}

.footer-form-list-form-wrap {
  display: flex;
  flex-wrap: wrap;
}

p.footer-other-info__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--white);
  margin: 0;
}

.contect-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 60px;
  margin-top: 24px;
  flex-direction: column;
}

.contect-info p {
  font-family: var(--poppins);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.contect-info p a span {
  width: 20px;
  height: auto;
}

.contect-info p a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 9px;
  position: relative;
}

.contect-info p a span {
  display: flex;
}

.contect-info p a:hover img,
.contect-info p a:focus img {
  filter: brightness(0) invert(1);
}

footer.site-footer::before {
  position: absolute;
  content: "";
  /* clip-path: polygon(0 5%, 100% 0%, 100% 100%, 0% 100%); */
  background-color: var(--white);
  width: 100%;
  height: 95%;
  left: 0;
  z-index: -1;
  top: -1px;
}

.contect-info p a:hover,
.contect-info p a:focus {
  color: var(--white);
}

.footer-other-info {
  margin-top: 40px;
}

.footer-location-wrap {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
}

.footer-location__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--white);
  margin: 0;
  width: 100%;
}

.footer-location-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}

.footer-location-item {
  max-width: 376px;
  width: 100%;
  background-color: rgb(255 255 255 / 10%);
  /* padding: 12px 34px; */
  padding: 12px 20px;
  border-radius: 12px;
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

.footer-location-item > div {
  font-weight: 800;
  font-size: 18px;
}

.flag-icon {
  width: 30px;
  height: 19px;
  background: url(/wp-content/themes/espark/sprite-icon/footer_social.png)
    no-repeat 0 0;
  background-size: 216px auto;
  margin-top: 6px;
}

.flag-icon.india {
  background-position: -48px -41px;
}

.flag-icon.usa {
  background-position: -11px -41px;
}

.footer-location-item > div {
  display: flex;
}

.footer-more {
  text-align: center;
  margin-top: 24px;
}

a.footer-more-trigger {
  font-family: var(--poppins);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  cursor: pointer;
  gap: 7px;
}

a.footer-more-trigger span.icon {
  width: 14px;
  height: 14px;
  display: flex;
}

a.footer-more-trigger span.icon svg {
  width: 100%;
  height: 100%;
}

a.footer-more-trigger.active .icon {
  transform: rotate(180deg);
}

.footer-more-content-link-list {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
  gap: 40px 0;
  margin: 0 -20px;
}

.footer-more-content-link-list > div {
  width: 100%;
  padding: 0 20px;
}

p.footer-more__title {
  font-family: var(--poppins);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1px;
  color: var(--PrimaryGreen);
  margin-bottom: 17px;
}

.footer-more-content-link-list ul li a {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
}

.footer-more-content-link-list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-more-content-link-list ul li a:hover {
  color: var(--PrimaryGreen);
}

.footer-bottom-stripe {
  margin-bottom: 5px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--LightGrey4);
}

.footer-bottom-stripe .container {
  padding: 0;
}

.footer-bottom-stripe .inner {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 11px;
}

.footer-bottom-stripe .inner p,
.footer-bottom-stripe .inner ul li a {
  font-family: var(--poppins);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.25px;
  color: var(--white);
  margin: 0;
  text-decoration: none;
}

.footer-bottom-stripe .inner ul {
  margin: 20px 0 0 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 32px;
  flex-wrap: wrap;
}

.footer-bottom-stripe .inner ul li {
  position: relative;
}

.footer-bottom-stripe .inner ul li:not(:last-child):before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  right: -20px;
  top: 50%;
  border-radius: 100%;
  transform: translateY(-50%);
  background-color: var(--white);
}

.footer-bottom-stripe .inner ul li a:hover {
  color: var(--PrimaryGreen);
}

.footer-form-wrap h2 {
  display: none;
}

.footer-form-wrap {
  /* max-width: 690px; */
  /* margin: 0 auto; */
}

.footer-form-filed__title p {
  font-family: var(--poppins);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--BlueTextColor);
  margin: 0 0 20px;
}

.footer-form-wrap .form-filed {
  display: flex;
  flex-direction: column;
}

.footer-form-wrap .form-filed label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--BlueTextColor);
  opacity: 0.5;
}

.footer-form-wrap .form-filed input,
.footer-form-wrap .form-filed select,
.footer-form-wrap .form-filed textarea {
  padding: 0 0 7px;
  margin: 0;
  border: 0;
  border-bottom: 1px solid var(--LightGrey);
  font-size: 16px;
  margin-top: 5px;
  transition: var(--transition3);
  background-color: transparent;
}

.footer-form-wrap .wpforms-field-layout-preset-50-50 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.footer-form-wrap .wpforms-field-container {
  display: grid;
  gap: 20px 0px;
}

.footer-form-wrap .form-filed input:focus,
.footer-form-wrap .form-filed select:focus,
.footer-form-wrap .form-filed textarea:focus {
  border-color: var(--BlueTextColor);
}

.footer-form-wrap .wpforms-field-layout-preset-50-50 .captcha-wrap {
  margin-bottom: 0 !important;
}

.wpforms-field-layout-preset-50-50:has(.captcha-wrap) > div:first-child {
  /* width: calc(100% - 180px) !important; */
}

.wpforms-field-layout-preset-50-50:has(.captcha-wrap)
  > div:first-child
  .wpforms-field,
.wpforms-field-layout-preset-50-50:has(.captcha-wrap)
  > div:first-child
  .dz-clickable {
  margin: 0 !important;
}

.wpforms-field-layout-preset-50-50:has(.captcha-wrap) > div:last-child {
  /* width: 180px !important; */
  height: fit-content;
  margin: auto;
}

.captcha-wrap .wpforms-captcha-math {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-start;
  margin-top: 20px;
}

.captcha-wrap .wpforms-captcha-equation {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.captcha-wrap input {
  /* width: 20px; */
  border: 0 !important;
  padding: 0 !important;
  font-size: 16px !important;
  color: var(--BlueTextColor) !important;
  background-color: var(--LightGrey4) !important;
  min-width: 61px !important;
  height: 50px !important;
  border-radius: 10px !important;
  text-align: center !important;
  padding: 0 5px !important;
  max-width: 80px !important;
  font-weight: 600 !important;
  font-size: 18px !important;
}

.contact_us_page_banner_section .captcha-wrap {
  margin-bottom: 0 !important;
}

.contact_us_page_banner_section .captcha-wrap input {
  box-shadow: inset 0px 0px 0px 30px #e9e9e9 !important;
}

.footer-form-wrap .form-filed-upload {
  position: relative;
}

.footer-form-wrap .form-filed-upload .wpforms-uploader {
  background-color: var(--LightGrey2);
  border: 1px solid var(--LightGrey);
  border-radius: 16px;
}

.footer-form-wrap .form-filed-upload .dz-message {
  display: flex;
  align-items: center;
  flex-direction: row !important;
  justify-content: center;
  /* min-height: 50px; */
  gap: 10px;
}

.footer-form-wrap .form-filed-upload .dz-preview {
  padding: 0 !important;
}

.footer-form-wrap .form-filed-upload .dz-message .modern-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--);
}

.footer-form-wrap .form-filed-upload .dz-message svg {
  max-width: 20px;
  height: auto !important;
  width: 100% !important;
  margin: 0 !important;
  display: none;
}

.footer-form-wrap .wpforms-submit-container {
  text-align: center;
  margin-top: 20px;
}

.footer-form-wrap .wpforms-submit-container button {
  font-family: var(--poppins);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 13px 24px;
  gap: 12px;
  background-color: var(--btnGreen);
  border-color: var(--btnGreen);
  color: var(--white) !important;
  border: 0;
  width: 100%;
  /* min-width: 200px; */
  text-transform: uppercase;
  letter-spacing: 1.2;
  cursor: pointer;
  transition: var(--transition3);
}

.footer-form-wrap .wpforms-submit-container button:hover {
  background-color: var(--btnGreenHover);
  border-color: var(--btnGreenHover);
}

/* footer.footer {
  background: var(--OffWhite);
  font-size: 16px;
  line-height: 28px;
  padding: 50px 0 0;
  position: relative;
  z-index: 9;
}

footer.footer a {
  text-decoration: none;
  color: var(--BlueTextColor);
}

footer.footer a:hover {
  color: var(--PrimaryGreen);
}

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

footer.footer .first-column {
  width: 100%;
}

footer.footer .first-column .content {
  padding: 20px 0 30px 0;
}

footer.footer .first-column .content p {
  font-size: 16px;
  line-height: 25px;
}

footer.footer .first-column .num-email {
  margin: 0 0 40px;
}

footer.footer .first-column .num-email a {
  display: block;
  font-size: 16px;
  line-height: 25px;
  font-family: var(--poppins);
}

footer.footer .first-column .num-email a img {
  vertical-align: middle;
  margin: 0 10px 0 0;
  filter: invert(1);
}

footer.footer .first-column .num-email a + a {
  margin-top: 20px;
}

footer.footer .right-part {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 50px 0 0;
  row-gap: 30px;
}

footer.footer .right-part .footer-column {
  width: 100%;
}

footer.footer .right-part ul li {
  line-height: 18px;
}

footer.footer .right-part .f-menu-title {
  color: var(--PrimaryGreen);
  font-weight: 700;
  font-size: 17px;
  font-family: var(--poppins);
  margin: 0;
}

.f-menu-title-wrap {
  display: flex;
  justify-content: space-between;
  margin: 0 0 25px;
}

.f-menu-title-wrap .arrow-icon {
  width: 20px;
  height: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
}

.f-menu-title-wrap .arrow-icon.active {
  transform: rotate(180deg);
  transform-origin: center;
}

footer.footer .footer-column:not(:last-child) .f-menu-title-wrap {
  margin-bottom: 0;
  position: relative;
}

footer.footer .footer-column:not(:last-child) .f-menu-title-wrap:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  background-color: var(--BlueTextColor);
  bottom: -15px;
  opacity: 0.2;
}

footer.footer .right-part .footer-column:last-child .arrow-icon {
  display: none;
}

.f-menu-title-wrap .arrow-icon::before,
.f-menu-title-wrap .arrow-icon::after {
  position: absolute;
  content: '';
  width: 8px;
  background-color: var(--BlueTextColor);
  height: 2px;
}

.f-menu-title-wrap .arrow-icon::before {
  transform: rotate(40deg) translateX(-4px);
}

.f-menu-title-wrap .arrow-icon::after {
  transform: rotate(140deg) translateX(-4px);
}
footer.footer
  .right-part
  .footer-column:not(:last-child)
  > ul
  li:not(:last-child) {
  margin-bottom: 15px;
}
footer.footer .right-part .footer-column:not(:last-child) > ul {
  display: none;
  margin-top: 40px;
}
footer.footer
  .right-part
  .footer-column:not(:last-child)
  > ul
  li:not(:last-child) {
  margin-bottom: 15px;
}
footer.footer .right-part .footer-column ul {
  gap: 20px;
}
footer.footer .right-part .social-wrapp {
  width: 100%;
}

footer.footer .bottom-strip {
  padding: 10px 0;
  text-align: center;
  margin-top: 50px;
  background: var(--BlueTextColor);
  color: white;
}

footer.footer .bottom-strip a {
  color: white;
}

footer.footer .bottom-strip a:hover {
  color: var(--PrimaryGreen);
}

footer.footer-404 {
  padding-top: 0 !important;
}

footer.footer-404 .bottom-strip {
  padding: 40px 0 30px;
}

footer.footer-404 .bottom-strip .num-email {
  display: flex;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

footer.footer-404 .bottom-strip .num-email a {
  display: flex;
  align-items: start;
  margin-right: 40px;
  max-width: 570px;
  text-align: left;
}

footer.footer-404 .bottom-strip .num-email a img {
  margin-right: 10px;
  margin-top: 2px;
}

footer.footer-404 .inner .left-div,
footer.footer-404 .inner .right-div {
  width: 100%;
}

footer.footer-404 .inner {
  align-items: center;
  flex-wrap: wrap;
}

footer.footer-404 .inner .right-div {
  margin-top: 30px;
}

footer.footer-404 .inner .right-div .content {
  display: flex;
  flex-wrap: wrap;
}

footer.footer-404 .inner .right-div .content div {
  width: 100%;
  padding: 10px 0;
  text-align: left;
}

.footer.footer-404 .social-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.footer.footer-404 .bottom-div {
  padding-top: 10px;
  margin-top: 35px;
  border-top: 1px solid #eeeeee6e;
}

.footer.footer-404 .bottom-div .right-div {
  text-align: left;
}

.footer.footer-404 .social-icons li {
  margin-left: 40px;
}

.footer.footer-404 .social-icons li:first-child {
  margin-left: 0;
}

body.page-id-8167 footer.footer > .container {
  display: none;
}

body.page-id-8167 footer.footer .bottom-strip {
  margin-top: 0px;
}

.location {
  border-radius: 12px;
  background-color: var(--LightGrey2);
  padding: 17px 18px;
  transition: var(--transition3);
}

.location:hover {
  background-color: var(--white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}

.location .country {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 21px;
}

.location h4,
.location strong {
  font-size: 18px;
  line-height: normal;
  margin: 0 0 8px;
}

.location img {
  width: 16px;
  vertical-align: top;
  margin: 6px 7px 0 0;
}

.location + .location {
  margin-top: 20px;
}

.social-share {
  display: flex;
  align-items: center;
  padding: 40px 0 0;
  justify-content: center;
}

.social-share a:not(:last-child) {
  margin: 0 30px 0 0;
}

.social-share a img {
  display: block;
  transition: 200ms;
}

.social-share a img:hover {
  filter: drop-shadow(0 0 7px rgba(255, 255, 255, 1));
} */

/* _footer.css ~ End */

/* Blog listing */
.blog-posts {
  padding: 50px 0;
  position: relative;
  z-index: 1;
}
.blog-posts:last-child {
  padding-bottom: 0;
}

.blog-posts h2 {
  font-family: var(--poppins);
  margin-top: 0;
}

/* .blog-posts.has-gradient:after {
    content: '';
    background: linear-gradient(to bottom, rgba(245, 247, 252, 1) 16%, rgba(220, 182, 213, 1) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    z-index: -1;
} */

/*.blog-posts:after{content:'';background:linear-gradient(to bottom,rgba(245,247,252,1) 16%,rgba(220,182,213,1) 100%);position:absolute;left:0;bottom:0;width:100%;height:50%;z-index:-1;}*/
.blog-posts .list-wrapper {
  margin: 40px 0 0;
  gap: 32px 0;
}

.blog-posts .container .list-wrapper:first-child {
  margin-top: 0;
}

.blog-posts .list-wrapper .list {
  width: 100%;
  /* padding: 0 16px; */
  /* margin-bottom: 20px; */
}

.blog-posts .list > .image {
  height: 51vw;
  overflow: hidden;
  position: relative;
  border-radius: 12px 12px 0 0;
  border: 1px solid var(--LightGrey);
  border-bottom: 0;
}

.blog-posts .list > .image:before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: "";
  z-index: 1;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
}

.blog-posts .list > .image img,
.blog-posts .list > .image video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 200ms;
}

.blog-posts .list:hover > .image img {
  transform: scale(1.1);
}

.blog-posts .list .white-box {
  padding: 24px 30px;
  /* background-color: var(--OffWhite); */
  border-radius: 0 0 12px 12px;
  border: 1px solid var(--LightGrey);
  border-top: 0;
  transition: var(--transition3);
}

.blog-posts .list-wrapper .list:hover .white-box {
  background-color: var(--OffWhite);
}

.blog-posts .list .white-box .link-text a {
  font-size: 16px;
  line-height: 33px;
  color: var(--PrimaryGreen);
  text-decoration: underline;
  font-weight: 600;
}

.blog-posts .list .white-box .link-text a:after {
  content: "";
  display: none;
}

.blog-posts .list .white-box h3 {
  margin: 0px 0px 18px 0px;
}

.blog-posts .list .white-box h3 strong {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  height: 60px;
}

.blog-posts .list .white-box h3 a {
  text-decoration: none;
  color: var(--base_color);
  font-size: 20px;
  line-height: 30px;
  font-family: var(--poppins);
  font-weight: 700;
  margin-bottom: 24px;
}

.blog-posts .list .white-box h3 a:hover {
  color: var(--PrimaryGreen);
}

.blog-posts .list .white-box .author {
  display: flex;
  align-items: center;
}

.blog-posts .list .white-box .author .image {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  overflow: hidden;
  background: var(--white);
}

.blog-posts .list .white-box .author .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 0;
}

.blog-posts .list .white-box .name {
  font-size: 14px;
  line-height: 22px;
  padding: 0 0 0 15px;
}

.blog-posts .list .white-box .author .name strong {
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  font-family: var(--poppins);
}

.blog-posts .list .white-box .content {
  margin: 16px 0 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  height: 96px;
}

.blog-posts .list .white-box .content p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  height: 96px;
}

.blog-posts .list-wrapper .list:hover .white-card {
  /* filter: drop-shadow(0px 4px 20px rgba(10, 2, 64, 0.15)); */
  box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
}

.blog-posts.first-dv {
  padding: 00px 0px 50px 0px;
  position: relative;
  background: transparent;
  z-index: 1;
}

.blog-posts.first-dv:after {
  content: "";
  background: var(--white);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  z-index: -1;
}

.blog-posts.first-dv .list-wrapper {
  margin-top: 0;
}

.blog-posts .post-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.blog-posts.no-bg {
  background: transparent;
  position: relative;
  z-index: 2;
}

.blog-posts .list .link-text a:hover {
  color: var(--PrimaryGreen);
}

.blog-posts .list .link-text a:hover::after {
  background: url(../images/arrow_right_alt_pink.svg) no-repeat center;
}

.blog-posts .load_more_btn {
  margin: 30px 0 0;
}

.blog-posts .list:hover > .image:before {
  animation: hoverShine 1.2s;
}

/* .blog-posts.has-gradient {
    background: linear-gradient(to bottom, rgba(245, 247, 252, 1) 68%, rgba(245, 247, 252, 1) 68%, rgba(220, 182, 213, 1) 100%);
} */

.post-more-button {
  margin-bottom: 90px;
}

/* 15-1-2024 */
.blog-posts .list {
  transition: 600ms;
}

.blog-posts .list:hover {
  transform: translateY(-5px);
}

.blog-posts.usefull-blogs .list:hover {
  transform: none !important;
}

.blog-posts .list .white-card {
  padding: 20px 20px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--LightGrey2);
  border-radius: 12px;
  transition: 400ms;
  box-shadow: rgb(103 103 103 / 9%) 0px 3px 12px;
  position: relative;
}

.blog-posts .list .white-card .blog-card-link {
  position: absolute;
  inset: 1;
  z-index: 1;
}

.blog-posts .list .white-card .read-more {
  background-color: transparent;
  width: fit-content;
  color: var(--BlueTextColor);
  font-size: 17px;
  border: none;
  padding: 0;
  font-weight: 700;
  margin-top: 30px;
  cursor: pointer;
  font-family: var(--poppins);
}

.blog-posts .list .white-card .read-more svg {
  margin-left: 10px;
}

.blog-posts .list .white-card .categoryWrap {
  margin-bottom: 20px;
  position: relative;
  left: unset;
  top: unset;
}

.blog-posts .list .white-card .categoryWrap a {
  color: var(--PrimaryGreen);
  border-radius: 100px;
  background: #e9f9ec;
  font-size: 12px;
  line-height: normal;
  padding: 10px 16px;
  text-decoration: none;
  margin: 0 0px 5px 0;
  display: inline-block;
  font-family: var(--poppins);
}

.blog-posts .list .white-card .categoryWrap a[href*="javascript:;"] {
  pointer-events: none;
}

.blog-posts .list .white-card h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1.4;
  font-family: var(--poppins);
  font-weight: 500;
}

.blog-posts .list .white-card h3 strong {
  font-weight: 500;
}

.blog-posts .list .white-card h3 a {
  text-decoration: none;
  color: var(--base_color);
}

.blog-posts .list .white-card .blog-post-meta {
  font-size: 17px;
  line-height: 27px;
  color: var(--base_color);
  font-weight: 400;
  margin-top: auto;
}

.blog-posts .list .white-card .link-text {
  margin-top: 30px;
}

@keyframes hoverShine {
  100% {
    left: 125%;
  }
}

.blog-cta-box {
}

.blog-cta-box .inner {
  border-radius: 20px;
  padding: 60px 140px;
  position: relative;
  overflow: hidden;
}

.blog-cta-box .inner > .hex-logo {
  position: absolute;
  right: 0;
  bottom: -410px;
  width: 600px;
  opacity: 0.45;
  pointer-events: none;
}

.blog-cta-box .image {
  width: 375px;
  position: relative;
  z-index: 2;
}

.blog-cta-box .image .hex-mask:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--quaternary_color);
  opacity: 0.7;
}

.blog-cta-box .image img.hex-logo {
  filter: grayscale(1) invert(1) brightness(2);
  opacity: 0.5;
}

.blog-cta-box .image.green .hex-mask:after {
  background-color: var(--green2_color);
}

.blog-cta-box .content-right {
  width: calc(100% - 375px);
  padding-left: 107px;
  position: relative;
  z-index: 2;
}

.blog-cta-box .content-right [class*="button-"] {
  padding: 50px 0 0;
}

.blog-cta-box .inner.blur-ele:before {
  z-index: 0;
  top: 30px;
  right: auto;
  left: 10px;
}

.blog-cta-box .inner.blur-ele:after {
  z-index: 0;
  bottom: 80px;
  left: -60px;
}

.email-subscribe {
  position: relative;
  z-index: 1;
}

.email-subscribe:after {
  position: absolute;
  z-index: -1;
  content: "";
  background: linear-gradient(to bottom, #f5f7fc 9%, #b55499 100%);
  left: 0;
  bottom: 0;
  width: 100%;
  height: 230%;
}

.email-subscribe .inner-box {
  border-radius: 31px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.email-subscribe .inner-box > div {
  max-width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.email-subscribe .inner-box .hex-logo {
  position: absolute;
  right: 100px;
  bottom: -140px;
  width: 480px;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}

.email-subscribe .inner-box.blur-ele:before {
  z-index: 0;
  top: -50px;
  right: -150px;
}

.email-subscribe .inner-box.blur-ele:after {
  z-index: 0;
  bottom: -140px;
  left: auto;
  right: 270px;
}

.email-subscribe .inner-box .title-part {
  position: relative;
  z-index: 1;
  max-width: 870px;
  margin: 0 30px 0 0;
}

.email-subscribe .inner-box .form-dv {
  position: relative;
  z-index: 1;
  margin: 0;
  width: calc(100% - 900px);
}

.email-subscribe .inner-box .form-dv form {
  position: relative;
}

/*.email-subscribe .inner-box .form-dv form .wpforms-field-container { padding-right:181px; } */
/*.email-subscribe .inner-box .form-dv form .wpforms-submit-container { position:absolute; top:0; right:0; width:200px; margin: 0; } */
.email-subscribe
  .inner-box
  .form-dv
  form
  .wpforms-submit-container
  button[type="submit"] {
  padding: 16px 30px;
}

.email-subscribe.no-bg {
  margin-bottom: 150px;
}

.email-subscribe.no-bg:after {
  display: none;
}

.email-subscribe .default-form .wpforms-form em.wpforms-error {
  position: static;
  margin: 10px 0 0;
}

.email-subscribe .default-form .wpforms-form em.wpforms-error {
  padding: 0;
}

.featured-image {
  border-radius: 20px;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 40px;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-wrap {
}

/* .post-wrap .post-content { padding:0 90px 0 30px; } */
.post-wrap .post-content h3 {
  font-weight: 500;
  margin-bottom: 22px;
}

.post-wrap .post-content img + p,
.post-wrap .post-content p + img,
.post-wrap .post-content p + h2,
.post-wrap .post-content p + h3,
.post-wrap .post-content img + h2,
.post-wrap .post-content img + h3 {
  margin-top: 55px;
  line-height: 1.3;
}

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

.post-main .post-content h3,
.post-main .post-content p + h3 {
  margin-bottom: 15px;
  margin-top: 28px;
}

.post-main p img {
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  margin-top: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.post-wrap .post-content p + p:has(img) {
  margin-top: -25px;
}

.post-wrap .post-content p:has(img) {
  margin-bottom: 0;
}

.post-wrap .post-content p > img {
  margin-top: 35px;
  margin-bottom: 35px;
}

.post-wrap .post-content.ul-dots ul {
  margin-bottom: 30px;
}

.post-wrap .post-content.ul-dots ul li {
  padding-left: 25px;
}

.post-wrap .post-content.ul-dots ul li:after {
  top: 9px;
  background-color: var(--PrimaryGreen);
  /*width:16px; height:16px;*/
}

.post-wrap .post-content ul li:not(:last-child),
.post-wrap .post-content ol li:not(:last-child) {
  /* margin-bottom: 16px; */
  margin-bottom: 30px;
}

.post-wrap .post-content ol {
  padding: 0;
  margin: 20px 0 50px;
  list-style: none;
  counter-reset: section;
}

.post-wrap .post-content ol li {
  padding: 0 0 0 55px;
  position: relative;
}

.post-wrap .post-content ol > li:after {
  counter-increment: section;
  content: counter(section);
  width: 32px;
  height: 32px;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 4px;
  background: var(--BluePrimary);
  text-align: center;
  font-size: 16px;
  color: var(--white);
  font-weight: 700;
  text-indent: 1px;
  padding: 1px 0 0;
  box-sizing: border-box;
  line-height: 32px;
}

.post-wrap .post-content ol li + li {
  margin-top: 30px;
}
.esb-content-area-module__editor-text blockquote,
.post-wrap .post-content blockquote {
  position: relative;
  z-index: 1;
  margin: 38px 0 38px;
  padding: 24px;
  overflow: hidden;
  border-radius: 16px;
  font-size: 18px;
  font-family: var(--poppins);
  background-color: var(--BlueLight2);
}
.esb-content-area-module__editor-text blockquote {
  margin: 0 !important;
}

.post-wrap .post-content blockquote:before {
  display: none;
}

.post-wrap .post-content blockquote b,
.post-wrap .post-content blockquote strong {
  font-weight: 600;
}

.post-wrap .post-content blockquote a {
  color: var(--BlueTextColor);
}

.post-wrap .post-content blockquote a:hover {
  color: var(--PrimaryGreen);
}

.post-wrap .post-content blockquote p {
  font-weight: 600;
  margin-bottom: 0px;
}

.post-wrap .post-content blockquote:before {
  background: url(../images/eSpark-logo-hex.svg) no-repeat center / 100% auto;
  content: "";
  width: 500px;
  height: 500px;
  position: absolute;
  right: 0;
  bottom: -270px;
  opacity: 0.4;
  pointer-events: none;
}

.post-wrap .post-content table {
  border-spacing: 0;
  margin: 40px auto;
  width: 100%;
  overflow: auto;
  height: fit-content !important;
  /* display: block; */
}

.post-wrap .post-content table::-webkit-scrollbar-track {
  background-color: #e3e3e3;
}

.post-wrap .post-content table::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}

.post-wrap .post-content table::-webkit-scrollbar-thumb {
  background-color: var(--base_color);
}

.post-wrap .post-content table tr {
  vertical-align: top;
}

.post-wrap .post-content table thead th {
  font-size: 18px;
  line-height: 28px;
  padding: 9px 20px;
  background-color: var(--quaternary_color);
  color: var(--white);
  vertical-align: middle;
}

.post-wrap .post-content table thead th:first-of-type {
  border-radius: 18px 0 0 0;
}

.post-wrap .post-content table thead th:not(:last-of-type) {
  border-right: 1px solid #dcdee3;
}

.post-wrap .post-content table thead th:last-of-type {
  border-radius: 0 18px 0 0;
}

.post-wrap .post-content table tr td {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: -0.5px;
  padding: 9px 20px;
  min-width: 110px;
  border-right: 1px solid #dcdee3;
  color: var(--base_color);
}

.post-wrap .post-content table tr td:first-of-type {
  border-left: 1px solid #dcdee3;
}

.post-wrap .post-content table tr:nth-of-type(2n + 1) td {
  background-color: var(--white);
}

.post-wrap .post-content table tr:last-of-type td {
  border-bottom: 1px solid #dcdee3;
}

.post-wrap .post-content table tr:first-of-type td h3 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.post-wrap .post-content table tr:first-of-type td {
  border-top: 1px solid #dcdee3;
  background-color: var(--LightGrey3);
  font-weight: 600;
}

.post-wrap .post-content table tr:first-of-type td:first-of-type {
  border-radius: 18px 0 0 0;
}

.post-wrap .post-content table tr:first-of-type td:last-of-type {
  border-radius: 0 18px 0 0;
}

.post-wrap .post-content table tr:last-of-type td:first-of-type {
  border-radius: 0 0 0 18px;
}

.post-wrap .post-content table tr:last-of-type td:last-of-type {
  border-radius: 0 0 18px 0;
}

.cta-post {
  position: relative;
  padding: 60px 80px;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
  margin: 50px 0 70px;
}

.cta-post.blur-ele:before {
  top: 40px;
  right: -260px;
}

.cta-post.blur-ele:after {
  width: 600px;
  left: -52px;
}

.cta-post .hex-logo {
  position: absolute;
  left: -40px;
  top: -40px;
  width: 445px;
}

.cta-post .hex-logo:nth-child(2) {
  left: auto;
  right: 0;
  top: auto;
  bottom: -280px;
}

.cta-post .image {
  width: 40%;
  position: relative;
  z-index: 1;
}

.cta-post .image:before {
  content: "";
  position: absolute;
  width: 524px;
  height: 260px;
  background-color: var(--primary_color);
  opacity: 0.7;
  filter: blur(130px);
  top: 140px;
  left: -234px;
  z-index: -2;
  pointer-events: none;
}

.cta-post .content-right {
  width: 60%;
  padding: 0 0 0 100px;
  position: relative;
  z-index: 1;
}

.cta-post [class*="button-"] {
  padding: 30px 0 0;
}

.client-block {
  position: relative;
  padding: 60px 60px 60px 80px;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
  margin: 50px 0 70px;
}

.client-block .hex-logo {
  position: absolute;
  width: 445px;
  pointer-events: none;
}

.client-block .hex-logo:nth-child(1) {
  opacity: 0.5;
  left: -320px;
  top: -305px;
}

.client-block .hex-logo:nth-child(2) {
  left: 46%;
  bottom: -300px;
  top: auto;
  opacity: 0.7;
}

.client-block .hex-logo:nth-child(3) {
  opacity: 0.2;
  right: -320px;
  top: -305px;
  left: auto;
}

.client-block .image-left .image-dv {
  position: relative;
  filter: drop-shadow(0 0 20px rgba(242, 5, 135, 0.4));
}

.client-block .image-left .image-dv > img {
  position: absolute;
  left: 17px;
  top: 0;
  z-index: 1;
}

.client-block .image-left .hex-mask {
  width: 215px;
  margin: 0 auto;
}

.client-block .image-left .name {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 30px;
  padding: 25px 0 0;
}

.client-block .image-left .name strong {
  font-size: 20px;
}

.client-block .text {
  width: calc(100% - 300px);
  padding: 0 0 0 115px;
  font-size: 33px;
  font-weight: 500;
  line-height: 46px;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}

.client-block .text:before,
.client-block .text:after {
  background: url(../images/quote.svg) no-repeat 0 0 / 100% auto;
  content: "";
  width: 44px;
  height: 45px;
  position: absolute;
  left: 118px;
  top: -78px;
}

.client-block .text:after {
  top: auto;
  bottom: -84px;
  transform: scale(-1);
  left: auto;
  right: 0;
}

.small-cta-strip {
  position: relative;
  padding: 30px 60px;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
  margin: 50px 0 70px;
}

.small-cta-strip .corner {
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 0;
}

.small-cta-strip .hex-logo {
  position: absolute;
  width: 445px;
  pointer-events: none;
  right: -90px;
  top: -60px;
  opacity: 0.4;
}

.small-cta-strip h2,
.small-cta-strip h3 {
  margin: 0 !important;
}

.small-cta-strip .text {
  position: relative;
}

.small-cta-strip.simple {
}

.small-cta-strip.simple .hex-logo {
  right: 31%;
  opacity: 0.5;
}

.also-read {
  position: relative;
  padding: 30px 90px 30px 34px;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
  margin: 50px 0 70px;
}

.also-read .hex-logo {
  position: absolute;
  width: 380px;
  pointer-events: none;
  right: 180px;
  top: -60px;
  opacity: 0.4;
}

.also-read .icon {
  border-radius: 16px;
  width: 92px;
  height: 92px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.also-read .icon:after {
  background-color: var(--primary_color);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.2;
}

.also-read .icon img {
  max-height: 52px;
}

.also-read .text {
  width: calc(100% - 92px);
  padding: 0 0 0 40px;
}

.also-read .text a {
  text-decoration: none;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  margin: 10px 0 0;
}

.also-read .text a:hover {
  color: var(--primary_color);
}

.also-read.blur-ele:after {
  display: none;
}

.also-read.blur-ele:before {
  top: -10px;
  right: -244px;
}

.also-read p:empty {
  display: none;
}

/*also-read-new*/
.also-read,
.also-read.bg-dark {
  background-color: var(--OffWhite);
  padding: 30px 30px 30px 30px;
  border-radius: 15px;
  margin: 30px 0px 28px 0px;
}

.also-read.blur-ele:before {
  display: none;
}

.also-read > p:first-child,
.also-read.bg-dark > p:first-child {
  display: none;
}

.also-read .icon {
  display: none;
}

.also-read .text {
  width: 100%;
  padding: 0px 0px 0px 0px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.also-read .text strong {
  font-size: 18px;
  font-family: var(--hind);
  color: var(--BlueTextColor);
  font-weight: 600;
  margin-right: 6px;
}

.also-read .text p {
  display: inline-block;
  margin-bottom: 0px;
}

.also-read .text a {
  font-size: 18px;
  font-family: var(--hind);
  color: var(--BlueTextColor);
  margin-top: 0px;
  letter-spacing: normal;
  font-weight: 600;
  text-decoration: underline;
}

.also-read .text a:hover {
  color: var(--PrimaryGreen);
}

/*also-read-new end*/

.post-wrap .post-content blockquote.read-also {
  font-style: normal;
  background-color: var(--OffWhite);
  color: var(--BlueTextColor);
  border: none;
  position: relative;
  padding: 30px 90px 30px 34px;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
  margin: 40px 0 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.post-wrap .post-content blockquote.read-also a {
  text-decoration: underline;
}

.post-wrap .post-content blockquote.read-also a:hover {
  color: var(--PrimaryGreen);
}

.seprater-info {
  background: var(--base_color)
    url(../../../../wp-content/uploads/2023/08/blog-hex-corner.svg) no-repeat 0
    0;
  color: var(--white);
  position: relative;
  padding: 30px 90px 30px 34px;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
  margin: 50px 0 70px;
}

.seprater-info a {
  color: var(--tertiary_color);
  text-decoration: none;
}

.seprater-info a:hover {
  color: var(--primary_color);
}

.blog-faq {
  margin: 80px 0 0;
}

.blog-faq .hex-logo {
  position: absolute;
  width: 433px;
  pointer-events: none;
  right: -120px;
  top: -20px;
  opacity: 0.4;
}

.blog-faq .faq-top {
  position: relative;
  margin: 0 0 40px;
}

.blog-faq .faq-top .inner-dv {
  position: relative;
  z-index: 1;
  padding: 24px 150px 24px 40px;
  overflow: hidden;
  width: 100%;
  border-radius: 15px;
}

.blog-faq .faq-top .inner-dv:before {
  content: "";
  position: absolute;
  width: 296px;
  height: 80px;
  background-color: var(--PrimaryGreen);
  opacity: 0.7;
  filter: blur(70px);
  top: -70px;
  right: 0;
  z-index: -2;
  pointer-events: none;
  display: none;
}

.blog-faq .faq-top .inner-dv:after {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--OffWhite);
  /*    box-shadow: 0 -6px 0px 0px rgba(0, 0, 0, 0.4) inset;*/
}

.blog-faq .faq-top .inner-dv .text {
  font-size: 24px;
  font-weight: 800;
  line-height: normal;
}

.blog-faq .faq-top h2 {
  margin: 0;
}

.blog-faq .faq-top .image {
  position: absolute;
  right: 30px;
  bottom: 5px;
  z-index: 1;
  max-width: 100px;
}
/* .post-wrap .post-content .blog-faq .faq-content > div, */
.post-wrap .post-content .blog-faq ol > li {
  padding: 0 0 0 46px;
}
/* .post-wrap .post-content .blog-faq .faq-content > div h3, */
.post-wrap .post-content .blog-faq ol > li strong {
  margin-bottom: 5px;
  display: block;
  font-family: var(--poppins);
}
/* .post-wrap .post-content .blog-faq .faq-content > div h3, */
.post-wrap .post-content .faq-content ol > li strong {
  display: unset;
}

.post-wrap .post-content .blog-faq ol > li:after {
  line-height: 32px;
}

.post-wrap .post-content.ul-dots .blog-faq ul li {
  padding-left: 18px;
  margin-top: 0px;
}

.post-main .post-wrap .email-subscribe {
  margin-bottom: 50px;
}

.post-main .post-wrap .email-subscribe .inner-box {
  padding: 20px;
  border-radius: 11px;
}

.post-main .post-wrap .email-subscribe .inner-box .title-part {
  margin: 0 0 30px;
}

.post-main .post-wrap .email-subscribe .inner-box .title-part h4 {
  font-size: 28px;
  line-height: normal;
  margin: 0 0 20px;
}

.post-main .post-wrap .email-subscribe .inner-box .form-dv {
  width: 100%;
}

.post-main .post-wrap .email-subscribe .inner-box .content {
  font-size: 16px;
  line-height: 29px;
}

.post-main .post-wrap .email-subscribe .inner-box .hex-logo {
  width: 300px;
  right: 0;
}

/* Blog listing */

/* BLOG AS A PAGE */
.post-main .post-content .faq-content > div h3 {
  padding: 0;
  position: relative;
  text-decoration: none;
  font-size: 18px;
  margin: 0 !important;
  font-weight: 700 !important;
}

.post-main .post-content .faq-content > div h3::after {
  counter-increment: section;
  content: counter(section);
  width: 32px;
  height: 32px;
  border-radius: 100%;
  position: absolute;
  left: -46px;
  top: 4px;
  background: var(--BluePrimary);
  text-align: center;
  font-size: 16px;
  color: var(--white);
  font-weight: 700;
  text-indent: 1px;
  padding: 1px 0 0;
  box-sizing: border-box;
  line-height: 29px;
}

.post-main .post-content .faq-content {
  counter-reset: section;
}

.post-main .post-content .faq-content > div {
  padding-left: 46px;
  margin: 16px 0 16px !important;
}

.post-main .post-content .faq-content ul li::before {
  background: none;
  width: 10px;
  height: 2px;
  background-color: black;
  left: 35px;
  top: 14px;
  position: absolute;
  content: "";
}

.post-main .post-content .faq-content ul li {
  position: relative;
  padding: 0 0 0 55px;
}
/* BLOG AS A PAGE */

/* Form css - start */
.default-form .wpforms-hidden,
.default-form .wpforms-label-hide {
  display: none !important;
}

.default-form .wpforms-form label {
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.5px;
  font-size: 16px;
  margin: 0;
  line-height: normal;
}

.default-form .wpforms-form label .wpforms-required-label {
  color: var(--green2_color);
}

.default-form textarea {
  resize: none;
  min-height: 120px;
}

.default-form .wpforms-form select,
.default-form .wpforms-form textarea,
.default-form
  .wpforms-form
  input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not(
    [type="button"]
  ):not([type="image"]):not([type="file"]) {
  font-family: var(--base_font);
  border-radius: 7px;
  color: var(--white);
  background-color: rgba(217, 217, 217, 0.25);
  border: 1px solid var(--white);
  padding: 12px 15px;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  line-height: normal;
  height: auto;
}

.default-form input[type="submit"],
.default-form button[type="submit"] {
  font-family: var(--base_font);
  color: var(--base_color);
  cursor: pointer;
  -webkit-appearance: none;
  border-radius: 11px;
  width: 100%;
  border: solid 1px var(--primary_color);
  box-sizing: border-box;
  background: var(--primary_color);
  padding: 18px 24px;
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
  text-align: center;
  transition: 400ms;
}

.default-form input[type="submit"]::-moz-focus-inner {
  border: 0;
}

.default-form input[type="submit"]:hover,
.default-form button[type="submit"]:hover {
  background-color: #890467;
  border-color: #890467;
  color: var(--white);
}

.default-form ::-webkit-input-placeholder {
  opacity: 1;
  color: var(--white);
}

.default-form ::-moz-placeholder {
  opacity: 1;
  color: var(--white);
}

.default-form :-ms-input-placeholder {
  opacity: 1;
  color: var(--white);
}

.default-form :-moz-placeholder {
  opacity: 1;
  color: var(--white);
}

.default-form .wpforms-form select {
  cursor: pointer;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 12px 35px 12px 15px;
  background: rgba(217, 217, 217, 0.25)
    url(../images/select-white-down-chevron.svg) no-repeat right 10px center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.default-form .wpforms-form select::-ms-expand {
  display: none;
}

.default-form .wpforms-form select option {
  color: #000;
}

.default-form .wpforms-submit-container {
  margin: 25px 0 0;
}

.default-form .wpforms-form em.wpforms-error {
  font-style: normal;
  font-size: 13px;
  color: red;
  width: 100%;
  display: block;
  line-height: normal;
}

.default-form .wpforms-form select.wpforms-error,
.default-form .wpforms-form textarea.wpforms-error,
.default-form
  .wpforms-form
  input.wpforms-error:not([type="radio"]):not([type="checkbox"]):not(
    [type="submit"]
  ):not([type="button"]):not([type="image"]):not([type="file"]) {
  border-color: red;
  background-color: rgba(255, 0, 0, 0.11);
}

/* Side label form css */
.side-label.default-form {
}

.side-label.default-form .wpforms-field {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  padding: 8px 0;
  position: relative;
}

.side-label.default-form .wpforms-field > label {
  width: 100%;
  margin: 0 0 10px;
}

.side-label.default-form .wpforms-field > .iti--allow-dropdown,
.side-label.default-form .wpforms-field > textarea,
.side-label.default-form .wpforms-field > select,
.side-label.default-form
  .wpforms-field
  > input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not(
    [type="button"]
  ):not([type="image"]):not([type="file"]) {
  width: 100%;
}

.side-label.default-form .wpforms-submit-container {
  text-align: center;
}

.side-label.default-form input[type="submit"],
.side-label.default-form button[type="submit"] {
  max-width: 319px;
}

/* White fields */
.gray-fields.default-form .wpforms-form select,
.gray-fields.default-form .wpforms-form textarea,
.gray-fields.default-form
  .wpforms-form
  input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not(
    [type="button"]
  ):not([type="image"]):not([type="file"]) {
  background: #d9d9d9;
  border-color: #d9d9d9;
  color: var(--base_color);
}

.gray-fields.default-form input[type="submit"],
.gray-fields.default-form button[type="submit"] {
  color: var(--base_color);
  border: solid 1px var(--green2_color);
  background: var(--green2_color);
}

.gray-fields.default-form input[type="submit"]:hover,
.gray-fields.default-form button[type="submit"]:hover {
  background-color: var(--tertiary_color);
  border-color: var(--tertiary_color);
  color: var(--base_color);
}

.gray-fields.default-form .wpforms-form select.wpforms-error,
.gray-fields.default-form .wpforms-form textarea.wpforms-error,
.gray-fields.default-form
  .wpforms-form
  input.wpforms-error:not([type="radio"]):not([type="checkbox"]):not(
    [type="submit"]
  ):not([type="button"]):not([type="image"]):not([type="file"]) {
  border-color: red;
  background-color: #fbc4c4;
}

.gray-fields.default-form ::-webkit-input-placeholder {
  opacity: 1;
  color: var(--base_color);
}

.gray-fields.default-form ::-moz-placeholder {
  opacity: 1;
  color: var(--base_color);
}

.gray-fields.default-form :-ms-input-placeholder {
  opacity: 1;
  color: var(--base_color);
}

.gray-fields.default-form :-moz-placeholder {
  opacity: 1;
  color: var(--base_color);
}

.white-fields.default-form .wpforms-form select,
.white-fields.default-form .wpforms-form textarea,
.white-fields.default-form
  .wpforms-form
  input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not(
    [type="button"]
  ):not([type="image"]):not([type="file"]) {
  background: var(--white);
  border-color: var(--white);
  color: var(--base_color);
}

.white-fields.default-form input[type="submit"],
.white-fields.default-form button[type="submit"] {
  color: var(--base_color);
  border: solid 1px var(--green2_color);
  background: var(--green2_color);
}

.white-fields.default-form input[type="submit"]:hover,
.white-fields.default-form button[type="submit"]:hover {
  background-color: var(--tertiary_color);
  border-color: var(--tertiary_color);
  color: var(--base_color);
}

.white-fields.default-form .wpforms-form select.wpforms-error,
.white-fields.default-form .wpforms-form textarea.wpforms-error,
.white-fields.default-form
  .wpforms-form
  input.wpforms-error:not([type="radio"]):not([type="checkbox"]):not(
    [type="submit"]
  ):not([type="button"]):not([type="image"]):not([type="file"]) {
  border-color: red;
  background-color: #fbc4c4;
}

.white-fields.default-form ::-webkit-input-placeholder {
  opacity: 1;
  color: var(--base_color);
}

.white-fields.default-form ::-moz-placeholder {
  opacity: 1;
  color: var(--base_color);
}

.white-fields.default-form :-ms-input-placeholder {
  opacity: 1;
  color: var(--base_color);
}

.white-fields.default-form :-moz-placeholder {
  opacity: 1;
  color: var(--base_color);
}

/* Form css - end */

.tabbing-dropdown .tabs-dropdown {
  display: block !important;
  text-decoration: none !important;
  background: var(--BluePrimary);
  color: var(--white) !important;
  border-radius: 8px;
  padding: 10px 40px 10px 20px !important;
  position: relative !important;
  z-index: 5;
  font-size: 16px !important;
}

.tabbing-dropdown .tabs-dropdown::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
  height: 8px;
  background: url(../../../../../wp-content/uploads/2023/09/keyboard_arrow_down_chevron_white.svg)
    no-repeat center / contain;
  transition: all 400ms;
}

.tabbing-dropdown .tabs-dropdown.open::after {
  transform: translateY(-50%) rotate(180deg);
}

.tabbing-dropdown .nav-tabs {
  display: none;
  margin: 0;
  padding: 0;
  list-style-type: none;
  background: var(--white);
  border-radius: 8px;
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  z-index: 2;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 25%);
}

.tabbing-dropdown .nav-tabs a {
  text-decoration: none;
  border-radius: 8px;
  padding: 10px 20px;
  display: block;
  color: var(--base_color);
}

.tabbing-dropdown .nav-tabs a.active,
.tabbing-dropdown .nav-tabs a:hover {
  background: #f1f1f1;
}

.tabbing-dropdown .nav-tabs a.current {
  pointer-events: none;
}

.tabbing-dropdown-wrapper {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.accordion {
}

.accordion .inner-div {
  border-radius: 11px;
  padding: 20px;
  overflow-x: clip;
}

.accordion .list-wrapper {
  counter-reset: section;
}

.accordion .list {
  position: relative;
}

.accordion .list-wrapper .list + .list {
  margin: 40px 0 0;
}

.accordion .top-part .title-part {
  width: 100%;
}

.accordion .top-part .title-part h3 span {
  color: var(--quaternary_color);
}

.accordion .top-part .image {
  display: none;
  width: 155px;
  position: relative;
}

.accordion .top-part .image .icon {
  position: absolute;
  max-height: 63px;
  width: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.accordion .top-part .image .hex-mask:after {
  background: var(--quaternary_color);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.7;
}

.accordion .accordion-wrapper {
  padding: 40px 0 0;
}

.accordion .accordion-list {
  position: relative;
  z-index: 1;
}

.accordion .accordion-list:after {
  width: 100%;
  height: 100%;
  content: "";
  background: var(--quaternary_color);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 30px;
  z-index: -1;
  opacity: 0;
  transition: 400ms;
}

.accordion .accordion-list .click-ttl {
  position: relative;
  font-weight: 600;
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
  padding: 20px 60px 20px 45px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.accordion .accordion-list .click-ttl:before {
  width: 45px;
  height: 45px;
  content: "";
  background: var(--quaternary_color);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
  transition: 400ms;
}

.accordion .accordion-list .click-ttl:after {
  width: 45px;
  height: 45px;
  content: "";
  background: url(../images/down-white-arrow.svg) no-repeat center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 400ms;
}

.accordion .accordion-list .click-ttl img.icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  max-width: 30px;
}

.accordion .accordion-list .content {
  padding: 20px 45px 20px;
  display: none;
}

.accordion .list-wrapper .list.pink {
}

.accordion .list.pink .top-part .title-part h3 span {
  color: var(--primary_color);
}

.accordion .list.pink .accordion-list .click-ttl:before,
.accordion .list.pink .top-part .image .hex-mask:after {
  background: var(--primary_color);
}

.accordion .accordion-list .click-ttl.active:before {
  box-shadow: 0 0 0 25px var(--white) inset;
}

.accordion .accordion-list .click-ttl.active:after {
  filter: invert(1);
  transform: translateY(-50%) rotate(180deg);
}

.accordion .accordion-list .click-ttl .icon-dv {
  background: url(../images/question-icon.svg) no-repeat center;
  width: 46px;
  height: 46px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.banner-career {
  position: relative;
  overflow: hidden;
  padding: 74px 0 50px;
  background-color: var(--BlueLight2);
  margin-bottom: 50px;
  z-index: 0;
}

.banner-career::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg width='1629' height='1080' viewBox='0 0 1629 1080' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_3405_629' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='1629' height='1080'%3E%3Cpath d='M0.00012207 1080L1628.16 1080L1628.16 0L0.00012207 0L0.00012207 1080Z' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_3405_629)'%3E%3Cpath d='M1094.96 341.957L778.352 657.086L1386.43 1266.22L1411.51 1273.32L1774.3 1009.31L1094.96 341.957Z' fill='url(%23paint0_linear_3405_629)'/%3E%3Cpath opacity='0.8' d='M324.5 -182.5L-215 213L689.437 1128L719.42 1136.5L1229.93 712.216L324.5 -182.5Z' fill='url(%23paint1_linear_3405_629)'/%3E%3Cpath opacity='0.2' d='M74.86 58.4375L33.043 127.385L632.455 712.923L690.316 659.448L433.967 411.654L74.86 58.4375Z' fill='url(%23paint2_linear_3405_629)'/%3E%3Cpath opacity='0.04' d='M1166.98 656.52L1128.47 716.755L1637.14 1247.54L1701.12 1201.34L1478.59 976.66L1166.98 656.52Z' fill='url(%23paint3_linear_3405_629)'/%3E%3Cpath opacity='0.2' d='M36.7077 225L28.0117 262.158L593.892 809L615.012 784.847L593.892 763.172L36.7077 225Z' fill='url(%23paint4_linear_3405_629)'/%3E%3Cpath opacity='0.04' d='M1024.49 728.594L1018.06 756.146L1436.34 1161.62L1451.95 1143.71L1436.34 1127.64L1024.49 728.594Z' fill='url(%23paint5_linear_3405_629)'/%3E%3Cpath opacity='0.2' d='M242.651 51L233.984 88.0944L797.938 634L818.988 609.889L797.938 588.25L242.651 51Z' fill='url(%23paint6_linear_3405_629)'/%3E%3Cpath opacity='0.04' d='M1238.76 634.082L1232 663.056L1671.82 1089.45L1688.23 1070.62L1671.82 1053.72L1238.76 634.082Z' fill='url(%23paint7_linear_3405_629)'/%3E%3Cpath opacity='0.2' d='M599.677 -51L591.977 -17.9809L1093.08 467.95L1111.79 446.487L1093.08 427.226L599.677 -51Z' fill='url(%23paint8_linear_3405_629)'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_3405_629' x1='990.142' y1='506.524' x2='1570.39' y2='1094.41' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23F6F7FC' stop-opacity='0'/%3E%3Cstop offset='0.425' stop-color='%23F6F7FC'/%3E%3Cstop offset='0.67' stop-color='%23F6F7FC'/%3E%3Cstop offset='1' stop-color='%23F6F7FC' stop-opacity='0.3'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_3405_629' x1='210' y1='120.5' x2='909.04' y2='804.39' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23F6F7FC' stop-opacity='0'/%3E%3Cstop offset='0.489857' stop-color='%23F0F3FF'/%3E%3Cstop offset='0.736967' stop-color='%23F0F3FF' stop-opacity='0.6'/%3E%3Cstop offset='1' stop-color='%23F6F7FC' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear_3405_629' x1='124.747' y1='157.328' x2='648.09' y2='649.021' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23F6F7FC' stop-opacity='0'/%3E%3Cstop offset='0.391445' stop-color='%230060B4'/%3E%3Cstop offset='0.737187' stop-color='%230060B4' stop-opacity='0.8'/%3E%3Cstop offset='1' stop-color='%23F6F7FC' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint3_linear_3405_629' x1='1218.9' y1='643.631' x2='1753.89' y2='1136.81' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23F6F7FC' stop-opacity='0'/%3E%3Cstop offset='0.324403' stop-color='%230060B4'/%3E%3Cstop offset='0.7026' stop-color='%230060B4' stop-opacity='0.892673'/%3E%3Cstop offset='1' stop-color='%23F6F7FC' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint4_linear_3405_629' x1='146' y1='241.5' x2='650.633' y2='718.911' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23F6F7FC' stop-opacity='0'/%3E%3Cstop offset='0.465' stop-color='%230060B4'/%3E%3Cstop offset='0.7026' stop-color='%230060B4' stop-opacity='0.892673'/%3E%3Cstop offset='1' stop-color='%23F6F7FC' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint5_linear_3405_629' x1='1086.58' y1='719.151' x2='1479.41' y2='1093.63' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23F6F7FC' stop-opacity='0'/%3E%3Cstop offset='0.324403' stop-color='%230060B4'/%3E%3Cstop offset='0.7026' stop-color='%230060B4' stop-opacity='0.892673'/%3E%3Cstop offset='1' stop-color='%23F6F7FC' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint6_linear_3405_629' x1='326.367' y1='38.2862' x2='855.278' y2='543.226' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23F6F7FC' stop-opacity='0'/%3E%3Cstop offset='0.45' stop-color='%230060B4'/%3E%3Cstop offset='0.7026' stop-color='%230060B4' stop-opacity='0.892673'/%3E%3Cstop offset='1' stop-color='%23F6F7FC' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint7_linear_3405_629' x1='1304.05' y1='624.152' x2='1717.14' y2='1017.91' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23F6F7FC' stop-opacity='0'/%3E%3Cstop offset='0.324403' stop-color='%230060B4'/%3E%3Cstop offset='0.7026' stop-color='%230060B4' stop-opacity='0.892673'/%3E%3Cstop offset='1' stop-color='%23F6F7FC' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint8_linear_3405_629' x1='674.064' y1='-62.317' x2='1144.82' y2='386.316' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23F6F7FC' stop-opacity='0'/%3E%3Cstop offset='0.324403' stop-color='%230060B4'/%3E%3Cstop offset='0.7026' stop-color='%230060B4' stop-opacity='0.892673'/%3E%3Cstop offset='1' stop-color='%23F6F7FC' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
  /* background-size: 100%; */
}

.banner-career .breadcrumb {
  /* padding: 91px 0 50px; */
  margin-bottom: 30px;
}

.banner-career.agile-methodology-banner {
  margin-bottom: 0;
}

.banner-career .button-1 a {
  min-width: 275px;
  padding: 11px 30px 11px 0px;
}

.banner-career .button-1 a .icon-dv {
  background-position: -63px -108px;
}

.banner-career h1:not(.pre-title) {
  /* font-size: 1.7rem; */
  /* line-height: 2.6rem; */
}

.banner-career .container:not(.breadcrumb .container) {
  z-index: 1;
  position: relative;
  max-width: 1330px;
}

.banner-career .inner {
  position: relative;
}

.banner-career .qube {
  position: absolute;
  z-index: 1;
  display: none;
}

.banner-career .eb {
  position: absolute;
  left: 50%;
  bottom: auto;
  transform: translate(-50%, 0);
  pointer-events: none;
  top: 48px;
}

.banner-career .right-text {
  position: relative;
  z-index: 2;
}

.banner-career.agile-methodology-banner .qube.qube3 {
  margin-bottom: 80px;
}

.banner-career h1 {
  margin-bottom: 30px;
}

.banner-career .video-wrapper {
  margin: 40px 0;
}

.banner-career .video-wrapper .video-item {
  width: 100%;
  margin-bottom: 30px;
}

.banner-career .video-wrapper .video-item:last-child {
  margin-bottom: 0;
}

.banner-career .video-wrapper .video-item + .video-item {
  margin: 20px 0 0;
}

.banner-career.agile-methodology-banner .inner-banner .digits {
  margin-top: 60px;
}

.banner-career.agile-methodology-banner .inner-banner .digits .list {
  border-color: var(--quaternary_color);
  padding: 20px;
  font-size: 18px;
  line-height: 30px;
}

.agile-methodology-banner {
  background-color: var(--BlueLight2);
}

.agile-methodology-banner .container {
  max-width: unset;
}

.agile-methodology-banner .inner-banner {
  background: transparent;
  padding: 0;
}

.agile-methodology-banner.blur-ele:before {
  width: 738px;
  height: 225px;
  right: auto;
  left: -160px;
  top: 300px;
}

.agile-methodology-banner.blur-ele:after {
  width: 454px;
  height: 282px;
  left: -335px;
  bottom: auto;
  top: 425px;
}

.agile-methodology-banner .inner-banner .digits .list {
  border-color: var(--base_color);
  font-weight: 600;
  padding-left: 30px;
  padding-right: 30px;
}

.inner-banner .digits .list .icon {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-banner .digits .list .icon img {
  display: block;
  width: 100%;
  height: 100%;
  filter: brightness(0) saturate(100%) invert(27%) sepia(76%) saturate(4860%)
    hue-rotate(239deg) brightness(101%) contrast(97%);
}

.agile-methodology-banner .inner-banner .digits .list:nth-child(2) svg path,
.agile-methodology-banner .inner-banner .digits .list:nth-child(5) svg path {
  fill: #c07aff;
}

.agile-methodology-banner .inner-banner .digits .list:nth-child(3) svg path,
.agile-methodology-banner .inner-banner .digits .list:nth-child(6) svg path {
  fill: #14be59;
}

.our-agile-methodology {
  overflow: clip;
  position: relative;
  padding: 35px 0;
  z-index: 1;
  /* margin-top: 75px; */
}

.our-agile-methodology::before {
  position: absolute;
  content: "";
  width: 100%;
  top: 0;
  left: 0;
  height: 50%;
  background-color: var(--OffWhite);
  z-index: -1;
}

.our-agile-methodology .our-agile-methodology-inner {
  padding: 30px 24px;
  border-radius: 12px;
  z-index: 1;
  background-color: var(--BlueDark);
}
.our-agile-methodology .our-agile-methodology-inner h2,
.our-agile-methodology .our-agile-methodology-inner p {
  color: var(--white);
}
.our-agile-methodology .our-agile-methodology-inner .image-block {
  margin: 30px 0 0;
  text-align: center;
}

.our-agile-methodology .our-agile-methodology-inner.blur-ele:before {
  width: 990px;
  height: 347px;
  top: 110px;
  right: -240px;
}

.our-agile-methodology .our-agile-methodology-inner.blur-ele:after {
  width: 609px;
  height: 435px;
  top: 300px;
  bottom: auto;
  left: auto;
  right: 372px;
}

.client-numbers.agile-methodology.blur-ele::after {
  bottom: auto;
  top: 200px;
  left: 475px;
  background: var(--quaternary_color);
  width: 454px;
  height: 282px;
}

.client-numbers.agile-methodology.blur-ele::before {
  width: 738px;
  height: 225px;
  top: 88px;
  right: 470px;
}

/* end from style.css */

.about-text {
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.about-text .section-title h2 {
  font-size: 1.5rem;
  line-height: 2.2rem;
}

.about-text .review-card {
  background-color: white;
  border: 2px solid #dddddd;
  padding: 40px;
  border-radius: 24px;
}

.about-text .review-card p {
  font-size: 20px;
  line-height: 30px;
  color: var(--BlueTextColor);
  margin: 0 0 24px;
}

.about-text .review-card .card-content {
  display: flex;
  align-items: center;
}

.about-text .review-card .card-content img {
  margin-right: 12px;
}

.about-text .review-card .card-content h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  font-family: var(--poppins);
  margin: 0 0;
}

.about-text .review-card .card-content h4 {
  font-size: 14px;
  line-height: 22px;
  margin: 0;
  color: var(--BlueTextColor);
  font-weight: 400;
}

.about-text .left-text {
  width: 100%;
  padding: 0 0 50px;
}

.about-text .right-image {
  width: 100%;
}

.about-text .right-image h3 {
  font-weight: 400;
  font-family: var(--poppins);
}

.about-text .right-image .image-block {
  line-height: 0px;
  position: relative;
}

.about-text .right-image .image-block .eb {
  position: absolute;
  max-width: 100%;
  left: 0px;
  right: 0;
  z-index: 0;
  top: 20px;
  margin: 0 auto;
  opacity: 0.4;
}

.about-text .right-image .image-block img {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 auto;
}

.about-text .continue-slider {
  margin: 25px 0 0;
}

.about-text .continue-slider .slide-left {
  margin: 0 0 30px;
}

.about-text .continue-slider .list {
  margin: 0 0 0 20px;
  position: relative;
  padding-right: 98px;
}

.about-text .continue-slider .list::before {
  content: "*";
  font-size: 90px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 16px;
  top: 18px;
  -webkit-text-stroke: 1.5px black;
  -webkit-text-fill-color: transparent;
  font-family: var(--poppins);
  font-weight: 800;
}

.about-text .continue-slider .slide-right .list {
  direction: initial;
}

.about-text .continue-slider .numbers {
  font-size: 50px;
  line-height: 60px;
  font-weight: 600;
  font-family: var(--poppins);
}

.about-text .continue-slider .numbers span {
  color: var(--BlueTextColor);
}

.about-text .continue-slider .text {
  font-size: 20px;
  max-width: 285px;
  line-height: 26px;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.site-map-section {
  margin-top: 66px;
  padding: 50px 0;
}

.site-map-section .inner {
  max-width: 1060px;
  margin: 0 auto;
}

.site-map-section .inner .menu-title {
  font-weight: 500;
  padding-bottom: 12px;
  border-bottom: 1px solid rgb(10 2 64 / 20%);
}

.site-map-section .inner .submenu-title {
  position: relative;
  padding: 0 0 0 40px;
  color: var(--quaternary_color);
  margin: 0 0 25px;
}

.site-map-section .inner .submenu-title::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: url(../../../../wp-content/uploads/2023/08/circle-arrow-blue.svg)
    no-repeat center / contain;
  left: 0;
  top: 0;
}

.site-map-section .inner .submenu-title:empty::before {
  display: none;
}

.site-map-section .inner .menu-wrapper:not(:last-child) {
  margin: 0 0 30px;
}

.site-map-section .inner .list-wrapper .list {
  width: 100%;
  margin: 0 0 20px 0;
}

.review .review-content {
  margin-top: 35px;
  position: relative;
  padding: 30px 0 35px;
  display: inline-block;
  width: 100%;
}

.gallary-section + .review .review-content {
  margin-top: 0px;
}

.tech-strip + .review .review-content {
  margin-top: 0px;
}

.review .review-content::before {
  position: absolute;
  content: "";
  margin: 0 auto;
  top: 0;
  inset: 0;
  max-width: 1630px;
  max-height: calc(100% - 318px);
  /* max-width: calc(1630px + 150px); */
  border-radius: 28px;
  /* background-color: #fef8eb; */
  background-color: var(--new-theme-gray-50);
  z-index: -1;
}

.review .review-content h2 {
  margin-top: 0;
  font-size: 50px;
  line-height: 1.25;
  /* font-size: 60px;
  line-height: 75px; */
  font-family: var(--poppins);
  margin-bottom: 40px;
}

.review .review-content .content-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.review .review-content .content-btns a {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 33px;
  color: var(--BlueTextColor);
  margin-right: 40px;
  font-weight: 600;
}

.review .review-content .content-btns a:hover {
  opacity: 0.5;
}

.review .review-content .content-btns a svg {
  margin-right: 8px;
  display: block;
  margin-bottom: 3px;
}

.testimonials__item .testimonials-content svg path {
  /* fill: var(--PrimaryGreen); */
  fill: var(--newOragne);
}

.testimonials__item {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  background-color: var(--white);
  box-shadow: 0px 4px 30px 0px #0000000a;
  border-radius: 28px;
  transition: var(--transition3);
  overflow: hidden;
  border: 1px solid var(--LightGrey);
}

/* .testimonials__item:hover {
  transform: scale(1.08);
} */

.testimonials__item .testimonials-media {
  width: 100%;
  position: relative;
  max-height: 430px;
  overflow: hidden;
  border-radius: 28px;
}

.testimonials-media .overlay {
  position: absolute;
  inset: 0;
  background-color: var(--BlueTextColor) 0.5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px 0 0 28px;
  overflow: hidden;
  z-index: 0;
}

.testimonials-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease 0s;
  will-change: transform;
  transform: scale(1.1);
}

/* .testimonials__item:hover .testimonials-media img {
  transform: scale(1);
} */

.testimonials-media .overlay .play-btn {
  display: block;
  width: 60px;
  height: 60px;
  background-color: var(--PrimaryGreen);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.testimonials-media .overlay::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: var(--BlueTextColor);
  opacity: 0.4;
  z-index: -1;
}

.testimonials__item .testimonials-media .play-btn {
  display: block;
  width: 60px;
  height: 60px;
  background-color: var(--PrimaryGreen);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* transition: var(--transition3); */
  transform-origin: center center;
  transition: transform 0.3s ease 0s;
  will-change: transform;
}

.testimonials__item .testimonials-media .play-btn svg {
  display: block;
  margin-left: 4px;
}

.testimonials__item .testimonials-media .play-btn:hover {
  background-color: var(--white);
}

.testimonials__item .testimonials-media .play-btn:hover svg [stroke] {
  stroke: var(--PrimaryGreen);
}

.testimonials__item .testimonials-content {
  width: 100%;
  padding: 25px 25px 35px;
  text-align: left;
  transform: scale(1);
  transition: transform 0.3s ease 0s;
  transform-origin: left center;
  will-change: transform;
}

/* .testimonials__item:hover .testimonials-content {
  transform: scale(0.98);
} */

.testimonials__item .testimonials-content svg {
  width: 50px;
  display: block;
  margin-bottom: 20px;
}

.testimonials__item .testimonials-content h3 {
  margin-top: 0;
  margin-bottom: 17px;
  font-family: var(--poppins);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.testimonials__item .testimonials-content > p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.testimonials__item .testimonials-content .author p {
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 4px;
}

.testimonials__item .testimonials-content .author span {
  font-size: 16px;
  display: block;
}

.testimonials__item .testimonials-content .author {
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--BlueTextColor);
  margin-bottom: 30px;
}

.review .inner {
  max-width: 1330px;
  margin: 0 auto;
}

.review .title-part {
  width: 100%;
  max-width: 650px;
  padding: 0 0 20px;
  margin: 0;
}

.review .rating .top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 36px;
  line-height: 40px;
}

.review .rating .top .rating-star {
  margin-left: 38px;
  font-weight: 400;
  margin: 10px 0 0;
  width: 100%;
}

.review .rating .bottom-text {
  font-size: 16px;
  line-height: 25px;
  margin: 20px 0 0;
  padding: 15px 0 0;
  border-top: 1px solid rgba(10, 2, 64, 0.2);
  font-weight: 500;
}

.review .rating .bottom-text ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.review .rating .bottom-text ul li {
  margin: 0;
  padding: 5px 20px;
  display: inline-block;
  position: relative;
}

.review .rating .bottom-text ul li:first-child {
  padding-left: 0;
}

.review .rating .bottom-text ul li:before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 16px;
  left: 0;
  background: #f20587;
  border-radius: 10px;
}

.review .rating .bottom-text ul li:first-child:before {
  display: none;
}

.review .slick-slider .slick-dots li button {
  border-color: var(--primary_color);
}

.review .slick-slider .slick-dots li.slick-active button {
  background: var(--primary_color);
}

.review.side-arrow .content p {
  max-width: 1000px;
  margin: 0 auto 20px;
}

.ready-to-expand {
  margin: 35px 0 0;
  background-color: var(--BlueTextColor);
}

.blog-posts + .ready-to-expand,
.client-numbers + .ready-to-expand {
  margin-top: 0px;
}

.ready-to-expand .container {
  width: 100%;
  padding: 0;
}

.ready-to-expand .content {
  background-color: var(--BlueTextColor);
  padding: 36px 16px;
  text-align: center;
  color: var(--white);
}

.ready-to-expand .content h2 {
  font-size: 60px;
  line-height: 1;
  margin-top: 0;
  font-family: var(--poppins);
}

.ready-to-expand .content p {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
}

.footer-form {
  padding: 50px 0;
}

.footer-form .inner {
  position: relative;
  border-radius: 11px;
  overflow: hidden;
  padding: 30px;
}

.footer-form .inner .hex-logo {
  position: absolute;
  left: 50%;
  bottom: -140px;
  opacity: 0.4;
  pointer-events: none;
  max-width: 370px;
  height: auto;
  transform: translateX(-50%);
}

.footer-form .left-text {
  width: 100%;
  position: relative;
}

.footer-form .left-text h2 br {
  display: none;
}

.footer-form .left-text ul,
.footer-form .left-text ul h3 {
  font-size: 17px;
  margin: 0;
  line-height: 30px;
}

.footer-form .left-text .ul-dots.white-dots ul li:after {
  top: 12px;
}

.footer-form .left-text .content {
  padding: 20px 0 0;
}

.footer-form .left-text .content ul {
  margin-top: 30px;
}

.footer-form .left-text .content ul li {
  margin-bottom: 10px;
}

.footer-form .form-dv {
  width: 100%;
  margin: 30px 0 0;
  position: relative;
  z-index: 2;
}

.footer-form.without-form .left-text {
  width: 100%;
  padding: 0;
  text-align: center;
}

.footer-form.without-form .form-dv {
  display: none;
}

.footer-form.without-form .left-text .content {
  font-size: 22px;
  line-height: 32px;
}

.footer-form.without-form .left-text .content ul {
  text-align: left;
  font-size: 18px;
  line-height: 32px;
}

.footer-form.without-form .left-text .content ul li:before {
  top: 5px;
}

.footer-form .awards {
  padding: 15px 0 0;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
}

.footer-form .awards .icon-dv {
  width: 155px;
  height: 125px;
  background: url(../sprite-icon/awards.png) no-repeat 0 0;
  background-position: -5px -19px;
}

.footer-form .awards > div {
  width: 20%;
  padding: 0 5px;
}

.footer-form .awards > div:nth-child(2) .icon-dv {
  background-position: -198px -19px;
}

.footer-form .awards > div:nth-child(3) .icon-dv {
  background-position: -395px -19px;
}

.footer-form .awards > div:nth-child(4) .icon-dv {
  background-position: -590px -19px;
}

footer.footer .social-share > a {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(../sprite-icon/footer_social.png) no-repeat 0 0;
  background-position: -18px -19px;
  filter: invert(1);
}

footer.footer .social-share > a:nth-child(2) {
  background-position: -69px -19px;
}

footer.footer .social-share > a:nth-child(3) {
  background-position: -120px -19px;
}

footer.footer .social-share > a:nth-child(4) {
  background-position: -171px -19px;
}

footer.footer .social-share > a:nth-child(5) {
  background-position: -223px -19px;
}

footer.footer .social-share > a:nth-child(6) {
  background-position: -273px -19px;
}

footer.footer .location .icon-dv {
  width: 30px;
  height: 19px;
  background: url(../sprite-icon/footer_social.png) no-repeat 0 0;
  background-position: -48px -41px;
  background-size: 216px auto;
}

footer.footer .location.usa .icon-dv {
  background-position: -13px -41px;
}

.testimonial-footer {
  margin-top: 35px;
  padding: 0 !important;
  background-color: var(--new-blue-200);
  background-image: url(https://www.esparkinfo.com/wp-content/uploads/2025/07/footer_bg-bar.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.testimonial-footer .bottom-strip {
  padding: 30px 0 !important;
}

.testimonial-footer ul {
  display: flex !important;
  justify-content: center;
  padding: 0;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.testimonial-footer ul li {
  margin-left: 24px;
}

.testimonial-footer ul.links li {
  margin-left: 0;
}

.testimonial-footer ul li:first-child {
  margin-left: 0px;
}

.testimonial-footer ul.links {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  /* display: block !important; */
  gap: 20px;
}

.testimonial-footer ul.links li:first-child {
  margin-left: 0px;
}

.testimonial-footer ul.links li a {
  color: #eeeeee;
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  text-decoration: none;
}

.testimonial-footer ul.links li a:hover {
  color: var(--white);
    text-decoration: underline;
    text-underline-offset: 8px;
}

.testimonial-footer .inner {
  flex-direction: column;
}

.testimonial-footer .inner img {
  max-width: 240px;
  margin-bottom: 30px;
}

/*protected-section css*/
.protected-section {
  padding: 180px 0 100px;
}

.protected-section.blur-ele {
  overflow-x: clip;
}

.protected-section.blur-ele:before {
  width: 1001px;
  height: 319px;
  right: 100px;
}

.protected-section.blur-ele:after {
  width: 616px;
  height: 400px;
  left: 50%;
  transform: translateX(-50%);
}

.protected-section .form-wrapper {
  max-width: 575px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.protected-section .icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(10, 2, 64, 0.1);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 21px;
}

.protected-section .icon-box img {
  width: 30px;
}

.protected-section h2 {
  margin-bottom: 35px;
}

.protected-section .form-wrapper .wpforms-form .wpforms-submit-container {
  margin-top: 24px;
}

.protected-section .form-wrapper .wpforms-form input {
  background: var(--white);
}

.about-us-page .banner-about {
  padding-bottom: 0 !important;
}

.about-us-page .banner-about .inner {
  flex-direction: column;
}

#current-openings {
  margin-top: 35px;
  margin-bottom: 35px;
  background-color: var(--BlueLight2);
}

.error-404-banner {
  text-align: center;
}

.error-404-banner h2 {
  margin-top: 30px;
}

.error-404-banner p {
  font-size: 22px;
}

.error-404-other-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 0 auto;
  gap: 20px 0;
  position: relative;
}

.error-404-other-links {
  padding-top: 60px;
  border-top: 1px dashed var(--BlueTextColor);
  max-width: 1230px;
  margin: 0 auto;
  margin-top: 70px;
}

.error-404-other-links ul a {
  color: var(--BlueTextColor);
  text-decoration: none;
}

.error-404-other-links ul li {
  position: relative;
  padding-left: 30px;
  padding-right: 20px;
}

.error-404-other-links ul a:hover {
  color: var(--PrimaryGreen);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.error-404-other-links ul li::before {
  background: url(../images/list-check.svg) no-repeat center / contain;
  width: 23px;
  height: 23px;
  position: absolute;
  content: "";
  width: 22px;
  height: 22px;
  left: 0;
  top: 1px;
  border-radius: 10px;
  filter: drop-shadow(0px 4px 3px #e8e8e8);
  /* border: 1px solid var(--BlueTextColor); */
  /* background-color: var(--BlueTextColor); */
}

.post-main:has(~ .blog-posts) {
  margin-bottom: 20px;
}

section.company-tabs + .blog-posts {
  margin-top: 0 !important;
}

.post-main ~ .blog-posts {
  padding-top: 50px;
  background-color: var(--OffWhite);
}

.post-main ~ .blog-posts.bg-white {
  background-color: var(--white);
}

.post-main:has(+ script ~ .services-all),
.post-main:has(+ .hiring-process),
.post-main:has(+ .services-all) {
  margin-bottom: 0 !important;
}

/* COMPANY KEYS */
.company-keys__hero-banner .company-keys__wrap {
  justify-content: flex-start;
  color: var(--BlueTextColor);
}

.company-keys__hero-banner .company-keys__item:not(:last-child)::before {
  background-color: var(--BlueTextColor);
}

.company-keys__hero-banner .company-keys__item span {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.company-keys__wrap {
  color: var(--white);
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 0 auto;
  gap: 30px 0;
  justify-content: center;
}

.company-keys__wrap .slick-dots {
  margin-left: auto;
  margin-right: auto;
}

.company-keys {
  margin-top: 50px;
  position: relative;
}

.company-keys::before {
  position: absolute;
  content: "";
  width: 100%;
  /* bottom: 0; */
  height: 1px;
  background-color: var(--white);
  opacity: 0.1;
  bottom: -35px;
}

.company-keys__hero-banner::before {
  opacity: 0;
}

.company-keys__item {
  position: relative;
  display: inline-block;
  text-align: left;
  width: fit-content;
}

.company-keys__item .inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.company-keys__item .icon-wrap {
  width: 50px;
  height: 50px;
  padding: 4px;
  display: inline-block;
}

.company-keys__item .icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.company-keys__item span {
  display: flex;
  padding-left: 12px;
  max-width: 100%;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  width: fit-content;
  display: inline-block;
}

.company-keys__item:not(:last-child) {
  margin-right: 20px;
  padding-right: 20px;
}

.company-keys__item:not(:last-child)::before {
  position: absolute;
  content: "";
  height: 100%;
  background-color: var(--white);
  width: 1px;
  opacity: 0.3;
  right: 0;
  top: 0;
  opacity: 0;
}

.portfolio-pagination {
  position: relative;
  z-index: 2;
  margin: 50px 0 0;
}

/* COMPANY KEYS END */

/* RESPONSIVE */

@media (min-width: 576px) {
  .testimonials__item .testimonials-content,
  .testimonials__item .testimonials-media {
    width: 50%;
  }

  .testimonials-media img,
  .testimonials__item .testimonials-media {
    border-radius: 28px 0 0 28px;
  }

  footer.footer-404 .inner .right-div .content div {
    width: 50%;
  }

  .footer.footer-404 .social-icons {
    justify-content: end;
  }

  .testimonial-footer ul.links {
    display: flex !important;
    gap: unset;
  }

  .testimonial-footer ul.links li {
    margin-left: 40px;
  }
}

@media (min-width: 768px) {
  /* footer.footer .footer-column:not(:last-child) .f-menu-title-wrap {
    margin-bottom: 25px;
  }
  footer.footer .footer-column:not(:last-child) .f-menu-title-wrap:before {
    display: none;
  }
  footer.footer .right-part .footer-column:not(:last-child) > ul {
    margin: 0;
  }
  footer.footer .right-part .footer-column ul {
    gap: unset;
  }
  footer.footer .right-part ul li + li {
    margin-top: 20px;
  }
  footer.footer .right-part .footer-column > ul {
    display: block !important;
  } */
  .company-keys__item .inner {
    flex-direction: row;
    gap: 0;
  }

  .company-keys {
    margin-top: 100px;
  }

  .company-keys__item {
    width: auto;
  }

  .company-keys__item span {
    max-width: 180px;
  }

  footer.site-footer {
    margin-top: 75px;
  }

  .captcha-wrap .wpforms-captcha-math {
    justify-content: flex-end;
    margin-top: 0;
  }

  .footer__desktop {
    display: block !important;
  }

  .contect-info p a span {
    width: 30px;
  }

  .contect-info p {
    font-size: 22px;
  }

  .f-menu-title-wrap .arrow-icon {
    display: none;
  }

  .post-main.no-blog-sec .container {
    max-width: unset;
    width: 750px;
  }

  .footer-form__title .left-side h2 {
    font-size: 36px;
    margin-bottom: 0;
  }

  .footer-form__title {
    margin-bottom: 70px;
  }

  .footer-form__card {
    padding: 50px 50px 30px;
    border-radius: 28px;
  }

  .footer-form__title .left-side {
    width: 46%;
  }

  .footer-form__title .right-side {
    width: 50%;
  }

  .footer-form-wrap .wpforms-field-layout-preset-50-50 {
    gap: 30px;
  }

  .footer-form-wrap .form-filed-upload .dz-message svg {
    display: block;
  }

  .contect-info {
    flex-direction: unset;
  }

  .footer-location-item {
    padding: 12px 34px;
  }

  a.footer-more-trigger {
    margin-bottom: 30px;
  }

  .footer-more-content-link-list {
    flex-direction: unset;
    /* gap: unset; */
  }

  .footer-more-content-link-list > div {
    width: 50%;
  }

  body .mt-0 {
    margin-top: 0;
  }

  body .mt-10 {
    margin-top: 10px;
  }

  body .mt-20 {
    margin-top: 20px;
  }

  body .mt-30 {
    margin-top: 30px;
  }

  body .mt-40 {
    margin-top: 40px;
  }

  body .mt-50 {
    margin-top: 50px;
  }

  body .mt-60 {
    margin-top: 60px;
  }

  body .mt-70 {
    margin-top: 70px;
  }

  body .mb-0 {
    margin-bottom: 0;
  }

  body .mb-10 {
    margin-bottom: 10px;
  }

  body .mb-20 {
    margin-bottom: 20px;
  }

  body .mb-30 {
    margin-bottom: 30px;
  }

  body .mb-40 {
    margin-bottom: 40px;
  }

  body .mb-50 {
    margin-bottom: 50px;
  }

  body .mb-60 {
    margin-bottom: 60px;
  }

  body .mb-70 {
    margin-bottom: 70px;
  }

  body .pt-0 {
    padding-top: 0;
  }

  body .pt-10 {
    padding-top: 10px;
  }

  body .pt-20 {
    padding-top: 20px;
  }

  body .pt-30 {
    padding-top: 30px;
  }

  body .pt-40 {
    padding-top: 40px;
  }

  body .pt-50 {
    padding-top: 50px;
  }

  body .pt-60 {
    padding-top: 60px;
  }

  body .pt-70 {
    padding-top: 70px;
  }

  body .pb-0 {
    padding-bottom: 0;
  }

  body .pb-10 {
    padding-bottom: 10px;
  }

  body .pb-20 {
    padding-bottom: 20px;
  }

  body .pb-30 {
    padding-bottom: 30px;
  }

  body .pb-40 {
    padding-bottom: 40px;
  }

  body .pb-50 {
    padding-bottom: 50px;
  }

  body .pb-60 {
    padding-bottom: 60px;
  }

  body .pb-70 {
    padding-bottom: 70px;
  }

  .title-part.text-center {
    text-align: center;
  }

  .ul-dots.ul-col-2 ul li {
    width: 50%;
  }

  .post-wrap .post-content blockquote {
    margin: 60px 0;
  }

  .ul-col-3 ul li {
    width: 50%;
  }

  .ul-no-dots ul li {
    padding: 0 15px 0 0;
  }

  .ul-arrow.ul-col-2 ul li {
    width: calc(50% - 15px);
  }

  .ul-dots.ul-col-3 ul li {
    width: 50%;
  }

  [class*="button-"] a {
    text-align: center;
    line-height: inherit;
  }

  [class*="button-"] a .icon-dv {
    right: 25px;
  }

  [class*="button-"].text-center a {
    text-align: center;
  }

  .title-part .full-caps span + span:before {
    margin: 8px 35px 0 25px;
  }

  [class*="button-"].full a {
    display: block;
    padding-right: 30px;
  }

  [class*="button-"].full a img {
    position: static;
    vertical-align: top;
    display: inline-block;
    margin: 15px 0 -14px 12px;
  }

  [class*="button-"].max a {
    padding-right: 30px;
  }

  [class*="button-"].max a img,
  [class*="button-"].max a .icon-dv {
    position: static;
    vertical-align: middle;
    display: inline-block;
    margin: -15px 0 -14px 12px;
    transform: none;
  }

  .default-form .wpforms-form em.wpforms-error {
    padding: 5px 0 0 220px;
  }

  .side-label.default-form .wpforms-field > label {
    width: 220px;
    margin: 0;
  }

  .side-label.default-form .wpforms-field > .iti--allow-dropdown,
  .side-label.default-form .wpforms-field > textarea,
  .side-label.default-form .wpforms-field > select,
  .side-label.default-form
    .wpforms-field
    > input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not(
      [type="button"]
    ):not([type="image"]):not([type="file"]) {
    width: calc(100% - 220px);
  }

  .default-form .wpforms-form label {
    font-size: 19px;
  }

  .default-form
    .wpforms-form
    input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not(
      [type="button"]
    ):not([type="image"]):not([type="file"]) {
    font-size: 17px;
    padding: 16px 24px;
  }

  .default-form .wpforms-form select {
    padding: 16px 43px 16px 24px;
    background-position: center right 20px;
  }

  .default-form button[type="submit"] {
    font-size: 17px;
    padding: 21px 30px;
  }

  .side-label.default-form .wpforms-submit-container {
    text-align: right;
  }

  .awards > div {
    padding: 0;
  }

  .about-text .continue-slider .text {
    font-size: 30px;
    line-height: 36px;
    max-width: 375px;
  }

  .about-text .continue-slider .text {
    margin: 0 0 0 22px;
  }

  .about-text .continue-slider .list {
    padding-right: 100px;
  }

  .about-text .continue-slider .list::before {
    top: 14px;
    font-size: 78px;
    right: 16px;
  }

  .about-text .continue-slider .slide-left {
    margin: 0 0 35px;
  }

  .blog-posts .list-wrapper {
    margin: 68px -16px 0;
  }

  .blog-posts.read-more-sec .list-wrapper {
    margin: 50px -16px 0;
  }

  .blog-posts .list-wrapper .list {
    width: calc(100% / 2);
    padding: 0 16px;
  }

  .our-agile-methodology {
    padding: 50px 0;
  }

  /* footer.footer {
    padding: 60px 0 0;
  }

  footer.footer .right-part .footer-column {
    width: calc(50% - 10px);
  }

  footer.footer .first-column .content {
    padding: 20px 0 35px 0;
  } */

  .footer-form .awards {
    margin: 0 -51px;
  }

  .site-map-section {
    margin-top: 83px;
  }

  .site-map-section .inner .submenu-title:empty {
    min-height: 31px;
  }

  .site-map-section .inner .list-wrapper .list {
    width: 50%;
    padding: 0 15px 0 0;
  }

  .review .inner {
    display: block;
  }

  .banner-career .video-wrapper {
    margin: 20px -15px;
  }

  .banner-career .video-wrapper .video-item {
    width: calc(50% - 30px);
    margin: 15px;
  }

  .banner-career .video-wrapper .video-item + .video-item {
    margin: 15px;
  }

  .footer-form .inner {
    flex-wrap: wrap;
    padding: 50px;
  }

  .footer-form .awards {
    flex-wrap: initial;
    margin: 0 -20px;
  }

  .footer-form .awards > div {
    width: 20%;
    padding: 0 15px;
  }

  .footer-form .left-text ul,
  .footer-form .left-text ul h3 {
    font-size: 19px;
    line-height: 34px;
  }

  .footer-form .left-text .ul-dots.white-dots ul li:after {
    top: 14px;
  }

  .blog-posts .list > .image {
    height: 185px;
  }

  .slick-slider .slick-dots li {
    display: inline-block;
    margin: 0 8px;
  }

  .slick-slider .slick-dots li button::before {
    padding: 4px;
  }

  .blog-posts .list-wrapper .list {
    margin-bottom: 0;
  }

  footer.footer-404 .inner .right-div .content div {
    width: 50%;
  }

  .title-part .content.max {
    font-size: 24px;
  }

  .btn a {
    /* font-size: 1.12rem; */
    /* min-height: 50px; */
  }

  .review .review-content {
    margin-top: 50px;
    padding: 50px 0;
    max-width: calc(100% - 32px);
    margin-left: auto;
    margin-right: auto;
  }

  .review .review-content .section-title p {
    /* font-size: 20px; */
    /* line-height: 1.5; */
    font-size: 18px;
    line-height: 1.8;
  }

  .blog-posts .list .white-card .categoryWrap {
    margin-bottom: 25px;
  }

  /* .blog-posts .list .white-card h3 {
    font-size: 20px;
  } */

  .ready-to-expand .content p {
    font-size: 20px;
  }

  footer.footer .first-column .content p {
    font-size: 17px;
    line-height: 27px;
  }

  footer.footer .first-column .num-email a {
    font-size: 18px;
    line-height: 27px;
  }

  .review .review-content .content-btns {
    margin-bottom: 70px;
  }

  .testimonials__item .testimonials-content svg {
    width: 66px;
  }

  .testimonials__item .testimonials-content {
    padding: 30px 20px 20px 30px;
  }

  .blog-posts .list .white-card .categoryWrap a {
    font-size: 14px;
  }

  .ready-to-expand {
    margin: 75px 0 0;
  }

  .banner-career {
    padding: 84px 0 70px;
  }
  .banner-career .breadcrumb {
    /* padding: 200px 0 70px; */
    margin-bottom: 40px;
  }

  #current-openings {
    margin-top: 75px;
    margin-bottom: 75px;
  }

  .about-text .section-title {
    margin: 0 auto 40px;
  }

  .about-text .section-title h2 {
    font-size: 2.5rem;
    line-height: 3.4rem;
  }

  .testimonials__item .testimonials-content > p {
    font-size: 20px;
  }

  .testimonials__item .testimonials-content .author p {
    font-size: 24px;
  }

  .testimonials__item .testimonials-content .author span {
    font-size: 16px;
  }

  .gallary-section + .review .review-content {
    margin-top: 0px;
  }

  .content-image-section + .blog-posts.has-gradient {
    padding: 0px 0 75px 0px;
    margin-bottom: 0px;
  }

  .our-agile-methodology .our-agile-methodology-inner {
    padding: 50px 24px;
  }

  .testimonial-footer {
    margin-top: 75px;
  }

  .post-main ~ .blog-posts {
    padding-top: 70px;
  }

  .footer-form-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-form-list::before {
    opacity: 0;
  }

  footer.site-footer::before {
    height: 15%;
  }

  .footer-location-item {
    max-width: 366px;
  }
}

@media (min-width: 992px) {
  .post-main.no-blog-sec .container {
    max-width: unset;
    width: 970px;
  }

  .for-desktop {
    display: flex;
  }

  .for-mobile {
    display: none;
  }

  .ul-col-3 ul li {
    width: 33.33%;
  }

  .title-part .content {
    font-size: 20px;
    line-height: 32px;
  }

  .ul-dots.ul-col-3 ul li {
    width: 33.33%;
  }

  .ul-check-arrow.two-col-ul ul {
    display: flex;
    flex-flow: row wrap;
  }

  .ul-check-arrow.two-col-ul ul li {
    width: 50%;
  }

  .about-text {
    padding: 50px 0 0;
  }

  .about-text h2 {
    text-align: left;
  }

  .about-text .left-text {
    width: 40%;
    padding: 0 50px 0 0;
  }

  .about-text .right-image {
    width: 60%;
  }

  .blog-posts {
    padding: 75px 0 118px;
  }

  .client-numbers + .blog-posts {
    padding: 0px 0px 75px 0px;
  }

  .chooseUs-section + .blog-posts {
    /* padding: 0px 0px 100px 0px; */
    padding: 75px 0px 75px 0px;
  }

  .blog-posts.has-gradient {
    padding: 50px 0;
    margin-bottom: 50px;
  }

  .blog-posts.read-more-sec {
    padding: 75px 0px 0px 0px;
    margin-bottom: -24px;
  }

  .post-main ~ .blog-posts.read-more-sec {
    padding: 75px 0px 100px 0px;
  }

  .blog-posts .list > .image {
    height: 245px;
  }

  .blog-posts .list .white-card {
    padding: 30px;
  }

  .accordion .inner-div {
    border-radius: 23px;
    padding: 40px 55px 40px 125px;
  }

  .accordion .list:before {
    counter-increment: section;
    content: "0" counter(section);
    border-radius: 43px;
    border: 2px solid var(--white);
    width: 64px;
    height: 43px;
    position: absolute;
    left: -95px;
    top: 3px;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .accordion .accordion-wrapper {
    padding: 80px 0 0;
  }

  .accordion .accordion-list .click-ttl {
    padding: 20px 110px 20px 87px;
    min-height: 150px;
  }

  .accordion .accordion-list .click-ttl:before {
    right: 50px;
  }

  .accordion .accordion-list .click-ttl:after {
    right: 50px;
  }

  .accordion .accordion-list .click-ttl img.icon {
    left: 13px;
    max-width: unset;
  }

  .accordion .accordion-list.parentActive:after {
    opacity: 0.1;
  }

  .accordion .accordion-list .content {
    padding: 59px 100px 60px;
    display: none;
  }

  .accordion .list-wrapper .list + .list {
    margin: 130px 0 0;
  }

  footer.footer .first-column {
    /* width: 380px; */
    width: 420px;
  }

  footer.footer .right-part {
    /* width: calc(100% - 380px); */
    width: calc(100% - 420px);
    padding-left: 50px;
    padding-top: 10px;
    column-gap: 20px;
  }

  .social-share {
    padding: 50px 40px 0;
    justify-content: space-between;
  }

  .social-share a:not(:last-child) {
    margin: 0;
  }

  footer.footer .bottom-strip {
    display: flex;
    align-items: center;
    margin-top: 90px;
  }

  footer.footer-404 .bottom-strip {
    margin-top: 0;
  }

  .social-share {
    padding: 5px 0 30px 40px;
    justify-content: space-between;
    max-width: 380px;
    margin: 0 0 0 auto;
  }

  .social-share a:not(:last-child) {
    margin: 0;
  }

  .site-map-section {
    padding: 70px 0;
  }

  .site-map-section .inner .list-wrapper .list {
    width: 33.33%;
  }

  .site-map-section .inner .menu-wrapper:not(:last-child) {
    margin: 0 0 45px;
  }

  /* .review {
        padding: 70px 30px;
    } */

  .review .inner {
    display: flex;
  }

  .review .title-part {
    max-width: 56%;
    padding-right: 15px;
  }

  .review .rating {
    margin: 0 0 20px;
  }

  .review .rating .top .rating-star {
    margin-left: 38px;
    width: auto;
    margin-top: 0;
  }

  .banner-career .qube {
    display: inline-block;
  }

  .banner-career .qube.qube1 {
    left: 0;
    bottom: -30px;
    max-width: 60px;
  }

  .banner-career .qube.qube2 {
    right: 0;
    bottom: -30px;
    max-width: 60px;
  }

  .banner-career .qube.qube3 {
    position: static;
    margin-bottom: 30px;
  }

  .banner-career .video-wrapper {
    margin: 40px -15px;
  }

  .our-agile-methodology .our-agile-methodology-inner {
    border-radius: 28px;
  }

  .our-agile-methodology .our-agile-methodology-inner .image-block {
    margin: 60px auto 0;
    max-width: 1200px;
  }

  .testimonial-footer ul {
    justify-content: end;
  }

  .footer-form {
    padding: 70px 0;
  }

  .footer-form .awards {
    padding: 30px 0 0;
  }

  .footer-form .left-text {
    position: relative;
    z-index: 2;
  }

  .footer-form.without-form .left-text .content {
    font-size: 28px;
    line-height: 38px;
  }

  .footer-form.without-form .left-text .content ul li::before {
    top: 8px;
  }

  .post-main .post-wrap .email-subscribe .inner-box {
    padding: 40px;
  }

  .footer-form .inner .hex-logo {
    max-width: 560px;
    transform: none;
    left: 50px;
    bottom: -300px;
  }

  .protected-section {
    padding: 230px 0 150px;
  }

  .protected-section .icon-box {
    width: 120px;
    height: 120px;
  }

  .protected-section .icon-box img {
    width: 48px;
  }

  .protected-section h2 {
    margin-bottom: 48px;
  }

  .error-404-banner {
    text-align: left;
  }

  .error-404-banner h2 {
    margin-top: 0;
  }

  .testimonial-footer .inner {
    flex-direction: row;
    align-items: center;
  }

  .testimonial-footer .inner img {
    margin-bottom: 0;
  }

  .about-text .section-title h2 {
    font-size: 30px;
    line-height: 42px;
  }

  .about-text .continue-slider {
    margin: 30px 0 0;
  }

  .about-text .continue-slider .numbers {
    font-size: 60px;
    line-height: 74px;
  }

  .join-team-section + .ready-to-expand {
    margin: 25px 0 0;
  }

  .post-main:has(~ .blog-posts) {
    margin-bottom: 75px;
  }

  .esb-banner-secondary-company-logo .esb-banner-secondary-companySlider {
    display: flex;
    gap: 20px 45px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* 
@media (min-width: 786px) {
} */
@media (min-width: 1200px) {
  .company-keys__wrap {
    max-width: unset;
    gap: 0;
    margin: unset;
  }

  .company-keys__item .icon-wrap {
    width: 40px;
    height: 40px;
  }

  .company-keys__hero-banner .company-keys__item span {
    font-size: 16px;
    max-width: 157px;
  }

  .company-keys__item span {
    max-width: 180px;
  }

  .company-keys__item:not(:last-child) {
    margin-right: 18px;
    padding-right: 18px;
  }

  .company-keys__item:not(:last-child)::before {
    opacity: 0.4;
  }

  .company-keys__hero-banner .company-keys__item:not(:last-child)::before {
    opacity: 0.2;
  }

  .company-keys__item {
    width: auto;
  }

  .contect-info p {
    font-size: 32px;
  }

  .footer-social-wrap {
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: 0;
  }

  .footer-form__title .left-side h2 {
    font-size: 42px;
  }

  .footer-bottom-stripe .inner ul {
    justify-content: flex-end;
    margin: 0;
  }

  .footer-form__card {
    padding: 70px 80px 50px;
  }

  footer.site-footer::before {
    clip-path: polygon(0 0%, 100% 0%, 100% 79%, 0% 100%);
    height: 36%;
    max-height: 650px;
  }

  .footer-bottom-stripe .inner {
    flex-direction: unset;
    gap: 0;
  }

  .post-main.no-blog-sec .container {
    max-width: unset;
    width: 1170px;
  }

  .about-text .left-text {
    width: 50%;
  }

  .about-text .right-image {
    width: 50%;
  }

  .about-text .continue-slider {
    margin: 70px 0 0;
  }

  .about-text .continue-slider .slide-left {
    margin: 0 0 40px;
  }

  .footer-more-content-link-list {
    gap: unset;
    margin: unset;
  }

  .footer-more-content-link-list > div {
    width: auto;
    padding: 0;
  }

  .wpforms-field-layout-preset-50-50:has(.captcha-wrap) > div:first-child {
    width: calc(100% - 180px) !important;
  }

  .wpforms-field-layout-preset-50-50:has(.captcha-wrap) > div:last-child {
    width: 180px !important;
  }

  .blog-posts .list-wrapper .list {
    width: calc(100% / 3);
  }
  .esb-two-col-list .list-wrapper {
    justify-content: start;
  }
  .esb-two-col-list .section-title {
    text-align: left;
  }

  .esb-two-col-list .section-title h2 {
    margin-left: 0;
  }
  .esb-two-col-list .list-wrapper .list {
    width: calc(100% / 2);
  }
  .sec-esb-expert-insights + .blog-posts.esb-two-col-list {
    padding-top: 0;
  }
  .ul-arrow ul li {
    padding: 0 0 0 30px;
  }

  .ul-arrow ul li::before {
    width: 19px;
    height: 19px;
  }

  .blog-posts .list > .image {
    height: 200px;
  }

  .accordion .top-part .title-part {
    width: calc(100% - 155px);
    padding: 0 70px 0 0;
  }

  .accordion .accordion-list {
    padding: 0 20px;
  }

  .accordion .top-part .image {
    display: block;
  }

  footer.footer .right-part {
    column-gap: 10px;
  }

  footer.footer .right-part .footer-column {
    width: auto;
  }

  .site-map-section {
    margin-top: 105px;
  }

  .review .title-part {
    max-width: 650px;
  }

  .review .rating {
    margin-right: 50px;
    margin-bottom: 25px;
  }

  .footer-form .left-text {
    width: calc(100% - 580px);
  }

  .footer-form .form-dv {
    width: 540px;
    margin: 0 0 0 40px;
  }

  .footer-form .left-text .content ul li {
    margin-bottom: 15px;
    width: 100%;
  }

  .footer-form.without-form .left-text .content ul {
    font-size: 22px;
    line-height: 30px;
  }

  .footer-form.without-form .left-text .content ul li {
    width: 33.33%;
  }

  .about-text .right-image h3 {
    font-size: 24px;
    line-height: 1.45;
    margin-top: 70px;
  }

  footer.footer-404 .inner .left-div,
  footer.footer-404 .inner .right-div {
    width: 50%;
  }

  footer.footer-404 .inner .right-div {
    border-left: 1px solid #eeeeee6e;
    padding-left: 70px;
    margin-top: 0;
  }

  .about-us-page .banner-about .inner {
    flex-direction: row;
  }

  .about-text .continue-slider .numbers {
    font-size: 90px;
    line-height: 110px;
  }

  .about-text {
    padding: 70px 0 0;
  }

  .about-text .section-title h2 {
    font-size: 2.5rem;
    line-height: 3.4rem;
  }

  .about-text .continue-slider .text {
    margin: 0 0 0 40px;
  }

  .about-text .continue-slider .list::before {
    top: 23px;
    font-size: 90px;
    right: 30px;
  }

  .about-text .continue-slider .list {
    padding-right: 115px;
  }

  .gallary-section + .review .review-content {
    margin-top: 30px;
  }

  .content-image-section + .blog-posts.has-gradient {
    padding: 30px 0 75px 0px;
    margin-bottom: 25px;
  }

  .ready-to-expand .content h2 {
    font-size: 50px;
  }

  .join-team-section + .ready-to-expand {
    margin: 25px 0 0;
  }

  .banner-career {
    padding: 91px 0 50px;
  }
  .banner-career .breadcrumb {
    /* padding: 165px 0 70px; */
    margin-bottom: 40px;
  }

  #current-openings {
    margin-top: 50px;
  }

  .footer-form-wrap {
    margin: unset;
  }

  .footer-form-list {
    width: 45%;
    display: flex;
  }

  .footer-form-list::before {
    opacity: 0.3;
  }

  .footer-form-wrap {
    margin: 0 auto;
  }

  footer.site-footer::before {
    height: 95%;
  }

  .footer-location-item {
    max-width: 376px;
  }
}

@media (min-width: 1430px) {
  .company-keys__item .icon-wrap {
    width: 50px;
    height: 50px;
    padding: 5px;
  }

  .company-keys__hero-banner .company-keys__item span {
    font-size: 18px;
    max-width: 180px;
  }

  [class*="button-"].max a {
    min-width: 512px;
  }

  .slick-slider .slick-arrow {
    width: 40px;
    height: 40px;
    /* background-size: unset; */
  }

  .company-keys__item span {
    font-size: 20px;
    max-width: 190px;
  }

  .company-keys__item:not(:last-child) {
    margin-right: 20px;
    padding-right: 20px;
  }

  .post-main.no-blog-sec .container {
    max-width: unset;
    width: 1400px;
  }

  .review .review-content {
    padding: 70px 0 75px;
  }

  .testimonials__item .testimonials-content {
    padding: 50px 40px 20px 50px;
  }

  .blog-posts.has-gradient {
    padding: 75px 0;
    margin-bottom: 75px;
  }

  .blog-posts.first-dv {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .post-wrap .post-content p + p:has(img) {
    margin-top: inherit;
  }

  .post-wrap .post-content blockquote {
    margin: 70px 0;
  }

  .content-image-section + .blog-posts.has-gradient {
    padding: 150px 0 75px 0px;
    margin-bottom: 75px;
  }
  .esb-content-area-module__editor-text blockquote,
  .post-wrap .post-content blockquote {
    padding: 40px;
  }

  .side-arrow .slick-slider .slick-arrow {
    width: 40px;
    height: 40px;
    /* background-size: auto; */
  }

  .about-text {
    padding: 100px 0 10px;
  }

  .about-text .title-part h2 {
    font-size: 60px;
    line-height: 75px;
    margin-bottom: 105px;
  }

  .about-text h2 {
    font-size: 60px;
    line-height: 75px;
  }

  .about-text .right-image h3 {
    font-size: 30px;
    line-height: 1.45;
  }

  .about-text .left-text {
    width: calc(100% - 760px);
    padding-right: 50px;
    font-size: 20px;
  }

  .about-text .right-image {
    width: 760px;
  }

  .about-text .right-image .image-block .eb {
    max-width: 617px;
    left: 40px;
  }

  .our-agile-methodology {
    padding: 75px 0;
  }

  .our-agile-methodology .our-agile-methodology-inner {
    padding: 100px 50px;
  }

  .ready-to-expand .content {
    padding: 48px 50px;
  }

  .accordion .accordion-wrapper {
    padding: 100px 0 0;
  }

  .about-text .continue-slider {
    margin: 150px 0 0;
  }

  .blog-posts .list > .image {
    height: 240px;
  }

  .accordion .inner-div {
    border-radius: 56px;
    padding: 90px 135px 90px 275px;
  }

  .accordion .list:before {
    left: -140px;
  }

  .accordion .top-part .title-part {
    padding: 0 140px 0 0;
  }

  .accordion .top-part .title-part .content {
    padding: 28px 0 0;
  }

  .site-map-section {
    margin-top: 125px;
    padding: 60px 0 148px;
  }

  .banner-career .qube.qube3 {
    margin-bottom: 60px;
  }

  .banner-career .qube.qube1,
  .banner-career .qube.qube2 {
    max-width: 90px;
  }

  .footer-form {
    padding: 80px 0;
  }

  .footer-form .inner {
    padding: 100px 135px;
  }

  .footer-form .inner .hex-logo {
    max-width: none;
    left: 130px;
    bottom: -450px;
  }

  .footer-form .left-text {
    width: calc(100% - 540px);
    padding: 0 50px 0 0;
  }

  .footer-form .left-text .content ul {
    margin-top: 50px;
  }

  .footer-form .left-text .content ul li {
    margin-bottom: 25px;
    width: 50%;
  }

  .footer-form .form-dv {
    margin: 0;
  }

  .footer-form .awards {
    padding: 66px 0 0;
  }

  .footer-form .left-text h2 br {
    display: inline;
  }

  .protected-section {
    padding: 400px 0 270px;
  }

  .review .review-content {
    margin-top: 75px;
  }

  .ready-to-expand .content h2 {
    font-size: 60px;
  }

  .join-team-section + .ready-to-expand {
    margin: 75px 0 0;
  }

  .banner-career {
    padding: 91px 0 75px;
    margin-bottom: 50px;
  }
  .banner-career .breadcrumb {
    /* padding: 200px 0 100px; */
    margin-bottom: 60px;
  }

  #current-openings {
    margin-top: 75px;
    margin-bottom: 75px;
  }

  .post-main:has(~ .blog-posts) {
    margin-bottom: 150px;
  }

  .post-main ~ .blog-posts {
    padding-top: 100px;
  }

  .portfolio-pagination {
    margin: 50px 0 0;
  }
  .esb-banner-secondary-company-logo .esb-banner-secondary-companySlider {
    justify-content: space-between !important;
    gap: 10px 15px !important;
  }
  .esb-two-col-list .list-wrapper .list {
    width: calc(100% / 2);
  }
}

@media (min-width: 1660px) {
  .company-keys__item:not(:last-child) {
    margin-right: 25px;
    padding-right: 25px;
  }

  .company-keys__item .icon-wrap {
    width: 70px;
    height: 70px;
    padding: 10px;
  }

  .company-keys__hero-banner .company-keys__item span {
    font-size: 20px;
    max-width: 210px;
  }

  .company-keys__item span {
    font-size: 20px;
    max-width: 210px;
    padding-left: 20px;
  }

  footer.footer .right-part {
    padding-left: 170px;
  }

  .post-main.no-blog-sec .container {
    max-width: unset;
    width: 1630px;
  }

  .banner-career .qube.qube1 {
    left: -180px;
    bottom: 20px;
  }

  .banner-career .qube.qube2 {
    right: -185px;
    top: 110px;
    bottom: auto;
  }

  .esb-two-col-list .list-wrapper .list {
    width: calc(100% / 2.3);
  }

  .banner-career .qube.qube1,
  .banner-career .qube.qube2 {
    max-width: unset;
  }

  .agile-methodology-banner {
    /* padding: 200px 0 75px; */
  }

  .agile-methodology-banner .inner-banner .digits {
    margin-top: 115px;
  }

  .footer-form .left-text {
    padding: 0 100px 0 0;
  }

  .blog-posts .list > .image {
    height: 280px;
  }
}

@media (max-width: 1199px) {
  .ready-to-expand .content h2,
  .review .review-content h2 {
    font-size: 40px;
    line-height: 58px;
  }

  .about-us-page .banner-about .image-left {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .about-us-page .banner-about .right-text {
    width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 991px) {
  .social-share {
    padding: 20px 0 0;
  }

  footer.footer .right-part .social-wrapp {
    margin-bottom: 30px;
  }

  .review .review-content h2 {
    font-size: 36px;
    line-height: 45px;
  }

  .review .review-content::before {
    max-width: 100%;
  }

  .about-text .left-text {
    text-align: center;
  }

  .testimonial-footer .bottom-strip .inner {
    align-items: center;
  }

  .about-text .left-text {
    padding: 0 0 15px;
  }

  .slick-slider .slick-dots li button::before {
    padding: 5px;
  }
}

@media (max-width: 767px) {
  .slick-slider .slick-dots li button {
    width: 8px;
    height: 8px;
  }
  .slick-slider .slick-dots li {
    margin: 0 5px;
  }
  .slick-slider .slick-dots li button::before {
    /* outline-offset: 2px; */
    /* border: none; */
    /* outline: 1px solid var(--BluePrimary); */
  }
  .side-arrow .slick-slider .slick-arrow {
    display: none !important;
  }

  .ready-to-expand .content h2,
  .review .review-content h2 {
    font-size: 34px;
    line-height: 1.3;
  }

  .ready-to-expand .content p {
    text-wrap: balance;
  }

  .review .review-content h2 {
    font-size: 28px;
    line-height: 35px;
    margin-bottom: 20px;
  }

  .or-click a {
    font-size: 16px;
  }

  .content-image-section + .blog-posts.has-gradient {
    padding: 0px 0px 20px 0px;
  }

  .blog-posts.has-gradient + .ready-to-expand {
    margin-top: 30px;
  }
  .blog-posts .list-wrapper.blog-list-mob-slider .list {
    margin: 10px;
  }
  .blog-posts .list > .image {
    height: 25vw;
  }
}

@media (max-width: 575px) {
  .about-text .continue-slider .numbers {
    font-size: 38px;
    line-height: 53px;
  }

  .about-text .continue-slider .text {
    font-size: 18px;
    line-height: 24px;
  }

  .about-text .continue-slider .list {
    padding-right: 74px;
  }

  .about-text .continue-slider .list::before {
    font-size: 78px;
    right: 6px;
    top: 17px;
  }

  footer.footer ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  footer.footer ul > li:first-child {
    /* grid-column: 1 / span 2; */
  }

  footer.footer .right-part .footer-column a {
    font-size: 15px;
  }

  .blog-posts .list > .image {
    height: 50vw;
  }
  .post-main .post-content .faq-content ul li::before {
    left: 5px;
  }
  .blog-faq .faq-top .inner-dv {
    padding: 20px;
  }

  .blog-faq h2.text {
    font-size: 23px !important;
  }

  /* footer.footer .right-part .footer-column:nth-child(4) li {
    grid-column: 1 / span 2;
  } */


  .btn a, .btn .a {
    white-space: normal;
    color: var(--white);
    line-height: 1.5;
  }

  .btn a::after, .btn a::before, .btn .a::after, .btn .a::before {
    display: none;
  }

}

@media (max-width: 450px) {
  .review .review-content .content-btns {
    flex-direction: column;
  }

  .review .review-content .content-btns a {
    margin-right: 0;
  }
}

/* EXTRA */

.ready-to-expand {
  display: none !important;
}
