@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');




body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #1e232f;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

:root {
  --blue-color: #2a2974;
  --orange-color: #fe5000;
}

.container {
  max-width: 1410px;
  margin: auto;
  padding: 0 15px;
}

p {
  line-height: 1.8;
}

.d-flex {
  display: flex;
}

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

.jsb {
  justify-content: space-between;
}

.aic {
  align-items: center;
}

/* header css */

.site-header .container {
  min-height: 110px;
}

.light-cream {
  background: #f5f2eb;
}

.top-part {
  background: #ebf5f3;
  position: relative;
  overflow: inherit !important;
}

.oval-md {
  position: absolute;
  margin: auto;
  left: -40vh;
  bottom: 22vh;
  width: 60vh;
  height: 60vh;
  border: 60px solid #c9dbd7;
  border-radius: 50%;
  opacity: .3;
}


.casestudeis .oval-md {
  left: -40vh;
  top: 10vh;
  width: 700px;
  height: 700px;
  border: 100px solid #d7d2c6;
  border-radius: 50%;
  bottom: auto;
}

.top-left {
  width: 79%;
}

.menu ul {
  margin: 0;
  padding: 0;
  display: flex;
}

.menu ul li {
  list-style: none;
  padding: 0 16px;
}

.menu ul li a {
  color: #000;
  font-weight: 400;
  text-decoration: none;
  position: relative;
}

.menu ul li a:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  background-color: var(--orange-color);
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
  -webkit-transition: -webkit-transform .25s ease-out;
  transition: -webkit-transform .25s ease-out;
  transition: transform .25s ease-out;
  transition: transform .25s ease-out, -webkit-transform .25s ease-out;
}

.menu ul li a:hover:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
}

.search {
  margin-right: 10px;
  margin-top: 5px;
}

.search svg {
  fill: #000;
  cursor: pointer;
}

.link-btn {
  margin: 0;
  padding: 0;
  display: flex;
}

.link-btn li {
  list-style: none;
  margin: 0 5px;
}

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

.link-btn a {
  color: #000;
  text-decoration: none;
  padding: 20px 24px;
  display: inline-block;
  font-weight: 600;
}

.link-btn a.btn {
  border: 1px solid #000;
}

.banner-part {
  padding: 50px 0 80px 0;
}

.text-rotation-left {
  width: 55%;
  position: relative;
}

.moving-arrow {
  position: absolute;
  right: -70px;
  bottom: -50px;
  display: none;
}


.moving-arrow svg {
  width: 250px;
  height: 250px;
  margin: 0 auto;
  transform: rotate(-40deg);
}

