.see-rates-page{
  
  .inner {
    text-align: center;
    
    h1 {
      color: #1C69E2;
      margin-bottom: 32px;
    }
  }
  
  .trusted-by {
      margin-bottom: 60px;
    p {
       padding: 6px 12px;
       border-radius: 100px;
       background: rgba(151, 71, 255, 0.10);
       display: inline-flex;
       gap: 4px;
       width: auto;
       font-size: 12px;
       line-height: 150%;
       margin-bottom: 16px;
    }
    
    h6 {
      margin: 0;
    }
  }
  .grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    
    a {
      width: min(260px, 100%);
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 64px 42px;
      border-radius: 12px;
      background: var(--Primary-Section, #EDF3FD);
      text-decoration: none;
      transition: background .25s;
      flex-direction: column;
      gap: 6px;
      
      p {
        margin: 0;
        
        &:first-child {
          color: #0B0B0B;
          font-weight: 800;
        }
        
        &:last-child {
          font-size: 12px;
          color:#545454;
          font-weight: 400;
          line-height: 150%;
        }
      }
      
      &:hover {
        background: #d4dbe7;
      }
    }
  }
  
 
  
/*   .flex {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    align-items: center;
    
    @media(max-width: 991px) {
      flex-direction: column;
    }
    
    .left {
      width: min(608px, 100%);
      
      h1 {
        margin-bottom: 60px;
      }
      
      .situation {
        p {
          color: var(--Dark-Black, #0B0B0B);
          font-size: 18px;
          font-style: normal;
          font-weight: 800;
          line-height: 115%; /* 20.7px */
        }
        
        .situation-btns {
          display: flex;
          flex-wrap: wrap;
          gap: 12px;
          
          .situation-btn {
            color: var(--Dark-Black, #0B0B0B);
            text-align: center;
            font-size: 14px;
            font-style: normal;
            font-weight: 700;
            line-height: 125%; /* 17.5px */
            padding: 14px 22px;
            border-radius: 12px;
            border: 1.2px solid var(--Dark-Black, #0B0B0B);
            background: var(--Light-White, #FFF);
          }
        }
      }
    }
    
    .right {
      width: min(501px, 100%);
    }
  } */
}