/* ==================== General ==================== */
/* ---------- General | CTAs ---------- */
/* General | CTAs | Shared styling */
.parkland-cta {
  display: inline-block;
  width: 100%;
  padding: 17.5px 6px;
  border-radius: 3px;
  font-size: 1.5rem;
  line-height: 1.5rem;
  letter-spacing: 1.4px;
  text-align: center;
  white-space: normal;
}

@media screen and (min-width: 768px) {
    .parkland-cta {
        width: auto;
        padding: 17.5px 0;
        font-size: 2rem;
        line-height: 2.25rem;
        letter-spacing: 1.6px;
        /*white-space: nowrap;*/
    }
}

/* General | CTAs | Primary */
.parkland-cta--primary {
  background-color: var(--primary-purple-color);
  border: 2px solid var(--primary-purple-color);
  color: var(--primary-white-color);
}

@media screen and (min-width: 768px) {
  .parkland-cta--primary {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.parkland-cta--primary:hover,
.parkland-cta--primary:focus {
  background-color: var(--primary-white-color);
  color: var(--primary-purple-color);
}

/* General | CTAs | Secondary */
.parkland-cta--secondary {
  border: 2px solid var(--primary-purple-color);
  color: var(--primary-purple-color);
}

@media screen and (min-width: 768px) {
  .parkland-cta {
    width: auto;
    padding-left: 80px;
    padding-right: 80px;
  }
}

.parkland-cta--secondary:hover,
.parkland-cta--secondary:focus {
  background-color: var(--primary-purple-color);
  color: var(--primary-white-color);
}

.parkland-cta--small {
  padding: 12px;
  font-size: 1.25rem;
  border: 1px solid var(--primary-purple-color);
}

.parkland-cta--input {
  border: 1px solid var(--primary-purple-color);
  border-radius: 0px 3px 3px 0px;
  padding: 9px 30px;
  width: auto;
  line-height: 1rem;
  font-size: 1.25rem;
}

.parkland-cta--hero {
  font-size: 1.5rem;
}

@media screen and (min-width: 768px) {
  .parkland-cta--nav {
    width: 100%;
  }
}

/* ---------- General | Header ---------- */
.header-actions {
  position: relative;
  max-width: var(--content-max-width);
  padding: 0;
  margin: 0 auto;
  color: var(--primary-purple-color);
  font-size: 1.125rem;
  line-height: 1.25rem;
}

@media screen and (min-width: 768px) {
  .header-actions {
    padding:0;
  }
}

@media screen and (min-width: 992px) {
  .header-actions {
    font-size: 1.25rem;
    line-height: 1.375rem;
  }
}

@media screen and (min-width: 1200px) {
  .header-actions {
    padding: 10px var(--desktop-nav-gutter-width) 0;
  }
}

.header-actions::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: calc(100% - (var(--mobile-nav-gutter-width)*2));
  height: 2px;
  background-color: var(--primary-purple-color);
  opacity: 0.1;
}

@media screen and (min-width: 768px) {
  .header-actions::after {
    width: calc(100% - (var(--desktop-nav-gutter-width)*2));
  }
}

.header-actions-item {
  overflow: hidden;
}

.mobile-search {
    border-bottom: solid 1px var(--border-gray-color);
}

.header-actions-item--full-width {
    width: 100%;
}

@media screen and (min-width: 1200px) {
  .header-actions-item--full-width {
    width: auto;
  }
}

.header-actions-item:not(:last-child) {
  margin-right: 0;
}

@media screen and (min-width: 576px) {
  .header-actions-item:not(:last-child) {
    margin-right: 30px;
  }
}

.header-actions-item + .header-actions-item--phone {
  margin-right: 0;
}

@media screen and (min-width: 1200px) {
  .header-actions-item + .header-actions-item--phone {
    margin-right: 30px;
  }
}

.header-actions-search:hover,
.header-actions-phone:hover,
.header-actions-resizer-item:hover,
.header-actions-search:focus,
.header-actions-phone:focus,
.header-actions-resizer-item:focus {
  color: var(--primary-dark-gray-color);
}

.header-actions-icon {
  font-size: 30px;
}

@media screen and (min-width: 1200px) {
  .header-actions-icon {
    margin-right: 10px;
    font-size: 20px;
  }
}

.header-actions-text,
.header-actions-resizers,
.header-actions-resizer-item {
  display: inline-block;
}

.header-actions-text,
.header-actions-resizers {
  font-weight: var(--font-weight-bold);
}

.header-actions-resizer-item:not(:last-child) {
  margin-right: 8px;
}

.header-actions-resizer--medium {
  font-size: 1.5rem;
}

.header-actions-resizer--large {
  font-size: 1.75rem;
}

.header-actions-link,
.header-actions-language {
    padding: 14px 28px;
    font-size: 1.25rem;
    line-height: 1.375rem;
    /*max-width: 200px;*/
    white-space: nowrap;
}

/* ---------- General | Search Bar ---------- */
.search-bar {
  transition: width .5s;
  -webkit-transition: width .5s;
  -moz-transition: width .5s;
  -o-transition: width .5s;
  border: 1px solid var(--border-gray-color);
  padding-left: 15px;
  width: 100%;
  overflow: hidden;
}

.search-bar.invisible {
  width: 0;
}

.search-bar.focus {
  border-color: var(--primary-purple-color);
}

.search-bar-icon {
  align-self: center;
  margin-right: 15px;
  font-size: 17px;
}

.search-bar-input {
  border: none;
  width: 100%;
}

.search-bar-input:focus {
  outline: none;
}

/* ---------- General | Nav ---------- */
.navigation {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 10px var(--mobile-nav-gutter-width);
  background-color: var(--primary-white-color);
  color: var(--primary-purple-color);
  font-size: 1.25rem;
  line-height: 1.375rem;
  font-weight: var(--font-weight-bold);
}

@media screen and (min-width: 768px) {
  .navigation {
    padding-right: var(--desktop-nav-gutter-width);
    padding-left: var(--desktop-nav-gutter-width);
  }
}

.navigation.sticky-top {
  box-shadow: 0px 50px 50px -25px var(--shadow-gray-color);
}

@media screen and (min-width: 1200px) {
    .navigation.sticky-top {
        position: relative;
        top: auto;
        padding-top: 15px;
           /*  padding-bottom: 15px;    */
        padding-bottom: 0px;
        box-shadow: none;
    }

    #navElements{
        align-items: flex-end;
    }
}

.navigation--footer {
  padding: 0 var(--mobile-gutter-width);
}

.navigation-logo {
  width: 200px;
}

.navigation-elements {
    max-height: 75vh;
    overflow: scroll;
}

    .navigation-elements::-webkit-scrollbar {
        display: none;
    }

@media screen and (min-width: 1200px) {
  .navigation-logo {
    width: 250px;
  }
}

@media screen and (min-width: 1200px) {
  .navigation-elements {
    width: 100%;
    max-height: unset;
    overflow: unset;
  }
}

@media screen and (min-width: 1200px) {
  .navigation-element:not(:last-child) {
    margin-right: 30px;
  }
}

.navigation .navigation-element .navigation-element-link {
  padding-top: 20px;
  padding-bottom: 20px;
}

.navigation .navigation-element .navigation-element-link {
  color: inherit;
}

.navigation .navigation-element .navigation-element-link:hover,
.navigation .navigation-element .navigation-element-link:focus {
  color: var(--primary-dark-gray-color);
  border: none;
}

@media screen and (max-width: 1200px) {
  .navigation-element.show .navigation-element-link {
    background-color: var(--primary-light-gray-color);
  }
}

@media screen and (min-width: 1200px) {
  .navigation .navigation-element .navigation-element-link {
    padding: 15px 0;
    margin-bottom: 20px;
  }
}

