  .fees-header {
      position: relative;
      background-image: linear-gradient(gold, rgb(80, 2, 80));
      width: 100%;
      height: 300px;
      padding: 5px 20px 20px 20px;
  }
  
  .fees-header .fees-heading {
    background-color: gold;
    margin: -10px 0px 0px 400px;
    color: rgb(80, 2, 80);
    height: 200px;
    width: 500px;
    border-radius: 50%;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.3), 0 10px 30px 0 rgba(0, 0, 0, 0.25);
  }
  
  .fees-header .fees-heading h2 {
    padding: 50px 0px 0px 80px;
    font-size: 65px;
  }
  
  .fees-header .fees-heading:hover {
    animation: shake 0.5s;
    animation-iteration-count: infinite;
  }
  
  .feesbg {
    position: relative;
    min-height: 800px;
    margin: 0;
    padding: 0;
  }
  
  .feesbg img {
    width: 100%;
    height: 820px;
  }
  
  .feesbg .curved-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
  }
  
  .feesbg .curved-divider-top svg {
      position: relative;
      display: block;
      width: calc(100% + 1.3px);
      height: 125px;
  }
  
  .feesbg .curved-divider-top .shape-fill {
      fill: rgb(80, 2, 80);
  }
  
  .feesbg .fees {
    position: absolute;
    background-color: rgb(80, 2, 80);
    color: gold;
    font-weight: bold;
    width: 40%;
    height: 280px;
    top: 100px;
    left: 50px;
    padding: 20px 0px 0px 100px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.3), 0 10px 30px 0 rgba(0, 0, 0, 0.25);
    border-radius: 10px;
  }
  
  .feesbg .bank {
    position: absolute;
    background-color: rgb(80, 2, 80);
    color: gold;
    font-weight: bold;
    width: 40%;
    height: 280px;
    top: 450px;
    left: 50px;
    padding: 20px 0px 0px 100px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.3), 0 10px 30px 0 rgba(0, 0, 0, 0.25);
    border-radius: 10px;
  }

  .feesbg .curved-bottom-divider {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      overflow: hidden;
      line-height: 0;
      transform: rotate(180deg);
    }
    
    .feesbg .curved-bottom-divider svg {
      position: relative;
      display: block;
      width: calc(134% + 1.3px);
      height: 190px;
    }
    
    .feesbg .curved-bottom-divider .shape-fill {
      fill: rgb(80, 2, 80);
    }

@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
  }
  @media only screen and (max-width: 1024px) {
    .fees-header .fees-heading {
      margin: 30px 0px 0px 300px;
      height: 200px;
      width: 400px;
    }
  
    .fees-header .fees-heading h2 {
      padding: 70px 0px 0px 85px;
      font-size: 45px;
    }
  
    .feesbg .fees {
      padding: 5px 0px 0px 20px;
      font-size: 18px;
    }
  
    .feesbg .bank {
      padding: 5px 0px 0px 20px;
      font-size: 17px;
    }
  }
@media only screen and (max-width: 620px) {
  .fees-header {
    height: 200px;
    padding: 5px 20px 20px 20px;
  }

  .fees-header .fees-heading {
    margin: 50px 0px 0px 160px;
    height: 100px;
    width: 250px;
  }

  .fees-header .fees-heading h2 {
    padding: 30px 0px 0px 50px;
    font-size: 30px;
  }

  .feesbg {
    min-height: 500px;
  }

  .feesbg img {
    height: 530px;
  }

  .feesbg .curved-divider-top svg {
    width: calc(100% + 1px);
    height: 50px;
  }

  .feesbg .fees {
    width: 50%;
    height: 200px;
    top: 60px;
    left: 30px;
    padding: 5px 10px 0px 10px;
    font-size: 13px;
    text-align: center;
  }

  .feesbg .bank {
    width: 50%;
    height: 200px;
    top: 300px;
    left: 30px;
    padding: 5px 10px 0px 10px;
    font-size: 13px;
    text-align: center;
  }

  .feesbg .curved-bottom-divider svg {
    width: calc(100% + 1px);
    height: 50px;
  }
}
@media only screen and (max-width: 412px) {
  .fees-header {
    height: 150px;
    padding: 5px 20px 20px 20px;
  }

  .fees-header .fees-heading {
    margin: -30px 0px 0px 60px;
    height: 100px;
    width: 250px;
  }

  .fees-header .fees-heading h2 {
    padding: 30px 0px 0px 55px;
    font-size: 28px;
  }

  .feesbg {
    min-height: 520px;
  }

  .feesbg img {
    height: 540px;
  }

  .feesbg .curved-divider-top svg {
    width: calc(100% + 1px);
    height: 30px;
  }

  .feesbg .fees {
    width: 70%;
    height: 200px;
    top: 50px;
    left: 60px;
    padding: 5px 10px 0px 10px;
    font-size: 13px;
    text-align: center;
  }

  .feesbg .bank {
    width: 70%;
    height: 230px;
    top: 280px;
    left: 60px;
    padding: 5px 10px 0px 10px;
    font-size: 13px;
    text-align: center;
  }

  .feesbg .curved-bottom-divider svg {
    width: calc(100% + 1px);
    height: 30px;
  }
}