*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
#tb-header-main-container{
    height: 600px;
    width: 100%;
    display: flex;
    background-image: url(../images/tb-and-public-health-header-banner.webp);
    background-position: right;
    background-color: #08354e;
    background-size: contain;
    background-repeat: no-repeat;
    background-clip: border-box;
    justify-content: center;
    align-items: center;
}
#tb-header-inner-container{
    height: 100%;
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-left: 20px;
    flex-direction: column;
    gap: 20px;
}
#tb-header-inner-container h3{
    color: #33cbd9;
    font-size: 25px;
}
#tb-header-inner-container h1{
    color: #fff;
    font-size: 40px;
    width: 50%;
}
#tb-header-inner-container a{
    color: #fff;
    font-size: medium;
    text-decoration: none;
    border-radius: 20px;
    padding: 10px 20px;
    border: none;
    background-color: #33cbd9;
    transition: all 0.3s;
    font-weight: 600;
    box-shadow: 1px 1px 5px black;
}
#tb-header-inner-container a:hover{
    color: #33cbd9;
    background-color: #fff;
}
@media (max-width: 991px){
#tb-header-inner-container{
    align-items: center;
}
#tb-header-inner-container h1{
    width: 100%;
    text-align: center;
}
}
@media (max-width: 768px){
#tb-header-main-container{
    height: 400px;
}
}
@media (max-width: 600px){
#tb-header-main-container{
    height: 300px;
}
#tb-header-inner-container h1{
    font-size: 30px;
}
}
/* Number Box */
#after-header-number-box-main-container{
    height: 600px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
#after-header-number-box-main-container::after{
    content: '';
    height: 200px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #08354e;
    border-radius: 0  0 50% 50%;
}
#after-header-number-box-inner-container{
    height: 90%;
    width: 95%;
    z-index: 1;
    max-width: 1200px;
    background-color: white;
    border-radius: 50px;
    box-shadow: 1px 1px 10px black;
}
.number-boxes-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
  padding: 20px 10px;
  box-sizing: border-box;
}

.number-box {
  border-radius: 15px;
  flex: 1 1 calc(25% - 20px);
  min-width: 0;
  max-width: none;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.number {
  font-size: 60px;
  font-weight: bold;
  color: #08354e;
  margin-bottom: 10px;
}
.number-box p {
  font-size: medium;
  color: #333;
  margin: 0;
  line-height: 1.3;
}
@media (max-width: 768px){
    #after-header-number-box-main-container {
    height: 400px;
}
.number-boxes-container {
    gap: 10px;
    padding: 10px;
}
.number-box {
    padding: 10px;
}
.number {
    font-size: 30px;
}
.number-box p {
    font-size: small;
}
}
@media (max-width: 600px){
    #after-header-number-box-main-container {
    height: 250px;
}
.number {
    font-size: 18px;
}
.number-box p {
    font-size: 8px;
}
}

/* Innovation and Impact  */
#innovation-and-impact-main-heading{
      height: fit-content;
    width: 100%;
    display: flex;
    background-color: #08354e;
    justify-content: center;
    padding: 20px;
    align-items: center;
}
#innovation-and-impact-main-heading h2{
    width: 80%;
    text-align: center;
    color: white;
    font-size: 40px;
}
@media (max-width: 991px){
#innovation-and-impact-main-heading h2{
    width: 95%;
}   
}
@media (max-width: 768px){
#innovation-and-impact-main-heading h2{
    font-size: 35px;
}   
}
@media (max-width: 600px){
#innovation-and-impact-main-heading h2{
    font-size: 30px;
    width: 100%;
}   
}
#innovation-and-impact-main-container{
    height: fit-content;
    width: 100%;
    display: flex;
    background-color: #08354e;
    justify-content: center;
    padding: 20px;
    align-items: center;
}
#innovation-and-impact-inner-container{
    height: fit-content;
    width: 100%;
    max-width: 1400px;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.innovation-section{
    height: fit-content;
    width: 100%;
    display: flex;
    padding-top: 10px;
    border-top: 1px solid white;
    justify-content: center;
    align-items: center;
}
#innovation-section-reverse{
    flex-direction: row-reverse;
}
.innovation-section-left{
    height: 100%;
    width: 48%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    padding-left: 20px;
    color: white;
    flex-direction: column;
}
.innovation-section-left h2{
    color: #33cbd9;
    font-size: 35px;
    text-align: left;
}
.innovation-section-left p{
    font-size: small;
    text-align: left;
}
.innovation-section-right{
    height: 100%;
    width: 48%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.innovation-section-right img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
@media (max-width: 991px){
    .innovation-section-left h2 {
    font-size: 20px;
}
    .innovation-section-left p {
        font-size: xx-small;
    }
}
@media (max-width: 768px) {
    .innovation-section-left{
    gap: 10px;
}
    .innovation-section-left h2 {
    font-size: 12px;
}
    .innovation-section-left p {
        font-size: 7px;
        width: 95%;
    }
}
@media (max-width: 600px) {
    .innovation-section {
    flex-direction: column;
    gap: 20px;
    }
    #innovation-section-reverse{
        flex-direction:column;
    }
    .innovation-section-left,.innovation-section-right  {
        width: 100%;
    }
}