:root {
--main-font: 'Roboto Condensed', Century Gothic, Helvetica, Arial, sans-serif;
--heading-font: 'Roboto Condensed', Helvetica, Arial, sans-serif;
--serif-font: 'Roboto Condensed', Helvetica, Arial, serif;


*, *::before, *::after { box-sizing: border-box; }

/* Colors */

--white: #ffffff;
--black: #090909;
--black-light: #181818;
--gray: #999;

--primary-color: #022787;
--primary-color-light: aliceblue;
--accent-color: orange;
}

body {
  padding: 1rem 2rem;
  margin: 0 auto;
  font-family: var(--main-font);
}

a {
  text-decoration: none;
}

.site-header {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 2rem;
}
.site-header .logo {
  /*margin: 1em 1.33em 0em; */
  background: url("../img/logo.png") no-repeat scroll transparent;
  background-size: contain;
  cursor: pointer;
  height: 6em;
  width: 27em;
  height: 5.4em;
  width: 23em;
  max-width: 100%;
}

.page-header {
  background: var(--primary-color);
  color: white;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: end;
  padding: 1em;
  margin-bottom: 4rem;
}
.page-header h1 {
  font-size: 4rem;
  margin-block: 0;
  text-transform: uppercase;

}
.page-header h5 {
  color: var(--accent-color);
  font-size: 2em;
  font-weight: bold;
  margin-block: 0;
}

.for_questions {
  font-size: 0.8em;
}

.social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
  padding: 1rem;
}

.social-icon {
  color: var(--primary-color);
  font-size: 2rem;
  text-align: center;
}

.social-email {
  color: var(--primary-color);
  font-size: small;
  text-decoration: none;
}

.quick-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: end;
}


.quick-links a {
  background: var(--primary-color);
  border: 2px solid;
  color: white;
  font-family: var(--main-font);
  font-weight: normal;
  letter-spacing: 0.09em;
  line-height: 1.333;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  white-space: nowrap;
  flex: 250px; 
}

.table-of-contents {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  margin-top: 2rem;
}


.table-of-contents a {
  color: var(--primary-color);
  display: inline-block;
  font-family: var(--main-font);
  font-weight: normal;
  letter-spacing: 0.09em;
  padding: 0.5rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  white-space: nowrap;
}

.section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 3rem;
  padding: 1.5em;
  border: 1px solid #dee2e6!important;
}

@media screen and (max-width: 768px) {
  .section {
    grid-template-columns: 1fr;
  }

}


.section-title {
  color: var(--primary-color);
  font-size: 2.1em;
  font-weight: 500;
  letter-spacing: .1em;
  margin-bottom: 0.5em !important;
  margin-top: 0 !important;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25em;
}

.section-title::before, .section-title::after {
  background: var(--accent-color);
  content: '';
  height: 0.75em;
  display: block;
  flex: 1;
}


.subsection {
  /* required so owl-carousel will stay within the width of the column */
  min-width: 100%; 
}

.button, .submit-button {
  background: var(--primary-color);
  border: 2px solid;
  color: white;
  display: inline-block;
  font-family: var(--main-font);
  font-weight: normal;
  font-size: 1.2em;
  letter-spacing: 0.09em;
  line-height: 1.333;
  margin-bottom: 1rem;
  padding: 1rem 0;
  text-align: center;
  text-decoration: none;
  text-indent: 0.09em;
  text-transform: uppercase;
  transition: all 0.165s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  width: 100%;
  white-space: nowrap;
}

.text-center {
  text-align: center;
}

.background-light {
  background: var(--primary-color-light);
  padding: 1rem;
}

.list {
  list-style: none;
  padding-left: 0;
}


.list-item {
  align-items: center;
  display: flex;
  gap: 0.5em;

}

.list-item::before {
  background: var(--accent-color);
  content: '';
  display: block;
  height: 0.5em;
  width: 1em;
}

.link {
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: none;
}
.card-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.width-50 {
  max-width: 50%;
}

@media screen and (max-width: 768px) {
  .width-50 {
    max-width: 100%;
  }

}

.card {
  border: 1px solid lightgrey;
  padding: 1rem;
  background: var(--primary-color-light);
  filter: drop-shadow(2px 4px 6px lightgrey);

}
 
.card-header {
  align-items: center;
  color: var(--primary-color);
  display: flex;
  justify-content: space-between;
  gap: 0.5em;
  margin-block-start: 0em;
  
}

.card-header::after {
  background: var(--accent-color);
  content: '';
  height: 0.25em;
  display: block;
  flex: 1;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.card-location {
  display: flex;
  justify-content: space-between;
  gap: 1em;
  font-weight: bold;
  font-size: 0.8em;
}

.card-description {
}


.contact-us-container {
  display: grid;
  grid-template-columns: 1fr 1fr
}

@media screen and (max-width: 768px) {
  .contact-us-container {
    grid-template-columns: 1fr
  }
}

.contact-us-items {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

.contact-us-social-icons-container {
  display: flex;
  gap: 2rem;
}
.contact-us-social-icon {
  color: var(--primary-color);
  font-size: 3rem;
  text-align: center;

}

.past-events-link {
  text-align: center; 
  margin-top: 4rem;
}

footer .copyright {
  color: #090909;
  display: block;
  font-size: .66em;
  font-weight: 300;
  height: 4.5em;
  letter-spacing: .1em;
  padding: 3em 0 3.9em;
  text-align: center;
  text-transform: uppercase;
}

.slideshow-container {
}

.slideshow-button {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  background: white;
  font-weight: bold;
  font-size: small;
  padding: 0.5em 1em;
  text-transform: uppercase;

}

.slideshow-show-button {
}

.slideshow-close-button {
  display: none;
}

.slideshow {
  display: none;
  padding-top: 1em;
}

.slideshow > img {
  display: none;
}

/* owl carousel */


.owl-prev, .owl-next {
  width: 15px;
  height: 100px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  border: 0px solid black;
  background: none;
  opacity: 1.0;
  transition: all -5s ease;
}

.owl-prev:hover, .owl-next:hover {
  background: none !important;
  outline: none !important;
  opacity: 1;
}

.owl-prev {
  left: 10px;
}

.owl-next { 
  right: 10px;
}

.owl-prev i, .owl-next i {
  transform: scale(3.0);
  color: #ccc;
  background: black;
  padding: 3px;
}

/* end owl carousel */

