
.steps {
  color: #ffffff;
  margin-bottom: 80px;
}

.steps__title {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 116.4%;
  position: relative;
  margin-bottom: 40px;
}

.big-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0px 4px 27px 0px rgba(0, 53, 91, 0.12);
  padding: 30px 15px;
  gap: 20px;
}

.svg-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  min-width: 82px;
  height: 82px;
  position: relative;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14.5px);
  border: 1px solid rgba(0, 53, 91, 0.31);
  transition: all ease 0.3s;
}

.svg-box.active {
  background: #1e90ff;
  border: none;
}

.svg-box svg path {
  transition: all ease 0.3s;
  stroke: #000;
}

.svg-box:last-of-type svg path {
  stroke: none;
  fill: #000000;
}

.svg-box.active svg path {
  stroke: #ffffff;
}

.svg-box.active:last-of-type svg path {
  stroke: none;
  fill: #ffffff;
}

.dotted-line {
  height: 0;
  border-bottom: 2px dotted rgba(0, 0, 0, 0.35);
  width: 100%;
}

.big-line-text {
  display: flex;
  justify-content: space-between;
  color: white;
  margin-top: 30px;
  gap: 15px;
}

.big-line-text {
  /* color: #2b2b2b; */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.big-line-text p {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 123.646%;
}

.big-line-text {
  color: #000;
}

.big-line-text span {
  color: #1e90ff;
}

.big-line .dotted-line {
  display: none;
}

.steps-container {
  padding: 24px;
  max-width: 1260px;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 450px) {
  .big-line {
    flex-direction: row;
    gap: 10px;
  }

  .big-line .dotted-line {
    display: block;
  }
}

@media (max-width: 767px) {
  .big-line-text {
    flex-direction: column;
    align-items: center;
  }

  .big-line-text p {
    text-align: center;
  }
  .steps-container {
    padding: 56px 24px;
  }
}

@media (min-width: 768px) {

  .steps-container {
    padding: 56px 0px;
  }
}