/* From https://codeburst.io/how-to-create-a-simple-css-loading-spinner-make-it-accessible-e5c83c2e464c
   Credit Stuart Nelson - https://codeburst.io/@stuartjnelson
*/

/* Converted Tailwind Config to scss */

.blurbs__posts {
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
}

.featurette.appearance--secondary .featurette__primary {
  background: linear-gradient(85deg, #f27062, rgba(242, 112, 98, 0.77));
}

@media (min-width: 1024px) {
  .featurette__primary {
    max-width: 514px;
  }
}

.featurette__primary .button__link {
  padding-left: 0;
  padding-top: 0;
}

@media (min-width: 1024px) {
  .featurette picture {
    height: 100% !important;
  }
}

.featurette .button__link {
  text-transform: uppercase;
  font-weight: 700;
  background: transparent;
  color: #FEFFFF;
}

.featurette .button__link:hover {
  color: #FEFFFF;
}

.featurette .button__link:hover .button__icon {
  margin-left: 2rem;
}

.featurette .button__link::after {
  display: none;
}

.featurette .button__link span {
  margin-left: 1.5rem;
}

.general_featurette__image {
  overflow: hidden;
  height: 400px;
}

@media (min-width: 768px) {
  .general_featurette__image {
    height: 800px;
  }
}

@media (min-width: 1024px) {
  .general_featurette__image {
    height: 700px;
  }
}

.general_featurette .button__link span {
  margin-right: 20px;
}

.hero {
  z-index: 20;
  opacity: 0;
  animation: homepage_fade_in .5s ease-in-out forwards;
}

.hero__image {
  height: 100%;
}

.hero__title {
  opacity: 0;
  animation: homepage_fade_in .5s ease-in-out forwards;
  animation-delay: 1s;
}

.hero .button, .hero__down {
  opacity: 0;
  animation: homepage_fade_in .5s ease-in-out forwards;
  animation-delay: 4s;
}

.hero__icon {
  position: absolute;
  top: -5%;
  right: 25px;
  width: auto;
  height: 250px;
}

@media (min-width: 1024px) {
  .hero__icon {
    top: 0;
    right: 75px;
    height: 625px;
  }
}

.hero__icon svg {
  width: auto;
  height: 100%;
}

.hero__icon svg path {
  stroke-dasharray: 1300;
  stroke-dashoffset: 1300;
}

.hero__background {
  height: 277px;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: -1;
}

@media (min-width: 1024px) {
  .hero__background {
    height: 600px;
    position: absolute;
  }
}

.hero__background_wrapper {
  position: absolute;
  width: 100%;
  padding-top: 56.25%;
}

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

.hero__background::after {
  display: block;
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 50%;
  width: 100%;
  background: linear-gradient(to top, #009bdf, transparent);
}

.hero__down {
  transform: rotate(90deg);
}

@media (min-width: 1024px) {
  .hero__down {
    height: 21px;
    width: 75px;
    margin-bottom: 65px;
    margin-top: 500px;
  }
}

.hero__primary {
  padding-top: 200px;
  padding-bottom: 100px;
}

@media (min-width: 1024px) {
  .hero__primary {
    padding-top: 250px;
    padding-bottom: 0;
  }
}

.hero__primary .button.button--angle .button__angle_outline, .hero__primary .button.button--angle .button__angle_background {
  height: 100%;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  bottom: -496px;
}

.hero__overlay div {
  transform: skewY(15deg) translateY(10vw);
  height: 100%;
  width: 100%;
  background: #009bdf;
  z-index: -1;
}

.hero__title {
  margin-bottom: 46px;
}

body[data-loaded="true"] .hero {
  animation: homepage_fade_in .5s ease-in-out forwards;
}

body[data-loaded="true"] .hero__icon.animate-svg--in path {
  animation: home_icon_enter 3s linear forwards;
  animation-delay: 1.5s;
}

body[data-loaded="true"] .hero__title {
  opacity: 0;
  animation: homepage_fade_in .5s ease-in-out forwards;
  animation-delay: 1s;
}

body[data-loaded="true"] .hero .button, body[data-loaded="true"] .hero__down {
  opacity: 0;
  animation: homepage_fade_in .5s ease-in-out forwards;
  animation-delay: 4s;
}

@keyframes home_icon_enter {
  0% {
    stroke-dashoffset: 1300;
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

.call_to_action__overlay {
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100%;
}

.call_to_action__overlay svg {
  position: absolute;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
}

.call_to_action__overlay--back svg {
  top: 5%;
  right: 0;
}

@media (min-width: 768px) {
  .call_to_action__overlay--back svg {
    top: 13%;
  }
}

@media (min-width: 1024px) {
  .call_to_action__overlay--back svg {
    top: 25%;
  }
}

.call_to_action__image {
  min-height: 481px;
}

@media (min-width: 768px) {
  .call_to_action__image {
    min-height: auto;
  }
}

.call_to_action__overlays--mobile svg {
  position: absolute;
  height: auto;
  width: 100%;
  min-width: 1440px;
  bottom: 0;
  left: 0;
}

.call_to_action .button.button--outline.button--angle .button__link {
  transition: all .2s ease-in-out;
}

.call_to_action .button.button--outline.button--angle .button__link::after, .call_to_action .button.button--outline.button--angle .button__link::before {
  height: calc(100% - 3px);
}

.featurette.columns--1 {
  background: #808184;
}

.featurette.columns--1.featurette--overlay {
  margin-top: 150px;
}

.featurette__primary {
  z-index: 10;
}

.columns--1 .featurette__primary {
  background: linear-gradient(85deg, #009bdf, rgba(0, 155, 223, 0.57));
}

.featurette__primary .button.button--angle .button__link::after, .featurette__primary .button.button--angle .button__link::before {
  height: calc(100% - 3px);
}

.columns--2 .featurette__secondary {
  background: linear-gradient(45deg, #515152, rgba(137, 137, 138, 0.87));
}

.alignment--right.columns--2 .featurette__secondary {
  background: linear-gradient(135deg, rgba(242, 112, 98, 0.77), #f27062);
}

.featurette__overlay {
  padding-top: 150px;
  position: absolute;
  height: 100px;
  width: 100%;
  transform: translateZ(-1);
}

@media (min-width: 1024px) {
  .featurette__overlay {
    height: 500px;
  }
}

.featurette__overlay div {
  position: absolute;
  left: 0;
  top: 0;
  transform: skewY(15deg);
  height: 100%;
  width: 100%;
  background: #ECECEC;
  z-index: 10;
  z-index: -1;
}

.featurette picture {
  overflow: hidden;
  z-index: 1;
  height: 250px;
}

@media (min-width: 768px) {
  .featurette picture {
    height: 350px;
  }
}

@media (min-width: 1024px) {
  .featurette picture {
    height: 100%;
  }
}

@media (min-width: 1024px) {
  .single_post.appearance--dark {
    margin-bottom: 55px;
  }
}

.single_post__primary {
  position: relative;
}

.appearance--dark .single_post__primary {
  background: #009bdf;
}

@media (min-width: 1024px) {
  .appearance--dark .single_post__primary {
    background: transparent;
  }

  .appearance--dark .single_post__primary::after {
    position: absolute;
    background: #009bdf;
    display: block;
    content: '';
    height: 100%;
    width: 150%;
    top: 55px;
    left: 0;
    z-index: -1;
  }
}

.single-all-star .post__content {
  max-width: 60rem;
}

.home .header--static {
  position: absolute;
  top: 277px;
  opacity: 0;
  transition: none !important;
}

.home .header--static.header--light {
  padding-top: 2rem;
}

.home .header--static.header--light svg * {
  fill: #009bdf !important;
}

@media (min-width: 1024px) {
  .home .header--static {
    top: 500px;
  }
}

@media (min-width: 1024px) {
  .home .header--static .header__container {
    flex-direction: column;
    align-items: center;
  }

  .home .header--static .header__container .logo {
    padding: 0 0 1rem;
  }

  .home .header--static .header__container .logo::after {
    display: none;
  }

  @media (min-width: 1024px) {
    .home .header--static .header__container .logo svg {
      height: 60px;
      width: 231px;
    }
  }

  .home .header--static .header__container .logo svg * {
    fill: #FEFFFF;
  }
}

.home .header--static .header__menu_row {
  justify-content: center;
  margin-right: 0;
}

.home .header--static .header__menu_row .menu--social {
  display: none;
}

.home .overlay {
  width: 100vw;
  height: 100%;
  position: absolute;
}

.home .overlay #home-overlay-1 {
  transform: skewY(-15deg);
  height: 100%;
  width: 100%;
  background: #808184;
  opacity: .16;
  z-index: -1;
}

.home .overlay #home-overlay-2 {
  transform: skewY(15deg);
  height: 100%;
  width: 100%;
  background: linear-gradient(-45deg, #515152, rgba(137, 137, 138, 0.87));
  z-index: -1;
}

.home .overlay svg {
  max-width: 100%;
}

.home .overlay__wrapper {
  position: relative;
}

.home #home-overlay-3 {
  position: absolute;
  left: 0;
  top: 0;
  transform: skewY(15deg) translateY(-10%);
  width: 100vw;
  background: #ECECEC;
  z-index: 10;
  padding-top: 600px;
}

.home #home-overlay-4 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100vw;
}

@media (min-width: 1024px) {
  .home #home-overlay-4 {
    bottom: 250px;
  }
}

.home #home-overlay-4 div {
  transform: skewY(-15deg) translateY(-35%);
  background: #ECECEC;
  z-index: -1;
  padding-bottom: 600px;
}

body[data-loaded="true"] .header--static {
  animation: homepage_fade_in .5s ease-in-out forwards;
  animation-delay: 3s;
}

body[data-loaded="true"] .home {
  animation: homepage_fade_in .5s ease-in-out forwards;
}

@keyframes homepage_fade_in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

section:not(.series_featurette) + .series_featurette {
  margin-top: 221px;
}

@media (min-width: 1024px) {
  section:not(.series_featurette) + .series_featurette {
    margin-top: 309px;
  }
}

.series_featurette + .series_featurette {
  margin-top: 128px;
}

.series_featurette.appearance--primary .series_featurette__primary {
  background: linear-gradient(150deg, #009bdf, rgba(0, 155, 223, 0.57));
}

@media (min-width: 1024px) {
  .series_featurette.appearance--primary .series_featurette__primary {
    background: linear-gradient(85deg, #009bdf, rgba(0, 155, 223, 0.57));
  }
}

.series_featurette.appearance--secondary .series_featurette__primary {
  background: linear-gradient(150deg, #f27062, rgba(242, 112, 98, 0.77));
}

@media (min-width: 1024px) {
  .series_featurette.appearance--secondary .series_featurette__primary {
    background: linear-gradient(85deg, #f27062, rgba(242, 112, 98, 0.77));
  }
}

.series_featurette__image {
  overflow: hidden;
  height: 272px;
}

@media (min-width: 768px) {
  .series_featurette__image {
    height: 350px;
  }
}

@media (min-width: 1024px) {
  .series_featurette__image {
    height: 100%;
  }
}

.series_featurette__image img {
  height: 100%;
  object-fit: cover;
}

.series_featurette__primary {
  position: relative;
}

@media (min-width: 1024px) {
  .series_featurette__primary {
    padding-right: calc(50% - 369px - 6rem);
  }
}

.series_featurette__primary .button__link::after, .series_featurette__primary .button__link::before {
  height: calc(100% - 3px);
}

.series_featurette__icon {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 50%;
  height: 100%;
  max-height: 300px;
  max-width: 50%;
}

.series_featurette__icon picture {
  width: 100%;
  height: 100%;
}

.series_featurette__icon img {
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
  position: absolute;
  object-fit: contain;
}

@media (min-width: 768px) {
  .series_featurette__icon {
    max-height: 80%;
    max-width: none;
  }
}

.timeline_featurette__image {
  overflow: hidden;
  height: 400px;
}

@media (min-width: 768px) {
  .timeline_featurette__image {
    height: 800px;
  }
}

@media (min-width: 1024px) {
  .timeline_featurette__image {
    height: 550px;
  }
}

.timeline_featurette__caption {
  position: relative;
  z-index: 20;
}

.timeline_featurette__caption::after {
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  transform: translateZ(-300px) perspective(200px) rotateX(-5deg);
  transform-origin: 0% 100%;
  background: linear-gradient(85deg, #009bdf, rgba(0, 155, 223, 0.57));
  transition: all .4s ease-in-out;
}

.timeline_featurette .button.button--outline.button--angle .button__link {
  transition: all .2s ease-in-out;
}

.timeline_featurette .button.button--outline.button--angle .button__link::after, .timeline_featurette .button.button--outline.button--angle .button__link::before {
  height: calc(100% - 3px);
}

.timeline_featurette__images svg path {
  stroke-dasharray: 950;
  stroke-dashoffset: 950;
}

.timeline_featurette__images.animate-svg--in path {
  animation: timeline_icon_enter 3s linear forwards;
}

@keyframes timeline_icon_enter {
  from {
    stroke-dashoffset: 950;
  }

  to {
    stroke-dashoffset: 0;
  }
}
