* {
  box-sizing: border-box;
}

body {
  font-family: Verdana, sans-serif;
}

.mySlides {
  display:block;
  height: 100%;
  width: 100%;
  
}

.mySlides img {
  vertical-align: middle;
  object-fit: cover;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  }

/* Slideshow container */
.legacy-hero .slideshow-container {
  display: flex;
  flex-direction: row;
  max-width: 100%;
  height: 400px;
  position: relative;
  margin: auto;
  width: 100%;
  
}



/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display:inline-block;
  flex-direction: row;
  transition: background-color 0.6s ease;
  align-items: center;
}

.active {
  background-color: #cbcbcb;
}

/* Fading animation */
.fade {
  animation-name: fade; 
  animation-duration: 1.5s;
}

@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}
}

.slider_crs_btn {
  position:relative;
  width: 130px;
  height: 44px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Roboto;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #FFFFFFFF;
  background: #00BDD6FF;
  opacity: 1;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  }
  /* Hover */
  .slider_crs_btn:hover {
  color: #FFFFFFFF;
  background: #00A9C0FF;
  }
  /* Pressed */
  .slider_crs_btn:hover:active {
  color: #FFFFFFFF;
  background: #0095A9FF;
  }
  /* Disabled */
  .slider_crs_btn:disabled {
  opacity: 0.4;
  }


  .legacy-hero .mySlider {
    display: inline-block;
    position: relative;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    border: 1px;
    border-color: red;
  }