@charset "UTF-8";
.container-sm {
  max-width: 544px;
  margin-right: auto;
  margin-left: auto;
}

.container-md {
  max-width: 768px;
  margin-right: auto;
  margin-left: auto;
}

.container-lg {
  max-width: 1012px;
  margin-right: auto;
  margin-left: auto;
}

.container-xl {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}

.col-1 {
  width: 8.3333333333%;
}

.col-2 {
  width: 16.6666666667%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.3333333333%;
}

.col-5 {
  width: 41.6666666667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.3333333333%;
}

.col-8 {
  width: 66.6666666667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.3333333333%;
}

.col-11 {
  width: 91.6666666667%;
}

.col-12 {
  width: 100%;
}

@media (min-width: 544px) {
  .col-sm-1 {
    width: 8.3333333333%;
  }

  .col-sm-2 {
    width: 16.6666666667%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-4 {
    width: 33.3333333333%;
  }

  .col-sm-5 {
    width: 41.6666666667%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-7 {
    width: 58.3333333333%;
  }

  .col-sm-8 {
    width: 66.6666666667%;
  }

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

  .col-sm-10 {
    width: 83.3333333333%;
  }

  .col-sm-11 {
    width: 91.6666666667%;
  }

  .col-sm-12 {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    width: 8.3333333333%;
  }

  .col-md-2 {
    width: 16.6666666667%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-4 {
    width: 33.3333333333%;
  }

  .col-md-5 {
    width: 41.6666666667%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-7 {
    width: 58.3333333333%;
  }

  .col-md-8 {
    width: 66.6666666667%;
  }

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

  .col-md-10 {
    width: 83.3333333333%;
  }

  .col-md-11 {
    width: 91.6666666667%;
  }

  .col-md-12 {
    width: 100%;
  }
}
@media (min-width: 1012px) {
  .col-lg-1 {
    width: 8.3333333333%;
  }

  .col-lg-2 {
    width: 16.6666666667%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-4 {
    width: 33.3333333333%;
  }

  .col-lg-5 {
    width: 41.6666666667%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.3333333333%;
  }

  .col-lg-8 {
    width: 66.6666666667%;
  }

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

  .col-lg-10 {
    width: 83.3333333333%;
  }

  .col-lg-11 {
    width: 91.6666666667%;
  }

  .col-lg-12 {
    width: 100%;
  }
}
@media (min-width: 1280px) {
  .col-xl-1 {
    width: 8.3333333333%;
  }

  .col-xl-2 {
    width: 16.6666666667%;
  }

  .col-xl-3 {
    width: 25%;
  }

  .col-xl-4 {
    width: 33.3333333333%;
  }

  .col-xl-5 {
    width: 41.6666666667%;
  }

  .col-xl-6 {
    width: 50%;
  }

  .col-xl-7 {
    width: 58.3333333333%;
  }

  .col-xl-8 {
    width: 66.6666666667%;
  }

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

  .col-xl-10 {
    width: 83.3333333333%;
  }

  .col-xl-11 {
    width: 91.6666666667%;
  }

  .col-xl-12 {
    width: 100%;
  }
}
.gutter {
  margin-right: -16px;
  margin-left: -16px;
}
.gutter > [class*=col-] {
  padding-right: 16px !important;
  padding-left: 16px !important;
}

.gutter-condensed {
  margin-right: -8px;
  margin-left: -8px;
}
.gutter-condensed > [class*=col-] {
  padding-right: 8px !important;
  padding-left: 8px !important;
}

.gutter-spacious {
  margin-right: -24px;
  margin-left: -24px;
}
.gutter-spacious > [class*=col-] {
  padding-right: 24px !important;
  padding-left: 24px !important;
}

@media (min-width: 544px) {
  .gutter-sm {
    margin-right: -16px;
    margin-left: -16px;
  }
  .gutter-sm > [class*=col-] {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .gutter-sm-condensed {
    margin-right: -8px;
    margin-left: -8px;
  }
  .gutter-sm-condensed > [class*=col-] {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  .gutter-sm-spacious {
    margin-right: -24px;
    margin-left: -24px;
  }
  .gutter-sm-spacious > [class*=col-] {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
}
@media (min-width: 768px) {
  .gutter-md {
    margin-right: -16px;
    margin-left: -16px;
  }
  .gutter-md > [class*=col-] {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .gutter-md-condensed {
    margin-right: -8px;
    margin-left: -8px;
  }
  .gutter-md-condensed > [class*=col-] {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  .gutter-md-spacious {
    margin-right: -24px;
    margin-left: -24px;
  }
  .gutter-md-spacious > [class*=col-] {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
}
@media (min-width: 1012px) {
  .gutter-lg {
    margin-right: -16px;
    margin-left: -16px;
  }
  .gutter-lg > [class*=col-] {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .gutter-lg-condensed {
    margin-right: -8px;
    margin-left: -8px;
  }
  .gutter-lg-condensed > [class*=col-] {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  .gutter-lg-spacious {
    margin-right: -24px;
    margin-left: -24px;
  }
  .gutter-lg-spacious > [class*=col-] {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
}
@media (min-width: 1280px) {
  .gutter-xl {
    margin-right: -16px;
    margin-left: -16px;
  }
  .gutter-xl > [class*=col-] {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .gutter-xl-condensed {
    margin-right: -8px;
    margin-left: -8px;
  }
  .gutter-xl-condensed > [class*=col-] {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  .gutter-xl-spacious {
    margin-right: -24px;
    margin-left: -24px;
  }
  .gutter-xl-spacious > [class*=col-] {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
}
.offset-1 {
  margin-left: 8.3333333333% !important;
}

.offset-2 {
  margin-left: 16.6666666667% !important;
}

.offset-3 {
  margin-left: 25% !important;
}

.offset-4 {
  margin-left: 33.3333333333% !important;
}

.offset-5 {
  margin-left: 41.6666666667% !important;
}

.offset-6 {
  margin-left: 50% !important;
}

.offset-7 {
  margin-left: 58.3333333333% !important;
}

.offset-8 {
  margin-left: 66.6666666667% !important;
}

.offset-9 {
  margin-left: 75% !important;
}

.offset-10 {
  margin-left: 83.3333333333% !important;
}

.offset-11 {
  margin-left: 91.6666666667% !important;
}

@media (min-width: 544px) {
  .offset-sm-1 {
    margin-left: 8.3333333333% !important;
  }

  .offset-sm-2 {
    margin-left: 16.6666666667% !important;
  }

  .offset-sm-3 {
    margin-left: 25% !important;
  }

  .offset-sm-4 {
    margin-left: 33.3333333333% !important;
  }

  .offset-sm-5 {
    margin-left: 41.6666666667% !important;
  }

  .offset-sm-6 {
    margin-left: 50% !important;
  }

  .offset-sm-7 {
    margin-left: 58.3333333333% !important;
  }

  .offset-sm-8 {
    margin-left: 66.6666666667% !important;
  }

  .offset-sm-9 {
    margin-left: 75% !important;
  }

  .offset-sm-10 {
    margin-left: 83.3333333333% !important;
  }

  .offset-sm-11 {
    margin-left: 91.6666666667% !important;
  }
}
@media (min-width: 768px) {
  .offset-md-1 {
    margin-left: 8.3333333333% !important;
  }

  .offset-md-2 {
    margin-left: 16.6666666667% !important;
  }

  .offset-md-3 {
    margin-left: 25% !important;
  }

  .offset-md-4 {
    margin-left: 33.3333333333% !important;
  }

  .offset-md-5 {
    margin-left: 41.6666666667% !important;
  }

  .offset-md-6 {
    margin-left: 50% !important;
  }

  .offset-md-7 {
    margin-left: 58.3333333333% !important;
  }

  .offset-md-8 {
    margin-left: 66.6666666667% !important;
  }

  .offset-md-9 {
    margin-left: 75% !important;
  }

  .offset-md-10 {
    margin-left: 83.3333333333% !important;
  }

  .offset-md-11 {
    margin-left: 91.6666666667% !important;
  }
}
@media (min-width: 1012px) {
  .offset-lg-1 {
    margin-left: 8.3333333333% !important;
  }

  .offset-lg-2 {
    margin-left: 16.6666666667% !important;
  }

  .offset-lg-3 {
    margin-left: 25% !important;
  }

  .offset-lg-4 {
    margin-left: 33.3333333333% !important;
  }

  .offset-lg-5 {
    margin-left: 41.6666666667% !important;
  }

  .offset-lg-6 {
    margin-left: 50% !important;
  }

  .offset-lg-7 {
    margin-left: 58.3333333333% !important;
  }

  .offset-lg-8 {
    margin-left: 66.6666666667% !important;
  }

  .offset-lg-9 {
    margin-left: 75% !important;
  }

  .offset-lg-10 {
    margin-left: 83.3333333333% !important;
  }

  .offset-lg-11 {
    margin-left: 91.6666666667% !important;
  }
}
@media (min-width: 1280px) {
  .offset-xl-1 {
    margin-left: 8.3333333333% !important;
  }

  .offset-xl-2 {
    margin-left: 16.6666666667% !important;
  }

  .offset-xl-3 {
    margin-left: 25% !important;
  }

  .offset-xl-4 {
    margin-left: 33.3333333333% !important;
  }

  .offset-xl-5 {
    margin-left: 41.6666666667% !important;
  }

  .offset-xl-6 {
    margin-left: 50% !important;
  }

  .offset-xl-7 {
    margin-left: 58.3333333333% !important;
  }

  .offset-xl-8 {
    margin-left: 66.6666666667% !important;
  }

  .offset-xl-9 {
    margin-left: 75% !important;
  }

  .offset-xl-10 {
    margin-left: 83.3333333333% !important;
  }

  .offset-xl-11 {
    margin-left: 91.6666666667% !important;
  }
}
/* Set the background to $bg-white */
.bg-white {
  background-color: #fff !important;
}

/* Set the background to $bg-blue */
.bg-blue {
  background-color: #0366d6 !important;
}

/* Set the background to $bg-blue-light */
.bg-blue-light {
  background-color: #f1f8ff !important;
}

/* Set the background to $bg-gray-dark */
.bg-gray-dark {
  background-color: #24292e !important;
}

/* Set the background to $bg-gray */
.bg-gray {
  background-color: #f6f8fa !important;
}

/* Set the background to $bg-gray-light */
.bg-gray-light {
  background-color: #fafbfc !important;
}

/* Set the background to $bg-green */
.bg-green {
  background-color: #28a745 !important;
}

/* Set the background to $bg-green-light */
.bg-green-light {
  background-color: #dcffe4 !important;
}

/* Set the background to $bg-red */
.bg-red {
  background-color: #d73a49 !important;
}

/* Set the background to $bg-red-light */
.bg-red-light {
  background-color: #ffdce0 !important;
}

/* Set the background to $bg-yellow */
.bg-yellow {
  background-color: #ffd33d !important;
}

/* Set the background to $bg-yellow-light */
.bg-yellow-light {
  background-color: #fff5b1 !important;
}

/* Set the background to $bg-yellow-dark */
.bg-yellow-dark {
  background-color: #dbab09 !important;
}

/* Set the background to $bg-purple */
.bg-purple {
  background-color: #6f42c1 !important;
}

/* Set the background to $bg-pink */
.bg-pink {
  background-color: #ea4aaa !important;
}

/* Set the background to $bg-purple-light */
.bg-purple-light {
  background-color: #f5f0ff !important;
}

.color-gray-0 {
  color: #fafbfc !important;
}

.bg-gray-0 {
  background-color: #fafbfc !important;
}

.color-gray-1 {
  color: #f6f8fa !important;
}

.bg-gray-1 {
  background-color: #f6f8fa !important;
}

.color-gray-2 {
  color: #e1e4e8 !important;
}

.bg-gray-2 {
  background-color: #e1e4e8 !important;
}

.color-gray-3 {
  color: #d1d5da !important;
}

.bg-gray-3 {
  background-color: #d1d5da !important;
}

.color-gray-4 {
  color: #959da5 !important;
}

.bg-gray-4 {
  background-color: #959da5 !important;
}

.color-gray-5 {
  color: #6a737d !important;
}

.bg-gray-5 {
  background-color: #6a737d !important;
}

.color-gray-6 {
  color: #586069 !important;
}

.bg-gray-6 {
  background-color: #586069 !important;
}

.color-gray-7 {
  color: #444d56 !important;
}

.bg-gray-7 {
  background-color: #444d56 !important;
}

.color-gray-8 {
  color: #2f363d !important;
}

.bg-gray-8 {
  background-color: #2f363d !important;
}

.color-gray-9 {
  color: #24292e !important;
}

.bg-gray-9 {
  background-color: #24292e !important;
}

.color-blue-0 {
  color: #f1f8ff !important;
}

.bg-blue-0 {
  background-color: #f1f8ff !important;
}

.color-blue-1 {
  color: #dbedff !important;
}

.bg-blue-1 {
  background-color: #dbedff !important;
}

.color-blue-2 {
  color: #c8e1ff !important;
}

.bg-blue-2 {
  background-color: #c8e1ff !important;
}

.color-blue-3 {
  color: #79b8ff !important;
}

.bg-blue-3 {
  background-color: #79b8ff !important;
}

.color-blue-4 {
  color: #2188ff !important;
}

.bg-blue-4 {
  background-color: #2188ff !important;
}

.color-blue-5 {
  color: #0366d6 !important;
}

.bg-blue-5 {
  background-color: #0366d6 !important;
}

.color-blue-6 {
  color: #005cc5 !important;
}

.bg-blue-6 {
  background-color: #005cc5 !important;
}

.color-blue-7 {
  color: #044289 !important;
}

.bg-blue-7 {
  background-color: #044289 !important;
}

.color-blue-8 {
  color: #032f62 !important;
}

.bg-blue-8 {
  background-color: #032f62 !important;
}

.color-blue-9 {
  color: #05264c !important;
}

.bg-blue-9 {
  background-color: #05264c !important;
}

.color-green-0 {
  color: #f0fff4 !important;
}

.bg-green-0 {
  background-color: #f0fff4 !important;
}

.color-green-1 {
  color: #dcffe4 !important;
}

.bg-green-1 {
  background-color: #dcffe4 !important;
}

.color-green-2 {
  color: #bef5cb !important;
}

.bg-green-2 {
  background-color: #bef5cb !important;
}

.color-green-3 {
  color: #85e89d !important;
}

.bg-green-3 {
  background-color: #85e89d !important;
}

.color-green-4 {
  color: #34d058 !important;
}

.bg-green-4 {
  background-color: #34d058 !important;
}

.color-green-5 {
  color: #28a745 !important;
}

.bg-green-5 {
  background-color: #28a745 !important;
}

.color-green-6 {
  color: #22863a !important;
}

.bg-green-6 {
  background-color: #22863a !important;
}

.color-green-7 {
  color: #176f2c !important;
}

.bg-green-7 {
  background-color: #176f2c !important;
}

.color-green-8 {
  color: #165c26 !important;
}

.bg-green-8 {
  background-color: #165c26 !important;
}

.color-green-9 {
  color: #144620 !important;
}

.bg-green-9 {
  background-color: #144620 !important;
}

.color-yellow-0 {
  color: #fffdef !important;
}

.bg-yellow-0 {
  background-color: #fffdef !important;
}

.color-yellow-1 {
  color: #fffbdd !important;
}

.bg-yellow-1 {
  background-color: #fffbdd !important;
}

.color-yellow-2 {
  color: #fff5b1 !important;
}

.bg-yellow-2 {
  background-color: #fff5b1 !important;
}

.color-yellow-3 {
  color: #ffea7f !important;
}

.bg-yellow-3 {
  background-color: #ffea7f !important;
}

.color-yellow-4 {
  color: #ffdf5d !important;
}

.bg-yellow-4 {
  background-color: #ffdf5d !important;
}

.color-yellow-5 {
  color: #ffd33d !important;
}

.bg-yellow-5 {
  background-color: #ffd33d !important;
}

.color-yellow-6 {
  color: #f9c513 !important;
}

.bg-yellow-6 {
  background-color: #f9c513 !important;
}

.color-yellow-7 {
  color: #dbab09 !important;
}

.bg-yellow-7 {
  background-color: #dbab09 !important;
}

.color-yellow-8 {
  color: #b08800 !important;
}

.bg-yellow-8 {
  background-color: #b08800 !important;
}

.color-yellow-9 {
  color: #735c0f !important;
}

.bg-yellow-9 {
  background-color: #735c0f !important;
}

.color-orange-0 {
  color: #fff8f2 !important;
}

.bg-orange-0 {
  background-color: #fff8f2 !important;
}

.color-orange-1 {
  color: #ffebda !important;
}

.bg-orange-1 {
  background-color: #ffebda !important;
}

.color-orange-2 {
  color: #ffd1ac !important;
}

.bg-orange-2 {
  background-color: #ffd1ac !important;
}

.color-orange-3 {
  color: #ffab70 !important;
}

.bg-orange-3 {
  background-color: #ffab70 !important;
}

.color-orange-4 {
  color: #fb8532 !important;
}

.bg-orange-4 {
  background-color: #fb8532 !important;
}

.color-orange-5 {
  color: #f66a0a !important;
}

.bg-orange-5 {
  background-color: #f66a0a !important;
}

.color-orange-6 {
  color: #e36209 !important;
}

.bg-orange-6 {
  background-color: #e36209 !important;
}

.color-orange-7 {
  color: #d15704 !important;
}

.bg-orange-7 {
  background-color: #d15704 !important;
}

.color-orange-8 {
  color: #c24e00 !important;
}

.bg-orange-8 {
  background-color: #c24e00 !important;
}

.color-orange-9 {
  color: #a04100 !important;
}

.bg-orange-9 {
  background-color: #a04100 !important;
}

.color-red-0 {
  color: #ffeef0 !important;
}

.bg-red-0 {
  background-color: #ffeef0 !important;
}

.color-red-1 {
  color: #ffdce0 !important;
}

.bg-red-1 {
  background-color: #ffdce0 !important;
}

.color-red-2 {
  color: #fdaeb7 !important;
}

.bg-red-2 {
  background-color: #fdaeb7 !important;
}

.color-red-3 {
  color: #f97583 !important;
}

.bg-red-3 {
  background-color: #f97583 !important;
}

.color-red-4 {
  color: #ea4a5a !important;
}

.bg-red-4 {
  background-color: #ea4a5a !important;
}

.color-red-5 {
  color: #d73a49 !important;
}

.bg-red-5 {
  background-color: #d73a49 !important;
}

.color-red-6 {
  color: #cb2431 !important;
}

.bg-red-6 {
  background-color: #cb2431 !important;
}

.color-red-7 {
  color: #b31d28 !important;
}

.bg-red-7 {
  background-color: #b31d28 !important;
}

.color-red-8 {
  color: #9e1c23 !important;
}

.bg-red-8 {
  background-color: #9e1c23 !important;
}

.color-red-9 {
  color: #86181d !important;
}

.bg-red-9 {
  background-color: #86181d !important;
}

.color-purple-0 {
  color: #f5f0ff !important;
}

.bg-purple-0 {
  background-color: #f5f0ff !important;
}

.color-purple-1 {
  color: #e6dcfd !important;
}

.bg-purple-1 {
  background-color: #e6dcfd !important;
}

.color-purple-2 {
  color: #d1bcf9 !important;
}

.bg-purple-2 {
  background-color: #d1bcf9 !important;
}

.color-purple-3 {
  color: #b392f0 !important;
}

.bg-purple-3 {
  background-color: #b392f0 !important;
}

.color-purple-4 {
  color: #8a63d2 !important;
}

.bg-purple-4 {
  background-color: #8a63d2 !important;
}

.color-purple-5 {
  color: #6f42c1 !important;
}

.bg-purple-5 {
  background-color: #6f42c1 !important;
}

.color-purple-6 {
  color: #5a32a3 !important;
}

.bg-purple-6 {
  background-color: #5a32a3 !important;
}

.color-purple-7 {
  color: #4c2889 !important;
}

.bg-purple-7 {
  background-color: #4c2889 !important;
}

.color-purple-8 {
  color: #3a1d6e !important;
}

.bg-purple-8 {
  background-color: #3a1d6e !important;
}

.color-purple-9 {
  color: #29134e !important;
}

.bg-purple-9 {
  background-color: #29134e !important;
}

.color-pink-0 {
  color: #ffeef8 !important;
}

.bg-pink-0 {
  background-color: #ffeef8 !important;
}

.color-pink-1 {
  color: #fedbf0 !important;
}

.bg-pink-1 {
  background-color: #fedbf0 !important;
}

.color-pink-2 {
  color: #f9b3dd !important;
}

.bg-pink-2 {
  background-color: #f9b3dd !important;
}

.color-pink-3 {
  color: #f692ce !important;
}

.bg-pink-3 {
  background-color: #f692ce !important;
}

.color-pink-4 {
  color: #ec6cb9 !important;
}

.bg-pink-4 {
  background-color: #ec6cb9 !important;
}

.color-pink-5 {
  color: #ea4aaa !important;
}

.bg-pink-5 {
  background-color: #ea4aaa !important;
}

.color-pink-6 {
  color: #d03592 !important;
}

.bg-pink-6 {
  background-color: #d03592 !important;
}

.color-pink-7 {
  color: #b93a86 !important;
}

.bg-pink-7 {
  background-color: #b93a86 !important;
}

.color-pink-8 {
  color: #99306f !important;
}

.bg-pink-8 {
  background-color: #99306f !important;
}

.color-pink-9 {
  color: #6d224f !important;
}

.bg-pink-9 {
  background-color: #6d224f !important;
}

.bg-shade-gradient {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(27, 31, 35, 0.065)), to(rgba(27, 31, 35, 0))) !important;
  background-image: linear-gradient(180deg, rgba(27, 31, 35, 0.065), rgba(27, 31, 35, 0)) !important;
  background-repeat: no-repeat !important;
  background-size: 100% 200px !important;
}

/* Set the text color to $text-blue */
.text-blue {
  color: #0366d6 !important;
}

/* Set the text color to $text-red */
.text-red {
  color: #cb2431 !important;
}

/* Set the text color to $text-gray-light */
.text-gray-light {
  color: #6a737d !important;
}

/* Set the text color to $text-gray */
.text-gray {
  color: #586069 !important;
}

/* Set the text color to $text-gray-dark */
.text-gray-dark {
  color: #24292e !important;
}

/* Set the text color to $text-green */
.text-green {
  color: #28a745 !important;
}

/* Set the text color to $text-yellow */
.text-yellow {
  color: #b08800 !important;
}

/* Set the text color to $text-orange */
.text-orange {
  color: #a04100 !important;
}

/* Set the text color to $text-orange-light */
.text-orange-light {
  color: #e36209 !important;
}

/* Set the text color to $text-purple */
.text-purple {
  color: #6f42c1 !important;
}

/* Set the text color to $text-pink */
.text-pink {
  color: #ea4aaa !important;
}

/* Set the text color to $text-white */
.text-white {
  color: #fff !important;
}

/* Set the text color to inherit */
.text-inherit {
  color: inherit !important;
}

.link-gray {
  color: #586069 !important;
}
.link-gray:hover {
  color: #0366d6 !important;
}

.link-gray-dark {
  color: #24292e !important;
}
.link-gray-dark:hover {
  color: #0366d6 !important;
}

/* Set the link color to $text-blue on hover
  Useful when you want only part of a link to turn blue on hover */
.link-hover-blue:hover {
  color: #0366d6 !important;
}

/* Make a link $text-gray, then $text-blue on hover and removes the underline */
.muted-link {
  color: #586069 !important;
}
.muted-link:hover {
  color: #0366d6 !important;
  text-decoration: none;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-justify-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.flex-justify-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.flex-justify-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.flex-justify-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.flex-justify-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.flex-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.flex-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.flex-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.flex-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.flex-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.flex-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.flex-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.flex-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.flex-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.flex-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.flex-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.flex-auto {
  -webkit-box-flex: 1 !important;
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

.flex-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.flex-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.flex-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.flex-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.flex-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.flex-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

.flex-item-equal {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
}

.flex-order-1 {
  -webkit-box-ordinal-group: 2 !important;
  -ms-flex-order: 1 !important;
  order: 1 !important;
}

.flex-order-2 {
  -webkit-box-ordinal-group: 3 !important;
  -ms-flex-order: 2 !important;
  order: 2 !important;
}

.flex-order-none {
  -webkit-box-ordinal-group: inherit !important;
  -ms-flex-order: inherit !important;
  order: inherit !important;
}

@media (min-width: 544px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-sm-justify-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .flex-sm-justify-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .flex-sm-justify-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .flex-sm-justify-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .flex-sm-justify-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .flex-sm-items-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .flex-sm-items-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .flex-sm-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .flex-sm-items-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .flex-sm-items-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .flex-sm-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .flex-sm-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .flex-sm-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .flex-sm-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .flex-sm-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .flex-sm-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .flex-sm-auto {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-sm-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .flex-sm-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .flex-sm-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .flex-sm-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .flex-sm-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .flex-sm-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }

  .flex-sm-item-equal {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
  }

  .flex-sm-order-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }

  .flex-sm-order-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }

  .flex-sm-order-none {
    -webkit-box-ordinal-group: inherit !important;
    -ms-flex-order: inherit !important;
    order: inherit !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-md-justify-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .flex-md-justify-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .flex-md-justify-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .flex-md-justify-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .flex-md-justify-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .flex-md-items-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .flex-md-items-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .flex-md-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .flex-md-items-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .flex-md-items-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .flex-md-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .flex-md-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .flex-md-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .flex-md-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .flex-md-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .flex-md-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .flex-md-auto {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-md-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .flex-md-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .flex-md-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .flex-md-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .flex-md-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .flex-md-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }

  .flex-md-item-equal {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
  }

  .flex-md-order-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }

  .flex-md-order-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }

  .flex-md-order-none {
    -webkit-box-ordinal-group: inherit !important;
    -ms-flex-order: inherit !important;
    order: inherit !important;
  }
}
@media (min-width: 1012px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-lg-justify-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .flex-lg-justify-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .flex-lg-justify-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .flex-lg-justify-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .flex-lg-justify-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .flex-lg-items-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .flex-lg-items-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .flex-lg-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .flex-lg-items-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .flex-lg-items-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .flex-lg-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .flex-lg-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .flex-lg-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .flex-lg-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .flex-lg-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .flex-lg-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .flex-lg-auto {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-lg-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .flex-lg-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .flex-lg-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .flex-lg-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .flex-lg-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .flex-lg-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }

  .flex-lg-item-equal {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
  }

  .flex-lg-order-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }

  .flex-lg-order-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }

  .flex-lg-order-none {
    -webkit-box-ordinal-group: inherit !important;
    -ms-flex-order: inherit !important;
    order: inherit !important;
  }
}
@media (min-width: 1280px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-xl-justify-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .flex-xl-justify-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .flex-xl-justify-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .flex-xl-justify-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .flex-xl-justify-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .flex-xl-items-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .flex-xl-items-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .flex-xl-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .flex-xl-items-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .flex-xl-items-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .flex-xl-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .flex-xl-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .flex-xl-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .flex-xl-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .flex-xl-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .flex-xl-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .flex-xl-auto {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-xl-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .flex-xl-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .flex-xl-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .flex-xl-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .flex-xl-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .flex-xl-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }

  .flex-xl-item-equal {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
  }

  .flex-xl-order-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }

  .flex-xl-order-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }

  .flex-xl-order-none {
    -webkit-box-ordinal-group: inherit !important;
    -ms-flex-order: inherit !important;
    order: inherit !important;
  }
}
/* Set a $size margin to all sides at $breakpoint */
.m-0 {
  margin: 0 !important;
}

/* Set a $size margin on the top at $breakpoint */
.mt-0 {
  margin-top: 0 !important;
}

/* Set a $size margin on the right at $breakpoint */
.mr-0 {
  margin-right: 0 !important;
}

/* Set a $size margin on the bottom at $breakpoint */
.mb-0 {
  margin-bottom: 0 !important;
}

/* Set a $size margin on the left at $breakpoint */
.ml-0 {
  margin-left: 0 !important;
}

/* Set a $size margin on the left & right at $breakpoint */
.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

/* Set a $size margin on the top & bottom at $breakpoint */
.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Set a $size margin to all sides at $breakpoint */
.m-1 {
  margin: 4px !important;
}

/* Set a $size margin on the top at $breakpoint */
.mt-1 {
  margin-top: 4px !important;
}

/* Set a $size margin on the right at $breakpoint */
.mr-1 {
  margin-right: 4px !important;
}

/* Set a $size margin on the bottom at $breakpoint */
.mb-1 {
  margin-bottom: 4px !important;
}

/* Set a $size margin on the left at $breakpoint */
.ml-1 {
  margin-left: 4px !important;
}

/* Set a negative $size margin on top at $breakpoint */
.mt-n1 {
  margin-top: -4px !important;
}

/* Set a negative $size margin on the right at $breakpoint */
.mr-n1 {
  margin-right: -4px !important;
}

/* Set a negative $size margin on the bottom at $breakpoint */
.mb-n1 {
  margin-bottom: -4px !important;
}

/* Set a negative $size margin on the left at $breakpoint */
.ml-n1 {
  margin-left: -4px !important;
}

/* Set a $size margin on the left & right at $breakpoint */
.mx-1 {
  margin-right: 4px !important;
  margin-left: 4px !important;
}

/* Set a $size margin on the top & bottom at $breakpoint */
.my-1 {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

/* Set a $size margin to all sides at $breakpoint */
.m-2 {
  margin: 8px !important;
}

/* Set a $size margin on the top at $breakpoint */
.mt-2 {
  margin-top: 8px !important;
}

/* Set a $size margin on the right at $breakpoint */
.mr-2 {
  margin-right: 8px !important;
}

/* Set a $size margin on the bottom at $breakpoint */
.mb-2 {
  margin-bottom: 8px !important;
}

/* Set a $size margin on the left at $breakpoint */
.ml-2 {
  margin-left: 8px !important;
}

/* Set a negative $size margin on top at $breakpoint */
.mt-n2 {
  margin-top: -8px !important;
}

/* Set a negative $size margin on the right at $breakpoint */
.mr-n2 {
  margin-right: -8px !important;
}

/* Set a negative $size margin on the bottom at $breakpoint */
.mb-n2 {
  margin-bottom: -8px !important;
}

/* Set a negative $size margin on the left at $breakpoint */
.ml-n2 {
  margin-left: -8px !important;
}

/* Set a $size margin on the left & right at $breakpoint */
.mx-2 {
  margin-right: 8px !important;
  margin-left: 8px !important;
}

/* Set a $size margin on the top & bottom at $breakpoint */
.my-2 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

/* Set a $size margin to all sides at $breakpoint */
.m-3 {
  margin: 16px !important;
}

/* Set a $size margin on the top at $breakpoint */
.mt-3 {
  margin-top: 16px !important;
}

/* Set a $size margin on the right at $breakpoint */
.mr-3 {
  margin-right: 16px !important;
}

/* Set a $size margin on the bottom at $breakpoint */
.mb-3 {
  margin-bottom: 16px !important;
}

/* Set a $size margin on the left at $breakpoint */
.ml-3 {
  margin-left: 16px !important;
}

/* Set a negative $size margin on top at $breakpoint */
.mt-n3 {
  margin-top: -16px !important;
}

/* Set a negative $size margin on the right at $breakpoint */
.mr-n3 {
  margin-right: -16px !important;
}

/* Set a negative $size margin on the bottom at $breakpoint */
.mb-n3 {
  margin-bottom: -16px !important;
}

/* Set a negative $size margin on the left at $breakpoint */
.ml-n3 {
  margin-left: -16px !important;
}

/* Set a $size margin on the left & right at $breakpoint */
.mx-3 {
  margin-right: 16px !important;
  margin-left: 16px !important;
}

/* Set a $size margin on the top & bottom at $breakpoint */
.my-3 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

/* Set a $size margin to all sides at $breakpoint */
.m-4 {
  margin: 24px !important;
}

/* Set a $size margin on the top at $breakpoint */
.mt-4 {
  margin-top: 24px !important;
}

/* Set a $size margin on the right at $breakpoint */
.mr-4 {
  margin-right: 24px !important;
}

/* Set a $size margin on the bottom at $breakpoint */
.mb-4 {
  margin-bottom: 24px !important;
}

/* Set a $size margin on the left at $breakpoint */
.ml-4 {
  margin-left: 24px !important;
}

/* Set a negative $size margin on top at $breakpoint */
.mt-n4 {
  margin-top: -24px !important;
}

/* Set a negative $size margin on the right at $breakpoint */
.mr-n4 {
  margin-right: -24px !important;
}

/* Set a negative $size margin on the bottom at $breakpoint */
.mb-n4 {
  margin-bottom: -24px !important;
}

/* Set a negative $size margin on the left at $breakpoint */
.ml-n4 {
  margin-left: -24px !important;
}

/* Set a $size margin on the left & right at $breakpoint */
.mx-4 {
  margin-right: 24px !important;
  margin-left: 24px !important;
}

/* Set a $size margin on the top & bottom at $breakpoint */
.my-4 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

/* Set a $size margin to all sides at $breakpoint */
.m-5 {
  margin: 32px !important;
}

/* Set a $size margin on the top at $breakpoint */
.mt-5 {
  margin-top: 32px !important;
}

/* Set a $size margin on the right at $breakpoint */
.mr-5 {
  margin-right: 32px !important;
}

/* Set a $size margin on the bottom at $breakpoint */
.mb-5 {
  margin-bottom: 32px !important;
}

/* Set a $size margin on the left at $breakpoint */
.ml-5 {
  margin-left: 32px !important;
}

/* Set a negative $size margin on top at $breakpoint */
.mt-n5 {
  margin-top: -32px !important;
}

/* Set a negative $size margin on the right at $breakpoint */
.mr-n5 {
  margin-right: -32px !important;
}

/* Set a negative $size margin on the bottom at $breakpoint */
.mb-n5 {
  margin-bottom: -32px !important;
}

/* Set a negative $size margin on the left at $breakpoint */
.ml-n5 {
  margin-left: -32px !important;
}

/* Set a $size margin on the left & right at $breakpoint */
.mx-5 {
  margin-right: 32px !important;
  margin-left: 32px !important;
}

/* Set a $size margin on the top & bottom at $breakpoint */
.my-5 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

/* Set a $size margin to all sides at $breakpoint */
.m-6 {
  margin: 40px !important;
}

/* Set a $size margin on the top at $breakpoint */
.mt-6 {
  margin-top: 40px !important;
}

/* Set a $size margin on the right at $breakpoint */
.mr-6 {
  margin-right: 40px !important;
}

/* Set a $size margin on the bottom at $breakpoint */
.mb-6 {
  margin-bottom: 40px !important;
}

/* Set a $size margin on the left at $breakpoint */
.ml-6 {
  margin-left: 40px !important;
}

/* Set a negative $size margin on top at $breakpoint */
.mt-n6 {
  margin-top: -40px !important;
}

/* Set a negative $size margin on the right at $breakpoint */
.mr-n6 {
  margin-right: -40px !important;
}

/* Set a negative $size margin on the bottom at $breakpoint */
.mb-n6 {
  margin-bottom: -40px !important;
}

/* Set a negative $size margin on the left at $breakpoint */
.ml-n6 {
  margin-left: -40px !important;
}

/* Set a $size margin on the left & right at $breakpoint */
.mx-6 {
  margin-right: 40px !important;
  margin-left: 40px !important;
}

/* Set a $size margin on the top & bottom at $breakpoint */
.my-6 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

/* responsive horizontal auto margins */
.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

@media (min-width: 544px) {
  /* Set a $size margin to all sides at $breakpoint */
  .m-sm-0 {
    margin: 0 !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-sm-0 {
    margin-top: 0 !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-sm-0 {
    margin-right: 0 !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-sm-0 {
    margin-left: 0 !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-sm-1 {
    margin: 4px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-sm-1 {
    margin-top: 4px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-sm-1 {
    margin-right: 4px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-sm-1 {
    margin-bottom: 4px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-sm-1 {
    margin-left: 4px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-sm-n1 {
    margin-top: -4px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-sm-n1 {
    margin-right: -4px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-sm-n1 {
    margin-bottom: -4px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-sm-n1 {
    margin-left: -4px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-sm-1 {
    margin-right: 4px !important;
    margin-left: 4px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-sm-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-sm-2 {
    margin: 8px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-sm-2 {
    margin-top: 8px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-sm-2 {
    margin-right: 8px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-sm-2 {
    margin-bottom: 8px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-sm-2 {
    margin-left: 8px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-sm-n2 {
    margin-top: -8px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-sm-n2 {
    margin-right: -8px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-sm-n2 {
    margin-bottom: -8px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-sm-n2 {
    margin-left: -8px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-sm-2 {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-sm-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-sm-3 {
    margin: 16px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-sm-3 {
    margin-top: 16px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-sm-3 {
    margin-right: 16px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-sm-3 {
    margin-bottom: 16px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-sm-3 {
    margin-left: 16px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-sm-n3 {
    margin-top: -16px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-sm-n3 {
    margin-right: -16px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-sm-n3 {
    margin-bottom: -16px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-sm-n3 {
    margin-left: -16px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-sm-3 {
    margin-right: 16px !important;
    margin-left: 16px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-sm-3 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-sm-4 {
    margin: 24px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-sm-4 {
    margin-top: 24px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-sm-4 {
    margin-right: 24px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-sm-4 {
    margin-bottom: 24px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-sm-4 {
    margin-left: 24px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-sm-n4 {
    margin-top: -24px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-sm-n4 {
    margin-right: -24px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-sm-n4 {
    margin-bottom: -24px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-sm-n4 {
    margin-left: -24px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-sm-4 {
    margin-right: 24px !important;
    margin-left: 24px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-sm-4 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-sm-5 {
    margin: 32px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-sm-5 {
    margin-top: 32px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-sm-5 {
    margin-right: 32px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-sm-5 {
    margin-bottom: 32px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-sm-5 {
    margin-left: 32px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-sm-n5 {
    margin-top: -32px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-sm-n5 {
    margin-right: -32px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-sm-n5 {
    margin-bottom: -32px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-sm-n5 {
    margin-left: -32px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-sm-5 {
    margin-right: 32px !important;
    margin-left: 32px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-sm-5 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-sm-6 {
    margin: 40px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-sm-6 {
    margin-top: 40px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-sm-6 {
    margin-right: 40px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-sm-6 {
    margin-bottom: 40px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-sm-6 {
    margin-left: 40px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-sm-n6 {
    margin-top: -40px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-sm-n6 {
    margin-right: -40px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-sm-n6 {
    margin-bottom: -40px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-sm-n6 {
    margin-left: -40px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-sm-6 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-sm-6 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  /* responsive horizontal auto margins */
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  /* Set a $size margin to all sides at $breakpoint */
  .m-md-0 {
    margin: 0 !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-md-0 {
    margin-top: 0 !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-md-0 {
    margin-right: 0 !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-md-0 {
    margin-left: 0 !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-md-1 {
    margin: 4px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-md-1 {
    margin-top: 4px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-md-1 {
    margin-right: 4px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-md-1 {
    margin-bottom: 4px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-md-1 {
    margin-left: 4px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-md-n1 {
    margin-top: -4px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-md-n1 {
    margin-right: -4px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-md-n1 {
    margin-bottom: -4px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-md-n1 {
    margin-left: -4px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-md-1 {
    margin-right: 4px !important;
    margin-left: 4px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-md-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-md-2 {
    margin: 8px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-md-2 {
    margin-top: 8px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-md-2 {
    margin-right: 8px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-md-2 {
    margin-bottom: 8px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-md-2 {
    margin-left: 8px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-md-n2 {
    margin-top: -8px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-md-n2 {
    margin-right: -8px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-md-n2 {
    margin-bottom: -8px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-md-n2 {
    margin-left: -8px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-md-2 {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-md-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-md-3 {
    margin: 16px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-md-3 {
    margin-top: 16px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-md-3 {
    margin-right: 16px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-md-3 {
    margin-bottom: 16px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-md-3 {
    margin-left: 16px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-md-n3 {
    margin-top: -16px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-md-n3 {
    margin-right: -16px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-md-n3 {
    margin-bottom: -16px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-md-n3 {
    margin-left: -16px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-md-3 {
    margin-right: 16px !important;
    margin-left: 16px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-md-3 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-md-4 {
    margin: 24px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-md-4 {
    margin-top: 24px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-md-4 {
    margin-right: 24px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-md-4 {
    margin-bottom: 24px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-md-4 {
    margin-left: 24px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-md-n4 {
    margin-top: -24px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-md-n4 {
    margin-right: -24px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-md-n4 {
    margin-bottom: -24px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-md-n4 {
    margin-left: -24px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-md-4 {
    margin-right: 24px !important;
    margin-left: 24px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-md-4 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-md-5 {
    margin: 32px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-md-5 {
    margin-top: 32px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-md-5 {
    margin-right: 32px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-md-5 {
    margin-bottom: 32px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-md-5 {
    margin-left: 32px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-md-n5 {
    margin-top: -32px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-md-n5 {
    margin-right: -32px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-md-n5 {
    margin-bottom: -32px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-md-n5 {
    margin-left: -32px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-md-5 {
    margin-right: 32px !important;
    margin-left: 32px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-md-5 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-md-6 {
    margin: 40px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-md-6 {
    margin-top: 40px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-md-6 {
    margin-right: 40px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-md-6 {
    margin-bottom: 40px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-md-6 {
    margin-left: 40px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-md-n6 {
    margin-top: -40px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-md-n6 {
    margin-right: -40px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-md-n6 {
    margin-bottom: -40px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-md-n6 {
    margin-left: -40px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-md-6 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-md-6 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  /* responsive horizontal auto margins */
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
}
@media (min-width: 1012px) {
  /* Set a $size margin to all sides at $breakpoint */
  .m-lg-0 {
    margin: 0 !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-lg-0 {
    margin-top: 0 !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-lg-0 {
    margin-right: 0 !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-lg-0 {
    margin-left: 0 !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-lg-1 {
    margin: 4px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-lg-1 {
    margin-top: 4px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-lg-1 {
    margin-right: 4px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-lg-1 {
    margin-bottom: 4px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-lg-1 {
    margin-left: 4px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-lg-n1 {
    margin-top: -4px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-lg-n1 {
    margin-right: -4px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-lg-n1 {
    margin-bottom: -4px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-lg-n1 {
    margin-left: -4px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-lg-1 {
    margin-right: 4px !important;
    margin-left: 4px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-lg-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-lg-2 {
    margin: 8px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-lg-2 {
    margin-top: 8px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-lg-2 {
    margin-right: 8px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-lg-2 {
    margin-bottom: 8px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-lg-2 {
    margin-left: 8px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-lg-n2 {
    margin-top: -8px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-lg-n2 {
    margin-right: -8px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-lg-n2 {
    margin-bottom: -8px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-lg-n2 {
    margin-left: -8px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-lg-2 {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-lg-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-lg-3 {
    margin: 16px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-lg-3 {
    margin-top: 16px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-lg-3 {
    margin-right: 16px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-lg-3 {
    margin-bottom: 16px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-lg-3 {
    margin-left: 16px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-lg-n3 {
    margin-top: -16px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-lg-n3 {
    margin-right: -16px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-lg-n3 {
    margin-bottom: -16px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-lg-n3 {
    margin-left: -16px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-lg-3 {
    margin-right: 16px !important;
    margin-left: 16px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-lg-3 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-lg-4 {
    margin: 24px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-lg-4 {
    margin-top: 24px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-lg-4 {
    margin-right: 24px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-lg-4 {
    margin-bottom: 24px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-lg-4 {
    margin-left: 24px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-lg-n4 {
    margin-top: -24px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-lg-n4 {
    margin-right: -24px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-lg-n4 {
    margin-bottom: -24px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-lg-n4 {
    margin-left: -24px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-lg-4 {
    margin-right: 24px !important;
    margin-left: 24px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-lg-4 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-lg-5 {
    margin: 32px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-lg-5 {
    margin-top: 32px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-lg-5 {
    margin-right: 32px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-lg-5 {
    margin-bottom: 32px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-lg-5 {
    margin-left: 32px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-lg-n5 {
    margin-top: -32px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-lg-n5 {
    margin-right: -32px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-lg-n5 {
    margin-bottom: -32px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-lg-n5 {
    margin-left: -32px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-lg-5 {
    margin-right: 32px !important;
    margin-left: 32px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-lg-5 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-lg-6 {
    margin: 40px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-lg-6 {
    margin-top: 40px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-lg-6 {
    margin-right: 40px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-lg-6 {
    margin-bottom: 40px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-lg-6 {
    margin-left: 40px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-lg-n6 {
    margin-top: -40px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-lg-n6 {
    margin-right: -40px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-lg-n6 {
    margin-bottom: -40px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-lg-n6 {
    margin-left: -40px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-lg-6 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-lg-6 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  /* responsive horizontal auto margins */
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
}
@media (min-width: 1280px) {
  /* Set a $size margin to all sides at $breakpoint */
  .m-xl-0 {
    margin: 0 !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-xl-0 {
    margin-top: 0 !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-xl-0 {
    margin-right: 0 !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-xl-0 {
    margin-left: 0 !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-xl-1 {
    margin: 4px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-xl-1 {
    margin-top: 4px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-xl-1 {
    margin-right: 4px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-xl-1 {
    margin-bottom: 4px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-xl-1 {
    margin-left: 4px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-xl-n1 {
    margin-top: -4px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-xl-n1 {
    margin-right: -4px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-xl-n1 {
    margin-bottom: -4px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-xl-n1 {
    margin-left: -4px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-xl-1 {
    margin-right: 4px !important;
    margin-left: 4px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-xl-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-xl-2 {
    margin: 8px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-xl-2 {
    margin-top: 8px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-xl-2 {
    margin-right: 8px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-xl-2 {
    margin-bottom: 8px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-xl-2 {
    margin-left: 8px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-xl-n2 {
    margin-top: -8px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-xl-n2 {
    margin-right: -8px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-xl-n2 {
    margin-bottom: -8px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-xl-n2 {
    margin-left: -8px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-xl-2 {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-xl-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-xl-3 {
    margin: 16px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-xl-3 {
    margin-top: 16px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-xl-3 {
    margin-right: 16px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-xl-3 {
    margin-bottom: 16px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-xl-3 {
    margin-left: 16px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-xl-n3 {
    margin-top: -16px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-xl-n3 {
    margin-right: -16px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-xl-n3 {
    margin-bottom: -16px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-xl-n3 {
    margin-left: -16px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-xl-3 {
    margin-right: 16px !important;
    margin-left: 16px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-xl-3 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-xl-4 {
    margin: 24px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-xl-4 {
    margin-top: 24px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-xl-4 {
    margin-right: 24px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-xl-4 {
    margin-bottom: 24px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-xl-4 {
    margin-left: 24px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-xl-n4 {
    margin-top: -24px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-xl-n4 {
    margin-right: -24px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-xl-n4 {
    margin-bottom: -24px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-xl-n4 {
    margin-left: -24px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-xl-4 {
    margin-right: 24px !important;
    margin-left: 24px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-xl-4 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-xl-5 {
    margin: 32px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-xl-5 {
    margin-top: 32px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-xl-5 {
    margin-right: 32px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-xl-5 {
    margin-bottom: 32px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-xl-5 {
    margin-left: 32px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-xl-n5 {
    margin-top: -32px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-xl-n5 {
    margin-right: -32px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-xl-n5 {
    margin-bottom: -32px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-xl-n5 {
    margin-left: -32px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-xl-5 {
    margin-right: 32px !important;
    margin-left: 32px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-xl-5 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-xl-6 {
    margin: 40px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-xl-6 {
    margin-top: 40px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-xl-6 {
    margin-right: 40px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-xl-6 {
    margin-bottom: 40px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-xl-6 {
    margin-left: 40px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-xl-n6 {
    margin-top: -40px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-xl-n6 {
    margin-right: -40px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-xl-n6 {
    margin-bottom: -40px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-xl-n6 {
    margin-left: -40px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-xl-6 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-xl-6 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  /* responsive horizontal auto margins */
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
}
/* Set a $size padding to all sides at $breakpoint */
.p-0 {
  padding: 0 !important;
}

/* Set a $size padding to the top at $breakpoint */
.pt-0 {
  padding-top: 0 !important;
}

/* Set a $size padding to the right at $breakpoint */
.pr-0 {
  padding-right: 0 !important;
}

/* Set a $size padding to the bottom at $breakpoint */
.pb-0 {
  padding-bottom: 0 !important;
}

/* Set a $size padding to the left at $breakpoint */
.pl-0 {
  padding-left: 0 !important;
}

/* Set a $size padding to the left & right at $breakpoint */
.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

/* Set a $size padding to the top & bottom at $breakpoint */
.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Set a $size padding to all sides at $breakpoint */
.p-1 {
  padding: 4px !important;
}

/* Set a $size padding to the top at $breakpoint */
.pt-1 {
  padding-top: 4px !important;
}

/* Set a $size padding to the right at $breakpoint */
.pr-1 {
  padding-right: 4px !important;
}

/* Set a $size padding to the bottom at $breakpoint */
.pb-1 {
  padding-bottom: 4px !important;
}

/* Set a $size padding to the left at $breakpoint */
.pl-1 {
  padding-left: 4px !important;
}

/* Set a $size padding to the left & right at $breakpoint */
.px-1 {
  padding-right: 4px !important;
  padding-left: 4px !important;
}

/* Set a $size padding to the top & bottom at $breakpoint */
.py-1 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

/* Set a $size padding to all sides at $breakpoint */
.p-2 {
  padding: 8px !important;
}

/* Set a $size padding to the top at $breakpoint */
.pt-2 {
  padding-top: 8px !important;
}

/* Set a $size padding to the right at $breakpoint */
.pr-2 {
  padding-right: 8px !important;
}

/* Set a $size padding to the bottom at $breakpoint */
.pb-2 {
  padding-bottom: 8px !important;
}

/* Set a $size padding to the left at $breakpoint */
.pl-2 {
  padding-left: 8px !important;
}

/* Set a $size padding to the left & right at $breakpoint */
.px-2 {
  padding-right: 8px !important;
  padding-left: 8px !important;
}

/* Set a $size padding to the top & bottom at $breakpoint */
.py-2 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

/* Set a $size padding to all sides at $breakpoint */
.p-3 {
  padding: 16px !important;
}

/* Set a $size padding to the top at $breakpoint */
.pt-3 {
  padding-top: 16px !important;
}

/* Set a $size padding to the right at $breakpoint */
.pr-3 {
  padding-right: 16px !important;
}

/* Set a $size padding to the bottom at $breakpoint */
.pb-3 {
  padding-bottom: 16px !important;
}

/* Set a $size padding to the left at $breakpoint */
.pl-3 {
  padding-left: 16px !important;
}

/* Set a $size padding to the left & right at $breakpoint */
.px-3 {
  padding-right: 16px !important;
  padding-left: 16px !important;
}

/* Set a $size padding to the top & bottom at $breakpoint */
.py-3 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

/* Set a $size padding to all sides at $breakpoint */
.p-4 {
  padding: 24px !important;
}

/* Set a $size padding to the top at $breakpoint */
.pt-4 {
  padding-top: 24px !important;
}

/* Set a $size padding to the right at $breakpoint */
.pr-4 {
  padding-right: 24px !important;
}

/* Set a $size padding to the bottom at $breakpoint */
.pb-4 {
  padding-bottom: 24px !important;
}

/* Set a $size padding to the left at $breakpoint */
.pl-4 {
  padding-left: 24px !important;
}

/* Set a $size padding to the left & right at $breakpoint */
.px-4 {
  padding-right: 24px !important;
  padding-left: 24px !important;
}

/* Set a $size padding to the top & bottom at $breakpoint */
.py-4 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

/* Set a $size padding to all sides at $breakpoint */
.p-5 {
  padding: 32px !important;
}

/* Set a $size padding to the top at $breakpoint */
.pt-5 {
  padding-top: 32px !important;
}

/* Set a $size padding to the right at $breakpoint */
.pr-5 {
  padding-right: 32px !important;
}

/* Set a $size padding to the bottom at $breakpoint */
.pb-5 {
  padding-bottom: 32px !important;
}

/* Set a $size padding to the left at $breakpoint */
.pl-5 {
  padding-left: 32px !important;
}

/* Set a $size padding to the left & right at $breakpoint */
.px-5 {
  padding-right: 32px !important;
  padding-left: 32px !important;
}

/* Set a $size padding to the top & bottom at $breakpoint */
.py-5 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

/* Set a $size padding to all sides at $breakpoint */
.p-6 {
  padding: 40px !important;
}

/* Set a $size padding to the top at $breakpoint */
.pt-6 {
  padding-top: 40px !important;
}

/* Set a $size padding to the right at $breakpoint */
.pr-6 {
  padding-right: 40px !important;
}

/* Set a $size padding to the bottom at $breakpoint */
.pb-6 {
  padding-bottom: 40px !important;
}

/* Set a $size padding to the left at $breakpoint */
.pl-6 {
  padding-left: 40px !important;
}

/* Set a $size padding to the left & right at $breakpoint */
.px-6 {
  padding-right: 40px !important;
  padding-left: 40px !important;
}

/* Set a $size padding to the top & bottom at $breakpoint */
.py-6 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

@media (min-width: 544px) {
  /* Set a $size padding to all sides at $breakpoint */
  .p-sm-0 {
    padding: 0 !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-sm-0 {
    padding-top: 0 !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-sm-0 {
    padding-right: 0 !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-sm-0 {
    padding-left: 0 !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-sm-1 {
    padding: 4px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-sm-1 {
    padding-top: 4px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-sm-1 {
    padding-right: 4px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-sm-1 {
    padding-bottom: 4px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-sm-1 {
    padding-left: 4px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-sm-1 {
    padding-right: 4px !important;
    padding-left: 4px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-sm-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-sm-2 {
    padding: 8px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-sm-2 {
    padding-top: 8px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-sm-2 {
    padding-right: 8px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-sm-2 {
    padding-bottom: 8px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-sm-2 {
    padding-left: 8px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-sm-2 {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-sm-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-sm-3 {
    padding: 16px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-sm-3 {
    padding-top: 16px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-sm-3 {
    padding-right: 16px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-sm-3 {
    padding-bottom: 16px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-sm-3 {
    padding-left: 16px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-sm-3 {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-sm-3 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-sm-4 {
    padding: 24px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-sm-4 {
    padding-top: 24px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-sm-4 {
    padding-right: 24px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-sm-4 {
    padding-bottom: 24px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-sm-4 {
    padding-left: 24px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-sm-4 {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-sm-4 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-sm-5 {
    padding: 32px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-sm-5 {
    padding-top: 32px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-sm-5 {
    padding-right: 32px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-sm-5 {
    padding-bottom: 32px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-sm-5 {
    padding-left: 32px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-sm-5 {
    padding-right: 32px !important;
    padding-left: 32px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-sm-5 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-sm-6 {
    padding: 40px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-sm-6 {
    padding-top: 40px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-sm-6 {
    padding-right: 40px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-sm-6 {
    padding-bottom: 40px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-sm-6 {
    padding-left: 40px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-sm-6 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-sm-6 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}
@media (min-width: 768px) {
  /* Set a $size padding to all sides at $breakpoint */
  .p-md-0 {
    padding: 0 !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-md-0 {
    padding-top: 0 !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-md-0 {
    padding-right: 0 !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-md-0 {
    padding-left: 0 !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-md-1 {
    padding: 4px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-md-1 {
    padding-top: 4px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-md-1 {
    padding-right: 4px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-md-1 {
    padding-bottom: 4px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-md-1 {
    padding-left: 4px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-md-1 {
    padding-right: 4px !important;
    padding-left: 4px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-md-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-md-2 {
    padding: 8px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-md-2 {
    padding-top: 8px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-md-2 {
    padding-right: 8px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-md-2 {
    padding-bottom: 8px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-md-2 {
    padding-left: 8px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-md-2 {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-md-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-md-3 {
    padding: 16px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-md-3 {
    padding-top: 16px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-md-3 {
    padding-right: 16px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-md-3 {
    padding-bottom: 16px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-md-3 {
    padding-left: 16px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-md-3 {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-md-3 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-md-4 {
    padding: 24px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-md-4 {
    padding-top: 24px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-md-4 {
    padding-right: 24px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-md-4 {
    padding-bottom: 24px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-md-4 {
    padding-left: 24px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-md-4 {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-md-4 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-md-5 {
    padding: 32px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-md-5 {
    padding-top: 32px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-md-5 {
    padding-right: 32px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-md-5 {
    padding-bottom: 32px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-md-5 {
    padding-left: 32px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-md-5 {
    padding-right: 32px !important;
    padding-left: 32px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-md-5 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-md-6 {
    padding: 40px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-md-6 {
    padding-top: 40px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-md-6 {
    padding-right: 40px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-md-6 {
    padding-bottom: 40px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-md-6 {
    padding-left: 40px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-md-6 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-md-6 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}
@media (min-width: 1012px) {
  /* Set a $size padding to all sides at $breakpoint */
  .p-lg-0 {
    padding: 0 !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-lg-0 {
    padding-top: 0 !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-lg-0 {
    padding-right: 0 !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-lg-0 {
    padding-left: 0 !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-lg-1 {
    padding: 4px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-lg-1 {
    padding-top: 4px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-lg-1 {
    padding-right: 4px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-lg-1 {
    padding-bottom: 4px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-lg-1 {
    padding-left: 4px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-lg-1 {
    padding-right: 4px !important;
    padding-left: 4px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-lg-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-lg-2 {
    padding: 8px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-lg-2 {
    padding-top: 8px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-lg-2 {
    padding-right: 8px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-lg-2 {
    padding-bottom: 8px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-lg-2 {
    padding-left: 8px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-lg-2 {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-lg-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-lg-3 {
    padding: 16px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-lg-3 {
    padding-top: 16px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-lg-3 {
    padding-right: 16px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-lg-3 {
    padding-bottom: 16px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-lg-3 {
    padding-left: 16px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-lg-3 {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-lg-3 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-lg-4 {
    padding: 24px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-lg-4 {
    padding-top: 24px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-lg-4 {
    padding-right: 24px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-lg-4 {
    padding-bottom: 24px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-lg-4 {
    padding-left: 24px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-lg-4 {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-lg-4 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-lg-5 {
    padding: 32px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-lg-5 {
    padding-top: 32px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-lg-5 {
    padding-right: 32px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-lg-5 {
    padding-bottom: 32px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-lg-5 {
    padding-left: 32px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-lg-5 {
    padding-right: 32px !important;
    padding-left: 32px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-lg-5 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-lg-6 {
    padding: 40px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-lg-6 {
    padding-top: 40px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-lg-6 {
    padding-right: 40px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-lg-6 {
    padding-bottom: 40px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-lg-6 {
    padding-left: 40px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-lg-6 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-lg-6 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}
@media (min-width: 1280px) {
  /* Set a $size padding to all sides at $breakpoint */
  .p-xl-0 {
    padding: 0 !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-xl-0 {
    padding-top: 0 !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-xl-0 {
    padding-right: 0 !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-xl-0 {
    padding-left: 0 !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-xl-1 {
    padding: 4px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-xl-1 {
    padding-top: 4px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-xl-1 {
    padding-right: 4px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-xl-1 {
    padding-bottom: 4px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-xl-1 {
    padding-left: 4px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-xl-1 {
    padding-right: 4px !important;
    padding-left: 4px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-xl-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-xl-2 {
    padding: 8px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-xl-2 {
    padding-top: 8px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-xl-2 {
    padding-right: 8px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-xl-2 {
    padding-bottom: 8px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-xl-2 {
    padding-left: 8px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-xl-2 {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-xl-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-xl-3 {
    padding: 16px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-xl-3 {
    padding-top: 16px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-xl-3 {
    padding-right: 16px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-xl-3 {
    padding-bottom: 16px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-xl-3 {
    padding-left: 16px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-xl-3 {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-xl-3 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-xl-4 {
    padding: 24px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-xl-4 {
    padding-top: 24px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-xl-4 {
    padding-right: 24px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-xl-4 {
    padding-bottom: 24px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-xl-4 {
    padding-left: 24px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-xl-4 {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-xl-4 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-xl-5 {
    padding: 32px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-xl-5 {
    padding-top: 32px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-xl-5 {
    padding-right: 32px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-xl-5 {
    padding-bottom: 32px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-xl-5 {
    padding-left: 32px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-xl-5 {
    padding-right: 32px !important;
    padding-left: 32px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-xl-5 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-xl-6 {
    padding: 40px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-xl-6 {
    padding-top: 40px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-xl-6 {
    padding-right: 40px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-xl-6 {
    padding-bottom: 40px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-xl-6 {
    padding-left: 40px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-xl-6 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-xl-6 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}
.p-responsive {
  padding-right: 16px !important;
  padding-left: 16px !important;
}
@media (min-width: 544px) {
  .p-responsive {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }
}
@media (min-width: 1012px) {
  .p-responsive {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }
}

.d-block {
  display: block !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.d-table {
  display: table !important;
}

.d-table-cell {
  display: table-cell !important;
}

@media (min-width: 544px) {
  .d-sm-block {
    display: block !important;
  }

  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-sm-none {
    display: none !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }
}
@media (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }

  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-md-none {
    display: none !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }
}
@media (min-width: 1012px) {
  .d-lg-block {
    display: block !important;
  }

  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }
}
@media (min-width: 1280px) {
  .d-xl-block {
    display: block !important;
  }

  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-xl-none {
    display: none !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }
}
.v-hidden {
  visibility: hidden !important;
}

.v-visible {
  visibility: visible !important;
}

@media (max-width: 543px) {
  .hide-sm {
    display: none !important;
  }
}
@media (min-width: 544px) and (max-width: 767px) {
  .hide-md {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1011px) {
  .hide-lg {
    display: none !important;
  }
}
@media (min-width: 1012px) {
  .hide-xl {
    display: none !important;
  }
}
/* Set the table-layout to fixed */
.table-fixed {
  table-layout: fixed !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  word-wrap: normal;
  border: 0;
}

.show-on-focus {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
.show-on-focus:focus {
  z-index: 20;
  width: auto;
  height: auto;
  clip: auto;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("./fonts/space-grotesk/SpaceGrotesk-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("./fonts/space-grotesk/SpaceGrotesk-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "Fira";
  src: url("./fonts/space-grotesk/SpaceGrotesk-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Fira";
  src: url("./fonts/fira/FiraCode-Regular.woff2") format("woff2"), url("./fonts/fira/FiraCode-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Font Awesome";
  font-style: normal;
  font-weight: 900;
  font-display: auto;
  src: url("fonts/fa/fa-solid-900.eot");
  src: url("fonts/fa/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("fonts/fa/fa-solid-900.woff2") format("woff2"), url("fonts/fa/fa-solid-900.woff") format("woff"), url("fonts/fa/fa-solid-900.ttf") format("truetype"), url("fonts/fa/fa-solid-900.svg#fontawesome") format("svg");
}
.fa,
.fas {
  font-family: "Font Awesome";
  font-weight: 900;
}

@font-face {
  font-family: "Font Awesome";
  font-style: normal;
  font-weight: normal;
  font-display: auto;
  src: url("fonts/fa/fa-brands-400.eot");
  src: url("fonts/fa/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("fonts/fa/fa-brands-400.woff2") format("woff2"), url("fonts/fa/fa-brands-400.woff") format("woff"), url("fonts/fa/fa-brands-400.ttf") format("truetype"), url("fonts/fa/fa-brands-400.svg#fontawesome") format("svg");
}
.fab {
  font-family: "Font Awesome";
  font-weight: 400;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

ol, ul {
  list-style: none;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, pt-6 pb-6, main,
audio, canvas, video {
  display: block;
}

.h1,
.rte h1,
.rte .h1 {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 45px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.h1:last-child,
.rte h1:last-child,
.rte .h1:last-child {
  margin-bottom: 0;
}
@media (min-width: 1012px) {
  .h1,
.rte h1,
.rte .h1 {
    font-size: 48px;
  }
}

.h2,
.rte h2,
.rte .h2 {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 125%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.h2:last-child,
.rte h2:last-child,
.rte .h2:last-child {
  margin-bottom: 0;
}
@media (min-width: 1012px) {
  .h2,
.rte h2,
.rte .h2 {
    font-size: 40px;
  }
}

.h3,
.rte h3,
.rte .h3 {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 125%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.h3:last-child,
.rte h3:last-child,
.rte .h3:last-child {
  margin-bottom: 0;
}
@media (min-width: 1012px) {
  .h3,
.rte h3,
.rte .h3 {
    font-size: 32px;
  }
}

.rte.longform h2,
.rte.post__content h2 {
  font-weight: 600 !important;
  text-transform: uppercase;
}

.h4,
.rte h4,
.rte .h4 {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.h4:last-child,
.rte h4:last-child,
.rte .h4:last-child {
  margin-bottom: 0;
}
@media (min-width: 1012px) {
  .h4,
.rte h4,
.rte .h4 {
    font-size: 20px;
  }
}

.h5,
.rte h5,
.rte .h5 {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.h5:last-child,
.rte h5:last-child,
.rte .h5:last-child {
  margin-bottom: 0;
}
@media (min-width: 1012px) {
  .h5,
.rte h5,
.rte .h5 {
    font-size: 16px;
  }
}

.h6,
.rte h6,
.rte .h6 {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 14px;
}
.h6:last-child,
.rte h6:last-child,
.rte .h6:last-child {
  margin-bottom: 0;
}
@media (min-width: 1012px) {
  .h6,
.rte h6,
.rte .h6 {
    font-size: 16px;
  }
}
@media (min-width: 1012px) {
  .h6,
.rte h6,
.rte .h6 {
    font-size: 14px;
  }
}

.font-weight-600 {
  font-weight: 600;
}

.font-weight-700,
.rte b,
.rte strong {
  font-weight: 700;
}

.p,
p {
  display: block;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0;
}
.p + p,
p + p {
  margin-top: 18px;
}

.p-lg {
  display: block;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 16px;
}
@media (min-width: 1012px) {
  .p-lg {
    font-size: 20px;
  }
}

.p-sm,
small {
  display: block;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 14px;
}

.link {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.link:last-child {
  margin-bottom: 0;
}
@media (min-width: 1012px) {
  .link {
    font-size: 16px;
  }
}

.text-white p {
  color: #ffffff;
}

.text-brand p {
  color: #006BED;
}

.font-weight-500 {
  font-weight: 500;
}

.font-weight-400 {
  font-weight: 400;
}

.caption-sm {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.5;
  color: #A1A1A1;
  margin-top: 6px;
}

p.has-x-large-font-size,
li.has-x-large-font-size,
ul.has-x-large-font-size,
ol.has-x-large-font-size,
.editor-styles-wrapper p.has-x-large-font-size,
.editor-styles-wrapper li.has-x-large-font-size {
  font-size: 20px !important;
}
@media (min-width: 1012px) {
  p.has-x-large-font-size,
li.has-x-large-font-size,
ul.has-x-large-font-size,
ol.has-x-large-font-size,
.editor-styles-wrapper p.has-x-large-font-size,
.editor-styles-wrapper li.has-x-large-font-size {
    font-size: 24px !important;
  }
}

p.has-large-font-size,
li.has-large-font-size,
ul.has-large-font-size,
ol.has-large-font-size,
.editor-styles-wrapper p.has-large-font-size,
.editor-styles-wrapper li.has-large-font-size,
.editor-styles-wrapper ul.has-large-font-size,
.editor-styles-wrapper ol.has-large-font-size {
  font-size: 16px !important;
}
@media (min-width: 1012px) {
  p.has-large-font-size,
li.has-large-font-size,
ul.has-large-font-size,
ol.has-large-font-size,
.editor-styles-wrapper p.has-large-font-size,
.editor-styles-wrapper li.has-large-font-size,
.editor-styles-wrapper ul.has-large-font-size,
.editor-styles-wrapper ol.has-large-font-size {
    font-size: 20px !important;
  }
}

p.has-medium-font-size,
ul.has-medium-font-size,
ol.has-medium-font-size,
li.has-medium-font-size,
.editor-styles-wrapper p.has-medium-font-size,
.editor-styles-wrapper ul.has-medium-font-size,
.editor-styles-wrapper ol.has-medium-font-size,
.editor-styles-wrapper li.has-medium-font-size {
  font-size: 16px !important;
}
@media (min-width: 1012px) {
  p.has-medium-font-size,
ul.has-medium-font-size,
ol.has-medium-font-size,
li.has-medium-font-size,
.editor-styles-wrapper p.has-medium-font-size,
.editor-styles-wrapper ul.has-medium-font-size,
.editor-styles-wrapper ol.has-medium-font-size,
.editor-styles-wrapper li.has-medium-font-size {
    font-size: 16px !important;
  }
}

p.has-small-font-size,
li.has-small-font-size,
ul.has-small-font-size,
ol.has-small-font-size,
.editor-styles-wrapper p.has-small-font-size,
.editor-styles-wrapper li.has-small-font-size,
.editor-styles-wrapper ul.has-small-font-size,
.editor-styles-wrapper ol.has-small-font-size {
  font-size: 14px !important;
}
@media (min-width: 1012px) {
  p.has-small-font-size,
li.has-small-font-size,
ul.has-small-font-size,
ol.has-small-font-size,
.editor-styles-wrapper p.has-small-font-size,
.editor-styles-wrapper li.has-small-font-size,
.editor-styles-wrapper ul.has-small-font-size,
.editor-styles-wrapper ol.has-small-font-size {
    font-size: 14px !important;
  }
}

.btn,
.wp-block-button__link {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 231px;
  width: 231px;
  height: 48px;
  border-radius: 0;
  text-align: center;
  width: auto;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  z-index: 1;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  -webkit-transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}
.btn:hover,
.wp-block-button__link:hover {
  cursor: pointer;
  color: #ffffff;
  background: #0366d6;
  border-color: #0366d6;
}
.btn:hover svg,
.btn:hover box-icon,
.wp-block-button__link:hover svg,
.wp-block-button__link:hover box-icon {
  -webkit-transform: translate3d(3px, 0, 0);
  transform: translate3d(3px, 0, 0);
}
.btn[disabled],
.wp-block-button__link[disabled] {
  opacity: 0.2;
  pointer-events: none;
}

.btn-hover {
  position: relative;
  z-index: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.btn-hover > span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  white-space: nowrap;
  text-align: center;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  z-index: 2;
}

@-webkit-keyframes noise-anim {
  0% {
    clip: rect(99px, 1000px, 94px, 0);
  }
  5% {
    clip: rect(20px, 1000px, 24px, 0);
  }
  10% {
    clip: rect(81px, 1000px, 20px, 0);
  }
  15% {
    clip: rect(69px, 1000px, 47px, 0);
  }
  20% {
    clip: rect(55px, 1000px, 45px, 0);
  }
  25% {
    clip: rect(89px, 1000px, 73px, 0);
  }
  30% {
    clip: rect(19px, 1000px, 7px, 0);
  }
  35% {
    clip: rect(13px, 1000px, 68px, 0);
  }
  40% {
    clip: rect(16px, 1000px, 40px, 0);
  }
  45% {
    clip: rect(9px, 1000px, 7px, 0);
  }
  50% {
    clip: rect(80px, 1000px, 34px, 0);
  }
  55% {
    clip: rect(63px, 1000px, 40px, 0);
  }
  60% {
    clip: rect(88px, 1000px, 25px, 0);
  }
  65% {
    clip: rect(27px, 1000px, 95px, 0);
  }
  70% {
    clip: rect(70px, 1000px, 25px, 0);
  }
  75% {
    clip: rect(28px, 1000px, 49px, 0);
  }
  80% {
    clip: rect(37px, 1000px, 10px, 0);
  }
  85% {
    clip: rect(75px, 1000px, 83px, 0);
  }
  90% {
    clip: rect(28px, 1000px, 20px, 0);
  }
  95% {
    clip: rect(55px, 1000px, 41px, 0);
  }
  100% {
    clip: rect(33px, 1000px, 34px, 0);
  }
}

@keyframes noise-anim {
  0% {
    clip: rect(99px, 1000px, 94px, 0);
  }
  5% {
    clip: rect(20px, 1000px, 24px, 0);
  }
  10% {
    clip: rect(81px, 1000px, 20px, 0);
  }
  15% {
    clip: rect(69px, 1000px, 47px, 0);
  }
  20% {
    clip: rect(55px, 1000px, 45px, 0);
  }
  25% {
    clip: rect(89px, 1000px, 73px, 0);
  }
  30% {
    clip: rect(19px, 1000px, 7px, 0);
  }
  35% {
    clip: rect(13px, 1000px, 68px, 0);
  }
  40% {
    clip: rect(16px, 1000px, 40px, 0);
  }
  45% {
    clip: rect(9px, 1000px, 7px, 0);
  }
  50% {
    clip: rect(80px, 1000px, 34px, 0);
  }
  55% {
    clip: rect(63px, 1000px, 40px, 0);
  }
  60% {
    clip: rect(88px, 1000px, 25px, 0);
  }
  65% {
    clip: rect(27px, 1000px, 95px, 0);
  }
  70% {
    clip: rect(70px, 1000px, 25px, 0);
  }
  75% {
    clip: rect(28px, 1000px, 49px, 0);
  }
  80% {
    clip: rect(37px, 1000px, 10px, 0);
  }
  85% {
    clip: rect(75px, 1000px, 83px, 0);
  }
  90% {
    clip: rect(28px, 1000px, 20px, 0);
  }
  95% {
    clip: rect(55px, 1000px, 41px, 0);
  }
  100% {
    clip: rect(33px, 1000px, 34px, 0);
  }
}
@-webkit-keyframes noise-anim-2 {
  0% {
    clip: rect(61px, 1000px, 37px, 0);
  }
  5% {
    clip: rect(63px, 1000px, 12px, 0);
  }
  10% {
    clip: rect(91px, 1000px, 51px, 0);
  }
  15% {
    clip: rect(17px, 1000px, 55px, 0);
  }
  20% {
    clip: rect(60px, 1000px, 59px, 0);
  }
  25% {
    clip: rect(53px, 1000px, 91px, 0);
  }
  30% {
    clip: rect(28px, 1000px, 18px, 0);
  }
  35% {
    clip: rect(24px, 1000px, 24px, 0);
  }
  40% {
    clip: rect(52px, 1000px, 97px, 0);
  }
  45% {
    clip: rect(9px, 1000px, 7px, 0);
  }
  50% {
    clip: rect(57px, 1000px, 89px, 0);
  }
  55% {
    clip: rect(84px, 1000px, 19px, 0);
  }
  60% {
    clip: rect(48px, 1000px, 82px, 0);
  }
  65% {
    clip: rect(42px, 1000px, 100px, 0);
  }
  70% {
    clip: rect(1px, 1000px, 67px, 0);
  }
  75% {
    clip: rect(18px, 1000px, 54px, 0);
  }
  80% {
    clip: rect(26px, 1000px, 88px, 0);
  }
  85% {
    clip: rect(14px, 1000px, 61px, 0);
  }
  90% {
    clip: rect(49px, 1000px, 50px, 0);
  }
  95% {
    clip: rect(62px, 1000px, 87px, 0);
  }
  100% {
    clip: rect(69px, 1000px, 10px, 0);
  }
}
@keyframes noise-anim-2 {
  0% {
    clip: rect(61px, 1000px, 37px, 0);
  }
  5% {
    clip: rect(63px, 1000px, 12px, 0);
  }
  10% {
    clip: rect(91px, 1000px, 51px, 0);
  }
  15% {
    clip: rect(17px, 1000px, 55px, 0);
  }
  20% {
    clip: rect(60px, 1000px, 59px, 0);
  }
  25% {
    clip: rect(53px, 1000px, 91px, 0);
  }
  30% {
    clip: rect(28px, 1000px, 18px, 0);
  }
  35% {
    clip: rect(24px, 1000px, 24px, 0);
  }
  40% {
    clip: rect(52px, 1000px, 97px, 0);
  }
  45% {
    clip: rect(9px, 1000px, 7px, 0);
  }
  50% {
    clip: rect(57px, 1000px, 89px, 0);
  }
  55% {
    clip: rect(84px, 1000px, 19px, 0);
  }
  60% {
    clip: rect(48px, 1000px, 82px, 0);
  }
  65% {
    clip: rect(42px, 1000px, 100px, 0);
  }
  70% {
    clip: rect(1px, 1000px, 67px, 0);
  }
  75% {
    clip: rect(18px, 1000px, 54px, 0);
  }
  80% {
    clip: rect(26px, 1000px, 88px, 0);
  }
  85% {
    clip: rect(14px, 1000px, 61px, 0);
  }
  90% {
    clip: rect(49px, 1000px, 50px, 0);
  }
  95% {
    clip: rect(62px, 1000px, 87px, 0);
  }
  100% {
    clip: rect(69px, 1000px, 10px, 0);
  }
}
@-webkit-keyframes flicker {
  0% {
    clip: rect(11px, 1000px, 75px, 0);
  }
  5% {
    clip: rect(60px, 1000px, 86px, 0);
  }
  10% {
    clip: rect(8px, 1000px, 55px, 0);
  }
  15% {
    clip: rect(23px, 1000px, 88px, 0);
  }
  20% {
    clip: rect(14px, 1000px, 55px, 0);
  }
  25% {
    clip: rect(38px, 1000px, 41px, 0);
  }
  30% {
    clip: rect(21px, 1000px, 4px, 0);
  }
  35% {
    clip: rect(62px, 1000px, 44px, 0);
  }
  40% {
    clip: rect(69px, 1000px, 74px, 0);
  }
  45% {
    clip: rect(32px, 1000px, 53px, 0);
  }
  50% {
    clip: rect(63px, 1000px, 6px, 0);
  }
  55% {
    clip: rect(40px, 1000px, 5px, 0);
  }
  60% {
    clip: rect(30px, 1000px, 18px, 0);
  }
  65% {
    clip: rect(85px, 1000px, 72px, 0);
  }
  70% {
    clip: rect(25px, 1000px, 100px, 0);
  }
  75% {
    clip: rect(25px, 1000px, 44px, 0);
  }
  80% {
    clip: rect(48px, 1000px, 65px, 0);
  }
  85% {
    clip: rect(70px, 1000px, 10px, 0);
  }
  90% {
    clip: rect(5px, 1000px, 75px, 0);
  }
  95% {
    clip: rect(28px, 1000px, 34px, 0);
  }
  100% {
    clip: rect(45px, 1000px, 37px, 0);
  }
}
@keyframes flicker {
  0% {
    clip: rect(11px, 1000px, 75px, 0);
  }
  5% {
    clip: rect(60px, 1000px, 86px, 0);
  }
  10% {
    clip: rect(8px, 1000px, 55px, 0);
  }
  15% {
    clip: rect(23px, 1000px, 88px, 0);
  }
  20% {
    clip: rect(14px, 1000px, 55px, 0);
  }
  25% {
    clip: rect(38px, 1000px, 41px, 0);
  }
  30% {
    clip: rect(21px, 1000px, 4px, 0);
  }
  35% {
    clip: rect(62px, 1000px, 44px, 0);
  }
  40% {
    clip: rect(69px, 1000px, 74px, 0);
  }
  45% {
    clip: rect(32px, 1000px, 53px, 0);
  }
  50% {
    clip: rect(63px, 1000px, 6px, 0);
  }
  55% {
    clip: rect(40px, 1000px, 5px, 0);
  }
  60% {
    clip: rect(30px, 1000px, 18px, 0);
  }
  65% {
    clip: rect(85px, 1000px, 72px, 0);
  }
  70% {
    clip: rect(25px, 1000px, 100px, 0);
  }
  75% {
    clip: rect(25px, 1000px, 44px, 0);
  }
  80% {
    clip: rect(48px, 1000px, 65px, 0);
  }
  85% {
    clip: rect(70px, 1000px, 10px, 0);
  }
  90% {
    clip: rect(5px, 1000px, 75px, 0);
  }
  95% {
    clip: rect(28px, 1000px, 34px, 0);
  }
  100% {
    clip: rect(45px, 1000px, 37px, 0);
  }
}
@-webkit-keyframes text-flicker {
  0% {
    opacity: 0.6;
    text-shadow: 0px 0px 29px #f21616;
  }
  2% {
    opacity: 1;
    text-shadow: 0px 0px 29px #f21616;
  }
  12% {
    opacity: 0.2;
    text-shadow: 0px 0px #f21616;
  }
  40% {
    opacity: 0.8;
    text-shadow: 0px 0px 29px #f21616;
  }
  60% {
    opacity: 0.4;
    text-shadow: 0px 0px 29px #f21616;
  }
  70% {
    opacity: 0.7;
    text-shadow: 0px 0px 29px #f21616;
  }
  72% {
    opacity: 0;
    text-shadow: 0px 0px 29px #f21616;
  }
  77% {
    opacity: 0.9;
    text-shadow: 0px 0px 29px #f21616;
  }
  100% {
    opacity: 0.9;
    text-shadow: 0px 0px 29px #f21616;
  }
}
@keyframes text-flicker {
  0% {
    opacity: 0.6;
    text-shadow: 0px 0px 29px #f21616;
  }
  2% {
    opacity: 1;
    text-shadow: 0px 0px 29px #f21616;
  }
  12% {
    opacity: 0.2;
    text-shadow: 0px 0px #f21616;
  }
  40% {
    opacity: 0.8;
    text-shadow: 0px 0px 29px #f21616;
  }
  60% {
    opacity: 0.4;
    text-shadow: 0px 0px 29px #f21616;
  }
  70% {
    opacity: 0.7;
    text-shadow: 0px 0px 29px #f21616;
  }
  72% {
    opacity: 0;
    text-shadow: 0px 0px 29px #f21616;
  }
  77% {
    opacity: 0.9;
    text-shadow: 0px 0px 29px #f21616;
  }
  100% {
    opacity: 0.9;
    text-shadow: 0px 0px 29px #f21616;
  }
}
.btn-hover > span:after {
  content: attr(data-text);
  position: absolute;
  left: 2px;
  text-shadow: -1px 0 #006BED;
  top: 0;
  color: white;
  background: black;
  overflow: hidden;
  clip: rect(0, 900px, 0, 0);
  animation: noise-anim 2s infinite linear alternate-reverse;
  display: none;
}
.btn-hover > span:before {
  content: attr(data-text);
  position: absolute;
  left: -2px;
  text-shadow: 1px 0 blue;
  top: 0;
  color: white;
  background: black;
  overflow: hidden;
  clip: rect(0, 900px, 0, 0);
  animation: noise-anim-2 3s infinite linear alternate-reverse;
  display: none;
}

.btn-hover:hover .flicker {
  -webkit-animation: text-flicker 1s linear 1;
  animation: text-flicker 1s linear 1;
}
.btn-hover:hover span:before, .btn-hover:hover span:after {
  display: block;
}

.icon-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.icon-link svg {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.icon-link span {
  display: block;
}
.icon-link span + svg {
  margin-left: 12px;
}
.icon-link svg:first-child {
  margin-right: 12px;
}

a.icon-link {
  font-weight: 500;
}
a.icon-link:hover span + svg {
  -webkit-transform: translate3d(3px, 0, 0);
  transform: translate3d(3px, 0, 0);
}
a.icon-link:hover svg:first-child {
  -webkit-transform: translate3d(-3px, 0, 0);
  transform: translate3d(-3px, 0, 0);
}

.rte .link,
a.link {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-bottom: 4px;
  text-decoration: none;
  font-weight: 500;
  color: #006BED;
}
.rte .link:after,
a.link:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #006BED;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.rte .link.text-white,
a.link.text-white {
  color: #ffffff;
}
.rte .link.text-white:after,
a.link.text-white:after {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  background: #ffffff;
}
.rte .link:hover,
a.link:hover {
  text-decoration: none;
  opacity: 1;
}
.rte .link:hover:after,
a.link:hover:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.noTouch .tel,
.noTouch .tel:hover {
  cursor: text;
}

html,
body {
  background: #000000;
  font-size: 62.5%;
}

body {
  background: #000000;
  color: #ffffff;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
body.page-ready {
  opacity: 1;
}
body.fade-out {
  opacity: 0;
}
body.fade-out.page-ready {
  opacity: 1 !important;
}

body,
input,
button,
select,
textarea {
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  color: #ffffff;
}
@media (min-width: 768px) {
  body,
input,
button,
select,
textarea {
    font-size: 16px;
  }
}

main#primary {
  min-height: calc(100vh - 146px);
}

.grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
  text-decoration: none;
}
a[href^="tel:"]:hover {
  cursor: default;
}

[data-scroll-to],
[data-click-target],
[data-click] {
  cursor: pointer;
}

img,
video {
  height: auto;
  max-width: 100%;
  display: block;
}

figure,
img {
  margin: 0;
  padding: 0;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

picture > * {
  width: 100%;
  height: auto;
}

::-moz-selection {
  background: #006BED;
}

::selection {
  background: #006BED;
}

::-moz-selection {
  background: #006BED;
}

hr {
  margin: 0;
  padding: 0;
  border: none;
  border-top: 1px solid #474747;
}

address {
  font-style: normal !important;
}

.wrapper {
  width: 92%;
  margin: 0 auto;
  max-width: 1248px;
  -webkit-transition: max-width 0.4s ease;
  transition: max-width 0.4s ease;
}

.wrapper-md {
  width: 92%;
  margin: 0 auto;
  max-width: 1248px;
  -webkit-transition: max-width 0.4s ease;
  transition: max-width 0.4s ease;
  max-width: 1032px;
}

.wrapper-wide {
  width: 92%;
  margin: 0 auto;
  max-width: 1248px;
  -webkit-transition: max-width 0.4s ease;
  transition: max-width 0.4s ease;
  max-width: 1520px;
}

.wrapper-thin {
  width: 92%;
  margin: 0 auto;
  max-width: 1248px;
  -webkit-transition: max-width 0.4s ease;
  transition: max-width 0.4s ease;
  max-width: 812px;
}

.wrapper-sm {
  width: 92%;
  margin: 0 auto;
  max-width: 1248px;
  -webkit-transition: max-width 0.4s ease;
  transition: max-width 0.4s ease;
  max-width: 600px;
}

.wrapper-full {
  max-width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.wrapper-after-md {
  width: 100%;
}
@media (min-width: 768px) {
  .wrapper-after-md {
    width: 92%;
    margin: 0 auto;
    max-width: 1248px;
    -webkit-transition: max-width 0.4s ease;
    transition: max-width 0.4s ease;
    max-width: 1248px;
  }
}

@media (max-width: 767px) {
  .wrapper-before-md {
    width: 92%;
    margin: 0 auto;
    max-width: 1248px;
    -webkit-transition: max-width 0.4s ease;
    transition: max-width 0.4s ease;
  }
}

.mb-7 {
  margin-bottom: 80px;
}
@media (min-width: 1012px) {
  .mb-7 {
    margin-bottom: 120px;
  }
}

.mt-7 {
  margin-top: 80px;
}
@media (min-width: 1012px) {
  .mt-7 {
    margin-top: 120px;
  }
}

.my-7 {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (min-width: 1012px) {
  .my-7 {
    margin-top: 120px;
    margin-bottom: 120px;
  }
}

.py-7 {
  padding-top: 70px;
  padding-bottom: 70px;
}
@media (min-width: 1012px) {
  .py-7 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

.pt-7 {
  padding-top: 70px;
}
@media (min-width: 1012px) {
  .pt-7 {
    padding-top: 90px;
  }
}

.my-8 {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (min-width: 1012px) {
  .my-8 {
    margin-top: 180px;
    margin-bottom: 180px;
  }
}

.py-8 {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (min-width: 1012px) {
  .py-8 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.pt-8 {
  padding-top: 80px;
}
@media (min-width: 1012px) {
  .pt-8 {
    padding-top: 120px;
  }
}

.pb-8 {
  padding-bottom: 80px;
}
@media (min-width: 1012px) {
  .pb-8 {
    padding-bottom: 120px;
  }
}

.my-9 {
  margin-top: 180px;
  margin-bottom: 180px;
}
@media (min-width: 1012px) {
  .my-9 {
    margin-top: 220px;
    margin-bottom: 220px;
  }
}

.py-9 {
  padding-top: 180px;
  padding-bottom: 180px;
}
@media (min-width: 1012px) {
  .py-9 {
    padding-top: 220px;
    padding-bottom: 220px;
  }
}

.mt-9 {
  margin-top: 220px;
}

body {
  padding-top: 72px;
}

.site-header {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11;
  color: #ffffff;
  background: #000000;
  -webkit-transition: opacity 0.4s ease, background 0.4s ease;
  transition: opacity 0.4s ease, background 0.4s ease;
}
.site-header .wrapper-wide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 72px;
  padding: 0;
  max-width: 1800px;
}

body.is-sticky .site-header {
  opacity: 0;
  pointer-events: none;
}
body.is-sticky.scrolling-up .site-header {
  opacity: 1;
  pointer-events: inherit;
  background: #000000;
}

.site-branding {
  width: 40px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.site-branding:after {
  content: "";
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, black 0%, rgba(0, 0, 0, 0) 68%);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate3d(-100%, -100%, 0);
  transform: translate3d(-100%, -100%, 0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: -webkit-transform 0.8s ease-in-out;
  transition: -webkit-transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out, -webkit-transform 0.8s ease-in-out;
  pointer-events: none;
}
.site-branding:hover:after {
  -webkit-transform: translate3d(100%, 100%, 0);
  transform: translate3d(100%, 100%, 0);
}
.site-branding a {
  display: block;
  max-width: 40px;
}
@media (min-width: 960px) {
  .site-branding {
    margin-left: 0;
  }
}

.desktop-navigation {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
}
@media (max-width: 959px) {
  .desktop-navigation {
    display: none;
  }
}
.desktop-navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.desktop-navigation ul li {
  margin: 0 12px;
}
@media (min-width: 1280px) {
  .desktop-navigation ul li {
    margin: 0 16px;
  }
}
.desktop-navigation ul li.disabled, .desktop-navigation ul li.disabled a {
  pointer-events: none;
  opacity: 0.6;
}
.desktop-navigation li.st-jude a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.desktop-navigation li.st-jude a:after {
  content: "";
  display: block;
  width: 25px;
  height: 16px;
  margin-left: 6px;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  background: url("./images/st-jude.svg") center/cover no-repeat;
}
.desktop-navigation a {
  position: relative;
  display: block;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 0;
  letter-spacing: 0.02em;
}
.desktop-navigation a.external-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.desktop-navigation a.external-link:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin-left: 6px;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  background: url("./images/svgs/external.svg") center/cover no-repeat;
}
.desktop-navigation a:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #006BED;
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.desktop-navigation a:hover:before {
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.desktop-navigation li.current-menu-item a:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.desktop-navigation .menu-item-has-children {
  position: relative;
}
.desktop-navigation .menu-item-has-children > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.desktop-navigation .menu-item-has-children > a svg {
  width: 18px;
  min-width: 18px;
  margin-left: 6px;
  fill: #ffffff;
}

.desktop-navigation .sub-menu {
  position: absolute;
  top: 100%;
  left: -24px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  color: #ffffff;
  display: block;
  min-width: 200px;
  padding: 12px 0;
  display: none;
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
}
.desktop-navigation .sub-menu li + li {
  margin: 0 0 4px 0 !important;
}
.desktop-navigation .sub-menu a {
  display: block;
  text-decoration: none;
  padding: 8px 12px;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.desktop-navigation .sub-menu a:before {
  display: none;
}
.desktop-navigation .sub-menu a:hover {
  opacity: 0.6;
}
.desktop-navigation .sub-menu:hover {
  display: block;
}

.desktop-navigation .menu-item-has-children:hover .sub-menu {
  display: block;
}

.menu-toggle {
  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;
  width: auto;
  padding: 0 4%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  padding-left: 54px;
  color: #ffffff;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}
@media (min-width: 960px) {
  .menu-toggle {
    display: none;
  }
}

.burger {
  display: block;
  position: relative;
  width: 35px;
  height: 19px;
}
.burger span {
  display: block;
  width: 100%;
  height: 1px;
  background: #ffffff;
  position: absolute;
  -webkit-transition: top 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  transition: top 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, top 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, top 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  -webkit-transform-origin: center;
  transform-origin: center;
}

.mt-t {
  top: 0;
}

.mt-m {
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

.mt-b {
  top: 100%;
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}

body:not(.menu-is-open) .burger:hover span {
  -webkit-transform: scaleX(0.7);
  transform: scaleX(0.7);
}

body.menu-is-open .mt-t {
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0) rotate(45deg) scaleX(0.8);
  transform: translate3d(0, -50%, 0) rotate(45deg) scaleX(0.8);
}
body.menu-is-open .mt-m {
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0) scaleX(0);
  transform: translate3d(0, -50%, 0) scaleX(0);
}
body.menu-is-open .mt-b {
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0) rotate(-45deg) scaleX(0.8);
  transform: translate3d(0, -50%, 0) rotate(-45deg) scaleX(0.8);
}
body.menu-is-open .burger:hover span {
  -webkit-transform: scaleX(0.7);
  transform: scaleX(0.7);
}

body.logged-in.admin-bar #wpadminbar {
  position: fixed;
}
body.logged-in.admin-bar #wpadminbar #wp-admin-bar-search {
  display: none !important;
}
body.logged-in.admin-bar #wpadminbar input[type=submit] {
  border: none !important;
  background: transparent !important;
  text-align: left !important;
}
body.logged-in.admin-bar .site-header {
  top: 46px;
}
body.logged-in.admin-bar .navigation-drawer {
  top: 112px;
}
@media (min-width: 783px) {
  body.logged-in.admin-bar .site-header {
    top: 32px;
  }
  body.logged-in.admin-bar .navigation-drawer {
    top: 98px;
  }
}

.navigation-drawer {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000000;
  top: 72px;
  left: 0;
  z-index: 7;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  overflow-y: auto;
  z-index: 11;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media (min-width: 960px) {
  .navigation-drawer {
    display: none;
  }
}
.navigation-drawer > * {
  overflow: hidden;
  min-height: calc(100% - 66px);
  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-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-bottom: 65px;
}
.navigation-drawer > * > ul {
  margin: 48px 4%;
  text-align: center;
}
@media (min-width: 960px) {
  .navigation-drawer > * > ul {
    margin-left: auto;
    margin-right: auto;
    width: 480px;
  }
}
.navigation-drawer > * > ul li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navigation-drawer > * > ul li.disabled, .navigation-drawer > * > ul li.disabled a {
  pointer-events: none;
  opacity: 0.6;
}
.navigation-drawer a {
  font-weight: 400;
  display: block;
  padding: 6px 0;
  font-size: 30px;
  color: #ffffff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  -webkit-transition: color 0.4s ease, opacity 0.4s ease;
  transition: color 0.4s ease, opacity 0.4s ease;
}
.navigation-drawer a.external-link {
  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;
}
.navigation-drawer a.external-link:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  background: url("./images/svgs/external.svg") center/cover no-repeat;
}
@media (min-width: 768px) {
  .navigation-drawer a {
    font-size: 24px;
  }
}
.navigation-drawer a:hover {
  opacity: 0.6;
}
.navigation-drawer li.current-menu-item a {
  color: #006BED;
}

body.menu-is-open {
  overflow: hidden;
}
body.menu-is-open .site-header {
  background: #000000;
}
body.menu-is-open .navigation-drawer {
  opacity: 1;
  pointer-events: inherit;
}
body.menu-is-open .navigation-screen {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
}
body.menu-is-open .navigation-screen:hover {
  cursor: crosshair;
}

li.menu-item {
  border-radius: 0;
  padding: 0;
  border: none;
}
li.menu-item:hover {
  background: transparent;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}

.row--align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.row--flush {
  margin-left: -15px;
  margin-right: -15px;
  margin-left: 0;
  margin-right: 0;
}
.row--flush:after {
  content: "";
  display: table;
  clear: both;
}
.row--flush *[class*=col--xs--],
.row--flush *[class*=col--sm--],
.row--flush *[class*=col--md--],
.row--flush *[class*=col--lg--] {
  padding-left: 0;
  padding-right: 0;
}

.col--xs--1, .col--sm--1, .col--md--1, .col--lg--1, .col--xs--2, .col--sm--2, .col--md--2, .col--lg--2, .col--xs--3, .col--sm--3, .col--md--3, .col--lg--3, .col--xs--4, .col--sm--4, .col--md--4, .col--lg--4, .col--xs--5, .col--sm--5, .col--md--5, .col--lg--5, .col--xs--6, .col--sm--6, .col--md--6, .col--lg--6, .col--xs--7, .col--sm--7, .col--md--7, .col--lg--7, .col--xs--8, .col--sm--8, .col--md--8, .col--lg--8, .col--xs--9, .col--sm--9, .col--md--9, .col--lg--9, .col--xs--10, .col--sm--10, .col--md--10, .col--lg--10, .col--xs--11, .col--sm--11, .col--md--11, .col--lg--11, .col--xs--12, .col--sm--12, .col--md--12, .col--lg--12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col--xs--1 {
  width: 8.3333333333%;
}

.col--xs--2 {
  width: 16.6666666667%;
}

.col--xs--3 {
  width: 25%;
}

.col--xs--4 {
  width: 33.3333333333%;
}

.col--xs--5 {
  width: 41.6666666667%;
}

.col--xs--6 {
  width: 50%;
}

.col--xs--7 {
  width: 58.3333333333%;
}

.col--xs--8 {
  width: 66.6666666667%;
}

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

.col--xs--10 {
  width: 83.3333333333%;
}

.col--xs--11 {
  width: 91.6666666667%;
}

.col--xs--12 {
  width: 100%;
}

.col--xs--pull--0 {
  right: auto;
}

.col--xs--pull--1 {
  right: 8.3333333333%;
}

.col--xs--pull--2 {
  right: 16.6666666667%;
}

.col--xs--pull--3 {
  right: 25%;
}

.col--xs--pull--4 {
  right: 33.3333333333%;
}

.col--xs--pull--5 {
  right: 41.6666666667%;
}

.col--xs--pull--6 {
  right: 50%;
}

.col--xs--pull--7 {
  right: 58.3333333333%;
}

.col--xs--pull--8 {
  right: 66.6666666667%;
}

.col--xs--pull--9 {
  right: 75%;
}

.col--xs--pull--10 {
  right: 83.3333333333%;
}

.col--xs--pull--11 {
  right: 91.6666666667%;
}

.col--xs--pull--12 {
  right: 100%;
}

.col--xs--push--0 {
  left: auto;
}

.col--xs--push--1 {
  left: 8.3333333333%;
}

.col--xs--push--2 {
  left: 16.6666666667%;
}

.col--xs--push--3 {
  left: 25%;
}

.col--xs--push--4 {
  left: 33.3333333333%;
}

.col--xs--push--5 {
  left: 41.6666666667%;
}

.col--xs--push--6 {
  left: 50%;
}

.col--xs--push--7 {
  left: 58.3333333333%;
}

.col--xs--push--8 {
  left: 66.6666666667%;
}

.col--xs--push--9 {
  left: 75%;
}

.col--xs--push--10 {
  left: 83.3333333333%;
}

.col--xs--push--11 {
  left: 91.6666666667%;
}

.col--xs--push--12 {
  left: 100%;
}

.col--xs--offset--0 {
  margin-left: 0%;
}

.col--xs--offset--1 {
  margin-left: 8.3333333333%;
}

.col--xs--offset--2 {
  margin-left: 16.6666666667%;
}

.col--xs--offset--3 {
  margin-left: 25%;
}

.col--xs--offset--4 {
  margin-left: 33.3333333333%;
}

.col--xs--offset--5 {
  margin-left: 41.6666666667%;
}

.col--xs--offset--6 {
  margin-left: 50%;
}

.col--xs--offset--7 {
  margin-left: 58.3333333333%;
}

.col--xs--offset--8 {
  margin-left: 66.6666666667%;
}

.col--xs--offset--9 {
  margin-left: 75%;
}

.col--xs--offset--10 {
  margin-left: 83.3333333333%;
}

.col--xs--offset--11 {
  margin-left: 91.6666666667%;
}

.col--xs--offset--12 {
  margin-left: 100%;
}

@media (min-width: 544px) {
  .col--sm--1 {
    width: 8.3333333333%;
  }

  .col--sm--2 {
    width: 16.6666666667%;
  }

  .col--sm--3 {
    width: 25%;
  }

  .col--sm--4 {
    width: 33.3333333333%;
  }

  .col--sm--5 {
    width: 41.6666666667%;
  }

  .col--sm--6 {
    width: 50%;
  }

  .col--sm--7 {
    width: 58.3333333333%;
  }

  .col--sm--8 {
    width: 66.6666666667%;
  }

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

  .col--sm--10 {
    width: 83.3333333333%;
  }

  .col--sm--11 {
    width: 91.6666666667%;
  }

  .col--sm--12 {
    width: 100%;
  }

  .col--sm--pull--0 {
    right: auto;
  }

  .col--sm--pull--1 {
    right: 8.3333333333%;
  }

  .col--sm--pull--2 {
    right: 16.6666666667%;
  }

  .col--sm--pull--3 {
    right: 25%;
  }

  .col--sm--pull--4 {
    right: 33.3333333333%;
  }

  .col--sm--pull--5 {
    right: 41.6666666667%;
  }

  .col--sm--pull--6 {
    right: 50%;
  }

  .col--sm--pull--7 {
    right: 58.3333333333%;
  }

  .col--sm--pull--8 {
    right: 66.6666666667%;
  }

  .col--sm--pull--9 {
    right: 75%;
  }

  .col--sm--pull--10 {
    right: 83.3333333333%;
  }

  .col--sm--pull--11 {
    right: 91.6666666667%;
  }

  .col--sm--pull--12 {
    right: 100%;
  }

  .col--sm--push--0 {
    left: auto;
  }

  .col--sm--push--1 {
    left: 8.3333333333%;
  }

  .col--sm--push--2 {
    left: 16.6666666667%;
  }

  .col--sm--push--3 {
    left: 25%;
  }

  .col--sm--push--4 {
    left: 33.3333333333%;
  }

  .col--sm--push--5 {
    left: 41.6666666667%;
  }

  .col--sm--push--6 {
    left: 50%;
  }

  .col--sm--push--7 {
    left: 58.3333333333%;
  }

  .col--sm--push--8 {
    left: 66.6666666667%;
  }

  .col--sm--push--9 {
    left: 75%;
  }

  .col--sm--push--10 {
    left: 83.3333333333%;
  }

  .col--sm--push--11 {
    left: 91.6666666667%;
  }

  .col--sm--push--12 {
    left: 100%;
  }

  .col--sm--offset--0 {
    margin-left: 0%;
  }

  .col--sm--offset--1 {
    margin-left: 8.3333333333%;
  }

  .col--sm--offset--2 {
    margin-left: 16.6666666667%;
  }

  .col--sm--offset--3 {
    margin-left: 25%;
  }

  .col--sm--offset--4 {
    margin-left: 33.3333333333%;
  }

  .col--sm--offset--5 {
    margin-left: 41.6666666667%;
  }

  .col--sm--offset--6 {
    margin-left: 50%;
  }

  .col--sm--offset--7 {
    margin-left: 58.3333333333%;
  }

  .col--sm--offset--8 {
    margin-left: 66.6666666667%;
  }

  .col--sm--offset--9 {
    margin-left: 75%;
  }

  .col--sm--offset--10 {
    margin-left: 83.3333333333%;
  }

  .col--sm--offset--11 {
    margin-left: 91.6666666667%;
  }

  .col--sm--offset--12 {
    margin-left: 100%;
  }
}
@media (min-width: 768px) {
  .col--md--1 {
    width: 8.3333333333%;
  }

  .col--md--2 {
    width: 16.6666666667%;
  }

  .col--md--3 {
    width: 25%;
  }

  .col--md--4 {
    width: 33.3333333333%;
  }

  .col--md--5 {
    width: 41.6666666667%;
  }

  .col--md--6 {
    width: 50%;
  }

  .col--md--7 {
    width: 58.3333333333%;
  }

  .col--md--8 {
    width: 66.6666666667%;
  }

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

  .col--md--10 {
    width: 83.3333333333%;
  }

  .col--md--11 {
    width: 91.6666666667%;
  }

  .col--md--12 {
    width: 100%;
  }

  .col--md--pull--0 {
    right: auto;
  }

  .col--md--pull--1 {
    right: 8.3333333333%;
  }

  .col--md--pull--2 {
    right: 16.6666666667%;
  }

  .col--md--pull--3 {
    right: 25%;
  }

  .col--md--pull--4 {
    right: 33.3333333333%;
  }

  .col--md--pull--5 {
    right: 41.6666666667%;
  }

  .col--md--pull--6 {
    right: 50%;
  }

  .col--md--pull--7 {
    right: 58.3333333333%;
  }

  .col--md--pull--8 {
    right: 66.6666666667%;
  }

  .col--md--pull--9 {
    right: 75%;
  }

  .col--md--pull--10 {
    right: 83.3333333333%;
  }

  .col--md--pull--11 {
    right: 91.6666666667%;
  }

  .col--md--pull--12 {
    right: 100%;
  }

  .col--md--push--0 {
    left: auto;
  }

  .col--md--push--1 {
    left: 8.3333333333%;
  }

  .col--md--push--2 {
    left: 16.6666666667%;
  }

  .col--md--push--3 {
    left: 25%;
  }

  .col--md--push--4 {
    left: 33.3333333333%;
  }

  .col--md--push--5 {
    left: 41.6666666667%;
  }

  .col--md--push--6 {
    left: 50%;
  }

  .col--md--push--7 {
    left: 58.3333333333%;
  }

  .col--md--push--8 {
    left: 66.6666666667%;
  }

  .col--md--push--9 {
    left: 75%;
  }

  .col--md--push--10 {
    left: 83.3333333333%;
  }

  .col--md--push--11 {
    left: 91.6666666667%;
  }

  .col--md--push--12 {
    left: 100%;
  }

  .col--md--offset--0 {
    margin-left: 0%;
  }

  .col--md--offset--1 {
    margin-left: 8.3333333333%;
  }

  .col--md--offset--2 {
    margin-left: 16.6666666667%;
  }

  .col--md--offset--3 {
    margin-left: 25%;
  }

  .col--md--offset--4 {
    margin-left: 33.3333333333%;
  }

  .col--md--offset--5 {
    margin-left: 41.6666666667%;
  }

  .col--md--offset--6 {
    margin-left: 50%;
  }

  .col--md--offset--7 {
    margin-left: 58.3333333333%;
  }

  .col--md--offset--8 {
    margin-left: 66.6666666667%;
  }

  .col--md--offset--9 {
    margin-left: 75%;
  }

  .col--md--offset--10 {
    margin-left: 83.3333333333%;
  }

  .col--md--offset--11 {
    margin-left: 91.6666666667%;
  }

  .col--md--offset--12 {
    margin-left: 100%;
  }
}
@media (min-width: 1012px) {
  .col--lg--1 {
    width: 8.3333333333%;
  }

  .col--lg--2 {
    width: 16.6666666667%;
  }

  .col--lg--3 {
    width: 25%;
  }

  .col--lg--4 {
    width: 33.3333333333%;
  }

  .col--lg--5 {
    width: 41.6666666667%;
  }

  .col--lg--6 {
    width: 50%;
  }

  .col--lg--7 {
    width: 58.3333333333%;
  }

  .col--lg--8 {
    width: 66.6666666667%;
  }

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

  .col--lg--10 {
    width: 83.3333333333%;
  }

  .col--lg--11 {
    width: 91.6666666667%;
  }

  .col--lg--12 {
    width: 100%;
  }

  .col--lg--pull--0 {
    right: auto;
  }

  .col--lg--pull--1 {
    right: 8.3333333333%;
  }

  .col--lg--pull--2 {
    right: 16.6666666667%;
  }

  .col--lg--pull--3 {
    right: 25%;
  }

  .col--lg--pull--4 {
    right: 33.3333333333%;
  }

  .col--lg--pull--5 {
    right: 41.6666666667%;
  }

  .col--lg--pull--6 {
    right: 50%;
  }

  .col--lg--pull--7 {
    right: 58.3333333333%;
  }

  .col--lg--pull--8 {
    right: 66.6666666667%;
  }

  .col--lg--pull--9 {
    right: 75%;
  }

  .col--lg--pull--10 {
    right: 83.3333333333%;
  }

  .col--lg--pull--11 {
    right: 91.6666666667%;
  }

  .col--lg--pull--12 {
    right: 100%;
  }

  .col--lg--push--0 {
    left: auto;
  }

  .col--lg--push--1 {
    left: 8.3333333333%;
  }

  .col--lg--push--2 {
    left: 16.6666666667%;
  }

  .col--lg--push--3 {
    left: 25%;
  }

  .col--lg--push--4 {
    left: 33.3333333333%;
  }

  .col--lg--push--5 {
    left: 41.6666666667%;
  }

  .col--lg--push--6 {
    left: 50%;
  }

  .col--lg--push--7 {
    left: 58.3333333333%;
  }

  .col--lg--push--8 {
    left: 66.6666666667%;
  }

  .col--lg--push--9 {
    left: 75%;
  }

  .col--lg--push--10 {
    left: 83.3333333333%;
  }

  .col--lg--push--11 {
    left: 91.6666666667%;
  }

  .col--lg--push--12 {
    left: 100%;
  }

  .col--lg--offset--0 {
    margin-left: 0%;
  }

  .col--lg--offset--1 {
    margin-left: 8.3333333333%;
  }

  .col--lg--offset--2 {
    margin-left: 16.6666666667%;
  }

  .col--lg--offset--3 {
    margin-left: 25%;
  }

  .col--lg--offset--4 {
    margin-left: 33.3333333333%;
  }

  .col--lg--offset--5 {
    margin-left: 41.6666666667%;
  }

  .col--lg--offset--6 {
    margin-left: 50%;
  }

  .col--lg--offset--7 {
    margin-left: 58.3333333333%;
  }

  .col--lg--offset--8 {
    margin-left: 66.6666666667%;
  }

  .col--lg--offset--9 {
    margin-left: 75%;
  }

  .col--lg--offset--10 {
    margin-left: 83.3333333333%;
  }

  .col--lg--offset--11 {
    margin-left: 91.6666666667%;
  }

  .col--lg--offset--12 {
    margin-left: 100%;
  }
}
*[data-animate-in=up] {
  opacity: 0;
  -webkit-transform: translate3d(0, 24px, 0);
  transform: translate3d(0, 24px, 0);
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
}
*[data-animate-in=up].in-view {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

*[data-animate-in=up-slow] {
  opacity: 0;
  -webkit-transform: translate3d(0, 24px, 0);
  transform: translate3d(0, 24px, 0);
  -webkit-transition: opacity 0.4s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 0.4s ease-out, -webkit-transform 1s ease-out;
  transition: transform 1s ease-out, opacity 0.4s ease-out;
  transition: transform 1s ease-out, opacity 0.4s ease-out, -webkit-transform 1s ease-out;
}
*[data-animate-in=up-slow].in-view {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

*[data-animate-in=fade] {
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-out;
  transition: opacity 0.6s ease-out;
}
*[data-animate-in=fade].in-view {
  opacity: 1;
}

*[data-animate-in=fade-slow] {
  opacity: 0;
  -webkit-transition: opacity 1s ease-out;
  transition: opacity 1s ease-out;
}
*[data-animate-in=fade-slow].in-view {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
  opacity: 1;
}

*[data-animate-in=left] {
  opacity: 0;
  -webkit-transform: translate3d(-12x, 0, 0);
  transform: translate3d(-12x, 0, 0);
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.6s ease-out;
  transition: transform 0.3s ease-out, opacity 0.6s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
*[data-animate-in=left].in-view {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

*[data-animate-in=right] {
  opacity: 0;
  -webkit-transform: translate3d(12px, 0, 0);
  transform: translate3d(12px, 0, 0);
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.6s ease-out;
  transition: transform 0.3s ease-out, opacity 0.6s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
*[data-animate-in=right].in-view {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.banner {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: 120px 0;
  min-height: 500px;
}
@media (min-width: 1012px) {
  .banner {
    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;
    min-height: 780px;
    padding: 120px 0;
  }
}
@media (min-width: 1012px) and (min-height: 680px) {
  .banner {
    min-height: 100vh;
  }
}

.banner__content {
  position: relative;
  z-index: 2;
  width: 100%;
}
@media (max-width: 1011px) {
  .banner__content {
    -webkit-transform: none !important;
    transform: none !important;
    padding: 48px 0;
  }
}
.banner__content .rte {
  max-width: 600px;
}

.banner--right .banner__content .wrapper > div {
  max-width: 600px;
  margin-left: auto;
}

.banner--center .banner__content .wrapper > div {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.banner--center {
  padding: 120px 0;
  min-height: 500px;
}
@media (min-width: 1012px) {
  .banner--center {
    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;
    min-height: 700px;
    padding: 120px 0;
  }
}

.banner__img {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 1011px) {
  .banner__img {
    -webkit-transform: none !important;
    transform: none !important;
    padding-bottom: 92%;
    height: 0;
  }
}
@media (min-width: 1012px) {
  .banner__img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
.banner__img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}

@media (max-width: 1011px) {
  .banner--para.banner--img-left {
    padding: 0;
  }
}

@media (min-width: 768px) {
  .banner--para.banner--img-left .banner__img img {
    width: 60%;
    height: 100%;
  }
}
@media (min-width: 1012px) {
  .banner--para.banner--img-left .banner__img {
    width: 100%;
  }
  .banner--para.banner--img-left .banner__img img {
    -webkit-transform: translate3d(-120px, 0, 0);
    transform: translate3d(-120px, 0, 0);
  }
}
@media (min-width: 1500px) {
  .banner--para.banner--img-left .banner__img img {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.dawn-badge-img {
  width: 90px;
  margin: 0 0 16px !important;
}
@media (min-width: 1012px) {
  .dawn-badge-img {
    width: 212px;
    margin: 0 0 24px !important;
  }
}

@media (max-width: 1011px) {
  .banner--para.banner--img-left.banner--hero {
    padding: 0;
  }
  .banner--para.banner--img-left.banner--hero .wrapper > .rte {
    margin: 0;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .banner--para.banner--img-left.banner--hero {
    width: 100%;
  }
  .banner--para.banner--img-left.banner--hero .banner__img img {
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 1012px) {
  .banner--para.banner--img-left.banner--hero .banner__img {
    width: 100%;
  }
  .banner--para.banner--img-left.banner--hero .banner__img:after {
    content: "";
    width: 50%;
    height: 100%;
    position: absolute;
    display: block;
    z-index: 2;
    right: 0;
    top: 0;
    background: -webkit-gradient(linear, left top, right top, color-stop(1%, rgba(0, 0, 0, 0)), color-stop(21%, black));
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 1%, black 21%);
  }
  .banner--para.banner--img-left.banner--hero .banner__img img {
    width: 60%;
    height: 100%;
  }
}
@media (min-width: 1280px) {
  .banner--para.banner--img-left.banner--hero .banner__img:after {
    width: 60%;
  }
}

@media (max-width: 1011px) {
  .banner--para .banner__img {
    -webkit-transform: none !important;
    transform: none !important;
  }
}
@media (min-width: 1012px) {
  .banner--para .banner__img {
    height: 120%;
    width: 120%;
  }
}
@media (min-width: 1012px) {
  .banner--para .banner__img {
    height: 120%;
    width: 120%;
  }
}

.earth-banner {
  overflow: hidden;
  position: relative;
}
.earth-banner:before, .earth-banner:after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 294px;
  left: 0px;
  top: 0;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(62%, rgba(0, 0, 0, 0)), color-stop(89%, rgba(0, 0, 0, 0.4)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 62%, rgba(0, 0, 0, 0.4) 89%);
}
.earth-banner figure img {
  width: 100%;
  margin-top: -180px;
}
@media (max-width: 1011px) {
  .earth-banner figure {
    height: 298px;
    margin-bottom: 36px;
  }
  .earth-banner figure img {
    -o-object-fit: cover;
    object-fit: cover;
    width: auto;
    height: 100%;
  }
}

.banner-large-bg {
  position: relative;
  z-index: 1;
  padding: 200px 0 120px;
}

.banner-large-bg__img {
  position: absolute;
  z-index: -1;
  overflow: hidden;
  top: 0;
  left: 0;
  min-height: 100vh;
  width: 100%;
}
.banner-large-bg__img img {
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.logo-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.logo-list > * {
  width: 50%;
  margin-bottom: 36px;
}
@media (min-width: 544px) {
  .logo-list > * {
    width: 33.3333333333%;
  }
}
@media (min-width: 1248px) {
  .logo-list > * {
    width: 25%;
    margin-bottom: 48px;
  }
}
.logo-list img {
  max-width: 182px;
  max-height: 85px;
  margin: 0 auto;
}

.logo-list-lg-wrap {
  margin: 80px 0;
}

.logo-list-lg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.logo-list-lg > * {
  width: 100%;
  margin-bottom: 48px;
}
@media (min-width: 544px) {
  .logo-list-lg > * {
    width: 50%;
  }
}
@media (min-width: 1248px) {
  .logo-list-lg > * {
    width: 25%;
    margin-bottom: 48px;
  }
}
.logo-list-lg figure {
  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;
  width: 100%;
}
@media (min-width: 544px) {
  .logo-list-lg figure {
    height: 85px;
  }
}
.logo-list-lg img {
  max-width: 182px;
  max-height: 85px;
  margin: 0 auto;
}
.logo-list-lg h3 {
  text-align: center;
  margin: 16px 0 0;
  font-size: 14px;
  color: #6a737d;
}

.team-preview--logo .team-preview__content .rte h2, .team-preview--logo .team-preview__content .rte h3, .team-preview--logo .team-preview__content .rte h4 {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-bottom: 12px;
}
.team-preview--logo .team-preview__content .rte h2:last-child, .team-preview--logo .team-preview__content .rte h3:last-child, .team-preview--logo .team-preview__content .rte h4:last-child {
  margin-bottom: 0;
}
@media (min-width: 1012px) {
  .team-preview--logo .team-preview__content .rte h2, .team-preview--logo .team-preview__content .rte h3, .team-preview--logo .team-preview__content .rte h4 {
    font-size: 16px;
  }
}
.team-preview--logo .team-preview__content .rte h5, .team-preview--logo .team-preview__content .rte h6 {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 14px;
  margin-bottom: 12px;
}
.team-preview--logo .team-preview__content .rte h5:last-child, .team-preview--logo .team-preview__content .rte h6:last-child {
  margin-bottom: 0;
}
@media (min-width: 1012px) {
  .team-preview--logo .team-preview__content .rte h5, .team-preview--logo .team-preview__content .rte h6 {
    font-size: 16px;
  }
}
@media (min-width: 1012px) {
  .team-preview--logo .team-preview__content .rte h5, .team-preview--logo .team-preview__content .rte h6 {
    font-size: 14px;
  }
}

.video-wrap,
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  overflow: hidden;
}
.video-wrap.video-playing .video-wrap__poster, .video-wrap.is-playing .video-wrap__poster,
.video-wrapper.video-playing .video-wrap__poster,
.video-wrapper.is-playing .video-wrap__poster {
  opacity: 0;
  pointer-events: none;
}
.video-wrap > div,
.video-wrap .video-wrapper__poster,
.video-wrap video,
.video-wrap iframe,
.video-wrapper > div,
.video-wrapper .video-wrapper__poster,
.video-wrapper video,
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-wrap__poster {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  background: #000000;
}
.video-wrap__poster img {
  opacity: 0.8;
}
.video-wrap__poster:hover {
  cursor: pointer;
}
.video-wrap__poster:hover img {
  opacity: 0.6;
}
.video-wrap__poster svg {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}
.video-wrap__poster svg:hover {
  cursor: pointer;
}
.video-wrap__poster > img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.img-full {
  width: 100%;
}
.img-full img {
  width: 100%;
}

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

.bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.bg-image img {
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.bg-image.bg-image--fallback img {
  display: none;
}

svg {
  display: block;
  fill: currentColor;
}

.media-object {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
}
.media-object .media-object__media {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0;
  border-radius: 0;
  height: 0;
  padding-bottom: 56%;
}
@media (min-width: 768px) {
  .media-object .media-object__media {
    padding-bottom: 45%;
  }
}
.media-object .media-object__media img,
.media-object .media-object__media iframe {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  padding: 0;
  margin: 0;
}
.media-object .media-object__media img.img-top,
.media-object .media-object__media iframe.img-top {
  -o-object-position: top;
  object-position: top;
}
@media (max-width: 767px) {
  .media-object .media-object__media {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin: 0 auto 18px;
    width: 100%;
  }
  .media-object .media-object__content {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
@media (min-width: 768px) {
  .media-object {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .media-object.media-object--top-align {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .media-object .media-object__media {
    width: calc(50% - 16px);
  }
  .media-object .media-object__content {
    width: calc(50% - 16px);
  }
  .media-object.media-object--sm-media .media-object__media {
    width: calc(33% - 16px);
    padding-bottom: 21%;
  }
  .media-object.media-object--sm-media .media-object__content {
    width: calc(66% - 16px);
  }
}
@media (min-width: 1012px) {
  .media-object .media-object__media {
    width: calc(50% - 24px);
  }
  .media-object .media-object__content {
    width: calc(50% - 24px);
  }
}

@media (min-width: 768px) {
  .media-object--flip .media-object__media {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .media-object--flip .media-object__content {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.subscribe-form,
.widget_blog_subscription form,
.wpcf7-form {
  position: relative;
  display: block;
}
.subscribe-form input:focus,
.widget_blog_subscription form input:focus,
.wpcf7-form input:focus {
  outline: 0;
}
.subscribe-form .mc-field-group,
.subscribe-form .field-group,
.widget_blog_subscription form .mc-field-group,
.widget_blog_subscription form .field-group,
.wpcf7-form .mc-field-group,
.wpcf7-form .field-group {
  width: 100%;
}
.subscribe-form input[type=email],
.subscribe-form input[type=text],
.subscribe-form textarea,
.widget_blog_subscription form input[type=email],
.widget_blog_subscription form input[type=text],
.widget_blog_subscription form textarea,
.wpcf7-form input[type=email],
.wpcf7-form input[type=text],
.wpcf7-form textarea {
  display: block;
  background-color: transparent;
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #000000;
  padding-left: 0;
  padding-right: 24px;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}
@media (max-width: 959px) {
  .subscribe-form input[type=email],
.subscribe-form input[type=text],
.subscribe-form textarea,
.widget_blog_subscription form input[type=email],
.widget_blog_subscription form input[type=text],
.widget_blog_subscription form textarea,
.wpcf7-form input[type=email],
.wpcf7-form input[type=text],
.wpcf7-form textarea {
    height: 60px;
    font-size: 16px;
  }
}
.subscribe-form textarea,
.widget_blog_subscription form textarea,
.wpcf7-form textarea {
  height: 120px;
  border: 1px solid #000000;
  padding: 12px;
}
.subscribe-form button,
.subscribe-form input[type=submit],
.widget_blog_subscription form button,
.widget_blog_subscription form input[type=submit],
.wpcf7-form button,
.wpcf7-form input[type=submit] {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 231px;
  width: 231px;
  height: 48px;
  border-radius: 0;
  text-align: center;
  width: auto;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  z-index: 1;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  -webkit-transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center !important;
  align-content: center !important;
  background: #000000;
  margin-top: 18px;
}
.subscribe-form button:hover,
.subscribe-form input[type=submit]:hover,
.widget_blog_subscription form button:hover,
.widget_blog_subscription form input[type=submit]:hover,
.wpcf7-form button:hover,
.wpcf7-form input[type=submit]:hover {
  cursor: pointer;
  color: #ffffff;
  background: #0366d6;
  border-color: #0366d6;
}
.subscribe-form button:hover svg,
.subscribe-form button:hover box-icon,
.subscribe-form input[type=submit]:hover svg,
.subscribe-form input[type=submit]:hover box-icon,
.widget_blog_subscription form button:hover svg,
.widget_blog_subscription form button:hover box-icon,
.widget_blog_subscription form input[type=submit]:hover svg,
.widget_blog_subscription form input[type=submit]:hover box-icon,
.wpcf7-form button:hover svg,
.wpcf7-form button:hover box-icon,
.wpcf7-form input[type=submit]:hover svg,
.wpcf7-form input[type=submit]:hover box-icon {
  -webkit-transform: translate3d(3px, 0, 0);
  transform: translate3d(3px, 0, 0);
}
.subscribe-form button[disabled],
.subscribe-form input[type=submit][disabled],
.widget_blog_subscription form button[disabled],
.widget_blog_subscription form input[type=submit][disabled],
.wpcf7-form button[disabled],
.wpcf7-form input[type=submit][disabled] {
  opacity: 0.2;
  pointer-events: none;
}
.subscribe-form button:after,
.subscribe-form input[type=submit]:after,
.widget_blog_subscription form button:after,
.widget_blog_subscription form input[type=submit]:after,
.wpcf7-form button:after,
.wpcf7-form input[type=submit]:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin-left: 8px;
  background: url("./images/svgs/arrow-right.svg") center/cover no-repeat;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.subscribe-form button:hover, .subscribe-form button:active, .subscribe-form button:focus,
.subscribe-form input[type=submit]:hover,
.subscribe-form input[type=submit]:active,
.subscribe-form input[type=submit]:focus,
.widget_blog_subscription form button:hover,
.widget_blog_subscription form button:active,
.widget_blog_subscription form button:focus,
.widget_blog_subscription form input[type=submit]:hover,
.widget_blog_subscription form input[type=submit]:active,
.widget_blog_subscription form input[type=submit]:focus,
.wpcf7-form button:hover,
.wpcf7-form button:active,
.wpcf7-form button:focus,
.wpcf7-form input[type=submit]:hover,
.wpcf7-form input[type=submit]:active,
.wpcf7-form input[type=submit]:focus {
  cursor: pointer;
  outline: none;
}
.subscribe-form button:hover:after, .subscribe-form button:active:after, .subscribe-form button:focus:after,
.subscribe-form input[type=submit]:hover:after,
.subscribe-form input[type=submit]:active:after,
.subscribe-form input[type=submit]:focus:after,
.widget_blog_subscription form button:hover:after,
.widget_blog_subscription form button:active:after,
.widget_blog_subscription form button:focus:after,
.widget_blog_subscription form input[type=submit]:hover:after,
.widget_blog_subscription form input[type=submit]:active:after,
.widget_blog_subscription form input[type=submit]:focus:after,
.wpcf7-form button:hover:after,
.wpcf7-form button:active:after,
.wpcf7-form button:focus:after,
.wpcf7-form input[type=submit]:hover:after,
.wpcf7-form input[type=submit]:active:after,
.wpcf7-form input[type=submit]:focus:after {
  -webkit-transform: translate3d(3px, 0, 0);
  transform: translate3d(3px, 0, 0);
}

.wpcf7-response-output {
  border: none !important;
  color: #000000;
  font-weight: bold;
  padding: 12px !important;
  margin: 0 !important;
  background: #FF595A;
}

#mce-success-response {
  color: #28a745 !important;
}

.wpcf7-form label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  font-weight: 500;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
@media (max-width: 499px) {
  ::-webkit-input-placeholder {
    font-size: 14px;
  }
}

::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  font-weight: 500;
  -moz-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
@media (max-width: 499px) {
  ::-moz-placeholder {
    font-size: 14px;
  }
}

:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  font-weight: 500;
  -ms-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
@media (max-width: 499px) {
  :-ms-input-placeholder {
    font-size: 14px;
  }
}

:-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  font-weight: 500;
  -moz-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
@media (max-width: 499px) {
  :-moz-placeholder {
    font-size: 14px;
  }
}

input:focus::-webkit-input-placeholder {
  opacity: 0.4;
}
input:focus::-moz-placeholder {
  opacity: 0.4;
}
input:focus:-ms-input-placeholder {
  opacity: 0.4;
}
input:focus:-moz-placeholder {
  opacity: 0.4;
}

#eloquaForm {
  text-align: left;
}

.text-error {
  color: #FF595A;
}

.form-control-invalid-text {
  display: none;
  font-size: 13px;
  color: #ffffff;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
}

#eloquaForm input[type=text],
#eloquaForm input[type=email],
#eloquaForm input[type=tel],
#eloquaForm select,
#eloquaForm textarea {
  display: block;
  width: 100%;
  height: 44px;
  padding: 0;
  border-radius: 0;
  color: #000000;
  background: transparent;
  border-bottom: 1px solid #ffffff;
  border-radius: 0;
  font-size: 16px;
  font-weight: 500;
}
#eloquaForm input[type=text]:focus, #eloquaForm input[type=text]:active,
#eloquaForm input[type=email]:focus,
#eloquaForm input[type=email]:active,
#eloquaForm input[type=tel]:focus,
#eloquaForm input[type=tel]:active,
#eloquaForm select:focus,
#eloquaForm select:active,
#eloquaForm textarea:focus,
#eloquaForm textarea:active {
  outline: none;
}
#eloquaForm button {
  max-width: 200px;
  margin: 16px 0 0;
}
#eloquaForm label {
  display: block;
  margin: 0;
  position: relative;
  z-index: -1;
  left: 0;
  -webkit-transform: translate3d(0, 34px, 0);
  transform: translate3d(0, 34px, 0);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
#eloquaForm .form-group {
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
#eloquaForm .form-group:after {
  content: "";
  width: 100%;
  height: 2px;
  background: red;
  display: block;
  position: absolute;
  bottom: 0;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
#eloquaForm .form-group.is-active label {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
#eloquaForm .form-group.is-active:after {
  opacity: 1;
}
#eloquaForm .form-group.error:after {
  background: #FF595A;
  opacity: 1;
}
#eloquaForm .form-group.error .form-control-invalid-text {
  display: block;
}

#eloquaForm .checkbox-wrap {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#eloquaForm .checkbox-wrap:after {
  display: none;
}
#eloquaForm .checkbox-wrap input {
  margin-top: 4px;
  margin-right: 12px;
}
#eloquaForm .checkbox-wrap label {
  letter-spacing: -0.05em;
  -webkit-transform: translate3d(0, 0, 0) !important;
  transform: translate3d(0, 0, 0) !important;
}
#eloquaForm .checkbox-wrap label:hover {
  cursor: pointer;
}

#eloquaForm .select-wrap {
  position: relative;
  z-index: 2;
}
#eloquaForm .select-wrap:before {
  content: "";
  width: 12px;
  height: 7px;
  display: block;
  position: absolute;
  right: 12px;
  bottom: 19px;
  background: url("../img/svgs/chevron-down.svg") center/cover no-repeat;
}
#eloquaForm .select-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.ratings {
  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;
}
.ratings input {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.ratings label {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  font-size: 0;
  text-indent: -9999px;
  margin: 8px;
}
.ratings label:hover {
  cursor: pointer;
}
.ratings label:before, .ratings label:after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.ratings label:before {
  z-index: 1;
  background: url("../img/svgs/star-outline.svg") center/cover no-repeat;
}
.ratings label:after {
  opacity: 0;
  z-index: 2;
  background: url("../img/svgs/star.svg") center/cover no-repeat;
}
.ratings label.is-hover:after {
  opacity: 1;
}
.ratings input.is-active + label:after,
.ratings input:checked + label:after {
  opacity: 1;
}
.ratings input:hover + label:after {
  opacity: 1;
}

.text-left {
  text-align: left !important;
}

.sign-up-form {
  max-width: 460px;
}
.sign-up-form .form-bd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  position: relative;
}
.sign-up-form .mc-field-group {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.sign-up-form label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.sign-up-form input[type=email] {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 44px;
  width: 100%;
  border-right: none;
  padding: 0 8px;
  font-size: 14px;
}
.sign-up-form input[type=email].mce_inline_error {
  border-color: rgba(255, 255, 255, 0.2) !important;
}
.sign-up-form input[type=submit] {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  padding: 6px 12px;
  height: 44px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.sign-up-form input[type=submit]:hover {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
}

#mce-success-response,
div.mce_inline_error {
  background: transparent !important;
  color: #FF595A !important;
  font-size: 12px !important;
  position: absolute !important;
  left: 0 !important;
  top: calc(100% + 6px) !important;
  padding: 0 !important;
}

#mce-success-response {
  color: #28a745 !important;
}

.sign-up-form--archive {
  text-align: center;
  margin: 0 auto;
}

.post-preview {
  width: 92%;
  margin: 0 auto;
  max-width: 1248px;
  -webkit-transition: max-width 0.4s ease;
  transition: max-width 0.4s ease;
  max-width: 1032px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.post-preview + .post-preview {
  margin-top: 42px;
}
@media (min-width: 768px) {
  .post-preview {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-bottom: 86px;
  }
  .post-preview + .post-preview {
    margin-top: 86px;
  }
}
.post-preview figure {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 68%;
  height: 0;
  margin-bottom: 36px;
}
.post-preview figure a {
  display: block;
}
.post-preview figure img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}
@media (min-width: 768px) {
  .post-preview figure {
    width: 384px;
    padding-bottom: 28%;
    margin-right: 46px;
    min-width: 384px;
    margin-bottom: 0;
  }
}
.post-preview h2 {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 125%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-size: 24px;
  text-transform: none;
}
.post-preview h2:last-child {
  margin-bottom: 0;
}
@media (min-width: 1012px) {
  .post-preview h2 {
    font-size: 40px;
  }
}
@media (min-width: 1012px) {
  .post-preview h2 {
    font-size: 24px;
  }
}

.posted-on {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-bottom: 24px;
}
.posted-on:last-child {
  margin-bottom: 0;
}
@media (min-width: 1012px) {
  .posted-on {
    font-size: 16px;
  }
}

.post-single {
  max-width: 816px;
  margin: 184px auto;
}
.post-single header {
  margin-bottom: 48px;
}
.post-single h1 {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 125%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
  text-transform: none;
}
.post-single h1:last-child {
  margin-bottom: 0;
}
@media (min-width: 1012px) {
  .post-single h1 {
    font-size: 32px;
  }
}

.post-single__img {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 68%;
  height: 0;
  margin-bottom: 48px;
}
.post-single__img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}
@media (min-width: 768px) {
  .post-single__img {
    padding-bottom: 75%;
  }
}

.post__content.rte h2 {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 125%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.post__content.rte h2:last-child {
  margin-bottom: 0;
}
@media (min-width: 1012px) {
  .post__content.rte h2 {
    font-size: 32px;
  }
}
.post__content.rte h3 {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.post__content.rte h3:last-child {
  margin-bottom: 0;
}
@media (min-width: 1012px) {
  .post__content.rte h3 {
    font-size: 20px;
  }
}

.wp-block-quote {
  position: relative;
  z-index: 2;
  width: 80%;
  margin: 36px auto;
  border: none !important;
}
.wp-block-quote > p {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.wp-block-quote > p:last-child {
  margin-bottom: 0;
}
@media (min-width: 1012px) {
  .wp-block-quote > p {
    font-size: 20px;
  }
}
.wp-block-quote cite, .wp-block-quote cite p {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 14px;
  font-style: normal;
  opacity: 0.7;
}
.wp-block-quote cite:last-child, .wp-block-quote cite p:last-child {
  margin-bottom: 0;
}
@media (min-width: 1012px) {
  .wp-block-quote cite, .wp-block-quote cite p {
    font-size: 16px;
  }
}
@media (min-width: 1012px) {
  .wp-block-quote cite, .wp-block-quote cite p {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .wp-block-quote {
    width: 80%;
    margin: 48px;
  }
}

.social-share {
  width: 100%;
}
@media (min-width: 768px) {
  .social-share {
    max-width: 226px;
  }
}
@media (max-width: 767px) {
  .social-share {
    margin: 0 auto 24px;
  }
}
.social-share .social-share__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 12px;
}
.social-share a {
  margin: 4px;
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 50%;
  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;
  font-size: 14px;
  color: #ffffff;
  background: #006BED;
  -webkit-transition: color 0.4s ease, background 0.4s ease, border 0.4s ease;
  transition: color 0.4s ease, background 0.4s ease, border 0.4s ease;
}
.social-share a + a {
  margin-left: 12px;
}
.social-share a:hover {
  color: #ffffff;
  background: #0054ba;
  cursor: pointer;
}
.post-sidebar {
  width: 100%;
}
@media (min-width: 768px) {
  .post-sidebar {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}
@media (min-width: 1300px) {
  .post-sidebar {
    width: 20%;
    min-width: 20%;
  }
}

.starship-render {
  width: 100%;
  position: relative;
  z-index: 1;
  margin-top: 200px;
  height: 100vh;
  overflow: hidden;
}
@media (max-width: 1011px) {
  .starship-render {
    height: calc(100vh - 200px);
  }
}
.starship-render:before, .starship-render:after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 294px;
  left: 0px;
}
.starship-render:before {
  top: 0;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(12%, rgba(0, 0, 0, 0)), color-stop(89%, black));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 12%, black 89%);
}
@media (max-width: 1011px) {
  .starship-render:before {
    height: 120px;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(2%, rgba(0, 0, 0, 0)), color-stop(89%, black));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 2%, black 89%);
  }
}
.starship-render:after {
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(12%, black), color-stop(89%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, black 12%, rgba(0, 0, 0, 0) 89%);
}
@media (max-width: 1011px) {
  .starship-render:after {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(22%, black), color-stop(69%, rgba(0, 0, 0, 0)));
    background: linear-gradient(0deg, black 22%, rgba(0, 0, 0, 0) 69%);
  }
}
@media (max-width: 1011px) {
  .starship-render {
    margin-top: 275px;
  }
}
.starship-render + .wrapper-sm {
  margin-top: -124px;
  position: relative;
  z-index: 2;
}
.starship-render .polaris-logo {
  width: 542px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
  max-width: 70%;
}
.starship-render .starship-2 {
  position: absolute;
  width: auto;
  max-width: 240px;
  top: auto;
  bottom: 0;
  left: 10%;
  display: none;
  z-index: -2;
}
@media (min-width: 1012px) {
  .starship-render .starship-2 {
    display: block;
  }
}
.starship-render .earth {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.starship-render .starship {
  z-index: -1;
  bottom: 0;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1011px) {
  .starship-render .starship {
    display: block;
    top: 90px;
    left: auto;
    right: 0px;
    width: 140%;
    max-width: 140%;
  }
}

.missions {
  z-index: 2;
}
.missions .missions__content_1 {
  position: relative;
  z-index: 2;
}
.missions .js-horizon {
  z-index: 3;
  position: relative;
}
.missions #dragon-video {
  width: 100%;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.missions #dragon-video video {
  width: 100%;
}
.missions #dragon-video img {
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}
.missions #dragon-video:after {
  content: "";
  display: block;
  width: 100%;
  height: 40px;
  z-index: 2;
  position: absolute;
  bottom: -4px;
  left: 0;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(12%, black), color-stop(80%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, black 12%, rgba(0, 0, 0, 0) 80%);
}
@media (min-width: 768px) {
  .missions #dragon-video {
    position: absolute;
    right: 25%;
  }
  .missions #dragon-video:after {
    height: 220px;
  }
  .missions #dragon-video:before {
    content: "";
    display: block;
    width: 120px;
    height: 100%;
    z-index: 2;
    position: absolute;
    top: 0;
    right: 0;
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(72%, black));
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, black 72%);
  }
}

.dawn-render {
  width: 100%;
  position: relative;
  z-index: 1;
  padding-top: 200px;
  overflow: hidden;
}
@media (min-width: 1012px) {
  .dawn-render {
    padding-top: 0;
  }
}
.dawn-render .polaris-dawn-logo {
  width: 542px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
  max-width: 70%;
}
@media (min-width: 1012px) {
  .dawn-render .polaris-dawn-logo {
    position: absolute;
    top: 200px;
    left: calc(50% - 271px);
  }
}

.dawn-render__content {
  position: relative;
  z-index: 3;
  overflow: hidden;
  margin-top: 36px;
  padding-bottom: 66px;
}
.dawn-render__content:after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0px;
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(52%, black), color-stop(99%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, black 52%, rgba(0, 0, 0, 0) 99%);
}
@media (min-width: 1012px) {
  .dawn-render__content {
    margin-top: 0;
    padding-bottom: 120px;
  }
  .dawn-render__content:after {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(42%, black), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(0deg, black 42%, rgba(0, 0, 0, 0) 100%);
  }
}

.dawn-render .dawn-earth {
  position: absolute;
  top: 30%;
  z-index: -2;
  opacity: 0.6;
  width: 300%;
  max-width: 300%;
}
@media (min-width: 1012px) {
  .dawn-render .dawn-earth {
    top: auto;
    bottom: 0;
    left: 0;
    width: auto;
  }
}

.dawn-render .dragon {
  position: relative;
  top: 36px;
  right: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  max-width: 100%;
}
@media (min-width: 768px) {
  .dawn-render .dragon {
    max-width: 80%;
  }
}
@media (min-width: 1012px) {
  .dawn-render .dragon {
    top: 110px;
    right: auto;
    left: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
    max-width: 700px;
  }
}

.team-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.team-list > span,
.team-list .team-preview {
  width: calc(50% - 12px);
  margin-bottom: 36px;
}
@media (min-width: 1012px) {
  .team-list > span,
.team-list .team-preview {
    width: calc(25% - 25px);
  }
}

.team-list--lg .team-preview {
  width: 100%;
  margin-bottom: 72px;
}
@media (min-width: 768px) {
  .team-list--lg .team-preview {
    width: calc(50% - 25px);
    margin-bottom: 90px;
  }
}

.team-preview {
  margin-bottom: 72px;
}
.team-preview[data-click] {
  cursor: pointer;
}
.team-preview[data-click]:hover img {
  opacity: 0.8;
}
.team-preview[data-click]:hover h3 {
  -webkit-text-decoration-color: #006BED;
  text-decoration-color: #006BED;
}
@media (min-width: 1012px) {
  .team-preview {
    margin-bottom: 90px;
  }
}
.team-preview figure {
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-top: 100%;
  margin-bottom: 24px;
  background: #0d0d0d;
  position: relative;
  z-index: 1;
}
.team-preview figure img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.team-preview__content h3 {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
  font-size: 22px;
  margin-bottom: 12px;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
  -webkit-transition: -webkit-text-decoration-color 0.4s ease;
  transition: -webkit-text-decoration-color 0.4s ease;
  transition: text-decoration-color 0.4s ease;
  transition: text-decoration-color 0.4s ease, -webkit-text-decoration-color 0.4s ease;
}
.team-preview__content h3:last-child {
  margin-bottom: 0;
}
@media (min-width: 1012px) {
  .team-preview__content h3 {
    font-size: 20px;
  }
}
@media (min-width: 1012px) {
  .team-preview__content h3 {
    font-size: 24px;
  }
}
.team-preview__content p.h5 {
  margin-bottom: 24px;
}

.team-preview--logo figure {
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-top: 50%;
  margin-bottom: 24px;
  background: white;
  position: relative;
  z-index: 1;
}
.team-preview--logo figure img {
  -o-object-fit: contain;
  object-fit: contain;
  width: auto;
  height: auto;
  max-width: 80%;
  max-height: 80%;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.slideout-wrap {
  position: fixed;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  top: 0;
  left: 0;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.slideout-wrap.is-active {
  opacity: 1;
  pointer-events: inherit;
}
.slideout-wrap.is-active .slideout {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slideout-screen {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  background: #000000;
  opacity: 0.6;
}
.slideout-screen:hover {
  cursor: crosshair;
}

.slideout {
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 560px;
  background: #151515;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.slideout .slideout__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  background: url("./images/svgs/close.svg") center/cover no-repeat;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
@media (min-width: 768px) {
  .slideout .slideout__close {
    top: 40px;
    right: 40px;
  }
}
.slideout .slideout__close:hover {
  cursor: pointer;
  opacity: 0.6;
}
.slideout .slideout__inner {
  padding: 112px 40px 24px;
  overflow: hidden;
}
body.modal-is-active {
  overflow: hidden;
}

.rte {
  font-weight: normal;
  font-style: normal;
}
.rte:after {
  content: "";
  display: table;
  clear: both;
}
.rte h1 a,
.rte h2 a,
.rte h3 a,
.rte h4 a,
.rte h5 a,
.rte h6 a {
  text-decoration: none !important;
}
.rte + .btn {
  margin-top: 20px;
}
@media (min-width: 544px) {
  .rte + .btn {
    margin-top: 30px;
  }
}
.rte > *:last-child {
  margin-bottom: 0 !important;
}
.rte p[style="text-align: center;"], .rte p[style="text-align:center"], .rte p[style="text-align: center"], .text-center .rte p {
  margin-left: auto;
  margin-right: auto;
}
.rte p + h1, .rte p + h2, .rte p + h3,
.rte p + h4, .rte p + h5, .rte p + h6 {
  margin-top: 44px;
}
.rte .wp-block-separator {
  margin: 36px 0;
  padding: 0;
  border: none;
  border-top: 1px solid #474747;
}
.rte h1:last-child, .rte h2:last-child, .rte h3:last-child,
.rte h4:last-child, .rte h5:last-child, .rte h6:last-child {
  margin-bottom: 0;
}
.rte a:not(.wp-block-button__link) {
  color: #ffffff;
  font-weight: inherit;
  text-decoration: underline;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.rte a:not(.wp-block-button__link):hover {
  opacity: 0.7;
  text-decoration: underline;
}
.rte .wp-block-button__link {
  margin-top: 24px;
}
.rte ul,
.rte ol,
.rte dl {
  margin: 24px 0;
  padding-left: 24px;
}
.rte ul li + li,
.rte ol li + li,
.rte dl li + li {
  margin-top: 12px;
}
.rte ul {
  list-style-type: none;
}
.rte ul li {
  position: relative;
  padding-left: 40px;
}
.rte ul li ul {
  width: 100%;
  list-style: none;
  margin: 12px 0 0;
}
.rte ul li ul li {
  padding-left: 24px;
}
.rte ul li ul li:before {
  width: 16px;
}
.rte ul li:before {
  content: "";
  width: 24px;
  height: 1px;
  display: block;
  background: #006BED;
  left: 0;
  top: 12px;
  position: absolute;
}
.rte ol {
  list-style-type: decimal;
}
.rte dt {
  font-weight: bold;
}
.rte ul ul,
.rte ul ol,
.rte ul dl,
.rte ol ul,
.rte ol ol,
.rte ol dl,
.rte dl ul,
.rte dl ol,
.rte dl dl {
  margin-top: 0;
  margin-bottom: 0;
}
.rte ol ul,
.rte ul ul {
  list-style-type: circle;
}
.rte ol ol ul,
.rte ol ul ul,
.rte ul ol ul,
.rte ul ul ul {
  list-style-type: square;
}
.rte blockquote {
  font-style: italic;
  border-left: 2px solid #006BED;
}
.rte address {
  font-style: italic;
}
.rte hr {
  margin: 24px 0;
  padding: 0;
  border: none;
  border-top: 3px solid #000000;
}
.rte em,
.rte i {
  font-style: italic;
}
.rte del,
.rte strike,
.rte s {
  text-decoration: line-through;
}
.rte u,
.rte ins {
  text-decoration: underline;
}
.rte sup {
  vertical-align: super;
  font-size: smaller;
}
.rte sub {
  vertical-align: sub;
  font-size: smaller;
}
.rte big {
  font-size: larger;
}
.rte small {
  font-size: smaller;
}
.rte abbr,
.rte acronym {
  border-bottom: none;
  text-decoration: none;
}
.rte cite,
.rte dfn {
  font-style: italic;
}
.rte q {
  font-style: italic;
}
.rte q::before {
  content: open-quote;
}
.rte q::after {
  content: close-quote;
}
.rte q:lang(en) {
  quotes: "“" "”" "‘" "’";
}
.rte bdo {
  direction: rtl;
}
.rte pre {
  margin: 0 0 12px 0;
  font-family: "Lucida Console", Monaco, monospace;
  white-space: normal;
}
.rte code,
.rte samp,
.rte tt,
.rte kbd {
  font-family: "Lucida Console", Monaco, monospace;
}
.rte var {
  font-style: italic;
}
.rte img.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.rte img.alignleft {
  margin-right: auto;
}
.rte img.alignright {
  margin-left: auto;
}
.rte .wp-block-image {
  margin: 36px 0;
}
.rte .wp-block-image img {
  margin: 0;
}
.rte .wp-block-image figcaption {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 14px;
  font-style: normal;
  opacity: 0.7;
  margin-top: 12px;
}
.rte .wp-block-image figcaption:last-child {
  margin-bottom: 0;
}
@media (min-width: 1012px) {
  .rte .wp-block-image figcaption {
    font-size: 16px;
  }
}
@media (min-width: 1012px) {
  .rte .wp-block-image figcaption {
    font-size: 14px;
  }
}
.rte .size-medium {
  width: 50%;
  float: left;
  padding-right: 24px;
  margin: 18px 0;
}
.rte .size-medium + p {
  margin: 18px 0;
}
.rte .size-medium img {
  width: 100%;
  margin: 0;
}
.rte del {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.rte del:before {
  content: "";
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  display: block;
  position: absolute;
  background: url("./images/svgs/scribble.svg") center/100% auto no-repeat;
  z-index: 2;
  top: 0;
  left: -5px;
}
.rte del:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background: url("./images/svgs/redacted.svg") center/auto no-repeat;
  z-index: 3;
  top: 0;
  left: 0;
}
.rte img,
.rte video,
.rte audio {
  max-width: 100% !important;
  margin: 24px 0;
}

.wp-block-preformatted {
  font-family: mono;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: #0366d6;
  display: inline-block;
  padding: 12px 18px;
  border-radius: 8px 8px 8px 0px;
}

.rte--sm p {
  display: block;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 14px;
}

.rte--lg p {
  display: block;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 16px;
}
@media (min-width: 1012px) {
  .rte--lg p {
    font-size: 20px;
  }
}

.site-footer {
  overflow: hidden;
  text-align: center;
  padding: 24px 0;
}
.site-footer a {
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  text-decoration: underline;
}
.site-footer a + a {
  margin-left: 24px;
}
.site-footer a:hover {
  opacity: 0.6;
}
.site-footer .d-md-flex a {
  margin-left: 12px;
}
@media (min-width: 768px) {
  .site-footer {
    padding: 40px 0;
  }
  .site-footer .site-footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.site-footer small {
  margin: 0;
  font-size: 16px;
}
.site-footer ul {
  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;
  margin-top: 16px;
}
.site-footer ul li {
  margin: 0 18px;
}
@media (min-width: 768px) {
  .site-footer ul {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin: 0;
  }
  .site-footer ul li {
    margin: 0 0 0 48px;
  }
}

.gutenberg-blocks ul {
  list-style-type: disc;
  padding-left: 24px;
  margin: 18px 0;
}
.gutenberg-blocks ul li + li {
  margin-top: 6px;
}
.gutenberg-blocks p {
  margin: 0 0 18px;
}
.gutenberg-blocks p:last-child {
  margin-bottom: 0;
}

#about-the-mission h2 {
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  grid-gap: 16px;
  margin-bottom: 18px;
}
#about-the-mission h2:before {
  content: "";
  width: 40px;
  height: 3px;
  display: block;
  background: #006BED;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
}
#about-the-mission h3 {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
#about-the-mission h3:last-child {
  margin-bottom: 0;
}
@media (min-width: 1012px) {
  #about-the-mission h3 {
    font-size: 16px;
  }
}

.wp-block-group > .wp-block-heading,
.wp-block-group > p {
  width: 92%;
  margin: 0 auto;
  max-width: 1248px;
  -webkit-transition: max-width 0.4s ease;
  transition: max-width 0.4s ease;
}
.wp-block-group > .wp-block-heading.alignfull,
.wp-block-group > p.alignfull {
  max-width: 100%;
  width: 100%;
}
.wp-block-group > .wp-block-heading.alignwide,
.wp-block-group > p.alignwide {
  max-width: var(--wp--style--global--wide-size);
}

.wp-block-media-text {
  width: 92%;
  margin: 0 auto;
  max-width: 1248px;
  -webkit-transition: max-width 0.4s ease;
  transition: max-width 0.4s ease;
}
.wp-block-media-text.alignfull {
  max-width: 100%;
  width: 100%;
}
.wp-block-media-text.alignwide {
  max-width: var(--wp--style--global--wide-size);
}

.wp-block-columns {
  width: 92%;
  margin: 0 auto;
  max-width: 1248px;
  -webkit-transition: max-width 0.4s ease;
  transition: max-width 0.4s ease;
}
.wp-block-columns.alignfull {
  max-width: 100%;
  width: 100%;
}
.wp-block-columns.alignwide {
  max-width: var(--wp--style--global--wide-size);
}

.wp-block-separator {
  width: 92%;
  margin: 0 auto;
  max-width: 1248px;
  -webkit-transition: max-width 0.4s ease;
  transition: max-width 0.4s ease;
  height: 1px;
  background: transparent !important;
  border: none !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}
.wp-block-separator.alignfull {
  max-width: 100%;
  width: 100%;
}
.wp-block-separator.alignwide {
  max-width: var(--wp--style--global--wide-size);
}

.stars-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 0;
  width: 100%;
}
.stars-bg:before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 132px;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(20%, rgba(0, 0, 0, 0)), color-stop(88%, black));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 20%, black 88%);
}
.stars-bg:after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 615px;
  left: 0;
  bottom: 0;
  background: linear-gradient(354.98deg, #010101 20.71%, rgba(1, 1, 1, 0) 88.86%);
}
.stars-bg img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .missions {
    margin: 80px 0 0;
  }
}
@media (min-width: 1012px) {
  .missions {
    margin: 80px 0 0;
  }
}

.missions__content_2 {
  margin: 48px 0 72px;
}
@media (min-width: 768px) {
  .missions__content_2 {
    margin: 97px 0 72px;
  }
}
@media (min-width: 1012px) {
  .missions__content_2 {
    margin: 182px 0 0;
  }
}

.page-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
  min-height: 90vh;
}
.page-bg img {
  opacity: 0.6;
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: bottom;
  object-position: bottom;
}
@media (min-width: 1012px) {
  .page-bg {
    min-height: 94vh;
  }
}

.pos-rel {
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .text-center-md {
    text-align: center;
  }
}

.line-wrap {
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.line-wrap__hd {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  background: #ffffff;
  padding: 4px 36px;
  margin-top: -1px;
}
.line-wrap__hd .h5 {
  line-height: 1;
  white-space: nowrap;
}
.line-wrap__hd:before, .line-wrap__hd:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.line-wrap__hd:before {
  left: 0;
}
.line-wrap__hd:after {
  right: 0;
}

.line-wrap__bd {
  padding: 36px 24px 0;
}
@media (min-width: 768px) {
  .line-wrap__bd {
    padding: 92px 92px 0;
  }
}

.line-right,
.line-left {
  display: inline-block;
  position: relative;
}
.line-right:before,
.line-left:before {
  content: "";
  width: 6px;
  height: 6px;
  background: #24292e;
  border-radius: 6px;
  display: block;
  position: absolute;
  left: calc(100% + 8px);
  top: calc(50% - 3px);
}
.line-right:after,
.line-left:after {
  content: "";
  width: 120vw;
  height: 1px;
  background: #24292e;
  border-radius: 6px;
  display: block;
  position: absolute;
  left: calc(100% + 8px);
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0) scale(0);
  transform: translate3d(0, -50%, 0) scale(0);
  -webkit-transition: -webkit-transform 3s ease-in-out;
  transition: -webkit-transform 3s ease-in-out;
  transition: transform 3s ease-in-out;
  transition: transform 3s ease-in-out, -webkit-transform 3s ease-in-out;
  -webkit-transform-origin: left;
  transform-origin: left;
}
.line-right.in-view:after,
.line-left.in-view:after {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  -webkit-transform: translate3d(0, -50%, 0) scale(1);
  transform: translate3d(0, -50%, 0) scale(1);
}

.line-left {
  display: block;
}
.line-left:before {
  right: calc(100% + 34px);
  left: auto;
  top: 11px;
}
.line-left:after {
  left: auto;
  right: calc(100% + 36px);
  top: 14px;
  -webkit-transform-origin: right;
  transform-origin: right;
}
.line-left.in-view:after {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  -webkit-transform: translate3d(0, -50%, 0) scale(1);
  transform: translate3d(0, -50%, 0) scale(1);
}

.theme-dark .line-wrap {
  border-color: #24292e;
}
.theme-dark .line-wrap__hd {
  background: #000000;
  color: #ffffff;
}
.theme-dark .line-wrap__hd:before, .theme-dark .line-wrap__hd:after {
  background: #24292e;
}

.page-id-165 .logo-list-wrap {
  background: #000000;
}
.page-id-165 .line-wrap {
  border: none;
}
.page-id-165 .line-wrap__hd {
  background: #000000;
  color: #ffffff;
}
.page-id-165 .line-wrap__hd:before, .page-id-165 .line-wrap__hd:after {
  display: none;
}

.moon-wrap {
  position: relative;
}

.moon-left {
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform: translate3d(-100%, -50%, 0);
  transform: translate3d(-100%, -50%, 0);
  -webkit-transition: -webkit-transform 3s ease-in-out;
  transition: -webkit-transform 3s ease-in-out;
  transition: transform 3s ease-in-out;
  transition: transform 3s ease-in-out, -webkit-transform 3s ease-in-out;
}
.moon-left.in-view {
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

@media (min-width: 544px) {
  .flex-flip-sm {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
}

.text-center {
  text-align: center;
}
.text-center p, .text-center img, .text-center .text-thin {
  margin-left: auto;
  margin-right: auto;
}

.text-thin {
  max-width: 560px;
}

.text-brand {
  color: #006BED;
}

.text-white {
  color: #ffffff !important;
}

.text-light {
  color: #6a737d;
}

.text-italic {
  font-style: italic;
}

.text-bold {
  font-weight: 700;
}

.font-weight-500 {
  font-weight: 500;
}

.sr-only,
.screen-reader-text {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.bg-light {
  background: #959da5;
}

.bg-brand {
  background: #000000;
  color: #ffffff;
}
.bg-brand p {
  color: #ffffff;
}

.bg-dark,
.bg-black {
  background: #000000;
  color: #ffffff;
}
.bg-dark p,
.bg-black p {
  color: #ffffff;
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#__bs_notify__ {
  opacity: 0;
  bottom: 0 !important;
  top: auto !important;
  height: 50px;
}

body.localhost:after {
  position: fixed;
  z-index: 1000;
  bottom: 0;
  right: 0;
  display: inline-block;
  color: white;
  font-size: 8px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2px;
  content: "Mobile";
}
@media (min-width: 544px) {
  body.localhost:after {
    content: "Small";
  }
}
@media (min-width: 768px) {
  body.localhost:after {
    content: "Medium";
  }
}
@media (min-width: 1012px) {
  body.localhost:after {
    content: "Large";
  }
}
@media (min-width: 1280px) {
  body.localhost:after {
    content: "x-large";
  }
}