:root {
  --primary-font: #11174a;
  --accent-background: #ffbf47;
}

/* body p {
  color: white;
} */

a {
  text-decoration: none;
  color: inherit;
}

ul li {
  list-style: none;
}

button {
  border: none;
  outline: none;
  background: none;
}

/* sup {
  font-size: 12px;
} */

h3,
h4,
h5,
h6 {
  line-height: 33px;
}

.line-gray,
.line-white {
  display: flex;
  align-items: center;
}

.line-gray::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 1px;
  margin-right: 5px;
  background: #b1b1b1;
}

.line-white::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 1px;
  margin-right: 5px;
  background: #ffffff;
}

.line-white.line-white-top {
  align-items: flex-start;
}

.line-gray-arrow::before {
  content: "\02192";
  display: inline-block;
  margin-right: 10px;
}

/* hero section */
.section__hero {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)),
    url("../images/platform/hero-bg.png");
  background-size: cover;
  background-position: center center;
  color: white;
}

.section__hero__wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 10px;
}

.acvm__page .section__hero__wrapper {
  max-width: 1130px;
}

.acvm__header__break {
  display: none;
}

@media screen and (max-width: 600px) {
  .acvm__header__break {
    display: block;
  }
}

.hero__text {
  flex: 1;
  width: 100%;
}

.hero__laptop {
  position: relative;
}

.hero__laptop img {
  max-width: 100%;
  position: relative;
  width: 600px;
  /* filter: drop-shadow(30px -20px 40px rgba(103, 103, 248, 0.5)); */
}

.hero__laptop img:nth-child(2) {
  max-width: 100%;
  position: absolute;
  top: 49px;
  left: 90px;
  width: 435px;
}

.hero__text h1 {
  font-size: clamp(45px, 5vw, 50px);
  margin: 10px 0;
}

.hero__text h1 span {
  font-weight: normal;
}
.hero__text h1 sup {
  font-size: 16px;
  position: relative;
  top: -20px;
}

.dcm__page .hero__text p,
.itg__page .hero__text p,
.acvm__page .hero__text p {
  margin: 0;
  color: white;
}

.itg__page .hero__text h1 sup small {
  top: -7px;
  left: 2px;
}

.hero__cta {
  max-width: 200px;
  width: 100%;
  padding: 15px 20px;
  /* background: #45454533; */
  background: rgba(0, 0, 0, 0.2);
  border-radius: 999px;
  color: white;
  margin-top: 20px;
}

.laptop-bg-blur {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 250px;
  z-index: 1;
  background: radial-gradient(
    circle at center,
    rgb(80, 80, 247),
    rgb(42, 42, 187)
  );
  top: -30px;
  right: 0px;
  filter: blur(90px);
  opacity: 0.5;
}

.hero__laptop img {
  z-index: 10;
}

@media (max-width: 1024px) {
  .section__hero__wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }
  .dcm__page .hero__text p,
  .itg__page .hero__text p,
  .acvm__page .hero__text p {
    margin: 0 auto;
  }
  .dcm__page .hero__text a,
  .itg__page .hero__text a,
  .acvm__page .hero__text a {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 625px) {
  .hero__laptop img {
    width: 350px;
  }

  .hero__laptop img:nth-child(2) {
    width: 255px;
    top: 28px;
    left: 51px;
  }

  .laptop-bg-blur {
    top: -50px;
    right: -20px;
  }
}

@media (max-width: 375px) {
  .hero__laptop img {
    width: 280px;
  }

  .hero__laptop img:nth-child(2) {
    width: 205px;
    top: 22px;
    left: 40px;
  }
}

/* observe section */
.section__observe {
  margin-top: 60px;
}

.section__observe__wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.observe__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.observe__header h2 {
  text-align: center;
  font-size: clamp(28px, 4vw, 50px);
}

.observe__header h2::after {
  content: "";
  display: block;
  height: 5px;
  max-width: 90px;
  border-radius: 5px;
  width: 100%;
  background: var(--accent-background);
  margin: 5px auto;
}

.observe__header p {
  margin-top: 10px;
  text-align: center;
}

.observe__tabs {
  display: flex;
  flex-wrap: wrap;
  margin-top: 25px;
  gap: 30px;
  align-items: center;
  justify-content: center;
  color: #8e93c2;
}

.observe__tab--active {
  color: var(--primary-font);
  font-weight: bold;
}

.observe__body {
  max-width: 1200px;
  min-height: 500px;
  margin: 0px auto 0;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.solutions-hint-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  display: block;
  background: var(--accent-background);
  color: var(--primary-font);
  max-width: 110px;
  width: 100%;
  align-self: flex-start;
  padding: 4px;
  font-size: 14px;
  border-radius: 99px;
  text-align: center;
  margin: 5px 0px 0px 5px;
  pointer-events: none;
  transition: all 0.05s ease;
  z-index: 9999;
}

/* .image-popup aside {
  display: flex;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 80px;
  padding: 3px 4px;
  border-radius: 99px;
  max-width: 200px;
  gap: 4px;
  justify-content: space-between;
  align-items: center;
  background: var(--accent-background);
  z-index: 999;
}

.image-popup aside button {
  width: 10px;
  height: 10px;
  border: 1px solid orange;
  order: 3;
}

.image-popup aside button:last-child {
  order: 1;
}

.image-popup aside .gallery__popup__controls--active {
  background: var(--primary-font);
} */

.scope.paused {
  animation-play-state: paused;
}
.scope {
  position: relative;
  max-width: 500px;
  width: 100%;
  height: 350px;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  transition: transform 1s ease-in-out;
  will-change: transform;
}

.scope span {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 600px;
  width: 100%;
  height: 100%;
  transform-origin: center;
  transform-style: preserve-3d;
  transition: opacity 0.5s ease-in-out;
  opacity: 0.3;
  will-change: transform, opacity;
  transform: rotateY(calc(var(--i) * 72deg)) translateZ(350px);
}

.dcm__page .observe__body {
  overflow: hidden;
}

.dcm__page .scope span {
  /* max-width: 400px; */
  transform: rotateY(calc(var(--i) * 36deg)) translateZ(780px);
}

.itg__page .scope span {
  transform: rotateY(calc(var(--i) * 120deg)) translateZ(370px);
}

.scope span img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  transform: translate3d(0, 0, 0);
  cursor: pointer;
}

.solutions__gallery__controls {
  display: flex;
  gap: 5px;
  z-index: 999;
  position: relative;
  top: -20px;
}

.gallery__control {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  transition: width 0.3s ease, background-color 0.3s ease;
  background-color: var(--primary-font);
  cursor: pointer;
}

.gallery__control--active {
  background: var(--accent-background);
  width: 20px;
}

/* @media screen and (min-width: 1500px) {
  .scope {
    max-width: 800px;
    height: 700px;
  }
  .dcm__page .scope {
    height: 700px;
  }
  .scope span {
    margin: 0 auto;
    max-width: 900px;
    transform: rotateY(calc(var(--i) * 60deg)) translateZ(700px);
  }

  .scope.acvm-img-7 span {
    transform: rotateY(calc(var(--i) * 90deg)) translateZ(600px);
  }

  .itg__page .scope span {
    transform: rotateY(calc(var(--i) * 120deg)) translateZ(570px);
  }
} */

@media screen and (max-width: 1150px) {
  .scope {
    max-width: 400px;
    height: 330px;
  }

  .dcm__page .scope {
    height: 330px;
  }

  .solutions__gallery__controls {
    top: 0px;
  }

  .dcm__page .observe__body {
    overflow: hidden;
  }

  .dcm__page .scope span {
    transform: rotateY(calc(var(--i) * 36deg)) translateZ(620px);
  }

  .scope span {
    transform: rotateY(calc(var(--i) * 72deg)) translateZ(286px);
    height: 400px;
  }
  .itg__page .scope span {
    transform: rotateY(calc(var(--i) * 120deg)) translateZ(330px);
  }

  .itg__page .section__views sup small,
  .itg__page .section__unique sup small {
    top: -0px;
  }
}

@media screen and (max-width: 986px) {
  .observe__body {
    position: relative;
  }

  .solutions-hint-popup {
    display: block;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -40%);
  }
}

@media screen and (max-width: 800px) {
  .observe__body {
    margin-top: 0;
    min-height: unset;
  }

  .scope {
    max-width: 300px;
    height: 300px;
  }

  .scope span img {
    height: 300px;
  }

  /* .dcm__page .scope {
    height: 350px;
  }

  .dcm__page .scope {
    height: 350px;
  } */

  .dcm__page .scope span {
    transform: rotateY(calc(var(--i) * 36deg)) translateZ(470px);
  }

  .scope span {
    transform: rotateY(calc(var(--i) * 72deg)) translateZ(216px);
  }
  .itg__page .scope span {
    transform: rotateY(calc(var(--i) * 120deg)) translateZ(190px);
  }
  .itg__page .section__views sup small,
  .itg__page .section__unique sup small {
    top: 10px;
  }
}

@media screen and (max-width: 568px) {
  .section__observe {
    overflow: hidden;
  }

  .observe__body {
    margin-top: 0;
    min-height: 400px;
  }

  .scope {
    height: 300px;
  }

  .dcm__page .scope {
    height: 300px;
  }

  .dcm__page .scope span {
    transform: rotateY(calc(var(--i) * 36deg)) translateZ(420px);
  }

  .scope span img {
    max-width: 300px;
    width: 100%;
    height: 100%;
    top: 30%;
    bottom: 0;
  }

  .scope span {
    max-width: 300px;
    height: 60%;
    transform: rotateY(calc(var(--i) * 72deg)) translateZ(190px);
  }
  .itg__page .scope span {
    transform: rotateY(calc(var(--i) * 120deg)) translateZ(100px);
  }
}

/* views section */

.section.section__views {
  margin-top: 60px;
}

.section__views__wrapper {
  max-width: 1200px;
  margin: 0px auto;
  padding: 0px 20px;
  display: flex;
  align-items: center;
  gap: 70px;
}

.itg__page .section__views__wrapper {
  gap: 40px;
}

