.header-blog .container {
    position: relative;
    height: 100%;
  }
  
  .header-blog {
    background-image: url("../images/charts.jpg");
  }
  
  .header-blog {
    height: 80vh;
    padding-top: 100px;
    margin-top:20px;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-box-shadow: 0 15px 30px 0 rgba(5, 16, 44, .15);
    box-shadow: 0 15px 30px 0 rgba(5, 16, 44, .15);
  }
  
  
  .bg-animation {
    -webkit-animation: bg-animation 90s ease-in-out infinite;
    animation: bg-animation 90s ease-in-out infinite;
  }
  
  
  header{
    display:block;
  }
  
  .header-blog .container {
    position: relative;
    height: 100%;
  }
  
  .header-row {
    height: 100%;
  }
  
  .white {
    color: #F7F8FC;
  }
  .bluetxt
  {
    color:#133B97;

  }
  .h1, h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
  }
  h1{
    text-align:center;padding:100px 0px 50px;font-weight:700;font-size:45px;
  }
  
  .white-link {
    font-weight: bold;
    opacity: .7;
    color: #F7F8FC;
    transition: .4s;
    -webkit-transition: .4s;
  }
  
  .white-link:hover {
    opacity: 1;
    color: #F7F8FC;
  }
  
  @-webkit-keyframes bg-animation {
      0% {
          background-position: top;
      }
  
      50% {
          background-position: bottom;
      }
      100% {
          background-position: top;
      }
  }
  
  @keyframes bg-animation {
      0% {
          background-position: top;
      }
  
      50% {
          background-position: bottom;
      }
      100% {
          background-position: top;
      }
  }
  .auto-grid {
    --auto-grid-min-size: 9rem;
    
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(var(--auto-grid-min-size), 1fr));
    grid-gap: 1rem;
  }
  
 .gridli {
    padding: 5rem 1rem;
    font-size: .85rem;
    background: #eb4d4b;
    color: #ffffff;
    font-weight:500;
    text-align:left;
    line-height:100%;
  }  
  /* Style the tab */
.tab {
    overflow: hidden;
    border: 0px solid #fff;
    background-color: #ffffff;
    
  }
  
  /* Style the buttons inside the tab */
  .tab button {
    background-color: inherit;text-align:left;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 14px;border-bottom:10px solid transparent;width:25%;
  }
  
  
  /* Change background color of buttons on hover */
  .tab button:hover {
    color: #0044fe;
  }
  
  /* Create an active/current tablink class */
  .tab button.active {
    background-color: #ddd;border-bottom:10px solid #ddd;
  }
  
  /* Style the tab content */
  .tabcontent {
    display: none;
    padding: 6px 12px;
    border: none;
    border-top: none;
    background-color:#ddd;
    color:#303030;
  }
 
    .flex-container {
      display: flex;
      background-color: white;
    }
    
    .flex-container > div {
      background-color: #f1f1f1;
      margin: 10px;
      padding: 20px;
      font-size: 30px;
    }
 