.shape-divider {
    position: absolute;
    pointer-events: none;
    overflow: hidden;
  }
  
  .shape-divider-bottom {
    right: 0;
    top: 0;
    left: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.shape-divider-bottom > * {
    -webkit-transform-origin: bottom center; 
    transform-origin: bottom center;
}
  
  .shape-divider-fluid-x > * {
    width: 100%;
    height: auto;
  }
  
  .shape-divider-fluid-y > * {
    width: auto;
    height: 100%;
  }
  
  .shape-divider svg {
    fill: currentColor;
    -webkit-transform: scale(2);
    transform: scale(2);
  }
  

  .inner-Header {
    width: 100%;
    /* height: 50vh; */
    background: #0c1524;
  }
  
  .inner-Header .container {
    padding-top: 72px;
  }
  
  .inner-Header h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
  }
  
  .inner-Header h2 {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
    font-size: 24px;
  }
  
  .inner-Header .btn-get-started {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 11px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px 0 0 0;
    color: #fff;
    background: #ff5101;
  }
  
  .inner-Header .btn-get-started:hover {
    background: #152c57;
  }
  
  .inner-Header .btn-watch-video {
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: 0.5s;
    margin: 10px 0 0 25px;
    color: #fff;
    line-height: 1;
  }
  
  .inner-Header .btn-watch-video i {
    line-height: 0;
    color: #fff;
    font-size: 32px;
    transition: 0.3s;
    margin-right: 8px;
  }
  
  .inner-Header .btn-watch-video:hover i {
    color: #ff5101;
  }
  .inner-Header .inner-hero-img img {
    width: 60%;
  }
  .inner-Header .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
  }
  
  @media (max-width: 991px) {
    .inner-Header {
      height: 80vh;
      text-align: center;
    }
  
    .inner-Header .animated {
      animation: none;
    }
  
    .inner-Header .inner-hero-img {
      text-align: center;
    }
  
    .inner-Header .inner-hero-img img {
      width: 50%;
    }
  }
  
  @media (max-width: 768px) {
    .inner-Header h1 {
      font-size: 28px;
      line-height: 36px;
    }
  
    .inner-Header h2 {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 30px;
    }
  
    .inner-Header .inner-hero-img img {
      width: 60%;
    }
  }
  
  @media (max-width: 575px) {
    .inner-Header .inner-hero-img img {
      width: 60%;
    }
  
    .inner-Header .btn-get-started {
      font-size: 16px;
      padding: 10px 24px 11px 24px;
    }
    .shape-divider svg {
      transform: scale(3);
  }
  }
  
  @keyframes up-down {
    0% {
      transform: translateY(10px);
    }
  
    100% {
      transform: translateY(-10px);
    }
  }
 /* Common CSS */
.light-orange-color{
  color: #ff5101;
}

  /* WEB DEVELOPMENT */
.rich-text ul li::marker {
  color: #ff5101;
}

.rich-text li:not(:last-child) {
  margin-bottom: 10px;
}
.card-pic img{
  width: 250px;
  border-radius: 50%;
}
.card-hr hr{
  width: 60px;
  background-color: #cbd6e9;
  margin: 0px;
}