/* Bulma Utilities */
:root {
  --circle-size: clamp(1.5rem, 5vw, 50px);
  --spacing: clamp(0.25rem, 2vw, 0.5rem);
}

@media screen and (min-width: 768px), print {
  .agn-stepper {
    max-width: 1000px;
    margin: 2rem auto 0;
  }
  .agn-stepper__container {
    display: flex;
  }
  .agn-stepper__item {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
  }
  .agn-stepper__item:before {
    --size: 50px;
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #1272E2;
    margin: 0 auto 1rem;
    margin-top: -4px;
    margin-bottom: -20px;
    box-shadow: 0 9px 17px 0 rgba(38, 133, 245, 0.28);
  }
  .agn-stepper__item:not(:last-child):after {
    content: "";
    position: relative;
    top: 25px;
    width: calc(100% - clamp(1.5rem, 5vw, 50px) - clamp(0.25rem, 2vw, 0.5rem) * -3);
    left: calc(50% + clamp(1.5rem, 5vw, 50px) / 10 + clamp(0.25rem, 2vw, 0.5rem));
    height: 8px;
    background-color: #1272E2;
    order: -1;
    margin-top: -8px;
  }
  .agn-stepper__title {
    font-family: Manrope-ExtraBold;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    color: #ffffff;
    position: relative;
    top: -16px;
  }
  .agn-stepper__desc {
    color: #094771;
    font-family: Manrope-Semibold;
    font-size: 16px;
    padding-left: clamp(0.25rem, 2vw, 0.5rem);
    padding-right: clamp(0.25rem, 2vw, 0.5rem);
  }
}
@media screen and (max-width: 767px) {
  .agn-stepper-horizontal {
    max-width: 1000px;
    margin: 2rem 1.5rem 0;
  }
  .agn-stepper-horizontal .agn-stepper__container {
    display: flex;
  }
  .agn-stepper-horizontal .agn-stepper__item {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
  }
  .agn-stepper-horizontal .agn-stepper__item:before {
    --size: 50px;
    content: "";
    display: block;
    border-radius: 50%;
    background-color: #1272E2;
    margin: 0 auto 1rem;
    margin-bottom: -20px;
    width: 40px;
    height: 40px;
    margin-top: -10px;
  }
  .agn-stepper-horizontal .agn-stepper__item:not(:last-child):after {
    content: "";
    position: relative;
    width: calc(100% - clamp(1.5rem, 5vw, 50px) - clamp(0.25rem, 2vw, 0.5rem) * -3);
    left: calc(50% + clamp(1.5rem, 5vw, 50px) / 10 + clamp(0.25rem, 2vw, 0.5rem));
    height: 8px;
    background-color: #1272E2;
    order: -1;
    margin-top: -8px;
    top: 14px !important;
  }
  .agn-stepper-horizontal .agn-stepper__title {
    font-family: Manrope-Bold;
    margin-bottom: 0.5rem;
    color: #ffffff;
    position: relative;
    top: -10px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) and (min-width: 1024px) {
  .agn-stepper-horizontal .agn-stepper__title {
    top: -20px;
  }
}
@media screen and (max-width: 767px) {
  .agn-stepper-horizontal .agn-stepper__desc {
    color: #094771;
    font-family: Manrope-Semibold;
    font-size: 14px;
    padding-left: clamp(0.25rem, 2vw, 0.5rem);
    padding-right: clamp(0.25rem, 2vw, 0.5rem);
  }
}
@media screen and (max-width: 767px) {
  .agn-stepper-vertical {
    padding: 0 28px;
    max-width: 360px;
    margin: 2rem auto 0;
  }
  .agn-stepper-vertical .agn-stepper__item {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding-bottom: 40px;
  }
  .agn-stepper-vertical .agn-stepper__item:before {
    content: "";
    flex: 0 0 32px;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    background-color: #006bd7;
    position: relative;
    box-shadow: 0 9px 17px 0 rgba(38, 133, 245, 0.28);
  }
  .agn-stepper-vertical .agn-stepper__item:not(:last-child):after {
    content: "";
    position: absolute;
    left: 0;
    top: calc(30px + var(--spacing));
    bottom: -10px;
    transform: translateX(0.8823529412rem);
    width: 3.5px;
    background-color: #006bd7;
  }
  .agn-stepper-vertical .agn-stepper__title {
    font-family: Manrope-Bold;
    margin-bottom: clamp(0.85rem, 2vmax, 1rem);
    position: absolute;
    top: 15px;
    left: 13px;
    color: #fff;
    font-size: 12px;
  }
  .agn-stepper-vertical .agn-stepper__desc {
    color: grey;
    font-size: 12px;
  }
}