:root {
  --primary-blue: #2596be;
  --secondary-blue: #1e4d6e;
  --text-dark: #333;
  --text-light: #666;
  --cta-orange: #be4d25;
  --error-red: #dc3545;
  --success-green: #28a745;
  --border-gray: #ced4da;
  --bg-gray: #f8f9fa;
}

* {
  box-sizing: border-box;
}

body {
  background: white;
  font-family: 'Roboto';
  font-size: 20px;
  color: dimgray;
}

.wcp-section-title {
  padding-top: 25px;
  color: var(--primary-blue);
  font-family: 'Lato';
  font-size: 56px;
  text-align: center;
  font-weight: bold;
}

h2 {
  color: var(--primary-blue);
  font-family: 'Lato';
  font-size: 36px;
}

.button_box {
  float: right;
  display: flex;
  align-items: center;
  height: 100%;
}

.main {
  position: relative;
  max-width: 1100px !important;
  margin: auto !important;
  padding: 10px;
  font-family: 'Roboto';
  font-size: 24px;
  font-weight: normal;
}

div.basic-panel {
  float: left;
  overflow: hidden;
  border-radius: 10px;
  background: white;
  margin: 15px;
  padding: 10px; 
  box-shadow: 2px 2px 6px 4px rgba(0, 0, 0, 0.2);
  text-align: left;
}

/* Slideshow container */
.slideshow-container {
  min-width: 500px;
  max-width: 1000px;
  margin: auto;
  position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: lightgray;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 5px 5px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 5px 0 0 5px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.6);
}

/* Caption text */
.text {
  color: black;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: black;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.wcp-header-space {
  height: 138px;
  transition: 0.25s;
}

@media screen and (max-width: 1000px) {
  .wcp-header-space {
    height: 96px;
  }
}