/* stylelint-disable */
.section-profit {
  overflow: hidden;
  padding: clamp(36px, 3.125vw, 60px) 0;
}
.section-profit__wrapp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(72px, 7.813vw, 80px);
}
.section-profit__box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(48px, 7.813vw, 80px);
}
.section-profit__box h3 {
  text-align: center;
}
@media (min-width: 768px) {
  .section-profit .section-profit__timeline {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  .section-profit .section-profit__timeline.active::after {
    width: 100%;
  }
  .section-profit .section-profit__timeline::after {
    content: "";
    position: absolute;
    height: 28px;
    width: 0;
    border-radius: 51px;
    background: #2e7bb2;
    z-index: 1;
    transition: width 1.5s ease-in-out;
  }
  .section-profit .section-profit__timeline::before {
    content: "";
    position: absolute;
    height: 28px;
    width: 100%;
    border-radius: 51px;
    background: rgba(41, 41, 41, 0.5);
  }
  .section-profit .section-profit__timeline .profit-start,
  .section-profit .section-profit__timeline .profit-end {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 5;
  }
  .section-profit .section-profit__timeline .profit-start .profit-label {
    position: absolute;
    top: -48px;
  }
  .section-profit .section-profit__timeline .profit-start.active .profit-bubble {
    background: #2e7bb2;
  }
  .section-profit .section-profit__timeline .profit-end .profit-label {
    position: absolute;
    top: -48px;
    right: 0;
  }
  .section-profit .section-profit__timeline .profit-end.active .profit-bubble {
    background: #2e7bb2;
  }
  .section-profit .section-profit__timeline .profit-bubble {
    height: 63px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(24px, 3.125vw, 32px);
    line-height: 100%;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 74px;
    background: #222;
    transition: 0.3s ease;
  }
  .section-profit .section-profit__timeline .profit-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    z-index: 2;
    transition: 0.3s ease;
  }
  .section-profit .section-profit__timeline .profit-step .icon {
    width: 64px;
    height: 64px;
    border-radius: 61px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .section-profit .section-profit__timeline .profit-step.active .icon {
    background: #2e7bb2;
  }
}
@media (min-width: 1025px) {
  .section-profit {
    background-color: var(--bg-d);
  }
}
@media (max-width: 767px) {
  .section-profit .section-profit__timeline {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 42px;
    justify-content: space-between;
    position: relative;
  }
  .section-profit .section-profit__timeline.active::after {
    height: 100%;
  }
  .section-profit .section-profit__timeline::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 0%;
    width: 28px;
    border-radius: 51px;
    background: #2e7bb2;
    z-index: 1;
    transition: height 1.5s ease-in-out;
  }
  .section-profit .section-profit__timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 28px;
    border-radius: 51px;
    background: rgba(41, 41, 41, 0.5);
  }
  .section-profit .section-profit__timeline .profit-start,
  .section-profit .section-profit__timeline .profit-end {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 5;
  }
  .section-profit .section-profit__timeline .profit-start .profit-label {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    text-wrap: nowrap;
  }
  .section-profit .section-profit__timeline .profit-start.active .profit-bubble {
    background: #2e7bb2;
  }
  .section-profit .section-profit__timeline .profit-end .profit-label {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    text-wrap: nowrap;
  }
  .section-profit .section-profit__timeline .profit-end.active .profit-bubble {
    background: #2e7bb2;
  }
  .section-profit .section-profit__timeline .profit-bubble {
    height: 63px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(24px, 3.125vw, 32px);
    line-height: 100%;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 74px;
    background: #222;
    transition: 0.3s ease;
  }
  .section-profit .section-profit__timeline .profit-step {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 2;
  }
  .section-profit .section-profit__timeline .profit-step .price {
    position: absolute;
    min-width: 62px;
    right: -82px;
    top: 50%;
    transform: translateY(-50%);
  }
  .section-profit .section-profit__timeline .profit-step .label {
    position: absolute;
    left: -130%;
    top: 50%;
    transform: translateY(-50%);
  }
  .section-profit .section-profit__timeline .profit-step .icon {
    width: 64px;
    height: 64px;
    border-radius: 61px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
  }
  .section-profit .section-profit__timeline .profit-step.active .icon {
    background: #2e7bb2;
  }
}
/*# sourceMappingURL=section-profit.css.map */