  
      /* 
      Document: COg. Home page CSS
      Author: Scott Polley
      Version: V1
      Date Deployed: N/A
      */
  
  
  
  html, body{
    height: 100%;
    margin: 0;
    padding: 0;
  }
  
  .Header {
    height: 100px;
    border-style: solid;
    border-width: .5px;
    background-color: white;
    border-color: grey;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 1000;
  }

   .left-section {
     background-color: white;
     width: 200px;
     margin-left: 10px;
     display: felx;
    }

    .COg-Logo {
     width: 100px;
    }

    .center-section {
     background-color: white;
     flex: 1;
     display: flex;
     justify-content: end;

    }

    .create-button {
     position: relative;
     background-color:white;
     color: rgba(0, 0, 0, 0.50);
     font-family: Arial, Helvetica, sans-serif;
     font-size: 20px;
     border: none;
     height: 36px;
     width: 100px;
     border-radius: 5px;
     padding: 0 10px;
     margin: 0 30px;
     cursor: pointer;

    }

    .create-button::after {
     content: '';
     position: absolute;
     width:110px;
     height: 0.175rem;
     left:0;
     bottom: 0;
     background: red;
     transform: scale(0, 1);

    }

   .create-button:hover {
      color: rgba(0, 0, 0, 0.97);
     font-size: 22px;
     font-weight: bold;
    
   }
   .create-button:hover::after {
     transform: scale(1, 1);
     transition: transform 0.5s ease;

   }

    .create-button:active {
     background-color: none;
     font-size: 15px;
    }


    .volunteer-button {
     position: relative;
     background-color: white;
     color: rgba(0, 0, 0, 0.50);
     font-family: Arial, Helvetica, sans-serif;
     font-size: 20px;
     border: none;
     height: 36px;
     width: 155px;
     border-radius: 5px;
     padding: 0 10px;
     margin: 0 30px;
     cursor: pointer;
   

    }

    .volunteer-button::after {
     content: '';
     position: absolute;
     width:100%;
     height: 0.175rem;
     left:0;
     bottom: 0;
     background: #45bc7a;
     transform: scale(0, 1);

    }

    .volunteer-button:hover {
     color: rgba(0, 0, 0, 0.97);
     font-size: 22px;
     font-weight: bold;
    
    }

    .volunteer-button:hover::after {
      transform: scale(1, 1);
      transition: transform 0.5s ease;
    }

    .volunteer-button:active {
     background-color: none;
     font-size: 15px;
    }


    .donate-button {
     position: relative;
     background-color: white;
     color: rgba(0, 0, 0, 0.50);
     font-family: Arial, Helvetica, sans-serif;
     font-size: 20px;
     border: none;
     height: 36px;
     width: 110px;
     border-radius: 5px;
     padding: 0 10px;
     margin: 0 30px;
     cursor: pointer;
    }

    .donate-button::after {
     content:'';
     position: absolute;
     width:100%;
     height: 0.175rem;
     left:0;
     bottom: 0;
     background: #29abe2;
     transform: scale(0, 1);

    }

    .donate-button:hover {
     color: rgba(0, 0, 0, 0.97);
     font-size: 22px;
     font-weight: bold;
    
    }

    .donate-button:hover::after {
     transform: scale(1, 1);
     transition: transform 0.5s ease;
   }

    .donate-button:active {
     background-color: none;
     font-size: 15px;
   }

    .right-section {
     background-color: white;
     width: 75px;
     display: flex;
     justify-content: center;

    }

    .Taco-Menu {
     position: relative;
     width: 25px;
     height:25px;
     overflow: hidden;
     cursor: pointer;
    }
    
    .Taco-Menu img {
      position: absolute;
      width: 25px;
      height: 25px;
      object-fit: cover;
      transition: opacity 0.5s ease-in-out;
    }

    .Taco-Menu img.transition {
     opacity: 1;
     z-index: 2;
    }

    .Taco-Menu:hover img.transition {
      opacity: 0;
    }

    .slide{
      height: 100%;
      width: 180px;
      position: absolute;
      background-color: #fff;
      transition: 0.5s ease;
    }
    input[type="checkbox"] {
      display: none;
    }


    .toggle {
      position: absolute;
      height: 30px;
      width: 30px;
      top: 20px;
      right: 20px;
      z-index: 1;
      cursor: pointer;
      border-radius: 2px;
      background-color: white;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.50);
    }
    .toggle .common{
      position: absolute;
      height: 2px;
      width: 20px;
      background-color: red;
      border-radius: 50px;
      transition: 0.3s ease;

    }
    .toggle .top_line {
      top: 30%;
      left: 50%;
      transform: translate(-50%,-50%)
    }
    .toggle .mid_line {
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%)
    }
    .toggle .bot_line {
      top: 70%;
      left: 50%;
      transform: translate(-50%,-50%)
    }
    input:checked ~ .toggle .top_line {
      left: 2px;
      top: 14px;
      width: 25px;
      transform: rotate(45deg) translate(2px, 1px);
    }

    input:checked ~ .toggle .bot_line {
      left: 2px;
      top: 14px;
      width: 25px;
      transform: rotate(-45deg) translate(2px, -1px);
    }
    input:checked ~ .toggle .mid_line {
      opacity: 0;
    }

    .sidebar{
      position:fixed;
      top: 35;
      right: 0;
      height: 100vh;
      width: 200px;
      z-index: 999;
      background-color: rgba(0, 0, 0, 0.2);
      backdrop-filter: blur(10px);
      box-shadow: -10px 0 10px rgba(0, 0, 0, 0.50);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      transition: .3s ease;
      transform: translatex(250px);
  
    }

      input:checked ~ .sidebar{
      transform: translatex(0px);
      opacity: 1;
      }

    .sidebar li{
      height: 50px;
      list-style: none;
      padding-top: 30px;
    }

    .sidebar a{
     position: relative;
     background-color: none;
     color: rgba(0, 0, 0, 0.50);
     font-family: Arial, Helvetica, sans-serif;
     font-size: 20px;
     border: none;
     height: 36px;
     width: 110px;
     border-radius: 5px;
     padding: 0 10px;
     margin: 0 30px;
     cursor: pointer;
     text-decoration: none;
     align-items: center;
     align-content: center;
     justify-content: center;
    }

    .sidebar a::after {
     content:'';
     position: absolute;
     width:100%;
     height: 0.175rem;
     left:0;
     bottom: 0;
     background: #fff568;
     transform: scale(0, 1);

    }

    .sidebar a:hover {
     color: rgba(0, 0, 0, 0.97);
     font-size: 22px;
     font-weight: bold;
    
    }

    .sidebar a:hover::after {
     transform: scale(1, 1);
     transition: transform 0.5s ease;
   }

    .sidebar a:active {
     background-color: none;
     font-size: 15px;
   }


    /* text*/

    h1 {
      display: flex;
      text-align: center;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 50px;
      color:  rgba(0, 0, 0, 0.50);

    }

    P1 {
      display: flex;
      text-align: center;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 30px;
      color:  rgba(0, 0, 0, 0.50);
    }

    P2 {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 20px;
      color:  rgba(0, 0, 0, 0.50);
    }

    h2 {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 30px;
      color:  whitesmoke;
      padding-bottom: 1rem;
   }
    f2 {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 20px;
      color:  whitesmoke;
   }

    /* Start of the Body*/

    body {
      height: 100%;
      margin: 0;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      margin: 0;
      background-color: whitesmoke;
  
    }

    main {
      flex: 1;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      align-items: center;
      width: 100%;
      margin-top: 120px;
      padding-bottom: 0.5rem;

    }

    .msnImage {
      display: flex;
      flex-grow: 1;
      width: 2000px;
      justify-content: center;
      align-items: center;
      align-content: center;

    }

    /* Start of the Projects Section*/
    .projImage-box {
      width: auto;
      height: 600px;
      border: 20px solid rgba(0, 0, 0, 0.50);
      border-radius: 45px;
      overflow: hidden;
      transition: border-color .3s ease, box-shadow 0.3s ease;

    }

    .projImage-box:hover {
      border-color: #45bc7a;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.50);
      transform:scale(1.02);
    }
    .attTale {
      object-fit: cover;
      cursor: pointer;
    }

    /* Start of Footer*/

    .footer-container {
      width: 100%;
      display: flex;
      top: auto;
      background-color: black;
      padding-top: 1rem;
      padding-bottom: 2rem;
      position: relative;
      bottom: 0;
      margin-top: auto;
 
    }

    .footer {
      width: 80%;
      height: 20vh;
      background-color: black;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      margin: 0 auto;

    }

    .footer-title {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 30px;
      color: whitesmoke;
      margin-bottom: 1rem;
      
    }

    .footer-heading {
      display: flex;
      flex-direction: column;
      margin-right: 4rem;
      margin-bottom: 4rem;

    }

    .footer-heading p1 {
      margin-bottom: 2rem;
      padding-bottom: 2rem;
    }

    .footer-heading a {
      color: white;
      font-family: Arial, Helvetica, sans-serif;
      text-decoration: none;
      margin-bottom: 0.5rem;
      align-items: center;
      align-content: center;
    }

    .footer-heading a:hover {
      color: red;
      transition: 0.3s ease-out;

    }

    .footer-email-form {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 15px;
      padding: 40px;
     
    }

    .footer-email-row {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 10px;

    }

    #footer-email{
      width: 250px;
      height: 50px;
      border-radius: 100px;
      outline: none;
      border: none;
      padding-left: 0.5rem;
      font-size: 0.6rem;
      font-family: Arial, Helvetica, sans-serif;
      text-align: center;

    }

    #footer-email::placeholder {
      color: red;
      font-family: Arial, Helvetica, sans-serif;
    }

    #footer-email-btn {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: red;
      outline: none;
      border: none;
      color: whitesmoke;
      font-size: 0.6rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    #footer-email-btn:hover {
      cursor: pointer;
      background-color: #29abe2;
      transition: all 0.4s ease-out;
    }

    #footer-email-btn:active {
      transform:scale(-1.02);
      background-color: #45bc7a;
    }