.navigation .navigation-element .navigation-element-cta {
  padding: 10px 15px;
  color: var(--primary-white-color);
  font-size: 1.25rem;
}

.navigation .navigation-element .navigation-element-cta:hover,
.navigation .navigation-element .navigation-element-cta:focus {
  color: var(--primary-purple-color);
}

@media screen and (max-width: 1200px) {
  .navigation-element {
    border-top: solid 1px var(--border-gray-color);
  }
  .navigation-element--no-border-top {
    border-top: none;
  }
}

.nav-no-border{
    border-top:none;
}

.navbar-nav .nav-link {
    padding-left: 18px;
}

.navigation-element-icon {
  margin-right: 10px;
  font-size: 25px;
}

.navigation-element-caret {
  display: inline-block;
  margin-left: 10px;
  font-size: 12px;
}

.navigation-element.show .navigation-element-caret--parent {
  transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.navigation-dropdown-container {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  box-shadow: 0px 40px 50px var(--shadow-gray-color);
  background-color: var(--primary-white-color);
}

.navigation-dropdown-row {
  flex-grow: 1;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
}

.navigation-dropdown-content {
  padding-left: 20%;
}

.navigation-dropdown-item {
  border-top: solid 2px var(--tertiary-light-purple-color);
  cursor: pointer;
  padding-top: 46px;
  padding-bottom: 62px;
}

.navigation-dropdown-item:hover,
.navigation-dropdown-item:focus {
  border-top: solid 4px var(--primary-purple-color);
  background-color: var(--primary-light-gray-color);
  color: var(--primary-purple-color);
}

.navigation-dropdown-item:hover .navigation-dropdown-title,
.navigation-dropdown-item:hover .navigation-dropdown-icon,
.navigation-dropdown-item:focus .navigation-dropdown-title,
.navigation-dropdown-item:focus .navigation-dropdown-icon {
  color: var(--primary-purple-color);
}

.navigation-dropdown-item:hover .navigation-dropdown-title--blue::after,
.navigation-dropdown-item:focus .navigation-dropdown-title--blue::after {
  background-color: var(--secondary-blue-color);
}

.navigation-dropdown-item:hover .navigation-dropdown-title--green::after,
.navigation-dropdown-item:focus .navigation-dropdown-title--green::after {
  background-color: var(--secondary-green-color);
}

.navigation-dropdown-item--links {
  cursor: inherit;
  padding-top: 39px;
  padding-bottom: 39px;
}

.navigation-dropdown-item--links:hover {
    padding-top: 37px;
}

.navigation-dropdown-item--links li {
  margin-bottom: 4px;
  color: var(--primary-dark-gray-color);
  font-size: 1rem;
}

.navigation-dropdown-item--links li:hover,
.navigation-dropdown-item--links li:focus {
  color: var(--primary-purple-color);
}

.navigation-dropdown-item-mobile {
  display: block;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 18px;
  color: var(--primary-dark-gray-color);
}

.navigation-dropdown-item-mobile--small {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 0;
}

.navigation-dropdown-item-mobile:hover,
.navigation-dropdown-item-mobile:active,
.navigation-dropdown-item-mobile:focus {
  background-color: var(--primary-white-color);
  color: var(--primary-dark-gray-color);
}

.navigation-dropdown-cta,
.navigation-dropdown-cta:hover,
.navigation-dropdown-cta:focus {
  text-decoration: underline;
  color: var(--primary-purple-color);
}

.navigation-dropdown-icon {
  color: var(--primary-purple-color);
  font-size: 40px;
}

@media screen and (min-width: 1200px) {
  .navigation-dropdown-icon {
    color: var(--tertiary-gray-color);
  }
}

.navigation-dropdown-icon--mobile {
  margin-right: 10px;
  font-size: 28px;
}

.navigation-dropdown-title {
  position: relative;
  margin-top: 30px;
  color: var(--primary-dark-gray-color);
  font: 1.25rem/1.75rem 'freight-display-pro', serif;
}

.navigation-dropdown-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  background-color: var(--tertiary-gray-color);
  width: 25px;
  height: 4px;
}

.navigation-dropdown-quick-access-title {
  margin-bottom: 12px;
  font: 1rem/1.375rem 'freight-display-pro', serif;
}

@media screen and (min-width: 1200px) {
  .navbar-expand-xl .navbar-nav .nav-link.navigation-dropdown-login {
    padding: 18px 40px;
    margin-bottom: 0px;
  }
}

.nav-item.show .navigation-dropdown-login {
  background-color: var(--primary-light-gray-color);
}

.navigation-dropdown-menu {
  border: none;
}

@media screen and (min-width: 1200px) {
  .navigation-dropdown-menu {
    box-shadow: 0px 20px 30px var(--shadow-gray-color);
    padding: 9px;
  }
}

.navigation-dropdown-item-mobile.show {
  background-color: var(--primary-light-gray-color);
  color: var(--primary-dark-gray-color);
}

.navigation-dropdown-item-mobile.show img {
  transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.navigation-element-link.show .navigation-element-caret--desktop {
  transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

/* These "before" are necessary due to the sticky nav, since when going to a section(using anchors) the title was behind the nav */
.nav-section::before {
  content: "";
  display: block;
  height: 200px;
  margin-top: -200px;
}

@media screen and (min-width: 768px) {
  .nav-section::before {
    height: 135px;
    margin-top: -135px;
  }
}

@media screen and (min-width: 1200px) {
  .nav-section::before {
    height: 30px;
    margin-top: -30px;
  }
}


/* google translate hack */

.goog-te-alt {
    font-family: arial;
    font-size: 11px;
    color: #666;
    white-space: nowrap;
}

.goog-te-gadget {
    display: none;
}

/* ---------- General | Footer ---------- */
/* General | Footer | Sponsors */
.footer-sponsors {
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
}

.footer-sponsors::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: calc(100% - (var(--mobile-nav-gutter-width)*2));
  height: 2px;
  background-color: var(--primary-purple-color);
  opacity: 0.1;
}

@media screen and (min-width: 768px) {
  .footer-sponsors::after  {
    width: calc(100% - (var(--desktop-nav-gutter-width)*2));
  }
}

.footer-sponsors-image {
  object-fit: contain;
}

.footer-sponsors-images-container {
  max-width: 684px;
  width: 100%;
}

@media screen and (min-width: 992px) {
  .footer-sponsors-images-container {
    max-width: 768px;
  }
}

@media screen and (min-width: 768px) {
  .footer-sponsors-image-container  {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.footer-sponsors-image-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 1px;
  right: 0;
  height: 100%;
  background-color: var(--tertiary-red-color);
}

.footer-sponsors-image-container:last-child::after {
  content: none;
}

.flex-column-container {
    display: inline-flex;
    flex-direction: column;
    flex-wrap: wrap;
    /*max-height: 500px;*/
}

    .flex-column-container .flex-column {
        width: 200px;
    }

/* General | Footer | Content */
.footer-content {
  position: relative;
  padding-top: 30px;
  padding-bottom: 15px;
  text-align: center;
}

.footer-content2 {
    position: relative;
    padding-top: 30px;
    padding-bottom: 15px;
    text-align: center;
}

@media screen and (min-width: 576px) {
  .footer-content {
    text-align: left;
  }
}

@media screen and (min-width: 768px) {
  .footer-content {
    padding-top: 45px;
    padding-bottom: 30px;
  }
}

.footer-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: calc(100% - (var(--mobile-nav-gutter-width)*2));
  height: 2px;
  background-color: var(--primary-purple-color);
  opacity: 0.1;
}

@media screen and (min-width: 768px) {
  .footer-content::after  {
    width: calc(100% - (var(--desktop-nav-gutter-width)*2));
  }
}

.footer-content-item:not(:last-child) {
  margin-bottom: 10px;
}

.footer-content-link {
  font-size: 1rem;
  line-height: 1rem;
}

.footer-content-link--underlined {
    font-size: 1rem;
    line-height: 1rem;
    text-decoration: underline;
}

.footer-content-link:hover,
.footer-content-link:focus {
  color: var(--primary-purple-color);
}

.footer-content-title {
  display: block;
  padding: 30px 0 20px;
  font-size: 1.25rem;
  line-height: 1.375rem;
  font-weight: var(--font-weight-bold);
}

.footer-content-title--nav {
  color: var(--primary-dark-gray-color);
  font-weight: var(--font-weight-bold);
  padding-top: 0;
}

@media screen and (min-width: 576px) {
  .footer-content-title--bottom-space {
    padding: 0 0 30px;
  }

  .footer-content-title--no-top-space {
    padding: 0 0 20px;
  }
}

.footer-content-contact {
  padding-top: 70px;
}

@media screen and (min-width: 768px) {
  .footer-content-contact {
    order: -1;
    padding-top: 0;
  }
}

.footer-content-logo {
  width: 150px;
}

@media screen and (min-width: 576px) {
  .footer-content-logo {
    width: 185px;
  }
}

@media screen and (min-width: 992px) {
  .footer-content-logo {
    width: 350px;
  }
}

.footer-content-logo2 {
    margin-top: 80px;
    width: 150px;
}

.footer-content-logo3 {
    width:150px;
}

.footer-content-logo-col {
    width: 50%;
}

.footer-content-address {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .footer-content-address {
    margin-top: 30px;
  }
}

/* General | Footer | Disclaimer */
.footer-disclaimer {
    padding-top: 30px;
    padding-bottom: 30px;
    font-size: 0.875rem;
    line-height: 1rem;
    text-align: center;
}

.footer-disclaimer-links {
  padding-bottom: 35px;
}

@media screen and (min-width: 1200px) {
  .footer-disclaimer-links {
    padding-bottom: 0;
  }
}

.footer-disclaimer-item {
  position: relative;
  display: inline-block;
  padding: 0 10px 0 6px;
}

@media screen and (min-width: 768px) {
  .footer-disclaimer-item {
    padding: 0 20px;
  }
}

@media screen and (min-width: 1200px) {
  .footer-disclaimer-item:last-child {
    padding-right: 0;
  }
}

.footer-disclaimer-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  width: 2px;
  height: 100%;
  background-color: var(--primary-purple-color);
  opacity: 0.1;
}

