@charset "UTF-8";
html,
body {
  height: 100%;
  position: relative;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

iframe {
  border: none;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
/*
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
	animation-duration: 0.01ms !important;
	animation-iteration-count: 1 !important;
	transition-duration: 0.01ms !important;
	scroll-behavior: auto !important;
  }
}
*/
@font-face {
  font-family: "Lato";
  src: url("/fonts/Lato-Regular.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Lato-Bold";
  src: url("/fonts/Lato-Bold.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Mono";
  src: url("/fonts/RobotoMono-Regular.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "Lato-Regular", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.hidden {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.breadcrumb {
  margin: 0 auto;
  max-width: 1000px;
}
@media (max-width: 1280px) {
  .breadcrumb {
    padding: 0 1rem;
  }
}
.breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 1px;
}
.breadcrumb__item {
  display: inline;
}

.button {
  display: block;
  padding: 0.75em 1.5em;
  margin-bottom: 1rem;
  margin-right: 1rem;
  transition: all 0.25s;
  text-align: center;
  background: #9a669a;
  color: #fff;
  text-decoration: none;
  font-style: normal;
  border: none;
}
@media screen and (min-width: 960px) {
  .button {
    display: inline-block;
  }
}
.button:link, .button:visited {
  background: #9a669a;
  color: #fff;
  text-decoration: none;
  font-style: normal;
}
.button:hover, .button:active {
  background: #ff0;
  color: #000;
  border-radius: 0.5rem;
  cursor: pointer;
}
.button--full-width {
  margin: 6rem 0 6rem;
  width: 100%;
  text-align: left;
  background-color: #1dac52 !important;
}
.button--full-width:hover {
  background: #ff0 !important;
}

.card {
  background: #fff;
  padding: 1.5rem 1rem;
  color: #000;
}
.card--home {
  background: rgba(83, 107, 103, 0.5);
  color: #fff;
}
.card--home a:link,
.card--home a:visited {
  color: #ff0;
}
.card--home a.button {
  color: #fff;
}
.card--home a.button:hover {
  color: #000;
}
.card--content:link, .card--content:visited {
  font-style: normal;
  color: #000;
  text-decoration: none;
}
.card--content:hover, .card--content:active {
  color: #7d340a;
}
.card--natural-error:link, .card--natural-error:visited {
  font-style: normal;
  color: #000;
  text-decoration: none;
}
.card--natural-error:hover, .card--natural-error:active {
  background: #1dac52;
  color: #ff0;
}
.card__container {
  padding: 0 1rem;
}
@media screen and (min-width: 960px) {
  .card__container {
    padding: 0;
  }
}
.card__image {
  margin-bottom: 1rem;
  width: 100%;
  max-width: 100%;
}
.card__arrow {
  font-size: 1.5rem;
  display: inline-block;
  margin-top: 0.25em;
  line-height: 1;
}

h1 {
  font-size: 1.75rem;
}

h2 {
  font-size: 1.25rem;
}

h3 {
  font-size: 1rem;
}

h4 {
  font-size: 0.8rem;
}

h5 {
  font-size: 0.7rem;
}

h6 {
  font-size: 0.5rem;
}

.itfss-title {
  margin-bottom: 2rem;
  max-width: 400px;
  width: 100%;
  font-size: 0;
}
.itfss-title::after {
  content: url(/images/itfss-wordmark.svg);
  display: block;
  margin-bottom: 2rem;
}
.itfss-title--white svg {
  fill: #fff;
}

a:link,
a:visited {
  color: #000;
  text-decoration: underline;
  font-style: italic;
}

a:hover,
a:active,
a:focus {
  color: #7d340a;
}

.listing-cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 3.1rem -0.625rem 0 -0.625rem;
  padding: 0;
}
@media (min-width: 1000px) {
  .listing-cards {
    margin: 3.1rem -1.25rem 0 -1.25rem;
  }
}
.listing-cards picture,
.listing-cards img {
  width: 100%;
  max-width: unset;
}
.listing-cards__item {
  width: calc(100% - 1.25rem);
  margin: 0 0.625rem 1.25rem 0.625rem;
  padding: 1rem;
  background-color: #fff;
}
@media (min-width: 500px) {
  .listing-cards__item {
    width: calc(50% - 1.25rem);
  }
}
@media (min-width: 850px) {
  .listing-cards__item {
    width: calc(33.33% - 1.25rem);
  }
}
@media (min-width: 1000px) {
  .listing-cards__item {
    width: calc(33.33% - 2.5rem);
    margin: 0 1.25rem 2.5rem 1.25rem;
  }
}
.listing-cards__item a {
  text-decoration: none;
  font-style: normal;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.listing-cards__item a:hover {
  color: #000;
}
.listing-cards__item--video .listing-cards__heading {
  text-indent: 1rem;
  position: relative;
}
.listing-cards__item--video .listing-cards__heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #000;
}
.listing-cards__item--error {
  background-color: #1dac52;
  font-family: "Roboto Mono", monospace;
}
.listing-cards__item--error a {
  color: #ff0;
}
.listing-cards__item--error a:hover {
  color: #ff0;
}
.listing-cards__item--error .listing-cards__button {
  background-color: #fff;
  color: #1dac52;
}
.listing-cards__item--error .listing-cards__intro {
  font-size: 15px;
}
.listing-cards__item--error .listing-cards__heading {
  font-size: 1.15rem;
}
.listing-cards__item--error .listing-cards__heading::before {
  border-color: transparent transparent transparent #ff0;
}
.listing-cards__heading {
  margin-top: 1.12rem;
  line-height: 1.2;
}
.listing-cards__intro {
  margin: 0.2rem 0 1.5rem;
}
.listing-cards__button {
  width: 100%;
  padding: 0.75em 1.5em;
  transition: all 0.25s;
  text-align: center;
  background: #9a669a;
  color: #fff;
  text-decoration: none;
  font-style: normal;
  border: none;
}
.listing-cards__button:hover, .listing-cards__button:active {
  background: #ff0;
  color: #000;
  border-radius: 0.5rem;
  cursor: pointer;
}

#nav-icon {
  display: block;
  width: 40px;
  height: 24px;
  position: relative;
  margin: 0 auto;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #000;
  border-radius: 4px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.page--with-bg #nav-icon span {
  background: #fff;
}

#nav-icon span:nth-child(1) {
  top: 0;
}

#nav-icon span:nth-child(2) {
  top: 12px;
}