.moving-arrow svg .draw-arrow {
  stroke-width: 1;
  stroke: #000;
  fill: none;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-name: draw;
  animation-name: draw;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.moving-arrow svg .draw-arrow.tail-1 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.moving-arrow svg .draw-arrow.tail-2 {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.site-header {
  background: #fff;
  position: relative;
  z-index: 999999;
}

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

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

@keyframes show {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes dash {
  from {
    stroke-dashoffset: 1000;
  }

  to {
    stroke-dashoffset: 0;
  }
}


@keyframes bounce {
  50% {
    transform: translateX(-25px);
  }
}



.get-featured {
  position: absolute;
  background: #fff;
  box-shadow: 0 2px 7px #9aa0a629, 0 7px 30px #9da2a833;
  display: flex;
  padding: 20px;
  border-radius: 10px;
  max-width: 550px;
  width: 100%;
  margin: auto;
  left: 0;
  right: 0;
  bottom: -50px;
  align-items: center;
}

.get-featured .textwidget {
  display: flex;
  align-items: center;
}

.get-featured h3 {
  font-weight: 600;
  margin: 0 20px 0 auto;
  font-size: 19px;
}

.get-featured img {
  height: 40px;
  padding: 0 5px;
}


.text-rotation-left h1 {
  color: #000;
  font-size: 40px;
  line-height: 58px;
  margin: 0;
  font-style: italic;
}

.text-rotation-left h1 span {
  font-weight: 400;
}

.chart-slider {
  width: 44%;
  display: flex;
  align-items: center;
}

.owl-carousel.owl-drag .owl-item {
  border-radius: 20px;
  overflow: hidden;
}

.text-box {
  position: relative;
  width: 100%;
  margin-top: 120px;
}

.text-box div {
  display: inline-block;
  position: absolute;
  top: 0;
  transform: rotateX(-90deg);
  opacity: 0;
  animation-timing-function: ease;
  color: var(--orange-color);
  font-size: 66px;
  font-weight: 700;

}

.text-box div:nth-child(1) {
  animation: rollDown 15s forwards infinite;
}

.text-box div:nth-child(2) {
  animation: rollDown2 15s forwards infinite;
}

.text-box div:nth-child(3) {
  animation: rollDown3 15s forwards infinite;
}

.text-box div:nth-child(4) {
  animation: rollDown4 15s forwards infinite;
}

.text-box div:nth-child(5) {
  animation: rollDown5 15s forwards infinite;
}

@keyframes rollDown {
  0% {
    top: -200px;
    transform: rotateX(-90deg);
  }

  10% {
    top: -74px;
    transform: rotateX(0deg);
    opacity: 1;
  }

  15% {
    top: -74px;
    transform: rotateX(0deg);
    opacity: 1;
  }

  20% {
    top: 50px;
    transform: rotateX(30deg);
    opacity: 0;
  }
}

@keyframes rollDown2 {
  20% {
    top: -200px;
    transform: rotateX(-90deg);
  }

  25% {
    top: -74px;
    transform: rotateX(0deg);
    opacity: 1;
  }

  35% {
    top: -74px;
    transform: rotateX(0deg);
    opacity: 1;
  }

  40% {
    top: 50px;
    transform: rotateX(30deg);
    opacity: 0;
  }
}

@keyframes rollDown3 {
  40% {
    top: -200px;
    transform: rotateX(-90deg);
  }

  45% {
    top: -74px;
    transform: rotateX(0deg);
    opacity: 1;
  }

  55% {
    top: -74px;
    transform: rotateX(0deg);
    opacity: 1;
  }

  60% {
    top: 50px;
    transform: rotateX(30deg);
    opacity: 0;
  }
}

@keyframes rollDown4 {
  60% {
    top: -200px;
    transform: rotateX(-90deg);
  }

  65% {
    top: -74px;
    transform: rotateX(0deg);
    opacity: 1;
  }

  75% {
    top: -74px;
    transform: rotateX(0deg);
    opacity: 1;
  }

  80% {
    top: 50px;
    transform: rotateX(30deg);
    opacity: 0;
  }
}

@keyframes rollDown5 {
  80% {
    top: -200px;
    transform: rotateX(-90deg);
  }

  85% {
    top: -74px;
    transform: rotateX(0deg);
    opacity: 1;
  }

  95% {
    top: -74px;
    transform: rotateX(0deg);
    opacity: 1;
  }

  99% {
    top: 50px;
    transform: rotateX(30deg);
    opacity: 0;
  }
}

@keyframes slideColor {
  0% {
    background-color: #387780;
  }

  33% {
    background-color: #3f88c5;
  }

  66% {
    background-color: #588b8b;
  }

  100% {
    background-color: #387780;
  }
}

.our-expertise {
  text-align: left;
  color: #000;
  width: 100%;
  margin-top: 30px;
}

.our-expertise h2 {
  font-size: 24px;
  margin: 22px 0;
}

.our-expertise ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1%;
  flex-wrap: wrap;
  justify-content: space-between;
}

.our-expertise ul li {
  list-style: none;
  text-align: left;
  padding: 10px 15px;
  margin-bottom: 1%;
  width: 48.5%;
  box-shadow: 0 15px 25px #d1e4e0;
  position: relative;
  background: #fff;
  border-radius: 6px;
}



.our-expertise ul li a {
  text-decoration: none;
  color: #000;
  display: flex;
  align-items: center;
  font-size: 20px;
  flex-wrap: wrap;

}

.oe-services-top {
  display: flex;
  align-items: center;
}

.oest-icon {
  max-width: 60px;
}

.our-expertise ul li a svg {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.oe-services-top h4 {
  font-size: 20px;
  padding-left: 20px;
}

.our-expertise ul li p {
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 29px;
}

.svg-blue {
  margin-bottom: -34px;
  fill: #ebf5f3;
}

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

.padt20 {
  padding-top: 20px;
}

.padt30 {
  padding-top: 30px;
}

.padt40 {
  padding-top: 40px;
}

.padt60 {
  padding-top: 60px;
}

.padb60 {
  padding-bottom: 60px;
}

.padb20 {
  padding-bottom: 20px;
}

.padb30 {
  padding-bottom: 30px;
}

.padb40 {
  padding-bottom: 40px;
}

/* section 2 */
.padtb {
  padding: 80px 0;
}

.subt-tile {
  font-weight: 400;
  margin: 0 0 8px 0;
}

.site-title {
  font-weight: 700;
  font-size: 48px;
  margin: 0;
}

.title-block p {
  margin: 25px 0 0 0;
  font-size: 20px;
  font-weight: 500;
}

.tarcking-attribution ul {
  margin: 60px 0 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.tarcking-attribution ul li {
  list-style: none;
  width: 32.5%;
  box-shadow: 0 2px 7px #9aa0a629, 0 7px 30px #9da2a833;
  padding: 30px;
  border-radius: 6px;
}

.tarcking-attribution ul li svg {
  fill: var(--orange-color);
  width: 24px;
  height: 24px;
}

.tarcking-attribution ul li h4 {
  margin: 8px 0 0 0;
  line-height: 28px;
  font-size: 20px;
}

.tarcking-attribution ul li p {
  margin-bottom: 0;
  line-height: 26px;
}

/* our clients */



.our-clients ul {
  display: grid;
  margin: 50px 0 0 0;
  padding: 0;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}

.our-clients ul li {
  list-style: none;
  height: 100%;
  align-items: center;
  display: flex;
  padding: 30px;
  border-top: none;
  border-left: none;
  background: #fff;
  box-shadow: 0px 5px 10px #e4e2e2;
  flex-wrap: wrap;
  justify-content: center;
  border-radius: 10px;
}

.our-clients ul li h5 {
  font-weight: 700;
  width: 100%;
  margin-top: 5px;
  font-size: 18px;
}

.our-clients ul li img {
  display: block;
  margin-right: auto;
  max-width: 100%;
  margin-left: auto;
  height: auto !important;
}

.border-top {
  border-top: 2px solid var(--orange-color);
}


/* case studeis */

img {
  max-width: 100%;
}

.bottom-left-corner {
  border-bottom: 13.9173vw solid #f5f2eb;
  width: 0;
  height: 0;
  border-right: 100vw solid transparent;
  margin-top: -13.867310096006543vw;
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.top-right-corner {
  border-top: 13.9173vw solid #f5f2eb;
  width: 0;
  height: 0;
  border-left: 100vw solid transparent;
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.site-main .casestudeis {
  background: #f5f2eb;
  position: relative;
  margin-top: 250px;
}

.case-study-collection-wrapper.w-dyn-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 3;
  margin-top: 50px;
}

.case-study-collection-wrapper.w-dyn-list .collection-item-6 {
  width: 32%;
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.case-study-collection-wrapper.w-dyn-list .collection-item-6 img {
  height: 250px;
  object-fit: cover;
}

.case-study-collection-wrapper.w-dyn-list .collection-item-6.full {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 500px;
  margin-bottom: 20px;
}

.case-study-collection-wrapper.w-dyn-list .collection-item-6.full img {
  height: 100% !important;
  width: 100%;
}


.case-study-collection-wrapper.w-dyn-list .collection-item-6.full .work-tile-text {
  width: 570px;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  bottom: 28px;
  right: 28px;
  z-index: 1;
  text-align: left;
}

.case-study-collection-wrapper.w-dyn-list .collection-item-6.full .work-tile-text h2 {
  padding: 0;
}

.case-study-collection-wrapper.w-dyn-list .collection-item-6 a {
  text-decoration: none;
}

.overlay {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, .4), transparent);
  border-radius: 16px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.white-text {
  color: #fff;
}

.case-study-collection-wrapper.w-dyn-list .collection-item-6.full .headline-3-large-demi.case {
  color: #fff;
}

.case-study-collection-wrapper.w-dyn-list .collection-item-6.full .work-tile-text h2.headline-3-large-demi.case {
  font-size: 26px;
  font-weight: 600;
  line-height: 38px;
}

.work-tile-text h2.headline-3-large-demi.case {
  margin: 0;
  padding: 15px 20px 20px 20px;
  color: #000;
  font-size: 20px;
  line-height: 30px;
}


/* programatic marketing */



.programatic ul {
  margin: 50px 0 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.programatic ul li {
  list-style: none;
  width: 32.5%;
  box-shadow: 0 2px 7px #9aa0a629, 0 7px 30px #9da2a833;
  padding: 30px;
  border-radius: 6px;
  margin-bottom: 20px;
  background: #fff;
}

.programatic ul li h3 {
  font-size: 18px;
  margin-top: 15px;
}

/* platform */


.btn-site {
  color: var(--orange-color);
  text-decoration: none;
  padding: 20px 24px;
  display: inline-block;
  font-weight: 600;
  border: 1px solid var(--orange-color);
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.btn-site::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--orange-color);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.btn-site:hover::before,
.btn-site:focus::before,
.btn-site:active::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.btn-site:hover {
  color: #fff;
}

.images-outer {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 7px #9aa0a629, 0 7px 30px #9da2a833;
  display: flex;
}

.images-outer .title-block {
  padding: 23px 30px;
}

.images-outer .title-block p {
  margin: 20px 0;
  line-height: 32px;
}

.images-outer img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}

/* why us */

.whyus {
  background: #ebedf5;
  position: relative;
}

.whyus .svg-blue {
  fill: #fff;
  margin-bottom: 0;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.whyus.programatic ul li {
  width: 23.5%;
  background: #fff;
}

.whyus.programatic {
  margin-top: 0;
}

/* partners */

.three-items-compontent {
  grid-column-gap: 0;
  grid-row-gap: 87px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  margin-top: 50px;
}

.item-three-half {
  padding: 0 40px;
  position: relative;
  border-right: 5px solid #ebedf5;
}



.item-three-half.padding-0 {
  border-right: none;
}

.content-item-three-half {
  z-index: 2;
  position: relative;
}

.head-item-three-half {
  grid-column-gap: 24px;
  align-items: center;
  margin-bottom: 24px;
  display: flex;
}

.heading-item-three-half {
  color: #48484f;
  margin-bottom: 0;
  font-size: 21px;
  line-height: 29.66px;
  font-weight: 700;
}

.logos-wrapper-integrations {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}




/* blog */

.blog-right-col {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}

.blog-post {
  width: 32%;
  box-shadow: 0 2px 7px #9aa0a629, 0 7px 30px #9da2a833;
  border-radius: 16px;
  background: #fff;
}

.blog-post-img {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  height: 250px;
}

.blog-post-img img {
  height: 100% !important;
  object-fit: cover;
  width: 100%;
}

.blog-post-content {
  padding: 20px;

}

.blog-post-content a {
  text-decoration: none;
  color: #000;
}

.blog-post-content h4 {
  margin: 0;
  font-size: 22px;
}

.blog-section {
  background: #ebedf5;
  position: relative;
}

.blog-section .svg-blue {
  fill: #fff;
  margin-bottom: 0;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.contact-form {
  background: #888887;
  color: #fff;
}

.contact-form-col {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-form-col .col-left {
  width: 40%;
}

.contact-form-col .col-left h2 {
  font-size: 24px;
  font-size: 36px;
}

.contact-form-col .col-right {
  width: 55%;
}

.contact-form-col .col-right form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-form-col .col-right .half-col {
  width: 48.5%;
}

.contact-form-col .col-right .full-col {
  width: 100%;
}

.contact-form-col .col-right .full-col.sbbutton {
  width: auto;
}

.half-col p,
.full-col p {
  margin: 0;
}

.form-control {
  width: 100%;
  border-radius: 0;
  border: none;
  margin-bottom: 5px;
  font-size: 16px;
  background: none;
  border-bottom: 1px solid #a8a8a6;
  color: #fff;
  padding: 20px 0;
}

.user-registration-Input,
.ur-frontend-field,
.ur-edit-profile-field,
.create-f-form .wpcf7-form-control {
  width: 100%;
  border-radius: 0;
  border: none;
  margin-bottom: 20px;
  font-size: 16px;
  background: none;
  border: 1px solid #d6d6d7;
  color: #fff;
  padding: 12px !important;
  color: #000;
}

.user-registration-Button,
.ur-submit-button {
  transition: .2s linear;
  font-size: 16px;
  line-height: 18px;
  padding: 20px 24px;
  cursor: pointer;
  border: 1px solid var(--orange-color);
  background-color: var(--orange-color);
  color: #fff;
}

.user-registration-Button:hover,
.ur-submit-button:hover {
  background-color: #000;
}

.ur-button-container {
  padding-right: 0 !important;
}

#user-registration {
  max-width: 600px;
  margin: auto;

}

#ur-frontend-form {
  border-radius: 6px;
}

textarea.form-control {
  height: 90px;
}

input[type="submit"].form-control {
  color: #fff;
  text-decoration: none;
  padding: 20px 30px;
  display: inline-block;
  font-weight: 600;
  border: 1px solid #fff;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  background: none;
  cursor: pointer;
  border-radius: 0;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 30px;
}


/* footer */

footer {
  background: #f6f9fe;
  font-size: .8em;
  position: relative;
  padding: 80px 0 72px;
  margin-top: 80px;
}

.home footer {
  margin-top: 0;
}

footer .list-col,
footer .logo-col {
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
}

footer .list-col .inner {
  padding-right: 10px;
}

footer .list-col h2 {
  margin-bottom: 28px;
  font-size: 17px;
  line-height: 19px;
  color: #000;
}

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

footer .list-col ul li {
  margin-bottom: 20px;
  list-style: none;
  font-size: 15px;
}

footer .list-col ul li a {
  color: #000;
  text-decoration: none;
}

footer .right-col {
  -ms-flex-preferred-size: 28%;
  flex-basis: 28%;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

footer .right-col .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

footer .right-col .border-left {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

footer .right-col .border-left>div {
  max-width: 90%;
}

footer .right-col .careers-cta,
footer .right-col .contact-button {
  width: 100%;
  margin-bottom: 20px;
}

button {
  transition: .2s linear;
  font-size: 16px;
  line-height: 18px;
  padding: 20px 24px;
  cursor: pointer;
}

button.button__default {
  border: 1px solid var(--orange-color);
  background-color: var(--orange-color);
  color: #fff;
}

button.button__default:hover {
  background-color: #000;
  border-color: #000;
}

footer .right-col .careers-cta a button,
footer .right-col .contact-button a button {
  width: 100%;
}

a .arrow-2023,
span.pseudo-link .arrow-2023 {
  margin-left: 10px;
  width: 11px;
  height: 11px;
  background-image: url(../images/arrow-2023-white.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  -webkit-transition: linear .2s;
  transition: linear .2s;
}

footer .social-links .social-icons a {
  color: #000;
}

.social-links section .textwidget {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

footer .social-links .social-icons a div {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 5px 20px 5px;
}

footer .social-links .social-icons a div svg {
  width: 22px;
  height: 22px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}



.social-links.mb-4 .d-flex.justify-content-center.flex-wrap {
  justify-content: center;
}

.t-industry {
  position: absolute;
  right: 28px;
  background: var(--orange-color);
  z-index: 1;
  color: #fff;
  cursor: pointer;
  padding: 6px 12px;
  top: 15px;
  border-radius: 4px;
}

.traffic {
  position: absolute;
  left: 28px;
  top: 50px;
  color: #fff;
  text-align: left;
  z-index: 1;
}

.traffic h3 {
  font-size: 130px;
  line-height: 100px;
  margin: 0;
  display: flex;
  align-items: center;
  font-weight: 700;
}

.traffic h3 svg {
  fill: #42dd42;
  width: 60px;
  height: 60px;
}

.traffic p {
  font-size: 28px;
  margin: 12px 0;
}

/* slider text */

.Modern-Slider {
  margin-top: 30px;
}

.blocks-box,


.slick-slide {
  float: left
    /* If RTL Make This Right */
  ;
  padding: 0;
}


.Modern-Slider .item .img-fill .info {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, .50);
  line-height: 100vh;
  text-align: center;
}

.Modern-Slider .item .img-fill img {
  filter: blur(5px);
}

.Modern-Slider .item .info>div {
  display: inline-block !important;
  vertical-align: middle;
}

.Modern-Slider .NextArrow {
  display: none !important;
}


.Modern-Slider .PrevArrow {
  display: none !important;
}

.Modern-Slider .slick-dots {
  position: absolute;
  height: 5px;
  background: rgba(255, 255, 255, .20);
  bottom: 0px;
  width: 100%;
  left: 0px;
  padding: 0px;
  margin: 0px;
  list-style-type: none;
  display: none !important;
}

.Modern-Slider .slick-dots li button {
  display: none;
}

.Modern-Slider .slick-dots li {
  float: left;
  width: 0px;
  height: 5px;
  background: #d62828;
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.Modern-Slider .slick-dots li.slick-active {
  width: 100%;
  animation: ProgressDots 11s both;
}

.Modern-Slider .item h3 {
  margin: 0;
  padding: 0;
  color: var(--orange-color);
  font-size: 58px;
  font-weight: 700;
}


/* ==== Slider Image Transition === */
@keyframes Slick-FastSwipeIn {
  0% {
    transform: rotate3d(0, 1, 0, 150deg) scale(0) perspective(400px);
  }

  100% {
    transform: rotate3d(0, 1, 0, 0deg) scale(1) perspective(400px);
  }
}

@-webkit-keyframes ProgressDots {
  from {
    width: 0px;
  }

  to {
    width: 100%;
  }
}

@keyframes ProgressDots {
  from {
    width: 0px;
  }

  to {
    width: 100%;
  }
}

/* ==== Slick Slider Css Ruls === */
.slick-slider {
  position: relative;
  display: block;
  -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:focus {
  outline: none
}

.slick-list.dragging {
  cursor: hand
}

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

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block
}

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

.slick-track:after {
  clear: both
}

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

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

.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
}


/* mega menu */

#mega-menu-wrap-primary::before,
#mega-menu-wrap-primary #mega-menu-primary::before,
#mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu::before,
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item::before,
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-row::before,
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-column::before,
#mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link::before,
#mega-menu-wrap-primary #mega-menu-primary span.mega-menu-badge::before,
#mega-menu-wrap-primary::after,
#mega-menu-wrap-primary #mega-menu-primary::after,
#mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu::after,
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item::after,
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-row::after,
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-column::after,
#mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link::after,
#mega-menu-wrap-primary #mega-menu-primary span.mega-menu-badge::after {
  display: block;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item {
  padding: 0 16px;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
  height: auto;
  line-height: inherit;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
  background: #888887;
  color: #fff;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus {
  background: var(--orange-color);
  color: #fff;
}

.home .site-main {
  padding-bottom: 0;
}

/* inner pages */

.archive .page-header {
  display: none;
}

.archive .site-main .container {
  display: flex;
  flex-wrap: wrap;
  gap: 2.7%;
}

.archive .site-main article {
  width: 31.5%;
  margin-bottom: 35px;
}

.archive .site-main article:first-child {
  width: 100%;
}

.archive .site-main article .entry-header {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  margin: 0;
}

.archive .site-main article .button-wrapper {
  display: none;
}

.archive .site-main article .entry-title {
  font-size: 22px;
  font-weight: 700;
  margin-top: 20px;
  line-height: 32px;
  margin-bottom: 15px;
}

.archive .site-main article:first-child .entry-title {
  font-size: 36px;
  line-height: 48px;
}

.archive .site-main article:first-child .post-date {
  margin-bottom: 25px;
}

.archive .site-main article:first-child button {
  padding: 15px 24px;
}

.archive .site-main article .entry-title a {
  text-decoration: none;
}

.archive .site-main article .entry-content {
  margin: 0;
}

.archive .site-main article .entry-content a.more-link {
  display: none;
}

.archive .site-main article .post-thumbnail .wp-post-image {
  margin: 0;
}

.post-date {
  font-size: 14px;
  opacity: 0.6;
}

.archive .site-main article:first-child .entry-content {
  display: none;
}

.archive .site-main article:first-child .button-wrapper {
  display: block;
}

.archive .site-main article:first-child .entry-header {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}

.archive .site-main article:first-child .title-btn,
.archive .site-main article:first-child .post-thumbnail {
  width: 48.5%;
}

.archive .site-main article .post-thumbnail {
  height: 250px;
}

.archive .site-main article:first-child .post-thumbnail {
  height: 400px;
}

.archive .site-main article:first-child .post-thumbnail img,
.archive .site-main article .post-thumbnail img {
  height: 100% !important;
  object-fit: cover;
}

/* single post*/

.single-post .entry-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.single-post .entry-header .entry-title {
  font-weight: 700;
  font-size: 44px;
  line-height: 54px;
  margin-bottom: 15px;
}

.single-post .content-area {
  margin-top: 60px;
}

.single-title-top {
  width: 80%;
}

.singular .has-post-thumbnail .entry-header .heateor_sss_sharing_container {
  width: 29px;
}

.singular .has-post-thumbnail .entry-header .heateor_sss_sharing_container .heateor_sss_sharing_ul {
  width: 100%;
}

.singular .has-post-thumbnail .entry-header .heateor_sss_sharing_container .heateor_sss_sharing_ul .heateor_sss_svg {
  width: 25px !important;
  height: 25px !important;
}

.single-post .post-thumbnail .wp-post-image {
  margin-top: 0;
  max-width: 100% !important;
}

#comments {
  display: none;
}

.single-post .entry-content {
  max-width: 1100px;
  margin: 50px auto 0 auto;
}

.single-post .entry-content>p:first-of-type::first-letter {
  font-size: 64px;
  line-height: 48px;
  color: var(--orange-color);
  font-weight: 700;
  float: left;
  padding-top: 5px;
  padding-right: 6px;
}

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

.single-post .entry-content h3 {
  font-weight: 600;
}

.navigation.post-navigation {
  max-width: 1270px;
  padding: 0 15px;
}

.navigation.post-navigation .nav-previous,
.navigation.post-navigation .nav-next {
  background: var(--orange-color);
  padding: 20px;
  color: #fff;
  border-radius: 10px;
}

.post-navigation .meta-nav {
  margin-top: 0;
  color: #fff;
}

.post-navigation .post-title {
  color: #fff;
  font-size: 16px;
  margin-top: 0;
}

.page-template-login {
  height: 100%;
}

.page-template-login .top-part,
.page-template-login footer,
.page-template-register .top-part,
.page-template-register footer {
  display: none;
}

.forms-user,
.um-form {
  max-width: 600px;
  margin: 50px auto 0 auto;
  background: #fff;
  padding: 25px;
  box-shadow: 0 15px 50px #e6e6e6;
  border-radius: 10px;
  text-align: center;
}

.um-register .um-form,
.um.um-register {
  max-width: 100% !important;
}

.forms-user input[type="submit"] {
  transition: .2s linear;
  padding: 20px 24px;
  cursor: pointer;
  background-color: var(--orange-color);
  color: #fff;
  width: 100%;
  font-size: 18px;
  border: none;
}

.forms-user input[type="submit"]:hover {
  background: #000;
}

.forms-user .form-control {
  border: 1px solid #e4e4e4;
  color: #919191;
  padding: 15px;
}

.forms-user img {
  margin-bottom: 40px;
}

.login-links {
  margin-top: 15px;
  font-size: 14px;
}

.login-links a {
  text-decoration: none;
  color: var(--orange-color);
  opacity: 0.8;
}

/* Steps create account */

msform {
  text-align: center;
  position: relative;
  margin-top: 20px
}

#msform fieldset {
  background: white;
  border: 0 none;
  border-radius: 0.5rem;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding-bottom: 20px;
  position: relative;
  padding: 0;
}

.form-card {
  text-align: left
}

.form-card label {
  margin-bottom: 10px;
  display: block;
  font-size: 14px;
  color: #000;
}

.forms-user .form-card .form-control {
  padding: 10px;
}

#msform fieldset:not(:first-of-type) {
  display: none
}


#msform .action-button {
  width: 100px;
  background: var(--orange-color);
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 0px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 0px 10px 5px;
  float: right
}

#msform .action-button:hover,
#msform .action-button:focus {
  background-color: #000
}

#msform .action-button-previous {
  width: 100px;
  background: #616161;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 0px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px 10px 0px;
  float: right
}

#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
  background-color: #000000
}

.card {
  z-index: 0;
  border: none;
  position: relative
}

.fs-title {
  font-size: 25px;
  color: #673AB7;
  margin-bottom: 15px;
  font-weight: normal;
  text-align: left
}

.purple-text {
  color: #673AB7;
  font-weight: normal
}

.steps {
  font-size: 25px;
  color: gray;
  margin-bottom: 10px;
  font-weight: normal;
  text-align: right
}

.fieldlabels {
  color: gray;
  text-align: left
}

#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  color: lightgrey;
  padding: 0;
}

#progressbar .active {
  color: var(--orange-color)
}

