@font-face {
  font-family: 'intro';
  src: url("../fonts/introdemo-blackcaps-webfont.woff2") format("woff2"), url("../fonts/introdemo-blackcaps-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

.accent-red {
  --accentColor: #D15751; }

.accent-orange {
  --accentColor: #FF8E55; }

.accent-yellow {
  --accentColor: #F3BE13; }

.accent-gold {
  --accentColor: #E0D5A6; }

.accent-mint {
  --accentColor: #8BEFC4; }

.accent-forest {
  --accentColor: #61B794; }

.accent-aqua {
  --accentColor: #80F4FF; }

.accent-blue {
  --accentColor: #3D8FBA; }

.accent-powder {
  --accentColor: #E6FCFA; }

.accent-ivory {
  --accentColor: #F6F3E6; }

.accent-rust {
  --accentColor: #E0B4A6; }

.accent-light-gray {
  --accentColor: #F6F7F9; }

.accent-med-gray {
  --accentColor: #DEDEDE; }

.accent-black {
  --accentColor: #000000; }

.accent-white {
  --accentColor: #ffffff; }

.fixed {
  position: fixed;
  width: 100vw;
  overflow-y: scroll; }
  @media screen and (min-width: 0\0) {
    .fixed {
      position: relative;
      width: revert;
      overflow-x: hidden; } }

.ie-show {
  display: none; }

@media screen and (min-width: 0\0) {
  .ie-hide {
    display: none !important; }
  .ie-show {
    display: block; } }

:root {
  --accentColor: rgba(0, 0, 0, 0.6); }

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

html {
  min-width: 380px;
  margin: 0;
  padding: 0; }

body {
  min-width: 380px;
  margin: 0;
  padding: 0;
  font-family: 'clone-rounded-latin', Helvetica, Arial, sans-serif; }
  @media (max-width: 1024px) {
    body {
      font-size: 14px; } }

section {
  max-width: 100vw;
  padding: 100px 0;
  overflow: hidden; }

.divider {
  width: 100%;
  height: 480px;
  background-size: cover;
  background-position: center;
  background-color: #F6F7F9; }
  @media (max-width: 1024px) {
    .divider {
      height: 360px; } }
  @media (max-width: 768px) {
    .divider {
      height: 240px; } }

#divider-1 {
  background-image: url("../media/divider-1.png"); }

#divider-2 {
  background-image: url("../media/divider-2.png"); }

#divider-3 {
  background-image: url("../media/divider-3.png"); }

#divider-4 {
  background-image: url("../media/divider-4.png"); }

.centered-container {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 100px;
  padding-right: 100px; }
  @media (max-width: 1024px) {
    .centered-container {
      padding-left: 72px;
      padding-right: 72px; } }
  @media (max-width: 768px) {
    .centered-container {
      padding-left: 50px;
      padding-right: 50px; } }

.column-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row; }
  .column-container.content-left > *:first-child {
    width: calc(55% - 40px); }
  .column-container.content-left > *:last-child {
    width: calc(45% - 40px); }
  .column-container.content-left .image-container {
    left: 0; }
  .column-container.content-right > *:first-child {
    width: calc(45% - 40px); }
  .column-container.content-right > *:last-child {
    width: calc(55% - 40px); }
  .column-container.content-right .image-container {
    right: 0; }
  .column-container > * {
    -ms-grid-row: 1;
    grid-row: 1;
    position: relative; }
    .column-container > *:not(:last-child) {
      margin-right: 80px; }
  .column-container .image-container {
    position: absolute;
    top: 0;
    bottom: 0;
    min-height: 100%;
    z-index: -1; }
    .column-container .image-container img, .column-container .image-container video {
      height: 100%; }
  @media (max-width: 1024px) {
    .column-container {
      display: block; }
      .column-container > *:not(:last-child) {
        margin-bottom: 80px; }
      .column-container > *:first-child, .column-container.content-left > *:first-child, .column-container.content-right > *:first-child {
        width: 100%; }
      .column-container > *:last-child, .column-container.content-left > *:last-child, .column-container.content-right > *:last-child {
        width: 100%; } }

.accent-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .accent-container .content {
    width: 60%;
    padding-right: 80px;
    z-index: 2; }
    .accent-container .content:last-child {
      padding-right: 0; }
    .accent-container .content + .accent img {
      right: auto;
      left: 0; }
  .accent-container .accent {
    position: relative;
    width: 40%; }
    .accent-container .accent img {
      position: absolute;
      top: 0;
      right: 0;
      height: 100%; }
    .accent-container .accent + .content {
      padding-left: 80px; }
  @media (max-width: 768px) {
    .accent-container .content {
      width: 100%;
      padding-right: 0;
      padding-top: 200px; }
      .accent-container .content + .accent img {
        left: 0;
        right: 0; }
    .accent-container .accent {
      position: absolute;
      top: 0;
      left: 24px;
      right: 24px;
      height: 60%;
      width: unset; }
      .accent-container .accent + .content {
        padding-left: 0; }
      .accent-container .accent img {
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        opacity: .25; } }

.grid-container {
  padding: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[6];
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: calc(100vw / 6);
  --accentColor: transparent; }
  .grid-container > * {
    position: relative; }
  .grid-container .color-cell {
    background-color: var(--accentColor); }
  .grid-container .image-cell {
    background-size: cover;
    background-position: center; }
    .grid-container .image-cell:after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: var(--accentColor);
      mix-blend-mode: multiply; }
  .grid-container .text-cell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .grid-container .text-cell.top {
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start; }
    .grid-container .text-cell.bottom {
      -webkit-box-align: end;
      -ms-flex-align: end;
      align-items: flex-end; }
    .grid-container .text-cell.left {
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start; }
    .grid-container .text-cell.right {
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end; }
    .grid-container .text-cell p {
      padding: 0 25px 4px 25px;
      background: black;
      color: white;
      font-size: 22px;
      text-transform: uppercase;
      white-space: nowrap; }
  .grid-container .quarter-cell {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 50%;
    background-color: var(--accentColor); }
    .grid-container .quarter-cell.bottom {
      top: 50%; }
    .grid-container .quarter-cell.right {
      left: 50%; }
  @media (max-width: 1024px) {
    .grid-container .text-cell p {
      padding: 0 15px 3px 15px;
      font-size: 14px; } }
  @media (max-width: 768px) {
    .grid-container .text-cell p {
      padding: 0 10px 2px 10px;
      font-size: 12px; } }

.align-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end; }

h1 {
  margin: 0;
  font-family: 'intro', Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 4.5em;
  text-transform: uppercase; }

h2 {
  margin: 0;
  font-family: 'intro', Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 3em;
  text-transform: uppercase; }

h3 {
  margin-bottom: 48px;
  font-family: 'clone-rounded-latin', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.25em;
  text-transform: uppercase; }

p {
  margin: 0;
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.5em; }

hr {
  width: 100%;
  height: 8px;
  margin: 40px 0;
  border: none;
  border-left: solid 14px #DEDEDE;
  border-left: solid 14px var(--accentColor); }

.subheading {
  color: black;
  font-size: 2em; }

.alert-message {
  font-size: 12px;
  color: #D15751;
  color: var(--accentColor); }

@media (max-width: 768px) {
  h1 {
    font-size: 3em; }
  h2 {
    font-size: 2em; }
  .subheading {
    font-size: 1.5em; }
  p {
    font-size: 1.25em; } }

button {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  font-family: 'clone-rounded-latin', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer; }
  button:disabled {
    cursor: default; }

.btn--basic {
  padding: 10px 35px 12px 35px;
  border: none;
  background-color: #DEDEDE;
  background-color: var(--accentColor);
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--bgAngle)), color-stop(25%, transparent), color-stop(25%, black), color-stop(75%, black), color-stop(75%, transparent));
  background-image: -webkit-linear-gradient(var(--bgAngle), transparent 25%, black 25%, black 75%, transparent 75%);
  background-image: -o-linear-gradient(var(--bgAngle), transparent 25%, black 25%, black 75%, transparent 75%);
  background-image: linear-gradient(var(--bgAngle), transparent 25%, black 25%, black 75%, transparent 75%);
  background-size: 0% 100%;
  background-position: center;
  background-repeat: no-repeat;
  color: black;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  --bgAngle: -90deg; }
  .btn--basic:hover, .btn--basic:focus {
    color: white;
    background-color: black;
    background-color: var(--accentColor);
    background-size: 250% 100%;
    --bgAngle: -60deg; }

form {
  position: relative; }

input, textarea, select {
  position: relative;
  width: 100%;
  padding: 10px 14px;
  border: none;
  font-family: 'clone-rounded-latin', Helvetica, Arial, sans-serif;
  font-size: 14px;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #DEDEDE), color-stop(50%, #F6F7F9));
  background-image: -webkit-linear-gradient(left, #DEDEDE 50%, #F6F7F9 50%);
  background-image: -o-linear-gradient(left, #DEDEDE 50%, #F6F7F9 50%);
  background-image: linear-gradient(to right, #DEDEDE 50%, #F6F7F9 50%);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, var(--accentColor)), color-stop(50%, #F6F7F9));
  background-image: -webkit-linear-gradient(left, var(--accentColor) 50%, #F6F7F9 50%);
  background-image: -o-linear-gradient(left, var(--accentColor) 50%, #F6F7F9 50%);
  background-image: linear-gradient(to right, var(--accentColor) 50%, #F6F7F9 50%);
  background-size: 200% 100%;
  background-position: 100% 0%;
  border: solid 1px #DEDEDE;
  border: solid 1px var(--accentColor);
  border-radius: 0px;
  -webkit-transition: all .6s ease;
  -o-transition: all .6s ease;
  transition: all .6s ease; }
  input:focus, textarea:focus, select:focus {
    outline: none;
    background-position: 0% 0%; }

textarea {
  resize: none; }

label {
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 2; }
  label.required:after {
    content: '*'; }

.form-group:not(:last-child) {
  margin-bottom: 16px; }

.form-group.stretch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  .form-group.stretch textarea {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1; }

.form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row; }
  .form__row > * {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1; }
    .form__row > *:not(:last-child) {
      margin-right: 24px; }

.form__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 24px; }
  .form__columns > * {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1; }
    .form__columns > *:not(:last-child) {
      margin-right: 24px; }
  @media (max-width: 768px) {
    .form__columns {
      display: block; }
      .form__columns > *:not(:last-child) {
        margin-bottom: 16px; } }

.form__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .form__actions > *:not(:last-child) {
    margin-right: 20px; }

.form__status {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #DEDEDE;
  background: var(--accentColor);
  overflow: hidden;
  -webkit-animation: form-status-open .3s ease-out forwards;
  animation: form-status-open .3s ease-out forwards;
  -webkit-transition: background .3s ease;
  -o-transition: background .3s ease;
  transition: background .3s ease; }
  .form__status.success {
    bottom: 0;
    background: #61B794;
    -webkit-animation: form-status-close .3s .75s ease-in forwards;
    animation: form-status-close .3s .75s ease-in forwards; }
  .form__status.error {
    bottom: 0;
    background: #D15751;
    -webkit-animation: form-status-close .3s .75s ease-in forwards;
    animation: form-status-close .3s .75s ease-in forwards; }
  .form__status p {
    color: black; }

@-webkit-keyframes form-status-open {
  0% {
    bottom: 100%; }
  100% {
    bottom: 0%; } }

@keyframes form-status-open {
  0% {
    bottom: 100%; }
  100% {
    bottom: 0%; } }

@-webkit-keyframes form-status-close {
  0% {
    top: 0%; }
  100% {
    top: 100%; } }

@keyframes form-status-close {
  0% {
    top: 0%; }
  100% {
    top: 100%; } }

.positions-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 0;
  padding: 0;
  list-style-type: none; }
  .positions-list li {
    display: block;
    font-weight: bold; }
    .positions-list li:not(:last-child) {
      margin-bottom: 24px; }
    .positions-list li button {
      margin: 0;
      padding: 0;
      overflow: visible;
      z-index: 1; }
      .positions-list li button:before {
        content: '';
        position: absolute;
        top: 100%;
        bottom: -8px;
        left: 0;
        right: 0;
        background-color: #E0B4A6;
        background-color: var(--accentColor);
        -webkit-transition: all .2s ease;
        -o-transition: all .2s ease;
        transition: all .2s ease;
        z-index: -1; }
      .positions-list li button:hover, .positions-list li button:focus {
        outline: none; }
        .positions-list li button:hover:before, .positions-list li button:focus:before {
          top: -6px; }

.header__container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  pointer-events: all; }

.header.collapsed .header__container, .collapsed.header--fixed .header__container {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%); }

.primary-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 60px 0;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 100px;
  padding-right: 100px; }
  @media (max-width: 1024px) {
    .primary-nav {
      padding-left: 72px;
      padding-right: 72px; } }
  @media (max-width: 768px) {
    .primary-nav {
      padding-left: 50px;
      padding-right: 50px; } }
  .primary-nav img {
    padding: 15px;
    max-width: 200px;
    border: solid 2px #F3BE13; }
  .primary-nav__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style-type: none; }
    .primary-nav__links li {
      margin: 0 15px; }
      .primary-nav__links li:last-child {
        margin-right: 0; }
      .primary-nav__links li a {
        position: relative;
        padding: 10px 0;
        color: black;
        font-family: 'intro', Helvetica, Arial, sans-serif;
        font-size: 20px;
        text-decoration: none;
        text-transform: uppercase; }
        .primary-nav__links li a:after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          right: calc(100% - 14px);
          height: 8px;
          background-color: #DEDEDE;
          background-color: var(--accentColor);
          -webkit-transition-property: left, right;
          -o-transition-property: left, right;
          transition-property: left, right;
          -webkit-transition-duration: .3s, .3s;
          -o-transition-duration: .3s, .3s;
          transition-duration: .3s, .3s;
          -webkit-transition-delay: 0s, .1s;
          -o-transition-delay: 0s, .1s;
          transition-delay: 0s, .1s;
          -webkit-transition-timing-function: ease;
          -o-transition-timing-function: ease;
          transition-timing-function: ease; }
        .primary-nav__links li a:hover:after, .primary-nav__links li a:focus:after {
          left: calc(100% - 14px);
          right: 0%;
          -webkit-transition-delay: .1s, 0s;
          -o-transition-delay: .1s, 0s;
          transition-delay: .1s, 0s; }
      .primary-nav__links li:nth-child(1) a:after {
        background-color: #FF8E55; }
      .primary-nav__links li:nth-child(2) a:after {
        background-color: #3D8FBA; }
      .primary-nav__links li:nth-child(3) a:after {
        background-color: #E0B4A6; }
      .primary-nav__links li:nth-child(4) a:after {
        background-color: #F3BE13; }
  @media (max-width: 1024px) {
    .primary-nav {
      padding-top: 30px;
      padding-bottom: 30px; }
      .primary-nav img {
        max-width: 100px; }
      .primary-nav__links li {
        margin: 0 10px; }
        .primary-nav__links li a {
          font-size: 16px; }
          .primary-nav__links li a:after {
            height: 6px; } }
  @media (max-width: 768px) {
    .primary-nav {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; }
      .primary-nav img {
        margin-bottom: 20px; } }

.header--fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 1000; }
  .header--fixed .header__container {
    background: white; }
  .header--fixed .primary-nav {
    padding-top: 20px;
    padding-bottom: 20px; }

.footer {
  position: relative;
  padding-bottom: 200px;
  background: black; }
  .footer p {
    margin-top: 24px;
    color: white;
    font-size: 18px; }

.loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  overflow: hidden;
  z-index: 9999999; }
  .loader.collapsed {
    pointer-events: none; }
    .loader.collapsed .logo {
      opacity: 0; }
    .loader.collapsed .loader__container {
      height: 0px; }
      .loader.collapsed .loader__container .stripe {
        height: 0px; }
  .loader .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 300px;
    padding: 20px;
    background: white;
    border: solid 2px #F3BE13;
    z-index: 99;
    -webkit-transition: opacity .3s linear;
    -o-transition: opacity .3s linear;
    transition: opacity .3s linear; }

.loader__container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: #F6F7F9;
  background-image: url("../media/stripes.gif");
  white-space: nowrap;
  -webkit-transition: height 1s ease-out;
  -o-transition: height 1s ease-out;
  transition: height 1s ease-out;
  --animDistance: 100px; }
  .loader__container.animate .stripe:nth-child(100n + 1) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.37s ease-out;
    -o-transition: height 1s 0.37s ease-out;
    transition: height 1s 0.37s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 2) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.82s ease-out;
    -o-transition: height 1s 0.82s ease-out;
    transition: height 1s 0.82s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 3) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.68s ease-out;
    -o-transition: height 1s 0.68s ease-out;
    transition: height 1s 0.68s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 4) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.46s ease-out;
    -o-transition: height 1s 0.46s ease-out;
    transition: height 1s 0.46s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 5) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.32s ease-out;
    -o-transition: height 1s 0.32s ease-out;
    transition: height 1s 0.32s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 6) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.7s ease-out;
    -o-transition: height 1s 0.7s ease-out;
    transition: height 1s 0.7s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 7) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.5s ease-out;
    -o-transition: height 1s 0.5s ease-out;
    transition: height 1s 0.5s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 8) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.52s ease-out;
    -o-transition: height 1s 0.52s ease-out;
    transition: height 1s 0.52s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 9) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.7s ease-out;
    -o-transition: height 1s 0.7s ease-out;
    transition: height 1s 0.7s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 10) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.29s ease-out;
    -o-transition: height 1s 0.29s ease-out;
    transition: height 1s 0.29s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 11) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.53s ease-out;
    -o-transition: height 1s 0.53s ease-out;
    transition: height 1s 0.53s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 12) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.4s ease-out;
    -o-transition: height 1s 0.4s ease-out;
    transition: height 1s 0.4s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 13) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.98s ease-out;
    -o-transition: height 1s 0.98s ease-out;
    transition: height 1s 0.98s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 14) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.26s ease-out;
    -o-transition: height 1s 0.26s ease-out;
    transition: height 1s 0.26s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 15) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.75s ease-out;
    -o-transition: height 1s 0.75s ease-out;
    transition: height 1s 0.75s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 16) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.66s ease-out;
    -o-transition: height 1s 0.66s ease-out;
    transition: height 1s 0.66s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 17) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.54s ease-out;
    -o-transition: height 1s 0.54s ease-out;
    transition: height 1s 0.54s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 18) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 1s ease-out;
    -o-transition: height 1s 1s ease-out;
    transition: height 1s 1s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 19) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.91s ease-out;
    -o-transition: height 1s 0.91s ease-out;
    transition: height 1s 0.91s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 20) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.07s ease-out;
    -o-transition: height 1s 0.07s ease-out;
    transition: height 1s 0.07s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 21) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.26s ease-out;
    -o-transition: height 1s 0.26s ease-out;
    transition: height 1s 0.26s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 22) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.52s ease-out;
    -o-transition: height 1s 0.52s ease-out;
    transition: height 1s 0.52s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 23) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.83s ease-out;
    -o-transition: height 1s 0.83s ease-out;
    transition: height 1s 0.83s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 24) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.76s ease-out;
    -o-transition: height 1s 0.76s ease-out;
    transition: height 1s 0.76s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 25) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.91s ease-out;
    -o-transition: height 1s 0.91s ease-out;
    transition: height 1s 0.91s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 26) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.7s ease-out;
    -o-transition: height 1s 0.7s ease-out;
    transition: height 1s 0.7s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 27) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.95s ease-out;
    -o-transition: height 1s 0.95s ease-out;
    transition: height 1s 0.95s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 28) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.24s ease-out;
    -o-transition: height 1s 0.24s ease-out;
    transition: height 1s 0.24s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 29) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.35s ease-out;
    -o-transition: height 1s 0.35s ease-out;
    transition: height 1s 0.35s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 30) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.37s ease-out;
    -o-transition: height 1s 0.37s ease-out;
    transition: height 1s 0.37s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 31) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.07s ease-out;
    -o-transition: height 1s 0.07s ease-out;
    transition: height 1s 0.07s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 32) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.71s ease-out;
    -o-transition: height 1s 0.71s ease-out;
    transition: height 1s 0.71s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 33) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.87s ease-out;
    -o-transition: height 1s 0.87s ease-out;
    transition: height 1s 0.87s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 34) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.45s ease-out;
    -o-transition: height 1s 0.45s ease-out;
    transition: height 1s 0.45s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 35) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.03s ease-out;
    -o-transition: height 1s 0.03s ease-out;
    transition: height 1s 0.03s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 36) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.91s ease-out;
    -o-transition: height 1s 0.91s ease-out;
    transition: height 1s 0.91s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 37) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.62s ease-out;
    -o-transition: height 1s 0.62s ease-out;
    transition: height 1s 0.62s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 38) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.9s ease-out;
    -o-transition: height 1s 0.9s ease-out;
    transition: height 1s 0.9s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 39) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.72s ease-out;
    -o-transition: height 1s 0.72s ease-out;
    transition: height 1s 0.72s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 40) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.86s ease-out;
    -o-transition: height 1s 0.86s ease-out;
    transition: height 1s 0.86s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 41) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.05s ease-out;
    -o-transition: height 1s 0.05s ease-out;
    transition: height 1s 0.05s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 42) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.73s ease-out;
    -o-transition: height 1s 0.73s ease-out;
    transition: height 1s 0.73s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 43) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.23s ease-out;
    -o-transition: height 1s 0.23s ease-out;
    transition: height 1s 0.23s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 44) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.08s ease-out;
    -o-transition: height 1s 0.08s ease-out;
    transition: height 1s 0.08s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 45) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.08s ease-out;
    -o-transition: height 1s 0.08s ease-out;
    transition: height 1s 0.08s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 46) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.16s ease-out;
    -o-transition: height 1s 0.16s ease-out;
    transition: height 1s 0.16s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 47) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.06s ease-out;
    -o-transition: height 1s 0.06s ease-out;
    transition: height 1s 0.06s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 48) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.84s ease-out;
    -o-transition: height 1s 0.84s ease-out;
    transition: height 1s 0.84s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 49) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.94s ease-out;
    -o-transition: height 1s 0.94s ease-out;
    transition: height 1s 0.94s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 50) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.17s ease-out;
    -o-transition: height 1s 0.17s ease-out;
    transition: height 1s 0.17s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 51) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.61s ease-out;
    -o-transition: height 1s 0.61s ease-out;
    transition: height 1s 0.61s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 52) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.97s ease-out;
    -o-transition: height 1s 0.97s ease-out;
    transition: height 1s 0.97s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 53) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.87s ease-out;
    -o-transition: height 1s 0.87s ease-out;
    transition: height 1s 0.87s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 54) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.36s ease-out;
    -o-transition: height 1s 0.36s ease-out;
    transition: height 1s 0.36s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 55) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.18s ease-out;
    -o-transition: height 1s 0.18s ease-out;
    transition: height 1s 0.18s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 56) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.66s ease-out;
    -o-transition: height 1s 0.66s ease-out;
    transition: height 1s 0.66s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 57) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.57s ease-out;
    -o-transition: height 1s 0.57s ease-out;
    transition: height 1s 0.57s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 58) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.69s ease-out;
    -o-transition: height 1s 0.69s ease-out;
    transition: height 1s 0.69s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 59) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.02s ease-out;
    -o-transition: height 1s 0.02s ease-out;
    transition: height 1s 0.02s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 60) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.66s ease-out;
    -o-transition: height 1s 0.66s ease-out;
    transition: height 1s 0.66s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 61) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.26s ease-out;
    -o-transition: height 1s 0.26s ease-out;
    transition: height 1s 0.26s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 62) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.49s ease-out;
    -o-transition: height 1s 0.49s ease-out;
    transition: height 1s 0.49s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 63) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.12s ease-out;
    -o-transition: height 1s 0.12s ease-out;
    transition: height 1s 0.12s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 64) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.22s ease-out;
    -o-transition: height 1s 0.22s ease-out;
    transition: height 1s 0.22s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 65) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.41s ease-out;
    -o-transition: height 1s 0.41s ease-out;
    transition: height 1s 0.41s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 66) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.26s ease-out;
    -o-transition: height 1s 0.26s ease-out;
    transition: height 1s 0.26s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 67) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.03s ease-out;
    -o-transition: height 1s 0.03s ease-out;
    transition: height 1s 0.03s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 68) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.08s ease-out;
    -o-transition: height 1s 0.08s ease-out;
    transition: height 1s 0.08s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 69) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.87s ease-out;
    -o-transition: height 1s 0.87s ease-out;
    transition: height 1s 0.87s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 70) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.87s ease-out;
    -o-transition: height 1s 0.87s ease-out;
    transition: height 1s 0.87s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 71) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.62s ease-out;
    -o-transition: height 1s 0.62s ease-out;
    transition: height 1s 0.62s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 72) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.12s ease-out;
    -o-transition: height 1s 0.12s ease-out;
    transition: height 1s 0.12s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 73) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.37s ease-out;
    -o-transition: height 1s 0.37s ease-out;
    transition: height 1s 0.37s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 74) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.72s ease-out;
    -o-transition: height 1s 0.72s ease-out;
    transition: height 1s 0.72s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 75) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.47s ease-out;
    -o-transition: height 1s 0.47s ease-out;
    transition: height 1s 0.47s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 76) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.23s ease-out;
    -o-transition: height 1s 0.23s ease-out;
    transition: height 1s 0.23s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 77) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.42s ease-out;
    -o-transition: height 1s 0.42s ease-out;
    transition: height 1s 0.42s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 78) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.23s ease-out;
    -o-transition: height 1s 0.23s ease-out;
    transition: height 1s 0.23s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 79) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.37s ease-out;
    -o-transition: height 1s 0.37s ease-out;
    transition: height 1s 0.37s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 80) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 1s ease-out;
    -o-transition: height 1s 1s ease-out;
    transition: height 1s 1s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 81) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.14s ease-out;
    -o-transition: height 1s 0.14s ease-out;
    transition: height 1s 0.14s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 82) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.52s ease-out;
    -o-transition: height 1s 0.52s ease-out;
    transition: height 1s 0.52s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 83) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.9s ease-out;
    -o-transition: height 1s 0.9s ease-out;
    transition: height 1s 0.9s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 84) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.15s ease-out;
    -o-transition: height 1s 0.15s ease-out;
    transition: height 1s 0.15s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 85) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.69s ease-out;
    -o-transition: height 1s 0.69s ease-out;
    transition: height 1s 0.69s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 86) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.9s ease-out;
    -o-transition: height 1s 0.9s ease-out;
    transition: height 1s 0.9s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 87) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.18s ease-out;
    -o-transition: height 1s 0.18s ease-out;
    transition: height 1s 0.18s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 88) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.79s ease-out;
    -o-transition: height 1s 0.79s ease-out;
    transition: height 1s 0.79s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 89) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.79s ease-out;
    -o-transition: height 1s 0.79s ease-out;
    transition: height 1s 0.79s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 90) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.2s ease-out;
    -o-transition: height 1s 0.2s ease-out;
    transition: height 1s 0.2s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 91) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.06s ease-out;
    -o-transition: height 1s 0.06s ease-out;
    transition: height 1s 0.06s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 92) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.64s ease-out;
    -o-transition: height 1s 0.64s ease-out;
    transition: height 1s 0.64s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 93) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.52s ease-out;
    -o-transition: height 1s 0.52s ease-out;
    transition: height 1s 0.52s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 94) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.97s ease-out;
    -o-transition: height 1s 0.97s ease-out;
    transition: height 1s 0.97s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 95) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.68s ease-out;
    -o-transition: height 1s 0.68s ease-out;
    transition: height 1s 0.68s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 96) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.47s ease-out;
    -o-transition: height 1s 0.47s ease-out;
    transition: height 1s 0.47s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 97) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.92s ease-out;
    -o-transition: height 1s 0.92s ease-out;
    transition: height 1s 0.92s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 98) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.54s ease-out;
    -o-transition: height 1s 0.54s ease-out;
    transition: height 1s 0.54s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 99) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.84s ease-out;
    -o-transition: height 1s 0.84s ease-out;
    transition: height 1s 0.84s ease-out; }
  .loader__container.animate .stripe:nth-child(100n + 100) {
    -webkit-animation: stripeAnim 30s linear infinite;
    animation: stripeAnim 30s linear infinite;
    -webkit-transition: height 1s 0.91s ease-out;
    -o-transition: height 1s 0.91s ease-out;
    transition: height 1s 0.91s ease-out; }
  .loader__container .stripe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--posX);
    width: 20px;
    height: 100vh;
    background-color: var(--accentColor); }
    .loader__container .stripe:nth-child(100n + 1) {
      --animDistance: -28px;
      width: 8px; }
    .loader__container .stripe:nth-child(100n + 2) {
      --animDistance: 65px;
      width: 6px; }
    .loader__container .stripe:nth-child(100n + 3) {
      --animDistance: -216px;
      width: 3px; }
    .loader__container .stripe:nth-child(100n + 4) {
      --animDistance: -91px;
      width: 7px; }
    .loader__container .stripe:nth-child(100n + 5) {
      --animDistance: -88px;
      width: 12px; }
    .loader__container .stripe:nth-child(100n + 6) {
      --animDistance: 34px;
      width: 15px; }
    .loader__container .stripe:nth-child(100n + 7) {
      --animDistance: -171px;
      width: 12px; }
    .loader__container .stripe:nth-child(100n + 8) {
      --animDistance: -215px;
      width: 5px; }
    .loader__container .stripe:nth-child(100n + 9) {
      --animDistance: -109px;
      width: 7px; }
    .loader__container .stripe:nth-child(100n + 10) {
      --animDistance: -103px;
      width: 12px; }
    .loader__container .stripe:nth-child(100n + 11) {
      --animDistance: -44px;
      width: 4px; }
    .loader__container .stripe:nth-child(100n + 12) {
      --animDistance: 108px;
      width: 5px; }
    .loader__container .stripe:nth-child(100n + 13) {
      --animDistance: -158px;
      width: 2px; }
    .loader__container .stripe:nth-child(100n + 14) {
      --animDistance: -240px;
      width: 3px; }
    .loader__container .stripe:nth-child(100n + 15) {
      --animDistance: 97px;
      width: 11px; }
    .loader__container .stripe:nth-child(100n + 16) {
      --animDistance: 204px;
      width: 14px; }
    .loader__container .stripe:nth-child(100n + 17) {
      --animDistance: 206px;
      width: 6px; }
    .loader__container .stripe:nth-child(100n + 18) {
      --animDistance: -221px;
      width: 11px; }
    .loader__container .stripe:nth-child(100n + 19) {
      --animDistance: -30px;
      width: 15px; }
    .loader__container .stripe:nth-child(100n + 20) {
      --animDistance: -183px;
      width: 3px; }
    .loader__container .stripe:nth-child(100n + 21) {
      --animDistance: 219px;
      width: 15px; }
    .loader__container .stripe:nth-child(100n + 22) {
      --animDistance: -224px;
      width: 5px; }
    .loader__container .stripe:nth-child(100n + 23) {
      --animDistance: -139px;
      width: 5px; }
    .loader__container .stripe:nth-child(100n + 24) {
      --animDistance: -17px;
      width: 2px; }
    .loader__container .stripe:nth-child(100n + 25) {
      --animDistance: -149px;
      width: 9px; }
    .loader__container .stripe:nth-child(100n + 26) {
      --animDistance: 222px;
      width: 4px; }
    .loader__container .stripe:nth-child(100n + 27) {
      --animDistance: -172px;
      width: 14px; }
    .loader__container .stripe:nth-child(100n + 28) {
      --animDistance: -187px;
      width: 15px; }
    .loader__container .stripe:nth-child(100n + 29) {
      --animDistance: -60px;
      width: 4px; }
    .loader__container .stripe:nth-child(100n + 30) {
      --animDistance: 218px;
      width: 15px; }
    .loader__container .stripe:nth-child(100n + 31) {
      --animDistance: -59px;
      width: 1px; }
    .loader__container .stripe:nth-child(100n + 32) {
      --animDistance: 210px;
      width: 5px; }
    .loader__container .stripe:nth-child(100n + 33) {
      --animDistance: -78px;
      width: 15px; }
    .loader__container .stripe:nth-child(100n + 34) {
      --animDistance: 185px;
      width: 6px; }
    .loader__container .stripe:nth-child(100n + 35) {
      --animDistance: -10px;
      width: 6px; }
    .loader__container .stripe:nth-child(100n + 36) {
      --animDistance: 240px;
      width: 6px; }
    .loader__container .stripe:nth-child(100n + 37) {
      --animDistance: 122px;
      width: 13px; }
    .loader__container .stripe:nth-child(100n + 38) {
      --animDistance: -247px;
      width: 2px; }
    .loader__container .stripe:nth-child(100n + 39) {
      --animDistance: -246px;
      width: 10px; }
    .loader__container .stripe:nth-child(100n + 40) {
      --animDistance: 5px;
      width: 12px; }
    .loader__container .stripe:nth-child(100n + 41) {
      --animDistance: -24px;
      width: 12px; }
    .loader__container .stripe:nth-child(100n + 42) {
      --animDistance: -3px;
      width: 4px; }
    .loader__container .stripe:nth-child(100n + 43) {
      --animDistance: 188px;
      width: 13px; }
    .loader__container .stripe:nth-child(100n + 44) {
      --animDistance: 118px;
      width: 3px; }
    .loader__container .stripe:nth-child(100n + 45) {
      --animDistance: -135px;
      width: 15px; }
    .loader__container .stripe:nth-child(100n + 46) {
      --animDistance: 143px;
      width: 2px; }
    .loader__container .stripe:nth-child(100n + 47) {
      --animDistance: 93px;
      width: 1px; }
    .loader__container .stripe:nth-child(100n + 48) {
      --animDistance: -115px;
      width: 4px; }
    .loader__container .stripe:nth-child(100n + 49) {
      --animDistance: 186px;
      width: 12px; }
    .loader__container .stripe:nth-child(100n + 50) {
      --animDistance: 92px;
      width: 14px; }
    .loader__container .stripe:nth-child(100n + 51) {
      --animDistance: 209px;
      width: 4px; }
    .loader__container .stripe:nth-child(100n + 52) {
      --animDistance: 201px;
      width: 10px; }
    .loader__container .stripe:nth-child(100n + 53) {
      --animDistance: 237px;
      width: 12px; }
    .loader__container .stripe:nth-child(100n + 54) {
      --animDistance: -117px;
      width: 1px; }
    .loader__container .stripe:nth-child(100n + 55) {
      --animDistance: -8px;
      width: 13px; }
    .loader__container .stripe:nth-child(100n + 56) {
      --animDistance: -146px;
      width: 3px; }
    .loader__container .stripe:nth-child(100n + 57) {
      --animDistance: -208px;
      width: 1px; }
    .loader__container .stripe:nth-child(100n + 58) {
      --animDistance: -43px;
      width: 13px; }
    .loader__container .stripe:nth-child(100n + 59) {
      --animDistance: 48px;
      width: 6px; }
    .loader__container .stripe:nth-child(100n + 60) {
      --animDistance: -97px;
      width: 8px; }
    .loader__container .stripe:nth-child(100n + 61) {
      --animDistance: 210px;
      width: 15px; }
    .loader__container .stripe:nth-child(100n + 62) {
      --animDistance: 50px;
      width: 9px; }
    .loader__container .stripe:nth-child(100n + 63) {
      --animDistance: -147px;
      width: 11px; }
    .loader__container .stripe:nth-child(100n + 64) {
      --animDistance: 174px;
      width: 8px; }
    .loader__container .stripe:nth-child(100n + 65) {
      --animDistance: -48px;
      width: 3px; }
    .loader__container .stripe:nth-child(100n + 66) {
      --animDistance: -52px;
      width: 4px; }
    .loader__container .stripe:nth-child(100n + 67) {
      --animDistance: -142px;
      width: 2px; }
    .loader__container .stripe:nth-child(100n + 68) {
      --animDistance: 100px;
      width: 6px; }
    .loader__container .stripe:nth-child(100n + 69) {
      --animDistance: -124px;
      width: 7px; }
    .loader__container .stripe:nth-child(100n + 70) {
      --animDistance: 41px;
      width: 8px; }
    .loader__container .stripe:nth-child(100n + 71) {
      --animDistance: -242px;
      width: 14px; }
    .loader__container .stripe:nth-child(100n + 72) {
      --animDistance: 180px;
      width: 15px; }
    .loader__container .stripe:nth-child(100n + 73) {
      --animDistance: 230px;
      width: 3px; }
    .loader__container .stripe:nth-child(100n + 74) {
      --animDistance: 180px;
      width: 7px; }
    .loader__container .stripe:nth-child(100n + 75) {
      --animDistance: 184px;
      width: 8px; }
    .loader__container .stripe:nth-child(100n + 76) {
      --animDistance: 119px;
      width: 8px; }
    .loader__container .stripe:nth-child(100n + 77) {
      --animDistance: 122px;
      width: 8px; }
    .loader__container .stripe:nth-child(100n + 78) {
      --animDistance: -186px;
      width: 10px; }
    .loader__container .stripe:nth-child(100n + 79) {
      --animDistance: 33px;
      width: 9px; }
    .loader__container .stripe:nth-child(100n + 80) {
      --animDistance: -8px;
      width: 4px; }
    .loader__container .stripe:nth-child(100n + 81) {
      --animDistance: -156px;
      width: 7px; }
    .loader__container .stripe:nth-child(100n + 82) {
      --animDistance: -132px;
      width: 15px; }
    .loader__container .stripe:nth-child(100n + 83) {
      --animDistance: -222px;
      width: 11px; }
    .loader__container .stripe:nth-child(100n + 84) {
      --animDistance: -197px;
      width: 7px; }
    .loader__container .stripe:nth-child(100n + 85) {
      --animDistance: 195px;
      width: 10px; }
    .loader__container .stripe:nth-child(100n + 86) {
      --animDistance: 194px;
      width: 2px; }
    .loader__container .stripe:nth-child(100n + 87) {
      --animDistance: -91px;
      width: 4px; }
    .loader__container .stripe:nth-child(100n + 88) {
      --animDistance: 217px;
      width: 10px; }
    .loader__container .stripe:nth-child(100n + 89) {
      --animDistance: 245px;
      width: 5px; }
    .loader__container .stripe:nth-child(100n + 90) {
      --animDistance: -148px;
      width: 8px; }
    .loader__container .stripe:nth-child(100n + 91) {
      --animDistance: 167px;
      width: 2px; }
    .loader__container .stripe:nth-child(100n + 92) {
      --animDistance: 238px;
      width: 8px; }
    .loader__container .stripe:nth-child(100n + 93) {
      --animDistance: -227px;
      width: 11px; }
    .loader__container .stripe:nth-child(100n + 94) {
      --animDistance: 124px;
      width: 8px; }
    .loader__container .stripe:nth-child(100n + 95) {
      --animDistance: 136px;
      width: 13px; }
    .loader__container .stripe:nth-child(100n + 96) {
      --animDistance: -187px;
      width: 13px; }
    .loader__container .stripe:nth-child(100n + 97) {
      --animDistance: -108px;
      width: 5px; }
    .loader__container .stripe:nth-child(100n + 98) {
      --animDistance: 237px;
      width: 2px; }
    .loader__container .stripe:nth-child(100n + 99) {
      --animDistance: 191px;
      width: 10px; }
    .loader__container .stripe:nth-child(100n + 100) {
      --animDistance: -43px;
      width: 11px; }

