/* General styles */
.container-fluid {
  padding: 0;
}

.font-blue {
  color: #26396c;
}

.gradient-work {
  font-size: 50px;
  text-align: center;
  color: #26396c;
  background: linear-gradient(
    to right,
    rgba(38, 57, 108, 0.1),
    rgba(38, 57, 108, 0)
  );
  display: inline-block;
  padding: 0 10px;
  border-left: 4px solid #26396c;
  border-radius: 4px;
  line-height: 1.2;
}

.heading-with-line {
  margin-bottom: 20px;
}

.top-right-img {
  position: absolute;
  top: -35px;
  right: 0;
  width: 300px;
  height: auto;
  mask-image: linear-gradient(to top right, transparent 10%, black 100%);
  -webkit-mask-image: linear-gradient(
    to top right,
    transparent 10%,
    black 100%
  );
}

.responsive-img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .top-right-img {
    width: 200px;
    top: -20px;
  }

  .gradient-work {
    font-size: 35px;
  }

  .content-text .col-12 {
    padding: 15px;
  }

  .content-text .col-md-4 {
    margin-bottom: 20px;
  }

  .ps-4 {
    display: none;
  }

  .font-20 {
    font-size: 16px;
  }

  .row {
    flex-direction: column;
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .top-right-img {
    width: 250px;
  }

  .gradient-work {
    font-size: 45px;
  }

  .content-text .col-md-4 {
    padding: 10px;
  }

  .row {
    display: flex;
    flex-wrap: wrap;
  }

  .col-md-4 {
    flex: 0 0 33.33%;
  }
}


.arrow-one, .arrow-three{
position:relative;
}

.arrow-one:after{
  position: absolute;
  content: "";
  width: 250px;
  height: auto;
  aspect-ratio: 16 / 9;
  background-image: url('../assets/arrow1.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top:30%;
  right:-26%;
}

@media (min-width:1200px){
  .arrow-one:after, .arrow-two:after{
    width: 240px !important;
    right:-28% !important;
  }
}

.arrow-two{
  position:relative;
  }
  
  .arrow-two:after{
    position: absolute;
  content: "";
  width: 250px;
  height: auto;
  aspect-ratio: 16 / 9;
  background-image: url('../assets/arrow2.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top:40%;
  right:-26%;
  }



.app-steps{
  display: grid;
  grid-template-columns: auto auto auto;
}

.app-steps div img{
  width:50% !important;
  height:auto;
  max-height: 75%;
  max-width: auto;
}

@media (max-width: 768px) {
  .app-steps{
    overflow-x: auto;
    display: flex !important;
  }

  .app-steps div{
    width:100% !important;
    height:auto;
    min-width: 100%;
  }

  .arrow-one:after, .arrow-three:after{
    position: absolute;
    content: "";
    width: 148px;
    height: auto;
    aspect-ratio: 16 / 9;
    background-image: url('../assets/arrow1.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top:30%;
    right:-26%;
  }

  .arrow-two:after{
    position: absolute;
  content: "";
  width: 150px;
  height: auto;
  aspect-ratio: 16 / 9;
  background-image: url('../assets/arrow2.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top:40%;
  right:-26%;
  }

  

}