#progressbar li {
  list-style-type: none;
  font-size: 15px;
  width: 25%;
  float: left;
  position: relative;
  font-weight: 400
}

#progressbar #account:before {
  font-family: FontAwesome;
  content: "\f007"
}

#progressbar #personal:before {
  font-family: FontAwesome;
  content: "\f007"
}

#progressbar #payment:before {
  font-family: FontAwesome;
  content: "\f030"
}

#progressbar #confirm:before {
  font-family: FontAwesome;
  content: "\f00c"
}

#progressbar li:before {
  width: 50px;
  height: 50px;
  line-height: 45px;
  display: block;
  font-size: 20px;
  color: #ffffff;
  background: lightgray;
  border-radius: 50%;
  margin: 0 auto 10px auto;
  padding: 2px
}

#progressbar li:after {
  content: '';
  width: 100%;
  height: 2px;
  background: lightgray;
  position: absolute;
  left: 0;
  top: 25px;
  z-index: -1
}

#progressbar li.active:before,
#progressbar li.active:after {
  background: var(--orange-color)
}

.progress {
  height: 20px
}

.progress-bar {
  background-color: var(--orange-color)
}

.fit-image {
  width: 100%;
  object-fit: cover
}

.forms-user.register {
  max-width: 1270px;
}

.forms-user.register {
  max-width: 1270px;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  overflow: hidden;
}

.f-left,
.f-right {
  width: 50%;
  padding: 30px;
}

.forms-user.register .f-right {
  background: #f7f7f7;

}

.progress {
  display: -ms-flexbox;
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: .75rem;
  background-color: #e9ecef;
  border-radius: .25rem;
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  -webkit-animation: progress-bar-stripes 1s linear infinite;
  animation: progress-bar-stripes 1s linear infinite;
}

.singular .custom-head {
  background: #f5f6f8;
  border: none;
  padding: 0;
  text-align: center;
  padding: 80px 0;
  display: none;
}

.singular .custom-head .entry-title {
  font-weight: 600;
  font-size: 44px;
}

.site-main {
  padding-top: 0;
}

.singular .entry-content h2 {
  font-size: 30px;
  font-weight: 600;
}

.singular.page-id-3 .custom-head,
.singular.page-id-65 .custom-head,
.singular.page-id-54 .custom-head,
.singular.page-id-56 .custom-head,
.singular.page-id-11 .custom-head,
.singular.page-id-488 .custom-head,
.singular.page-id-501 .custom-head,
.singular.page-id-15 .custom-head,
.singular.page-id-632 .custom-head,
.singular.page-id-650 .custom-head,
.singular.page-id-682 .custom-head {
  display: block;
  margin-bottom: 30px;
}

.abt-head-left span {
  color: var(--orange-color);
}

.singular .entry-content .abt-head-left {
  font-size: 48px;
}

.abt-photo-big-text {
  max-width: 440px;
  color: #fff;
  font-weight: 700;
  font-size: 66px;
}

