body {
    overflow-x: hidden;
    background: #fff;
    color: #000;
  }
  :root {
    --fcolor: #3a3eb9;
    --dcolor: #1b3587;
    --tcolor: #3a3eb9;
    --scolor: #3a3eb9;
  }
  section {
    padding: 50px 0;
    overflow: hidden;
  }
  .banner {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    background: url(/images/coin-clone/coin_switchbanner.webp) center no-repeat;
    background-size: cover;
    padding-top: 68px;
  }
  h1 {
    font-size: 60px;
    color: #fff !important;
    font-weight: bold;
  }
  .green_txt {
    color: #b1e50e;
  }
  h2 {
    font-size: 48px;
    font-weight: bold;
  }
  .banner p {
    color: #c9cbff;
  }
  h3 {
    font-size: 24px;
    font-weight: 600;
    font-weight: bold;
  }
  .btn-outline-dark {
    background: linear-gradient(90deg, #ffffff 0%, #e1e2ff 100%);
    border: 1.14286px solid #514fdb;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    padding: 12px 35px;
    font-weight: 600;
    transition: all .3s ease;
  }
  .btn-outline-dark:hover {
    color: #000000;
    /* background: linear-gradient(90deg, #e0e6fd 0%, #e1e2ff 100%); */
    border-color: unset;
    box-shadow: 0px 11px 16px rgb(0 0 0 / 30%);
  }
  .btn-out-green {
    background: linear-gradient(0deg, #b1e50e, #b1e50e),
      linear-gradient(86.09deg, #121116 34.67%, #b1e50e 128.52%);
    border-radius: 6px;
    padding: 12px 35px;
    font-weight: 600;
  }
  .blue_txt {
    color: #3a3eb9;
  }
  p {
    color: #484848;
  }
  .bg_lit {
    background: #f4f3ff;
  }
  .green_box {
    background: #b1e50e;
    border-radius: 10px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
  }
 .spinner_box {
    transition: .4s all ease;
    padding: 10px;
    height: 100%;
   }
  .spinner_box:hover .green_box{
     transform: rotate(360deg);
     border-radius: 25px;
  }
  .spinner_box:hover {
    transform: scale(1.034);
    box-shadow: 0px 0px 14px -1px #0000003b;
    border-radius: 25px;
}
  .bg_dark {
    background: #181728;
    color: #fff;
  }
  .bg_dark p {
    color: #d7d6eb;
  }
  .process_box {
    background: #ffffff;
    border: 1px solid #c7c5d5;
    border-radius: 20px;
    padding: 25px 25px;
    position: relative;
  }
  .blue2 {
    color: #4a46d4;
    background: none;
  }
  .process_img{
    position: absolute;
    width: 24%;
    right: -36%;
    top: -8%;
  }
  .process_img.left{
    left: -34%;
  }
  .mt-150{
    margin-top: 150px;
  }
  .dashed_border{position: relative;z-index: 0;}
  .dashed_border::after{
    content: '';
    position: absolute;
    top: 0;
    left: 50.35%;
    height: 100%;
    width: 0;
    border: 1px dashed #26253A;
    z-index: -1;
  }
  @media screen and (max-width: 1400px), screen and (max-height: 800px) {
      h1 {
        font-size: 50px;
    }
}
  @media (max-width: 1200px) {
    h2 {
      font-size: 42px;
    }
  }
  @media (max-width: 991px) {
    h1 {
        font-size: 40px;
    }
    h2 {
      font-size: 33px;
    }
    .banner {
      background: linear-gradient(135deg, #0c2884, #2d3fc2);
      min-height: 500px;
      height: auto;
      display: flex;
      align-items: center;
    }
    .mt-150{
      margin-top: 0;
    }
    .dashed_border::after{
        display: none;
    }
  }
  @media (max-width: 768px) {
    h2 {
      font-size: 24px;
    }
    p {
      color: #4a4a4a;
      font-size: 14px;
      line-height: 23px;
    }
    h3 {
      font-size: 19px;
      font-weight: 600;
    }
    .container.max {
      max-width: 1600px;
      padding: 0 15px;
    }
  }
  @media (max-width: 650px) {
    h1 {
        font-size: 30px;
    }
}
  