body{
    background-image: url("../imgs/Elevate\ Education.png");
    height: 100vh;
    background-repeat: no-repeat;
  }
  .blue-icon{
    color: #2980B9;
  }
  #nav{
      /* border-bottom: 5px solid gray; */
      box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
  }

  #current{
    color: #00f;
  }

  #side-nav{
      display: none;
  }
  #nav-items{
      color: #000;
  }
  .dropbtn {
      background-color: #3498DB;
      color: white;
      padding: 16px;
      font-size: 16px;
      border: none;
      cursor: pointer;
    }
    
    .dropbtn:hover, .dropbtn:focus {
      background-color: #2980B9;
    }
    
    .dropdown {
      position: relative;
      display: inline-block;
    }
    
    .dropdown-content {
      display: none;
      position: absolute;
      background-color: #f1f1f1;
      min-width: 160px;
      overflow: auto;
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
      z-index: 1;
    }
    
    .dropdown-content a {
      color: black;
      padding: 12px 16px;
      text-decoration: none;
      display: block;
    }
    
    .dropdown a:hover {background-color: #ddd;}
    
    .show {display: block;}
  
  /* hamburger-icon */
  
  .container {
      display: inline-block;
      cursor: pointer;
      display: none;
      
    }
    
    .bar1, .bar2, .bar3 {
      width: 35px;
      height: 5px;
      background-color: #333;
      margin: 6px 0;
      transition: 0.4s;
    }
    
    .change .bar1 {
      transform: translate(0, 11px) rotate(-45deg);
    }
    
    .change .bar2 {opacity: 0;}
    
    .change .bar3 {
      transform: translate(0, -11px) rotate(45deg);
    }
  
    /*main dropdown*/
    
    .m-dropdown {
      margin-top: 2%;
      /* overflow: hidden; */
    }
    
    .m-dropdown .m-dropbtn {
      border: none;
      outline: none;
      color: #000;
      background-color: inherit;
      font-family: inherit;
      margin: 0;
    }
    
   
    
    .dropdown-content {
      display: none;
      position: absolute;
      background-color: #f9f9f9;
      min-width: 160px;
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
      z-index: 1;
    }
    
    .dropdown-content a {
      float: none;
      color: black;
      padding: 12px 16px;
      text-decoration: none;
      display: block;
      text-align: left;
    }
    
    .dropdown-content a:hover {
      background-color: #ddd;
    }
    
    .m-dropdown:hover .dropdown-content {
      display: block;
    }
.title{
    position: absolute;
    margin-left: 45%;
    margin-top: 3%;

}
.title-background{
    width: 200px;
    height: 50px;
    background: #fff;
    border: 2px solid #000;
    border-radius: 20px;
}
.text-uppercase{
    margin-top: -18%;
    margin-left: 19%;
    font-weight: bold;
}
  /*members images and texts*/
  .img-responsive {
    max-width: 90%;
    height: auto;
  }
  
  .card-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20%, 1fr)); /* Adjust minmax values as needed */
    justify-content: center;
    gap: 5px; /* Adjust the gap value to control spacing between images */
    position: relative;
    margin-top: 9%;
    /* margin-left: 2%; */
  }

  .membersMobile{
    display: none;
  }
  
  .members-background{
    width: 250px;
    height: 60px;
    background: #fff;
    border: 1px solid #000;
    border-radius: 30px;
    position: absolute;
    margin-left: 4%;
    margin-top: -6%;
  }
  .labels{
    position: absolute;
    margin-left: 7%;
    margin-top: -5.5%;
    font-size: 13px;
  }
  .labels2{
    position: absolute;
    margin-left: 7.9%;
    margin-top: -5.5%;
    font-size: 13px;
  }
  .labels span{
    font-style: italic;
  }
  .labels2 span{
    font-style: italic;
  }
    @media only screen and (max-width: 700px) {
      #nav{
          display: none;
          position: relative;
          
      }
      #side-nav{
          display: block;
          box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
      }
      .container {
          display: inline-block;
          right: 0;
        }
      #nav-links{
          display: none;
      }
    }


    @media only screen and (max-width: 600px) {

      .card-members{
        display: none;
      }
      .membersMobile{
        display: block;
        margin-top: 10vh;
      }
      .card-members-mbl1{
        margin-top: 20vh;
        display: block;
      }
      .members-background{
        width: 250px;
        height: 60px;
        background: #fff;
        border: 1px solid #000;
        border-radius: 30px;
        position: absolute;
        margin-left: 18%;
        margin-top: -30%;
      }
      .title{
        position: absolute;
        margin-left: 25%;
        margin-top: -15%;
      }
      .labels{
        position: absolute;
        margin-left: 30%;
        margin-top: -28%;
        font-size: 13px;
      }
      .labels2{
        position: absolute;
        margin-left: 32%;
        margin-top: -28%;
        font-size: 13px;
      }
      .img-responsive {
        max-width: 90%;
        height: auto;
        margin-bottom: 5vh;
      }
    }