.elementor-5756 .elementor-element.elementor-element-b82e4ff{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-5756 .elementor-element.elementor-element-b7adb79{--display:flex;--gap:var(--srow-gap) var(--srow-gap);--row-gap:var(--srow-gap);--column-gap:var(--srow-gap);}.elementor-5756 .elementor-element.elementor-element-f6c97f3{--display:flex;}@media(max-width:767px){.elementor-5756 .elementor-element.elementor-element-b7adb79{--gap:var(--srow-gap) var(--srow-gap);--row-gap:var(--srow-gap);--column-gap:var(--srow-gap);}}/* Start custom CSS for container, class: .elementor-element-b82e4ff */@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap");


/* =========================================================
   VARIABLES
========================================================= */

:root {
  --blue: #006fbf;
  --orange: #f7902f;
  --grey: #757578;
}


/* =========================================================
   PROCESS CONTAINER
========================================================= */

.process-tabs {
  width: min(100%, 1780px);
  margin: 0 auto;


  color: #243342;

  /*
    Prevent overlapping/scaled circles from creating
    browser-level horizontal overflow.
  */
  overflow-x: clip;
}

.process-tabs *,
.process-tabs *::before,
.process-tabs *::after {
  box-sizing: border-box;
}


/*
  Base process button font.
  Elementor's global button rules are overridden further
  below with more specific .elementor-5756 .elementor-element.elementor-element-b82e4ffs.
*/

.process-tabs button {
  font: inherit;
}


/* =========================================================
   TOP DIVISION TABS
========================================================= */

.division-tabs {
      flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    display: flex;
    position: relative;
    top: -60px;
}

.division-tab {
  color: #4c5964;
  cursor: pointer;

  background: #fff;

  border: 1px solid #d7dde2;
  border-radius: 999px;

  padding: 10px 16px;


  font-size: .82rem;
  font-weight: 400;
  line-height: normal;

  text-transform: none;

  transition:
    color .2s,
    background-color .2s,
    border-color .2s,
    transform .2s,
    box-shadow .2s;
}

.division-tab:hover,
.division-tab:focus-visible {
  border-color: var(--blue);
  color: var(--blue);

  outline: none;
}

.division-tab.active {
  color: #fff;

  background: #243342;

  border-color: #243342;
}


/* =========================================================
   DIVISION CONTENT
========================================================= */

.division-content {
  display: none;
}

.division-content.active {
  display: block;
}


/* =========================================================
   STEPS CONTAINER
========================================================= */

.steps {
  width: 100%;
  max-width: 100%;

  justify-content: center;
  align-items: center;

  padding: 18px 0 42px;

  display: flex;

  /*
    Desktop:
    all circles remain visible together.
  */
  overflow: visible;
}


/* =========================================================
   CIRCULAR STEPS
========================================================= */

.step {
  /*
    Fallback only.

    Your HTML inline style controls the actual color:

    style="--step-color: #f26664;"
  */
  --step-color: #006fbf;

  aspect-ratio: 1;

  background: var(--step-color);
  background-color: var(--step-color);

  color: #fff;

  cursor: pointer;
  isolation: isolate;

  border: 0;
  border-radius: 50%;

  flex-direction: column;

  flex:
    0 1
    clamp(175px, 13.8vw, 250px);

  min-width: 0;

  justify-content: center;
  align-items: center;

  gap: 13px;

  /*
    Creates the overlapping-circle effect.
  */
  margin-left:
    clamp(-24px, -1.7vw, -12px);

  padding: 26px;



  text-transform: none;

  transition:
    transform .22s,
    filter .22s,
    box-shadow .22s;

  display: flex;
  position: relative;

  z-index: 1;
}

.step:first-child {
  margin-left: 0;
}


/* =========================================================
   STEP STATES
========================================================= */

.step:not(.active) {
  filter: saturate(.88);
}

.step:hover,
.step:focus-visible {
  filter: saturate(1.1);

  z-index: 10;

  outline: none;

  transform:
    translateY(-7px)
    scale(1.02);
}

.step.active {
  box-shadow:
    0 17px 34px
    var(--step-color);

  transform:
    translateY(-9px)
    scale(1.04);

  z-index: 20;
}

@supports (color: color-mix(in lab, red, red)) {

  .step.active {
    box-shadow:
      0 17px 34px
      color-mix(
        in srgb,
        var(--step-color) 30%,
        transparent
      );
  }

}


/* =========================================================
   STEP NUMBER
========================================================= */

.step-number {


  font-size:
    clamp(.86rem, 1.15vw, 1.12rem);

  font-weight: 400;

  line-height: 1.2;

  text-transform: none;
}


/* =========================================================
   STEP TITLE
========================================================= */

.step-title {
  display: block;

  /*
    Fixed width gives consistent wrapping inside
    all circular buttons.
  */
  text-align: center;



  font-size:
    clamp(1rem, 1.35vw, 1.35rem);

  font-weight: 500;

  line-height: 1.24;

  text-transform: none;

  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
}


/* =========================================================
   STEP CONTENT
========================================================= */

.step-content {
  display: none;
}

.step-content.active {
  display: block;
}


/* =========================================================
   DESCRIPTION PANEL
========================================================= */

.description-panel {
  border-top:
    5px solid
    var(--pointer-color, #f7902f);

  background: #f3f4f4;

  grid-template-columns:
    auto 1fr;

  align-items: center;

  gap: 24px;

  min-height: 190px;

  margin-top: 20px;

  padding:
    clamp(28px, 4vw, 58px);

  transition:
    border-color .2s;

  display: grid;

  position: relative;
}


/* =========================================================
   DESCRIPTION POINTER
========================================================= */

.pointer {
  border-left:
    5px solid
    var(--pointer-color);

  border-top:
    5px solid
    var(--pointer-color);

  background: #f3f4f4;

  width: 48px;
  height: 48px;

  position: absolute;

  top: -27px;

  left:
    clamp(44px, 7vw, 110px);

  transform: rotate(45deg);

  z-index: 0;
}


/* =========================================================
   DESCRIPTION NUMBER
========================================================= */

.description-number {
  color: #fff;

  z-index: 1;

  border-radius: 50%;

  place-items: center;

  width: 50px;
  height: 50px;



  font-size: 1.2rem;
  font-weight: 600;

  display: grid;
}


/* =========================================================
   DESCRIPTION HEADING
========================================================= */

.description-panel h3 {
  margin: 0 0 10px;



  font-size:
    clamp(1.15rem, 1.8vw, 1.6rem);

  font-weight: 500;

  line-height: 1.2;

  text-transform: none;
}


/* =========================================================
   DESCRIPTION PARAGRAPH
========================================================= */

.description-panel p {
  color: #4c4c4e;

  max-width: 1250px;

  margin: 0;



  font-size:
    clamp(1rem, 1.5vw, 1.3rem);

  line-height: 1.7;

  text-transform: none;
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 901px) {

  .steps {
    padding-left: 12px;
    padding-right: 12px;
  }

  .step {
    flex-shrink: 1;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) and (min-width: 901px) {

  .step {
    flex-basis:
      clamp(150px, 13vw, 205px);

    padding: 20px;

    gap: 9px;

    margin-left:
      clamp(-20px, -1.5vw, -10px);
  }

  .step-number {
    font-size: .8rem;
  }

  .step-title {
    font-size: 1rem;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

  .division-tabs {
    justify-content: flex-start;
  }

  /*
    Horizontal scrolling is intentionally restored on
    mobile because all seven circles cannot comfortably
    fit on a phone.
  */

  .steps {
    scroll-snap-type: x mandatory;

    justify-content: flex-start;

    overflow-x: auto;
    overflow-y: visible;

    padding:
      18px 5px 35px;
  }

  .step {
    scroll-snap-align: start;

    flex:
      0 0 190px;

    margin-left: -18px;
  }

  .step:first-child {
    margin-left: 0;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 560px) {

  .division-tab {
    padding: 9px 12px;

    font-size: .74rem;
  }

  .step {
    flex-basis: 166px;
  }


  .description-panel {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .pointer {
    left: 38px;
  }

}


/* =========================================================
   ELEMENTOR OVERRIDE
   TOP DIVISION TABS
========================================================= */

/*
  Elementor has global rules such as:

  .elementor-kit-7 button {
    background-color: ...;
    font-family: ...;
    text-transform: uppercase;
    border-radius: 0;
    padding: 16px 24px;
  }

  These rules are intentionally overridden here.
*/

.elementor-kit-7 .process-tabs .division-tab {
  font-size: .82rem !important;
  font-weight: 400 !important;

  line-height: normal !important;

  text-transform: none !important;

  color: #4c5964 !important;

  background: #fff !important;
  background-color: #fff !important;

  border: 1px solid #d7dde2 !important;
  border-radius: 999px !important;

  padding: 10px 16px !important;

  box-shadow: none !important;
}

.elementor-kit-7 .process-tabs .division-tab:hover,
.elementor-kit-7 .process-tabs .division-tab:focus,
.elementor-kit-7 .process-tabs .division-tab:focus-visible {
  color: var(--blue) !important;

  background: #fff !important;
  background-color: #fff !important;

  border-color: var(--blue) !important;
  border-radius: 999px !important;

  box-shadow: none !important;
}

.elementor-kit-7 .process-tabs .division-tab.active {
  color: #fff !important;

  background: #243342 !important;
  background-color: #243342 !important;

  border-color: #243342 !important;
  border-radius: 999px !important;

  box-shadow: none !important;
}


/* =========================================================
   ELEMENTOR OVERRIDE
   CIRCULAR STEP BUTTONS
========================================================= */

.elementor-kit-7 .process-tabs .steps button.step {

  font-size: inherit !important;
  font-weight: inherit !important;

  line-height: normal !important;

  text-transform: none !important;

  /*
    IMPORTANT:
    This uses the inline --step-color from the HTML.
  */
  background:
    var(--step-color, #006fbf) !important;

  background-color:
    var(--step-color, #006fbf) !important;

  color: #fff !important;

  border: 0 !important;
  border-radius: 50% !important;

  padding: 26px !important;

  box-shadow: none;
}


/* =========================================================
   ELEMENTOR STEP HOVER / FOCUS / ACTIVE
========================================================= */

.elementor-kit-7 .process-tabs .steps button.step:hover,
.elementor-kit-7 .process-tabs .steps button.step:focus,
.elementor-kit-7 .process-tabs .steps button.step:focus-visible,
.elementor-kit-7 .process-tabs .steps button.step:active {

  background:
    var(--step-color, #006fbf) !important;

  background-color:
    var(--step-color, #006fbf) !important;

  color: #fff !important;

  border: 0 !important;
  border-radius: 50% !important;

  outline: none !important;
}


/* =========================================================
   ELEMENTOR STEP DISABLED
========================================================= */

.elementor-kit-7 .process-tabs .steps button.step:disabled {

  background:
    var(--step-color, #006fbf) !important;

  background-color:
    var(--step-color, #006fbf) !important;

  color: #fff !important;

  border: 0 !important;
  border-radius: 50% !important;

  opacity: 1;
}


/* =========================================================
   ELEMENTOR STEP TITLE
========================================================= */

.elementor-kit-7 .process-tabs .steps button.step .step-title {

  display: block !important;
  text-align: center !important;

  text-transform: none !important;

  white-space: normal !important;

  overflow-wrap: normal !important;

  word-break: normal !important;
}


/* =========================================================
   ELEMENTOR STEP NUMBER
========================================================= */

.elementor-kit-7 .process-tabs .steps button.step .step-number {

  text-transform: none !important;
}


/* =========================================================
   ELEMENTOR DESCRIPTION
========================================================= */

.elementor-kit-7 .process-tabs .description-panel h3,
.elementor-kit-7 .process-tabs .description-panel p {

  text-transform: none !important;
}

@media (max-width: 1024px) {
.division-tabs {
  margin-top: 0;
  top: 0;
}
}

/* =========================================================
   IMPORTANT:
   NO NTH-CHILD STEP COLORS
========================================================= */

/*
  Do NOT define:

  .step:nth-child(1) { ... }
  .step:nth-child(2) { ... }

  etc.

  Each HTML button should define its own color:

  style="--step-color: #f26664;"

  This allows every division to have its own
  independent color scheme.
*//* End custom CSS */