.itg__page .section__views__wrapper .views__img {
  max-width: 600px;
  width: 100%;
}

.section__views__wrapper.how {
  align-items: flex-start;
}

.views__img {
  max-width: 500px;
}

.views__video {
  max-width: 600px;
}

.views__head h2 {
  font-size: clamp(38px, 4vw, 50px);
  font-weight: bolder;
}

.views__head #type-dcm-how-string {
  margin: 0;
  display: inline;
}

.views__head .yellow-line {
  display: block;
  width: 90px;
  height: 5px;
  background: var(--accent-background);
  margin: 5px auto 30px;
  position: relative;
  top: -8px;
  border-radius: 5px;
  left: -8px;
}

.views__body > p {
  color: #11174a;
  line-height: 30px;
  text-align: justify;
  margin: 10px 0 20px;
}

.section__views__wrapper.views__reverse {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

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

.views__reverse .views__body p {
  max-width: 400px;
  margin: 10px auto 0;
  text-align: center;
}

.dcm__page .views__reverse .views__body p {
  max-width: 600px;
}

.views__reverse .views__body img {
  max-width: 90%;
}

.how__cards {
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  justify-content: center;
  gap: 40px;
}

.how__card {
  max-width: 200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  border-radius: 10px;
  align-items: center;
}

.how__image {
  max-width: 60px;
  padding: 10px;
  display: block;
  border-radius: 999px;
  border: 1px solid white;
}

.how__image img {
  max-width: 100%;
}

.how__text h3 {
  font-size: 16px;
  font-weight: bolder;
  line-height: 25px;
  margin: 10px 0 5px;
  color: var(--accent-background);
  line-height: 1.2em;
}

.how__text p {
  margin: 0;
  font-size: 14px;
  color: white;
}

@media (max-width: 1130px) {
  .section__views__wrapper.how {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .views__text,
  .views__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .how__cards {
    margin-top: 10px;
    justify-content: center;
  }
}

@media (max-width: 968px) {
  .section.section__views {
    margin-top: 10px;
  }

  .section.section__views .views__reverse {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section__views__wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .views__body p {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .views__head {
    text-align: center;
  }

  /* .views__head .yellow-line {
    left: 50%;
    transform: translateX(-150%);
  } */

  .observe__body {
    min-height: unset;
  }
}

@media screen and (max-width: 800px) {
  .solutions__gallery__controls {
    margin-top: 40px;
  }
  .views__head #type-dcm-how-string {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .views__img,
  .views__video {
    max-width: 100%;
  }
}

@media screen and (max-width: 568px) {
  .solutions__gallery__controls {
    margin-top: 0px;
  }
}

@media screen and (max-width: 498px) {
  .how__cards {
    gap: 20px;
  }
}

/* notice section */
.section__notice {
  margin-top: 60px;
}

.section__notice__wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.notice__head {
  text-align: center;
}

.notice__head h2 {
  font-size: clamp(38px, 4vw, 52px);
}

.views__head h2 {
  display: inline-block;
}

#type-dcm-how-string::after {
  content: unset;
}

.views__head h2::after,
.notice__head h2::after {
  content: "";
  display: block;
  width: 90px;
  border-radius: 5px;
  height: 5px;
  background: var(--accent-background);
  margin: 0 auto;
}

.notice__desc {
  margin: 16px 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  align-items: center;
  color: var(--primary-font);
}

.notice__head .line-gray {
  color: #b1b1b1;
  font-size: 20px;
}

.notice__cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  padding: 0 20px;
  text-align: center;
}

.notice__cards li {
  background: white;
  flex-basis: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.notice__cards li div:nth-child(1) {
  background: var(--primary-font);
  max-width: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

.notice__cards li div img {
  width: 60px;
  display: block;
}

.notice__cards li h3 {
  font-size: 18px;
  text-align: left;
  color: var(--accent-background);
  line-height: 1.3em;
  margin: 0;
}

.notice__cards li p {
  text-align: left;
  margin-top: 5px;
  color: var(--primary-font);
}

.notice__arrows {
  display: flex;
  align-items: center;
  justify-content: center;
}

.notice-arrow.active {
  color: var(--accent-background);
}

.notice-arrow {
  color: #b1b1b1;
  cursor: pointer;
  font-size: 20px;
}

.notice-card-hidden {
  display: none;
}

@media screen and (max-width: 1130px) {
  .notice__cards {
    justify-content: center;
  }

  .notice__desc {
    margin-bottom: 0;
  }
}

@media (max-width: 968px) {
  .section__views {
    margin-top: 0;
  }

  .section__notice__wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .notice__head {
    flex-basis: unset;
    text-align: center;
  }

  .notice__cards {
    justify-content: center;
    gap: 10px;
  }

  .notice__arrows {
    gap: 10px;
    justify-content: center;
  }
}

@media screen and (max-width: 568px) {
  .notice__cards {
    gap: 40px;
  }

  .notice__cards li {
    flex-direction: column;
    gap: 10px;
  }

  .notice__cards li p,
  .notice__cards li h3 {
    text-align: center;
    max-width: 400px;
    margin-left: 0;
    margin-right: 0;
  }
}

@media screen and (max-width: 525px) {
  .notice__desc {
    margin-bottom: 0;
    padding: 0 10px;
  }

  .notice__cards li {
    gap: 10px;
    margin: 10px 0;
  }
}

/* risk section */
.section__risk {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)),
    url("../images/platform//risk-bg.png");
  background-size: cover;
  color: white;
  margin-top: 60px;
}

.section__risk__wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 2px;
}

.section__risk__head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.section__risk__head h2 {
  font-size: clamp(38px, 4vw, 50px);
  /* max-width: 500px; */
  text-align: center;
  width: 100%;
}

.section__risk__head h2::after {
  content: "";
  display: block;
  height: 5px;
  max-width: 90px;
  border-radius: 5px;
  width: 100%;
  background: var(--accent-background);
  margin: 5px auto;
}

.section__risk__head h2 sup {
  position: relative;
  top: -25px;
}

.section__risk__head .risk-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.section__risk__head h6 {
  font-weight: normal;
  font-size: 20px;
}

.section__risk__body {
  margin-top: 75px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
.section__risk__body p {
  color: white;
}

.section__risk__body .img {
  max-width: 500px;
  min-height: 500px;
  margin: 0 auto;
  width: 100%;
  background: url("../images/platform//risk-body.png");
  background-size: cover;
  background-position: center;
}

.section__risk__body ul {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section__risk__body ul li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 30px;
  background: rgba(217, 217, 217, 0.1);
}

.section__risk__body ul li div h6 {
  font-size: 22px;
  color: var(--accent-background);
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  align-items: center;
}

.section__risk__body ul li div h6 img {
  width: 20px;
  display: inline-block;
}

.section__risk__body ul li div p {
  font-size: 16px;
}

.section__risk__body ul li div h3 {
  text-align: center;
}

@media screen and (max-width: 1130px) {
  .section__risk__body {
    gap: 10px;
  }
}

@media (max-width: 968px) {
  .section__risk__body .img {
    display: none;
  }

  .section__risk__head h2 sup small {
    top: 0;
  }

  .risk-row img {
    display: none;
  }

  .section__risk__body ul li p,
  .section__risk__body ul li div h6 {
    text-align: center;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .section__risk__head {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}
/* uses section */
.section.section__uses {
  max-width: 1400px;
  margin: 40px auto 0;
  background: #eeeeee;
  padding: 50px 80px;
}

.section__uses > h2 {
  font-size: clamp(38px, 4vw, 50px);
  font-weight: bolder;
  margin-bottom: 20px;
}

.section__uses > h3 {
  font-size: 20px;
}

.section__uses p {
  color: #11174a;
  text-align: justify;
}

.section__uses__text {
  margin: 60px 0 30px;
}

.section__uses__text p {
  font-size: 20px;
  display: flex;
  align-items: center;
}

.section__uses__text h4 {
  margin-top: 6px;
  font-size: 20px;
  font-weight: normal;
}

.section__uses ul li h3 {
  font-size: 35px;
  font-weight: 600;
}

.section__uses > p {
  /* font-size: 20px; */
  margin: 8px 0;
}

.uses__cards li h3 span {
  margin-bottom: 5px;
  font-size: 22px;
}

.uses__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.uses__cards li {
  display: flex;
  flex-direction: column;
  flex: 1 1 300px;
  /* box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2); */
  border-bottom: 1px solid #f0ae33;
  background: #febe47;
  padding: 15px;
}

.uses__cards li:last-child {
  border-bottom: none;
}

.uses__cards ol {
  padding-left: 0;
}

.uses__cards ol li {
  margin: 10px 0;
  min-height: 80px;
  display: flex;
  align-items: center;
}

.uses__cards h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.uses__cards h3 .uc__img__wrapper {
  width: 60px;
  border-radius: 100%;
  padding: 10px;
  background: white;
}

.uses__cards h3 span img {
  max-width: 100%;
}

.uses__cards p {
  text-align: left;
  margin-bottom: 20px;
}

.solutions-demo-btn {
  display: inline-block;
  max-width: 200px;
  width: 100%;
  background: var(--primary-font);
  color: white;
  padding: 14px;
  border-radius: 999px;
  text-align: center;
  margin-top: auto;
}

.itg__page .grace__solutions__cards ul {
  margin-bottom: 20px;
}

.itg__page .solutions-demo-btn {
  align-self: center;
  background-color: #ffbf47;
  color: var(--primary-font);
}

@media (max-width: 768px) {
  .section.section__uses {
    padding: 40px;
  }
}

@media (max-width: 690px) {
  .uses__cards h3 {
    justify-content: center;
    flex-direction: column;
  }
  .uses__cards p,
  .uses__cards {
    text-align: center;
  }
  .solutions-demo-btn {
    align-self: center;
  }
}

@media (max-width: 600px) {
  .section__uses > h2 {
    text-align: center;
  }

  .section__uses > p {
    text-align: center;
  }
}

@media (max-width: 468px) {
  .section.section__uses {
    padding: 20px;
  }
}

/* cta section */
.section__cta {
  max-width: 1400px;
  margin: 0 auto;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)),
    url(../images/case-studies/case-studies-ban-bg.jpg);
  background-size: cover;
  color: white;
  padding: 50px 20px;
  text-align: center;
}

.section__cta__wrapper {
  display: flex;
  gap: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
}

.section__cta__wrapper h2 {
  color: var(--accent-background);
  font-size: clamp(38px, 5vw, 50px);
}

.section__cta__wrapper p {
  color: white;
  max-width: 900px;
  margin: 0 auto;
}

.cta__subhead {
  margin-top: 4px;
  font-size: 18px;
}

.section__cta__wrapper a,
.section__cta__wrapper button {
  padding: 11px 22px;
  border-radius: 999px;
  color: white;
  border: 1px solid white;
  max-width: 200px;
  width: 100%;
  border-radius: 999px;
  font-size: 14px;
}

.section__cta__wrapper .active {
  background: var(--accent-background);
  border-color: var(--accent-background);
  color: var(--primary-font);
}

.cta-btn-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 20px;
}

@media only screen and (max-width: 1306px) {
  .home-sec5-left {
    margin-top: 100px;
  }

  .phone-img {
    max-width: 180px;
  }

  .home-sec5 .phone-img-area img.phone-data1 {
    max-width: 180px;
    top: 54px;
  }

  .home-sec5 .phone-img-area img.phone-data2 {
    max-width: 180px;
    top: 138px;
  }

  .home-sec5 .phone-img-area img.phone-data3 {
    max-width: 180px;
    top: 218px;
  }

  .home-sec5 .phone-img-area img.phone-data4 {
    max-width: 180px;
    top: 300px;
  }

  .home-sec5 .yellow-box1 {
    width: 8%;
    height: 55%;
    margin-left: -60px;
    top: -70px;
  }

  .home-sec5 .yellow-box1 h5.verti-text {
    right: -110px;
    margin-top: -5px;
  }

  .home-sec5 .yellow-box1:hover h5.verti-text:before {
    top: -14px !important;
  }

  .left-icon-area,
  .left-icon-area2 {
    margin-top: -40px;
  }

  .inner-circle-area {
    margin-top: -30px !important;
  }

  .cir-heading1 {
    margin-top: 0px !important;
    margin-left: 0px !important;
  }

  .cir-heading2 {
    margin-top: 10px !important;
    margin-left: 20px !important;
  }

  .cir-heading3 {
    margin-top: -3px !important;
    margin-left: 20px !important;
  }

  .cir-heading4 {
    margin-top: -2px !important;
    margin-left: 15px !important;
  }

  .cir-heading5 {
    margin-top: -8px !important;
    margin-left: -2px !important;
  }

  .cir-heading6 {
    margin-top: 5px !important;
    margin-left: -5px !important;
  }

  .cir-heading7 {
    margin-top: 1px !important;
    margin-left: -10px !important;
  }

  .cir-heading8 {
    margin-top: 2px !important;
    margin-left: -10px !important;
  }

  .home-sec5 .right-gray-box {
    width: 28%;
    height: 60%;
    right: -70%;
    margin-top: 10px;
  }

  .home-sec5 .right-gray-box h5.verti-text {
    transform: rotate(-90deg) !important;
    right: -20px;
  }

  .home-sec5 .yellow-box1:hover h5.verti-text:before {
    top: -10px;
  }

  .panel p {
    font-size: 15px;
    padding: 20px 5px 20px 70px !important;
  }

  .container2 {
    margin-left: -70px;
  }

  .circle-hand1:hover .cirl-hand1-content {
    top: -30px;
    left: 190px;
  }

  .circle-hand2:hover .cirl-hand2-content {
    top: 110px;
    left: 100px;
  }

  .circle-hand3:hover .cirl-hand3-content {
    top: -20px;
    left: -310px;
  }

  .circle-hand4:hover .cirl-hand4-content {
    top: -10px;
    left: -230px;
  }
}

@media only screen and (max-width: 1247px) {
  .home-sec5-left {
    margin-top: 100px;
  }

  .phone-img {
    max-width: 180px;
  }

  .home-sec5 .phone-img-area img.phone-data1 {
    max-width: 180px;
    top: 54px;
  }

  .home-sec5 .phone-img-area img.phone-data2 {
    max-width: 180px;
    top: 138px;
  }

  .home-sec5 .phone-img-area img.phone-data3 {
    max-width: 180px;
    top: 218px;
  }

  .home-sec5 .phone-img-area img.phone-data4 {
    max-width: 180px;
    top: 300px;
  }

  .home-sec5 .yellow-box1 {
    width: 8%;
    height: 55%;
    margin-left: -60px;
    top: -70px;
  }

  .home-sec5 .yellow-box1 h5.verti-text {
    right: -87px;
    font-size: 17px;
    margin-top: -5px;
  }

  .home-sec5 .yellow-box1:hover h5.verti-text:before {
    top: -12px !important;
  }

  .left-icon-area,
  .left-icon-area2 {
    margin-top: -40px;
  }

  .inner-circle-area {
    margin-top: -50px !important;
  }

  .home-sec5-right img.inner-img {
    max-width: 150px !important;
  }

  .circle-hand1 img {
    max-width: 193.95px !important;
    margin-top: 21px !important;
    margin-left: -10px !important;
  }

  .circle-hand2 img {
    max-width: 144.15px !important;
    margin-top: -29px !important;
    margin-left: -13px !important;
  }

  .circle-hand3 img {
    max-width: 77.7px !important;
    margin-top: -25px !important;
    margin-left: 11px !important;
  }

  .circle-hand4 img {
    max-width: 122.25px !important;
    margin-top: 14px !important;
    margin-left: 25px !important;
  }

  .cir-heading1 {
    margin-top: 25px !important;
    margin-left: -12px !important;
  }

  .cir-heading2 {
    margin-top: 10px !important;
    margin-left: -15px !important;
  }

  .cir-heading3 {
    margin-top: -3px !important;
    margin-left: -25px !important;
  }

  .cir-heading4 {
    margin-top: -2px !important;
    margin-left: -25px !important;
  }

  .cir-heading5 {
    margin-top: -8px !important;
    margin-left: -20px !important;
  }

  .cir-heading6 {
    margin-top: 5px !important;
    margin-left: -8px !important;
  }

  .cir-heading7 {
    margin-top: 1px !important;
    margin-left: 3px !important;
  }

  .cir-heading8 {
    margin-top: 2px !important;
    margin-left: -3px !important;
  }

  .home-sec5 .right-gray-box {
    width: 28%;
    height: 60%;
    right: -60%;
    margin-top: 20px;
  }

  .home-sec5 .right-gray-box h5.verti-text {
    transform: rotate(-90deg) !important;
    right: -20px;
  }

  .home-sec5 .yellow-box1:hover h5.verti-text:before {
    top: -10px;
  }

  .panel p {
    font-size: 15px;
    padding: 20px 5px 20px 70px !important;
  }

  .container2 {
    width: 600px;
    margin-left: -150px;
  }

  .circle-hand1:hover .cirl-hand1-content {
    top: -20px;
    left: 150px;
  }

  .circle-hand2:hover .cirl-hand2-content {
    top: 65px;
    left: 60px;
  }

  .circle-hand3:hover .cirl-hand3-content {
    top: -20px;
    left: -300px;
  }

  .circle-hand4:hover .cirl-hand4-content {
    top: -10px;
    left: -220px;
  }
}

@media only screen and (max-width: 1199px) {
  .home-sec5-left {
    margin-top: 100px;
  }

  .phone-img {
    max-width: 180px;
  }

  .home-sec5 .phone-img-area img.phone-data1 {
    max-width: 180px;
    top: 54px;
  }

  .home-sec5 .phone-img-area img.phone-data2 {
    max-width: 180px;
    top: 138px;
  }

  .home-sec5 .phone-img-area img.phone-data3 {
    max-width: 180px;
    top: 218px;
  }

  .home-sec5 .phone-img-area img.phone-data4 {
    max-width: 180px;
    top: 300px;
  }

  .home-sec5 .yellow-box1 {
    width: 8%;
    height: 55%;
    margin-left: -60px;
    top: -70px;
  }

  .home-sec5 .yellow-box1 h5.verti-text {
    right: -87px;
    margin-top: -5px;
  }

  .home-sec5 .yellow-box1:hover h5.verti-text:before {
    top: -12px !important;
  }

  .left-icon-area,
  .left-icon-area2 {
    margin-top: -40px;
  }

  .inner-circle-area {
    margin-top: -50px !important;
  }

  .home-sec5-right img.inner-img {
    max-width: 150px !important;
  }

  .circle-hand1 img {
    max-width: 193.95px !important;
    margin-top: 21px !important;
    margin-left: -10px !important;
  }

  .circle-hand2 img {
    max-width: 144.15px !important;
    margin-top: -29px !important;
    margin-left: -13px !important;
  }

  .circle-hand3 img {
    max-width: 77.7px !important;
    margin-top: -25px !important;
    margin-left: 11px !important;
  }

  .circle-hand4 img {
    max-width: 122.25px !important;
    margin-top: 14px !important;
    margin-left: 25px !important;
  }

  .cir-heading1 {
    margin-top: 25px !important;
    margin-left: -10px !important;
  }

  .cir-heading2 {
    margin-top: 10px !important;
    margin-left: 0px !important;
  }

  .cir-heading3 {
    margin-top: -3px !important;
    margin-left: -8px !important;
  }

  .cir-heading4 {
    margin-top: -2px !important;
    margin-left: -12px !important;
  }

  .cir-heading5 {
    margin-top: -5px !important;
    margin-left: -14px !important;
  }

  .cir-heading6 {
    margin-top: 5px !important;
    margin-left: -8px !important;
  }

  .cir-heading7 {
    margin-top: 1px !important;
    margin-left: 0px !important;
  }

  .cir-heading8 {
    margin-top: 2px !important;
    margin-left: -4px !important;
  }

  .home-sec5 .right-gray-box {
    width: 28%;
    height: 60%;
    right: -70%;
    margin-top: 20px;
  }

  .home-sec5 .right-gray-box h5.verti-text {
    right: -12px;
  }

  .home-sec5 .yellow-box1:hover h5.verti-text:before {
    top: -10px;
  }

  .panel p {
    font-size: 15px;
    padding: 20px 5px 20px 70px !important;
  }

  .container2 {
    width: 600px;
    margin-left: -200px;
  }

  .circle-hand1:hover .cirl-hand1-content {
    top: -20px;
    left: 150px;
  }

  .circle-hand2:hover .cirl-hand2-content {
    top: 65px;
    left: 60px;
  }

  .circle-hand3:hover .cirl-hand3-content {
    top: -20px;
    left: -300px;
  }

  .circle-hand4:hover .cirl-hand4-content {
    top: -10px;
    left: -210px;
  }
}

@media only screen and (max-width: 1140px) {
  .home-sec5-left {
    margin-top: 100px;
  }

  .phone-img {
    max-width: 158px;
  }

  .home-sec5 .phone-img-area img.phone-data1 {
    max-width: 158px;
    top: 44px;
  }

  .home-sec5 .phone-img-area img.phone-data2 {
    max-width: 158px;
    top: 116px;
  }

  .home-sec5 .phone-img-area img.phone-data3 {
    max-width: 158px;
    top: 187px;
  }

  .home-sec5 .phone-img-area img.phone-data4 {
    max-width: 158px;
    top: 261px;
  }

  .home-sec5 .yellow-box1 {
    width: 8%;
    height: 48%;
    margin-left: -80px;
    top: -89px;
  }

  .home-sec5 .yellow-box1 h5.verti-text {
    transform: rotate(-90deg) !important;
    right: -87px;
    font-size: 17px;
    margin-top: -5px;
  }

  .home-sec5 .yellow-box1:hover h5.verti-text:before {
    top: -12px !important;
  }

  .left-icon-area,
  .left-icon-area2 {
    margin-top: -40px;
  }

  .inner-circle-area {
    margin-top: -50px !important;
  }

  .home-sec5-right img.inner-img {
    max-width: 140px !important;
  }

  .circle-hand1 img {
    max-width: 181.076px !important;
    margin-top: 30px !important;
    margin-left: -15px !important;
  }

  .circle-hand2 img {
    max-width: 134.54px !important;
    margin-top: -35px !important;
    margin-left: -16px !important;
  }

  .circle-hand3 img {
    max-width: 72.54px !important;
    margin-top: -30px !important;
    margin-left: 11px !important;
  }

  .circle-hand4 img {
    max-width: 114.1px !important;
    margin-top: 18px !important;
    margin-left: 30px !important;
  }

  .cir-heading1,
  .cir-heading2,
  .cir-heading3,
  .cir-heading4,
  .cir-heading5,
  .cir-heading6,
  .cir-heading7,
  .cir-heading8 {
    font-size: 17px !important;
  }

  .cir-heading1 {
    margin-top: 35px !important;
    margin-left: -12px !important;
  }

  .cir-heading2 {
    margin-top: 10px !important;
    margin-left: -15px !important;
  }

  .cir-heading3 {
    margin-top: 1px !important;
    margin-left: -20px !important;
  }

  .cir-heading4 {
    margin-top: 5px !important;
    margin-left: -20px !important;
  }

  .cir-heading5 {
    margin-top: -5px !important;
    margin-left: -13px !important;
  }

  .cir-heading6 {
    margin-top: 5px !important;
    margin-left: 2px !important;
  }

  .cir-heading7 {
    margin-top: 1px !important;
    margin-left: 10px !important;
  }

  .cir-heading8 {
    margin-top: 2px !important;
    margin-left: 5px !important;
  }

  .home-sec5 .right-gray-box {
    width: 28%;
    height: 60%;
    right: -60%;
    margin-top: 20px;
  }

  .home-sec5 .right-gray-box h5.verti-text {
    transform: rotate(-90deg) !important;
    right: -12px;
    font-size: 17px;
  }

  .home-sec5 .yellow-box1:hover h5.verti-text:before {
    top: -10px;
  }

  .panel p {
    font-size: 15px;
    padding: 20px 5px 20px 70px !important;
  }

  .container2 {
    width: 500px;
    margin-left: -100px;
  }

  .circle-hand1:hover .cirl-hand1-content {
    top: -20px;
    left: 110px;
  }

  .circle-hand2:hover .cirl-hand2-content {
    top: 65px;
    left: 60px;
  }

  .circle-hand3:hover .cirl-hand3-content {
    top: -20px;
    left: -280px;
  }

  .circle-hand4:hover .cirl-hand4-content {
    top: 20px;
    left: -225px;
  }
}

@media only screen and (max-width: 1100px) {
  .home-sec5-left {
    margin-top: 100px;
  }

  .phone-img {
    max-width: 158px;
  }

  .home-sec5 .phone-img-area img.phone-data1 {
    max-width: 158px;
    top: 44px;
  }

  .home-sec5 .phone-img-area img.phone-data2 {
    max-width: 158px;
    top: 116px;
  }

  .home-sec5 .phone-img-area img.phone-data3 {
    max-width: 158px;
    top: 187px;
  }

  .home-sec5 .phone-img-area img.phone-data4 {
    max-width: 158px;
    top: 261px;
  }

  .home-sec5 .yellow-box1 {
    width: 8%;
    height: 48%;
    margin-left: -80px;
    top: -89px;
  }

  .home-sec5 .yellow-box1 h5.verti-text {
    transform: rotate(-90deg) !important;
    right: -88px;
    font-size: 17px;
    margin-top: -5px;
  }

  .home-sec5 .yellow-box1:hover h5.verti-text:before {
    top: -12px !important;
  }

  .left-icon-area,
  .left-icon-area2 {
    margin-top: -40px;
  }

  .inner-circle-area {
    margin-top: -50px !important;
  }

  .home-sec5-right img.inner-img {
    max-width: 140px !important;
  }

  .circle-hand1 img {
    max-width: 181.076px !important;
    margin-top: 30px !important;
    margin-left: -15px !important;
  }

  .circle-hand2 img {
    max-width: 134.54px !important;
    margin-top: -35px !important;
    margin-left: -16px !important;
  }

  .circle-hand3 img {
    max-width: 72.54px !important;
    margin-top: -30px !important;
    margin-left: 11px !important;
  }

  .circle-hand4 img {
    max-width: 114.1px !important;
    margin-top: 18px !important;
    margin-left: 30px !important;
  }

  .cir-heading1,
  .cir-heading2,
  .cir-heading3,
  .cir-heading4,
  .cir-heading5,
  .cir-heading6,
  .cir-heading7,
  .cir-heading8 {
    font-size: 17px !important;
  }

  .cir-heading1 {
    margin-top: -145px !important;
    margin-left: -3px !important;
  }

  .cir-heading2 {
    margin-top: -15px !important;
    margin-left: -30px !important;
  }

  .cir-heading3 {
    margin-top: 40px !important;
    margin-left: -45px !important;
  }

  .cir-heading4 {
    margin-top: 80px !important;
    margin-left: -50px !important;
  }

  .cir-heading5 {
    margin-top: 95px !important;
    margin-left: -10px !important;
  }

  .cir-heading6 {
    margin-top: 80px !important;
    margin-left: 60px !important;
  }

  .cir-heading7 {
    margin-top: 40px !important;
    margin-left: 45px !important;
  }

  .cir-heading8 {
    margin-top: -15px !important;
    margin-left: 30px !important;
  }

  .home-sec5 .right-gray-box {
    width: 28%;
    height: 60%;
    right: -60%;
    margin-top: 20px;
  }

  .home-sec5 .right-gray-box h5.verti-text {
    transform: rotate(-90deg) !important;
    right: -13px;
    font-size: 17px;
  }

  .home-sec5 .yellow-box1:hover h5.verti-text:before {
    top: -10px;
  }

  .panel p {
    font-size: 15px;
    padding: 20px 5px 20px 70px !important;
  }

  .container2 {
    width: 550px;
    margin-left: -200px;
  }

  .circle-hand1:hover .cirl-hand1-content {
    top: 10px;
    left: 140px;
  }

  .circle-hand2:hover .cirl-hand2-content {
    top: 65px;
    left: 60px;
  }

  .circle-hand3:hover .cirl-hand3-content {
    top: -20px;
    left: -220px;
  }

  .circle-hand4:hover .cirl-hand4-content {
    top: 20px;
    left: -180px;
  }
}

@media only screen and (max-width: 1024px) {
  .home-sec5-left {
    margin-top: 30px;
  }

  .phone-img {
    max-width: 158px;
  }

  .home-sec5 .phone-img-area img.phone-data1 {
    max-width: 158px;
    top: 45px;
  }

  .home-sec5 .phone-img-area img.phone-data2 {
    max-width: 158px;
    top: 120px;
  }

  .home-sec5 .phone-img-area img.phone-data3 {
    max-width: 158px;
    top: 190px;
  }

  .home-sec5 .phone-img-area img.phone-data4 {
    max-width: 158px;
    top: 263px;
  }

  .home-sec5 .yellow-box1 {
    width: 10%;
    height: 37%;
    margin-left: -80px;
    top: -89px;
  }

  .home-sec5 .yellow-box1 h5.verti-text {
    transform: rotate(-90deg) !important;
    right: -85px;
    font-size: 17px;
    margin-top: -5px;
  }

  .home-sec5 .yellow-box1:hover h5.verti-text:before {
    top: -12px !important;
  }

  .inner-circle-area {
    margin-top: 30px !important;
  }

  .home-sec5-right img.inner-img {
    max-width: 120px !important;
  }

  .circle-hand1 img {
    max-width: 155.208px !important;
    margin-top: 41px !important;
    margin-left: -20px !important;
  }

  .circle-hand2 img {
    max-width: 115.2px !important;
    margin-top: -50px !important;
    margin-left: -23px !important;
  }

  .circle-hand3 img {
    max-width: 61.92px !important;
    margin-top: -55px !important;
    margin-left: 15px !important;
  }

  .circle-hand4 img {
    max-width: 97.8px !important;
    margin-top: 24px !important;
    margin-left: 40px !important;
  }

  .cir-heading1,
  .cir-heading2,
  .cir-heading3,
  .cir-heading4,
  .cir-heading5,
  .cir-heading6,
  .cir-heading7,
  .cir-heading8 {
    font-size: 17px !important;
  }

  .cir-heading1 {
    margin-top: -140px;
    margin-left: -15px;
  }

  .cir-heading2 {
    margin-top: -15px;
    margin-left: -40px;
  }

  .cir-heading3 {
    margin-top: 35px;
    margin-left: -70px;
  }

  .cir-heading4 {
    margin-top: 65px;
    margin-left: -80px;
  }

  .cir-heading5 {
    margin-top: 78px;
    margin-left: -20px;
  }

  .cir-heading6 {
    margin-top: 68px;
    margin-left: 55px;
  }

  .cir-heading7 {
    margin-top: 35px;
    margin-left: 46px;
  }

  .cir-heading8 {
    margin-top: -15px;
    margin-left: 35px;
  }

  .home-sec5 .right-gray-box {
    width: 28%;
    height: 30%;
    right: -60%;
    margin-top: 150px;
  }

  .home-sec5 .right-gray-box h5.verti-text {
    transform: rotate(-90deg) !important;
    right: -15px;
    font-size: 17px;
  }

  .home-sec5 .yellow-box1:hover h5.verti-text:before {
    top: -10px;
  }

  .container2 {
    width: 600px;
    position: absolute;
    margin-left: -30%;
  }

  .panel p {
    font-size: 15px;
    padding: 10px 5px 10px 70px;
  }

  .circle-hand1:hover .cirl-hand1-content {
    top: 10px;
    left: 110px;
  }

  .circle-hand2:hover .cirl-hand2-content {
    top: -35px;
    left: 110px;
  }

  .circle-hand3:hover .cirl-hand3-content {
    top: -30px;
    left: -220px;
  }

  .circle-hand4:hover .cirl-hand4-content {
    top: 20px;
    left: -170px;
  }
}

@media only screen and (max-width: 991px) {
  .phone-img {
    max-width: 150px;
  }

  .home-sec5 .phone-img-area img.phone-data1 {
    max-width: 150px;
    top: 45px;
  }

  .home-sec5 .phone-img-area img.phone-data2 {
    max-width: 150px;
    top: 115px;
  }

  .home-sec5 .phone-img-area img.phone-data3 {
    max-width: 150px;
    top: 180px;
  }

  .home-sec5 .phone-img-area img.phone-data4 {
    max-width: 150px;
    top: 249px;
  }

  .home-sec5-left {
    margin-top: 180px;
  }

  .home-sec5 .yellow-box1 {
    width: 8%;
    height: 50%;
    margin-left: -90px;
    top: -98px !important;
  }

  .home-sec5 .yellow-box1 h5.verti-text {
    transform: rotate(-90deg) !important;
    right: -70px !important;
    font-size: 14px;
    margin-top: -5px;
  }

  .home-sec5 .yellow-box1:hover h5.verti-text:before {
    top: -10px !important;
  }

  .home-sec5 .yellow-box1:after,
  .home-sec5 .yellow-box1:before {
    left: 40px;
    width: 14px;
    height: 14px;
    background-size: contain;
  }

  .total-icons-area .left-icon-area .icon-part img,
  .total-icons-area .left-icon-area2 .icon-part img {
    max-width: 100% !important;
    margin: auto;
    margin-bottom: 0;
  }

  .left-icon-area .icon-part,
  .left-icon-area2 .icon-part {
    width: 40%;
    margin-top: -20px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
  }

  .left-icon-area,
  .left-icon-area2 {
    width: 40%;
    margin-top: -60px;
  }

  .left-icon-area {
    margin-right: 5px;
  }

  .left-icon-area .icon-part p,
  .left-icon-area2 .icon-part p,
  .right-icon-area-text {
    font-size: 10px !important;
  }

  .inner-circle-area {
    margin-top: 30px !important;
    margin-left: -5% !important;
  }

  .home-sec5-right img.inner-img {
    max-width: 100px !important;
  }

  .circle-hand1 img {
    max-width: 129.34px !important;
    margin-top: 53px !important;
    margin-left: -27px !important;
  }

  .circle-hand2 img {
    max-width: 96.1px !important;
    margin-top: -75px !important;
    margin-left: -29px !important;
  }

  .circle-hand3 img {
    max-width: 51.6px !important;
    margin-top: -95px !important;
    margin-left: 18px !important;
  }

  .circle-hand4 img {
    max-width: 81.5px !important;
    margin-top: 30px !important;
    margin-left: 51px !important;
  }

  .cir-heading1,
  .cir-heading2,
  .cir-heading3,
  .cir-heading4,
  .cir-heading5,
  .cir-heading6,
  .cir-heading7,
  .cir-heading8 {
    font-size: 14px !important;
  }

  .cir-heading1 {
    margin-top: -120px !important;
    margin-left: -19px !important;
  }

  .cir-heading2 {
    margin-top: -10px !important;
    margin-left: -80px !important;
  }

  .cir-heading3 {
    margin-top: 28px !important;
    margin-left: -103px !important;
  }

  .cir-heading4 {
    margin-top: 58px !important;
    margin-left: -95px !important;
  }

  .cir-heading5 {
    margin-top: 68px !important;
    margin-left: -25px !important;
  }

  .cir-heading6 {
    margin-top: 60px !important;
    margin-left: 65px !important;
  }

  .cir-heading7 {
    margin-top: 28px !important;
    margin-left: 68px !important;
  }

  .cir-heading8 {
    margin-top: -10px !important;
    margin-left: 45px !important;
  }

  .home-sec5 .right-gray-box {
    width: 28%;
    height: 30%;
    right: -60%;
    margin-top: 200px;
  }

  .home-sec5 .right-gray-box h5.verti-text {
    transform: rotate(-90deg) !important;
    right: -12px;
    font-size: 14px;
  }

  .home-sec5 .yellow-box1:hover h5.verti-text:before {
    top: -10px;
  }

  .home-sec5 .right-gray-box:hover:after,
  .home-sec5 .right-gray-box:after {
    width: 14px !important;
    height: 14px !important;
    background-size: contain;
    margin-left: 5px;
  }

  .right-icon-area .icon-part p {
    font-size: 10px !important;
    width: 80%;
    margin: auto;
  }

  .right-icon-area {
    margin-left: 20px !important;
  }

  .circle-hand1:hover .cirl-hand1-content,
  .circle-hand2:hover .cirl-hand2-content,
  .circle-hand3:hover .cirl-hand3-content,
  .circle-hand4:hover .cirl-hand4-content {
    width: 150px;
    padding: 10px;
    font-size: 10px;
    color: #11174a;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
  }

  .circle-hand1:hover .cirl-hand1-content {
    top: 40px;
    left: 90px;
  }

  .circle-hand2:hover .cirl-hand2-content {
    top: -45px;
    left: 80px;
  }

  .circle-hand3:hover .cirl-hand3-content {
    top: -50px;
    left: -160px;
  }

  .circle-hand4:hover .cirl-hand4-content {
    top: 20px;
    left: -100px;
  }

  .container2 {
    width: 600px;
    position: absolute;
    margin-left: -30%;
  }

  .panel p {
    font-size: 13px;
    padding: 10px 10px 10px 70px;
  }
}

@media only screen and (max-width: 860px) {
  .phone-img {
    max-width: 120px;
  }

  .home-sec5 .phone-img-area img.phone-data1 {
    max-width: 120px;
    top: 35px;
  }

  .home-sec5 .phone-img-area img.phone-data2 {
    max-width: 120px;
    top: 90px;
  }

  .home-sec5 .phone-img-area img.phone-data3 {
    max-width: 120px;
    top: 145px;
  }

  .home-sec5 .phone-img-area img.phone-data4 {
    max-width: 120px;
    top: 198px;
  }

  .home-sec5-left {
    margin-top: 180px;
  }

  .home-sec5 .yellow-box1 {
    width: 10%;
    height: 38%;
    margin-left: -120px;
    top: -128px !important;
  }

  .home-sec5 .yellow-box1 h5.verti-text {
    transform: rotate(-90deg) !important;
    right: -60px !important;
    font-size: 12px;
    margin-top: -5px;
  }

  .home-sec5 .yellow-box1:hover h5.verti-text:before {
    top: -10px !important;
  }

  .home-sec5 .yellow-box1:after,
  .home-sec5 .yellow-box1:before {
    left: 35px;
    width: 13px;
    height: 13px;
    background-size: contain;
  }

  .home-sec5 .right-gray-box:hover:after,
  .home-sec5 .right-gray-box:after {
    width: 13px !important;
    height: 13px !important;
    background-size: contain;
    margin-left: 10px;
  }

  .total-icons-area .left-icon-area .icon-part img,
  .total-icons-area .left-icon-area2 .icon-part img {
    max-width: 100% !important;
    margin: auto;
    margin-bottom: 0;
  }

  .left-icon-area .icon-part,
  .left-icon-area2 .icon-part {
    width: 40%;
    margin-top: -20px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
  }

  .left-icon-area,
  .left-icon-area2 {
    width: 40%;
    margin-top: -60px;
  }

  .left-icon-area {
    margin-right: 5px;
  }

  .left-icon-area .icon-part p,
  .left-icon-area2 .icon-part p,
  .right-icon-area-text {
    font-size: 10px !important;
  }

  .inner-circle-area {
    margin-top: -20px !important;
    margin-left: -10% !important;
  }

  .home-sec5-right img.inner-img {
    max-width: 80px !important;
  }

  .circle-hand1 img {
    max-width: 103.44px !important;
    margin-top: 65px !important;
    margin-left: -33px !important;
  }

  .circle-hand2 img {
    max-width: 76.88px !important;
    margin-top: -122px !important;
    margin-left: -36px !important;
  }

  .circle-hand3 img {
    max-width: 41.28px !important;
    margin-top: -143px !important;
    margin-left: 28px !important;
  }

  .circle-hand4 img {
    max-width: 65.2px !important;
    margin-top: 38px !important;
    margin-left: 65px !important;
  }

  .cir-heading1,
  .cir-heading2,
  .cir-heading3,
  .cir-heading4,
  .cir-heading5,
  .cir-heading6,
  .cir-heading7,
  .cir-heading8 {
    font-size: 13px !important;
  }

  .cir-heading1 {
    margin-top: -105px !important;
    margin-left: -16px !important;
  }

  .cir-heading2 {
    margin-top: -10px !important;
    margin-left: -65px !important;
  }

  .cir-heading3 {
    margin-top: 20px !important;
    margin-left: -80px !important;
  }

  .cir-heading4 {
    margin-top: 45px !important;
    margin-left: -73px !important;
  }

  .cir-heading5 {
    margin-top: 55px !important;
    margin-left: -19px !important;
  }

  .cir-heading6 {
    margin-top: 45px !important;
    margin-left: 50px !important;
  }

  .cir-heading7 {
    margin-top: 25px !important;
    margin-left: 50px !important;
  }

  .cir-heading8 {
    margin-top: -10px !important;
    margin-left: 30px !important;
  }

  .home-sec5 .right-gray-box {
    width: 32%;
    height: 30%;
    right: -40%;
    margin-top: 130px;
  }

  .home-sec5 .right-gray-box h5.verti-text {
    transform: rotate(-90deg) !important;
    right: -11px;
    font-size: 12px;
  }

  .home-sec5 .yellow-box1:hover h5.verti-text:before {
    top: -10px;
  }

  .right-icon-area .icon-part p {
    font-size: 10px !important;
    width: 80%;
    margin: auto;
  }

  .right-icon-area {
    margin-left: 30px !important;
  }

  .circle-hand1:hover .cirl-hand1-content,
  .circle-hand2:hover .cirl-hand2-content,
  .circle-hand3:hover .cirl-hand3-content,
  .circle-hand4:hover .cirl-hand4-content {
    width: 150px;
    padding: 10px;
    font-size: 10px;
    color: #11174a;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
  }

  .circle-hand1:hover .cirl-hand1-content {
    top: 20px;
    left: 30px;
  }

  .circle-hand2:hover .cirl-hand2-content {
    top: -65px;
    left: 65px;
  }

  .circle-hand3:hover .cirl-hand3-content {
    top: -50px;
    left: -139px;
  }

  .circle-hand4:hover .cirl-hand4-content {
    top: 20px;
    left: -80px;
  }

  .container2 {
    width: 500px;
  }

  .panel p {
    font-size: 13px;
    padding: 10px 10px 10px 70px;
  }
}

@media only screen and (min-width: 768px) {
  .mblsec {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .vertical {
    margin-top: -15px;
  }

  .circle-hand-1-text,
  .circle-hand-2-text,
  .circle-hand-3-text,
  .circle-hand-4-text,
  .circle-hand-5-text,
  .circle-hand-6-text,
  .circle-hand-7-text,
  .circle-hand-8-text {
    background-color: #ffbf47;
    color: #fff;
    padding: 15px;
    border-radius: 60px;
    width: 100%;
    height: 100;
    text-align: center;
    display: none;
    margin-top: -150px;
    margin-bottom: 150px;
  }

  .heading-area {
    width: 90% !important;
  }

  .heading-area h2 {
    text-align: center !important;
  }

  .home-sec5 .heading-area {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .outcomesec {
    margin-top: -100px !important;
    margin-bottom: 50px;
  }

  .slider-cont1,
  .slider-cont2,
  .slider-cont3,
  .slider-cont4 {
    align-items: center;
    display: flex;
    background-color: #ffbf47;
    padding: 10px;
    border-radius: 50px;
    margin: 30px 0 50px 0;
  }

  .button1-content1,
  .button1-content2,
  .button1-content3 {
    background-color: #11174a;
    width: 100%;
    height: 100%;
    padding: 15px;
    border-radius: 30px;
    display: none;
    padding-bottom: 60px;
    margin-bottom: -50px;
  }

  .hoverimg {
    width: 20px;
    height: 15.26px;
    margin-right: 5px;
  }

  .hoverimg2 {
    width: 20px;
    height: 18px;
    margin-right: 5px;
  }

  .hoverimg3 {
    width: 20px;
    height: 20px;
    margin-right: 5px;
  }

  .hover-sec1-head1 {
    background-color: #ffbf47;
    display: none;
  }

  #slidersec {
    text-align: center;
  }

  .slider-img {
    margin-right: 10px;
  }

  .slider-cont2-sec,
  .slider-cont3-sec,
  .slider-cont4-sec,
  #slidericon1 {
    display: none;
  }

  .phone-area {
    background: url(../images/home-sec5-phone-img.png) no-repeat;
    width: 277px;
    height: 566px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .phone-area-data1 {
    padding-top: 77px;
  }

  .phone-data1 {
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .mbl-verti-text,
  .mbl-outcome-text {
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 30px;
    margin-top: 30px;
  }

  .mbl-verti-text2,
  .mbl-outcome-text2 {
    background-color: #ffbf47;
    padding: 20px;
    border-radius: 30px;
    margin-top: 30px;
    display: none;
  }

  .total-icons {
    background-color: #f1f1f1;
    margin-top: -70px;
    z-index: -1;
    border-radius: 30px;
    padding: 90px 10px 0;
    display: grid;
    align-items: center;
    grid-template-columns: auto auto auto auto;
    justify-content: space-evenly !important;
  }

  .top-img {
    align-items: center;
    justify-content: center;
    display: flex;
    margin: auto;
    margin-top: 10px;
  }

  .outcome-total-icon {
    grid-template-columns: auto auto !important;
    margin-top: -160px !important;
    padding-top: 170px;
  }

  .inner-area {
    margin-bottom: 300px;
  }

  .signal-down,
  .outcome-down,
  .yellow-box1,
  .phone-img-area,
  .container2,
  .right-gray-box,
  .desk,
  .inner-circle-area {
    display: none;
  }

  .circle-area {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
  }

  .fa-angles-down,
  .fa-angle-double-down:before,
  .fa-angles-down:before {
    align-items: center !important;
    display: flex !important;
    margin: auto !important;
    text-align: center !important;
  }

  .inner-img {
    width: 184px;
    height: 184px;
    align-items: center;
    justify-content: center;
    display: flex;
    margin: auto;
    position: relative;
  }

  .inner-area {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 160px;
  }

  .circle-hand-1 {
    position: absolute;
    margin-left: 168px;
    margin-top: -300px;
  }

  .circle-hand-2 {
    position: absolute;
    margin-left: 170px;
    margin-top: -38px;
  }

  .circle-hand-3 {
    position: absolute;
    margin-left: 40px;
    margin-top: -30px;
  }

  .circle-hand-4 {
    position: absolute;
    margin-left: -10px;
    margin-top: -248px;
  }

  .cir-heading1 {
    position: absolute;
    margin-top: -140px !important;
    margin-left: 180px !important;
  }

  .cir-heading2 {
    position: absolute;
    margin-top: -60px !important;
    margin-left: 370px !important;
  }

  .cir-heading3 {
    position: absolute;
    margin-top: 70px !important;
    margin-left: 420px !important;
  }

  .cir-heading4 {
    position: absolute;
    margin-top: 210px !important;
    margin-left: 370px !important;
  }

  .cir-heading5 {
    position: absolute;
    margin-top: 300px !important;
    margin-left: 180px !important;
  }

  .cir-heading6 {
    position: absolute;
    margin-top: 205px !important;
    margin-left: -40px !important;
  }

  .cir-heading7 {
    position: absolute;
    margin-top: 80px !important;
    margin-left: -60px !important;
  }

  .cir-heading8 {
    position: absolute;
    margin-top: -50px !important;
    margin-left: -20px !important;
  }
}

@media only screen and (max-width: 575px) {
  .inner-img {
    width: 150px;
    height: 150px;
    align-items: center;
    justify-content: center;
    display: flex;
    margin: auto;
    position: relative;
  }

  .inner-area {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 160px;
  }

  .circle-hand-1 {
    position: absolute;
    margin-left: 120px;
    margin-top: -250px;
  }

  .circle-hand-1 img {
    width: 200px !important;
    height: 200.8px !important;
  }

  .circle-hand-2 img {
    width: 176.54px !important;
    height: 140px !important;
  }

  .circle-hand-3 img {
    width: 90px !important;
    height: 91px !important;
  }

  .circle-hand-4 img {
    width: 118.35px !important;
    height: 150px !important;
  }

  .circle-hand-2 {
    position: absolute;
    margin-left: 120px;
    margin-top: -28px;
  }

  .circle-hand-3 {
    position: absolute;
    margin-left: 15px;
    margin-top: -30px;
  }

  .circle-hand-4 {
    position: absolute;
    margin-left: -15px;
    margin-top: -198px;
  }

  .cir-heading1 {
    position: absolute;
    margin-top: -130px !important;
    margin-left: 130px !important;
  }

  .cir-heading2 {
    position: absolute;
    margin-top: -60px !important;
    margin-left: 280px !important;
  }

  .cir-heading3 {
    position: absolute;
    margin-top: 60px !important;
    margin-left: 330px !important;
  }

  .cir-heading4 {
    position: absolute;
    margin-top: 180px !important;
    margin-left: 305px !important;
  }

  .cir-heading5 {
    position: absolute;
    margin-top: 265px !important;
    margin-left: 120px !important;
  }

  .cir-heading6 {
    position: absolute;
    margin-top: 175px !important;
    margin-left: -70px !important;
  }

  .cir-heading7 {
    position: absolute;
    margin-top: 60px !important;
    margin-left: -65px !important;
  }

  .cir-heading8 {
    position: absolute;
    margin-top: -50px !important;
    margin-left: -25px !important;
  }
}

@media only screen and (max-width: 480px) {
  .slidersontsec p {
    font-size: 0.7rem !important;
  }

  .icon-part p {
    font-size: 12px;
  }

  .home-sec5-content .heading-area h2 {
    width: 100% !important;
  }

  .inner-img {
    width: 130px;
    height: 130px;
    align-items: center;
    justify-content: center;
    display: flex;
    margin: auto;
    position: relative;
  }

  .inner-area {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 160px;
  }

  .mbl-verti-text,
  .mbl-outcome-text {
    padding: 15px;
  }

  .circle-hand-1 img {
    width: 180px !important;
    height: 180.8px !important;
  }

  .circle-hand-2 img {
    width: 151.368px !important;
    height: 120px !important;
  }

  .circle-hand-3 img {
    width: 75px !important;
    height: 75.9px !important;
  }

  .circle-hand-4 img {
    width: 102.57px !important;
    height: 130px !important;
  }

  .circle-hand-1 {
    position: absolute;
    margin-left: 69px;
    margin-top: -215px;
  }

  .circle-hand-2 {
    position: absolute;
    margin-left: 72px;
    margin-top: -28px;
  }

  .circle-hand-3 {
    position: absolute;
    margin-left: -17px;
    margin-top: -20px;
  }

  .circle-hand-4 {
    position: absolute;
    margin-left: -40px;
    margin-top: -170px;
  }

  .cir-heading1 {
    position: absolute;
    margin-top: -110px !important;
    margin-left: 84px !important;
  }

  .cir-heading2 {
    position: absolute;
    margin-top: 5px !important;
    margin-left: 170px !important;
  }

  .cir-heading3 {
    position: absolute;
    margin-top: 95px !important;
    margin-left: 205px !important;
  }

  .cir-heading4 {
    position: absolute;
    margin-top: 190px !important;
    margin-left: 170px !important;
  }

  .cir-heading5 {
    position: absolute;
    margin-top: 225px !important;
    margin-left: 80px !important;
  }

  .cir-heading6 {
    position: absolute;
    margin-top: 185px !important;
    margin-left: -30px !important;
  }

  .cir-heading7 {
    position: absolute;
    margin-top: 90px !important;
    margin-left: -45px !important;
  }

  .cir-heading8 {
    position: absolute;
    margin-top: 6px !important;
    margin-left: -10px !important;
  }
}

@media only screen and (max-width: 370px) {
  .phone-area {
    width: 200px;
    height: 408.6px;
    background-size: contain;
  }

  .phone-area-data1 {
    padding-top: 56px;
  }
}

@media only screen and (max-width: 340px) {
  .icon-part p {
    font-size: 11px;
  }

  .hover-button1 {
    padding: 10px 12px 10px 12px !important;
    font-size: 16px !important;
  }
}

.typed-cursor {
  background-color: var(--accent-background);
  width: 90px;
  height: 5px;
  display: inline-block;
  position: relative;
  border-radius: 5px;
  top: 20px;
  left: -50px;
}

@media screen and (max-width: 998px) {
  .col-reverse {
    flex-direction: column-reverse;
  }

  .typed-cursor {
    width: 50px;
    left: -50px;
  }
}

/* itg unique section */
.section__unique {
  margin: 60px 0 80px;
}

.section__unique h2 {
  text-align: center;
  font-size: clamp(28px, 4vw, 50px);
}

.itg__page .section__views h2 sup,
.section__unique h2 sup {
  font-size: 16px;
  position: relative;
  top: -25px;
}

.section__unique h2::after {
  content: "";
  display: block;
  height: 5px;
  max-width: 90px;
  border-radius: 5px;
  width: 100%;
  background: var(--accent-background);
  margin: 5px auto;
}

.unique__cards {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 5px;
}

.unique__card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 50px 0;
}

.unique__card--reverse {
  flex-direction: row-reverse;
}

.unique__card--reverse .unique__card__img {
  display: flex;
  justify-content: flex-end;
}

.unique__card__img,
.unique__card__text {
  flex: 1;
}

.unique__card__img img {
  max-width: 550px;
  width: 100%;
}

.unique__card__text h3 {
  margin-bottom: 20px;
}

.unique__card__text ul {
  margin-top: 20px;
}

.unique__card__text ul li {
  display: flex;
  /* justify-content: center; */
  align-items: flex-start;
  gap: 8px;
  margin: 20px 0;
}

.unique__card__text ul li b {
  font-size: 18px;
}

.unique__card__text ul li img {
  width: 8px;
  position: relative;
  top: 6px;
}

.card__bold {
  font-weight: bold;
  margin-top: 10px;
}

@media screen and (max-width: 1024px) {
  .unique__card {
    flex-direction: column;
    text-align: center;
  }

  .unique__card__text {
    max-width: 600px;
    margin: 20px auto;
  }

  .unique__card__text ul li {
    justify-content: flex-start;
  }

  .unique__card__text ul li p {
    text-align: left;
  }
}

/* GRACE Solutions */
.itg__page .section__cta {
  max-width: 100%;
}

.itg__page .section__uses {
  max-width: 100%;
  text-align: center;
}

.itg__page .section__uses p {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}

.itg__page .section__uses h2::after {
  content: "";
  display: block;
  height: 5px;
  max-width: 90px;
  border-radius: 5px;
  width: 100%;
  background: var(--accent-background);
  margin: 5px auto;
}

.itg__page .section__uses__wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.grace__solutions h2 sup,
.itg__page .section__uses h2 sup {
  font-size: 16px;
  position: relative;
  top: -30px;
}

.itg__page .section.section__uses h2 {
  font-size: clamp(38px, 4vw, 50px);
}

.grace__solutions__cards {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  row-gap: 80px;
  column-gap: 80px;
  flex-wrap: wrap;
  margin-top: 80px;
}

.grace__solutions__cards > div {
  max-width: 500px;
  width: 100%;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 70px 40px 40px;
}

.grace__solutions__cards > div > div {
  width: 90px;
  height: 90px;
  background: white;
  padding: 15px;
  border-radius: 200px;
  position: absolute;
  left: 50%;
  top: -45px;
  transform: translateX(-50%);
  box-shadow: -2px -2px 10px rgba(0, 0, 0, 0.1);
}

.grace__solutions__cards > div > div > img {
  max-width: 100%;
}

.grace__solutions__cards > div h3 {
  color: var(--accent-background);
  text-align: center;
}
.grace__solutions__cards > div h3 sup {
  position: relative;
  top: -15px;
}

.grace__solutions__cards > div ul {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.grace__solutions__cards > div ul li {
  display: flex;
  gap: 5px;
  align-items: flex-start;
}

.grace__solutions__cards > div p {
  color: white;
  line-height: 28px;
}

.grace__solutions__cards > div ul li img {
  width: 8px;
  position: relative;
  top: 6px;
}

@media screen and (max-width: 1250px) {
  .grace__solutions__cards {
    column-gap: 40px;
  }

  .itg__page .section__uses {
    padding: 40px;
  }

  .itg__page .section__uses p {
    text-align: center;
  }

  .itg__page .section__uses h2 {
    text-align: center;
  }
}

@media screen and (max-width: 1024px) {
  .grace__solutions h2 sup,
  .itg__page .section__uses h2 sup {
    top: -20px;
  }
}

@media screen and (max-width: 568px) {
  .itg__page .section__uses {
    padding: 20px;
  }

  .itg__page .unique__card li b {
    display: block;
  }

  .itg__page .unique__card li p {
    /* text-align: justify; */
    max-width: 300px;
    width: 100%;
  }

  .itg__page .unique__card ul li {
    justify-content: center;
  }

  .unique__card__text ul {
    margin-top: 40px;
  }
}

.mainplatform-sec4 .plattext,
.mainplatform-sec6 .plattext,
.mainplatform-sec8 .plattext {
  max-width: 470px;
}

@media (min-width: 1024px) {
  .itg__page h2 sup small {
    position: relative;
    top: -5px;
  }
}

/* v2 platform  */
.v2-plt-hero {
  background: linear-gradient(to right, #11174adb, #11174ade),
    url("../images/platform/v2-platform-hero-banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.v2-plt-hero .container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 5px;
}

.v2-plt-hero .container h1 {
  font-size: 48px;
  color: white;
}

.v2-plt-hero .container h1 span {
  color: #ffbf47;
}

.v2-plt-hero p {
  color: white;
  font-weight: 300;
  max-width: 900px;
  margin: 0px auto;
}

.v2-plt-hero a {
  margin-top: 32px;
}

/* what section */
.v2-plt-what .container {
  padding: 100px 5px;
  display: flex;
  gap: 20px;
}

.v2-plt-what .text {
  flex: 1;
  width: 100%;
}

.v2-plt-what .img {
  flex: 1;
  max-width: 600px;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.v2-plt-what .text h2 {
  font-size: 38px;
  font-weight: bolder;
}

.v2-plt-what .text span {
  position: relative;
}

.v2-plt-what .text span sup {
  position: absolute;
  /* top: 2px; */
  right: -4px;
}

.v2-plt-what .text > p {
  margin-top: 20px;
}

.v2-plt-what span:nth-child(2) {
  color: #ffbf47;
}

.plt-what-cards {
  margin-top: 30px;
}

.plt-what-cards li {
  display: flex;
  margin-top: 10px;
  align-items: baseline;
  gap: 8px;
  background: #f6f7ff;
  padding: 20px;
  border-left: 2px solid #11174a;
  border-radius: 20px;
}

.plt-what-cards li h3 {
  font-weight: bold;
  font-size: 20px;
}

.plt-what-cards li p {
  margin: 0;
  font-weight: 400;
  color: #11174ab2;
}

.v2-plt-what .img video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 1024px) {
  .v2-plt-what .container {
    flex-direction: column;
    padding: 60px 5px;
  }

  .v2-plt-what .text > p,
  .v2-plt-what .text h2 {
    text-align: center;
  }

  .v2-plt-what .container .img {
    flex: unset;
    height: 300px;
    max-width: 100%;
  }

  .v2-plt-what .container .img video {
    height: 300px;
    width: 100%;
  }
}

/* dna section */
.v2-dna {
  position: relative;
  /* background: linear-gradient(to bottom, #11174a5b, #11174ad2),
    url("../images/platform/dna-bg.jpg"); */
  padding-bottom: 56.25%;
}
.v2-dna .container {
  /* padding: 100px 5px; */
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.v2-dna .container h2 {
  color: white;
  font-size: 38px;
  font-weight: bolder;
}

.v2-dna .container h2 span {
  margin-right: 6px;
  position: relative;
}

.v2-dna .container h2 sup {
  position: absolute;
  top: 10px;
  right: -6px;
}

.v2-dna .container p {
  color: white;
  font-weight: 300;
  max-width: 800px;
  margin: 10px auto;
}

.v2-dna .container video {
  max-width: 100%;
  margin-top: 40px;
  display: none;
}

.v2-dna > video {
  width: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 900px) {
  .v2-dna {
    padding: 0;
    background: linear-gradient(to bottom, #11174a5b, #11174ad2),
      url("../images/platform/dna-bg.jpg");
  }

  .v2-dna .container {
    padding: 60px 5px;
    left: unset;
    top: unset;
    position: relative;
    transform: translateX(0);
  }

  .v2-dna .container video {
    display: block;
  }

  .v2-dna > video {
    display: none;
  }
}

/* v2 pillars */

.v2-plt-pillar .head {
  max-width: 1200px;
}

.v2-plt-pillar .head p {
  max-width: 800px;
  margin: 0 auto;
}

.v2-plt-pillar .head h2 {
  margin-bottom: 20px;
}

/* infrastructure */
.v2-infrastructure {
  background: #eaecff;
  padding: 100px 5px;
}

.v2-infrastructure .container {
  max-width: 1400px;
}

.v2-infrastructure .head {
  text-align: center;
}

.v2-infrastructure .head h2 {
  font-size: 38px;
  font-weight: bolder;
}

.v2-infrastructure .head h2 span {
  color: #ffbf47;
}

.v2-infrastructure .head p {
  max-width: 1000px;
  margin: 16px auto;
}

.infra-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
  justify-content: center;
}

.infra-card {
  display: flex;
  background: white;
  padding: 20px;
  padding-right: 0;
  max-width: 400px;
  border-radius: 5px;
}

.infra-card .text {
  flex: 1;
}

.infra-card .text h3 {
  font-size: 18px;
  font-weight: bolder;
}

.infra-card .img {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.infra-card .img img:nth-child(2) {
  max-width: 100%;
  height: 150px;
  width: 150px;
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
}

.infra-card .img img.icon {
  width: 50px;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}

@media (min-width: 850px) {
  .infra-card-reverse {
    flex-direction: row-reverse;
    padding-left: 0;
    padding-right: 20px;
  }

  .infra-card-reverse .img {
    justify-content: flex-start;
  }

  .infra-card-reverse .img img:nth-child(2) {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 999px;
    border-top-right-radius: 999px;
  }

  .infra-card-reverse .img img.icon {
    right: 15px;
    left: unset;
  }
}

@media (max-width: 900px) {
  .v2-plt-pillar {
    padding: 60px 5px;
  }

  .v2-infrastructure {
    padding: 60px 5px;
  }
}

/* modular section */
.v2-modular {
  background: url("../images/platform/Seperate-Background.png");
  background-position: top center;
  background-size: cover;
}

.v2-modular .container {
  padding: 100px 5px;
  max-width: 1400px;
  margin: 0 auto;
}

.v2-modular-title {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.v2-modular h2 {
  font-size: 38px;
  font-weight: bolder;
  display: inline-block;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.v2-modular h2 span {
  position: relative;
}

.v2-modular h2 span::after {
  content: "";
  display: block;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 99px;
  position: absolute;
  background: white;
}

.v2-modular h2 b span::after {
  top: 0;
  right: 0;
  left: unset;
}

.v2-modular div {
  position: relative;
}

.v2-modular-imgs {
  margin: 60px 0;
}

.v2-modular img {
  z-index: 10;
  position: relative;
  max-width: 100%;
}

img.modular-glow {
  width: 100%;
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 0;
  width: 100%;
}

.v2-modular p {
  color: white;
  text-align: center;
  font-weight: 300;
  max-width: 800px;
  margin: 20px auto 0;
  padding: 16px;
  border-radius: 10px;
  background: linear-gradient(to bottom, #ffffff02, #ffffff1a);
}

@media (max-width: 900px) {
  .v2-modular .container {
    padding: 60px 5px;
  }
}

/* why choose */
.v2-plt-why .container {
  display: flex;
  justify-content: space-around;
  padding-top: 40px;
  align-items: center;
  gap: 40px;
}

.v2-plt-why .text h2 {
  font-size: 38px;
  font-weight: bolder;
}

.v2-plt-why .text h2 span {
  position: relative;
  color: #ffbf47;
  margin-right: 6px;
}

.v2-plt-why .text h2 span sup {
  position: absolute;
  top: 10px;
  right: -4px;
}

.v2-plt-why .text ul {
  margin-top: 30px;
}
.v2-plt-why .text li {
  display: flex;
  align-items: center;
  margin: 30px 0;
  gap: 15px;
}

.v2-plt-why .text img {
  width: 50px;
}

.v2-plt-why .text p {
  font-weight: bolder;
  font-size: 18px;
  color: var(--primary-font);
}

.v2-plt-why .img img {
  max-width: 400px;
  position: relative;
  top: 40px;
}

@media (max-width: 1024px) {
  .v2-plt-why .container {
    flex-direction: column-reverse;
    align-items: center;
  }

  .v2-plt-why .text h2 {
    text-align: center;
  }

  .v2-plt-why .img img {
    max-width: 300px;
  }
}

/* dial section */
.v2-dial {
  background: #11174a;
}

.v2-dial .container {
  padding: 100px 5px 0;
}

.v2-dial .container h2 {
  color: white;
  font-size: 38px;
  font-weight: bolder;
  text-align: center;
}

.v2-dial .container h2 span {
  color: #ffbf47;
  position: relative;
}

.v2-dial .container h2 sup {
  position: absolute;
  /* top: 2px; */
  right: -4px;
}

.v2-dial-wrapper {
  margin-top: 40px;
  /* width: 400px; */
  height: 400px;
  position: relative;
}

.v2-dial-circle {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 500px;
  height: 500px;
  border: 1px solid white;
  border-top-right-radius: 999px;
  border-top-left-radius: 999px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  top: 150px;
}

.v2-dial-circle > img {
  max-width: 150px;
  margin-top: 100px;
}

.v2-dials-dial {
  display: flex;
  align-items: center;
  position: absolute;
}

.v2-dials-dial img {
  width: 60px;
}

.v2-dials-dial .v2-dial-context {
  position: absolute;
  color: white;
  width: 290px;
  padding: 10px;
}

.v2-dial-context p {
  font-weight: 300;
  font-size: 15px;
  color: #ffffffb2;
}

.v2-dial-1 .v2-dial-context {
  text-align: right;
  left: -300px;
}

.v2-dial-2 .v2-dial-context {
  text-align: right;
  left: -300px;
}
.v2-dial-3 .v2-dial-context {
  text-align: center;
  left: -120px;
  top: -110px;
  width: 300px;
}

.v2-dial-4 .v2-dial-context {
  right: -290px;
}

.v2-dial-5 .v2-dial-context {
  right: -300px;
}

.v2-dials-dial div h4 {
  font-size: 18px;
  font-weight: bolder;
  margin: 0;
}

.v2-dials-dial h4 {
  font-size: 18px;
}

.v2-dial-context-global {
  color: white;
  text-align: center;
  margin: 0 auto;
  max-width: 600px;
  min-height: 100px;
  display: none;
}

.v2-dial-context-global p {
  color: white;
}

@media (max-width: 1100px) {
  .v2-dials-dial .v2-dial-context {
    display: none;
  }

  .v2-dial-context-global {
    display: block;
  }

  .v2-dial-circle {
    top: 50px;
  }

  .v2-dials-dial.active {
    box-shadow: 0px 0px 2px 4px #ffbf47c2;
    border-radius: 50%;
  }
}

@media (max-width: 600px) {
  .v2-dial-circle {
    height: 400px;
    width: 400px;
    top: 50px;
  }

  .v2-dial-wrapper {
    height: 350px;
  }

  .v2-dial-circle > img {
    margin-top: 40px;
  }
}
@media (max-width: 478px) {
  .v2-dial-circle {
    height: 300px;
    width: 300px;
    top: 70px;
  }

  .v2-dial-wrapper {
    overflow: hidden;
  }

  .v2-dial-circle > img {
    margin-top: 40px;
  }
}

/* impact */
.v2-plt-impact .container {
  padding: 100px 5px 50px;
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 20px;
}

.v2-plt-impact .text {
  flex: 1;
}

.v2-plt-impact .text h2 {
  font-size: 38px;
  font-weight: bolder;
}

.v2-plt-impact .text h2 span {
  color: #ffbf47;
}

.v2-plt-impact .text p {
  max-width: 400px;
  font-weight: 300;
}

.impact-cards {
  flex: 1;
}

.impact-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  padding: 20px;
  border-radius: 10px;
  border-left: 2px solid #11174a;
  margin: 50px 0;
  z-index: 10;
  position: relative;
}

.impact-card .quotes {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
}

.impact-card:nth-child(odd) {
  margin-left: 80px;
}

.impact-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  object-position: top center;
  border-radius: 999px;
}

.impact-card h3 {
  font-size: 18px;
  font-weight: bolder;
  margin: 0;
}

.impact-card p {
  font-weight: 300;
}

@media (max-width: 1250px) {
  .v2-plt-impact .container {
    flex-direction: column;
  }

  .v2-plt-impact .container .text {
    text-align: center;
  }

  .v2-plt-impact .text p {
    margin: 10px auto;
  }
}

@media (max-width: 748px) {
  .impact-card:nth-child(odd) {
    margin-left: 0;
  }
}

.impact-arrow {
  height: 90px;
  width: 40%;
  background-color: #070d3b;
  position: relative;
  top: 2px;
  clip-path: polygon(0% 0%, 75% 0%, 100% 100%, 0% 100%);
}
