.intro { 
	font-family: Arial;
  }
  
  #image-gallery { 
	width: auto; 
  }
  
  #current-image { 
	width: 100%;
  
  object-fit: cover; 
  } 
  
  #image-thumbs { 
	display: flex; 
	width:100%;
  flex-wrap: wrap;
  }
  #image-list {
    display: none;
  }
  .thumb { 
	width: 80px; 
	height: 80px; 
	object-fit: cover; 
	cursor: pointer;
  margin: 5px;
  }
  /* Create two  columns that sits next to each other */

.col1 {
  display: flex;
  flex-direction: column;
  margin-left:15px;
  padding-left: 15px;
  margin: 15px;
  width:25%;
  border: 5px solid #ff6c00;
  height: fit-content;
}
.col {
    display: flex;
    flex-direction: column;
    margin-left:15px;
    padding-left: 15px;
    margin: 15px;
    width: 50%;
    margin-top: 40px;
  }


.col2 {
  display: flex;
  flex-direction: column;
  margin-left:15px;
  padding-left: 0px;
  margin: 15px;
  width:50%;
  border: 5px solid #ff6c00;
  min-height: 1020px;
}

.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
}
/* mobile device ----------------------------------------------------------------------------------------------------------*/
@media only screen and (max-width:850px){
  .col1 {
    width:fit-content;
  }

  .col2 {
    width:fit-content;
    min-height: auto;
  }
  img {
    height: auto !important;
  }
}