@charset "UTF-8";
/* Colors */
.accordion-content-body {
  line-height: 1.8;
  font-size: 1rem;
  text-align: left;
  line-height: 1.4;
  font-weight: 300;
}

.accordion-content-body p {
  margin-bottom: 1rem;
}

.accordion-content-body plast-of-type {
  margin-bottom: 0;
}

@media (min-width: 48em) {
  .accordion-content-body p {
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 81.25em) {
  .accordion-content-body {
    font-size: 1.1rem;
  }
  .accordion-content-body p {
    margin-bottom: 1.4rem;
  }
}

@media (min-width: 100em) {
  .accordion-content-body p {
    margin-bottom: 1.6rem;
  }
}

@media (min-width: 112.5em) {
  .accordion-content-body p {
    margin-bottom: 1.8rem;
  }
}

.modal-headline {
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
}

@media (min-width: 48em) {
  .modal-headline {
    font-size: 1.6rem;
  }
}

@media (min-width: 81.25em) {
  .modal-headline {
    font-size: 1.7rem;
  }
}

@media (min-width: 100em) {
  .modal-headline {
    font-size: 1.9rem;
  }
}

@media (min-width: 112.5em) {
  .modal-headline {
    font-size: 2.3rem;
  }
}

.video-headline {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
}

@media (min-width: 48em) {
  .video-headline {
    font-size: 1.35rem;
  }
}

@media (min-width: 81.25em) {
  .video-headline {
    font-size: 1.45rem;
  }
}

@media (min-width: 100em) {
  .video-headline {
    font-size: 1.55rem;
  }
}

@media (min-width: 112.5em) {
  .video-headline {
    font-size: 1.9rem;
  }
}

.multicol-col-headline {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

@media (min-width: 48em) {
  .multicol-col-headline {
    font-size: 1.1rem;
  }
}

@media (min-width: 81.25em) {
  .multicol-col-headline {
    font-size: 1.15rem;
  }
}

@media (min-width: 100em) {
  .multicol-col-headline {
    font-size: 1.2rem;
  }
}

@media (min-width: 112.5em) {
  .multicol-col-headline {
    font-size: 1.25rem;
  }
}

.modal {
  background: #fff;
  width: 90%;
  max-width: 48em;
  font-size: 1em;
  line-height: 1.4;
  text-align: center;
  color: #505050;
  position: relative;
  border-radius: .4em;
  transform: scale(0.7);
  transition: 0.5s all all 0.6s cubic-bezier(0.5, 1.65, 0.4, 0.8);
  border: 0.25rem solid #12ab4f;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.25);
  padding: 2rem;
}

@media (min-width: 81.25em) {
  .modal {
    padding: 3rem;
  }
}

@media (min-width: 81.25em) {
  .modal {
    padding: 4rem;
  }
}

.modal_close {
  background: #12ab4f;
  position: absolute;
  top: -1rem;
  right: -1rem;
  display: flex;
  align-items: center;
  width: 3rem;
  height: 3rem;
  padding: .3em;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: 0.5s all all 0.6s cubic-bezier(0.5, 1.65, 0.4, 0.8);
}

.modal_close:hover {
  transform: scale(1.15);
  box-shadow: 0 0.5rem 1.5rem 0 rgba(0, 0, 0, 0.3);
}

.modal_close-svg {
  width: 60%;
  fill: #fff;
  margin: 0 auto;
}

.modal-headline {
  color: #12ab4f;
  line-height: 1.1;
  text-align: center;
  margin-bottom: .5rem;
}

@media (min-width: 81.25em) {
  .modal-headline {
    margin-bottom: 1rem;
  }
}

.modal-teaser {
  font-size: 1rem;
  line-height: 1.4;
  color: #404141;
  font-family: "Roboto Condensed", sans-serif;
  text-align: center;
}

@media (min-width: 81.25em) {
  .modal-teaser {
    font-size: 1.2rem;
  }
}

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

.modal-buttons .button {
  padding: 1rem 2rem;
  text-transform: uppercase;
  display: table;
  font-weight: 900;
  background: #12ab4f;
  color: #fff;
  transition: 0.5s all all 0.6s cubic-bezier(0.5, 1.65, 0.4, 0.8);
}

.modal-buttons .button:hover {
  background: #0054a6;
}

.modal-disclaimer {
  font-size: .8rem;
  line-height: 1.1;
  color: #404141;
  font-family: "Roboto Condensed", sans-serif;
  text-align: center;
  margin-top: .5rem;
}

@media (min-width: 81.25em) {
  .modal-disclaimer {
    font-size: .9rem;
    margin-top: 1rem;
  }
}

.modal-disclaimer a {
  color: #0054a6;
}

.modal-disclaimer a:hover {
  color: #12ab4f;
}

.popup_visible .modal {
  transform: scale(1);
}

.accordion {
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  max-width: 81.25em;
  margin: 0 auto;
  display: block;
  opacity: 0;
  transition: 0.8s opacity cubic-bezier(0.57, 0.2, 0.21, 0.89);
}

.accordion-grouping {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

@media (min-width: 81.25em) {
  .accordion-grouping {
    margin-bottom: 2rem;
  }
}

.accordion-grouping-heading {
  margin-bottom: 1rem;
}

@media (min-width: 48em) {
  .accordion:nth-of-type(1) {
    transition-delay: 0.2s;
  }
  .accordion:nth-of-type(2) {
    transition-delay: 0.3s;
  }
  .accordion:nth-of-type(3) {
    transition-delay: 0.4s;
  }
  .accordion:nth-of-type(4) {
    transition-delay: 0.5s;
  }
  .accordion:nth-of-type(5) {
    transition-delay: 0.6s;
  }
  .accordion:nth-of-type(6) {
    transition-delay: 0.7s;
  }
  .accordion:nth-of-type(7) {
    transition-delay: 0.8s;
  }
  .accordion:nth-of-type(8) {
    transition-delay: 0.9s;
  }
  .accordion:nth-of-type(9) {
    transition-delay: 1s;
  }
}

.accordion.reveal {
  opacity: 1;
}

.accordion:first-child {
  margin-top: 1rem;
}

@media (min-width: 81.25em) {
  .accordion:first-child {
    margin-top: 2rem;
  }
}

.accordion:last-of-type {
  border-bottom: none;
}

.accordion-header {
  background: transparent;
  width: 100%;
  outline: 0;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

.accordion-header-icon {
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  margin-right: .75rem;
  border: 1px solid #12ab4f;
  border-radius: 50%;
  padding: .5rem;
  transition: all 0.5s cubic-bezier(0.57, 0.2, 0.21, 0.89);
  margin: 0;
  flex: 0 0 auto;
}

.accordion-header-icon:before {
  width: 2px;
  height: 0.75rem;
  content: "";
  display: block;
  background: #12ab4f;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: all 0.5s cubic-bezier(0.57, 0.2, 0.21, 0.89);
}

.accordion-header-icon:after {
  width: 0.75rem;
  height: 2px;
  content: "";
  display: block;
  background: #12ab4f;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: all 0.5s cubic-bezier(0.57, 0.2, 0.21, 0.89);
}

.accordion-header-title {
  color: #0054a6;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  line-height: 1.3;
  margin: 0;
  padding-left: .75rem;
  flex: 0 1 auto;
  transition: all 0.5s cubic-bezier(0.57, 0.2, 0.21, 0.89);
}

.accordion-header:hover .accordion-header-icon {
  background: #12ab4f;
  border-color: #12ab4f;
}

.accordion-header:hover .accordion-header-icon:before {
  background: #fff;
}

.accordion-header:hover .accordion-header-icon:after {
  background: #fff;
}

.accordion-header:hover .accordion-header-title {
  color: #12ab4f;
}

.accordion-content {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 1s cubic-bezier(0.57, 0.2, 0.21, 0.89);
  text-align: left;
}

.accordion-content-body {
  padding: .5rem 0 .5rem 2rem;
}

.accordion-content-body p {
  font-size: .9rem;
}

.accordion-content-body p:last-of-type, .accordion-content-body p:last-child {
  margin-bottom: 0 !important;
}

.accordion.accordion-open .accordion-header-icon {
  background: #0054a6;
  border-color: #0054a6;
}

.accordion.accordion-open .accordion-header-icon:before {
  background: #fff;
  transform: translateX(-50%) translateY(-50%) rotate(90deg);
}

.accordion.accordion-open .accordion-header-icon:after {
  background: #fff;
}

.accordion.accordion-open .accordion-header-title {
  color: #12ab4f;
}

.accordion.accordion-open .accordion-content {
  max-height: 3000px;
  display: block;
}

.icon-grid {
  width: 100%;
  overflow: hidden;
}

@media (min-width: 48em) {
  .icon-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: center;
    align-items: flex-start;
  }
}

.icon-item {
  padding: 1rem;
  width: 100%;
  flex: 0 1 auto;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: 0.5s all cubic-bezier(0.57, 0.2, 0.21, 0.89);
}

.icon-item.reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 48em) {
  .icon-item:nth-of-type(1) {
    transition-delay: 0.2s;
  }
  .icon-item:nth-of-type(2) {
    transition-delay: 0.3s;
  }
  .icon-item:nth-of-type(3) {
    transition-delay: 0.4s;
  }
  .icon-item:nth-of-type(4) {
    transition-delay: 0.5s;
  }
  .icon-item:nth-of-type(5) {
    transition-delay: 0.6s;
  }
  .icon-item:nth-of-type(6) {
    transition-delay: 0.7s;
  }
  .icon-item:nth-of-type(7) {
    transition-delay: 0.8s;
  }
  .icon-item:nth-of-type(8) {
    transition-delay: 0.9s;
  }
  .icon-item:nth-of-type(9) {
    transition-delay: 1s;
  }
}

.icon-item-icon {
  width: 100%;
  padding-top: 100%;
  margin-bottom: .5rem;
  background: #12ab4f;
  border-radius: 50%;
  position: relative;
}

.icon-item-icon-aspect {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.icon-item-icon-svg, .icon-item-icon svg {
  width: 50%;
  margin: 0 auto;
  fill: none;
  stroke-width: .5rem;
  stroke: #fff;
}

.icon-item-title {
  font-size: .75rem;
  line-height: 1.2;
  margin-bottom: .5rem;
}

.icon-item-teaser {
  font-size: .75rem;
  line-height: 1.2;
}

.tabbed-content {
  margin-top: 1rem;
}

.tabbed-content-nav {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: flex-start;
  width: 100%;
}

.tabbed-content-nav-item {
  margin: .25rem;
  width: 50%;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: 0.3s all cubic-bezier(0.57, 0.2, 0.21, 0.89);
}

.tabbed-content-nav-item:last-of-type {
  transition-delay: .3s;
}

.tabbed-content-nav-item.reveal {
  opacity: 1;
  transform: translateY(0);
}

.tabbed-content-nav-item-button {
  width: 100%;
  display: block;
  cursor: pointer;
  position: relative;
  background: #0054a6;
  border: 5px solid #f4f4f4;
}

.tabbed-content-nav-item-button-container {
  overflow: hidden;
  height: 220px;
  position: relative;
}

.tabbed-content-nav-item-button-txt {
  background: linear-gradient(0deg, #0054a6 0%, rgba(0, 84, 166, 0) 50%);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: flex-end;
  align-items: flex-end;
  padding: 1rem;
  height: 220px;
  color: #fff;
  transition: all 0.5s cubic-bezier(0.57, 0.2, 0.21, 0.89);
  position: relative;
  z-index: 100;
}

.tabbed-content-nav-item-button-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .5;
  display: block;
  z-index: 40;
  background-size: cover;
  transition: 0.4s all cubic-bezier(0.5, 1.65, 0.4, 0.8);
}

.tabbed-content-nav-item-button:after {
  position: absolute;
  top: 80%;
  left: 50%;
  width: 0;
  height: 0;
  border: solid transparent;
  content: "";
  pointer-events: none;
  border-color: rgba(18, 171, 79, 0);
  border-top-color: #12ab4f;
  border-width: 1rem;
  margin-left: -1rem;
  transition: all 0.5s cubic-bezier(0.57, 0.2, 0.21, 0.89);
  opacity: 0;
  z-index: 1;
}

.tabbed-content-nav-item-button:hover {
  background: #0054a6;
}

.tabbed-content-nav-item-button:hover .tabbed-content-nav-item-button-img {
  transform: scale(1.1);
  opacity: .6;
}

.tabbed-content-nav-item.active .tabbed-content-nav-item-button {
  background: #0054a6;
  border: 5px solid #12ab4f;
}

.tabbed-content-nav-item.active .tabbed-content-nav-item-button:after {
  top: 100%;
  opacity: 1;
}

.tabbed-content-tab {
  padding: 1rem;
}

@media (min-width: 81.25em) {
  .tabbed-content-tab {
    padding: 2rem;
    padding-top: 0;
  }
}

.video-layer {
  padding: 1rem 0;
}

@media (min-width: 81.25em) {
  .video-layer {
    padding: 3rem 0;
  }
}

.video-embed, .video-headline, .video-teaser {
  opacity: 0;
  transform: translateY(0.5rem);
  transition: 0.5s all cubic-bezier(0.57, 0.2, 0.21, 0.89);
}

.video-embed.reveal, .video-headline.reveal, .video-teaser.reveal {
  opacity: 1;
  transform: translateY(0);
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin-bottom: 1rem;
}

.video-embed > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-headline {
  margin-bottom: .5rem;
}

.testing-table {
  background: #fff;
  width: 100%;
  font-size: .65rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(80, 80, 80, 0.2);
}

.testing-table-header {
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: .75rem;
  text-align: center;
  color: #1d548c;
}

@media (min-width: 48em) {
  .testing-table {
    font-size: .75rem;
  }
}

@media (min-width: 81.25em) {
  .testing-table {
    margin-bottom: 2rem;
  }
}

.testing-table tr {
  border-bottom: 1px solid rgba(80, 80, 80, 0.2);
}

.testing-table tr:last-of-type {
  border-bottom: none;
}

.testing-table th {
  color: #1d548c;
  font-weight: 600;
  padding: .4rem;
  border-right: 1px solid rgba(80, 80, 80, 0.2);
  text-align: center;
}

.testing-table th:last-of-type {
  border-right: none;
}

.testing-table th.left {
  text-align: left;
}

.testing-table td {
  padding: .4rem;
  border-right: 1px solid rgba(80, 80, 80, 0.2);
  text-align: center;
}

.testing-table td:last-of-type {
  border-right: none;
}

.multicol {
  padding: 1rem 0;
}

@media (min-width: 81.25em) {
  .multicol {
    padding: 2rem 0;
  }
}

.multicol.blue {
  background: #0054a6;
}

.multicol.green {
  background: #12ab4f;
}

.multicol.white {
  background: #fff;
}

.multicol.green {
  background: #505050;
}

.multicol-headline {
  margin-bottom: 1rem;
}

.multicol-grid {
  margin-top: 1rem;
}

@media (min-width: 48em) {
  .multicol-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: stretch;
    align-items: stretch;
  }
}

.multicol-col {
  background: #fff;
  margin: .25rem;
  flex: 1;
  padding: 1rem;
}

@media (min-width: 81.25em) {
  .multicol-col {
    padding: 2rem;
  }
}

@media (min-width: 81.25em) {
  .multicol-col.mobile-only {
    display: none;
  }
}

.multicol-col.desktop-only {
  display: none;
}

@media (min-width: 81.25em) {
  .multicol-col.desktop-only {
    display: block;
  }
}

.multicol-col-headline {
  font-weight: 600;
}

.multicol .btn {
  background: #12ab4f;
  font-size: .9rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  display: inline-block;
  padding: .3em 1rem .33em;
  color: #fff;
  border: 0;
  cursor: pointer;
  position: relative;
}

.multicol .btn:hover {
  background-color: #0054a6;
}

main {
  position: relative;
  padding: 1em;
  line-height: 1.2;
  margin: auto;
}

@media (min-width: 1000px) {
  main {
    padding: 2em 0;
    max-width: 1000px;
  }
  main.wide {
    max-width: 100%;
  }
  .ceros-post main.wide {
    padding: 0;
  }
}

/* --------------  Post Photos  -------------- */
.post-photo {
  position: relative;
  width: 100%;
}

@media only screen and (min-width: 1200px) {
  .post-photo {
    padding-bottom: 42.5%;
    max-width: 1400px;
    height: 0;
    overflow: hidden;
    margin-bottom: 1em;
  }
  .post-photo.wide {
    max-width: 100%;
    padding-bottom: 50%;
  }
  .post-photo.pos-0 {
    padding-bottom: 40%;
  }
  .post-photo.wide.pos-0 {
    padding-bottom: 42.5%;
  }
  .post-photo.short {
    padding-bottom: 20% !important;
  }
  .convention-kit .post-photo.short {
    padding-bottom: 30% !important;
  }
}

@media only screen and (min-width: 1800px) {
  .post-photo {
    padding-bottom: 25%;
  }
  .post-photo.pos-0 {
    padding-bottom: 30%;
  }
  .post-photo.wide.pos-0 {
    padding-bottom: 33.75%;
  }
}

.post-photo .image,
.post-photo .post-video {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  width: 100%;
}

.post-photo .image.luminosity {
  background-blend-mode: luminosity;
  background-color: #12ab4f;
}

.post-photo .image.luminosity.green {
  background-color: #12ab4f;
}

.post-photo .image.luminosity.blue {
  background-color: #0054a6;
}

.post-photo .image.luminosity.yellow {
  background-color: #f2d945;
}

.post-photo .image.luminosity.lightblue {
  background-color: #0357a3;
}

.post-photo .post-video {
  display: none;
}

@media only screen and (max-width: 1200px) {
  .post-photo .image {
    min-height: 12vh;
  }
}

@media only screen and (min-width: 600px) and (max-width: 800px) {
  .post-photo .image {
    min-height: 35vh;
  }
}

@media only screen and (min-width: 800px) and (max-width: 1000px) {
  .post-photo .image {
    min-height: 40vh;
  }
}

@media only screen and (min-width: 1000px) and (max-width: 1200px) {
  .post-photo .image {
    min-height: 50vh;
  }
}

@media only screen and (min-width: 1200px) {
  .post-photo .image {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .post-photo .image.mobile {
    display: none;
  }
  .post-photo .post-video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow-y: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: block;
  }
  .post-photo .post-video video {
    position: absolute;
    width: 100%;
    height: initial;
    top: 0;
    left: 0;
  }
}

.post-photo .darken {
  display: none;
}

@media only screen and (min-width: 1200px) {
  .post-photo .darken {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+50,0.15+60,0.6+100 */
    background: -moz-linear-gradient(top, rgba(30, 39, 76, 0) 0%, rgba(30, 39, 76, 0) 50%, rgba(30, 39, 76, 0.15) 60%, rgba(30, 39, 76, 0.6) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(30, 39, 76, 0) 0%, rgba(30, 39, 76, 0) 50%, rgba(30, 39, 76, 0.15) 60%, rgba(30, 39, 76, 0.6) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(30, 39, 76, 0) 0%, rgba(30, 39, 76, 0) 50%, rgba(30, 39, 76, 0.15) 60%, rgba(30, 39, 76, 0.6) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#99000000',GradientType=0 );
    /* IE6-9 */
  }
}

/* --- youtube headlines --- */
body.youtube-video h1 {
  text-transform: uppercase;
}

/* --- text --- */
.post-photo article {
  position: relative;
  padding: 0.5em 1.5em;
  z-index: 10;
  color: white;
}

.post-photo article h1 {
  color: white !important;
}

@media only screen and (min-width: 1200px) {
  .post-photo article {
    width: 96%;
    width: calc(100% - 4em);
    padding: 2em;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 1000px;
    text-align: center;
    z-index: 9;
  }
  .post-photo article.with-caption {
    bottom: 1em;
  }
  .post-photo.align-left article {
    text-align: left;
  }
  .post-photo.align-right article {
    text-align: right;
  }
}

@media only screen and (min-width: 1400px) {
  .post-photo article,
.post-photo.align-center article {
    width: 100%;
    padding: 2em 0;
  }
  .post-photo.align-left article {
    padding-right: 25%;
  }
  .post-photo.align-right article {
    padding-left: 25%;
  }
}

.post-photo .image-caption {
  position: relative;
  color: white;
  z-index: 10;
  font-size: 70%;
  line-height: 1;
  opacity: .9;
  margin-top: -4.25em;
  width: 96%;
  width: calc(100% - 1em);
}

@media only screen and (min-width: 400px) {
  .post-photo .image-caption {
    margin-top: 0;
    margin-bottom: 1em;
  }
}

@media only screen and (min-width: 1200px) {
  .post-photo .image-caption {
    width: 96%;
    width: calc(100% - 4em);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1.5em;
    max-width: 1000px;
    text-align: center;
    z-index: 9;
    font-size: 60%;
    margin: auto;
  }
}

@media only screen and (min-width: 1400px) {
  .post-photo .image-caption {
    width: 100%;
  }
}

.post-photo h1 {
  margin: auto;
  font-size: 150% !important;
  font-weight: 700;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
}

@media only screen and (min-width: 740px) {
  .post-photo h1 {
    font-size: 200% !important;
  }
}

@media only screen and (min-width: 1200px) {
  .post-photo h1 {
    font-size: 220% !important;
  }
}

.post-photo p {
  font-family: 'Roboto', sans-serif;
}

.post-photo .caption {
  font-size: 110%;
  font-weight: 700;
  font-style: italic;
}

@media only screen and (min-width: 1200px) {
  .post-photo .caption,
.post-photo.align-left .caption {
    padding-right: 30%;
  }
  .post-photo.align-right .caption {
    padding-left: 30%;
  }
  .post-photo.align-center .caption {
    padding: 0 15%;
  }
}

.post-photo .photo-label {
  font-size: 80%;
}

@media only screen and (min-width: 1200px) {
  .post-photo .photo-label,
.post-photo.align-center .photo-label {
    text-align: center;
  }
  .post-photo.align-left .photo-label {
    text-align: right;
  }
  .post-photo.align-right .photo-label {
    text-align: left;
  }
}

/* --------------  Text Blocks  -------------- */
.post-text-block {
  position: relative;
  width: 100%;
  max-width: 1400px;
}

.post-text-block a {
  color: #005dab;
}

.post-text-block a:focus,
.post-text-block a:hover {
  color: #00a74f;
  text-decoration: underline;
}

/* --- text --- */
.post-text-block article,
.post-meta article {
  position: relative;
  padding: .5em 1.5em 1.5em;
  text-align: left;
}

.post-meta article {
  padding: 1.5em 1.5em 0;
}

@media only screen and (min-width: 1200px) {
  .post-text-block article,
.post-meta article {
    width: 96%;
    width: calc(100% - 4em);
    padding: 2em 0;
    max-width: 1000px;
  }
  .post-text-block.pos-1 article {
    padding-top: 0;
  }
  .post-meta article {
    padding: 0 0 1em 0;
  }
}

.post-text-block article.no-top-padding,
.post-meta article.no-top-padding {
  padding-top: 0;
}

.post-text-block article.no-bottom-padding,
.post-meta article.no-bottom-padding {
  padding-bottom: 0;
}

.post-text-block h2 {
  text-align: center;
}

.post-video-block {
  font-size: 80%;
  line-height: 1.2;
  font-weight: 100;
  letter-spacing: .5px;
}

.post-video-block p:first-of-type {
  padding-top: .7em;
}

/* Adjustment to embedded video players for mobile
------------------------------------ */
@media only screen and (max-width: 740px) {
  .post-text-block iframe {
    max-width: 100%;
  }
}

/* Legacy Photo with Caption
------------------------------------ */
.photo-with-caption {
  font-size: 70%;
  color: #8e8e8e;
  line-height: 1.2;
  margin: 0 0 1em 0;
}

.photo-with-caption img {
  width: 100%;
}

@media only screen and (min-width: 740px) {
  .photo-with-caption.img-center {
    width: 80%;
    margin: 0 10% 1.5em;
  }
  .photo-with-caption.img-left {
    width: 45%;
    float: left;
    margin: 0 1.5em 1em 0;
  }
  .photo-with-caption.img-right {
    width: 45%;
    float: right;
    margin: 0 0 1em 1.5em;
  }
  .photo-with-caption.img-left.small-float,
.photo-with-caption.img-right.small-float {
    width: 20%;
  }
}

/* Addthis - Sharing
------------------------------------ */
.ceros-post .page-share {
  z-index: 10;
  position: fixed;
  top: 120px;
  left: -5px;
  width: 40px;
}

.page-share {
  margin-top: 20px;
  margin-bottom: 20px;
}

.page-share a {
  font-size: 90%;
  color: white;
  background: #00ab4f;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  padding: 0 !important;
  margin: 0 5px 0 0 !important;
  display: inline-block;
  width: 40px !important;
  height: 40px;
  line-height: 40px !important;
}

@media only screen and (min-width: 1200px) {
  .page-share a {
    font-size: 70%;
  }
}

.ceros-post .page-share a {
  margin: 0 0 1px 0 !important;
}

.page-share .addthis_button_facebook {
  background: #0357a3;
}

.page-share .addthis_button_twitter {
  background: #0357a3;
}

.page-share .addthis_button_email {
  background: #0357a3;
}

.page-share .addthis_button_compact {
  background: #0357a3;
}

.page-share a:hover {
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  text-decoration: none;
  color: white;
}

.ceros-post .page-share a:hover {
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -moz-transform: translateX(5px);
  -ms-transform: translateX(5px);
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

.page-share a:active {
  background: #0054a6;
}

.page-share a:visited {
  color: white;
  text-decoration: none;
}

.page-share span {
  display: none;
}

#at15s,
.at16nc {
  display: none !important;
}

/* ---------- Load More ---------- */
.post-link {
  background: #f4f4f4;
  width: 49%;
  padding: 1em;
  margin-top: 1em;
  display: inline-block;
  font-size: .8em;
  line-height: 1;
  color: #353535;
  vertical-align: text-top;
  -moz-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -o-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -webkit-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}

.post-link:hover {
  background: #fff;
  color: #2fc2d3;
}

.post-link strong {
  font-size: 90%;
  margin-bottom: .3em;
  display: block;
  text-transform: uppercase;
  color: #000;
  position: relative;
}

.post-link:hover strong {
  color: #00a950;
}

.post-link h4 {
  font-weight: 300;
  color: #000;
  font-size: 1.1em;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.post-link:hover h4 {
  color: #000;
  text-decoration: none;
}

.prev-post {
  text-align: left;
  padding-left: 2em;
}

.next-post {
  text-align: right;
  padding-right: 2em;
}

.prev-post strong:before,
.next-post strong:before {
  display: block;
  font-family: 'afscme-icons';
  font-size: 130%;
  color: #000;
  position: absolute;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -moz-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -o-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -webkit-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}

.prev-post:hover strong:before,
.next-post:hover strong:before {
  color: #00a950;
}

.prev-post strong:before {
  left: -1.2em;
  content: "<";
}

.next-post strong:before {
  right: -1.2em;
  content: ">";
}

@keyframes arrow_left {
  0% {
    left: -1.2em;
  }
  50% {
    left: -1.45em;
  }
  100% {
    left: -1.2em;
  }
}

@keyframes arrow_right {
  0% {
    right: -1.2em;
  }
  50% {
    right: -1.45em;
  }
  100% {
    right: -1.2em;
  }
}

.prev-post:hover strong:before {
  left: -1.35em;
  -webkit-animation: arrow_left .6s linear infinite;
  -moz-animation: arrow_left .6s linear infinite;
  -ms-animation: arrow_left .6s linear infinite;
  animation: arrow_left .6s linear infinite;
}

.next-post:hover strong:before {
  right: -1.35em;
  -webkit-animation: arrow_right .6s linear infinite;
  -moz-animation: arrow_right .6s linear infinite;
  -ms-animation: arrow_right .6s linear infinite;
  animation: arrow_right .6s linear infinite;
}

@media only screen and (min-width: 1600px) {
  .page-nav {
    text-align: center;
  }
  .page-nav .wrap {
    max-width: 1400px;
    position: relative;
  }
  .post-link {
    width: 100%;
    position: absolute;
    top: 100px;
    background: transparent;
    width: 9em;
    z-index: 1000;
  }
  .prev-post {
    left: 0;
    padding: 1em 1em 1em 2em;
  }
  .next-post {
    right: 0;
    padding: 1em 2em 1em 1em;
  }
  .post-link h4 {
    opacity: 0;
    font-weight: 300;
    font-size: .01em;
    -webkit-transition: opacity .3s ease-in-out;
    -moz-transition: opacity .3s ease-in-out;
    -o-transition: opacity .3s ease-in-out;
    -ms-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
  }
  .post-link:hover h4 {
    opacity: 1;
    font-size: .9em;
  }
  .stuck {
    position: fixed;
    width: 100%;
    z-index: 2000;
    top: 185px;
  }
}

/* ---------- Post Meta Data ---------- */
.addthis_toolbox a {
  text-align: center;
}

.meta {
  padding: 1.25em 0 1em;
  font-weight: 500;
  font-size: 80%;
  text-transform: uppercase;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
}

.post-meta .meta {
  padding-bottom: 0;
}

.meta .tagged {
  color: #bababa;
}

@media only screen and (max-width: 1000px) {
  .meta .tagged {
    display: block;
  }
}

.meta {
  display: inline-block;
}

@media only screen and (min-width: 1000px) {
  .meta {
    font-size: 70%;
  }
  .meta span {
    padding: 0 .7em;
    border-left: 1px solid #adadad;
  }
  .meta .tagged {
    /*display: inline-block;*/
  }
  .meta .tagged.break {
    display: block;
    padding-top: .5em;
    padding-left: 0;
    border-left: none;
  }
  .meta .tagged.break:before {
    content: "TAGS:";
    color: #505050;
    padding-right: .3em;
    font-size: .9em;
  }
  .meta span:first-child {
    padding: 0 0.4em 0 0;
    border-left: none;
  }
}

.meta .author a {
  color: #0357a3;
}

.meta .tagged a {
  background: #bababa;
  color: #fff;
  font-size: 85%;
  padding: 0 .3em;
  white-space: nowrap;
}

.meta .tagged a:hover {
  background: #005dab;
}

.meta .tagged a:active {
  background: #00a950;
}

@media only screen and (min-width: 1200px) {
  .video {
    margin-bottom: 1em;
  }
}

figure.player {
  max-width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}

@media only screen and (min-width: 1000px) {
  figure.player {
    width: 100vw;
    height: 56.25vw;
    max-height: 81vh;
    max-width: 144vh;
    padding-bottom: 0;
  }
}

figure.player iframe,
figure.player object,
figure.player embed {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

/* ---------- Post Meta Data ---------- */
.archive-list {
  list-style: none;
}

.archive-list li {
  display: inline-block;
  padding: .2em;
}

.archive-list li a {
  background: #fff;
  display: block;
  color: #505050;
  padding: .3em .4em;
  -moz-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -o-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -webkit-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}

.archive-list li a:hover {
  background: #00ab4f;
  color: #fff;
}

/* ---------- Search Results ---------- */
.gsc-control-cse .gs-spelling, .gsc-control-cse .gs-result .gs-title, .gsc-control-cse .gs-result .gs-title * {
  text-align: left;
}

/* ---------- Search Results ---------- */
.gsc-table-result {
  font-family: 'Roboto', sans-serif !important;
  text-align: left !important;
}

.gs-title {
  margin-bottom: .1em;
  text-decoration: none;
  font-family: 'Roboto', sans-serif !important;
  line-height: 1.3 !important;
  font-weight: 500 !important;
}

a.gs-title * {
  font-size: 1.2em !important;
  color: #00ab4f !important;
  text-decoration: none !important;
  -moz-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -o-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -webkit-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}

.gs-title,
.gs-title *,
a.gs-title *:link *,
a.gs-title * {
  color: #00ab4f !important;
  text-decoration: none !important;
}

.gs-title:hover,
.gs-title:hover * {
  color: #0054a6 !important;
}

.cse .gsc-control-cse, .gsc-control-cse,
.gsc-webResult.gsc-result, .gsc-results .gsc-imageResult {
  background-color: transparent !important;
  border: 0 solid #ffffff !important;
}

.gs-image-box {
  display: none !important;
}

.gsc-table-cell-snippet-close {
  padding: 0 .5em .5em;
}

.gsc-getlink-container {
  display: none;
}

.gs-webResult div.gs-visibleUrl, .gs-imageResult div.gs-visibleUrl {
  color: #0054a6 !important;
}

.gsc-result .gs-title {
  height: auto !important;
}

.gsc-table-result, .gsc-thumbnail-inside, .gsc-url-top {
  padding-left: 0 !important;
}

.gsc-results .gsc-cursor-box .gsc-cursor-current-page,
.gsc-results .gsc-cursor-box .gsc-cursor-page {
  border: none !important;
  background-color: transparent !important;
  cursor: pointer;
  font-size: 1.2em !important;
}

.gsc-results .gsc-cursor-box .gsc-cursor-page {
  color: #00ab4f !important;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  padding: 0 .3em;
}

.gsc-results .gsc-cursor-box .gsc-cursor-page:hover {
  color: #0054a6 !important;
  text-decoration: none !important;
}

.gsc-results .gsc-cursor-box .gsc-cursor-current-page {
  color: #0054a6 !important;
}

.gsc-results .gsc-cursor-box .gsc-cursor-current-page:hover {
  color: #00ab4f !important;
}

.gsc-control-cse .gs-spelling, .gsc-control-cse .gs-result .gs-title, .gsc-control-cse .gs-result .gs-title * {
  font-size: 1.2em !important;
}

#___gcse_0 > div > div > div > div.gsc-wrapper > div.gsc-resultsbox-visible > div > div > div.gsc-expansionArea > div.gsc-cursor-box.gs-bidi-start-align {
  text-align: center !important;
  padding-top: 1em;
}

.gsc-adBlock {
  display: none !important;
}

/* --- Gallery --- */
.gallery {
  width: 100%;
  height: 100%;
}

.gallery:after {
  content: "";
  display: block;
  clear: both;
}

.gallery .photo {
  position: relative;
  float: left;
  width: 50%;
  padding: 0;
}

.photo-sizer {
  width: 50%;
}

@media only screen and (min-width: 1000px) {
  .gallery .photo {
    width: 33%;
  }
  .photo-sizer {
    width: 33%;
  }
}

.gallery .photo a {
  display: block;
}

.gallery .photo img {
  width: 100%;
  float: left;
}

/* --- Photo Galleries --- */
.gallery-container {
  padding: 1em 0;
}

.gallery-container h3 {
  padding: 0 0 .5em;
}

.photo-gallery {
  position: relative;
  padding: 0 0;
}

@media only screen and (min-width: 700px) {
  .photo-gallery {
    padding: 0 0;
  }
}

.gallery .photo img,
.gallery img {
  width: 100%;
  height: auto !important;
}

/* --- Announcements --- */
ul.announcements-tabs {
  margin: 0 auto 2em;
  list-style: none;
}

ul.announcements-tabs li {
  display: inline-block;
  margin: .1em 0em;
}

.announcements-tabs button,
.announcements-tabs a {
  background: #0054a6;
  font-size: .9em;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  display: inline-block;
  padding: .3em .3em .33em;
  color: #fff;
  border: 0;
  cursor: pointer;
  position: relative;
  -moz-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -o-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -webkit-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}

.announcements-tabs li.active button,
.announcements-tabs li.active a {
  background: #00ab4f;
  color: #fff;
}

@media only screen and (min-width: 740px) {
  .announcements-tabs button:hover,
.announcements-tabs a:hover {
    background: #12ab4f;
  }
}

@media only screen and (min-width: 1200px) {
  .announcements-tabs li.active button:after,
.announcements-tabs li.active a:after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(0, 171, 79, 0);
    border-top-color: #00ab4f;
    border-width: 8px;
    margin-left: -8px;
  }
}

.announcement-expander {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.2em 0 1.2em 1.8em;
  position: relative;
  font-size: 1rem;
}

.announcement-expander:last-of-type {
  border-bottom: none;
}

.announcement-expander .expander-body {
  padding-top: 1em;
}

.announcement-expander .header h2 {
  text-align: left;
  font-size: 125%;
  display: block;
  -moz-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -o-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -webkit-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}

.announcement-expander .button.expand {
  color: #00ab4f;
  font-size: .8em;
  cursor: pointer;
  display: inline-block;
  margin-top: .8em;
  -moz-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -o-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -webkit-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}

.announcement-expander .button:hover {
  color: #0054a6;
}

.announcement-expander .button .collapse-button,
.announcement-expander.expanded .button .expand-button {
  display: none;
}

.announcement-expander.expanded .button .collapse-button {
  display: block;
}

/* --- Agenda --- */
main.agenda article {
  padding: 1.4em 0;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

main.agenda article:last-child {
  border-bottom: 0;
}

main.agenda article h1 {
  margin-bottom: .65em;
  text-align: center;
  font-weight: 600;
}

main.agenda article small {
  padding-top: 1.3em;
  font-size: .75em;
  display: block;
}

main article .time {
  padding-bottom: .7em;
  font-size: .75em;
  display: block;
  font-weight: 600;
}

main.agenda h1 {
  font-weight: 600;
  text-transform: uppercase;
}

@media only screen and (min-width: 1200px) {
  main.agenda article .col {
    display: table-cell;
    width: 50%;
  }
  main.agenda article .col:first-child {
    padding-right: 1em;
  }
  main.agenda article .col:last-child {
    padding-left: 1em;
  }
}

/* --- Resources --- */
.resource-list .table {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: stretch;
  align-items: stretch;
}

.resource-list .grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: stretch;
  align-items: stretch;
}

.resource-list article {
  position: relative;
  overflow: hidden;
}

.resource-list article figure {
  background: #0357a3;
  padding-bottom: 80%;
  height: 0;
  overflow: hidden;
  -moz-transition: all 0.4s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -o-transition: all 0.4s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -webkit-transition: all 0.4s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  transition: all 0.4s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}

@media (min-width: 81.25em) {
  .resource-list article figure {
    padding-bottom: 100%;
  }
}

.resource-list article figure:hover {
  background: #023c71;
}

.resource-list .image {
  background: #0357a3 url(/hero-image/Secondary-Hero_1600x700.png) no-repeat center center;
  background-size: cover;
  opacity: .4;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: 1;
  -moz-transition: all 0.4s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -o-transition: all 0.4s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -webkit-transition: all 0.4s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  transition: all 0.4s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}

.resource-list .cell:hover .image {
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  opacity: .7;
}

.resource-list figure figcaption {
  position: absolute;
  padding: 1.3em;
  left: 0;
  bottom: 0;
  padding: .75em;
  z-index: 500;
}

.resource-list figure h3 {
  font-size: .85rem;
  margin-bottom: 0;
}

.resource-list figure h3 span {
  -moz-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -o-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -webkit-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  line-height: 1;
  color: #fff;
  -moz-box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.resource-list figure a:hover h3 {
  text-decoration: none !important;
}

@media only screen and (min-width: 1200px) {
  .resource-list {
    margin-bottom: 40px;
  }
}

@media only screen and (min-width: 1400px) {
  .resource-list {
    max-width: 1400px;
  }
}

.resource-list article {
  position: relative;
}

@media only screen and (min-width: 1100px) {
  .resource-list h1 {
    font-size: 150%;
    text-transform: uppercase;
    margin-bottom: 0;
    padding: 0;
  }
  .resource-list strong {
    font-size: 65%;
    line-height: 1;
    display: inline-block !important;
    padding: .4em 1.25em .35em !important;
    background: white;
    color: black;
    text-transform: uppercase;
    margin-top: 1em;
  }
  .resource-list strong:hover {
    color: black;
  }
}

.resource-list .cell {
  width: calc(50% - .5rem);
  margin: .25em;
  text-align: left;
  position: relative;
}

.resource-list .cell a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 900px) {
  .resource-list .cell {
    width: calc(25% - 1rem);
    margin: .5em;
    text-align: left;
  }
}

#sec {
  padding: 2em;
  margin: 2em auto;
  max-width: 88%;
}

ul.util {
  margin-top: 1em;
  font-weight: 700;
  list-style-type: none;
  display: block;
}

@media (min-width: 1000px) {
  ul.util {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /*gap: 5% 5%;*/
  }
}

ul.util li {
  padding: .25em 0;
}

ul.util li a {
  background: white;
  padding: 0 .25em;
  color: black;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
}

ul.util li a:hover {
  background: black;
  color: white;
}

ul.util.cal {
  margin: 2em 0;
}

ul.util.cal li {
  padding: .25em .5em;
  width: 100%;
  font-weight: 400;
}

ul.util.cal li.day {
  background: #06a650;
  font-weight: 700;
  /* font-size: 80%; */
  text-transform: uppercase;
  height: auto;
  color: white;
}

ul.util.cal li a {
  background: none;
  padding: 0;
  color: #005dab;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 90%;
}

/* --- Anchored Grouping --- */
.anchored-grouping {
  text-align: left;
  padding: 1em 0;
}

.anchored-grouping:first-child {
  padding-top: 0;
}

.anchored-grouping .header {
  text-align: center;
  padding-bottom: 1em;
}

/* --- Rise Up Workshop List --- */
body.institute main.archive ul {
  text-align: left;
  margin-left: 2em;
}

body.institute main.archive p:last-of-type {
  text-align: left;
  margin-bottom: 1em;
}

body.institute main.archive p {
  text-align: left;
}

/* --- Reports --- */
.archive .reports {
  padding: 2em;
}

.report {
  display: inline-block;
  min-width: 12em;
  padding: .3em;
}

.report a {
  display: block;
  background: #00ab4f;
  color: #fff;
  padding: .4em .65em;
  -moz-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -o-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -webkit-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}

.report a:hover {
  background: #0054a6;
}

/* --- Resolutions --- */
.archive .resolutions {
  display: block;
  padding: 0 0 4em 0;
}

@media (min-width: 1000px) {
  .archive .resolutions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /*gap: 20px;*/
  }
}

.resolution {
  display: block;
  width: 100%;
  padding: .3em;
  text-align: left;
}

.resolution a {
  display: block;
  background: #00ab4f;
  color: #fff;
  height: 100%;
  padding: 1em 1em;
  -moz-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -o-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -webkit-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}

.resolution a:hover {
  background: #0054a6;
}

.resolution a.dark-gray {
  background: #363636;
}

.resolution a.blue {
  background: #243877;
}

.resolution .number {
  font-size: 70%;
  font-weight: 700;
  color: #00ab4f;
  background: white;
  padding: .25em .5em;
  display: inline-block;
}

.resolution a.dark-gray .number {
  color: #363636;
}

.resolution a.blue .number {
  color: #243877;
}

.resolution .title {
  font-size: 110%;
  font-weight: 400;
  color: white;
  display: block;
  margin: .25em 0;
}

.resolution .author {
  font-size: 70%;
  font-weight: 400;
  color: white;
  display: inline-block;
}

/* --- Workshop Materials --- */
body.materials main.archive.cf {
  text-align: left;
}

body.materials h2 {
  font-size: 150%;
}

body.materials ul {
  margin-bottom: 1em;
  margin-left: 3em;
}

/* --- Responsive Video --- */
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* --- Blog post header image credit --- */
@media only screen and (min-width: 1200px) {
  .post-photo .image-credit {
    position: absolute;
    right: 0.5em;
    bottom: 0.5em;
    font-size: 60%;
    line-height: 1;
    text-transform: uppercase;
    z-index: 99;
    font-family: 'Roboto Condensed', sans-serif;
    opacity: .8;
  }
}

@media only screen and (max-width: 1199px) {
  .post-photo .image-credit {
    display: none;
  }
}

/* --- Certificate Form --- */
.cert-form ol {
  list-style: none;
  margin: 0 auto;
}

.cert-form li {
  padding: .3em;
  text-align: left;
}

@media only screen and (min-width: 1000px) {
  .cert-form li {
    width: 49%;
    display: inline-block;
  }
  .cert-form li:last-child,
.cert-form li:nth-child(3) {
    width: 98.5%;
    display: block;
  }
}

.cert-form label {
  font-size: 90%;
  cursor: pointer;
}

.cert-form label:hover {
  color: #008840;
}

.cert-form input[type=text],
.cert-form input[type=phone],
.cert-form input[type=email] {
  background: #fff;
  border: 1px solid #969696;
  color: #969696;
  -webkit-appearance: none;
  width: 100%;
  padding: .5em .75em;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 300;
  cursor: pointer;
  font-size: 100%;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.cert-form input[type=text]:hover,
.cert-form input[type=phone]:hover,
.cert-form input[type=email]:hover {
  border-color: #0054a6;
  color: #008840;
}

.cert-form input[type=text]:focus,
.cert-form input[type=phone]:focus,
.cert-form input[type=email]:focus {
  border: 1px solid #008840;
  color: #0054a6;
}

.cert-form input:-ms-input-placeholder {
  color: #969696;
}

.cert-form input::-webkit-input-placeholder {
  color: #969696;
}

.cert-form input:hover:-ms-input-placeholder {
  color: #008840;
}

.cert-form input:hover::-webkit-input-placeholder {
  color: #008840;
}

.cert-form input:focus:-ms-input-placeholder {
  color: #0054a6;
}

.cert-form input:focus::-webkit-input-placeholder {
  color: #0054a6;
}

.cert-form li.submit {
  padding-top: 1.2em;
}

.cert-form button {
  background: #008840;
  width: auto;
  padding: .35em 1em;
  display: block;
  cursor: pointer;
  font-size: 125%;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.cert-form button:hover {
  background: #0054a6;
}

.post-text-block .video {
  width: 100%;
  height: 100%;
  display: block;
  background: #fff;
}

.post-text-block .video .col-left, .post-text-block .video .col-right {
  display: block;
  padding: 1em;
  width: 100%;
  text-align: center;
}

.post-text-block .video .col-right {
  text-align: left;
  padding: 1em;
}

@media only screen and (min-width: 900px) {
  .post-text-block .video {
    width: 100%;
    height: 100%;
    display: table-row;
    background: #fff;
  }
  .post-text-block .video .col-left, .post-text-block .video .col-right {
    width: 50%;
    display: table-cell;
    vertical-align: middle;
    padding: 1em;
  }
}

.resource-icon {
  width: 8rem;
  height: 8rem;
  background-color: #12ab4f;
  border-radius: 50%;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: stretch;
  align-items: center;
  transform: scale(0.5);
  opacity: 0;
  transition: 0.3s all cubic-bezier(0.5, 1.65, 0.4, 0.8);
  transition-delay: .2s;
}

.resource-icon-svg {
  width: 50%;
  height: 52%;
  stroke-width: 10px;
  stroke: #fff;
  fill: none;
}

.resource-headline {
  text-align: center;
  transform: translateY(0.5rem);
  opacity: 0;
  transition: 0.3s all cubic-bezier(0.57, 0.2, 0.21, 0.89);
  transition-delay: .4s;
}

.resource-headline.reveal {
  opacity: 1;
  transform: translateY(0);
}

.resource-text {
  transform: translateY(0.5rem);
  opacity: 0;
  transition: 0.3s all cubic-bezier(0.57, 0.2, 0.21, 0.89);
  transition-delay: .6s;
}

.resource-text ul, .resource-text ol {
  margin: 0 0 1rem 1rem;
}

.resource-text .btn {
  background: #12ab4f;
  font-size: .9rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  display: inline-block;
  padding: .3em 1rem .33em;
  color: #fff;
  border: 0;
  cursor: pointer;
  position: relative;
}

.resource-text .btn-container {
  padding: 1rem;
  text-align: center;
}

.resource-text .btn:hover {
  background-color: #0054a6;
}

.resource.reveal .resource-icon {
  transform: scale(1);
  opacity: 1;
}

.resource.reveal .resource-headline, .resource.reveal .resource-text {
  transform: translateY(0);
  opacity: 1;
}

.announcements-intro {
  font-size: .75rem;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.announcements-tabs-item {
  opacity: 0;
  transform: translateY(0.5rem);
  transition: 0.5s all cubic-bezier(0.57, 0.2, 0.21, 0.89);
}

.announcements-tabs-item.reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 48em) {
  .announcements-tabs-item:nth-of-type(1) {
    transition-delay: 0.2s;
  }
  .announcements-tabs-item:nth-of-type(2) {
    transition-delay: 0.3s;
  }
  .announcements-tabs-item:nth-of-type(3) {
    transition-delay: 0.4s;
  }
  .announcements-tabs-item:nth-of-type(4) {
    transition-delay: 0.5s;
  }
  .announcements-tabs-item:nth-of-type(5) {
    transition-delay: 0.6s;
  }
  .announcements-tabs-item:nth-of-type(6) {
    transition-delay: 0.7s;
  }
  .announcements-tabs-item:nth-of-type(7) {
    transition-delay: 0.8s;
  }
  .announcements-tabs-item:nth-of-type(8) {
    transition-delay: 0.9s;
  }
  .announcements-tabs-item:nth-of-type(9) {
    transition-delay: 1s;
  }
}

.anchored-content-layer {
  padding: 1rem 0;
}

@media (min-width: 81.25em) {
  .anchored-content-layer {
    padding: 2rem 0;
  }
}

.embed-map {
  position: relative;
  padding-bottom: 65%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 1rem auto;
}

@media (min-width: 48em) {
  .embed-map {
    margin: 2rem auto;
  }
}

@media (min-width: 81.25em) {
  .embed-map {
    margin: 3rem auto;
  }
}

.embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-play {
  background: rgba(0, 136, 64, 0.5);
  width: 3rem;
  height: 3rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 200;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all cubic-bezier(0.57, 0.2, 0.21, 0.89);
}

.video-play svg {
  width: 50%;
  fill: #fff;
  margin-left: 10%;
}

.archive article figure a:hover .video-play {
  background: rgba(0, 136, 64, 0.7);
}
