.steps {
  position: relative;
  padding-top: 80px;
  padding-bottom: 96px;
}

.steps-content {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: stretch;
  gap: 40px;
}

.steps-content-header {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.steps-content-header>h3 {
  font-weight: 900;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0px;
  color: #fff;
}

.steps-content-header-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}

.steps-content-header-button {
  border: none;
  height: 48px;
  width: 48px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  border-radius: 500px;
  background-color: var(--primary-color);
  transition: var(--trans-md);
  cursor: pointer;
}

.steps-content-header-button svg {
  width: 25px;
  height: 27px;
}

.steps-content-header-button svg path {
  stroke-width: 2px;
  transition: var(--trans-md);
  stroke: #fff;
}

.steps-content-header-button:hover {
  background-color: #fff;
}

.steps-content-header-button:hover svg path {
  stroke: var(--primary-color);
}

.steps-content-slider {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 33px;
  box-sizing: border-box;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-left: 80px;
  padding-right: 80px;
  width: 100vw;
  overflow-x: scroll;
  scroll-behavior: smooth;
  padding-top: 15px;
}

.steps-content-slider-item {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: stretch;
  gap: 24px;
  flex-shrink: 0;
  width: 400px;
  scroll-snap-align: center;
}

.steps-content-slider-item:first-child,
.steps-content-slider-item:last-child {
  scroll-snap-align: end;
}

.steps-content-slider-item-header {
  position: relative;
}

.steps-content-slider-item-header-point {
  height: 18px;
  width: 18px;
  border: 2px solid #fff;
  border-radius: 500px;
  margin-left: 10px;
  position: relative;
}

.steps-content-slider-item-header-point[data-active="true"] {
  background-color: #fff;
}

.steps-content-slider-item-header-point[data-checked="true"]:before {
  content: "";
  background-image: url('../../assets/images/checked.svg');
  position: absolute;
  height: 18px;
  width: 25px;
  z-index: 3;
  left: -2px;
  bottom: 2px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.steps-content-slider-item-header-point[data-active="true"]:after {
  content: "";
  position: absolute;
  height: calc(100% + 22px);
  width: calc(100% + 22px);
  background-color: #fff;
  left: 0;
  top: 0;
  transform: translate(-11px, -11px);
  opacity: 0.5;
  border-radius: 50px;
}

.steps-content-slider-item-header-line {
  height: 2px;
  width: calc(100% - 32px);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 32px;
  margin: auto;
}

.steps-content-slider-item-header-line svg {
  height: 100%;
  width: 100%;
  position: absolute;
}

.steps-content-slider-item-header-line svg line {
  stroke-width: 31px;
  stroke: #fff;
}

.steps-content-slider-item-header-line[data-type="solid"] svg line {
  stroke-dasharray: 15px 0px;
}

.steps-content-slider-item-header-line[data-type="dashed"] svg line {
  stroke-dasharray: 15px 20px;
}

.steps-content-slider-item-header-triangle {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -20px;
}


.steps-content-slider-item:last-child .steps-content-slider-item-header-triangle,
.steps-content-slider-item:last-child .steps-content-slider-item-header-line {
  display: none;
}

.steps-content-slider-item-header-triangle svg {
  width: 10px;
  height: 11px;
}

.steps-content-slider-item-header-triangle svg path {
  fill: #fff;
}

.steps-content-slider-item-title {
  font-weight: 900;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #fff;
}

.steps-content-slider-item-content {
  background-color: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: stretch;
  gap: 8px;
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  -ms-backdrop-filter: blur(32px);
  -o-backdrop-filter: blur(32px);
  -moz-backdrop-filter: blur(32px);
}

.steps-content-slider-item-content[data-active="false"] {
  background-color: rgba(255, 255, 255, 0.6);
}

.steps-content-slider-item-content-timestamp {
  font-family: Onest;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.steps-content-slider-item-content-text {}

.steps-content-slider-item-content-text p {
  font-family: Onest;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
}

.steps-content-container {
  position: relative;
  z-index: 2;
  width: 680px;
  box-sizing: border-box;
  background-color: #fff;
  padding: 24px;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
}

.steps-content-container-item {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
}

.steps-content-container-item>img {
  height: 43px;
  width: 196px;
  object-fit: contain;
}

.steps-content-container-item-text {}

.steps-content-container-item-text p {
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  white-space: pre-line;
}

.steps-content-container-link {}

.steps-content-container-link a {
  font-weight: 300;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  color: var(--primary-color);
}

.steps-background {
  background-image: url('../../assets/images/b0fdbd108487a5f1a16b9b5ba871ee0e.jpeg');
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}