* {
  box-sizing: border-box;
}

body {
  background: #eceef1;
  font-family: "Slabo 27px", serif;
  color: #343b46;
}

.wrapper {
  padding-left: 1em !important;
  padding-right: 1em !important;
  max-width: 1000px;
  background-color: #fff;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.06);
}

.header {
  padding: 30px 30px 0;
  text-align: center;
}
.header__title {
  margin: 0;
  text-transform: uppercase;
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1.1;
}
.header__subtitle {
  margin: 0;
  font-size: 1.5em;
  color: #949fb0;
  font-family: "Yesteryear", cursive;
  font-weight: 500;
  line-height: 1.1;
}

.cards {
  padding: 15px;
  display: flex;
  flex-flow: row wrap;
  padding: 2.5rem 0.9em 0em 0.9em;
}

div.card {
  flex-grow: 0;
  width: calc(33.3333333333% - 30px);
  transition: all 0.2s ease-in-out;
  margin-bottom: 1rem;
  display: block;
  border: none;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  div.card {
    width: 100%;
  }
}
div.card:hover .card__inner {
  background-color: #adb5bd;
  transform: scale(1.05);
}
div.card__inner {
  width: 100%;
  position: relative;
  cursor: pointer;
  color: #eceef1;
  text-transform: initial;
  text-align: center;
  transition: all 0.2s ease-in-out;
  box-shadow: 1px 1px 3px #7e7e7e;
}
div.card__inner:hover {
  border: none;
}
div.card__inner:after {
  transition: all 0.3s ease-in-out;
}
div.card__inner .fa {
  width: 100%;
  margin-top: 0.25em;
}
div.card__expander {
  transition: all 0.2s ease-in-out;
  background-color: #343b46;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #eceef1;
  font-size: 0.9em;
  padding: 1.5em 1em;
  box-shadow: 1px 1px 3px #000;
}
div.card__expander .fa-solid {
  font-size: 1.33em;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 1em;
  height: 1em;
}
div.card__expander .fa-solid:hover {
  opacity: 0.9;
}
div.card.is-collapsed .card__inner:after {
  content: "";
  opacity: 0;
}
div.card.is-collapsed .card__expander {
  max-height: 0;
  min-height: 0;
  overflow: hidden;
  margin-top: 0;
  opacity: 0;
}
div.card.is-expanded .card__inner {
  opacity: 1;
  background-color: #234674;
}
div.card.is-expanded .card__inner:after {
  content: "";
  opacity: 1;
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  bottom: -31px;
  left: calc(50% - 15px);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #333a45;
}
div.card.is-expanded .card__inner .fa:before {
  content: "\f115";
}
div.card.is-expanded .card__expander {
  min-height: 200px;
  overflow: visible;
  margin-top: 30px;
  opacity: 1;
  margin-bottom: 2em;
}
div.card.is-expanded .card__expander .card_expander_body {
  overflow: auto;
  width: 100%;
}
div.card.is-expanded .card__expander .card_expander_body table {
  margin: auto;
}
div.card.is-expanded .card__expander .card_expander_body table li {
  color: black !important;
}
@media screen and (max-width: 600px) {
  div.card.is-expanded .card__expander .card_expander_body p iframe {
    width: 100% !important;
  }
}
@media screen and (max-width: 600px) {
  div.card.is-expanded .card__expander .card_expander_body {
    width: 100%;
  }
}
div.card.is-expanded:hover .card__inner {
  transform: scale(1);
}
div.card.is-inactive .card__inner:hover {
  background-color: #234674;
}
div.card.is-inactive:hover .card__inner {
  transform: scale(1);
}

.expanding-card-background {
  padding: 1em;
  height: 100%;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .num-cols-4 .card:nth-of-type(3n+2) .card__expander {
    margin-left: calc(-100% - 30px);
  }
  .num-cols-4 .card:nth-of-type(3n+3) .card__expander {
    margin-left: calc(-200% - 60px);
  }
  .num-cols-4 div.card__expander {
    width: calc(300% + 60px);
  }
}
@media screen and (min-width: 1024px) {
  .num-cols-4 .card:nth-of-type(4n+1) .card__expander {
    margin-left: 0;
  }
  .num-cols-4 .card:nth-of-type(4n+2) .card__expander {
    margin-left: calc(-100% - 30px);
  }
  .num-cols-4 .card:nth-of-type(4n+3) .card__expander {
    margin-left: calc(-200% - 60px);
  }
  .num-cols-4 .card:nth-of-type(4n+4) .card__expander {
    margin-left: calc(-300% - 90px);
  }
  .num-cols-4 div.card__expander {
    width: calc(400% + 90px);
  }
}

.num-cols-3 .card div.card__expander {
  margin-left: 0;
}
.num-cols-3 div.card__expander {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .num-cols-3 .card:nth-of-type(2n+2) div.card__expander {
    margin-left: calc(-100% - 30px);
  }
  .num-cols-3 div.card__expander {
    width: calc(200% + 30px);
  }
}
@media screen and (min-width: 1024px) {
  .num-cols-3 .card:nth-of-type(3n+4) div.card__expander {
    margin-left: 0;
  }
  .num-cols-3 .card:nth-of-type(3n+3) div.card__expander {
    margin-left: calc(-200% - 60px);
  }
  .num-cols-3 .card:nth-of-type(3n+2) div.card__expander {
    margin-left: calc(-100% - 30px);
  }
  .num-cols-3 div.card__expander {
    width: calc(300% + 60px);
  }
}

.num-cols-2 .card:nth-of-type(2n+2) div.card__expander {
  margin-left: 0;
}
.num-cols-2 div.card__expander {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .num-cols-2 .card:nth-of-type(2n+2) div.card__expander {
    margin-left: 0;
  }
  .num-cols-2 div.card__expander {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .num-cols-2 .card:nth-of-type(2n+2) div.card__expander {
    margin-left: calc(-100% - 30px);
  }
  .num-cols-2 div.card__expander {
    width: calc(200% + 30px);
  }
}

.num-cols-1 .card div.card__expander {
  margin-left: 0;
}
.num-cols-1 div.card__expander {
  width: 100%;
}

/*# sourceMappingURL=expanding-card.min.css.map */
