
/* For whole document */

*{
    padding:0;
    box-sizing: border-box;
  }

#bodyContent {
    min-height: 100vh;
    font-family: Frutiger, sans-serif;
    font-size: 18px;
}

/*
#bodyContent ul {
    list-style-type: none;
    padding-left: 0px;
}
    */

a {
    color: rgb(157, 0, 0);
    text-decoration: none;
}


li::marker {
    color: green;
  }

#bodyContent section {
    margin-top: 48px;
}

h1 {
    font-size: 40px;
    font-weight: 700;
}


h2 {
    font-size: 30px;
    font-weight: 700;
}

/* For header */

.site-header p {
    margin: 0;
}
  
header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    font-size: 14px;
    z-index: 200;
    background-color: white;
  }
  
  .site-header {
      display: flex;
      flex-direction: row;
      padding-top: 8px;
      padding-bottom: 8px;
      align-items: center;
      
  }
  
  .left-section {
      display: flex;
      flex-direction: row;
      flex: 1;
      justify-content: flex-end;
      padding-right: 8px;
  }
  
  .middle-section {
      flex: 3;
      font-size: 15px;
      text-size-adjust: 100%;
      line-height: 100%;
      
  }
  
  .right-section {
      display: flex;
      flex-direction: row;
      flex: 1;
      padding-left: 10px;
  }
  
  #logo {
      max-height: 50px;
      cursor: pointer;
  }
  
  #special-logo {
      max-height: 50px;
  }





/* Navigation Links */

nav {
    background-color: rgb(36, 35, 35);
  }

nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    color: white;
    justify-content: end;
    align-items: center;
    padding: 0;
    margin:0;
}

nav li {
    /*
    display: flex; */
    height: 50px;
}

nav a {
    color: white;
    padding: 0 20px;
    height: 100%;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: 0.15s;
}

nav a:hover {
    background-color: rgb(255, 255, 255);
    color: black;
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    z-index: 999;
    background-color: black;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.sidebar li {
    width: 100%;
    border-bottom: 1px solid white;

}

.sidebar a {
    width: 100%;
    justify-content: space-between;
}

.hideOnMobile {display: none;}


.dropdown, .dropdown1, .dropdown2 {
    display: none;
}

.dropdownMenu a {
    color: red;
}

/* For ABOUT */

#dropLinkContainer {
    position: relative;
}


#dropLinkContent {
    display: none;
    position: absolute;
    background-color: black;
    color: white;
    z-index: 1;
}

#dropLinkContent a {
    padding: 12px;
}

#dropLinkContainer:hover #dropLinkContent {
    display: block;
}



/* For Academics */

#dropLinkContainer1 {
    position: relative;
}


#dropLinkContent1 {
    display: none;
    position: absolute;
    background-color: black;
    color: white;
    z-index: 1;
}

#dropLinkContent1 a {
    padding: 12px;
}

#dropLinkContainer1:hover #dropLinkContent1 {
    display: block;
}


/* For People */

#dropLinkContainer3 {
    position: relative;
}


#dropLinkContent2 {
    display: none;
    position: absolute;
    background-color: black;
    color: white;
    z-index: 1;
}

#dropLinkContent2 a {
    padding: 12px;
}

#dropLinkContainer2:hover #dropLinkContent2 {
    display: block;
}

/* Buttons */

body button {
    padding: 5px 25px;
    border-radius: 5px;
    background-color: white;
}


/* Footer */

.footer {
    background-color: rgb(0, 0, 0);
    color: white;
    font-size: 14px;
    padding: 40px 0px;
    margin-top: 48px;
}

.footerItem {
    display: flex;
    flex-direction: column;
}

.footerList {
    list-style-type: none;
}

.footerList a {
    text-decoration: none;
    color: white;
}

.footerWrapper {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.inFooterWrapper {
    flex: 1;
}

#CounterVisitor {
    text-align: center;
    border-bottom: 1px solid rgb(255, 255, 255);
    border-top: 1px solid rgb(255, 255, 255);
    margin-top: 24px;
    padding-bottom: 12px;
    padding-top: 12px;
}


/*Table*/
table td, th{
    border: 1px solid rgb(187, 182, 182);
    padding: 4px;
}

table {
    margin-bottom: 8px;
}

/* Media Queries*/

.bannerText {
    text-align: center;
}
  
@media only screen and (min-width: 376px ) {

   
    #logo {
        max-height: 60px;
    }

    #special-logo {
        max-height: 60px;
    }
}

@media only screen and (min-width: 426px ) {


    .site-header {
        padding: 12px;
    } 

    #logo {
        max-height: 70px;
    }
    #special-logo {
        max-height: 70px;
    }
    .middle-section {
        line-height: 135%;
        font-size: 17px;
    }

    
}

@media only screen and (min-width: 769px ) {



    #logo {
        max-height: 120px;
    }

    #special-logo {
        max-height: 120px;
    }

    .middle-section {
        font-size: 30px;
    }

    .hideOnMobile{
        display: flex;
    }

    nav ul{
        justify-content: space-evenly;
    }

    .hideOnLaptop {
        display: none;
    }

    

    .footerWrapper {
        flex-direction: row;
        column-gap: 20px;
    }
}

