.row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  .row > .column {
    padding: 0 8px;
    }
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  /* Create four equal columns that floats next to eachother */
  .column {
    float: left;
    padding: 10px;
  } 
  /* The Modal (background) */
  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 45px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(255, 255, 255, 0.5);
  }
  /* Modal Content */
  .modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 60%;
    max-width: 1200px;
    border: 5px solid white;
  }
  /* The Close Button */
  .close {
    color: #91C340;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
  }
  .close:hover,
  .close:focus {
    text-decoration: none;
    cursor: pointer;
  }
  /* Hide the slides by default */
  .mySlides {
  display: none;
  }
  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: #91C340;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    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,
  .next:hover {
    background-color: rgba(255, 255, 255, 0.8);
  }
  /* Number text (1/3 etc) */
  .numbertext {
    color: #91C340;
    background-color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    font-size: 1em;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  /* Caption text */
  .caption-container {
    text-align: center;
    background-color: white;
    padding: 2px 16px;
    color: #91C340;
  }
  img.demo {
    opacity: 0.6;
  }
  .active,
  .demo:hover {
    opacity: 1;
  }
  img.hover-shadow {
    transition: 0.3s;
  }
  .hover-shadow:hover {
    box-shadow:  0 3px 10px rgb(0 0 0 / 0.5);
  }