
/*tabs*/
#tabs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    background: white;
    padding: 0;
}
#tabs.sticky {
    top: 0;
    position: fixed;
    width: 100vw;
    padding: 1rem;
    z-index: 999;
}
#tabs button {
    font-size: 12px;
    letter-spacing: 3.6px;
    font-weight: 375;
}
/* Style the tab */
.charts img {
  width: auto;
  margin: 1rem;
}
.tab {
    overflow: hidden;
  }
  .proddet h3 {
    margin: 2rem 0;
  }
  
  /* Style the buttons inside the tab */
  .tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 0;
    transition: 0.3s;
    margin: 0 16px;
  }
  
  /* Change background color of buttons on hover */
  .tab button:hover {
    background-color: #ddd;
  }
  .tab button span {
    padding-bottom: 10px;
    margin: 10px;
  }
  /* Create an active/current tablink class */
  .tab button.active span {
    border-bottom: 5px solid #00378C;
  }
  @media (max-width: 767px) {
    .tab button:hover {
        background-color: none !important;
    }
  }
  
  /* Style the tab content */
  .tabcontent {
    display: none;
    padding: 3rem 10rem;
  }
  .moretabcontent {
    display: none;
  }
  .tabcontent.active, .moretabcontent.active {
    display: block !important;
  }
  #proddet-card {
  }
  #dnr-card {
  }
  #thirdpc-card {
  }

#bottom-banner-wrapper {
    padding: 2rem 0;
    background: #00378C;
}

#bottom-banner-wrapper p {
    font-size: 22px;
    margin: 0;
    color: white;
}

#bottom-banner-wrapper div div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#bottom-banner-wrapper .button-container {
    align-items: end;
}

#bottom-banner-wrapper .button-container a {
    padding: 0.7rem 5rem;
    background: white;
    font-size: 14px;
    color: #00378C;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 25px;
    width: fit-content;
    border: 1px solid white;
}
#bottom-banner-wrapper .button-container a:hover {
  background: #00378C;
  color: white;
}

@media (max-width: 1200px) {
    #bottom-banner-wrapper p {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    #bottom-banner-wrapper .button-container {
        align-items: center;
        margin-top: 1rem;
    }

    #bottom-banner-wrapper div div {
        text-align: center;
    }
}

@media (max-width: 575px) {
    #bottom-banner-wrapper p {
        font-size: 18px;
    }
}