html {
  font-size: 16px;
  transition: all 0.4s;
  scroll-behavior: smooth;
}

/* common css */
.strike {
  text-align: center;
  text-decoration: line-through;
  margin-bottom: 0.5rem !important;
}

h1 span,
h2 span,
h3 span {
  color: #504ee4;
}

ul li {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #5e6175;
  margin-top: 0.75rem;
  padding-left: 0.5rem;
}
/*  */

/* hero-section */
.hero-section {
  padding: 8rem 0 4rem;
}

.hero-section .hero-subHead {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #0089ff;
  margin-bottom: 0.5rem;
}

.hero-section h1 {
  font-family: "Paytone One";
  font-style: normal;
  font-weight: 400;
  font-size: 2.875rem;
  line-height: 3.875rem;
  color: #0d144a;
  margin-bottom: 1rem;
}

.hero-section p {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #393c56;
  margin-bottom: 2rem;
  width: 87%;
}

.hero-section img {
  animation: floating 3s ease-in-out infinite;
  transition: all 0.4s;
}

@keyframes floating {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 0.5rem);
  }
  100% {
    transform: translate(0, 0);
  }
}
/*  */

/* pipeline goals */
.pipeline_goals-section {
  background: linear-gradient(
    180deg,
    #e8f4ff 0%,
    rgba(247, 251, 255, 0) 60.68%,
    rgba(236, 246, 255, 0.42) 99.88%
  );
  border-radius: 1.5rem;
  padding: 4rem 0;
}

.pipeline_goals-section .contentContainer {
  width: 92%;
  margin: auto;
}

.pipeline_goals-section h2 {
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 2.625rem;
  color: #0d144a;
  margin-bottom: 0.75rem;
}

.pipeline_goals-section p {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #393c56;
  margin-bottom: 4rem;
}

.pipeline_goals-section h3 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2.25rem;
  color: #0d144a;
  margin-bottom: 0.5rem;
}

.pipeline_goals-section ul {
  list-style-image: var(--blue-star);
  padding-left: 1.25rem;
}
/*  */

/* sales_activities */

.sales_activities-section {
  padding: 4rem 0 0;
}

.sales_activities-section .sales_activities-container {
  padding: 3rem 0 0rem;
}

.sales_activities-section .sales_activities-container:nth-child(even) .row {
  flex-direction: row-reverse;
}

.sales_activities-section .sales_activities-container:nth-child(5),
.sales_activities-section .sales_activities-container:nth-child(6) {
  background: #faf9ff;
}

.sales_activities-section .sales_activities-container:nth-child(7),
.sales_activities-section .sales_activities-container:nth-child(8) {
  background: #0d144a;
}

.sales_activities-section .sales_activities-container:nth-child(7) h2,
.sales_activities-section .sales_activities-container:nth-child(7) h3 {
  color: #fff;
}

.sales_activities-section .sales_activities-container:nth-child(7) ul li,
.sales_activities-section .sales_activities-container:nth-child(8) ul li {
  color: #efeaff;
}

.sales_activities-section .sales_activities-container:nth-child(8) h2,
.sales_activities-section .sales_activities-container:nth-child(8) h3 {
  color: #fff;
}

.sales_activities-section h2 {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 3.875rem;
  text-align: center;
  color: #0d144a;
  margin-bottom: 0rem;
}

.sales_activities-section h3 {
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 2.625rem;
  color: #0d144a;
  margin-bottom: 1.5rem;
}

.sales_activities-section ul {
  list-style-image: var(--purple-star);
  padding-left: 20px;
}

.floatDiv {
  position: fixed;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}

.dot {
  width: 1.25rem;
  height: 1.25rem;
  background: #dcd0ff;
  opacity: 0.32;
  border-radius: 50%;
  /* box-sizing: content-box !important; */
  margin: auto;
  margin-top: 14px;
  display: block;
  cursor: pointer;
  transition: background-color 0.4s ease-out;
}

.dot.active {
  opacity: 1;
  width: 1.6rem;
  height: 1.6rem;
  background: #504ee4;
  border: 4.5px solid rgb(220, 208, 255, 0.48);
  background-clip: padding-box;
  transition: background-color 0.4s ease-out;
}

/*  */

/* cta section */
.cta-section {
  background: #0d144a;
  padding: 4rem 0;
}

.cta-container {
  background: linear-gradient(97.6deg, #ced4ff 1.14%, #c9cfff 99.02%);
  border-radius: 1.5rem;
  padding: 3rem 0;
  text-align: center;
}

.cta-container h2 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 3rem;
  text-align: center;
  color: #0d144a;
  margin-bottom: 1rem;
}

.cta-container p {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #0d144a;
  margin-bottom: 2rem;
}

.cta-container .kt-btn--secondary {
  background-color: transparent !important;
}

.cta-container .kt-btn--secondary:hover {
  background-color: var(--color-blue) !important;
}

@media only screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }

  /* hero-section */
  .hero-section img {
    margin-top: 3rem;
  }

  .hero-section p {
    width: 100%;
  }

  .floatDiv {
    display: none !important;
  }
}

@media only screen and (max-width: 576px) {
  html {
    font-size: 12px !important;
  }
}
