
html { overflow-y: scroll; }
:root {
    --main-color:#006265;
    --highlight-color: #cece0aff;
}



/* keynote horizontal card pics */
.card-img{
  object-fit: contain; 
  max-height: 200px;
}

/* homepage card icon pics */
.card-img-top{
  object-fit: contain;
  max-height: 100px;
  border: 2px solid black;
  border-radius: 3px 3px 0 0;
}

/* agenda table on program page */
table{ min-width: 80% }
th{ padding: 10px; }
td{ padding: 10px; }

* {
  box-sizing: border-box;
}

/* Float three columns side by side */
.column {
  object-fit: contain; 
  float: left;
  width: 33%;
  padding: 0 10px;
}

/* Remove extra left and right margins, due to padding in columns */
.row {margin: 0 -5px;}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: "inline";
  clear: both;
}

/* Style the counter cards */
.card-footer {
  box-shadow: 0; /* this adds the "card" effect */
  border: 0;
  padding: 16px;
  text-align: center;
  background-color: #FFFFFF;
}

/* Responsive columns - one column layout (vertical) on small screens */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
}

/* page header */
.page-header {
  width: 100%;
  background-color: $blue-500;
  background-repeat: no-repeat;
  background-position: center center;
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* 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: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  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(0,0,0,0.8);
}
a {
  /* color: #26765c; */
  color: #b1bf1f;
  /* color: #d7d736;  */
}

/* 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 {
  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}
}



.btn-primary {
    background-color: var(--highlight-color);
    border-color: var(--highlight-color);
}
.btn-dark {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.btn-primary:hover {
  filter: brightness(88%);
    background-color: var(--highlight-color);
    border-color: var(--highlight-color);
}
.btn-dark:hover {
  filter: brightness(88%);
    background-color: var(--main-color);
    border-color: var(--main-color);
}

ul.nav li.nav-item a.nav-general {
        color: var(--main-color) !important;
        font-size: 24px !important;
      }
ul.nav li.nav-item a.nav-active {
  color: var(--highlight-color) !important;
  font-size: 24px !important;
}

.bg-main {
    background-color: var(--main-color) !important;
}