.wrap-process {
  margin-bottom: 3.75rem;
}

.process {
  width: 22.5rem;
  max-width: 100%;
  min-height: 28.75rem;
  height: -webkit-calc(100% - 80px);
  height: -moz-calc(100% - 80px);
  height: calc(100% - 80px);
  margin: 0 auto 80px auto;
  background: #121633;
  border: 2px solid #3C406D;
  -webkit-border-radius: 2.5rem;
     -moz-border-radius: 2.5rem;
          border-radius: 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
    transition: all .5s ease-in-out;
    color: #fff;
}
.process:hover {
    background: #F1F1F1;
    border-color: #3C406D;
    color: #20275B;
}
.process-content {
  padding: 2.5rem 2.5rem 1.75rem 2.5rem;
}
.process-content .process-text{
    color: inherit;
    margin: 0;
    padding: 0;
    text-decoration: none;
}
.process-icon {
  margin: 0 auto 16px auto;
  width: 5.125rem;
  height: 5.125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#D5D9FF), to(#A0A3C5));
  background: -webkit-linear-gradient(top, #D5D9FF 0%, #A0A3C5 100%);
  background: -moz-linear-gradient(top, #D5D9FF 0%, #A0A3C5 100%);
  background: -o-linear-gradient(top, #D5D9FF 0%, #A0A3C5 100%);
  background: linear-gradient(180deg, #D5D9FF 0%, #A0A3C5 100%);
  -webkit-box-shadow: 0px 8px 20px rgba(32, 39, 91, 0.2), inset 0px -3.40148px 3.40148px #989BBC, inset 0px 3.40148px 3.40148px #DCE1FF;
     -moz-box-shadow: 0px 8px 20px rgba(32, 39, 91, 0.2), inset 0px -3.40148px 3.40148px #989BBC, inset 0px 3.40148px 3.40148px #DCE1FF;
          box-shadow: 0px 8px 20px rgba(32, 39, 91, 0.2), inset 0px -3.40148px 3.40148px #989BBC, inset 0px 3.40148px 3.40148px #DCE1FF;
}
.process-icon img {
  max-width: 2.5rem;
  max-height: 2.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.process-title {
  position: relative;
  z-index: 1;
  min-height: 5.125rem;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  color: #fff;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.process-title:before {
  content: "";
  position: absolute;
  right: -2.5rem;
  left: 0;
  z-index: -1;
  bottom: 0;
  top: 0;
  background: #20275B;
  -webkit-border-radius: 3.75rem 0px 0px 3.75rem;
     -moz-border-radius: 3.75rem 0px 0px 3.75rem;
          border-radius: 3.75rem 0px 0px 3.75rem;
}
.process-title h1, .process-title .h1 {
  color: #F90079;
  margin: 0;
}
.process-title h4, .process-title .h4 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 1.5rem 0 0;
  margin: 0;
}
.process-link {
  display: block;
  margin-top: auto;
  text-align: center;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.75rem;
  padding: 1rem;
  background: #918D9E;
  -webkit-border-radius: 0px 0px 2.4rem 2.4rem;
     -moz-border-radius: 0px 0px 2.4rem 2.4rem;
          border-radius: 0px 0px 2.4rem 2.4rem;
  color: #fff;
  text-decoration: none;
}


@media (max-width: 992px) {
    .row--process {
        display: flex;
        flex-wrap: nowrap;
        overflow: hidden;
        overflow-x: scroll;
        justify-content: right !important;
        /*width: calc(300% + 24px);*/
        max-width: none;
        --bs-gutter-x: 0;
        --bs-gutter-y: 0;
        margin-left: -12px;
        margin-right: -12px;
    }
    .row--process > * {
        width: 80vw;
        flex: none;
        margin: 0 12px 0 12px;
        padding: 0;
    }
    .process {
        width: 100%;
    }
    .process-title h4, .process-title .h4 {
        padding: 0 .8rem 0 0;
    }
}