:root {
  --primary-blue: #18216D;
  --secondary-blue: #005FEC;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

.text-blue-1 {
  color: var(--primary-blue);
}

.text-blue-2 {
  color: var(--secondary-blue);
}

.text-white {
  color: white;
}

a.card-link {
  text-decoration: none;
  cursor: pointer;
}

.event-item {
  display: flex;
  align-items: stretch !important;
}

a.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";  
}

.event-card {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 32px 32px;

  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  transition: box-shadow 0.2s ease;
  margin-bottom: 32px;
  cursor: default;
}

.event-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.event-detail {
  display: flex;
  /* justify-content: center; */
  flex-direction: column;
}

.event-detail p {
  display: flex;
  align-items: center;
  margin: .5em 0;
  font-size: 12px;
  line-height: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.icon {
  transform: scale(.6);
  margin-right: .2em;
}

.icon-lg {
  transform: scale(1.1);
  margin-right: .5em;
}

img.icon-arrow-right {
  width: 16px;
  height: 16px;
}

.event-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-top: 24px;
}

.cs-footer {
  margin-top: 32px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "motiva-sans";
  color: var(--primary-blue);
}

h4.event-title {
  font-weight: 800;
  font-size: 28px;
  line-height: 32px;
}

.no-events {
  background: var(--secondary-blue);
  border-radius: 4px;
  display: flex;
  align-items: center;
}

.no-events>h4,
.fas .fa-exclamation-circle {
  font-size: 24px;
  line-height: 32px;
  padding: 1em;
  font-weight: 400;
}

.load-more-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3em 0;
}

.header__footer img {
  margin: 40px 0 0;
}

@media screen and (min-width: 320px) {
  .cs-links .cs-box {
    height: auto;
  }

  .icon-display {
    display: none;
  }

  section.header {
    margin: 200px 0 5em;
    display: flex;
  }

  h6.header__title {
    font-style: normal;
    font-weight: 800;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #18216d;
  }

  h1.header__slogan {
    font-style: normal;
    font-weight: 800;
    font-size: 40px;
    line-height: 44px;
    color: #18216d;
    margin: 24px 0 16px;
  }

  p.header__desc {
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 32px;
    color: #18216d;
  }

  .header .header__image {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .header__content {
    display: flex;
    align-items: center;
  }

  .header__content--inner {
    display: flex;
    flex-direction: column;
  }

  .header__content--inner,
  .header__image {
    flex: 1;
  }

  .header .header__image {
    display: block;
    padding-left: 80px;
  }
}

@media screen and (min-width: 1024px) {
  img.icon-display {
    display: block;
    width: 24px;
    height: 24px;
  }

  .event-card:hover {
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.08);
  }

  .event-card:hover>.event-card-content>h4.event-title {
    color: var(--secondary-blue);
  }

  .event-card-no-link:hover>.event-card-content>h4.event-title {
    color: var(--primary-color);
  }

  .event-card-no-link:hover {
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.12);
  }

  /* animates icon at base of card */
  .icon-move {
    cursor: pointer;
    display: flex;
    flex-flow: row nowrap;
    width: 24px;
  }

  .icon-move-spacer {
    transition: all 0.2s ease-out;
  }

  .icon-move:hover .icon-move-spacer {
    flex-grow: 1;
  }

  /* icon animation */

  h1.header__slogan {
    font-size: 60px;
    line-height: 68px;
  }

  p.header__desc {
    font-size: 28px;
    line-height: 40px;
  }
}

.hiddenStyle {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}