.slideshow-container * {
  box-sizing: border-box;
}
/*
body {
font-family: Verdana, sans-serif;
}
*/
.mySlides {display: none;}

.slideshow-container img {
    vertical-align: middle;
}
.mySlides img {
    height: 100%;
}

/* Slideshow container */
.slideshow-container {
  /*max-width: 1000px;*/
  position: relative;
  margin: auto;
  width: 100%;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: relative;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #424242;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
/*.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}*/

.active {
/*  background-color: #717171;*/
/*  background-color: #f2f202;*/

}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}

.row {
    height: 33%;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column-slide {
  float: left;
  width: 33.33%;
  text-align: center;
}

.preview {
    display: block;
    width: 55%;
    float: left;
}
.slides {
    width: 45%;
    overflow: hidden;
    text-align: center;
    height: 100%;
}
/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}
.column-slide img{
  height: 100%;
  border-radius: 25px;
  padding: 9px;
  border: 7px transparent solid;

}
.column-slide img.active{
  height: 100%;
    border: 7px #fbb04e solid;
/*    -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
/*    filter: grayscale(0%);*/
}

/* If the screen size is 601px wide or more, set the font-size of <div> to 80px */
@media screen and (min-width: 2500px) {
  .today p {
    font-size: 2.5em  
  }
}
/* If the screen size is 600px wide or less, set the font-size of <div> to 30px */
@media screen and (min-width: 1024px) and (max-width: 2499px) {
  .today p {
    font-size: 1.5em;
  }
}

@media screen and (min-width: 320px) and (max-width: 1023px) {
  .today p {
    font-size: 1em;
  }
}

