

.container-1{
    display: flex;
    padding-bottom: 20px;
    padding-top: 20px;
    text-align: center;

}

.container-1-1{
  padding-left: 50px;
  padding-right: 50px;
}

.container-1 > div {
    flex: 1; /* Equal width for all child divs */
  }
  
  .container-1 .container-1-1 {
    flex: 2; /* Twice the width of other child divs */
  }
  
  .container-1 .container-1-2 {
    flex: 1; /* Half the width of other child divs */
  }

  .team-photo-1 img{
    text-align: center;
    width: 500px;
    padding-left: 35px;
  }

  .team-photo-2 img{
    width: 500px;
    padding-left: 35px;
  }

  .container-1-2{
    text-align: center;
    background-color: #58617C;
  }
  .cont-desc{
    text-align: center;
  }

  .container-2{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 20px;
    padding-top: 20px;
  }


  .container-3{
    background-color: #58617C;
    padding-bottom: 20px;
    padding-top: 20px;
    padding-right: 50px;
    padding-left: 50px;
    text-align: center;
  }

  .container-3 p{
    text-align: center;
  }

  .container-4{
    display: flex;
    text-align: left;
    padding-bottom: 20px;
    padding-top: 20px;
    padding-right: 50px;
    padding-left: 50px;
  }

  .description-3{
    padding-left: 25px;
  }

  .container-5{
    text-align: center;
    padding-left: 50px;
    padding-right: 50px;
    background-color: #58617C;
  }

  .description-4-split{
    display: flex;
    justify-content: space-between;
  }


  /* Media Queries */

  @media screen and (max-width: 768px) {
    /* Adjust the styles for screens up to 768px in width */
  
    .container-1 {
      flex-direction: column;
    }
  
    .container-1 > div {
      flex: 1;
      padding-bottom: 20px;
    }
  
    .team-photo-1 img,
    .team-photo-2 img {
      width: 100%;
      padding-left: 0;
    }
  
    .container-2 {
      grid-template-columns: 1fr;
    }
  
    .description-3 {
      padding-left: 0;
    }
  
    .container-4 {
      flex-direction: column;
    }

    .container-5 {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .description-4-split {
      display: flex;
      justify-content: center;
    }
  }
