@charset "UTF-8";

/* ===== VR Steps Section — scoped, no effect outside #vr_ ===== */

#vr_ + div.composite_box01 .wrapper_item {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch !important;
  gap: 50px;
  counter-reset: vrstep;
}

#vr_ + div.composite_box01 .inner_item {
  position: relative;
  counter-increment: vrstep;

  flex: 1 1 0;
  min-width: 0;

  box-sizing: border-box;

  display: flex !important;
  flex-direction: column;

  align-self: stretch !important;

  width: auto !important;
  height: auto;

  margin: 0 !important;

  padding: 36px 24px 40px;

  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

  text-align: center;
}


/* =========================================================
   Arrow between cards
   The arrow is positioned exactly at the center of the
   50px gap between two cards.
   ========================================================= */

#vr_ + div.composite_box01 .inner_item:not(:last-child)::after {
  content: "" !important;

  position: absolute;

  top: 50%;

  /* Card width ends here.
     50px gap / 2 = 25px
     Arrow width = 18px
     Therefore right = -(25px + 9px) = -34px
  */
  right: -34px;

  width: 18px;
  height: 18px;

  box-sizing: border-box;

  border-top: 4px solid var(--i_main_color);
  border-right: 4px solid var(--i_main_color);

  transform: translateY(-50%) rotate(45deg);

  z-index: 2;
}


/* =========================================================
   Icon image
   ========================================================= */

#vr_ + div.composite_box01 .inner_item_img {
  margin-bottom: 4px;
}

#vr_ + div.composite_box01 .inner_item_img img {
  width: 130px !important;
  height: 130px !important;

  object-fit: contain !important;

  margin: 0 auto !important;

  display: block;
}

#vr_ + div.composite_box01 .inner_item_img a {
  text-decoration: none;
}


/* =========================================================
   STEP text + number
   ========================================================= */

#vr_ + div.composite_box01
.inner_item_txt
.heading.block_header_4
h3.h {
  display: inline-flex !important;

  align-items: center;
  justify-content: center;

  gap: 8px;

  margin: 0 0 14px !important;
  padding: 0 !important;

  font-size: 20px !important;
  font-weight: 800 !important;

  letter-spacing: 1.5px;

  color: var(--i_main_color) !important;
}


/* Step number circle */

#vr_ + div.composite_box01
.inner_item_txt
.heading.block_header_4
h3.h::after {
  content: counter(vrstep) !important;

  display: inline-flex !important;

  align-items: center;
  justify-content: center;

  width: 26px;
  height: 26px;

  border-radius: 50%;

  background: var(--i_main_color);

  color: #ffffff !important;

  font-size: 14px !important;
  font-weight: 700;

  line-height: 1;
}


/* =========================================================
   Title text below STEP row
   ========================================================= */

#vr_ + div.composite_box01
.inner_item_txt
.heading.block_header_4
p {
  margin: 0 !important;
  padding: 0 !important;

  font-size: 20px;
  line-height: 1.5;

  font-weight: 700;

  color: #1a1a1a;
}


/* =========================================================
   Tablet: 769px – 900px
   ========================================================= */

@media (min-width: 769px) and (max-width: 900px) {

  #vr_ + div.composite_box01 .wrapper_item {
    gap: 40px;
  }

  #vr_ + div.composite_box01 .inner_item {
    height: 250px !important;

    padding: 22px 14px 20px !important;
  }

  #vr_ + div.composite_box01 .inner_item_img img {
    width: 90px !important;
    height: 90px !important;
  }

  #vr_ + div.composite_box01
  .inner_item_txt
  .heading.block_header_4
  h3.h {
    font-size: 16px !important;
    margin-bottom: 10px !important;
  }

  #vr_ + div.composite_box01
  .inner_item_txt
  .heading.block_header_4
  h3.h::after {
    width: 22px;
    height: 22px;

    font-size: 12px !important;
  }

  #vr_ + div.composite_box01
  .inner_item_txt
  .heading.block_header_4
  p {
    font-size: 16px;
  }


  /* Arrow: center of 40px gap */

  #vr_ + div.composite_box01
  .inner_item:not(:last-child)::after {
    top: 50%;

    right: -27px;

    width: 14px;
    height: 14px;

    border-top-width: 3.5px;
    border-right-width: 3.5px;

    transform: translateY(-50%) rotate(45deg);
  }
}


/* =========================================================
   Mobile: <= 768px
   ========================================================= */

@media (max-width: 768px) {

  #vr_ + div.composite_box01 .wrapper_item {
    flex-direction: column !important;
    flex-wrap: wrap;

    gap: 50px;
  }

  #vr_ + div.composite_box01 .inner_item {
    flex: none;

    width: 100%;
    max-width: 100%;

    margin: 0 auto;

    height: auto !important;
  }


  /* Downward arrow between cards */

  #vr_ + div.composite_box01
  .inner_item:not(:last-child)::after {
    top: auto;
    bottom: -30px;

    right: 50%;

    width: 18px;
    height: 18px;

    transform: translateX(50%) rotate(135deg);
  }
}