.about-photo-overlay::before {
  content: '';
  opacity: 0.4;
  background: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.small-heading {
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 10px;
}

.mid-heading {
  font-weight: 600;
  font-size: 36px;
}

.abt-ul ul li {
  list-style: conic-gradient;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.8;
}

.contact-ul ul {
  padding: 0 0 0 35px;
}

.contact-ul ul li {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
}

.contact-page-form .form-control {
  color: #000;
}

.contact-page-form input[type="submit"].form-control {
  background: var(--orange-color);
}

.contact-page-form>.vc_column-inner>.wpb_wrapper {
  background: #fff;
  padding: 20px;
  box-shadow: 0 2px 7px #9aa0a629, 0 7px 30px #9da2a833;
  border-radius: 16px;
}

.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading {
  background: var(--orange-color) !important;
}

.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-title>a,
.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-title>a {
  color: #fff !important;
}

.vc_tta-color-grey.vc_tta-style-classic .vc_active .vc_tta-panel-heading .vc_tta-controls-icon::after,
.vc_tta-color-grey.vc_tta-style-classic .vc_active .vc_tta-panel-heading .vc_tta-controls-icon::before {
  border-color: #fff !important;
}

.vc_tta-color-grey.vc_tta-style-classic .vc_tta-controls-icon::after,
.vc_tta-color-grey.vc_tta-style-classic .vc_tta-controls-icon::before {
  border-color: #fff !important;
}


.logos-wrapper-p ul.wpb_image_grid_ul {
  grid-column-gap: 30px;
  grid-row-gap: 0;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.p-logo-wrapper>.vc_col-sm-12>.vc_column-inner>.wpb_wrapper {
  box-shadow: 0 2px 7px #9aa0a629, 0 7px 30px #9da2a833;
  text-align: center;
  padding: 25px;
}

.p-logo-wrapper>.vc_col-sm-12>.vc_column-inner>.wpb_wrapper h4.vc_custom_heading {
  background: var(--orange-color);
  display: inline-block;
  color: #fff;
  padding: 10px 20px;
  border-radius: 26px;
  position: relative;
  top: -43px;
}

.logos-wrapper-p {
  margin-bottom: 0;
}

/* solutions */


.cu-page-minheading {
  font-weight: 600;
  margin: 20px 0;
}

.cu-page-minheadingtext {
  font-weight: 400;
  ;
  line-height: 32px;
}

.bakery-wrapper .cu-page-minheadingtext {
  max-width: 1000px;
  margin: 0 auto;
}

.bakery-wrapper .svg-blue {
  margin-bottom: 0;
  position: relative;
  bottom: -70px;
}

.solutions-list {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 30px
}



.solutions-list li {
  background: #d3d6e5;
  padding: 50px 30px;
  list-style: none;
  transition: .2s linear;
}

.solutions-list li:nth-child(2) {
  background: #dbfee3;
}

.solutions-list li:nth-child(3) {
  background: #afe1f5;
}

.solutions-list li:nth-child(4) {
  background: #ffdecf;
}

.solutions-list li:hover {
  box-shadow: 0 13px 37px rgba(0, 0, 0, .21);
  transition: .2s linear;
}

.type-small {
  font-weight: 600;
  font-size: 14px;
}

.type-big {
  font-weight: 700;
  font-size: 36px;
  margin-top: 50px;
}

.solutions-list li .button.button__default {
  font-weight: 600;
  padding: 12px 16px;
  font-size: 14px;
}

.solutions-list li p {
  font-size: 15px;
  margin-bottom: 40px;
}


.parent-pageid-8 .site-header,
.parent-pageid-8 .top-part,
.page-id-17 .top-part,
.page-id-17 .site-header,
.page-id-31 .top-part,
.page-id-31 .site-header,
.page-id-23 .top-part,
.page-id-23 .site-header,
.page-id-25 .top-part,
.page-id-25 .site-header,
.page-id-21 .top-part,
.page-id-21 .site-header,
.page-id-29 .top-part,
.page-id-29 .site-header,
.page-id-27 .top-part,
.page-id-27 .site-header,
.page-id-19 .top-part,
.page-id-19 .site-header,
.page-id-717 .top-part,
.page-id-717 .site-header,
.page-id-715 .top-part,
.page-id-715 .site-header,
.page-id-713 .top-part,
.page-id-713 .site-header,
.page-id-830 .top-part,
.page-id-830 .site-header,
.page-id-711 .top-part,
.page-id-711 .site-header,
.page-id-709 .top-part,
.page-id-709 .site-header,
.page-id-707 .top-part,
.page-id-707 .site-header {
  background: none;
}

.top-part.solutions-single {
  margin-top: -113px;
  background: #d3d6e5;
}

.top-part.solutions-single.solutions-top-n {
  margin-top: 0;
  position: relative;
  padding-top: 150px;
  padding-bottom: 250px;
  color: #fff;
}

.top-part.solutions-single.solutions-top-n:before {
  opacity: 0.5;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
}

.top-part.solutions-single.solutions-top-n .solutions-sub-head {
  display: inline-block;
  background: var(--orange-color);
  padding: 5px 15px;
  border-radius: 3px;
}

.top-part.solutions-single.solutions-top-n .cu-page-heading {
  margin-bottom: 30px;
}

.mid-page-solutions {
  padding: 0 200px;
}

.top-part.business-solutions {
  background: #dbfee3;
}

.top-part.ecommerce-solutions {
  background: #afe1f5;
}

.top-part.enterprise-solutions {
  background: #ffdecf;
}

.top-part.services-advertising {
  background: #ffdecf;
}

.solutions-l-ic-new>.vc_col-sm-4>.vc_column-inner>.wpb_wrapper,
.solutions-l-ic-new>.vc_col-sm-12>.vc_column-inner>.wpb_wrapper {
  box-shadow: 0 2px 7px #9aa0a629, 0 7px 30px #9da2a833;
  padding: 30px;
  border-radius: 6px;
  text-align: center;
}

.solutions-l-ic-new .wpb_single_image img {
  width: 80px !important;
}


.solutions-sub-head {
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 15px;
}

#mega-menu-wrap-primary {
  background: none;
}


.agency-svg .svg-blue {
  margin-bottom: 0;
  fill: #d3d6e5;
}

.business-svg .svg-blue {
  margin-bottom: 0;
  fill: #dbfee3;
}

.ecommerce-svg .svg-blue {
  margin-bottom: 0;
  fill: #afe1f5;
}

.enterprise-svg .svg-blue {
  margin-bottom: 0;
  fill: #ffdecf;
}

.services-svg .svg-blue {
  margin-bottom: 0;
  fill: #ffdecf;
}

.solutions-single .text-right {
  text-align: right;
  margin-bottom: 0;
  padding-right: 100px;
}

.solutions-option-right>.vc_column-inner>.wpb_wrapper {
  padding-left: 150px;
}

.solutions-l-ic .wpb_single_image img {
  width: 80px !important;
}

.options-list {
  padding: 0;
  margin-top: 25px;
  margin-bottom: 35px;
}

.options-list li {
  list-style: none;
  background: url(../images/check.png) no-repeat 0 10px;
  margin-bottom: 20px;
  padding-left: 40px;
  line-height: 26px;
}

.solutions-abt-features p {
  margin-top: 0;
}

.singular .entry-content h2.site-title {
  font-size: 44px;
}

.parent-pageid-8 .our-clients {
  border: none;
}

.solutions-l-ic .vc_custom_heading {
  line-height: 32px;
}


/* services advertising */

.services-price-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 15px 35px #e4e2e2;
  border-radius: 10px;
  overflow: hidden;
}

.services-c-list {
  text-align: center;
}

.services-c-list h3 {
  background: var(--orange-color);
  color: #fff;
  font-size: 24px;
  padding: 10px;
}

.services-c-list.second-price h3 {
  background: var(--blue-color);
}

.services-c-list.first-price {
  border-right: 1px solid;
}

.services-c-list ul {
  padding: 0;
}

.services-c-list ul li {
  list-style: none;
  border-bottom: 1px solid;
  padding: 20px;
}

.services-c-list ul li:last-child {
  border-bottom: none;
}

.services-c-list ul li p {
  margin: 0;
}

.orange-border-top {
  border-top: 2px solid var(--orange-color);
  padding-top: 60px;
}

.display-ad-formate {
  color: #fff;
}

.options-list.ad-option {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 10px;
}

.options-list.ad-option li {
  font-weight: 600;
  font-size: 17px;
  box-shadow: 0 2px 7px #9aa0a629, 0 7px 30px #9da2a833;
  padding: 15px 15px 15px 48px;
  border-radius: 10px;
  width: 100%;
  background-position: 15px 20px;
}

.services-clients .our-clients {
  border: none;
}


.um-form input[type="text"],
.um-form input[type="search"],
.um-form input[type="tel"],
.um-form input[type="number"],
.um-form input[type="password"],
.um-form textarea {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

.um-form input[type="text"],
.um-form input[type="search"],
.um-form input[type="tel"],
.um-form input[type="number"],
.um-form input[type="password"] {
  height: 50px !important;
  width: 100%;
  padding: 0 12px !important;
}

body .um *,
body .um ::before,
body .um ::after {
  box-sizing: border-box;
}

body .um .um-form ::placeholder {
  color: #000;
  opacity: 1 !important;
}

.um-field.um-field-multiselect select {
  height: 60px;
}

.um-field.um-field-multiselect select option:nth-child(1) {
  display: none;
}

.um-field-checkbox-option,
.um-field-radio-option {
  margin: 0px 0px 0px 36px;
  line-height: 24px;
  color: #000 !important;
  font-size: 15px;
}

.um-field-checkbox:not(.um-field),
.um-field-radio:not(.um-field) {
  margin: 0;
}

.um input[type="submit"].um-button,
.um input[type="submit"].um-button:focus,
.um a.um-button,
.um a.um-button.um-disabled:hover,
.um a.um-button.um-disabled:focus,
.um a.um-button.um-disabled:active {
  transition: .2s linear;
  padding: 20px 24px !important;
  cursor: pointer;
  background-color: var(--orange-color);
  color: #fff;
  width: 100%;
  font-size: 18px;
  border: none;
  border-radius: 0 !important;
}

.um input[type="submit"].um-button:hover,
.um a.um-button:hover {
  background-color: #000;
}

.um .um-button.um-alt,
.um input[type="submit"].um-button.um-alt {
  background: var(--blue-color);
  color: #fff;
  box-shadow: none;
}

.um .um-button.um-alt:hover,
.um input[type="submit"].um-button.um-alt:hover {
  background: #000;
}

.um select {
  border: 1px solid #ddd;
}

.um .um-field-label {
  text-align: left;
}

.um-field-area {
  display: flex;
}

.um-field-area label {
  width: auto;
  padding-right: 15px;
}

#campaign_notes {
  height: 86px !important;
}

.um-col-alt .um-half {
  width: auto;
  float: none;
}

.um-col-alt {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.um-login .um-col-alt {
  justify-content: flex-start;
}

.um-password .um-col-alt {
  justify-content: center;
  gap: 0;
  margin-top: 0;
}

.um-login .um-col-alt .um-clear {
  display: none;
}

.um-col-alt .um-field.um-field-c {
  width: 100%;
}

body a.um-link-alt {
  color: var(--orange-color) !important;
  text-align: left;
}


.text-big-small .wpb_wrapper {
  position: relative;
  background: #ebf5f3;
  font-size: 24px;
  padding-top: 40px;
  border-radius: 20px;
}

.text-big-small .wpb_wrapper .oval-md {
  width: 200px;
  height: 200px;
  border-width: 40px;
  left: 20px;
  top: 0;
}

.text-big-small .wpb_wrapper p {
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.text-big-small .wpb_wrapper p:nth-child(2) {
  margin-top: 0;
}

.text-big-small .wpb_wrapper p:nth-child(4) {
  margin-bottom: 0;
}

.text-big-small .wpb_wrapper p strong {
  color: var(--orange-color);
}

.pricing-page .contact-form {
  background: none;
  color: #000;
}

.pricing-page .contact-form .form-control {
  color: #000;
}

.pricing-page .contact-form input[type="submit"].form-control {
  background: var(--orange-color);
  color: #fff;
  transition: .2s linear;
}

.pricing-page .contact-form input[type="submit"].form-control:hover {
  background: #000;
  transition: .2s linear;
}

.pricing-page .contact-form .col-right {
  margin-top: -15px;
}

.sectors-wrapper ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.sectors-wrapper ul li {
  list-style: none;
  width: 24%;
  box-shadow: 0 2px 7px #9aa0a629, 0 7px 30px #9da2a833;
  padding: 30px;
  border-radius: 6px;
  margin-bottom: 20px;

}

.sectors-wrapper ul li a {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
}

.sectors-wrapper ul li a svg {
  fill: var(--orange-color);
  margin-right: 10px;
  transition: all 1s;
}

.sectors-wrapper ul li a:hover svg {
  transition: all .5s;
  transform: translateX(5px);
}

.bottom-svg-shape {
  overflow: inherit !important;
}

.shape-bottom {
  position: absolute;
  top: auto;
  bottom: 57px;
  left: 0;
  right: 0;
}

.shape-bottom svg {
  overflow: hidden;
  width: 100%;
  line-height: 0;
  direction: ltr;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.ai-left-img>.vc_column-inner>.wpb_wrapper {
  padding-left: 100px;
}

.ai-right-text {
  background: #eceff7;
  border-radius: 0 60px 60px 0;
  padding: 40px;
  position: relative;
  box-shadow: 20px 20px 0 #cfd4df;
}

.ai-right-text::before {
  content: '';
  background: #eceff7;
  height: 100%;
  position: absolute;
  left: -100%;
  width: 100%;
}


.hide-desktop {
  display: none !important;
}


.error-404.not-found {
  margin-top: 35px;
}

.user-registration-ResetPassword {
  padding: 10px;
}

.user-registration-ResetPassword p {
  margin-bottom: 0;
  margin-top: 0;
}

.user-registration-error {
  max-width: 600px;
  margin: auto;
}

#user-registration-form-630 {
  margin-top: 0 !important;
}

#user-registration.vertical {
  max-width: 100%;
}

#user-registration.vertical .user-registration-MyAccount-navigation {
  background: #ffebe3;
}

