.main-inner section.flow-list {
  min-height: unset;
  overflow: visible;
}

.flow-list .wrapper .inner-container {
  text-align: center;
  width: 100%;
  max-width:100%;
  padding: 0 40px;
  margin: 0;
  /* margin:0 0 80px 0; */
  box-sizing:border-box;
}


.flow-list .wrapper {
  box-sizing:border-box;
  max-width: 100%;
  width: 100%;
  align-self: start;
}

.flow-list .wrapper .inner-row {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.flow-list__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.flow-list .colored_title h2 {
    background: linear-gradient(90deg, #006FFF 25.27%, #AABADC 74.96%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
}

.flow-list .description * {
  margin: 0;
}

.flow-list-cont {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 16px;
}

.flow-list-item {
  padding: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: rgba(170, 186, 220, 0.10);
  border-radius: 8px;
  text-align: start;
}

.flow-list-item__title-wrapper {
  height: 100px;
  display: flex;
  align-items: center;
}

.flow-list-item__title {
  margin: 0;
}

.flow-list-item__lines {
  display: flex;
  gap: 24px;
}

.flow-list-item__lines > * + *  {
  margin: 0;
}

.flow-list .subtitle {
  color: var(--Powder-Blue, #aabadc) !important;
  font-family: "Funnel Sans";
  font-size: 24px !important;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.flow-list__right-icon {
  width: 23px;
}

@media(max-width: 1024px) {

  .flow-list .wrapper .inner-container {
    padding: 0 20px;
  }

  .flow-list-item {
    width: unset;
  }
  .flow-list-cont {
    flex-direction: column;
    align-items: stretch;
  }

  .flow-list__right-icon {
    transform: rotate(90deg);
    align-self: center;
  }
}