
    .gallery-slider {
      font-family: Arial;
      margin-top: 130px;
     
    }
    
    .gallery-slider * {
      box-sizing: border-box;
      
    }
    
    img {
      vertical-align: middle;
    }


    /* Position the image container (needed to position the left and right arrows) */
    .gallery-container {
      position: relative;
      margin: 0 15% 5% 15%;
    }
    
    /* Hide the images by default */
    .mySlides {
      display: none;
    }
    
    /* Add a pointer when hovering over the thumbnail images */
    .cursor {
      cursor: pointer;
    }
    
    /* Next & previous buttons */
    .prev,
    .next {
      cursor: pointer;
      position: absolute;
      top: 0;
      height: 60vh;
      width: 50%;
      padding: 16px;
      color: white;
      font-weight: bold;
      font-size: 20px;
      border-radius: 0 3px 3px 0;
      user-select: none;
      -webkit-user-select: none;
    }
    
    /* Position the "next button" to the right */
    .next {
      right: 0;
      border-radius: 3px 0 0 3px;
    }
    
    /* On hover, add a black background color with a little bit see-through */
    .prev:hover {
        border-left: #ad3737 solid 1px;
    }


    .next:hover {
        border-right: #ad3737 solid 1px;
    }
    
    /* Number text (1/3 etc) */
    .numbertext {
      color: #f2f2f2;
      font-size: 12px;
      padding: 8px 12px;
      position: absolute;
      top: 0;
      display: none;
    }
    
    /* Container for image text */
    .caption-container {
      height: 5vh;
    }
    .row {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .row:after {
      content: "";
      display: table;
      clear: both;
    }
    
    /* Six columns side by side */
    .column {
      width: 16.66%;
    }
    
    /* Add a transparency effect for thumnbail images */
    .demo {
      opacity: 0.3;
    }
    
    .active,
    .demo:hover {
      opacity: 1;
    }

    .mySlides img {
        height: 60vh;
        width: 70%;
        object-fit: contain;
        object-position: center center;
    }

    .column img {
        height: 120px;
        object-fit: cover;
        object-position: top center;
        padding: 0 5% 0 5%;
    }

    .column video {
      height: 120px;
      object-fit: cover;
      object-position: top center;
      padding: 0 5% 0 5%;
  }
    .gallery-description {
        
        font-family: itc-avant-garde-gothic-pro, sans-serif;
        font-weight: 300;
        font-style: normal;
        text-align: center;
        font-size: 1rem;
        color: black;
        padding: 0 30% 0 30%;
    }

    .bottom-nav {
      font-family: itc-avant-garde-gothic-pro, sans-serif;
      font-weight: 300;
      font-style: normal;
      text-align: center;
      text-decoration: none;
      font-size: 1rem;
      color: black;
   
  }
  .bottom-nav a {
    color: black;
    text-decoration: none;
  }
  .bottom-nav a:hover {
    text-decoration: underline;
  }