#user-registration.vertical .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link.is-active a {
  background: #fff;
  border-color: #fe5000;
}

#user-registration .ur-edit-profile,
#user-registration .user-registration-MyAccount-content,
#user-registration.horizontal .ur-edit-profile,
#user-registration.horizontal .user-registration-MyAccount-content {
  text-align: left;
}

#user-registration.vertical .user-registration-MyAccount-content .user-registration-profile-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: inherit;
  justify-content: flex-start;
  display: none;
}

#user-registration.vertical .user-registration-MyAccount-content .user-registration-profile-header .user-registration-img-container {
  margin: 0;
  width: 100%;
}

.user-registration-EditAccountForm.edit-password p {
  margin-bottom: 0;
}

.user-registration-EditAccountForm.edit-password fieldset legend {
  margin-bottom: 0;
}

.user-registration-EditAccountForm.edit-password fieldset p:nth-child(2) {
  margin-top: 0;
}


.thankyou-page-mid .vc_col-sm-12>.vc_column-inner>.wpb_wrapper {
  max-width: 700px;
  margin: auto;
  text-align: center;
  box-shadow: 0 2px 7px #9aa0a629, 0 7px 30px #9da2a833;
  padding: 30px;
}


.create-f-form .wpcf7-form {
  border: 1px solid #e1e1e1;
  box-shadow: 0 2px 20px rgba(45, 53, 89, .1);
  padding: 20px;
  max-width: 800px;
  margin: auto;
  border-radius: 6px;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.form-half {
  width: 48.5%;
}

.form-half.full {
  width: 100%;
}

.create-f-form .wpcf7-form-control {
  margin-bottom: 0;
}

.form-half p {
  margin-top: 0;
}

.form-half label {
  font-size: 14px;
  display: block;
}

.create-f-form textarea.wpcf7-form-control {
  height: 120px;
}

.create-f-form input[type="submit"].wpcf7-form-control {
  transition: .2s linear;
  font-size: 16px;
  line-height: 18px;
  padding: 20px 24px;
  cursor: pointer;
  border: none;
  background-color: var(--orange-color);
  color: #fff;
}

.create-f-form input[type="submit"].wpcf7-form-control:hover {
  background-color: #000;
  transition: .2s linear;
}

.create-f-form .wpcf7 form .wpcf7-response-output {
  width: 100%;
}


/* how it works */

.howit-works-steps ul {
  justify-content: center;
  margin-top: 60px;
}

.howit-works-steps ul li {
  width: auto;
  box-shadow: none;
  background: none;
  width: 32%;
  position: relative;
  margin-bottom: 20px;
}

.howit-works-steps ul li:nth-child(4),
.howit-works-steps ul li:nth-child(5) {
  width: 41%;
}

.howit-works-steps ul li::after {
  content: '';
  width: 305px;
  height: 4px;
  position: absolute;
  border-bottom: 2px dashed var(--orange-color);
  top: 65px;
  right: -146px;
}

.howit-works-steps ul li:nth-child(3)::after,
.howit-works-steps ul li:nth-child(5)::after {
  display: none;
}

.howit-works-steps ul li:nth-child(4)::after {
  width: 420px;
  right: -204px;
}

.steps-icon {
  width: 80px;
  height: 80px;
  background: #fff;
  box-shadow: 0 2px 7px #9aa0a629, 0 7px 30px #9da2a833;
  border-radius: 100%;
  padding: 20px;
  display: inline-block;
  margin-bottom: 20px;
}

.steps-icon span {
  position: absolute;
  background: var(--orange-color);
  display: inline-block;
  color: #fff;
  font-weight: 600;
  border-radius: 100%;
  padding: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  font-size: 13px;
  left: -10px;
  top: 0;
}

.relative {
  position: relative;
}


.whyus.programatic .worked-parts ul li {
  width: 100%;
  background: #fff;
  border-bottom: 2px solid var(--orange-color);
  border-radius: 20px;
  box-shadow: 0 2px 7px #9aa0a629, 0 7px 30px #9da2a833;
  margin: 10px 0;
  padding: 0;
}

.whyus.programatic .worked-parts ul li h2 {
  font-weight: 700;
  font-size: 30px;
}

.question {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 20px 80px 20px 20px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.question::after {
  content: "\002B";
  font-size: 2.2rem;
  position: absolute;
  right: 20px;
  transition: 0.2s;
}

.question.active::after {
  transform: rotate(45deg);
}

.answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.answer {
  padding: 0 20px 20px;
  line-height: 1.5rem;
  text-align: left;
}

.faq-links {
  margin-top: 20px;
  text-align: left;
}

.faq-links a {
  color: var(--orange-color);
  font-weight: normal;
  font-size: 24px;
  text-decoration: underline;
}

.follow-us {
  margin-top: 40px;
}

.follow-us h4 {
  margin-bottom: 20px;
}

.follow-us .social-links {
  display: flex;
  gap: 20px;
}

.follow-us .social-links svg {
  fill: #000;
  width: 36px;
  height: 36px;
}

.follow-us .social-links .social-icons {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 100%;
  line-height: 60px;
  text-align: center;
}

.follow-us .social-links .social-icons div {
  line-height: 82px;
}

.solutions-list.dm-solutions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-column-gap: inherit;
  gap: 2%;
}

.solutions-list.dm-solutions li {
  list-style: none;
  text-align: left;
  padding: 25px;
  width: 31.5%;
  box-shadow: 0 2px 7px #9aa0a629, 0 7px 30px #9da2a833;
  position: relative;
  background: #fff;
  border-radius: 6px;
  margin-bottom: 25px;
}

.solutions-list.dm-solutions li .type-big {
  margin-top: 0;
  font-size: 20px;
}

.solutions-list.dm-solutions li p {
  margin-bottom: 18px;
}

.solutions-list.dm-solutions li .button.button__default {
  background: none;
  border: none;
  padding: 0;
}

.solutions-list.dm-solutions li .button.button__default .arrow-2023 {
  background-image: url(../images/arrow-2023-orange.svg);
  margin: 0;
  width: 16px;
  height: 16px;
}

.solutions-list.dm-solutions li .button.button__default>span:first-child {
  opacity: 0;
  width: 0;
  visibility: hidden;
  display: none;
}

.solutions-list.dm-solutions li:hover .button.button__default>span:first-child {
  opacity: 1;
  width: auto;
  visibility: visible;
  display: inline-block;
}

.solutions-list.dm-solutions li:hover .button.button__default {
  border: 1px solid var(--orange-color);
  background-color: var(--orange-color);
  padding: 12px 16px;
}

.solutions-list.dm-solutions li:hover .button.button__default .arrow-2023 {
  background-image: url(../images/arrow-2023-white.svg);
  width: 11px;
  height: 11px;
  margin-left: 10px;
}

.shadow-s-box>.vc_column-inner>.wpb_wrapper {
  box-shadow: 0px 5px 10px #e4e2e2;
  padding: 30px;
  border-radius: 10px;
  min-height: 200px;
}

.shadow-s-box>.vc_column-inner>.wpb_wrapper .wpb_content_element {
  margin-bottom: 0;
}

.text-maxwidth {
  max-width: 700px;
  margin: auto;
  font-size: 20px;
}

.top-part.solutions-single.solutions-top-n.investor-relations-sub-page {
  padding-top: 80px;
  padding-bottom: 80px;
}

.text-maxwidth.ir-sub-pages {
  max-width: 1050px;
}

.solutions-l-ic-new.ir-sub-solutions>.vc_col-sm-12>.vc_column-inner>.wpb_wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.solutions-l-ic-new.ir-sub-solutions .wpb_raw_html {
  margin-bottom: 0;
  margin-top: 20px;
}

.ir-sub-pages .options-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2%;
}

.ir-sub-pages .options-list li {
  box-shadow: 0 2px 7px #9aa0a629, 0 7px 30px #9da2a833;
  padding: 15px 15px 15px 48px;
  border-radius: 10px;
  width: 100%;
  background-position: 15px 20px;
  font-size: 17px;

  margin-bottom: 0;
}

.solutions-l-ic-new>.vc_col-sm-4.none-shadow>.vc_column-inner>.wpb_wrapper {
  box-shadow: none;
}


/* popup css ir */

.ir-option-popup {
  display: flex;
  z-index: 999999;
  width: 100%;
  height: 100%;
  position: fixed;
  visibility: hidden;
  top: 0;
  left: 0;
  background: rgba(25, 18, 12, 0.3);
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.ir-option-popup.open {
  visibility: visible;
  opacity: 1;
  filter: alpha(opacity=1);
}


.ir-option-popup-inner {
  padding: 20px;
  display: inline-block;
  max-width: 800px;
  position: relative;
  margin: auto;
  background: #fff;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -ms-transform: scale(0.7);
  /* IE 9 */
  -webkit-transform: scale(0.7);
  /* Safari */
  transform: scale(0.7);
}

.ir-option-popup.open .ir-option-popup-inner {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-transform: scale(1);
  /* IE 9 */
  -webkit-transform: scale(1);
  /* Safari */
  transform: scale(1);
}


.close {
  width: 40px;
  height: 40px;
  position: absolute;
  right: -15px;
  top: -15px;
  background: var(--orange-color);
  border-radius: 100%;
  text-align: center;
  line-height: 47px;
  cursor: pointer;
}

.close svg {
  fill: #fff;
}

.grid-2 {
  display: grid;
  grid-template-columns: 40% 56%;
  gap: 3%;
}

.irp-content h3 {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 5px;
}

.irp-content p {
  font-size: 15px;
  margin: 0;
}

.close svg {
  fill: #fff;
  width: 20px;
  height: 20px;
}

.ir-openbox {
  cursor: pointer;
}

.vc_tta-panel-body li {
  margin-bottom: 15px;
}


/* marketing landing page css start here */

:root {
  --yellow-color: #fef625;
}

#fullpage {
  height: 100vh !important;
}

.ms-banner-top {
  background: url(../images/services/Image3.png) no-repeat center bottom;
  position: relative;
}

.overlay-ms:before {
  content: '';
  position: absolute;
  background: #000;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.ms-heading-text h2 {
  color: #fff;
  font-weight: 700;
  margin-top: 50px;
  text-transform: uppercase;
  font-size: 52px;
  margin-bottom: 25px;
}


.intro {
  position: relative;
  width: 100%;
}

.fp-watermark {
  display: none !important;
}

.ms-top-two-col {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
}

.ms-top-left {
  width: 62%;
}