@-webkit-keyframes stripeAnim {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  50% {
    -webkit-transform: translateX(var(--animDistance));
    transform: translateX(var(--animDistance)); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes stripeAnim {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  50% {
    -webkit-transform: translateX(var(--animDistance));
    transform: translateX(var(--animDistance)); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

.stripe-bar {
  width: 100%;
  height: 20px;
  background-image: url("../media/stripes.gif");
  background-size: auto 100%;
  background-repeat: repeat-x; }

.image-circle {
  display: block;
  position: absolute;
  height: 100%;
  width: auto;
  fill: var(--accentColor);
  mix-blend-mode: multiply; }

#intro {
  padding-top: 40px; }
  #intro hr {
    border-left-color: #8BEFC4; }

#about hr {
  border-left-color: #FF8E55; }

#about .content {
  padding-bottom: 100px;
  padding-left: 0; }

#about .accent {
  margin-top: -80px;
  margin-bottom: -80px; }

@media (max-width: 1024px) {
  #about .content {
    padding-bottom: 50px; } }

@media (max-width: 768px) {
  #about .content {
    padding-bottom: 0px; } }

#industries hr {
  border-left-color: #3D8FBA; }

#industries .accent {
  margin: -100px 0; }

#industries .grid-container {
  margin-top: 60px; }

@media (max-width: 1024px) {
  #industries .accent {
    margin: -50px 0; } }

@media (max-width: 768px) {
  #industries .accent {
    margin: 0; } }

#career hr {
  border-left-color: #8BEFC4; }

#career .image-container {
  top: -80px;
  bottom: -120px;
  left: 30%; }

@media (max-width: 1024px) {
  #career .image-container {
    top: -80px; } }

@media (max-width: 768px) {
  #career .image-container {
    left: 40%; } }

#contact hr {
  border-left-color: #F3BE13; }

#contact form {
  padding-left: 80px; }

#contact .btn--basic {
  background-color: #F3BE13; }

@media (max-width: 1024px) {
  #contact form {
    padding-left: 0; } }
