.s-info {
    color: black;
  }

  .project-details__content p{
      color: white;
      padding: 20px;
  }
  .project-details__content ul li{
      color: white;
      padding: 10px;
      list-style: disc;
  }
  .project-details__content ol li{
      color: white;
      padding: 10px;
      list-style: disc;
  }

  .project-details__content h6, h4{
      color: white;
  }

  .project-details__content a{
      color: white;
  }

  .project-details__content a:hover{
      color: #574b90;
  }

  .project-details__content h1{
    color: white;
  }


#email-subscribe {
    background-color: #786fa6;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  #email-subscribe .newsletter {
    background: linear-gradient(125deg, #778beb, #f8a5c2);
    width: 300px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 0 20px #00000060;
    box-sizing: border-box;
  }
  @media screen and (min-width: 600px) {
    #email-subscribe  .newsletter {
      width: 500px;
      padding: 60px;
    }
  }
  #email-subscribe .newsletter h1 {
    text-transform: uppercase;
    color: #fff;
    font-size: 38px;
    line-height: 40px;
  }
  @media screen and (min-width: 600px) {
    #email-subscribe  .newsletter h1 {
      font-size: 48px;
    }
  }
  #email-subscribe .newsletter h1 span {
    display: block;
    font-size: 28px;
  }
  @media screen and (min-width: 600px) {
    #email-subscribe  .newsletter h1 span {
      font-size: 38px;
    }
  }
  #email-subscribe .newsletter p {
    color: #fff;
    font-size: 14px;
    margin: 10px 0;
  }
  
  #email-subscribe .text {
    width: 100%;
    height: 70px;
    background-color: #f1f1f199;
    border-radius: 40px;
    position: relative;
    margin-top: 40px;
  }
  #email-subscribe  .text input {
    width: 100%;
    height: 70px;
    border-radius: 40px;
    border: 0;
    background: none;
    padding: 0 30px;
    outline: none;
    font-size: 15px;
  }
  @media screen and (min-width: 600px) {
    #email-subscribe  .text input {
      padding-right: 80px;
    }
  }
  #email-subscribe .text button {
    background-color: #574b90;
    border: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    right: 10px;
    top: 10px;
    outline: none;
    cursor: pointer;
    color: #fff;
    transition: 0.3s linear;
  }
  #email-subscribe .text button:hover {
    opacity: 0.5;
  }


  #news-letter-Thanks{
    display: none;
  }


  .Quote{
    border: white 3px solid;
    padding: 20px;
    margin: 10px;
    border-radius: 15px;
  }



  table {
    width: 80%;
    margin-left: 20px;
    border-collapse: collapse;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
thead {
    background-color: #999;
    color: white;
}
th, td {
    border: 1px solid #ddd;
    text-align: center;
    padding: 8px;
}

tbody tr{
  background-color: #ddd;
}

tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}
tbody tr:hover {
    background-color: #f1f1f1;
}
th {
    font-size: 16px;
}
td {
    font-size: 14px;
}
caption {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 18px;
}