body{
    background-color: whitesmoke;
}

.gallery{
    display: flex;
    flex-direction: column;
    background-color: whitesmoke;
    padding-left: 5%;
    padding-right: 5%;
}

.gallery-title{
    padding-bottom: 30px;
}

.gallery-secondary-title{
    padding-bottom: 40px;
    padding-top: 40px;
}

.gallery-secondary-title-column {
  display: flex;
  flex-direction: column;
}



/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

    .img-max-size{
      height: 180px;
      width: 100%;
    }

    .slides-image{
      width: 100%;
      height: 159px;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

    .img-max-size{
      height: 285px;
      width: 520px;
    }

    .slides-image{
      width: 100%;
      height: 300px;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

    .img-max-size{
      height: 185px;
      width: 400px;
    }

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

    .img-max-size{
      height: 165px;
      width: 300px;
    }

    .slides-image{
      width: 100%;
      height: 500px;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

    .img-max-size{
      height: 200px;
      width: 400px;
    }

    .slides-image{
      width: 100%;
      height: 600px;
    }
}



* {
    box-sizing: border-box;
  }
  
  /* Position the image container (needed to position the left and right arrows) */
  .container {
    position: relative;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  
  /* Hide the images by default */
  .mySlides {
    display: none;
  }

  .mySlidesModal {
    display: none;
  }

  
  
  /* Add a pointer when hovering over the thumbnail images */
  .cursor {
    cursor: pointer;
  }
  
  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: #bf6b14 !important;
    font-weight: bold;
    font-size: 40px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: -40px;
    border-radius: 3px 0 0 3px;
  }

  /* Position the "next button" to the right */
  .prev {
    left: -40px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
  .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* Container for image text */
  .my-caption-container {
    text-align: center;
    background-color: #bf6b14;
    padding: 2px 16px;
    color: white;
  }
  
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Six columns side by side */
  .column {
    float: left;
    width: 25%;
    max-height: 200px;
  }
  
  /* Add a transparency effect for thumnbail images */
  .demo {
    opacity: 0.6;
  }
  
  .active,
  .demo:hover {
    opacity: 1;
  }
