/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "latoblack";
  src: url("/assets/fonts/lato-black-webfont.woff2") format("woff2"), url("/assets/fonts/lato-black-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "latobold";
  src: url("/assets/fonts/lato-bold-webfont.woff2") format("woff2"), url("/assets/fonts/lato-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "latoregular";
  src: url("/assets/fonts/lato-regular-webfont.woff2") format("woff2"), url("/assets/fonts/lato-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/********************
VARIABLES
********************/
/*
  Simple Grid
  Project Page - http://thisisdallas.github.com/Simple-Grid/
  Author - Dallas Bass
  Site - http://dallasbass.com
*/
[class*=grid],
[class*=col-],
[class*=mobile-],
.grid:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

[class*=col-] {
  float: left;
  min-height: 1px;
  padding-right: 20px;
  /* column-space */
}

[class*=col-] [class*=col-]:last-child {
  padding-right: 0;
}

.grid {
  width: 100%;
  max-width: 1140px;
  min-width: 748px;
  /* when using padded grid on ipad in portrait mode, width should be viewport-width - padding = (768 - 20) = 748. actually, it should be even smaller to allow for padding of grid containing element */
  margin: 0 auto;
  /*overflow: hidden;*/
}

.grid:after {
  content: "";
  display: table;
  clear: both;
}

.grid-pad {
  padding-top: 20px;
  padding-left: 20px;
  /* grid-space to left */
  padding-right: 0;
  /* grid-space to right: (grid-space-left - column-space) e.g. 20px-20px=0 */
}

.push-right {
  float: right;
}

/* Content Columns */
.col-1-1 {
  width: 100%;
}

.col-2-3, .col-8-12 {
  width: 66.66%;
}

.col-1-2, .col-6-12 {
  width: 50%;
}

.col-1-3, .col-4-12 {
  width: 33.33%;
}

.col-1-4, .col-3-12 {
  width: 25%;
}

.col-1-5 {
  width: 20%;
}

.col-1-6, .col-2-12 {
  width: 16.667%;
}

.col-1-7 {
  width: 14.28%;
}

.col-1-8 {
  width: 12.5%;
}

.col-1-9 {
  width: 11.1%;
}

.col-1-10 {
  width: 10%;
}

.col-1-11 {
  width: 9.09%;
}

.col-1-12 {
  width: 8.33%;
}

/* Layout Columns */
.col-11-12 {
  width: 91.66%;
}

.col-10-12 {
  width: 83.333%;
}

.col-9-12 {
  width: 75%;
}

.col-5-12 {
  width: 41.66%;
}

.col-7-12 {
  width: 58.33%;
}

/* Pushing blocks */
.push-2-3, .push-8-12 {
  margin-left: 66.66%;
}

.push-1-2, .push-6-12 {
  margin-left: 50%;
}

.push-1-3, .push-4-12 {
  margin-left: 33.33%;
}

.push-1-4, .push-3-12 {
  margin-left: 25%;
}

.push-1-5 {
  margin-left: 20%;
}

.push-1-6, .push-2-12 {
  margin-left: 16.667%;
}

.push-1-7 {
  margin-left: 14.28%;
}

.push-1-8 {
  margin-left: 12.5%;
}

.push-1-9 {
  margin-left: 11.1%;
}

.push-1-10 {
  margin-left: 10%;
}

.push-1-11 {
  margin-left: 9.09%;
}

.push-1-12 {
  margin-left: 8.33%;
}

@media handheld, only screen and (max-width: 768px) {
  .grid {
    width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    /* grid-space to left */
    padding-right: 10px;
    /* grid-space to right: (grid-space-left - column-space) e.g. 20px-10px=10px */
  }

  [class*=col-] {
    width: auto;
    float: none;
    margin: 10px 0;
    padding-left: 0;
    padding-right: 10px;
    /* column-space */
  }

  [class*=col-] [class*=col-] {
    padding-right: 0;
  }

  /* Mobile Layout */
  [class*=mobile-col-] {
    float: left;
    margin: 0 0 20px;
    padding-left: 0;
    padding-right: 10px;
    /* column-space */
    padding-bottom: 0;
  }

  .mobile-col-1-1 {
    width: 100%;
  }

  .mobile-col-2-3, .mobile-col-8-12 {
    width: 66.66%;
  }

  .mobile-col-1-2, .mobile-col-6-12 {
    width: 50%;
  }

  .mobile-col-1-3, .mobile-col-4-12 {
    width: 33.33%;
  }

  .mobile-col-1-4, .mobile-col-3-12 {
    width: 25%;
  }

  .mobile-col-1-5 {
    width: 20%;
  }

  .mobile-col-1-6, .mobile-col-2-12 {
    width: 16.667%;
  }

  .mobile-col-1-7 {
    width: 14.28%;
  }

  .mobile-col-1-8 {
    width: 12.5%;
  }

  .mobile-col-1-9 {
    width: 11.1%;
  }

  .mobile-col-1-10 {
    width: 10%;
  }

  .mobile-col-1-11 {
    width: 9.09%;
  }

  .mobile-col-1-12 {
    width: 8.33%;
  }

  /* Layout Columns */
  .mobile-col-11-12 {
    width: 91.66%;
  }

  .mobile-col-10-12 {
    width: 83.333%;
  }

  .mobile-col-9-12 {
    width: 75%;
  }

  .mobile-col-5-12 {
    width: 41.66%;
  }

  .mobile-col-7-12 {
    width: 58.33%;
  }

  .hide-on-mobile {
    display: none !important;
    width: 0;
    height: 0;
  }
}
/*****************
	CONFIGURATIONS TO SIMPLEGRID
******************/
.grid {
  max-width: 1024px;
}

.grid-pad {
  padding-top: 60px;
  padding-left: 60px;
  padding-bottom: 60px;
  padding-right: 0px;
}

[class*=col-] {
  padding-right: 60px;
}

@media (max-width: 568px) {
  .mobile-col-1-2.xs,
.mobile-col-10-12.xs,
.mobile-col-2-3.xs,
.mobile-col-1-3.xs {
    float: none;
    width: 100%;
  }
}

@media (max-width: 960px) {
  .grid-pad {
    padding-top: 40px;
    padding-left: 40px;
    padding-bottom: 40px;
  }

  [class*=col-] {
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  .grid-pad {
    padding-top: 40px;
    padding-left: 30px;
    padding-bottom: 30px;
  }

  [class*=col-] {
    padding-right: 30px;
  }
}
@media (max-width: 568px) {
  .grid-pad {
    padding-top: 40px;
    padding-left: 20px;
    padding-bottom: 20px;
  }

  [class*=col-] {
    padding-right: 20px;
  }
}
.btn {
  display: inline-block;
  background: none;
  border: none;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  text-transform: uppercase;
  font-size: 1.4rem;
  text-decoration: none;
}

.btn:hover {
  cursor: pointer;
}

.btn--block {
  display: block;
}

.btn-ghost {
  border-width: 1px;
  border-style: solid;
  padding: 8px 12px;
}

.btn-ghost--white {
  border-color: #fff;
  color: #fff;
}

.btn-ghost--white:active,
.btn-ghost--white:hover {
  background: #fff;
  color: #0C1A20;
}

.btn-ghost--yellow {
  border-color: #efc818;
  color: #efc818;
}

.btn-ghost--yellow:active,
.btn-ghost--yellow:hover {
  background: #efc818;
  color: #fff;
}

.btn-solid {
  border: none;
  padding: 10px 14px;
}

.btn-solid--light-blue {
  background: #53BAEA;
  color: #fff;
}

.btn-solid--yellow {
  background: #efc818;
  color: #0C1A20;
  border: 2px solid #efc818;
}

.btn-solid--yellow:hover {
  background: none;
}

.btn-solid--yellow:visited {
  color: #0C1A20;
}

.pill {
  color: #7f7f7f;
  padding: 4px 8px;
  background: rgba(196, 196, 196, 0.17);
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  font-family: "latobold", sans-serif;
  font-weight: normal;
  margin-right: 4px;
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.pill.toggled,
.pill:hover {
  background: #005978;
  color: #fff;
  cursor: pointer;
}

/************** 
	UTILITIES
***************/
/*** CLEARFIX ***/
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/*** DISPLAY FLEX ***/
.flex {
  display: flex;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.flex--column {
  flex-direction: column;
}

.flex--justify-center {
  justify-content: center;
}

.flex--align-center {
  align-items: center;
}

.flex--align-end {
  align-items: flex-end;
}

.flex__child {
  margin: auto;
}

.flex__child--self-end {
  align-self: flex-end;
}

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

.text--accent {
  color: #efc818;
}

.text--notransform {
  text-transform: none;
}

.text--bold {
  font-family: "latobold";
}

.styled-list {
  list-style: square;
  margin-left: 20px;
  margin-bottom: 20px;
}

.separator {
  height: 1px;
  border-bottom: 1px solid gray;
  margin-bottom: 20px;
}

/*** VIEW ***/
.view--desktop {
  display: block;
}

.view--mobile {
  display: none;
}

@media (max-width: 768px) {
  .view--desktop {
    display: none;
  }

  .view--mobile {
    display: block;
  }
}
/*** DIVIDER ***/
.divider {
  border-bottom: 1px solid #9f9f9f;
  height: 1px;
}

/********************
GLOBAL
********************/
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6em;
  font-family: "latoregular", sans-serif;
  font-weight: normal;
  line-height: 1.3;
  color: #7f7f7f;
}

[data-ember-action]:not(:disabled) {
  cursor: pointer;
}

strong {
  font-family: "latobold";
  font-weight: normal;
}

a {
  text-decoration: none;
  outline: none;
}

a:visited {
  color: #fff;
}

main {
  margin-top: 70px;
}

/********************
HEADER
********************/
.header {
  background: #136B8E;
  height: 70px;
  overflow: hidden;
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 3000;
}

.header-grid-pad {
  padding-top: 0px;
  padding-bottom: 0px;
}

.branding {
  float: left;
  margin-top: 10px;
}

.branding:focus {
  outline-color: #005978;
}

.branding__logo {
  max-height: 50px;
}

.nav {
  float: right;
}

.nav__link {
  text-transform: uppercase;
  font-size: 0.875em;
  color: #fff;
  margin: 0 10px;
  line-height: 70px;
  text-decoration: none;
}

.nav__link:active,
.nav__link.active,
.nav__link:hover {
  color: #efc818;
}

.nav-toggle {
  font-size: 16px;
  float: right;
  background: none;
  color: #fff;
  border: 1px solid #fff;
  padding: 8px 10px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  margin-top: 16px;
  display: none;
}

.nav-toggle:hover, .nav-toggle:focus {
  background: #005978;
  cursor: pointer;
  outline: none;
}

.nav-toggle:active {
  outline: none;
  background: #0C1A20;
}

.close-toggle {
  display: none;
  width: 40px;
  background: none;
  border: none;
  position: absolute;
  top: 30px;
  right: 30px;
  outline: none;
}

.close-toggle:hover {
  cursor: pointer;
}

.close-toggle__icon {
  font-size: 30px;
  color: #fff;
}

.lang-toggle {
  background: none;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  padding: 4px 6px;
  margin-left: 15px;
}

@media screen and (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
  }

  .mobile-nav--visible {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #136B8E;
    z-index: 500;
  }
  .mobile-nav--visible .close-toggle {
    display: block;
  }
  .mobile-nav--visible .header-nav {
    display: block;
  }
  .mobile-nav--visible .nav__link {
    display: block;
    text-align: center;
    line-height: 40px;
  }
  .mobile-nav--visible .lang-toggle {
    margin: 20px auto;
    display: block;
  }
}
/********************
FOOTER
********************/
footer {
  background: #182F39;
  color: #fff;
}

.footer-logo {
  max-width: 130px;
}

.footer__header {
  font-family: "latobold", sans-serif;
  font-weight: normal;
}

.footer__subheader {
  margin-top: 10px;
}

.contact-text {
  font-size: 0.875em;
}

.contact-prefix {
  color: #efc818;
  text-transform: uppercase;
  font-family: "latobold", sans-serif;
  font-weight: normal;
  display: block;
}

@media screen and (max-width: 768px) {
  footer {
    text-align: center;
  }
  footer .btn-ghost--white {
    margin-bottom: 20px;
  }
}
/********************
HERO
********************/
.hero {
  background: linear-gradient(180deg, #145B77 0%, #0F6385 100%);
}

.hero__text {
  font-family: "latobold", sans-serif;
  color: #fff;
  text-transform: uppercase;
  font-size: 3.125em;
  letter-spacing: 3px;
}

@media screen and (max-width: 768px) {
  .hero__text {
    font-size: 2.25em;
  }
}
/********************
CARDS
********************/
.card-media {
  position: relative;
  width: 100%;
  height: 0px;
  padding-top: 56.25%;
  overflow: hidden;
}

.card-media__img {
  width: 100%;
  position: absolute;
  left: 0px;
  top: -20%;
}

.card-media--no-img {
  background: rgba(12, 26, 32, 0.52) url("/assets/images/ccaa-logo-white-icon-alpha.png") center center;
  background-repeat: no-repeat;
  background-size: 110px auto;
  -webkit-background-size: 110px auto;
  -moz-background-size: 110px auto;
}

.card-body {
  padding: 20px;
}

.card-body-header {
  border-bottom: 2px solid #53BAEA;
  font-family: "latobold";
  font-weight: normal;
  margin-bottom: 20px;
}

.card-body-header__text {
  color: #53BAEA;
  font-size: 0.875em;
  text-transform: uppercase;
  padding-bottom: 4px;
}

.card-body__title {
  font-family: "latobold";
  font-weight: normal;
  font-size: 1.125em;
  margin-bottom: 8px;
}

.card-body__text {
  margin-bottom: 14px;
  font-size: 0.875em;
}

.card-body__date-block {
  font-size: 0.875em;
}

.card-list {
  margin-top: 25px;
}

.card-list-li {
  display: flex;
  margin-bottom: 10px;
}

.card-list-li__icon {
  min-width: 20px;
  width: 20px;
  height: 20px;
  display: block;
  text-indent: -5000px;
  font-size: 0px;
  margin-right: 10px;
  background-size: contain;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.icon--award {
  background-image: url("/assets/images/award.png");
}

.icon--location {
  background-image: url("/assets/images/location.png");
}

.icon--bell {
  background-image: url("/assets/images/bell.png");
}

.icon--audience {
  background-image: url("/assets/images/audience.png");
}

.icon--building {
  background-image: url("/assets/images/building.png");
}

.card-list-li__text {
  align-self: center;
  font-size: 0.875em;
}

.featured-card .card-media::after {
  content: "Featured";
  background: #efc818;
  padding: 8px 12px;
  line-height: 1;
  position: absolute;
  top: 25px;
  right: 0px;
  color: #0C1A20;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "latobold";
  font-size: 0.875em;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.listings-cards {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  color: #fff;
  box-sizing: border-box;
}

.listings-card-outer {
  flex-basis: 33.3333%;
  padding: 10px;
  box-sizing: border-box;
}

.listings-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #136B8E;
  box-sizing: border-box;
}
.listings-card .card-body {
  color: #fff;
}
.listings-card:focus {
  border: 2px solid #efc818;
  outline: none;
  background: #005978;
}
.listings-card:hover {
  background: #005978;
}
.listings-card:hover .card-body__title {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .listings-card-outer {
    flex-basis: 50%;
  }
}
@media screen and (max-width: 568px) {
  .listings-cards {
    display: block;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .listings-card-outer {
    padding-bottom: 0px;
  }
}
/********************
STUBS
********************/
.stubs {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.stub-outer {
  flex-basis: 33.3333%;
  padding: 10px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-bottom: 10px;
}

.stub {
  display: flex;
  justify-content: left;
  align-items: center;
  padding: 5px 10px;
  background: #fefefe;
  border: 1px solid #cdd5d8;
  height: 100%;
}

.stub:hover {
  cursor: pointer;
  border: 1px solid #0C1A20;
}

.stub__icon-block {
  width: 34px;
  height: 34px;
  min-width: 34px;
  margin-right: 10px;
  background: #136b8e;
  border-radius: 100%;
  text-align: center;
}

.stub__icon {
  color: #fefefe;
  font-size: 18px;
  margin-top: 7px;
}

.stub__text {
  color: #7f7f7f;
  font-size: 14px;
}

/********************
KEYWORD SEARCH
********************/
.keyword-search {
  position: relative;
  overflow: hidden;
  display: flex;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  height: 42px;
}

.keyword-search__input {
  font-family: "latoregular", sans-serif;
  flex-grow: 1;
  min-width: 140px;
  outline: none;
  display: block;
  border: none;
  font-size: 1em;
  border: 2px solid transparent;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  height: 40px;
}

.keyword-search__input:focus {
  border: 2px solid #005978;
}

.keyword-search__btn {
  margin-left: -2px;
  border: none;
  outline: none;
  background: #136B8E url("/assets/images/magnifying.svg") no-repeat center center;
  border: 1px solid #136B8E;
  min-width: 56px;
  background-size: 20px auto;
  -webkit-background-size: 20px auto;
  -moz-background-size: 20px auto;
  cursor: pointer;
  box-sizing: border-box;
  height: 40px;
}

.keyword-search__btn-reset {
  margin-left: -2px;
  border: none;
  outline: none;
  background: #136B8E url("/assets/images/reset-white.png") no-repeat center center;
  border: 1px solid #136B8E;
  min-width: 56px;
  background-size: 20px auto;
  -webkit-background-size: 20px auto;
  -moz-background-size: 20px auto;
  height: 40px;
  cursor: pointer;
}

.keyword-search__btn:focus {
  background-size: 24px auto;
  -webkit-background-size: 24px auto;
  -moz-background-size: 24px auto;
}

.keyword-search__btn:hover {
  background-color: #00567d;
}

@media screen and (max-width: 568px) {
  .keyword-search {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}
/********************
SORTING
********************/
.sorting-grid-pad {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .sorting-grid-pad {
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
/********************
FILTERING
********************/
.filtering-grid-pad {
  padding-top: 40px;
  padding-bottom: 40px;
}

.filtering__header {
  color: #53BAEA;
  text-transform: uppercase;
  font-family: "latobold";
  font-weight: normal;
  font-size: 1.5em;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.filter-category-header {
  font-family: "latobold", sans-serif;
  font-weight: normal;
  color: #136B8E;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.938em;
  margin-bottom: 10px;
}

.filter-select-mobile {
  font-family: "latoregular", sans-serif;
  width: 100%;
  display: block;
  height: 44px;
  border: none;
  border-radius: 4px;
  color: #136B8E;
  padding: 0px 12px;
  font-size: 1em;
  margin-bottom: 10px;
}

.filter-select-mobile:last-child {
  margin-bottom: 0px;
}

.filter-select-mobile:focus {
  outline-color: #005978;
}

.filter-pills .pill:focus {
  background: #005978;
  outline-color: #efc818;
  color: #fefefe;
}

.reset-filter {
  float: right;
  color: #7f7f7f;
  padding: 4px;
  text-transform: none;
  font-size: 1.4rem;
  border: 1px solid #e3e2e2;
  display: flex;
  align-items: center;
}
.reset-filter svg {
  margin-right: 5px;
  fill: #136B8E;
}

.reset-filter:hover {
  background: #136B8E;
  color: #fff;
  border: 1px solid #136B8E;
}
.reset-filter:hover svg {
  fill: #fff;
}

@media screen and (max-width: 768px) {
  .filtering .filtering-grid-pad {
    padding-top: 20px;
    padding-bottom: 10px;
  }
  .filtering .filtering__header {
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 568px) {
  .filtering .filtering__header {
    text-align: center;
  }
  .filtering .filtering-grid-pad {
    padding-bottom: 15px;
  }
  .filtering .mobile-col-1-2 {
    margin-bottom: 10px;
  }
  .filtering .filter-category-header,
.filtering .pills,
.filtering .filter-select-mobile {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .reset-filter {
    display: block;
    float: none;
    margin-top: 10px;
  }
}
/********************
SMALL PILLS
********************/
.small-pill {
  color: #0C1A20;
  padding: 3px 6px;
  background: #f4f4f4;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  font-family: "latobold", sans-serif;
  font-weight: normal;
  margin-right: 4px;
  margin-bottom: 4px;
  font-size: 1.3rem;
  display: inline-block;
}

/********************
VIEW PAGES
********************/
.view-hero {
  min-height: 340px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.view-hero-back-btn {
  border-radius: 40px;
  border-color: rgba(244, 244, 244, 0.18);
  width: 50px;
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.2rem;
  padding: 6px 12px;
  color: #d7d7d7;
}

.view-hero__header {
  font-size: 2.875em;
  font-family: "latobold";
  font-weight: normal;
  color: #fff;
}

.view-hero__text {
  color: #fff;
  font-family: "latoregular";
  font-size: 0.875em;
  color: #d7d7d7;
}

@media screen and (max-width: 768px) {
  .view-hero {
    min-height: 280px;
  }

  .view-hero__header {
    font-size: 1.875em;
  }
}
@media screen and (max-width: 568px) {
  .view-hero__header {
    font-size: 1.563em;
  }
}
/********************
ARTICLE BODY
********************/
.article-body {
  /* 14/16 */
  /* 14/16 */
  /* 15/16 */
}
.article-body .heading {
  font-family: "latobold";
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #0C1A20;
}
.article-body video {
  width: 100%;
  height: auto;
}
.article-body .video-wrapper {
  display: block;
  margin-bottom: 40px;
}
.article-body .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin-bottom: 5px;
  margin-top: 20px;
}
.article-body .video-caption {
  font-size: 0.875em;
  margin-bottom: 40px;
}
.article-body iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.article-body img {
  max-width: 100%;
}
.article-body .external-links {
  margin-bottom: 40px;
}
.article-body .external-links__link {
  color: #fff;
  padding: 8px 15px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  border: 1px solid transparent;
  background: #136B8E;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
}
.article-body .external-links__link .fa-link {
  color: #fff;
  margin-right: 5px;
}
.article-body .external_link:hover {
  background: #fff;
  color: #136B8E;
  border: 1px solid #136B8E;
}
.article-body .external_link:hover .fa-link {
  color: #136B8E;
}
.article-body .image-wrapper {
  margin-bottom: 40px;
}
.article-body .image-caption {
  font-size: 0.875em;
  font-style: italic;
}
.article-body .block-quote {
  border-left: 2px solid gray;
  padding-left: 20px;
  font-style: italic;
  background: #fafafa;
  padding: 20px;
  margin-top: 20px;
  line-height: 1.5;
  font-size: 0.938em;
  margin-bottom: 40px;
}

.rich-text {
  color: #7f7f7f;
  margin-bottom: 40px;
}
.rich-text p {
  line-height: 1.5;
  margin-bottom: 16px;
}
.rich-text a {
  color: #136B8E;
  text-decoration: underline;
}
.rich-text a:hover {
  text-decoration: none;
}
.rich-text ul, .rich-text ol {
  margin: 20px 0px 20px 20px;
}
.rich-text ul {
  list-style-type: square;
}
.rich-text ul li {
  margin-bottom: 8px;
  line-height: 1.5;
}
.rich-text .article-body__figure {
  margin-bottom: 20px;
}
.rich-text .article-body__img {
  max-width: 100%;
}

.gallery {
  margin-bottom: 40px;
}

.swiper-container {
  overflow: hidden;
  margin-bottom: 5px;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.swiper-wrapper {
  height: 400px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.swiper-slide__child {
  background-size: cover;
  width: 100%;
  height: 100%;
  background-position: center center;
}

.swiper-pagination {
  background: rgba(12, 26, 32, 0.7);
  padding: 5px 0px;
  bottom: 0px !important;
}

.swiper-pagination-bullets .swiper-pagination-bullet {
  background: #fff;
  width: 10px;
  height: 10px;
}

.slide-caption {
  font-size: 14px;
}

@media (max-width: 568px) {
  .article-body-gallery__wrapper {
    flex-basis: 33.333%;
    max-width: 33.3333%;
  }
}
.location {
  background: rgba(188, 188, 193, 0.18);
  padding: 10px;
  margin-bottom: 20px;
  color: #7f7f7f;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.location__marker {
  color: #136B8E;
  float: left;
  margin-right: 10px;
  font-size: 20px;
}

.location__text {
  font-style: italic;
}

/********************
ASIDE
********************/
.aside {
  background: #136B8E;
  color: #fefefe;
  padding: 20px;
  min-width: 200px;
}

.aside__header {
  text-transform: uppercase;
  font-family: "latoblack";
  margin-bottom: 10px;
  font-size: 0.875em;
}

.aside__sm {
  display: inline-block;
  color: #fff;
  font-size: 1.2em;
  margin-right: 10px;
  vertical-align: baseline;
}

.aside__sm:hover {
  color: #efc818;
  cursor: pointer;
}

.aside__text {
  line-height: 1.4;
}

.aside__link {
  color: #fff;
}

.aside__link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .aside {
    text-align: center;
    padding: 30px 20px;
    margin-top: 20px;
  }

  .btn {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}
/********************
ATTACHMENTS
********************/
.attachments-header {
  margin-bottom: 40px;
}

.attachments-header__text {
  font-family: "latobold";
  font-weight: normal;
  font-size: 2.5em;
}

@media (max-width: 768px) {
  .attachments-header__text {
    font-size: 2em;
  }

  .attachments-header {
    margin-bottom: 20px;
  }
}
/********************
MODAL OVERLAY
********************/
.ember-modal-overlay {
  z-index: 8000 !important;
}

.ember-modal-overlay.translucent {
  background-color: rgba(0, 0, 0, 0.88) !important;
}

.modal__img {
  max-width: 90vw;
  max-height: 80vh;
}

/********************
CUSTOM SELECT
********************/
.custom-select {
  position: relative;
  display: flex;
  max-width: 220px;
  border: 2px solid #7f7f7f;
  border-radius: 40px;
  height: 40px;
  padding: 0px 10px;
}

.custom-select::after {
  content: "";
  height: 30px;
  width: 30px;
  position: absolute;
  top: 5px;
  right: 15px;
  background: url("/assets/images/chevron.svg");
  background-repeat: no-repeat;
  background-position: center center;
}

@media screen and (max-width: 768px) {
  .custom-select {
    max-width: none;
  }
}
.ember-modal-dialog {
  z-index: 51;
  position: fixed;
}

.ember-modal-dialog.emd-in-place {
  position: static;
}

.ember-modal-wrapper.emd-static.emd-wrapper-target-attachment-center .ember-modal-dialog {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ember-modal-wrapper.emd-animatable.emd-wrapper-target-attachment-center {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ember-modal-wrapper.emd-animatable.emd-wrapper-target-attachment-center .ember-modal-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ember-modal-wrapper.emd-animatable .ember-modal-dialog {
  position: relative;
}

.ember-modal-overlay {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
}

.ember-modal-dialog {
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 0 10px #222;
  padding: 10px;
}

.ember-modal-overlay.translucent {
  background-color: rgba(128, 128, 128, 0.77);
}

/********************
INDEX
********************/
.index-hero {
  height: 540px;
  background: url("/assets/images/placeholder/index-hero.jpg") no-repeat center bottom;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
}

.index-hero-grid-pad {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}

.index-hero__header {
  color: #fff;
  font-family: "latoblack";
  font-size: 3.75em;
  margin-bottom: 40px;
  max-width: 70%;
  line-height: 1.2;
}

.index-hero__text {
  font-size: 1.25em;
  color: #fff;
  max-width: 70%;
}

@media screen and (max-width: 768px) {
  .index-hero {
    height: 400px;
  }

  .index-hero__header {
    font-size: 3.125em;
  }

  .index-hero__text {
    font-size: 1.125em;
  }
}
@media screen and (max-width: 568px) {
  .index-hero {
    height: 340px;
  }

  .index-hero__header {
    font-size: 1.875em;
  }

  .index-hero__text {
    font-size: 1.063em;
  }
}
/********************
INDEX OUTREACH FEATURE
********************/
.index-outreach-feature {
  background: #136b8e url("/assets/images/layered-triangle.svg") no-repeat center center;
  background-size: 110% auto;
  -webkit-background-size: 110% auto;
  -moz-background-size: 110% auto;
  -ms-background-size: 110% auto;
  min-height: 400px;
  color: #fff;
}

.index-outreach-feature__header {
  color: #efc818;
  font-size: 2.5em;
  font-family: "latobold";
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.index-outreach-feature__btn {
  max-width: 240px;
  margin-top: 60px;
}

.index-outreach-card {
  background: rgba(12, 26, 32, 0.76);
  max-width: 400px;
}

.index-card-media {
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-position: center center;
}

@media screen and (max-width: 768px) {
  .index-outreach-feature .mobile-col-1-2 {
    width: 100%;
    text-align: center;
  }
  .index-outreach-feature .flex {
    flex-direction: column;
    align-items: center;
  }
  .index-outreach-feature .index-outreach-feature__header {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .index-outreach-feature .index-outreach-feature__subheader {
    max-width: 80%;
  }
  .index-outreach-feature .index-outreach-feature__btn {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .index-outreach-feature .index-outreach-card {
    margin: 0 auto;
  }
}
@media screen and (max-width: 568px) {
  .index-outreach-feature .index-outreach-feature__header {
    font-size: 2.2em;
  }
  .index-outreach-feature .index-outreach-feature__subheader {
    max-width: none;
  }
}
/********************
INDEX FUNDING FEATURE
********************/
.index-funding-feature {
  background: #fafafa;
  text-align: center;
}

.index-funding-feature__header {
  font-family: "latobold";
  font-weight: normal;
  font-size: 2.5em;
  color: #53BAEA;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: #fafafa;
  display: inline-block;
  margin: 0 auto;
  padding: 0px 20px;
}

.index-funding-feature__subheader {
  max-width: 80%;
  margin: 0 auto;
}

.flavour--strikethrough {
  content: "";
  height: 1px;
  border-top: 5px solid #53BAEA;
  width: 100%;
  display: block;
  margin-top: -30px;
  margin-bottom: 40px;
}

.index-funding-feature-cards {
  margin-top: 40px;
  display: flex;
  margin-bottom: 40px;
}

.index-funding-feature-card {
  background: #0C1A20;
  color: #fff;
  text-align: left;
  margin-right: 40px;
}

.index-funding-feature-card:last-child {
  margin-right: 0px;
}

.index-funding-feature-card-body {
  padding: 40px;
}

@media screen and (max-width: 768px) {
  .index-funding-feature .index-funding-feature-card {
    margin-right: 20px;
  }
}
@media screen and (max-width: 568px) {
  .index-funding-feature .index-funding-feature__header {
    font-size: 2.2em;
    padding: 0px 10px;
  }
  .index-funding-feature .flavour--strikethrough {
    margin-top: -25px;
  }
  .index-funding-feature .index-funding-feature__subheader {
    max-width: none;
  }
  .index-funding-feature .index-funding-feature-cards {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .index-funding-feature .index-funding-feature-card {
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .index-funding-feature .index-funding-feature-card-body {
    padding: 30px 20px;
  }
  .index-funding-feature .btn-more {
    margin-bottom: 20px;
  }
}
/********************
FUNDING
********************/
.funding-filtering-grid-pad {
  padding-bottom: 0px;
}

.funding-sorting {
  background: rgba(121, 153, 167, 0.33);
}

.funding-keyword-search__input {
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  padding: 0px 12px 0px 15px;
}

.funding-keyword-search__btn {
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
}

.funding-keyword-search__btn:focus {
  background-color: #005978;
}

.funding-sort-by {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.funding-sort-by__text {
  text-transform: uppercase;
  margin-right: 20px;
  font-family: "latobold", sans-serif;
  color: #136B8E;
}

.funding-sort-by__btn {
  width: 42px;
  height: 42px;
  background: rgba(19, 107, 142, 0.7);
  border: none;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  margin-right: 12px;
  cursor: pointer;
}

.funding-sort-by__btn:last-child {
  margin-right: 0px;
}
.funding-sort-by__btn:last-child .funding-sort-by__svg {
  margin-left: 2px;
}

.funding-sort-by__btn.toggled,
.funding-sort-by__btn:hover {
  background: #136b8e;
}

.funding-sort-by__btn:focus {
  background: #005978;
  outline: none;
}

.funding-sort-by__svg {
  margin-top: 2px;
}

@media screen and (max-width: 767px) {
  .funding-sort-by__text {
    display: none;
  }
}
@media screen and (max-width: 568px) {
  .funding-sort-by {
    justify-content: center;
  }
}
.funding-filter-category-header__svg {
  margin-bottom: -2px;
}

.funding-filter-select {
  font-family: "latoregular", sans-serif;
  max-width: 220px;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.2;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  outline: 0px;
  box-shadow: none;
  border: 0px !important;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  background-image: none;
  flex: 1;
  padding: 0 10px;
  color: #7f7f7f;
  cursor: pointer;
  font-size: 1em;
  margin: 0px;
  border-radius: 40px;
  background: none;
}

.funding-filter-select::-ms-expand {
  display: none;
}

.funding-filter-select:focus {
  outline: none;
  border: 2px solid #005978;
}

@media screen and (max-width: 568px) {
  .funding-filter-select {
    justify-content: center;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}
.funding-card-body {
  min-height: 220px;
}

.funding-cards-count {
  margin-bottom: 40px;
  text-align: center;
}

.funding-cards-count__text {
  text-transform: uppercase;
  font-size: 1em;
  display: inline-block;
  background: #fff;
  margin-bottom: -6px;
  padding: 0 8px;
  font-family: "latobold", sans-serif;
  font-weight: normal;
  color: #7f7f7f;
}

.funding--cards-flavour--strikethrough {
  border-top: 1px solid gray;
  margin-top: -10px;
}

@media screen and (max-width: 568px) {
  .funding-card-body {
    min-height: 0px;
    height: auto;
  }
}
.funding-view-hero__text {
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
  padding: 6px 0;
  display: inline-block;
}
.funding-view-hero__text strong {
  color: #fff;
}
.funding-view-hero__text .text--accent {
  padding: 0px 8px;
}

.funding-view-aside-btn {
  border-radius: 60px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.funding-attachments__grid-pad {
  padding-top: 0px;
}

.funding-attachments-header {
  background: #53baea url("/assets/images/ccaa-logo-stylized-transp.png");
  background-size: 165px 165px;
  background-size: 165px 165px;
  -webkit-background-size: 165px 165px;
  -moz-background-size: 165px 165px;
  background-repeat: no-repeat;
  background-position: center right;
  padding: 15px 20px;
}

.funding-attachments-header__text {
  color: #fefefe;
}

@media (max-width: 768px) {
  .funding-stubs {
    margin-left: -5px;
    margin-right: -5px;
  }
  .funding-stubs .stub-outer {
    flex-basis: 50%;
    margin-bottom: 10px;
    padding: 5px;
  }
}
@media (max-width: 480px) {
  .funding-stubs {
    flex-direction: column;
  }
  .funding-stubs .stub-outer {
    flex-basis: 100%;
    margin-bottom: 10px;
    padding: 0px 5px;
  }
}
/********************
OUTREACH
********************/
.outreach-sorting {
  background: rgba(12, 26, 32, 0.95);
}

.outreach-keyword-search__input {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  padding: 0px 12px 0px 15px;
}

.outreach-keyword-search__btn {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  -webkit-border-top-right-radius: 4px;
  -webkit-border-bottom-right: 4px;
  -moz-border-radius-topleft: 4px;
  -moz-border-radius-topright: 4px;
}

.outreach-sort-by {
  font-family: "latoregular", sans-serif;
  width: 200px;
  height: 40px;
  border: none;
  border-radius: 4px;
  color: #136B8E;
  float: right;
  padding: 0px 12px;
  font-size: 1em;
  font-weight: normal;
}

.outreach-sort-by:focus {
  outline-color: #005978;
}

@media screen and (max-width: 568px) {
  .outreach-sort-by {
    width: 100%;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    float: none;
    display: block;
  }
}
.outreach-filtering {
  background: rgba(196, 196, 196, 0.1);
}

.outreach-category-header {
  border-bottom: 1px solid #005978;
  padding-bottom: 4px;
}

.outreach-cards-count {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.outreach-cards-count__text {
  text-transform: uppercase;
  font-family: "latobold";
  font-weight: normal;
  color: #136B8E;
  flex-grow: 1;
}

.outreach-cards-count__btn {
  color: #7f7f7f;
  padding: 4px;
  text-transform: none;
  font-size: 1.3rem;
  border: 1px solid #f4f4f4;
  display: flex;
  align-items: center;
}
.outreach-cards-count__btn svg {
  margin-right: 5px;
}

.outreach-listings-card-body {
  position: relative;
}

.outreach-listings-card__date-block {
  position: absolute;
  top: -28px;
  background: #136B8E;
  padding: 5px 8px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.outreach-listings-card:hover .outreach-listings-card__date-block {
  background: #005978;
}

.outreach-card-media {
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-position: center center;
}

.no-outreach-card-media {
  background-size: 110px auto;
  -webkit-background-size: 110px auto;
  -moz-background-size: 110px auto;
}

@media (max-width: 568px) {
  .outreach-card-media {
    display: none;
  }

  .outreach-listings-card__date-block {
    position: static;
    padding: 4px;
    display: inline-block;
    margin: 20px 0px;
    border-radius: 0px;
    background: none;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }
}
/* OUTREACH VIEW */
.outreach-view-hero {
  background-size: cover;
  background-position: center center;
  position: relative;
}

.outreach-view-hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 66, 97, 0.7);
  z-index: 100;
}

.outreach-view-hero-grid-pad {
  position: relative;
  z-index: 500;
}

.outreach-view-hero__text svg {
  margin-top: 4px;
}

.outreach-view-aside-btn {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.insights {
  background: rgba(239, 200, 24, 0.38) url("/assets/images/insights.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 80%;
  padding: 30px;
  color: #000;
  margin-bottom: 40px;
}
.insights ul {
  list-style: square;
  margin-left: 20px;
  margin-bottom: 0px !important;
}
.insights li {
  margin-bottom: 10px;
}

.insights__header {
  text-transform: uppercase;
  font-family: "latoblack";
  font-weight: normal;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1.4em;
}

.outreach-view-metadata {
  border-top: 1px solid #f4f4f4;
  border-bottom: 1px solid #f4f4f4;
  padding-top: 10px;
  padding-bottom: 10px;
}

.outreach-view-metadata__text {
  font-size: 0.875em;
}

.outreach-view-metadata__bullet {
  color: #53baea;
}

.outreach-attachments {
  background: rgba(156, 193, 216, 0.46);
}

.outreach-attachments-header {
  border-bottom: 1px solid #0c1a20;
  padding-bottom: 10px;
}

.outreach-attachments-header__text {
  color: #0c1a20;
}

.outreach-attachments-stubs {
  flex-wrap: wrap;
}

.outreach-attachments-stubs-outer {
  flex-basis: auto;
  width: auto;
  padding: 5px;
}

.outreach-attachments-stub {
  border-radius: 4px;
  padding: 0px;
  overflow: hidden;
}
.outreach-attachments-stub .stub__icon-block {
  border-radius: 0px;
  width: 50px;
  height: 50px;
  background: #53baea;
  margin-top: -1px;
  margin-bottom: -1px;
}
.outreach-attachments-stub .stub__icon {
  font-size: 25px;
  margin-top: 12px;
}
.outreach-attachments-stub .stub__text {
  padding-right: 20px;
}

@media (max-width: 568px) {
  .outreach-attachments-stubs-outer {
    margin-bottom: 0px;
  }
}