.footer-disclaimer-link:hover,
.footer-disclaimer-link:focus {
  color: var(--primary-purple-color);
}

/* ---------- General | Breadcrumbs ---------- */
@media screen and (min-width: 990px) {
    .breadcrumbs {
        z-index: 3;
    }
}

.breadcrumbs-predecessor,
.breadcrumbs-current {
  font-size: 1.25rem;
  color: var(--primary-purple-color);
}

.breadcrumbs-predecessor::after {
  content: ">";
  font-size: 1.25rem;
  color: var(--primary-purple-color);
  margin-left: 10px;
}

.breadcrumbs-predecessor {
  color: var(--breadcrumbs-predecessor-color);
  margin-right: 10px;
}

/* ---------- General | Hero Image ---------- */

.hero-image-container img {
  width: 100%;
}

.hero-image .hero-image-text-container {
  padding-top: 30px;
  padding-bottom: 30px;
}

@media screen and (min-width: 992px) {
  .hero-image .hero-image-text-container {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.hero-image-title {
  color: var(--primary-purple-color);
  font: 3.125rem/3.375rem 'freight-display-pro', serif;
  margin-bottom: 35px;
}

@media screen and (min-width: 576px) {
  .hero-image-title {
    font-size: 3.75rem;
    line-height: 4rem;
  }
}

@media screen and (min-width: 768px) {
  .hero-image-title {
    font-size: 3.125rem;
    line-height: 3.375rem;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 900px) and (max-width:1399px) {
    .hero-image-title {
        font-size: 2.5rem;
        line-height: 1;
        margin-bottom: 20px;
        margin-top:20px;
    }
}

@media screen and (min-width: 1400px) {
  .hero-image-title {
    font-size: 60px;
    line-height: 64px;
  }
}

.hero-image-text {
  font-size: 1.25rem;
  line-height: 1.375rem;
}

@media screen and (min-width: 1200px) {
  .hero-image-text {
    max-width: 600px;
    font-size: 24px;
    line-height: 30px;
  }
}

/* ---------- General | Hero Cards ---------- */
.hero-cards {
  padding-top: 10px;
}

.hero-cards-title {
  text-align: center;
  font: 3rem/3.5rem 'freight-display-pro', serif;
  color: var(--primary-purple-color);
}

@media screen and (min-width: 768px) {
  .hero-cards-title {
    padding-top: 45px;
  }
}

.hero-cards-title::after {
  content: "";
  display: block;
  width: 67px;
  height: 8px;
  margin: 20px auto 0;
}

.hero-cards-title--orange::after {
  background-color: var(--secondary-orange-color);
}

.hero-cards-title--blue::after {
  background-color: var(--secondary-blue-color);
}

.hero-cards-title--green::after {
  background-color: var(--secondary-green-color);
}

/*----------- General | Header Text -----------*/
.header-text {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 30px var(--mobile-gutter-width);
  background-color: var(--primary-light-gray-color);
}

@media screen and (min-width: 768px) {
  .header-text {
    padding: 30px var(--desktop-smaller-gutter-width);
  }
}

.header-text--no-background {
  background-color: initial;
}

.header-text-title {
  text-align: center;
  font: 3rem/3.5rem 'freight-display-pro', serif;
  color: var(--primary-purple-color);
}

@media screen and (min-width: 768px) {
  .header-text-title {
    padding-top: 45px;
  }
}

.header-text-title::after {
  content: "";
  display: block;
  width: 67px;
  height: 8px;
  margin: 20px auto 0;
}

.header-text-title--orange::after {
  background-color: var(--secondary-orange-color);
}

.header-text-title--blue::after {
  background-color: var(--secondary-blue-color);
}

.header-text-title--green::after {
  background-color: var(--secondary-green-color);
}

/* ---------- General | Tiles ---------- */
.tiles {
  padding-top: 10px;
  padding-bottom: 10px;
  /* evenly is not part of the bootstrap utilities unfortunately */
  justify-content: space-evenly !important;
}

.tile-container {
  padding-top: 10px;
  padding-bottom: 10px;
}

.tile {
  height: 100%;
  border: 1px solid var(--tile-border-color);
}

.tile picture {
  width: 100%;
}

.tile picture img {
  width: 100%;
}

.tile:hover,
.tile:focus {
  box-shadow: 0px 20px 50px var(--shadow-gray-color);
}

.tile--white-background {
  background-color: var(--primary-white-color);
}

.tile-text-container {
  height: 100%;
  width: 100%;
  padding: 30px;
}

.tile-icon {
  margin: 70px 0;
  opacity: 0.5;
  color: var(--primary-purple-color);
  font-size: 55px;
}

.tile-title {
  font: 2rem/2.25rem 'freight-display-pro', serif;
  margin-bottom: 20px;
  word-break: break-word;
}

.tile-text {
  font-size: 1.375rem;
  line-height: 1.875rem;
}

.tile-link {
  margin-top: 20px;
  color: var(--primary-purple-color);
  font-size: 1.375rem;
  font-weight: var(--font-weight-bold);
  word-break: break-word;
}

.tile-link--underlined {
  margin: 0;
  text-decoration: underline;
  font-weight: normal;
}

.tile-label {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
}

.tile-label--orange {
  color: var(--secondary-orange-color);
}

.tile-label--light-teal {
  color: var(--tertiary-light-teal-color);
}

.tile-label--light-red {
  color: var(--tertiary-light-red-color);
}

.tile-details-item {
  font-size: 1.25rem;
}

.tile-arrow-icon {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: var(--tertiary-light-purple-color);
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  vertical-align: middle;
  margin-left: 20px;
  font-size: 20px;
  color: var(--primary-purple-color);
}

/* ---------- General | Blocks ---------- */
.block-container {
  padding-top: 10px;
  padding-bottom: 10px;
}

.block {
  padding-top: 10px;
  padding-bottom: 10px;
}

.block-picture {
  display: block;
  padding-left: 40px;
}

@media screen and (min-width: 768px) {
  .block-picture {
    padding-right: 40px;
  }
}

.block-picture--corner-right {
  padding-left: 0;
  padding-right: 40px;
}

@media screen and (min-width: 768px) {
  .block-picture--corner-right {
    padding-left: 40px;
  }
}

.block-picture-image {
  width: 100%;
}

.block-picture-corner {
  display: block;
  height: 115px;
  width: 185px;
}

@media screen and (min-width: 1200px) {
  .block-picture-corner {
    height: 140px;
    width: 225px;
  }
}

.block-picture-corner--top-left {
  margin-left: -40px;
  margin-bottom: -75px;
}

@media screen and (min-width: 1200px) {
  .block-picture-corner--top-left {
    margin-bottom: -95px;
  }
}

.block-picture-corner--top-right {
  margin-left: auto;
  margin-bottom: -75px;
  margin-right: -40px;
}

@media screen and (min-width: 1200px) {
  .block-picture-corner--top-right {
    margin-bottom: -95px;
  }
}

.block-picture-corner--bottom-left {
  margin-top: -75px;
  margin-left: -40px;
}

@media screen and (min-width: 1200px) {
  .block-picture-corner--bottom-left {
    margin-top: -95px;
  }
}

.block-picture-corner--bottom-right {
  margin-top: -75px;
  margin-left: auto;
  margin-right: -40px;
}

@media screen and (min-width: 1200px) {
  .block-picture-corner--bottom-right {
    margin-top: -95px;
  }
}

.block-picture-corner--orange {
  background: var(--secondary-light-orange-color);
}

.block-picture-corner--blue {
  background: var(--secondary-light-blue-color);
}

.block-picture-corner--green {
  background: var(--secondary-light-green-color);
}

.block-content {
  padding-top: 20px;
  padding-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .block-content {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.block-content-title {
  font: 3rem/3.5rem 'freight-display-pro', serif;
}

.block-content-title--orange-hr::after,
.block-content-title--blue-hr::after,
.block-content-title--green-hr::after {
  content: "";
  display: block;
  width: 67px;
  height: 8px;
}

.block-content-title--orange-hr::after {
  background-color: var( --secondary-orange-color);
}

.block-content-title--blue-hr::after {
  background-color: var(--secondary-blue-color);
}

.block-content-title--green-hr::after {
  background-color: var(--secondary-green-color);
}

.block-content-text {
  margin-top: 20px;
  font-size: 1.5rem;
  line-height: 1.75rem;
}

.block-content-text ol {
  counter-reset: list-counter;
  list-style: none;
  padding: 30px 0 0 50px;
}

.block-content-text ol li {
  counter-increment: list-counter;
  position: relative;
}

.block-content-text ol li:not(:last-child) {
  margin-bottom: 35px;
}

.block-content-text ol li::before {
  content: counter(list-counter);
  position: absolute;
  top: -8px;
  left: -54px;
  width: 44px;
  border-radius: 50%;
  background: var(--secondary-light-orange-color);
  color: var(--primary-purple-color);
  line-height: 2.75rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
}

.block-content-link {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}

/* ---------- General | FAQ ---------- */
.faq {
  padding-top: 30px;
  padding-bottom: 30px;
}

.faq-title {
  font: 3rem/3.5rem 'freight-display-pro', serif;
  text-align: center;
  margin-bottom: 30px;
}

.faq-card.collapsed {
  background-color: var(--primary-light-gray-color);
}

.faq-card {
  width: 100%;
  background-color: var(--primary-white-color);
  padding: 30px;
  cursor: pointer;
  margin-bottom: 12px;
}

.collapsed .faq-card-title {
  opacity: 0.5;
  font: 1.25rem/1.25rem 'freight-display-pro', serif;
}

.faq-card-title {
  color: var(--primary-dark-gray-color);
  opacity: 1;
  font: 1.5rem/1.5rem 'freight-display-pro', serif;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .faq-card-title {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }

  .collapsed .faq-card-title {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
}

.collapsed .faq-card-toggle {
  opacity: 0.5;
}

.faq-card-toggle {
  color: var(--primary-dark-gray-color);
  font-size: 2.5rem;
  opacity: 1;
  cursor: pointer;
  position: relative;
  height: 24px;
  width: 24px;
}

@media screen and (min-width: 768px) {
  .faq-card-toggle {
    height: 32px;
    width: 32px;
  }
}

.collapsed .faq-card-plus-vertical {
  display: block;
  background-color: var(--primary-dark-gray-color);
}

.faq-card-plus-vertical {
  display: none;
  background-color: var(--primary-purple-color);
  left: calc(50% - 2px);
  right: calc(50% - 2px);
  position: absolute;
  height: 24px;
  width: 3px;
}

@media screen and (min-width: 768px) {
  .faq-card-plus-vertical {
    height: 32px;
  }
}

.collapsed .faq-card-plus-horizontal {
  background-color: var(--primary-dark-gray-color);
}

.faq-card-plus-horizontal {
  background-color: var(--primary-purple-color);
  position: absolute;
  top: calc(50% - 2px);
  bottom: calc(50% - 2px);
  width: 24px;
  height: 3px;
}

@media screen and (min-width: 768px) {
  .faq-card-plus-horizontal {
    width: 32px;
  }
}

.faq-card-body {
  position: relative;
  padding: 0 12px;
  margin-bottom: 30px;
  color: var(--primary-dark-gray-color);
  font-size: 1.5rem;
  line-height: 1.875rem;
}

.faq-card-body::before {
  content: "";
  display: block;
  background-color: var(--primary-purple-color);
  width: 100%;
  height: 1px;
  margin-bottom: 23px;
}

/* ---------- General | Links Module ---------- */
.links-module {
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
}

.links-module--border-top {
  margin-top: 50px;
}

.links-module--border-top::before {
  content: "";
  position: absolute;
  top: 0;
  width: calc(100% - (var(--mobile-nav-gutter-width)*2));
  height: 2px;
  background-color: var(--primary-purple-color);
  opacity: 0.1;
}

@media screen and (min-width: 768px) {
  .links-module--border-top::before  {
    width: calc(100% - (var(--desktop-nav-gutter-width)*2));
  }
}

.links-module-title {
  margin-bottom: 30px;
  font: 2.5rem/2.75rem 'freight-display-pro', serif;
}

@media screen and (min-width: 1200px) {
  .links-module-title {
    margin-bottom: 0;
    font-size: 3.75rem;
    line-height: 4.5rem;
  }
}

.links-module-item {
  margin-bottom: 20px;
}

.links-module-item:last-child {
  margin-bottom: 0;
}

.links-module-link {
  display: block;
  font-size: 1.5rem;
  line-height: 1.75rem;
  text-decoration: underline;
  word-break: break-word;
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .links-module-link {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}

.links-module-link:hover,
.links-module-link:focus {
  color: var(--primary-purple-color);
  text-decoration: underline;
}

.links-module-link--with-icon {
  position: relative;
  padding-left: 45px;
}

.links-module-icon {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: var(--tertiary-light-purple-color);
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  vertical-align: middle;
  font-size: 20px;
  color: var(--primary-purple-color);
}

/* ---------- General | Share and Social Media Items ---------- */
.share-title {
  font: 1.5rem 'freight-display-pro', serif
}

.social-media-item {
  display: inline-block;
}

.social-media-item:not(:last-child) {
  margin-right: 10px;
}

.social-media-item-link {
  display: block;
}

.social-media-item-link:hover,
.social-media-item-link:focus {
  opacity: 0.5;
}

.social-media-item-image {
  color: var(--primary-purple-color);
  font-size: 25px;
}

@media screen and (min-width: 992px) {
  .social-media-item-image {
    font-size: 35px;
  }
}

/* ---------- General | Back to top ---------- */
.back-to-top {
  display: none;
  position: fixed;
  top: 91%;
  z-index: 1020;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: var(--tertiary-light-purple-color);
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  vertical-align: middle;
  padding: 2px 12px;
  font-size: 25px;
  color: var(--primary-purple-color);
  transform: rotate(270deg);
  box-shadow: 0px 8px 50px var(--shadow-gray-color);
  animation: fadein 1s;
  -moz-animation: fadein 1s; /* Firefox */
  -webkit-animation: fadein 1s; /* Safari and Chrome */
  -o-animation: fadein 1s; /* Opera */
}

.back-to-top:hover,
.back-to-top:focus {
  opacity: 0.5;
}

/* ---------- General | Content ---------- */
.content-title {
  margin-top: 30px;
  margin-bottom: 30px;
  color: var(--primary-purple-color);
  font: 3.75rem/4rem 'freight-display-pro', serif;
}

@media screen and (min-width: 768px) {
  .content-title {
    margin-top: 0;
  }
}

.content-date {
  padding-top: 20px;
  font-size: 1.5rem;
  line-height: 2.5rem;
}

.content-label {
  padding: 5px 30px;
  margin: 0 30px 10px 0;
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1875rem;
  text-transform: uppercase;
}

.content-label--green {
  background-color: var(--tertiary-light-green-color);
  color: var(--secondary-green-color);
}

.content-label--red {
  background-color: var(--secondary-white-color);
  color: var(--secondary-red-color);
}

.content-label--orange {
  background-color: var(--secondary-light-orange-color);
  color: var(--secondary-orange-color);
}

.content-label--teal {
  background-color: var(--tertiary-lighter-teal-color);
  color: var(--tertiary-light-teal-color);
}

/* ---------- General | URL List ---------- */
.url-list-container {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 1.5rem;
  line-height: 1.875rem;
}

.url-list-title {
  font: 3rem/3.15rem 'freight-display-pro', serif;
  margin-bottom: 30px;
  color: var(--primary-dark-color);
}

.url-list-items {
  width: 100%;
  padding: 0 15px;
}

@media screen and (min-width: 768px) {
  .url-list-items {
    width: auto;
  }
}

.url-list-item {
  padding-bottom: 15px;
  color: var(--primary-white-color);
}

.url-list-item:last-child {
  padding-bottom: 30px;
}

.url-list-item-link {
  width: 100%;
  min-width: 300px;
  max-width: 600px;
  padding: 10px 0;
  margin: 0 auto;
  border-radius: 15px;
  background-color: var(--primary-purple-color);
  background-image:
    linear-gradient(
      to right,
      var(--primary-purple-color),
      var(--primary-purple-color) 80px,
      var(--secondary-purple-color) 80px
    );
}

.url-list-item-link:hover,
.url-list-item-link:focus {
  opacity: 0.85;
}

.url-list-item-number {
  padding: 10px 0 0 30px;
  font-size: 3rem;
  line-height: 1em;
}

.url-list-item-text {
  padding: 0 40px 0 60px;
  text-align: left;
}

.url-list-link {
  color: var(--primary-purple-color);
  text-decoration: underline;
}

.url-list-link:hover,
.url-list-link:focus {
  color: var(--primary-dark-gray-color);
  text-decoration: underline;
}

/* ==================== Homepage ==================== */
/* ---------- Homepage | Hero ---------- */
.hero-image-block {
  position: relative;
  color: var(--primary-purple-color);
}

.hero-picture,
.hero-picture-image {
  width: 100%;
}

.hero .hero-content {
  padding: 30px var(--mobile-nav-gutter-width) 30px;
  background-color: var(--hero-background-color);
}

@media screen and (min-width: 768px) {
  .hero .hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    padding: 0 0 0 var(--desktop-hero-gutter-width);
  }
}

.hero-content-title {
  font: 3rem/1.25em 'freight-display-pro', serif;
  margin-bottom: 15px;
}

@media screen and (min-width: 576px) {
  .hero-content-title {
    font-size: 3.5rem;
  }
}

@media screen and (min-width: 765px) {
  .hero-content-title {
    font-size: 2.5rem;
  }
}

@media screen and (min-width: 767px) {
    .hero-content-title {
        font-size: 2.5rem;
        margin-bottom: auto;
    }
}

@media screen and (min-width: 830px) {
  .hero-content-title {
    font-size: 3rem;
  }
}

@media screen and (min-width: 992px) {
  .hero-content-title {
    font-size: 3.5rem;
  }
}

@media screen and (min-width: 1235px) {
  .hero-content-title {
    font-size: 4.4rem;
  }
}

@media screen and (min-width: 768px) {
  .hero-content-title--white {
    color: var(--primary-white-color);
  }
}

.hero-content-title span {
  display: block;
  transition: opacity 0.4s, height 3s ease-out;
  -webkit-transition: opacity 0.4s, height 3s ease-out;
  -moz-transition: opacity 0.4s, height 3s ease-out;
  -o-transition: opacity 0.4s, height 3s ease-out;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.hero-content-title span.active {
  opacity: 1;
  height: auto;
}

.hero-content-text {
  font-size: 1.25rem;
  line-height: 1.75em;
}

@media screen and (min-width: 768px) {
  .hero-content-text {
    font-size: 1rem;
  }
}

@media screen and (min-width: 992px) {
  .hero-content-text {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 1200px) {
  .hero-content-text {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 768px) {
  .hero-content-text--white {
    color: var(--primary-white-color);
  }
}

.hero-content-text span {
  display: block;
  transition: opacity 0.4s, height 3s ease-out;
  -webkit-transition: opacity 0.4s, height 3s ease-out;
  -moz-transition: opacity 0.4s, height 3s ease-out;
  -o-transition: opacity 0.4s, height 3s ease-out;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.hero-content-text span.active {
  opacity: 1;
  height: auto;
}

.hero-picture {
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.hero-picture.active {
  opacity: 1;
  height: auto;
}

.hero-actions {
  box-shadow: 0px 50px 50px var(--hero-shadow-color);
}

.hero-actions-item {
  background: var(--primary-white-color);
  height: 120px;
}

.hero-actions-item:not(:last-child) {
  border-bottom: 1px solid var(--separator-gray-color);
}

@media screen and (min-width: 768px) {
  .hero-actions-item {
    border-bottom: 0;
    height: 140px;
  }
}

.hero-actions-item:not(:last-child)::after {
  content: "";
  display: block;
  height: 110px;
  border: 1px solid var(--separator-gray-color);
  position: absolute;
  right: 0;
}

.hero-actions-item:hover {
  z-index: 1;
  margin-top: -13px;
  height: 133px;
  box-shadow: 0px 12px 50px var(--shadow-gray-color);
  border-bottom: 12px solid;
}

@media screen and (min-width: 768px) {
  .hero-actions-item:hover {
    height: 153px;
  }
}

.hero-actions-item--orange:hover {
  border-bottom-color: var(--secondary-orange-color);
}

.hero-actions-item--blue:hover {
  border-bottom-color: var(--secondary-blue-color);
}

.hero-actions-item--green:hover {
  border-bottom-color: var(--secondary-green-color);
}

.hero-actions-item:hover::after {
  border: 0;
}

.hero-actions-item:hover .hero-actions-link {
  color: var(--primary-purple-color);
}

.hero-actions-link {
  font-size: 1.875rem;
  line-height: 2.5rem;
  color: var(--primary-dark-gray-color);
}

@media screen and (min-width: 576px) {
  .hero-actions-link {
    font-size: 2.5rem;
    line-height: 3.75rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .hero-actions-link {
    font-size: 1.875rem;
    line-height: 2.5rem;
  }
}

/* ---------- Homepage | Sub-hero ---------- */
.sub-hero-content {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}

.sub-hero-content-title {
  font: 3rem/3.15rem 'freight-display-pro', serif;
}

.sub-hero-content-title::after {
  content: "";
  display: block;
  width: 67px;
  height: 8px;
  margin: 20px auto;
  background-color: var(--primary-purple-color);
  opacity: 0.5;
}

.sub-hero-content-title--no-underline::after {
  content: none;
}

.sub-hero-content-text {
  font-size: 1.5rem;
  line-height: 1.75rem;
}

.sub-hero-content-link {
  margin-top: 42px;
}

/* ----------   L1  ---------- */
/* ---------- L1 | How To Apply ---------- */
.apply-container {
  padding-top: 10px;
  padding-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .apply-container {
    padding-top: 50px;
    padding-bottom: 30px;
  }
}

.apply-header {
  font: 3rem/3.15rem 'freight-display-pro', serif;
  margin-bottom: 30px;
  color: var(--primary-dark-color);
}

@media screen and (min-width: 768px) {
  .apply-header {
    text-align: center;
  }
}

.apply-number-container {
  margin-bottom: 30px;
}

.apply-number {
    display: block;
    height: 70px;
    width: 70px;
    line-height: 4.375rem;
    -moz-border-radius: var(--circle-border-radius);
    border-radius: var(--circle-border-radius);
    background-color: var(--tertiary-light-purple-color);
    color: var(--primary-purple-color);
    text-align: center;
    font-size: 2rem;
    cursor: pointer;
}

.apply-number.active,
.apply-number:hover,
.apply-number:focus {
  background-color: var(--primary-white-color);
  -webkit-box-shadow: 2px 0px 53px 0px var(--shadow-gray-color);
  -moz-box-shadow: 2px 0px 53px 0px var(--shadow-gray-color);
  box-shadow: 2px 0px 53px 0px var(--shadow-gray-color);
}

.apply-line {
  height: 3px;
  width: 100%;
  background-color: var(--tertiary-light-purple-color);
  display: block;
  position: relative;
  top: 35px;
  overflow: hidden;
}

.apply-cards-header {
  font: 28px/32px 'freight-display-pro', serif;
  margin-bottom: 42px;
}

@media screen and (min-width: 768px) {
  .apply-cards-header {
    text-align: center;
  }
}

.apply-cards {
  width: 100%;
  padding: 0;
  margin: 0;
}

.apply-cards .apply-card {
  padding: 40px;
  margin: 0 auto;
  -webkit-box-shadow: 2px 0px 53px 0px var(--shadow-gray-color);
  -moz-box-shadow: 2px 0px 53px 0px var(--shadow-gray-color);
  box-shadow: 2px 0px 53px 0px var(--shadow-gray-color);
}

.apply-card:not(:last-child) {
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .apply-cards .apply-card {
    padding: 20px;
    margin: 0 15px;
  }

  .apply-card:not(:last-child) {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 992px) {
  .apply-cards .apply-card {
    padding: 40px;
  }
}

.apply-card-body {
  padding: 0 0 20px;
}

.apply-card-text {
  min-height: 185px;
  font-size: 1.5rem;
  line-height: 1.75rem;
}

.apply-card-text a {
  color: var(--primary-purple-color);
}

.apply-card-text a:hover,
.apply-card-text a:focus {
  color: var(--primary-dark-gray-color);
  text-decoration: underline;
}

.apply-card-bottom-margin {
  margin-bottom: 6px;
}

.apply-icon-container {
  margin-bottom: 42px;
}

.apply-icon {
  color: var(--primary-purple-color);
  font-size: 50px;
  opacity: 0.5;
}

.apply-card-link {
  font-size: 1.75rem;
}

@media screen and (min-width: 768px) {
  .apply-card-link {
    padding-right: 20px;
    padding-left: 20px;
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 992px) {
  .apply-card-link {
    padding-right: 40px;
    padding-left: 40px;
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 1200px) {
  .apply-card-link {
    padding-right: 60px;
    padding-left: 60px;
    font-size: 1.75rem;
  }
}

.apply-card-icon {
  margin-left: 10px;
  font-size: 24px;
}

/* ---------- L1 | Data Table ---------- */
.data-table-container {
  text-align: center;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .data-table-container {
    background: linear-gradient(180deg, var(--primary-light-gray-color) 58%, var(--primary-white-color) 50%);
  }
}

.data-table-text-container {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: var(--primary-light-gray-color);
}

.data-table-container-scroll {
    overflow-x: scroll;
    width: 100%;
    margin: auto;
    overflow-y: hidden;
    padding-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .data-table-container-scroll {
        overflow-x:hidden;
        width: 100%;
    }
}

.data-table-title {
  font: 3rem/4.5rem 'freight-display-pro', serif;
  color: var(--primary-dark-gray-color);
}

.data-table-text {
  font-size: 1.5rem;
  line-height: 1.875rem;
}

.data-table {
  display: table;
  box-shadow: 0px 12px 50px var(--shadow-gray-color);
  margin:auto;
}

@media screen and (min-width: 768px) {
  .data-table {
    width: auto;
  }
}

.data-table th {
  background-color: var(--primary-purple-color);
  padding: 10px 5px;
  border: 1px solid var(--table-header-border-color);
  color: var(--primary-white-color);
  text-align: center;
  font-size: .875rem;
}

.data-table th p {
    font-size: .875rem !important;
}

@media screen and (min-width: 768px) {
    .data-table th {
        height: 150px;
        font-size: 1.625rem !important;
    }

    .data-table th p {
        font-size: 1.625rem !important;
    }
}

.data-table td {
  width: 33%;
  padding: 10px 0;
  border: 1px solid rgba(31, 30, 30, 0.1);
  background-color: var(--primary-white-color);
  text-align: center;
  font-size: .875rem;
}


.data-table--four-columns td {
  width: 25%;
}

.data-table--five-columns td {
  width: 20%;
}

@media screen and (min-width: 576px) {
  .data-table td {
    font-size: 1.5rem;
  }
}

.data-table-buttons {
  margin-top: 50px;
}

.data-table-button {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 43px;
  border: 1px solid var(--tertiary-light-gray-color);
  border-radius: 35px;
  margin: 0 10px 12px;
  box-shadow: 0px 12px 50px var(--shadow-gray-color);
  background-color: var(--tertiary-light-purple-color);
  color: var(--primary-purple-color);
  font-size: 1rem;
}

@media screen and (min-width: 576px) {
  .data-table-button {
    width: 250px;
  }
}

@media screen and (min-width: 768px) {
  .data-table-button {
    width: 325px;
    height: 75px;
    font-size: 1.5rem;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 576px) {
  .data-table-button--overlap {
    transform: translateX(45px);
  }
}

@media screen and (min-width: 768px) {
  .data-table-button--overlap {
    transform: translateX(60px);
  }
}

.data-table-button--active {
  background-color: var(--primary-white-color);
  color: var(--primary-purple-color);
  z-index: 2;
}

/* ---------- L1 | Application Text ---------- */
.application-text-container {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: var(--primary-light-gray-color);
}

.application-text {
  font-size: 1.5rem;
  line-height: 1.875rem;
}

.application-text a {
  color: var(--primary-purple-color);
  text-decoration: underline;
}

.application-text a:hover,
.application-text a:focus {
  color: var(--primary-dark-gray-color);
  text-decoration: underline;
}

/* ==================== L3 Members ==================== */
/* ---------- L3 | Help ---------- */
.help {
  padding-top: 30px;
  padding-bottom: 30px;
  color: var( --primary-dark-gray-color);
}

.help-title {
  font: 3rem/3.15rem 'freight-display-pro', serif;
  margin-bottom: 30px;
}

.help-text {
  font-size: 1.5rem;
  line-height: 1.875rem;
}

@media screen and (min-width: 768px) {
  .help-text {
    margin-bottom: 15px;
  }
}

.help-card-text {
  font-size: 1.5rem;
  line-height: 1.75rem;
}

@media screen and (min-width: 576px) {
  .help-card-anchor {
    font-size: 1.75rem;
  }
}

/* ==================== Search Results ==================== */
/* ---------- Search Results | Box ---------- */
.search-box {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media screen and (min-width: 1200) {
  .search-box {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.search-box-container {
  position: relative;
}

.search-box-icon {
  position: absolute;
  top: 25px;
  width: 16px;
  margin-left: 27px;
  color: var(--primary-purple-color);
}

.search-box-input {
  font-size: 1.5rem;
  line-height: 1.625rem;
  padding-left: 75px;
  color: var(--primary-dark-gray-color);
  border: 1px solid var(--primary-purple-color);
  width: 100%;
}

.search-box-link {
  font-size: 1.375rem;
  line-height: 2rem;
  padding-right: 20px;
  padding-left: 20px;
  width: auto;
}

@media screen and (min-width: 576px) {
  .search-box-link {
    font-size: 1.75rem;
    line-height: 2rem;
  }
}

/* ---------- Search Results | Header ---------- */
.search-header-container {
  margin-top: 30px;
}

.search-header-title {
  margin-bottom: 20px;
  font: 2.625rem/2.875rem 'freight-display-pro', serif;
  color: var(--primary-purple-color);
}

@media screen and (min-width: 768px) {
  .search-header-title {
    font-size: 3.75rem;
    line-height: 4rem;
  }
}

.search-header-info {
  font-size: 1.5rem;
  line-height: 1.75rem;
}

/* ---------- Search Results | Results ---------- */
.search-results {
  padding-top: 20px;
}

@media screen and (min-width: 768px) {
  .search-results {
    padding-top: 0;
  }
}

.search-results-item {
  display: none;
  border: 1px solid transparent;
  padding: 30px 25px;
  margin-top: 25px;
  animation: fadein 1s;
  -moz-animation: fadein 1s; /* Firefox */
  -webkit-animation: fadein 1s; /* Safari and Chrome */
  -o-animation: fadein 1s; /* Opera */
  -webkit-box-shadow: 2px 0px 53px 0px var(--shadow-gray-color);
  -moz-box-shadow: 2px 0px 53px 0px var(--shadow-gray-color);
  box-shadow: 2px 0px 53px 0px var(--shadow-gray-color);
  word-break: break-word;
}

@media screen and (min-width: 768px) {
  .search-results-item {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-color: var(--tertiary-light-purple-color);
  }

  .search-results-item:hover {
    -webkit-box-shadow: 2px 0px 53px 0px var(--shadow-gray-color);
    -moz-box-shadow: 2px 0px 53px 0px var(--shadow-gray-color);
    box-shadow: 2px 0px 53px 0px var(--shadow-gray-color);
    border-color: transparent;
  }

  .search-results-item:not(:hover),
  .search-results-item:not(:hover) .search-results-item-link,
  .search-results-item:not(:hover) .search-results-item-text b {
    color: var(--primary-inactive-font-color);
  }

  .search-results-item:hover {
    color: inherit;
  }

  .search-results-item:hover .search-results-item-link,
  .search-results-item .search-results-item-link:focus,
  .search-results-item:hover .search-results-item-text b {
    color: var(--primary-purple-color);
  }
}

.search-results-item-title {
  font: 2rem/2.25rem 'freight-display-pro', serif;
}

.search-results-item-text {
  margin: 20px 0 10px;
  font-size: 1.5rem;
  line-height: 1.75rem;
}

.search-results-item-text b {
  font-weight: var(--font-weight-bold);
  color: var(--primary-purple-color);
}

.search-results-item-link {
  font-size: 1.25rem;
  line-height: 1.5rem;
  text-decoration: underline;
  color: var(--primary-purple-color);
  overflow-wrap: break-word;
}

.search-load-more {
  display: block;
  margin: 30px auto 0;
}


/* ==================== Event Detail ==================== */
/* ---------- Event Detail | Hero ---------- */
@media screen and (min-width: 768px) {
  .event-hero {
    object-fit: cover;
    height: 506px;
  }
}

/* ---------- Event Detail | Footer ---------- */
.event-footer {
  padding-top: 30px;
  border-top: solid 2px var(--tertiary-light-purple-color);
}

.event-footer-title {
  color: var(--primary-purple-color);
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
}

.event-footer-text {
  font-size: 1.5rem;
}

/* ---------- Event Detail | Author ---------- */
.event-author-container {
  padding: 30px 15px;
  margin-top: 30px;
}

.event-author-image {
  height: 153px;
}

.event-author-content {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .event-author-content {
    margin: 0 0 0 40px;
  }
}

.event-author-name {
  font: 2rem/1em 'freight-display-pro', serif;
}

.event-author-cta {
  position: relative;
  padding-left: 40px;
  word-break: break-word;
}

.event-author-cta:hover,
.event-author-cta:focus {
  color: var(--primary-purple-color);
}

.event-author-cta:not(:last-child) {
  margin-bottom: 15px;
}

.event-author-icon {
  position: absolute;
  left: 0;
  font-size: 25px;
  color: var(--primary-purple-color);
  opacity: .7;
}

/* ---------- Living Well ---------- */
/* ---------- Living Well | Popular Articles ---------- */
.popular-articles-container {
  padding-top: 30px;
  padding-bottom: 30px;
}

.popular-articles-title {
  font: 3rem/3.5rem 'freight-display-pro', serif;
  color: var(--primary-dark-gray-color);
}

/* ---------- Living Well | Upcoming Events ---------- */
.upcoming-events-container {
  padding-top: 30px;
  padding-bottom: 30px;
}

.upcoming-events-title {
  font: 3rem/3.5rem 'freight-display-pro', serif;
  color: var(--primary-dark-gray-color);
}

.upcoming-events-search-bar {
  border: 1px solid var(--primary-purple-color);
  height: 51px;
  font-size: 1.5rem;
  text-indent: 49px;
}

.upcoming-events-search-icon {
  position: absolute;
  width: 16px;
  height: 16px;
  transform: translate(23px, 16px);
}

.upcoming-events-select {
  border: 1px solid var(--primary-purple-color);
  height: 51px;
  font-size: 1.5rem;
  text-indent: 10px;
}
/* ==================== Login ==================== */
.login-form-col {
  margin-top: 42px;
  margin-bottom: 42px;
}

.login-title {
  font: 3.75rem/4rem 'freight-display-pro', serif;
  color: var(--primary-purple-color);
}

@media screen and (min-width: 990px) and (max-width:1399px){
    .login-title {
        font: 3.25rem/3rem 'freight-display-pro', serif;
        margin-top: 40px;
    }
}
@media screen and (min-width: 1400px) {
    .login-title {
        font: 3.75rem/4rem 'freight-display-pro', serif;
    }
}


.login-hero {
  width: 100%;
  height: 920px;
  object-fit: cover;
}

.login-form-button {
  width: 45%;
}

@media screen and (min-width: 992px) {
  .login-form-button {
    width: auto;
  }
}

@media screen and (min-width: 992px) {
  .login-form-col {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

.login-require-label {
  margin-top: 30px;
  font-size: 1.5rem;
  line-height: 1.875rem;
}

.login-input-label {
  display: block;
  font: 1.75rem/1.875rem 'freight-display-pro', serif;
}

.login-input-container {
  margin-top: 32px;
}

.login-input {
  margin-top: 20px;
  margin-bottom: 30px;
  border: 1px solid var(--primary-inactive-font-color);
  border-radius: 3px;
  width: 100%;
  height: 68px;
  font-size: 1.75rem;
  padding-left: 15px;
  color: var(--primary-dark-gray-color);
}

.login-input:focus {
  outline-color: var(--primary-purple-color);
}

.login-anchor {
  font-size: 1.5rem;
  color: var(--primary-purple-color);
  text-decoration: underline;
}

.login-anchor:hover,
.login-anchor:focus {
  color: var(--primary-purple-color);
  text-decoration: underline;
}

.login-pre-anchor {
  margin-top: 30px;
  font-size: 1.5rem;
}

/* ---------- Blog | Navigation ---------- */
.blog-navigation-container {
  top: 150px;
  z-index: 1019;
}

@media screen and (min-width: 1200px) {
  .blog-navigation-container {
    top: 35px;
  }
}

.blog-navigation-content {
  margin-top: 40px;
  padding: 0;
}

.blog-navigation-content::after {
  content: "";
  background-color: var(--primary-purple-color);
  height: 1px;
  width: 100%;
  opacity: 0.1;
  margin-top: 30px;
  margin-bottom: 20px;
}

.blog-navigation-title {
  font: 2rem/2.5rem 'freight-display-pro', serif;
}

.blog-navigation-mobile.sticky-top {
  top: 87px;
  z-index: 1020;
  background-color: var(--primary-white-color);
}

.blog-navigation-mobile-select {
  border: 1px solid var(--primary-purple-color);
  height: 51px;
  font-size: 1.5rem;
  text-indent: 10px;
}

.blog-navigation-item {
  width: 100%;
  font-size: 1.5rem;
  line-height: 2rem;
  color: var(--primary-inactive-font-color);
}

.blog-navigation-item .active,
.blog-navigation-link:hover,
.blog-navigation-link:focus {
  color: var(--primary-purple-color);
  text-decoration: underline;
}

.blog-navigation-link {
  padding: 8px 0;
}

.blog-navigation-list {
  height: calc(100vh - 495px);
  overflow-y: auto;
}

@media screen and (min-width: 1200px) {
  .blog-navigation-list {
    height: calc(100vh - 310px);
    overflow-y: auto;
  }
}

@media screen and (min-height: 1200px) {
  .blog-navigation-list {
    height: fit-content;
  }
}

@media screen and (min-width: 1200px) and (min-height: 800px) {
  .blog-navigation-list {
    height: fit-content;
  }
}

/* ---------- Parkland | Alert Banner ---------- */
.alert-banner-container {
  padding-top: 30px;
  padding-bottom: 30px;
  overflow: hidden;
  max-height: 300px;
  transition: opacity 0.4s, height 3s ease-out;
  -webkit-transition: opacity 0.4s, height 3s ease-out;
  -moz-transition: opacity 0.4s, height 3s ease-out;
  -o-transition: opacity 0.4s, height 3s ease-out;
  transition-property: all;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  transition-duration: .5s;
  -webkit-transition-duration: .5s;
  -moz-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -o-transition-timing-function: ease;
}

.alert-banner-container.closed {
	max-height: 0;
}

.alert-banner-container--orange {
  background-color: var(--secondary-orange-color);
}

.alert-banner-container--blue {
  background-color: var(--secondary-blue-color);
}

.alert-banner-content {
  position: relative;
  padding-right: 25px;
}

.alert-banner-icon {
  display: block;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 23px;
  color: var(--primary-purple-color);
}

@media screen and (min-width: 576px) {
  .alert-banner-icon {
    margin-right: 5px;
  }
}

.alert-banner-icon--orange {
  background: var(--tertiary-lighter-orange-color);
  color: var(--secondary-orange-color);
}

.alert-banner-icon--blue {
  background: var(--secondary-light-blue-color);
  color: var(--secondary-blue-color);
}


.alert-banner-text {
  color: var(--primary-white-color);
  font-size: 24px;
  line-height: 27px;
  opacity: 1;
}

.alert-banner-text a,
.alert-banner-text a:hover,
.alert-banner-text a:focus {
  text-decoration: underline;
}

.alert-banner-button {
  position: absolute;
  right: 0px;
  color: var(--primary-white-color);
  font-size: 45px;
  font-weight: lighter;
}

/* ---------- Parkland | Popup Message ---------- */
.modal-content{
    border-radius: unset;
}

.modal-dialog {
    max-width: 600px;
    width: auto !important;
}

.modal-image {
    max-width: 200px;
    margin: 1em auto 0em auto;
}

.modal-header {
    margin-bottom: 0;
    padding-bottom: 0.5em;
}

.modal-body p {
    margin-bottom: 1em;
    font-weight: 500;
}

    .modal-body p:last-child {
        margin-bottom: 0;
    }

.modal-header .close {
    position: absolute;
    right: 1em;
}

.modal-title {
    font: 1.5rem/2.0rem 'freight-display-pro', serif;
    font-size: 32px;
    color: var(--primary-purple-color);
    text-transform: uppercase;
    margin-bottom: 0.5em;
    text-align: center;
}

.modal-btn {
    border-radius: 3px;
    width: auto !important;
    max-width: unset !important;
    margin: 0 0 !important;
    padding: 17.5px 80px !important;
    font-size: 1.25rem !important;
    font-weight: 400 !important;
    line-height: 2.25rem !important;
    letter-spacing: 1.6px !important;
    white-space: normal !important;
    /*text-transform: uppercase;*/
}

/* ==================== Blog ==================== */
/* ---------- Blog | Author ---------- */

.blog-author-container {
  padding: 30px 15px;
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .blog-author-container {
    padding: 30px 70px;
  }
}

.blog-author-content {
  margin: 30px 20px 0px;
}

@media screen and (min-width: 768px) {
  .blog-author-content {
    margin: 0 0 0 40px;
  }
}

.blog-author-image {
  width: 290px;
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .blog-author-image {
    width: 153px;
  }
}

.blog-author-title {
  letter-spacing: 3px;
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-purple-color);
  text-transform: uppercase;
  opacity: 0.5;
}

.blog-author-name {
  font: 2rem/1em 'freight-display-pro', serif;
  margin-bottom: 20px;
}

.blog-author-text {
  font-size: 1.5rem;
  line-height: 2rem;
}

/* ==================== Contact Us ==================== */
.contact-form {
  margin-top: 30px;
  margin-bottom: 30px;
}

.contact-form-required {
  font-size: 1.5rem;
}

.contact-form-label {
  margin-top: 30px;
  font: 1.75rem/1.875rem 'freight-display-pro', serif;
}

.contact-form-input {
  height: 68px;
  font-size: 1.5rem;
  border: 1px solid var(--primary-inactive-font-color);
  color: var(--primary-dark-gray-color);
}

.contact-form-input:focus {
  border-color: var(--primary-purple-color);
  box-shadow: none;
}

.contact-form-input--large {
  height: 157px;
}

select.contact-form-input:not([size]):not([multiple]) {
  height: 68px;
}

.line-clamp {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: var(--lines);
    -webkit-box-orient: vertical;
}