﻿  /* Position the image container (needed to position the left and right arrows) */
  .slider-container {
    position: relative;
    margin-bottom: 50px;
  }

  
.sliderHeader {
    font-size: 1.375rem !important;
    font-weight: bold !important;
    line-height: 1.6 !important;
}

  /* Hide the images by default */
  .mySlides {
    display: none;
  }
  .mySlides img {
    display: block;
    margin: 0 auto;
    max-height: 465px !important;
    max-width: 100%;
  }

@media screen and (max-width: 500px) {
.mySlides img {
    max-height: 300px !important;
  }
}

  /* Add a pointer when hovering over the thumbnail images */
  .cursor {
    cursor: pointer;
  }

  /* Next and previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: auto;
    padding: 7px 16px;
    background-color: rgba(0, 0, 0, 0.7);
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
    border-radius: 50% !important;
    user-select: none;
    -webkit-user-select: none;
    text-decoration: none !important;
  }

  /* 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(0, 0, 0, 1);
  }

  /* Number text (1/3 etc) */
  .numbertext {
    color: #fff;
    background-color: #000;
    border-radius: 12px;
    font-size: 0.75rem;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }

  /* Container for image text */
  .caption-container {
    text-align: center;
    background-color: #222;
    padding: 2px 16px;
    color: white;
  }
  .caption-container p#caption {
    color: #fff;
    padding: 10px;
  }

  .row:after {
    content: "";
    display: table;
    clear: both;
  }

.slider-container .row {
    display: flex;
}

.slider-container .column {
    flex: 1 1 0;
}


  /* Add a transparency effect for thumnbail images */
  .demo {
    opacity: 0.6;
    transition: none;
  }

  .active,
  .demo:hover {
    opacity: 1;
  }
