/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 23 2026 | 07:09:01 */
/* =========================================================
   ADDO HOMEPAGE
   Hero scroll note + buying journey section
   ========================================================= */


/* Smooth navigation to homepage anchors */

html {
  scroll-behavior: smooth;
}


/* =========================================================
   HERO SCROLL NOTE
   ========================================================= */

.addo-hero-scroll-note {
  display: flex;
  align-items: center;
  gap: 10px;

  color: var(--clr-neutral-secondary, #848484);
  font-family: var(--ff-main, "Poppins", sans-serif);
  font-size: 10px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.4px;
}

.addo-hero-scroll-note__arrows {
  display: flex;
  width: 12px;
  flex-direction: column;
  align-items: center;
}

.addo-hero-scroll-note__arrows span {
  display: block;
  width: 6px;
  height: 6px;
  margin-top: -2px;

  border-right: 1px solid var(--clr-neutral-secondary, #848484);
  border-bottom: 1px solid var(--clr-neutral-secondary, #848484);

  transform: rotate(45deg);
  animation: addo-scroll-arrow 1.3s infinite;
}

.addo-hero-scroll-note__arrows span:nth-child(2) {
  animation-delay: 0.15s;
}

.addo-hero-scroll-note__arrows span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes addo-scroll-arrow {

  0%,
  100% {
    opacity: 0.2;
    transform: translateY(-2px) rotate(45deg);
  }

  50% {
    opacity: 1;
    transform: translateY(2px) rotate(45deg);
  }

}


/* =========================================================
   BUYING JOURNEY SECTION
   ========================================================= */

.addo-buying-journey-section {
  padding-block: 110px 120px !important;
  background-color: var(--clr-white, #ffffff);
  scroll-margin-top: 105px;
}

.addo-buying-journey-section > .et_pb_row {
  padding: 0 !important;
}

.addo-buying-journey-section .et_pb_code,
.addo-buying-journey-section .et_pb_code_inner {
  width: 100%;
}

.addo-buying-journey {
  display: grid;
  grid-template-columns:
    minmax(260px, 1.08fr)
    repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 30px;

  width: 100%;
  max-width: none;
  margin-inline: 0;
}


/* =========================================================
   INTRODUCTION
   ========================================================= */

.addo-buying-journey__intro {
  display: flex;
  min-width: 0;
  min-height: 390px;
  flex-direction: column;
  padding: 32px 18px 38px 0;
}

.addo-buying-journey__section-label,
#page-container .addo-buying-journey__section-label {
  margin: 0 0 14px;
  padding: 0;

  color: var(--clr-primary, #d8592c);
  font-size: 10px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

.addo-buying-journey__section-title {
  max-width: 285px;
  margin: 0;
  padding: 0;

  color: var(--clr-text-dark, #161616);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.22;
}

.addo-buying-journey__intro-copy {
  max-width: 295px;
  margin-top: auto;
}

#page-container .addo-buying-journey__intro-copy p {
  margin: 0 0 18px;
  padding: 0;

  color: var(--clr-text-dark, #161616);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}

#page-container .addo-buying-journey__intro-copy p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   PRODUCT CARDS
   ========================================================= */

.addo-buying-journey__card {
  position: relative;

  display: flex;
  min-width: 0;
  min-height: 390px;
  flex-direction: column;

  margin-top: 27px;
  padding: 58px 36px 38px;

  background-color: var(--clr-white, #ffffff);
  border-radius: 40px;
  box-shadow: 0 12px 34px rgba(18, 18, 18, 0.06);
}


/* Isolated static version of the existing circle language */

.addo-buying-journey__marker {
  position: absolute;
  top: 0;
  left: 36px;

  display: block;
  width: 54px;
  height: 54px;

  border: 1px solid #e1e1e1;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.92);

  transform: translateY(-50%);
}

.addo-buying-journey__marker::before {
  content: "";

  position: absolute;
  top: 50%;
  left: 50%;

  width: 36px;
  height: 36px;

  border: 1px solid #eeeeee;
  border-radius: 50%;

  transform: translate(-50%, -50%);
}

.addo-buying-journey__marker::after {
  content: "";

  position: absolute;
  top: 50%;
  left: 50%;

  width: 8px;
  height: 8px;

  background-color: var(--clr-primary, #d8592c);
  border-radius: 50%;

  transform: translate(-50%, -50%);
}


.addo-buying-journey__eyebrow,
#page-container .addo-buying-journey__eyebrow {
  margin: 0 0 10px;
  padding: 0;

  color: var(--clr-primary, #d8592c);
  font-size: 10px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.35px;
  text-transform: uppercase;
}

.addo-buying-journey__product-title {
  margin: 0;
  padding: 0;

  color: var(--clr-text-dark, #161616);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
}

#page-container .addo-buying-journey__description {
  margin: auto 0 0;
  padding: 0;

  color: var(--clr-text-dark, #161616);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1180px) {

  .addo-buying-journey {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .addo-buying-journey__intro {
    grid-column: 1 / -1;
    min-height: 0;
    padding: 0 0 50px;
  }

  .addo-buying-journey__section-title,
  .addo-buying-journey__intro-copy {
    max-width: 650px;
  }

  .addo-buying-journey__intro-copy {
    margin-top: 28px;
  }

  .addo-buying-journey__card {
    padding-inline: 30px;
  }

  .addo-buying-journey__marker {
    left: 30px;
  }

}


@media (max-width: 800px) {

  .addo-buying-journey-section {
    padding-block: 80px 90px !important;
  }

  .addo-buying-journey {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .addo-buying-journey__intro {
    grid-column: auto;
    padding-bottom: 24px;
  }

  .addo-buying-journey__section-title {
    max-width: 500px;
    font-size: 28px;
  }

  .addo-buying-journey__intro-copy {
    max-width: 600px;
  }

  .addo-buying-journey__card {
    min-height: 320px;
    margin-top: 27px;
  }

}


@media (max-width: 480px) {

  .addo-buying-journey-section {
    padding-block: 65px 75px !important;
  }

  .addo-buying-journey__section-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .addo-buying-journey__card {
    min-height: 300px;
    padding: 52px 26px 30px;
    border-radius: 30px;
  }

  .addo-buying-journey__marker {
    left: 26px;
    width: 48px;
    height: 48px;
  }

  .addo-buying-journey__marker::before {
    width: 32px;
    height: 32px;
  }

  .addo-buying-journey__product-title {
    font-size: 20px;
  }

  .addo-hero-scroll-note {
    align-items: flex-start;
    max-width: 240px;
    font-size: 9px;
    line-height: 14px;
  }

}

/* Match homepage journey headings to the lighter case-study style */

#page-container .addo-buying-journey__section-title {
  font-weight: 600 !important;
}

#page-container .addo-buying-journey__product-title {
  font-weight: 600 !important;
}


/* Match Business Benefits body copy to Buying Journey */

#page-container
.addo-business-benefit-card
.et_pb_text_inner p {
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
}

/* Business Benefits intro copy matches Buying Journey intro */

#page-container
.addo-business-benefits-intro-copy
.et_pb_text_inner,
#page-container
.addo-business-benefits-intro-copy
.et_pb_text_inner p {
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  color: var(--clr-white, #ffffff) !important;
}