  /******* PORTFOLIO *******/  
  #Portfolio {
    padding-bottom: 150px;
  }

  .project {
    display: flex;
    flex-direction: row;
    width: 90vw;
    margin: 150px 5vw 0 5vw;
  }

  .project h1 {
    text-align: left;
    font-size: 3rem;
    margin: 0;
  }

  .project h2, .project h3 {
    text-align: left;
    cursor: pointer;
  }

  .col_left {
    width: 30vw;
    padding-right: 2vw;
  }

  .col_right {
    width: 60vw;
  }

  .main_img {
    width: 100%;
  }

  .col_right p {
    margin-top: 2px;
  }

  .images {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .images img, .images p {
    width: 29vw;
  }
  
  
  

/*** TABLET VERTICAL ***/
@media only screen and (max-width: 900px) {    
  .project {
    flex-direction: column;
    width: 80vw;
    margin: 100px 10vw 0 10vw;
  }

  .col_left {
    width: 100%;
    padding-right: 0;
  }

  .col_right {
    width: 100%;
  }

  .images img, .images p {
    width: 38vw;
}
}



/*** MOBILE ***/
@media only screen and (max-width: 600px) {
  .project {
    width: 90vw;
    margin: 100px 5vw 0 5vw;
  }

  .images img, .images p {
    width: 43vw;
}
}