#nav-icon span:nth-child(3) {
  top: 24px;
}

.active #nav-icon span {
  background: #fff;
}

.active #nav-icon span:nth-child(1) {
  top: 12px;
  transform: rotate(135deg);
}

.active #nav-icon span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.active #nav-icon span:nth-child(3) {
  top: 12px;
  transform: rotate(-135deg);
}

p {
  margin-bottom: 1em;
}
p.lead {
  font-size: 1.1em;
}

.split-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.callout {
  margin: 2rem 0;
  padding: 1rem;
  background: #cccc00;
  border-radius: 5px;
}
@media screen and (min-width: 640px) {
  .callout {
    padding-right: 40%;
  }
}

.content {
  margin: 2rem auto;
  max-width: 1000px;
  padding: 0 1rem;
}
.page--natural-error .content {
  padding: 0;
  max-width: 100%;
}
@media screen and (min-width: 1280px) {
  .content {
    padding: 0;
  }
}
.content--home {
  margin: 0 auto 4rem;
  width: 100%;
  max-width: 600px;
}
@media screen and (min-width: 960px) {
  .content--home {
    position: relative;
    margin: 4rem auto;
    transform: initial;
    top: initial;
    left: initial;
  }
}
.content--project header {
  max-width: 1000px;
  margin: 0 auto;
}
.content--project main {
  max-width: 1000px;
  margin: 2rem auto 4rem;
}
@media screen and (min-width: 2000px) {
  .content--project {
    max-width: 2000px;
    width: 100%;
    margin: 0 auto;
  }
  .content--project header {
    max-width: 2000px;
  }
  .content--project main {
    max-width: initial;
    width: auto;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    flex-wrap: wrap;
    flex: 1;
    align-items: flex-start;
    margin-top: 1rem;
  }
  .content--project .project__video {
    max-width: 50%;
    margin-top: 0;
  }
  .content--project .project__text {
    max-width: 50%;
    margin-right: 3rem;
  }
}

