:root {
  --primary: #C4D6B0;
  --secondary: #0091EA; 
  /* --tertiary: #0F1108; */
  --tertiary: #241909;
  --light: #ffffff;
  --dark: #272f32;
}
/* BODY */
html {
    scroll-behavior: smooth;
    /* background-color: gainsboro; */
    /* background-color: #95A472; */
    background-color: var(--primary);
    color: var(--tertiary)
}

/* NAV BAR */
.nav-transparent{
  background-color: rgba(0, 145, 234, 0.2) !important ;
}
nav .brand-logo {
  position:absolute;
  color: #fff;
  display: inline-block;
  font-size: 2.1rem;
  padding:0;
  margin-left: 5rem;
}

/* SLIDESHOW */
.caption {
  color: black !important;
  font-style: italic !important;
  font-weight: bold !important;
  background-color:rgba(245, 245, 245, 0.295) ;
  border-radius: 70px;
}
.slider, .slides{
  position: relative;
  top: -32px;
}

/* ALERTS */
.alert {
  color: red !important;
}

#alerts {
  font-family: 'Times New Roman', Times, serif;
}

/* SEARCH ITEMS */
.third {
  border-color: #3498db;
  color: #fff;
  box-shadow: 0 0 40px 40px #3498db inset, 0 0 0 0 #3498db;
  -webkit-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
} 
.third:hover {
  box-shadow: 0 0 10px 0 #3498db inset, 0 0 10px 4px #3498db;
  scroll-behavior: smooth;
}
.input-field .prefix.active {
  box-shadow: red;
  color: #3498db;
}
.btn-search {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  /* border: 2px solid #e74c3c; */
  border: 2px solid var(--tertiary);
  border-radius: 0.6em;
  /* color: #e74c3c; */
  color: var(--tertiary);
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  margin: 10px auto;
  padding: 1.2em 2.8em;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
}
.btn-search:hover, .btn:focus {
  color: #3498db;
  outline: 0;
}
.input-field .prefix.active {
  box-shadow: red;
  color: #3498db;
}
.radio-btn:checked, .radio-btn:not(:checked) {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}
/* CHOICES */
.choices {
  border: solid 1px black;
  border-radius: 12px;
  text-align: center;
}
.choices label {
  color: black;
}

/* CARDS */
.aspect-ratio {
  aspect-ratio: 2 / 1;
}
.card-body{
  flex:auto;
}
.cardContainer {
  display: flex;
  align-items: stretch !important;
  justify-content: space-evenly;
  margin-right: 3%;
  max-height: 350px;
  overflow: hidden;
  cursor: url(../images/frozen-panther.png), auto;
}

/* MAP STYLING */
.no-bb {
  border-bottom: none;
}
#map { 
  height: 250px; 
}


/* LISTS */
.list-header {
  font-size: 1.25em;
  font-weight: bold;
}
.list-item {
  font-size: .75em;
  font-weight: normal;
}
.list-group-item{
  line-height: 0.5;
  border: none;
}

/* FOOTER STYLES */
.page-footer {
  background-color: rgba(0, 145, 234, 1) !important ;
}
#overrides .footer-width {
  padding: 0;
  margin:0;
  width: 50%;
}

/* UTILITY CLASSES */
.show {
  visibility: visible;
}
.hide {
  visibility: hidden;
}
.underline {
    text-decoration: underline;
}
h3 {
  font-size: 2.92rem;
    line-height: 110%;
    margin: 1.9466666667rem 0 1.168rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    border-bottom: 3px black solid;
    
}
h2 {
  font-size: 3.56rem;
    line-height: 110%;
    margin: 2.3733333333rem 0 1.424rem 0;
    border-bottom: 3px black solid;
}
h5 {
  font-size: 1.64rem;
    line-height: 110%;
    margin: 1.0933333333rem 0 0.656rem 0;
    display: flex;
    flex-direction: column;
    font-weight: 300;
    align-content: stretch;
    justify-content: space-evenly;
    align-items: stretch;
  text-decoration: underline;
}


/* MEDIA QUERIES */
@media only screen and (min-width: 601px) {
  .row .col.m2 {
    width: 18.666667%;
}
}
  

@media screen and (max-width: 575px) {
  .slider {
    width: 100%;
  }
  nav .brand-logo {
    font-size: 1.5rem;
  }
  .material-icons {
    visibility: hidden;
  }
  #park-name {
    margin-left: 0;
  }
  #activities-header img {
    width: 100% !important;
    height: 200px !important;
  }
  .caption h3{
    font-size: 2rem;
  }
}