.investment-steps {
  position: relative;
  width: 100%;
  min-height: 500px;
  padding: 0;
  background-image: url("/assets/images/home/step/bg.png");
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.investment-steps .investment-steps__content {
  position: relative;
  padding: 65px 20px 50px 65px;
  z-index: 2;
}

.investment-steps .investment-steps__content h2 {
  margin: 0;
  color: #252525;
  font-size: 37px;
  line-height: 1.2;
  font-weight: 700;
}

.investment-steps .investment-steps__content h2 span {
  font-style: italic;
}

.investment-steps .investment-steps__progress {
  position: relative;
  width: 205px;
  height: 2px;
  margin-top: 28px;
  background: #b9e4bf;
  overflow: hidden;
}

.investment-steps .investment-steps__progress-active {
  height: 100%;
  background: #00c51a;
  transition: width 0.45s ease;
}

.investment-steps .investment-steps__text {
  margin-top: 50px;
  animation: investmentStepFade 0.4s ease;
}

@keyframes investmentStepFade {
  from {
    opacity: 0;
    transform: translateX(15px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.investment-steps .investment-steps__step {
  margin-bottom: 5px;
  color: #2864df;
  font-size: 23px;
  line-height: 1.2;
  font-weight: 700;
}

.investment-steps .investment-steps__text h3 {
  max-width: 550px;
  margin: 0 0 7px;
  color: #252525;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 600;
}

.investment-steps .investment-steps__text p {
  margin: 0;
  color: #252525;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
}

.investment-steps .investment-steps__arrows {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 32px;
  padding-right: 55px;
}

.investment-steps .investment-steps__arrows button {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #555555;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.25s ease;
}

.investment-steps .investment-steps__arrows button:hover:not(:disabled) {
  background: #2864df;
  color: #ffffff;
  transform: scale(1.08);
}

.investment-steps .investment-steps__arrows button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.investment-steps .investment-steps__image-col {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.investment-steps .investment-steps__image-col::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: 0;
  width: 650px;
  height: 100%;
  background-image: url("/assets/images/home/investment-bg.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: cover;
  opacity: 0.7;
  z-index: 0;
}

.investment-steps .investment-steps__image-wrapper {
  position: relative;
  width: 330px;
  height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 2;
  animation: investmentImageFade 0.45s ease;
}

@keyframes investmentImageFade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.investment-steps .investment-steps__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

@media (max-width: 991px) {
  .investment-steps {
    min-height: auto;
  }

  .investment-steps .investment-steps__content {
    padding: 50px 30px 30px;
  }

  .investment-steps .investment-steps__content h2 {
    font-size: 32px;
  }

  .investment-steps .investment-steps__image-col {
    min-height: 500px;
  }

  .investment-steps .investment-steps__arrows {
    justify-content: flex-start;
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .investment-steps {
    padding: 0 15px;
  }

  .investment-steps .investment-steps__content {
    padding: 40px 10px 20px;
  }

  .investment-steps .investment-steps__content h2 {
    font-size: 28px;
  }

  .investment-steps .investment-steps__progress {
    width: 180px;
    margin-top: 22px;
  }

  .investment-steps .investment-steps__text {
    margin-top: 35px;
  }

  .investment-steps .investment-steps__step {
    font-size: 18px;
  }

  .investment-steps .investment-steps__text h3 {
    font-size: 21px;
  }

  .investment-steps .investment-steps__text p {
    font-size: 14px;
  }

  .investment-steps .investment-steps__arrows {
    justify-content: center;
    margin-top: 25px;
  }

  .investment-steps .investment-steps__image-col {
    min-height: 420px;
  }

  .investment-steps .investment-steps__image-col::after {
    right: -150px;
    width: 550px;
  }

  .investment-steps .investment-steps__image-wrapper {
    width: 280px;
    height: 420px;
  }
}

@media (max-width: 480px) {
  .investment-steps .investment-steps__content h2 {
    font-size: 25px;
  }

  .investment-steps .investment-steps__text h3 {
    font-size: 19px;
  }

  .investment-steps .investment-steps__image-wrapper {
    width: 250px;
    height: 380px;
  }
}