.footer {
  background-color: #000;
  color: #fff;
  padding: 2rem 1.5rem;
  width: 100%;
  font-size: 13px;
  left: 0;
  right: 0;
  top: 100vh;
  position: -webkit-sticky;
  position: sticky;
  text-align: center;
}
.footer__text {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .footer {
    text-align: left;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-end;
    flex: 1;
  }
}
.footer__logos {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex: 1;
  margin-top: 1rem;
}
@media screen and (min-width: 960px) {
  .footer__logos {
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
}
.footer__logos a {
  display: inline-flex;
  align-items: center;
  margin: 0 1rem 1.5rem;
  height: auto;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
@media screen and (min-width: 960px) {
  .footer__logos a {
    margin: 0 3rem 0 0;
  }
}
.footer__logos a.long {
  max-height: 60px;
  max-width: 250px;
}
.footer__logos img {
  display: inline-block;
  height: 40px;
}
.footer__links a {
  display: inline-block;
  margin: 0 1.5rem;
}
@media screen and (min-width: 960px) {
  .footer__links a {
    margin: 0 0 0 1.5rem;
  }
}
.footer a:link,
.footer a:visited {
  color: #fff;
}

.header {
  padding: 1rem;
}
.header__logo::before {
  content: url(/images/itfss-wordmark-black.svg);
  display: block;
  max-width: 120px;
}
.header__logo img {
  display: none;
}
@media screen and (min-width: 640px) {
  .header__logo {
    display: block;
    height: 40px;
    max-width: 600px;
  }
  .header__logo::before {
    content: url(/images/itfss-h-black.svg);
    display: block;
    max-width: 100%;
  }
}
.page--natural-error .header {
  background: transparent;
}

.header--natural-error {
  width: 100%;
  max-width: 1000px;
  margin: 2rem auto;
  background: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 1140px) {
  .header--natural-error {
    margin: 0 auto 3rem;
  }
}
.header--natural-error .header__logo {
  display: inline-block;
  height: auto;
  font-style: normal;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  color: #2349ee;
  padding-left: 1rem;
  max-width: 30%;
}
.header--natural-error .header__logo::before {
  content: "";
}
.header--natural-error .header__nav {
  background: #1dac52;
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .header--natural-error .header__nav {
    width: 300px;
  }
}
.header--natural-error .header__nav-container {
  display: flex;
  flex: 1;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.header--natural-error .header__nav-next {
  padding: 0 0.5rem;
  font-size: 2rem;
  font-style: normal;
  text-decoration: none;
}
@media screen and (min-width: 960px) {
  .header--natural-error .header__nav-next {
    padding: 0 1rem;
  }
}
.header--natural-error .header__nav .nav-trigger {
  display: block;
  width: 100%;
  text-align: left;
  padding: 1rem;
  background: #1dac52;
  border: none;
  color: #fff;
  position: relative;
  /*
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%3Ctitle%3Edown-arrow%3C%2Ftitle%3E%3Cg%20fill%3D%22%23000000%22%3E%3Cpath%20d%3D%22M10.293%2C3.293%2C6%2C7.586%2C1.707%2C3.293A1%2C1%2C0%2C0%2C0%2C.293%2C4.707l5%2C5a1%2C1%2C0%2C0%2C0%2C1.414%2C0l5-5a1%2C1%2C0%2C1%2C0-1.414-1.414Z%22%20fill%3D%22%23000000%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-size: .6em;
  background-position: calc(100% - 1.3em) center;
  background-repeat: no-repeat;
  */
}
.header--natural-error .header__nav .nav-trigger::after {
  content: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%3Ctitle%3Edown-arrow%3C%2Ftitle%3E%3Cg%20fill%3D%22%23000000%22%3E%3Cpath%20d%3D%22M10.293%2C3.293%2C6%2C7.586%2C1.707%2C3.293A1%2C1%2C0%2C0%2C0%2C.293%2C4.707l5%2C5a1%2C1%2C0%2C0%2C0%2C1.414%2C0l5-5a1%2C1%2C0%2C1%2C0-1.414-1.414Z%22%20fill%3D%22%23000000%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  float: right;
}
.header--natural-error .header__nav .nav-trigger:hover {
  cursor: pointer;
}
.header--natural-error .header__nav .nav-trigger input {
  display: none;
}
.header--natural-error .header__nav .nav-trigger input:checked + ul {
  display: block;
}
.header--natural-error .header__nav .nav-items {
  display: none;
  position: absolute;
  background: #1dac52;
  list-style: none;
  padding: 0 1rem 1rem;
  left: 0;
  width: 100%;
  z-index: 90;
}
.header--natural-error .header__nav .nav-item {
  display: block;
  padding: 0.5em 0;
}
.header--natural-error .header__nav .nav-link:link,
.header--natural-error .header__nav .nav-link:visited {
  font-style: normal;
  text-decoration: none;
  color: #fff;
}
.header--natural-error .header__nav .nav-link:hover,
.header--natural-error .header__nav .nav-link:active {
  color: #ff0;
}
.header--natural-error .header__nav .nav-link--active:link,
.header--natural-error .header__nav .nav-link--active:visited,
.header--natural-error .header__nav .nav-link--active:hover,
.header--natural-error .header__nav .nav-link--active:active {
  color: #ff0;
}

.image--centered {
  display: block;
  margin: 0 auto;
  max-height: 100%;
}
.image--absolute-centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.main-nav {
  position: fixed;
  display: block;
  width: 100%;
  top: 0;
  left: 120%;
  right: 0;
  bottom: 0;
  height: 100%;
  padding: 1rem 0 0;
  background: url(/images/home-bg.jpg) center center no-repeat rgba(0, 62, 50, 0.95);
  background-size: cover;
  z-index: 97;
  transition: left 0.25s ease-out;
  font-family: "Lato-Regular", sans-serif;
}
.page--home .main-nav {
  background: rgba(0, 62, 50, 0.95);
}
.main-nav.open {
  display: flex;
  box-shadow: -10px 0 200px 30px rgba(0, 0, 0, 0.8);
  left: 20%;
}
@media screen and (min-width: 960px) {
  .main-nav.open {
    left: 70%;
  }
}
.main-nav__trigger {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 99;
  background: transparent;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  padding: 0;
  color: #000;
}
.main-nav__trigger span {
  display: none;
}
.main-nav__trigger:hover, .main-nav__trigger.active {
  opacity: 1;
  background: transparent;
  color: #fff;
}
.main-nav .nav-items {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}
.main-nav .nav-items:first-child::before {
  content: url(/images/itfss-wordmark.svg);
  width: 100px;
  display: block;
  max-width: 100%;
  color: #fff;
  margin-bottom: 1.5rem;
}
.main-nav .nav-items:hover {
  display: flex;
  cursor: pointer;
}
.main-nav .nav-items .nav-items {
  display: none;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  width: 100%;
  max-width: 100%;
}
.main-nav .nav-item {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0.5rem 0;
  position: relative;
}
.main-nav .nav-item:hover .nav-items {
  display: flex;
}
.main-nav .nav-link {
  white-space: nowrap;
  color: #fff;
  text-decoration: none;
  font-style: normal;
}
.main-nav .nav-link--active, .main-nav .nav-link:hover, .main-nav .nav-link:active, .main-nav .nav-link:focus {
  color: #ff0;
}

.modal {
  box-sizing: border-box;
  background: #fff;
  color: #000;
  padding: 2rem;
  max-width: 90%;
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 90;
  transform: translate3d(-50%, -50%, 0);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}
@media screen and (min-width: 960px) {
  .modal {
    max-width: 85%;
    width: auto;
  }
}
.modal--centred {
  text-align: center;
}
.modal-open {
  position: fixed;
  overflow: hidden;
  width: 100%;
}
.modal-open main {
  opacity: 0.2;
}
.modal__title {
  font-family: "Lato-Bold", sans-serif;
  font-weight: 100;
  text-transform: uppercase;
  color: #fff;
  margin-top: 0;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 99;
}

.page__main {
  position: relative;
  margin: 0;
}
@media screen and (min-width: 960px) {
  .page__main {
    height: auto;
  }
  .page--home .page__main {
    height: auto;
  }
}
.page--project .page__main {
  height: auto;
}
.page--home {
  background-image: url(/images/home-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-color: #003e32;
  height: 100%;
}
.page--tint-bg {
  background-image: url(/images/home-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-color: #003e32;
}
.page--tint-bg::after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: -10;
}
.page--natural-error {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-color: #9a669a;
  height: 100%;
  font-family: "Roboto Mono", monospace;
}

.project__cards {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
@media screen and (min-width: 640px) {
  .project__cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 960px) {
  .project__cards {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (min-width: 1280px) {
  .project__cards {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.project__about {
  margin: 2rem 0;
}
.project__image {
  content-visibility: auto;
  margin: 2rem 0;
  width: 100%;
  max-width: unset;
  display: block;
}
.project__image img {
  width: 100%;
  max-width: unset;
  display: block;
}
.project__caption {
  margin-top: -1.5rem;
  font-size: 13px;
}

.ticker-container {
  position: relative;
  max-width: 1000px;
  margin-top: 3rem;
  overflow: hidden;
  height: 4rem;
  background-color: yellow;
  padding-left: 100%;
  box-sizing: content-box;
}

.ticker {
  display: inline-block;
  height: 4rem;
  line-height: 4rem;
  white-space: nowrap;
  margin: 0;
  padding: 0 200% 0 0;
  list-style-type: disc !important;
  box-sizing: content-box;
  -webkit-animation: ticker 50s linear infinite;
          animation: ticker 50s linear infinite;
  perspective: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.ticker__item {
  display: inline-block;
  padding: 0 2rem;
  font-size: 1.2rem;
  color: #000;
}
.ticker__item::before {
  margin-right: 0.5rem;
  content: "•";
  transform: translateY(-0.75em);
}
.ticker__item:first-child::before {
  content: "";
}
.ticker__item:last-child {
  padding-right: 100vw;
}
@media screen and (min-width: 960px) {
  .ticker__item {
    font-size: 1.2rem;
  }
}

.video {
  max-width: 100%;
  margin: 2rem 0;
  flex: 1;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate--fade-in {
  opacity: 0;
  -webkit-animation: fadeIn 1s;
          animation: fadeIn 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.animate--fade-in-delay-1 {
  opacity: 0;
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.animate--fade-in-delay-2 {
  opacity: 0;
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.animate--fade-in-delay-3 {
  opacity: 0;
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.animate--fade-in-delay-4 {
  opacity: 0;
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.animate--fade-in-delay-5 {
  opacity: 0;
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.animate--fade-in-delay-6 {
  opacity: 0;
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.animate--fade-in-delay-7 {
  opacity: 0;
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.animate--fade-in-delay-8 {
  opacity: 0;
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.animate--fade-in-delay-9 {
  opacity: 0;
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.animate--fade-in-delay-10 {
  opacity: 0;
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.animate--fade-in-delay-11 {
  opacity: 0;
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.animate--fade-in-delay-12 {
  opacity: 0;
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate--fade-out {
  -webkit-animation: fadeout 1s;
          animation: fadeout 1s;
}

@-webkit-keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

/*# sourceMappingURL=style.css.map*/