.ms-services-block {
  color: #fff;
  width: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ms-services-names {
  width: 200px;
  height: 200px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  position: relative;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 24px;
  text-align: center;
  z-index: 3;
}

.ms-services-names::before {
  background: #fff;
  content: '';
  width: 240px;
  height: 240px;
  opacity: 0.5;
  position: absolute;
  left: -20px;
  top: -20px;
  right: 0;
  bottom: 0;
  border-radius: 100%;
  z-index: -1;
}

.ms-services-list {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-wrap: wrap;
}

#section0 .fp-overflow {
  overflow-y: inherit;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.ms-s-list {
  width: 160px;
  height: 160px;
  background: rgba(255, 107, 38, .8);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  position: absolute;
  padding: 20px;
  z-index: 2;
  font-size: 14px;
}

.ms-s-list.ms-s-list-1 {
  top: -140px;
  align-items: flex-start;
}

.ms-s-list.ms-s-list-2 {
  top: -100px;
  background: rgba(255, 218, 78, .8);
  left: -96px;
  text-align: left;
}

.ms-s-list.ms-s-list-3 {
  top: 20px;
  background: rgba(211, 226, 133, .8);
  left: -137px;
  text-align: left;
}

.ms-s-list.ms-s-list-4 {
  top: 140px;
  background: rgba(147, 202, 101, .8);
  left: -96px;
  text-align: left;
  z-index: 1;
}

.ms-s-list.ms-s-list-5 {
  bottom: -140px;
  background: rgba(57, 178, 143, .8);
  align-items: flex-end;
}

.ms-s-list.ms-s-list-6 {
  top: -100px;
  background: rgba(131, 144, 199, .8);
  right: -96px;
  text-align: right;
}

.ms-s-list.ms-s-list-7 {
  top: 20px;
  background: rgba(255, 88, 158, .8);
  right: -137px;
  text-align: right;
}

.ms-s-list.ms-s-list-8 {
  top: 140px;
  background: rgba(240, 77, 78, .8);
  right: -96px;
  text-align: right;
}

.section2 {
  background: url(../images/services/Group-number.png) no-repeat right top #F2F9FA;
  background-size: cover;
  color: #000;
}

.ms-services-list-b {
  padding: 25px 0;
}

.ms-services-list-b ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ms-services-list-b ul li {
  list-style: none;
  width: 32%;
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(89, 100, 255, .1);
  padding: 50px;
  background: #fdfdfd;
  overflow: hidden;
  position: relative;
  margin-bottom: 25px;

}

.ms-services-list-b ul li:after {
  content: '';
  position: absolute;
  width: 234px;
  height: 234px;
  border-radius: 50%;
  top: -70px;
  right: -65px;
  background: linear-gradient(90deg, #ff7369 0%, #ffb06d 100%);
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(90deg, rgb(255, 115, 105) 0%, rgb(255, 176, 109) 100%);
  opacity: .1;
}

.ms-services-list-b ul li:nth-child(2):after {
  background-color: transparent;
  background-image: linear-gradient(180deg, #00FFF0 0%, #00D3C7 100%);
}

.ms-services-list-b ul li:nth-child(3):after {
  background-color: transparent;
  background-image: linear-gradient(180deg, #9255CE 0%, #BE60FF 100%);
}

.ms-services-list-b ul li:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 12px;
  border-radius: 0 0 20px 20px;
  transition: .3s cubic-bezier(.24, .74, .58, 1);
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg, #ff7369 0%, #ffb06d 100%);
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(90deg, rgb(255, 115, 105) 0%, rgb(255, 176, 109) 100%);
}

.ms-services-list-b ul li:hover:before {
  height: 100%;
}

.ms-services-list-b ul li:nth-child(2):before {
  background-color: transparent;
  background-image: linear-gradient(180deg, #00FFF0 0%, #00D3C7 100%);
}

.ms-services-list-b ul li:nth-child(3):before {
  background-color: transparent;
  background-image: linear-gradient(180deg, #9255CE 0%, #BE60FF 100%);
}

.ms-services-list-b ul li:hover h3,
.ms-services-list-b ul li:hover p {
  position: relative;
  z-index: 1;
  color: #fff;
}


.ms-services-list-b ul li p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 26px;
}

.ms-services-list-b ul li h3 {
  font-weight: 600;
  font-size: 30px;
}

.section3 {
  background: url(../images/services/image-1.jpg) no-repeat right top #fff;
  background-size: cover;
  color: #000;
}

.section4 {
  background: url(../images/services/image-2.jpg) no-repeat right top #fff;
  background-size: cover;
  color: #000;
}

.section5 {
  background: url(../images/services/image-3.jpg) no-repeat right top #fff;
  background-size: cover;
  color: #000;
}

.section6 {
  background: url(../images/services/bg1.jpg) no-repeat right top #fff;
  background-size: cover;
  color: #000;
}

.dark-bg {
  background: url(../images/services/testimonial-bg.png) no-repeat right top #fff;
  background-size: cover;
  color: #000;
  position: relative;
}

.white-bg {
  background: url(../images/services/white-bg.jpg) no-repeat right top #fff;
  background-size: cover;
  color: #000;
}

.dark-bg:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #000D44;
  opacity: 0.75;
}

.ms-services-list-b.two-col ul li {
  width: 48.5%;
}

.contact-ms {
  background: #888887;
}

.section2 .ms-services-list-b ul li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 35px;
  justify-content: center;
  gap: 40px;
  background-color: #fdfdfd;
  box-shadow: 0 3px 21px rgba(89, 100, 255, 8%);
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
}

.section2 .ms-services-list-b ul li::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 12px;
  border-radius: 0 20px 20px 0;
  background: linear-gradient(90deg, #ff7369 0%, #ffb06d 100%);
  transition: all 300ms linear;
  top: 0;
  right: 0;
  opacity: 1;
}

.section2 .ms-services-list-b ul li:hover::after {
  width: 100%;
}

.section2 .ms-services-list-b ul li:hover h3,
.section2 .ms-services-list-b ul li:hover p {
  position: relative;
  z-index: 1;
  color: #fff;
}

.section2 .ms-services-list-b ul li:nth-child(2)::after {
  background-color: transparent;
  background-image: linear-gradient(180deg, #40CCFC 0%, #1AECF5 100%);
}

.section2 .ms-services-list-b ul li:nth-child(3)::after {
  background-color: transparent;
  background-image: linear-gradient(90deg, #9255CE 0%, #BE60FF 100%);
}

.section2 .ms-services-list-b ul li::before {
  display: none;
}

.two-col-ms {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.ms-left {
  width: 48%;
}

.ms-right {
  width: 48%;
}

.radius {
  border-radius: 20px;
}

.ms-right .ms-services-list-b ul li {
  width: 100%;
}

.section.padtb {
  padding: 0;
}


/* advertising deck */

.advertising-deck .ms-banner-top {
  background: url(../images/services/deck-bg-top.jpg) no-repeat center bottom;
  position: relative;
}

.advertising-deck .ms-heading-text h2 {
  text-transform: none;
  font-size: 60px;
}

.advertising-deck .ms-heading-text h2 span {
  color: var(--yellow-color);
}

.advertising-deck button.button__default {
  background: rgb(255, 250, 112);
  background: -moz-linear-gradient(left, rgba(255, 250, 112, 1) 0%, rgba(203, 196, 12, 1) 100%);
  background: -webkit-linear-gradient(left, rgba(255, 250, 112, 1) 0%, rgba(203, 196, 12, 1) 100%);
  background: linear-gradient(to right, rgba(255, 250, 112, 1) 0%, rgba(203, 196, 12, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffa70', endColorstr='#cbc40c', GradientType=1);
  border: none;
  color: #000;
  display: flex;
  font-weight: 600;
  align-items: center;
}

.advertising-deck a.button-wrapper {
  text-decoration: none;
}

.advertising-deck a .arrow-2023 {
  background-image: url(../images/arrow-black-white-fill-22x22.png);
  width: 22px;
  height: 22px;
  transform: rotate(90deg);
}

html {
  scroll-behavior: smooth;
}

.advertising-deck .ms-s-list.ms-s-list-2 {
  background: rgba(254, 246, 37, .8);
}

.advertising-deck .ms-s-list.ms-s-list-5 {
  background: rgba(245, 207, 28, .8);
}

.advertising-deck .ms-s-list.ms-s-list-4 {
  background: rgba(255, 174, 47, .8);
}

.advertising-deck .black-bg {
  background: url(../images/services/7.png) no-repeat left top #1d1d1d;
  background-size: cover;
}

.advertising-deck .black-bg-2 {
  background: #262525;
}

.bg-shape-top {
  position: absolute;
  right: 5%;
  top: 0;
  max-width: 10%;
  z-index: 1;
}

.advertising-deck .section2 .ms-services-list-b ul li {
  background: #000;
}

.advertising-deck .section2 .ms-services-list-b ul li h3 {
  color: var(--yellow-color);
}

.advertising-deck .section2 .ms-services-list-b ul li p {
  color: #fff;
}

.advertising-deck .section2 .ms-services-list-b ul li:hover h3 {
  color: #fff;
}

.advertising-deck .white-bg {
  background: url(../images/services/dark-bg1.jpg) no-repeat right top #000;
  background-size: cover;
  color: #fff;
}

.advertising-deck .ms-services-list-b ul>li {
  background: none;
  padding: 0 50px;
  box-shadow: none;
  border-right: 1px solid #3e3e3e;
  border-radius: 0;
  width: 33.33%;

}

.advertising-deck .ms-services-list-b ul li:first-child {
  padding-left: 0;
}

.advertising-deck .ms-services-list-b ul li:last-child {
  border-right: none;
  padding-right: 0;
}

.advertising-deck .ms-services-list-b ul>li>ol {
  margin: 0;
  padding: 0;
}

.advertising-deck .ms-services-list-b ul>li>ol>li {
  background: none;
  padding: 0;
  color: #fff;
  width: 100% !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: none;
  margin-bottom: 15px;
}

.advertising-deck .ms-services-list-b ul>li>ol>li svg {
  fill: var(--yellow-color);
  margin-top: 4px;
}

.advertising-deck .ms-services-list-b ul>li>ol>li span {
  width: 92%;
  font-weight: 600;
  line-height: 26px;
}


.advertising-deck .ms-services-list-b ul li::before {
  background: linear-gradient(90deg, #fdfa56 0%, #f1ee44 100%);
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(90deg, rgb(253, 250, 86) 0%, rgb(241, 238, 68) 100%);
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(90deg, rgb(253, 250, 86) 0%, rgb(241, 238, 68) 100%);
  display: none;
}

.advertising-deck .ms-services-list-b ul li::after {
  background: linear-gradient(90deg, #fdfa56 0%, #f1ee44 100%);
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(90deg, rgb(253, 250, 86) 0%, rgb(241, 238, 68) 100%);
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(90deg, rgb(253, 250, 86) 0%, rgb(241, 238, 68) 100%);
  display: none;
}

.advertising-deck .ms-services-list-b ul li h3 {
  color: var(--yellow-color);
  font-weight: 600;
  margin-bottom: 25px;

}

.advertising-deck .ms-services-list-b ul li:hover h3,
.advertising-deck .ms-services-list-b ul li:hover p {
  color: var(--yellow-color);
}

.advertising-deck .section2 .ms-services-list-b ul li::after {
  background: linear-gradient(90deg, #ff7369 0%, #ffb06d 100%);
}

.page-template-meta-tech-media #fp-nav ul li a span,
.page-template-meta-tech-media .fp-slidesNav ul li a span {
  background: #fff;
}

.advertising-deck .white {
  background: #000;
}

.advertising-deck .ms-right .ms-services-list-b ul li p {
  color: #fff;
}

.advertising-deck .ms-right .ms-services-list-b ul li:hover p {
  color: #000;
}

.advertising-deck .section5 {
  background: url(../images/services/dark-bg2.jpg) no-repeat right center #000;
  background-size: cover;
  color: #fff;
}

.advertising-deck .ms-services-list-b ul li p {
  color: #fff;
}

.advertising-deck .section4 {
  background: url(../images/services/dark-bg3.jpg) no-repeat right center #000;
  background-size: cover;
  color: #fff;
}

.advertising-deck .section6 {
  background: url(../images/services/dark-bg4.jpg) no-repeat right center #000;
  background-size: cover;
  color: #fff;
}

.advertising-deck .ms-services-list-b ul li::before {
  height: 8px;
}

.advertising-deck .ms-services-list-b ul li:hover::before {
  height: 100%;
}

.advertising-deck .section6.overlay-ms:before {
  opacity: 0.2;
}

.advertising-deck .section3 {
  background: url(../images/services/dark-bg4.jpg) no-repeat right center #000;
  background-size: cover;
  color: #fff;
}


.advertising-deck .contact-ms {
  background: url(../images/services/footer-bg.jpg) no-repeat right center #000;
  background-size: cover;
  color: #fff;
}

.advertising-deck .contact-form {
  background: none;
}





.ms-s-list.ms-s-list-9,
.ms-s-list.ms-s-list-10,
.ms-s-list.ms-s-list-11,
.ms-s-list.ms-s-list-12,
.ms-s-list.ms-s-list-13,
.ms-s-list.ms-s-list-14,
.ms-s-list.ms-s-list-15,
.ms-s-list.ms-s-list-16,
.ms-s-list.ms-s-list-17,
.ms-s-list.ms-s-list-18,
.ms-s-list.ms-s-list-19,
.ms-s-list.ms-s-list-20,
.ms-s-list.ms-s-list-21,
.ms-s-list.ms-s-list-22,
.ms-s-list.ms-s-list-23,
.ms-s-list.ms-s-list-24,
.ms-s-list.ms-s-list-25 {
  width: 100px;
  height: 100px;
  font-size: 12px;
}

.ms-s-list.ms-s-list-9 {
  animation: UpDown 1s linear infinite;
  left: -197px;
  background: rgba(247, 150, 37, .8);
  top: -83px;
}

@keyframes UpDown {
  0% {
    top: -83px;
  }

  50% {
    top: -73px;
  }

  100% {
    top: -83px;
  }
}


.ms-s-list.ms-s-list-10 {
  right: 222px;
  top: -141px;
  background: rgba(245, 207, 28, .8);
  animation: UpDown1 1.5s linear infinite;
}

@keyframes UpDown1 {
  0% {
    top: -141px;
  }

  50% {
    top: -131px;
  }

  100% {
    top: -141px;
  }
}


.ms-s-list.ms-s-list-11 {
  right: 410px;
  top: -166px;
  background: rgba(240, 77, 78, .8);
  animation: UpDown2 2.2s linear infinite;
}

@keyframes UpDown2 {
  0% {
    top: -166px;
  }

  50% {
    top: -156px;
  }

  100% {
    top: -166px;
  }
}


.ms-s-list.ms-s-list-12 {
  right: -127px;
  top: -34px;
  background: rgba(131, 144, 199, .8);
  animation: UpDown3 2s linear infinite;
}


@keyframes UpDown3 {
  0% {
    top: -34px;
  }

  50% {
    top: -24px;
  }

  100% {
    top: -34px;
  }
}


.ms-s-list.ms-s-list-13 {
  left: -102px;
  top: 56px;
  background: rgba(211, 226, 133, .8);
  animation: UpDown4 2.5s linear infinite;
}

@keyframes UpDown4 {
  0% {
    top: 56px;
  }

  50% {
    top: 46px;
  }

  100% {
    top: 56px;
  }
}

.ms-s-list.ms-s-list-14 {
  left: -376px;
  top: -175px;
  background: rgba(255, 88, 158, .8);
  animation: UpDown5 0.9s linear infinite;
}

@keyframes UpDown5 {
  0% {
    top: -175px;
  }

  50% {
    top: -165px;
  }

  100% {
    top: -175px;
  }
}

.ms-s-list.ms-s-list-15 {
  right: -1px;
  top: -177px;
  background: rgba(255, 88, 158, .8);
  animation: UpDown6 1.2s linear infinite;
}

@keyframes UpDown6 {
  0% {
    top: -177px;
  }

  50% {
    top: -167px;
  }

  100% {
    top: -177px;
  }
}

.ms-s-list.ms-s-list-16 {
  right: -111px;
  top: 163px;
  animation: UpDown7 1.4s linear infinite;
  background: rgba(172, 213, 61, 0.8);
}

@keyframes UpDown7 {
  0% {
    top: 163px;
  }

  50% {
    top: 153px;
  }

  100% {
    top: 163px;
  }
}

.ms-s-list.ms-s-list-17 {
  right: -182px;
  top: 336px;
  animation: UpDown8 1.6s linear infinite;
  background: rgba(255, 252, 38, 0.8);
}

@keyframes UpDown8 {
  0% {
    top: 336px;
  }

  50% {
    top: 326px;
  }

  100% {
    top: 336px;
  }
}

.ms-s-list.ms-s-list-18 {
  right: -10px;
  top: 451px;
  animation: UpDown9 1.8s linear infinite;
  background: rgba(255, 38, 38, 0.8);
}

@keyframes UpDown9 {
  0% {
    top: 451px;
  }

  50% {
    top: 441px;
  }

  100% {
    top: 451px;
  }
}

.ms-s-list.ms-s-list-19 {
  right: 960px;
  bottom: 626px;
  animation: UpDown10 2s linear infinite;
  background: rgba(75, 255, 38, 0.8);
}

@keyframes UpDown10 {
  0% {
    bottom: 626px;
  }

  50% {
    bottom: 616px;
  }

  100% {
    bottom: 626px;
  }
}

.ms-s-list.ms-s-list-20 {
  right: 34px;
  bottom: -156px;
  animation: UpDown11 0.9s linear infinite;
  background: rgba(38, 255, 255, 0.8);
}

@keyframes UpDown11 {
  0% {
    bottom: -156px;
  }

  50% {
    bottom: -146px;
  }

  100% {
    bottom: -156px;
  }
}

.ms-s-list.ms-s-list-21 {
  right: 192px;
  bottom: -123px;
  animation: UpDown12 1.2s linear infinite;
  background: rgba(67, 148, 253, 0.8);
}

@keyframes UpDown12 {
  0% {
    bottom: -123px;
  }

  50% {
    bottom: -113px;
  }

  100% {
    bottom: -123px;
  }
}


.ms-s-list.ms-s-list-22 {
  left: 24px;
  bottom: -166px;
  animation: UpDown13 1.4s linear infinite;
  background: rgba(213, 97, 255, 0.8);
}

@keyframes UpDown13 {
  0% {
    bottom: -166px;
  }

  50% {
    bottom: -146px;
  }

  100% {
    bottom: -166px;
  }
}

.ms-s-list.ms-s-list-23 {
  left: -189px;
  bottom: -96px;
  animation: UpDown14 1.6s linear infinite;
  background: rgba(247, 120, 233, 0.8);
}

@keyframes UpDown14 {
  0% {
    bottom: -96px;
  }

  50% {
    bottom: -86px;
  }

  100% {
    bottom: -96px;
  }
}

.ms-s-list.ms-s-list-24 {
  left: -415px;
  bottom: -103px;
  animation: UpDown15 1.8s linear infinite;
  background: rgba(251, 68, 136, 0.8);
}

@keyframes UpDown15 {
  0% {
    bottom: -103px;
  }

  50% {
    bottom: -93px;
  }

  100% {
    bottom: -103px;
  }
}


.ms-s-list.ms-s-list-25 {
  left: -115px;
  top: 286px;
  animation: UpDown16 2s linear infinite;
}

@keyframes UpDown16 {
  0% {
    top: 286px;
  }

  50% {
    top: 276px;
  }

  100% {
    top: 286px;
  }
}

.advertising-deck .site-title {
  text-transform: none;
  font-size: 24px;
  color: var(--yellow-color);
  font-weight: 400;

  margin-bottom: 50px;
  font-style: italic;
}



.bottom-note {
  color: var(--yellow-color);
  font-style: italic;
  font-size: 20px;

  font-weight: 500;
}

.advertising-deck .ms-services-list-b.ttcol ul li {
  width: 48.5%;
}

.advertising-deck .ms-services-list-b {
  width: 100%;
}

.advertising-deck .fp-is-overflow .fp-overflow.fp-auto-height-responsive,
.advertising-deck .fp-is-overflow .fp-overflow.fp-auto-height,
.advertising-deck .fp-is-overflow>.fp-overflow {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.advertising-deck .section {
  height: 100vh;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.page-template-meta-tech-media .site-main {
  padding-top: 0;
  padding-bottom: 0;
}

/* scroll down */

.spinner {
  display: block;
  margin: 0 auto;
  position: absolute;
  width: 159px;
  height: 59px;
  left: 0;
  right: 0;
  bottom: 40px;
}

@-webkit-keyframes pulse {
  0% {
    opacity: 0;
    background-position: center top;
    -moz-background-size: 0 auto;
    -o-background-size: 0 auto;
    -webkit-background-size: 0 auto;
    background-size: 0 auto;
  }

  10% {
    opacity: 0;
  }

  50% {
    opacity: 1;
    -moz-background-size: 20% auto;
    -o-background-size: 20% auto;
    -webkit-background-size: 20% auto;
    background-size: 20% auto;
  }

  90% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    background-position: center bottom;
    -moz-background-size: 0 auto;
    -o-background-size: 0 auto;
    -webkit-background-size: 0 auto;
    background-size: 0 auto;
  }
}

@-moz-keyframes pulse {
  0% {
    opacity: 0;
    background-position: center top;
    -moz-background-size: 0 auto;
    -o-background-size: 0 auto;
    -webkit-background-size: 0 auto;
    background-size: 0 auto;
  }

  10% {
    opacity: 0;
  }

  50% {
    opacity: 1;
    -moz-background-size: 20% auto;
    -o-background-size: 20% auto;
    -webkit-background-size: 20% auto;
    background-size: 20% auto;
  }

  90% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    background-position: center bottom;
    -moz-background-size: 0 auto;
    -o-background-size: 0 auto;
    -webkit-background-size: 0 auto;
    background-size: 0 auto;
  }
}

@-ms-keyframes pulse {
  0% {
    opacity: 0;
    background-position: center top;
    -moz-background-size: 0 auto;
    -o-background-size: 0 auto;
    -webkit-background-size: 0 auto;
    background-size: 0 auto;
  }

  10% {
    opacity: 0;
  }

  50% {
    opacity: 1;
    -moz-background-size: 20% auto;
    -o-background-size: 20% auto;
    -webkit-background-size: 20% auto;
    background-size: 20% auto;
  }

  90% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    background-position: center bottom;
    -moz-background-size: 0 auto;
    -o-background-size: 0 auto;
    -webkit-background-size: 0 auto;
    background-size: 0 auto;
  }
}

@keyframes pulse {
  0% {
    opacity: 0;
    background-position: center top;
    -moz-background-size: 0 auto;
    -o-background-size: 0 auto;
    -webkit-background-size: 0 auto;
    background-size: 0 auto;
  }

  10% {
    opacity: 0;
  }

  50% {
    opacity: 1;
    -moz-background-size: 20% auto;
    -o-background-size: 20% auto;
    -webkit-background-size: 20% auto;
    background-size: 20% auto;
  }

  90% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    background-position: center bottom;
    -moz-background-size: 0 auto;
    -o-background-size: 0 auto;
    -webkit-background-size: 0 auto;
    background-size: 0 auto;
  }
}

.scroll-down a {
  display: block;
  opacity: 0;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  line-height: 0;
  font-size: 0;
  color: transparent;
  margin-left: auto;
  margin-right: auto;
  -moz-background-size: 0 auto;
  -o-background-size: 0 auto;
  -webkit-background-size: 0 auto;
  background-size: 0 auto;
  -webkit-animation: pulse 1.5s 0s infinite normal ease forwards;
  -moz-animation: pulse 1.5s 0s infinite normal ease forwards;
  -o-animation: pulse 1.5s 0s infinite normal ease forwards;
  animation: pulse 1.5s 0s infinite normal ease forwards;
  background-repeat: no-repeat;
}

.scroll-down a:before,
.scroll-down a:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/services/down-arrow.png) no-repeat center top;

}

.scroll-down a:before {
  -webkit-animation: pulse 1.5s 0.25s infinite normal ease forwards;
  -moz-animation: pulse 1.5s 0.25s infinite normal ease forwards;
  -o-animation: pulse 1.5s 0.25s infinite normal ease forwards;
  animation: pulse 1.5s 0.25s infinite normal ease forwards;
}

.scroll-down a:after {
  -webkit-animation: pulse 1.5s 0.5s infinite normal ease forwards;
  -moz-animation: pulse 1.5s 0.5s infinite normal ease forwards;
  -o-animation: pulse 1.5s 0.5s infinite normal ease forwards;
  animation: pulse 1.5s 0.5s infinite normal ease forwards;
}


.spinner span {
  color: var(--yellow-color);
  font-style: italic;
  display: block;
  text-align: center;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
}


.banner-l-mid {
  width: 100%;
  background: var(--yellow-color);
  text-align: center;
  padding: 20px;
  position: absolute;
  top: 0;
}

.banner-l-mid:before {
  background: url(../images/services/line-bg.jpg) no-repeat center top;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  content: '';
  bottom: 0;
}

.banner-l-mid h3 {
  font-weight: 600;
  margin: 0;
  position: relative;
  z-index: 1;
  font-size: 36px;
  text-transform: uppercase;
  font-style: italic;
  color: #000;
}

.banner-l-mid p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.archive .wp-caption-text {
  display: none
}

.navigation.pagination {
  width: 100%;
}

/* the platform page */

.platform-heading-wrapper {}

.platform-heading-wrapper .wpb_wrapper {
  text-align: center;
}


.platform-column {
  background-color: #fe5000;
}

.platform-column ul,
.text-block ul {
  list-style: none;
  margin: 0;
}

.platform-column ul li img,
.text-block ul li img {
  margin-right: 12px;
  width: 10px;
}

.platform-column::before {
  content: '';
  background: #fe5000;
  height: 100%;
  position: absolute;
  left: -100%;
  width: 100%;
}


.platform-column .svg-box svg path {
  fill: #fe5000
}

.platform-column .svg-box svg {
  fill: #fe5000
}


/* section-gray */
.platform-section2 .platform-column {
  background-color: #f1f1f1;
}

.platform-section2 .platform-column::before {
  display: none;
}

.platform-section2 .platform-column::after {
  content: '';
  background: #f1f1f1;
  height: 100%;
  position: absolute;
  right: -100%;
  width: 100%;
}

.platform-section2 .text-block-white {
  color: black;
}

.platform-section1 .vector-img {
  text-align: right;
  max-width: 424px;
}

.platform-section2 .vector-img.media-image {
  max-width: 424px;
}

.platform-heading-wrapper .platform-sub-heading {
  display: inline-block;
  padding: 8px 10px;
  border-radius: 3px;
  background-image: linear-gradient(to right, #fe5000, #ff7637);
  font-weight: 400;
  letter-spacing: 1px;
}

.platform-heading-wrapper .platform-main-heading {
  color: #fff;
  margin-bottom: 30px;
}

.svg-black {
  margin-bottom: 0;
  fill: #4d4d4e;
}

.process-wrapper {
  background: #f2f3f4;
  padding: 4rem 0;
  margin: 40px 0px;
}

.icon-grid-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 15px;
}

.icon-grid-wrap .icon-box {
  text-align: center;
}

.icon-grid-wrap .icon-box img {
  height: 150px;
}

.icon-grid-wrap .icon-box h4 {
  font-size: 17px;
  margin-top: 20px;
}

.icon-grid-wrap .icon-box img.hover {
  display: none;
}

.icon-grid-wrap .icon-box:hover img.hover {
  display: inline-block;
}

.icon-grid-wrap .icon-box:hover img.default {
  display: none;
}

.icon-grid-wrap .icon-box:hover h4 {
  color: #fe5000;
}

.icons-heading {
  text-align: center;
  margin-top: 30px;
  font-size: 27px;
  line-height: 35px;
  color: #ff7130;
}

.process-wrapper p {
  text-align: center;
  font-size: 16px;
  line-height: 30px;
  max-width: 94%;
  margin: 20px auto 0px auto;
}

.text-block-white {
  color: white;
}

.text-block-white h4 {
  /* display: inline-block; */
  /* padding: 8px 0px; */
  border-radius: 3px;
  /* background-image: linear-gradient(to right, #fe5000, #ff7637); */
  font-weight: 400;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 1px;
  font-weight: 600;
}

.text-block-white p {
  font-size: 16px;
  line-height: 27px;
  margin: 15px 0px;
  font-weight: 400;
}

.text-block-white h5 {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 10px;
  font-weight: inherit;
}

.text-block-white .icon-before {
  padding-left: 0;
  list-style: none;
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
}

.text-block .icon-before {
  padding-left: 0;
  list-style: none;
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
}

.text-block-white .icon-before li {
  display: flex;
  align-items: center;
}


.more-btn {
  display: inline-flex;
  align-items: center;
  padding: 11px 20px;
  background-color: #000;
  color: white;
  border: none;
}

.more-btn img {
  max-width: 10px;
  margin-right: 10px;
}


/* .vector-img {
  background: #f2f3f4;
  border: 5px solid #fff;
  border-radius: 10px;
  box-shadow: 0px 15px 35px 0px rgba(198, 196, 196, 0.1);
  padding: 20px 10px;
} */

.section-look {
  color: #000;
  border: 2px dashed #fe5000;
  margin: 20px auto;
  width: fit-content;
  justify-content: center;
  display: flex;
}

.section-look h3 {
  font-size: 35px;
  line-height: 45px;
  font-weight: 500;
  padding: 20px 20px;
}



/**************************************************** HOW ITS WORK PAGE******************************************* */
/* .howworks-wrapper { position: relative;}
.how-works-wrapper:before {
  position: absolute;
  right: 0;
  height: 1348px;
  width: 1032px;
  content: "";
  background-image: url(../images/bg-1.png);
}
.process-row.third { position: relative;}
.process-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: url(../images/shape-top.png) no-repeat center 15%;
}

.process-row, .process-row-single { padding: 50px 0; position: relative;}

.process-row::before, .process-row-single::before{
  background-image: url(../images/dots.png);
  position: absolute;
  left: -60px;
  height: 560px;
  width: 290px;
  content: "";
  background-repeat: no-repeat;
  top: 0;
}
.process-row-single::before { right: -60px; left: auto;}

.process-row .column, .process-row-single .column{
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.7);
  text-align: center;
  outline: 1px solid transparent;
  transition: all 500ms ease;
  box-shadow: 0 15px 46px rgb(0 0 0 / 10%);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  max-width: 400px;
}

.process-row .column h2, .process-row-single .column h2 {

  background: -webkit-linear-gradient(#fe5000, #ff7637);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.process-row .image {
  text-align: center;
}

.process-row img, .process-row-single img {
  border-radius: 5%;
  width: 50%;
  height: auto;
}

.process-row .column.last { position: relative;}
.process-row .column.last::after {
  content: ' ';
  background: #9b9b9b;
  height: 100px;
  display: block;
  position: absolute;
  bottom: -100px;
  width: 1px;
  left: 0;
  right: 0;
  margin: auto;
}

.process-row.fifth .column.last::after { display: none;}


.process-row-single {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: url(../images/shape-top.png) no-repeat center center;
  margin: 50px 0;
  position: relative;
}
.process-row-single .image { text-align: left; position: relative;}
.process-row-single .image::after {
  content: ' ';
  background: #9b9b9b;
  height: 100px;
  display: block;
  position: absolute;
  bottom: -100px;
  width: 1px;
  left: 27%;
  margin: auto;
}
.process-row-single .column { 
  background-color: wheat;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
} */

/* NEW HOW ITS WORK PAGE */
.hows-wrap { margin-top: 60px;}
.hows-wrap .hows-row { display: flex;}
.hows-wrap .hows-row .hows-content { background-image: linear-gradient(to right,  #fff, #fff, #e7e9e6); max-width: 50%; display: flex; gap: 20px; padding: 20px; min-height: 220px; align-items: center;}
.hows-wrap .hows-row .hows-content .image { align-self: center; min-width: 150px;}
.hows-wrap .hows-row .hows-content .image img { width: 100%; height: auto;}
.hows-wrap .hows-row .hows-content h2 {font-size: 20px; color: #fe5101;  text-transform: uppercase;  margin-bottom: 10px;}
.hows-wrap .hows-row .hows-content p { opacity: 0.8; margin: 0; line-height: normal; font-size: 15px;}
.hows-wrap .hows-row .number { 
  border-left: solid 5px #4e4e4e;
  border-bottom: solid 5px #4e4e4e;
  width: 170px;
  height: auto;
   display: flex;
  align-items: center;
   justify-content: center;
}
  .hows-wrap .hows-row .number span { width: 88px;
    height: 88px;
    background: #fe5000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }
  .hows-wrap .hows-row .number span em {
    border: solid 1px #ffb08c;
    color: white;
    font-style: normal;
    padding: 0;
    border-radius: 70px;
    line-height: normal;
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
  }

  /* for reverse */
.hows-wrap .hows-row.reverse { justify-content: flex-end;}
.hows-wrap .hows-row.reverse .hows-content {background-image: linear-gradient(to right, #e7e9e6, #fff, #fff); width: 49.6%;}
.hows-wrap .hows-row.reverse .hows-content,
.hows-wrap .hows-row.reverse .image
{ order: 2;}
.hows-wrap .hows-row.reverse .number {border-left: none; border-right: solid 5px #4e4e4e;}


/* THE DASHBOARD PAGE */
.deshboard-text-bg {
width: 100%;
    background-image: linear-gradient(to right,  #fe5000, #ff7637);
    position: absolute;
    transform: skewX(-12deg);
    padding: 40px 0px 40px 70px;
    color: white;
    position: relative;
    margin-left: 5%;
  }
  .deshboard-text-bg .text {transform: skewX(12deg); max-width: 500px; width: 100%;}
  .deshboard-text-bg::after {
    content: '';
    background: #ff7637;
    height: 100%;
    position: absolute;
    right: -199%;
    width: 200%;
    top: 0;
  }
  .deshboard-text-bg .text ul { list-style: none; line-height: 32px; font-size: 16px; padding: 0; }
  .deshboard-text-bg .text ul li img { margin-right: 12px;}

  .dashboard-img { border: solid 1px #c9c9c9;}