.header {
  background: linear-gradient(140deg, #963fe8 0%, #31049b 100%);
  opacity: .9;
}
.header h1{
 position: relative;
 text-align: left;
 margin-top:23px;
 font-size:72px;
 font-weight:900;
 font-stretch:normal;
 font-style:normal;
 line-height:70px;
 letter-spacing:-5px
}
.header-subtitle{
  font-size: 25px;
  font-weight: 900;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  color: #000;
  margin-top: 20px;
  margin-bottom: 30px;
}
.header img{
    position:absolute;
    top:10px;
    animation: float 8s ease-in-out infinite;
}
.how-card {
  width: 745px;
  height: 210px;
  padding: 45px;
  display: flex;
  align-items: center;
  border-radius: 20px;
  position: relative;
}
.how-card-text {
  font-size: 24px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  color: #fff;
  width: 600px;
  margin-bottom: 5px;
  text-align: left;
}
.how-first {
  background-image: linear-gradient(104deg,#0dbbb3,#a013df);
  margin-bottom: 120px;
}
.how-two{
  background-image: linear-gradient(104deg,#d7a202,#ff1075);
  margin-bottom: 120px;
  float: right;
}
.how-three{
  background-image: linear-gradient(285deg,#64e000,#68e2dc);
  margin-bottom: 120px;
}
.how-last{
  background-image: linear-gradient(140deg, #963fe8 0%, #31049b 100%);
  float: right;
}
.ranked img{
    animation: float 8s ease-in-out infinite;
}
@media screen and (max-width:767px) {
    .how-card {
          width: 320px;
          height: unset;
          margin: 0 auto;
          margin-bottom: 80px;
          display: block;
          padding: 30px;
    }
    .how-card-text {
      width: 270px;
    }
    .how-two,.how-last{float: none;}
    .ranked{max-width: 200px;background-color: transparent!important;}
}



:root {
    --jumbotron-padding-y: 3rem;
}
.jumbotron {
    padding-top: var(--jumbotron-padding-y);
    padding-bottom: var(--jumbotron-padding-y);
    margin-bottom: 0;
    /* background-color: #fff; */
}

@media (min-width: 768px) {
    .jumbotron {
        padding-top: calc(var(--jumbotron-padding-y) * 2);
        padding-bottom: calc(var(--jumbotron-padding-y) * 2);
    }
}

.jumbotron p:last-child {
    margin-bottom: 0;
}

.jumbotron-heading {
    font-weight: 300;
}

.jumbotron .container {
    max-width: 41rem;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}
@keyframes float {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-20px);
    }
    100% {
        transform: translatey(0px);
    }
}