*,
*:before,
*:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
span {
  font-feature-settings: "palt";
}

body {
  background-color: rgb(255, 255, 255);
  color: #1f0d00;
  width: 100%;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  min-width: 1024px;
}
@media screen and (max-width: 599px) {
  body {
    min-width: 320px;
  }
}

img {
  width: 100%;
  vertical-align: bottom;
}

.flexbox {
  display: flex;
}

.dsnone {
  display: none !important;
}

.pcnone {
  display: none;
}
@media screen and (max-width: 599px) {
  .pcnone {
    display: block;
  }
}

.spnone {
  display: block;
}
@media screen and (max-width: 599px) {
  .spnone {
    display: none;
  }
}

.container {
  position: relative;
}

.header {
  color: #005083;
  background-color: white;
  padding: 0 3%;
  height: 100px;
  justify-content: space-between;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99;
}
@media screen and (max-width: 599px) {
  .header {
    height: 80px;
    background-color: rgba(255, 255, 255, 0);
    padding: 0 20px;
  }
}
.header_right {
  align-items: center;
}
.header_logo {
  width: 550px;
  position: absolute;
  top: 20px;
  left: 3%;
  transition: all 0.4s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .header_logo {
    width: 450px;
  }
}
@media screen and (max-width: 599px) {
  .header_logo {
    top: 50%;
    transform: translate(0, -50%);
    width: 220px;
  }
}
.header_logo a {
  align-items: center;
}
@media screen and (max-width: 599px) {
  .header_logo a {
    display: flex;
    justify-content: space-between;
  }
}
.header_logo a .imgWrap {
  width: 100%;
}
@media screen and (max-width: 599px) {
  .header_logo a .imgWrap {
    width: 30%;
  }
}
.header_logo a .imgWrap img {
  width: 100%;
}
.header_logo a span {
  font-size: 14px;
  transition: all 0.4s ease-in-out;
}
@media screen and (max-width: 599px) {
  .header_logo a span.active {
    opacity: 0;
  }
}
.header_logo.active {
  width: 300px;
}
@media screen and (max-width: 599px) {
  .header_logo.active {
    width: 220px;
  }
}
.header_text {
  font-size: 16px;
  letter-spacing: 1px;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .header_text {
    display: none;
  }
}
.header_text .small {
  font-size: 0.6em;
}
.header_text .strong {
  font-size: 1.6em;
}
.header_text .tell {
  letter-spacing: 1px;
  float: right;
  margin: 10px 0 0;
}
.header_text .tell a {
  transition: all 0.4s ease-in-out;
  line-height: 20px;
  font-size: 20px;
}
.header_text .tell a:hover {
  color: #aeddf0;
}
.header_text .tell a img {
  width: 20px;
  height: 20px;
  margin-left: 10px;
  margin-right: 5px;
}
.header_contact {
  color: white;
  margin: 0 20px;
}
@media screen and (max-width: 599px) {
  .header_contact {
    display: none;
  }
}
.header_contact p a {
  background-color: #5a77a6;
  padding: 12px 10px;
  border-radius: 10px;
  display: block;
  transition: all 0.4s ease-in-out;
}
.header_contact p a:hover {
  color: #aeddf0;
}
.header_ham {
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: relative;
  z-index: 1000;
}
.header_ham p {
  font-size: 10px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 80%);
  font-weight: bold;
}
.header_ham span {
  display: block;
  height: 3px;
  border-radius: 10px;
  background-color: #005083;
  transition: background 0.7s cubic-bezier(0.69, -0.3, 0.15, 0.89), opacity 0.7s cubic-bezier(0.69, -0.3, 0.15, 0.89), top 0.7s cubic-bezier(0.69, -0.3, 0.15, 0.89), transform 0.7s cubic-bezier(0.69, -0.3, 0.15, 0.89), width 0.25s ease;
}
.header_ham span:nth-child(1) {
  position: absolute;
  top: 8px;
  left: 0%;
  width: 100%;
}
.header_ham span:nth-child(2) {
  position: absolute;
  top: 18px;
  left: 0%;
  width: 70%;
}
.header_ham span:nth-child(3) {
  position: absolute;
  top: 28px;
  left: 0%;
  width: 85%;
}
.header_ham.active span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}
.header_ham.active span:nth-child(2) {
  opacity: 0;
}
.header_ham.active span:nth-child(3) {
  top: 15px;
  width: 100%;
  transform: rotate(135deg);
}

.gnav {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  width: 400px;
  height: 100%;
  background-color: rgba(247, 246, 246, 0.9);
  transform: translateX(105%);
  transition: all 700ms cubic-bezier(0.13, 0.81, 0.09, 0.86);
  padding: 90px 30px 50px;
  overflow: scroll;
}
@media screen and (max-width: 599px) {
  .gnav {
    width: 100%;
  }
}
.gnav_list {
  padding: 30px 0;
  border-top: 1px solid #005083;
}
.gnav_list:last-child {
  margin: 0;
}
.gnav_list li {
  margin: 0 0 25px;
  display: flex;
  align-items: center;
}
.gnav_list li:last-child {
  margin: 0;
}
.gnav_list li img {
  width: 20px;
  height: 20px;
  margin-right: 20px;
}
.gnav_list li a {
  transition: all 0.4s ease-in-out;
  color: #005083;
}
.gnav_list li a:hover {
  color: #aeddf0;
}
.gnav_iconWrap li {
  margin-right: 20px;
}
.gnav_iconWrap li:last-child {
  margin: 0;
}
.gnav_iconWrap li img {
  width: 28px;
  height: 28px;
}
.gnav.active {
  transform: translateX(0);
}

.footerWrap {
  padding: 0 5% 5%;
}
@media screen and (max-width: 599px) {
  .footerWrap {
    padding: 0 20px 3%;
  }
}
.footerWrap .toTop {
  float: right;
  margin: 0 0 150px;
}
@media screen and (max-width: 599px) {
  .footerWrap .toTop {
    margin: 0 0 60px;
  }
}
.footerWrap .toTop-lower {
  margin: 0 0 50px;
}
@media screen and (max-width: 599px) {
  .footerWrap .toTop-lower {
    margin: 0 0 20px;
  }
}
.footerWrap .toTop_img {
  width: 30px;
}
@media screen and (max-width: 599px) {
  .footerWrap .toTop_img {
    width: 15px;
  }
}
.footerWrap .iconWrap {
  float: right;
  clear: both;
  margin-bottom: 20px;
}
.footerWrap .iconWrap ul li {
  width: 28px;
  height: 28px;
  margin-right: 20px;
}
.footerWrap .iconWrap ul li:last-child {
  margin: 0;
}
.footerWrap .lowerMenu {
  color: #005083;
  margin: 50px auto 0;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 80%;
}
@media screen and (max-width: 599px) {
  .footerWrap .lowerMenu {
    width: 100%;
  }
}
.footerWrap .lowerMenuWrap {
  margin: 200px 0 0;
}
@media screen and (max-width: 1024px) {
  .footerWrap .lowerMenuWrap {
    margin: 150px 0 0;
  }
}
.footerWrap .lowerMenu-child {
  width: 16%;
  padding-top: 16%;
  position: relative;
  background-color: #f7f6f6;
  border-radius: 100%;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .footerWrap .lowerMenu-child {
    width: 30%;
    padding-top: 30%;
  }
}
.footerWrap .lowerMenu-child img {
  position: absolute;
  width: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.footerWrap .lowerMenu-child p {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footerWrap .lowerMenu-child p a {
  text-align: center;
  padding: 30px 0;
  line-height: 1.6;
  display: block;
  font-weight: bold;
  font-size: 16px;
}
@media screen and (max-width: 599px) {
  .footerWrap .lowerMenu-child p a {
    font-size: 14px;
  }
}
.footerWrap .lowerMenu-title {
  position: relative;
  margin: 20px 0;
  text-align: center;
}
.footerWrap .lowerMenu-title img {
  width: 100px;
  position: absolute;
  left: 0;
  bottom: 10px;
  transform: translate(-100%, 0);
}
@media screen and (max-width: 599px) {
  .footerWrap .lowerMenu-title img {
    width: 80px;
    left: 50%;
    top: 0;
    bottom: unset;
    transform: translate(-50%, -100%);
  }
}
.footerWrap .lowerMenu-title p {
  font-size: 24px;
  display: inline-block;
  color: #005083;
  position: relative;
  letter-spacing: 2px;
}
@media screen and (max-width: 599px) {
  .footerWrap .lowerMenu-title p {
    font-size: 18px;
  }
}
.footerWrap .lowerMenu-title p span {
  font-size: 1.6em;
}
.footerWrap .footerMap {
  clear: both;
  padding: 30px 0 0;
}
.footerWrap .footerMap_map {
  width: 100%;
  margin: 0 0 15px;
}
@media screen and (max-width: 1024px) {
  .footerWrap .footerMap_map {
    margin: 0 0 10px;
  }
}
.footerWrap .footerMap_map iframe {
  width: 100%;
  height: 500px;
}
@media screen and (max-width: 599px) {
  .footerWrap .footerMap_map iframe {
    height: 350px;
  }
}
.footerWrap .footerMap_text p {
  color: #005083;
  line-height: 1.6;
  font-size: 16px;
}
@media screen and (max-width: 599px) {
  .footerWrap .footerMap_text p {
    font-size: 14px;
  }
}
.footerWrap .footerLine {
  width: 100%;
  margin: 30px 0;
}
@media screen and (max-width: 599px) {
  .footerWrap .footerLine {
    margin: 20px 0;
  }
}
.footerWrap .footerTopBorder {
  border-top: 1px solid #005083;
}
.footerWrap .footer {
  clear: both;
  padding: 50px 0 30px;
  justify-content: space-between;
  color: #005083;
}
@media screen and (max-width: 1024px) {
  .footerWrap .footer {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .footerWrap .footer {
    padding: 30px 0 20px;
  }
}
.footerWrap .footer_left {
  width: 46%;
}
@media screen and (max-width: 1024px) {
  .footerWrap .footer_left {
    width: 100%;
    margin: 0 0 15px;
  }
}
.footerWrap .footer_left-img {
  width: 100%;
  margin: 0 0 30px;
}
.footerWrap .footer_left-text {
  letter-spacing: 1px;
  font-size: 14px;
  line-height: 1.6;
}
.footerWrap .footer_right {
  width: 46%;
}
@media screen and (max-width: 1024px) {
  .footerWrap .footer_right {
    width: 100%;
  }
}
.footerWrap .footer_right-logo {
  width: 100%;
  margin: 0 0 30px;
}
.footerWrap .footer_right-text {
  letter-spacing: 1px;
  line-height: 1.6;
  font-size: 14px;
}
.footerWrap .footer_right-lineBtn {
  margin: 15px 0;
}
.footerWrap .footer_right-lineBtn p a {
  font-size: 18px;
  line-height: 24px;
  background-color: #c9d752;
  width: 100%;
  padding: 10px 0;
  text-align: center;
  display: block;
}
@media screen and (max-width: 599px) {
  .footerWrap .footer_right-lineBtn p a {
    font-size: 16px;
  }
}
.footerWrap .footer_right-lineBtn p a img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.footerWrap .footer_right-formWrap {
  justify-content: space-around;
  align-items: center;
  margin: 10px 0;
}
.footerWrap .footer_right-formWrap-tell {
  letter-spacing: 1px;
}
.footerWrap .footer_right-formWrap-tell a {
  transition: all 0.4s ease-in-out;
  font-size: 28px;
  align-items: center;
  display: flex;
}
@media screen and (max-width: 599px) {
  .footerWrap .footer_right-formWrap-tell a {
    font-size: 18px;
  }
}
.footerWrap .footer_right-formWrap-tell a:hover {
  color: #aeddf0;
}
.footerWrap .footer_right-formWrap-tell a img {
  width: 22px;
  height: 22px;
  margin-left: 10px;
  margin-right: 5px;
}
@media screen and (max-width: 599px) {
  .footerWrap .footer_right-formWrap-tell a img {
    width: 18px;
    height: 18px;
  }
}
.footerWrap .footer_right-formWrap-formBtn a {
  display: block;
  border: 2px solid #005083;
  border-radius: 20px;
  padding: 10px 0;
  font-size: 20px;
  transition: all 0.4s ease-in-out;
  width: 150px;
  text-align: center;
  margin: 10px 0;
}
@media screen and (max-width: 599px) {
  .footerWrap .footer_right-formWrap-formBtn a {
    font-size: 16px;
    padding: 10px 25px;
    width: 100%;
  }
}
.footerWrap .footer_right-formWrap-formBtn a:hover {
  background-color: #005083;
  color: white;
}
.footerWrap .footerBottom {
  background-color: #005083;
  color: white;
  padding: 10px 30px;
}
@media screen and (max-width: 599px) {
  .footerWrap .footerBottom {
    padding: 15px;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding-left: 5%;
    padding-right: 5%;
  }
}
.footerWrap .footerBottom ul {
  flex-wrap: wrap;
  justify-content: flex-start;
}
.footerWrap .footerBottom ul li {
  font-size: 14px;
  margin: 0 20px;
  line-height: 30px;
}
@media screen and (max-width: 599px) {
  .footerWrap .footerBottom ul li {
    margin: 0 15px;
  }
}
.footerWrap .footerBottom ul li a {
  transition: all 0.4s ease-in-out;
}
.footerWrap .footerBottom ul li a:hover {
  color: #aeddf0;
}
.footerWrap .copyRight {
  margin: 0 3%;
  padding: 30px 0;
}
@media screen and (max-width: 599px) {
  .footerWrap .copyRight {
    margin: 0 3% 60px;
  }
}
.footerWrap .copyRight p {
  font-size: 14px;
  color: #005083;
  float: right;
}
@media screen and (max-width: 599px) {
  .footerWrap .copyRight p {
    font-size: 12px;
  }
}

.spUnderBar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 80;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .spUnderBar {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
  }
}
.spUnderBar_content {
  width: 50%;
  justify-content: space-between;
}
.spUnderBar-child {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spUnderBar-toTop {
  width: 40px;
}

.js_fadein {
  transition: all 0.8s ease-in-out;
  opacity: 0;
}

.js_fadeside {
  transition: all 0.8s ease-in-out;
  opacity: 0;
  transform: translateY(10%);
  will-change: transform;
}

.js_fadeside_toleft {
  transition: all 0.8s ease-in-out;
  opacity: 0;
  transform: translateX(-10%);
  will-change: transform;
}

.js_fadeside_toright {
  transition: all 0.8s ease-in-out;
  opacity: 0;
  transform: translateX(10%);
  will-change: transform;
}

.js_fadeBottom {
  transition: all 0.8s ease-in-out;
  opacity: 0;
  transform: translateY(5%);
  will-change: transform;
}

.js_sideslide {
  overflow: hidden;
  position: relative;
  will-change: transform;
}
.js_sideslide.action::before {
  right: -110%;
}
.js_sideslide.action::after {
  right: -110%;
}
.js_sideslide::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  transition: 0.8s all;
  background: white;
  z-index: 2;
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}
.js_sideslide::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: black;
  transition: 0.8s all;
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: 0.2s;
}

.textDrop {
  transition: transform 0.5s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 0.5s cubic-bezier(0.6, 0.2, 0.1, 1) 0s;
  will-change: transform;
}
.textDrop span {
  opacity: 0;
  display: inline-block;
  filter: blur(1.5rem);
  transform: translate(-94px, -68px) rotate(17deg) scaleX(1.62) scaleY(1.4) skewX(34deg) skewY(3deg);
  -webkit-transform: translate(-94px, -68px) rotate(17deg) scaleX(1.62) scaleY(1.4) skewX(34deg) skewY(3deg);
}
.textDrop span:nth-child(1) {
  -webkit-animation-delay: 0.1s !important;
          animation-delay: 0.1s !important;
}
.textDrop span:nth-child(2) {
  -webkit-animation-delay: 0.2s !important;
          animation-delay: 0.2s !important;
}
.textDrop span:nth-child(3) {
  -webkit-animation-delay: 0.3s !important;
          animation-delay: 0.3s !important;
}
.textDrop span:nth-child(4) {
  -webkit-animation-delay: 0.4s !important;
          animation-delay: 0.4s !important;
}
.textDrop span:nth-child(5) {
  -webkit-animation-delay: 0.5s !important;
          animation-delay: 0.5s !important;
}
.textDrop span:nth-child(6) {
  -webkit-animation-delay: 0.6s !important;
          animation-delay: 0.6s !important;
}
.textDrop span:nth-child(7) {
  -webkit-animation-delay: 0.7s !important;
          animation-delay: 0.7s !important;
}
.textDrop span:nth-child(8) {
  -webkit-animation-delay: 0.8s !important;
          animation-delay: 0.8s !important;
}
.textDrop span:nth-child(9) {
  -webkit-animation-delay: 0.9s !important;
          animation-delay: 0.9s !important;
}
.textDrop span:nth-child(10) {
  -webkit-animation-delay: 1s !important;
          animation-delay: 1s !important;
}
.textDrop span:nth-child(11) {
  -webkit-animation-delay: 1.1s !important;
          animation-delay: 1.1s !important;
}
.textDrop span:nth-child(12) {
  -webkit-animation-delay: 1.2s !important;
          animation-delay: 1.2s !important;
}
.textDrop span:nth-child(13) {
  -webkit-animation-delay: 1.3s !important;
          animation-delay: 1.3s !important;
}
.textDrop span:nth-child(14) {
  -webkit-animation-delay: 1.4s !important;
          animation-delay: 1.4s !important;
}
.textDrop span:nth-child(15) {
  -webkit-animation-delay: 1.5s !important;
          animation-delay: 1.5s !important;
}
.textDrop span:nth-child(16) {
  -webkit-animation-delay: 1.6s !important;
          animation-delay: 1.6s !important;
}
.textDrop span:nth-child(17) {
  -webkit-animation-delay: 1.7s !important;
          animation-delay: 1.7s !important;
}
.textDrop span:nth-child(18) {
  -webkit-animation-delay: 1.8s !important;
          animation-delay: 1.8s !important;
}
.textDrop span:nth-child(19) {
  -webkit-animation-delay: 1.9s !important;
          animation-delay: 1.9s !important;
}
.textDrop span:nth-child(20) {
  -webkit-animation-delay: 2s !important;
          animation-delay: 2s !important;
}
.textDrop span:nth-child(21) {
  -webkit-animation-delay: 2.1s !important;
          animation-delay: 2.1s !important;
}
.textDrop span:nth-child(22) {
  -webkit-animation-delay: 2.2s !important;
          animation-delay: 2.2s !important;
}
.textDrop span:nth-child(23) {
  -webkit-animation-delay: 2.3s !important;
          animation-delay: 2.3s !important;
}
.textDrop span:nth-child(24) {
  -webkit-animation-delay: 2.4s !important;
          animation-delay: 2.4s !important;
}
.textDrop span:nth-child(25) {
  -webkit-animation-delay: 2.5s !important;
          animation-delay: 2.5s !important;
}
.textDrop span:nth-child(26) {
  -webkit-animation-delay: 2.6s !important;
          animation-delay: 2.6s !important;
}
.textDrop span:nth-child(27) {
  -webkit-animation-delay: 2.7s !important;
          animation-delay: 2.7s !important;
}
.textDrop span:nth-child(28) {
  -webkit-animation-delay: 2.8s !important;
          animation-delay: 2.8s !important;
}
.textDrop span:nth-child(29) {
  -webkit-animation-delay: 2.9s !important;
          animation-delay: 2.9s !important;
}
.textDrop span:nth-child(30) {
  -webkit-animation-delay: 3s !important;
          animation-delay: 3s !important;
}
.textDrop span:nth-child(31) {
  -webkit-animation-delay: 3.1s !important;
          animation-delay: 3.1s !important;
}
.textDrop span:nth-child(32) {
  -webkit-animation-delay: 3.2s !important;
          animation-delay: 3.2s !important;
}
.textDrop span:nth-child(33) {
  -webkit-animation-delay: 3.3s !important;
          animation-delay: 3.3s !important;
}
.textDrop span:nth-child(34) {
  -webkit-animation-delay: 3.4s !important;
          animation-delay: 3.4s !important;
}
.textDrop span:nth-child(35) {
  -webkit-animation-delay: 3.5s !important;
          animation-delay: 3.5s !important;
}
.textDrop span:nth-child(36) {
  -webkit-animation-delay: 3.6s !important;
          animation-delay: 3.6s !important;
}
.textDrop span:nth-child(37) {
  -webkit-animation-delay: 3.7s !important;
          animation-delay: 3.7s !important;
}
.textDrop span:nth-child(38) {
  -webkit-animation-delay: 3.8s !important;
          animation-delay: 3.8s !important;
}
.textDrop span:nth-child(39) {
  -webkit-animation-delay: 3.9s !important;
          animation-delay: 3.9s !important;
}
.textDrop span:nth-child(40) {
  -webkit-animation-delay: 4s !important;
          animation-delay: 4s !important;
}
.textDrop span:nth-child(41) {
  -webkit-animation-delay: 4.1s !important;
          animation-delay: 4.1s !important;
}
.textDrop span:nth-child(42) {
  -webkit-animation-delay: 4.2s !important;
          animation-delay: 4.2s !important;
}
.textDrop span:nth-child(43) {
  -webkit-animation-delay: 4.3s !important;
          animation-delay: 4.3s !important;
}
.textDrop span:nth-child(44) {
  -webkit-animation-delay: 4.4s !important;
          animation-delay: 4.4s !important;
}
.textDrop span:nth-child(45) {
  -webkit-animation-delay: 4.5s !important;
          animation-delay: 4.5s !important;
}
.textDrop span:nth-child(46) {
  -webkit-animation-delay: 4.6s !important;
          animation-delay: 4.6s !important;
}
.textDrop span:nth-child(47) {
  -webkit-animation-delay: 4.7s !important;
          animation-delay: 4.7s !important;
}
.textDrop span:nth-child(48) {
  -webkit-animation-delay: 4.8s !important;
          animation-delay: 4.8s !important;
}
.textDrop span:nth-child(49) {
  -webkit-animation-delay: 4.9s !important;
          animation-delay: 4.9s !important;
}
.textDrop span:nth-child(50) {
  -webkit-animation-delay: 5s !important;
          animation-delay: 5s !important;
}
.textDrop span:nth-child(51) {
  -webkit-animation-delay: 5.1s !important;
          animation-delay: 5.1s !important;
}
.textDrop span:nth-child(52) {
  -webkit-animation-delay: 5.2s !important;
          animation-delay: 5.2s !important;
}
.textDrop span:nth-child(53) {
  -webkit-animation-delay: 5.3s !important;
          animation-delay: 5.3s !important;
}
.textDrop span:nth-child(54) {
  -webkit-animation-delay: 5.4s !important;
          animation-delay: 5.4s !important;
}
.textDrop span:nth-child(55) {
  -webkit-animation-delay: 5.5s !important;
          animation-delay: 5.5s !important;
}
.textDrop span:nth-child(56) {
  -webkit-animation-delay: 5.6s !important;
          animation-delay: 5.6s !important;
}
.textDrop span:nth-child(57) {
  -webkit-animation-delay: 5.7s !important;
          animation-delay: 5.7s !important;
}
.textDrop span:nth-child(58) {
  -webkit-animation-delay: 5.8s !important;
          animation-delay: 5.8s !important;
}
.textDrop span:nth-child(59) {
  -webkit-animation-delay: 5.9s !important;
          animation-delay: 5.9s !important;
}
.textDrop span:nth-child(60) {
  -webkit-animation-delay: 6s !important;
          animation-delay: 6s !important;
}
.textDrop.active span {
  -webkit-animation: bigtextDrop 1s ease forwards;
          animation: bigtextDrop 1s ease forwards;
}

@-webkit-keyframes bigtextDrop {
  0% {
    filter: blur(1.5rem);
    opacity: 0;
    transform: translate(-94px, -68px) rotate(17deg) scaleX(1.62) scaleY(1.4) skewX(34deg) skewY(3deg);
  }
  100% {
    filter: blur(0);
    opacity: 1;
    transform: translate(0px, 0px) rotate(0deg) scaleX(1) scaleY(1) skewX(0deg) skewY(0deg);
  }
}

@keyframes bigtextDrop {
  0% {
    filter: blur(1.5rem);
    opacity: 0;
    transform: translate(-94px, -68px) rotate(17deg) scaleX(1.62) scaleY(1.4) skewX(34deg) skewY(3deg);
  }
  100% {
    filter: blur(0);
    opacity: 1;
    transform: translate(0px, 0px) rotate(0deg) scaleX(1) scaleY(1) skewX(0deg) skewY(0deg);
  }
}
.textFadeIn {
  transition: transform 0.5s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 0.5s cubic-bezier(0.6, 0.2, 0.1, 1) 0s;
  will-change: transform;
}
.textFadeIn span {
  opacity: 0;
  display: inline-block;
  will-change: transform;
}
.textFadeIn span:nth-child(1) {
  -webkit-animation-delay: 0.015s !important;
          animation-delay: 0.015s !important;
}
.textFadeIn span:nth-child(2) {
  -webkit-animation-delay: 0.03s !important;
          animation-delay: 0.03s !important;
}
.textFadeIn span:nth-child(3) {
  -webkit-animation-delay: 0.045s !important;
          animation-delay: 0.045s !important;
}
.textFadeIn span:nth-child(4) {
  -webkit-animation-delay: 0.06s !important;
          animation-delay: 0.06s !important;
}
.textFadeIn span:nth-child(5) {
  -webkit-animation-delay: 0.075s !important;
          animation-delay: 0.075s !important;
}
.textFadeIn span:nth-child(6) {
  -webkit-animation-delay: 0.09s !important;
          animation-delay: 0.09s !important;
}
.textFadeIn span:nth-child(7) {
  -webkit-animation-delay: 0.105s !important;
          animation-delay: 0.105s !important;
}
.textFadeIn span:nth-child(8) {
  -webkit-animation-delay: 0.12s !important;
          animation-delay: 0.12s !important;
}
.textFadeIn span:nth-child(9) {
  -webkit-animation-delay: 0.135s !important;
          animation-delay: 0.135s !important;
}
.textFadeIn span:nth-child(10) {
  -webkit-animation-delay: 0.15s !important;
          animation-delay: 0.15s !important;
}
.textFadeIn span:nth-child(11) {
  -webkit-animation-delay: 0.165s !important;
          animation-delay: 0.165s !important;
}
.textFadeIn span:nth-child(12) {
  -webkit-animation-delay: 0.18s !important;
          animation-delay: 0.18s !important;
}
.textFadeIn span:nth-child(13) {
  -webkit-animation-delay: 0.195s !important;
          animation-delay: 0.195s !important;
}
.textFadeIn span:nth-child(14) {
  -webkit-animation-delay: 0.21s !important;
          animation-delay: 0.21s !important;
}
.textFadeIn span:nth-child(15) {
  -webkit-animation-delay: 0.225s !important;
          animation-delay: 0.225s !important;
}
.textFadeIn span:nth-child(16) {
  -webkit-animation-delay: 0.24s !important;
          animation-delay: 0.24s !important;
}
.textFadeIn span:nth-child(17) {
  -webkit-animation-delay: 0.255s !important;
          animation-delay: 0.255s !important;
}
.textFadeIn span:nth-child(18) {
  -webkit-animation-delay: 0.27s !important;
          animation-delay: 0.27s !important;
}
.textFadeIn span:nth-child(19) {
  -webkit-animation-delay: 0.285s !important;
          animation-delay: 0.285s !important;
}
.textFadeIn span:nth-child(20) {
  -webkit-animation-delay: 0.3s !important;
          animation-delay: 0.3s !important;
}
.textFadeIn span:nth-child(21) {
  -webkit-animation-delay: 0.315s !important;
          animation-delay: 0.315s !important;
}
.textFadeIn span:nth-child(22) {
  -webkit-animation-delay: 0.33s !important;
          animation-delay: 0.33s !important;
}
.textFadeIn span:nth-child(23) {
  -webkit-animation-delay: 0.345s !important;
          animation-delay: 0.345s !important;
}
.textFadeIn span:nth-child(24) {
  -webkit-animation-delay: 0.36s !important;
          animation-delay: 0.36s !important;
}
.textFadeIn span:nth-child(25) {
  -webkit-animation-delay: 0.375s !important;
          animation-delay: 0.375s !important;
}
.textFadeIn span:nth-child(26) {
  -webkit-animation-delay: 0.39s !important;
          animation-delay: 0.39s !important;
}
.textFadeIn span:nth-child(27) {
  -webkit-animation-delay: 0.405s !important;
          animation-delay: 0.405s !important;
}
.textFadeIn span:nth-child(28) {
  -webkit-animation-delay: 0.42s !important;
          animation-delay: 0.42s !important;
}
.textFadeIn span:nth-child(29) {
  -webkit-animation-delay: 0.435s !important;
          animation-delay: 0.435s !important;
}
.textFadeIn span:nth-child(30) {
  -webkit-animation-delay: 0.45s !important;
          animation-delay: 0.45s !important;
}
.textFadeIn span:nth-child(31) {
  -webkit-animation-delay: 0.465s !important;
          animation-delay: 0.465s !important;
}
.textFadeIn span:nth-child(32) {
  -webkit-animation-delay: 0.48s !important;
          animation-delay: 0.48s !important;
}
.textFadeIn span:nth-child(33) {
  -webkit-animation-delay: 0.495s !important;
          animation-delay: 0.495s !important;
}
.textFadeIn span:nth-child(34) {
  -webkit-animation-delay: 0.51s !important;
          animation-delay: 0.51s !important;
}
.textFadeIn span:nth-child(35) {
  -webkit-animation-delay: 0.525s !important;
          animation-delay: 0.525s !important;
}
.textFadeIn span:nth-child(36) {
  -webkit-animation-delay: 0.54s !important;
          animation-delay: 0.54s !important;
}
.textFadeIn span:nth-child(37) {
  -webkit-animation-delay: 0.555s !important;
          animation-delay: 0.555s !important;
}
.textFadeIn span:nth-child(38) {
  -webkit-animation-delay: 0.57s !important;
          animation-delay: 0.57s !important;
}
.textFadeIn span:nth-child(39) {
  -webkit-animation-delay: 0.585s !important;
          animation-delay: 0.585s !important;
}
.textFadeIn span:nth-child(40) {
  -webkit-animation-delay: 0.6s !important;
          animation-delay: 0.6s !important;
}
.textFadeIn span:nth-child(41) {
  -webkit-animation-delay: 0.615s !important;
          animation-delay: 0.615s !important;
}
.textFadeIn span:nth-child(42) {
  -webkit-animation-delay: 0.63s !important;
          animation-delay: 0.63s !important;
}
.textFadeIn span:nth-child(43) {
  -webkit-animation-delay: 0.645s !important;
          animation-delay: 0.645s !important;
}
.textFadeIn span:nth-child(44) {
  -webkit-animation-delay: 0.66s !important;
          animation-delay: 0.66s !important;
}
.textFadeIn span:nth-child(45) {
  -webkit-animation-delay: 0.675s !important;
          animation-delay: 0.675s !important;
}
.textFadeIn span:nth-child(46) {
  -webkit-animation-delay: 0.69s !important;
          animation-delay: 0.69s !important;
}
.textFadeIn span:nth-child(47) {
  -webkit-animation-delay: 0.705s !important;
          animation-delay: 0.705s !important;
}
.textFadeIn span:nth-child(48) {
  -webkit-animation-delay: 0.72s !important;
          animation-delay: 0.72s !important;
}
.textFadeIn span:nth-child(49) {
  -webkit-animation-delay: 0.735s !important;
          animation-delay: 0.735s !important;
}
.textFadeIn span:nth-child(50) {
  -webkit-animation-delay: 0.75s !important;
          animation-delay: 0.75s !important;
}
.textFadeIn span:nth-child(51) {
  -webkit-animation-delay: 0.765s !important;
          animation-delay: 0.765s !important;
}
.textFadeIn span:nth-child(52) {
  -webkit-animation-delay: 0.78s !important;
          animation-delay: 0.78s !important;
}
.textFadeIn span:nth-child(53) {
  -webkit-animation-delay: 0.795s !important;
          animation-delay: 0.795s !important;
}
.textFadeIn span:nth-child(54) {
  -webkit-animation-delay: 0.81s !important;
          animation-delay: 0.81s !important;
}
.textFadeIn span:nth-child(55) {
  -webkit-animation-delay: 0.825s !important;
          animation-delay: 0.825s !important;
}
.textFadeIn span:nth-child(56) {
  -webkit-animation-delay: 0.84s !important;
          animation-delay: 0.84s !important;
}
.textFadeIn span:nth-child(57) {
  -webkit-animation-delay: 0.855s !important;
          animation-delay: 0.855s !important;
}
.textFadeIn span:nth-child(58) {
  -webkit-animation-delay: 0.87s !important;
          animation-delay: 0.87s !important;
}
.textFadeIn span:nth-child(59) {
  -webkit-animation-delay: 0.885s !important;
          animation-delay: 0.885s !important;
}
.textFadeIn span:nth-child(60) {
  -webkit-animation-delay: 0.9s !important;
          animation-delay: 0.9s !important;
}
.textFadeIn span:nth-child(61) {
  -webkit-animation-delay: 0.915s !important;
          animation-delay: 0.915s !important;
}
.textFadeIn span:nth-child(62) {
  -webkit-animation-delay: 0.93s !important;
          animation-delay: 0.93s !important;
}
.textFadeIn span:nth-child(63) {
  -webkit-animation-delay: 0.945s !important;
          animation-delay: 0.945s !important;
}
.textFadeIn span:nth-child(64) {
  -webkit-animation-delay: 0.96s !important;
          animation-delay: 0.96s !important;
}
.textFadeIn span:nth-child(65) {
  -webkit-animation-delay: 0.975s !important;
          animation-delay: 0.975s !important;
}
.textFadeIn span:nth-child(66) {
  -webkit-animation-delay: 0.99s !important;
          animation-delay: 0.99s !important;
}
.textFadeIn span:nth-child(67) {
  -webkit-animation-delay: 1.005s !important;
          animation-delay: 1.005s !important;
}
.textFadeIn span:nth-child(68) {
  -webkit-animation-delay: 1.02s !important;
          animation-delay: 1.02s !important;
}
.textFadeIn span:nth-child(69) {
  -webkit-animation-delay: 1.035s !important;
          animation-delay: 1.035s !important;
}
.textFadeIn span:nth-child(70) {
  -webkit-animation-delay: 1.05s !important;
          animation-delay: 1.05s !important;
}
.textFadeIn span:nth-child(71) {
  -webkit-animation-delay: 1.065s !important;
          animation-delay: 1.065s !important;
}
.textFadeIn span:nth-child(72) {
  -webkit-animation-delay: 1.08s !important;
          animation-delay: 1.08s !important;
}
.textFadeIn span:nth-child(73) {
  -webkit-animation-delay: 1.095s !important;
          animation-delay: 1.095s !important;
}
.textFadeIn span:nth-child(74) {
  -webkit-animation-delay: 1.11s !important;
          animation-delay: 1.11s !important;
}
.textFadeIn span:nth-child(75) {
  -webkit-animation-delay: 1.125s !important;
          animation-delay: 1.125s !important;
}
.textFadeIn span:nth-child(76) {
  -webkit-animation-delay: 1.14s !important;
          animation-delay: 1.14s !important;
}
.textFadeIn span:nth-child(77) {
  -webkit-animation-delay: 1.155s !important;
          animation-delay: 1.155s !important;
}
.textFadeIn span:nth-child(78) {
  -webkit-animation-delay: 1.17s !important;
          animation-delay: 1.17s !important;
}
.textFadeIn span:nth-child(79) {
  -webkit-animation-delay: 1.185s !important;
          animation-delay: 1.185s !important;
}
.textFadeIn span:nth-child(80) {
  -webkit-animation-delay: 1.2s !important;
          animation-delay: 1.2s !important;
}
.textFadeIn span:nth-child(81) {
  -webkit-animation-delay: 1.215s !important;
          animation-delay: 1.215s !important;
}
.textFadeIn span:nth-child(82) {
  -webkit-animation-delay: 1.23s !important;
          animation-delay: 1.23s !important;
}
.textFadeIn span:nth-child(83) {
  -webkit-animation-delay: 1.245s !important;
          animation-delay: 1.245s !important;
}
.textFadeIn span:nth-child(84) {
  -webkit-animation-delay: 1.26s !important;
          animation-delay: 1.26s !important;
}
.textFadeIn span:nth-child(85) {
  -webkit-animation-delay: 1.275s !important;
          animation-delay: 1.275s !important;
}
.textFadeIn span:nth-child(86) {
  -webkit-animation-delay: 1.29s !important;
          animation-delay: 1.29s !important;
}
.textFadeIn span:nth-child(87) {
  -webkit-animation-delay: 1.305s !important;
          animation-delay: 1.305s !important;
}
.textFadeIn span:nth-child(88) {
  -webkit-animation-delay: 1.32s !important;
          animation-delay: 1.32s !important;
}
.textFadeIn span:nth-child(89) {
  -webkit-animation-delay: 1.335s !important;
          animation-delay: 1.335s !important;
}
.textFadeIn span:nth-child(90) {
  -webkit-animation-delay: 1.35s !important;
          animation-delay: 1.35s !important;
}
.textFadeIn span:nth-child(91) {
  -webkit-animation-delay: 1.365s !important;
          animation-delay: 1.365s !important;
}
.textFadeIn span:nth-child(92) {
  -webkit-animation-delay: 1.38s !important;
          animation-delay: 1.38s !important;
}
.textFadeIn span:nth-child(93) {
  -webkit-animation-delay: 1.395s !important;
          animation-delay: 1.395s !important;
}
.textFadeIn span:nth-child(94) {
  -webkit-animation-delay: 1.41s !important;
          animation-delay: 1.41s !important;
}
.textFadeIn span:nth-child(95) {
  -webkit-animation-delay: 1.425s !important;
          animation-delay: 1.425s !important;
}
.textFadeIn span:nth-child(96) {
  -webkit-animation-delay: 1.44s !important;
          animation-delay: 1.44s !important;
}
.textFadeIn span:nth-child(97) {
  -webkit-animation-delay: 1.455s !important;
          animation-delay: 1.455s !important;
}
.textFadeIn span:nth-child(98) {
  -webkit-animation-delay: 1.47s !important;
          animation-delay: 1.47s !important;
}
.textFadeIn span:nth-child(99) {
  -webkit-animation-delay: 1.485s !important;
          animation-delay: 1.485s !important;
}
.textFadeIn span:nth-child(100) {
  -webkit-animation-delay: 1.5s !important;
          animation-delay: 1.5s !important;
}
.textFadeIn span:nth-child(101) {
  -webkit-animation-delay: 1.515s !important;
          animation-delay: 1.515s !important;
}
.textFadeIn span:nth-child(102) {
  -webkit-animation-delay: 1.53s !important;
          animation-delay: 1.53s !important;
}
.textFadeIn span:nth-child(103) {
  -webkit-animation-delay: 1.545s !important;
          animation-delay: 1.545s !important;
}
.textFadeIn span:nth-child(104) {
  -webkit-animation-delay: 1.56s !important;
          animation-delay: 1.56s !important;
}
.textFadeIn span:nth-child(105) {
  -webkit-animation-delay: 1.575s !important;
          animation-delay: 1.575s !important;
}
.textFadeIn span:nth-child(106) {
  -webkit-animation-delay: 1.59s !important;
          animation-delay: 1.59s !important;
}
.textFadeIn span:nth-child(107) {
  -webkit-animation-delay: 1.605s !important;
          animation-delay: 1.605s !important;
}
.textFadeIn span:nth-child(108) {
  -webkit-animation-delay: 1.62s !important;
          animation-delay: 1.62s !important;
}
.textFadeIn span:nth-child(109) {
  -webkit-animation-delay: 1.635s !important;
          animation-delay: 1.635s !important;
}
.textFadeIn span:nth-child(110) {
  -webkit-animation-delay: 1.65s !important;
          animation-delay: 1.65s !important;
}
.textFadeIn span:nth-child(111) {
  -webkit-animation-delay: 1.665s !important;
          animation-delay: 1.665s !important;
}
.textFadeIn span:nth-child(112) {
  -webkit-animation-delay: 1.68s !important;
          animation-delay: 1.68s !important;
}
.textFadeIn span:nth-child(113) {
  -webkit-animation-delay: 1.695s !important;
          animation-delay: 1.695s !important;
}
.textFadeIn span:nth-child(114) {
  -webkit-animation-delay: 1.71s !important;
          animation-delay: 1.71s !important;
}
.textFadeIn span:nth-child(115) {
  -webkit-animation-delay: 1.725s !important;
          animation-delay: 1.725s !important;
}
.textFadeIn span:nth-child(116) {
  -webkit-animation-delay: 1.74s !important;
          animation-delay: 1.74s !important;
}
.textFadeIn span:nth-child(117) {
  -webkit-animation-delay: 1.755s !important;
          animation-delay: 1.755s !important;
}
.textFadeIn span:nth-child(118) {
  -webkit-animation-delay: 1.77s !important;
          animation-delay: 1.77s !important;
}
.textFadeIn span:nth-child(119) {
  -webkit-animation-delay: 1.785s !important;
          animation-delay: 1.785s !important;
}
.textFadeIn span:nth-child(120) {
  -webkit-animation-delay: 1.8s !important;
          animation-delay: 1.8s !important;
}
.textFadeIn span:nth-child(121) {
  -webkit-animation-delay: 1.815s !important;
          animation-delay: 1.815s !important;
}
.textFadeIn span:nth-child(122) {
  -webkit-animation-delay: 1.83s !important;
          animation-delay: 1.83s !important;
}
.textFadeIn span:nth-child(123) {
  -webkit-animation-delay: 1.845s !important;
          animation-delay: 1.845s !important;
}
.textFadeIn span:nth-child(124) {
  -webkit-animation-delay: 1.86s !important;
          animation-delay: 1.86s !important;
}
.textFadeIn span:nth-child(125) {
  -webkit-animation-delay: 1.875s !important;
          animation-delay: 1.875s !important;
}
.textFadeIn span:nth-child(126) {
  -webkit-animation-delay: 1.89s !important;
          animation-delay: 1.89s !important;
}
.textFadeIn span:nth-child(127) {
  -webkit-animation-delay: 1.905s !important;
          animation-delay: 1.905s !important;
}
.textFadeIn span:nth-child(128) {
  -webkit-animation-delay: 1.92s !important;
          animation-delay: 1.92s !important;
}
.textFadeIn span:nth-child(129) {
  -webkit-animation-delay: 1.935s !important;
          animation-delay: 1.935s !important;
}
.textFadeIn span:nth-child(130) {
  -webkit-animation-delay: 1.95s !important;
          animation-delay: 1.95s !important;
}
.textFadeIn span:nth-child(131) {
  -webkit-animation-delay: 1.965s !important;
          animation-delay: 1.965s !important;
}
.textFadeIn span:nth-child(132) {
  -webkit-animation-delay: 1.98s !important;
          animation-delay: 1.98s !important;
}
.textFadeIn span:nth-child(133) {
  -webkit-animation-delay: 1.995s !important;
          animation-delay: 1.995s !important;
}
.textFadeIn span:nth-child(134) {
  -webkit-animation-delay: 2.01s !important;
          animation-delay: 2.01s !important;
}
.textFadeIn span:nth-child(135) {
  -webkit-animation-delay: 2.025s !important;
          animation-delay: 2.025s !important;
}
.textFadeIn span:nth-child(136) {
  -webkit-animation-delay: 2.04s !important;
          animation-delay: 2.04s !important;
}
.textFadeIn span:nth-child(137) {
  -webkit-animation-delay: 2.055s !important;
          animation-delay: 2.055s !important;
}
.textFadeIn span:nth-child(138) {
  -webkit-animation-delay: 2.07s !important;
          animation-delay: 2.07s !important;
}
.textFadeIn span:nth-child(139) {
  -webkit-animation-delay: 2.085s !important;
          animation-delay: 2.085s !important;
}
.textFadeIn span:nth-child(140) {
  -webkit-animation-delay: 2.1s !important;
          animation-delay: 2.1s !important;
}
.textFadeIn span:nth-child(141) {
  -webkit-animation-delay: 2.115s !important;
          animation-delay: 2.115s !important;
}
.textFadeIn span:nth-child(142) {
  -webkit-animation-delay: 2.13s !important;
          animation-delay: 2.13s !important;
}
.textFadeIn span:nth-child(143) {
  -webkit-animation-delay: 2.145s !important;
          animation-delay: 2.145s !important;
}
.textFadeIn span:nth-child(144) {
  -webkit-animation-delay: 2.16s !important;
          animation-delay: 2.16s !important;
}
.textFadeIn span:nth-child(145) {
  -webkit-animation-delay: 2.175s !important;
          animation-delay: 2.175s !important;
}
.textFadeIn span:nth-child(146) {
  -webkit-animation-delay: 2.19s !important;
          animation-delay: 2.19s !important;
}
.textFadeIn span:nth-child(147) {
  -webkit-animation-delay: 2.205s !important;
          animation-delay: 2.205s !important;
}
.textFadeIn span:nth-child(148) {
  -webkit-animation-delay: 2.22s !important;
          animation-delay: 2.22s !important;
}
.textFadeIn span:nth-child(149) {
  -webkit-animation-delay: 2.235s !important;
          animation-delay: 2.235s !important;
}
.textFadeIn span:nth-child(150) {
  -webkit-animation-delay: 2.25s !important;
          animation-delay: 2.25s !important;
}
.textFadeIn span:nth-child(151) {
  -webkit-animation-delay: 2.265s !important;
          animation-delay: 2.265s !important;
}
.textFadeIn span:nth-child(152) {
  -webkit-animation-delay: 2.28s !important;
          animation-delay: 2.28s !important;
}
.textFadeIn span:nth-child(153) {
  -webkit-animation-delay: 2.295s !important;
          animation-delay: 2.295s !important;
}
.textFadeIn span:nth-child(154) {
  -webkit-animation-delay: 2.31s !important;
          animation-delay: 2.31s !important;
}
.textFadeIn span:nth-child(155) {
  -webkit-animation-delay: 2.325s !important;
          animation-delay: 2.325s !important;
}
.textFadeIn span:nth-child(156) {
  -webkit-animation-delay: 2.34s !important;
          animation-delay: 2.34s !important;
}
.textFadeIn span:nth-child(157) {
  -webkit-animation-delay: 2.355s !important;
          animation-delay: 2.355s !important;
}
.textFadeIn span:nth-child(158) {
  -webkit-animation-delay: 2.37s !important;
          animation-delay: 2.37s !important;
}
.textFadeIn span:nth-child(159) {
  -webkit-animation-delay: 2.385s !important;
          animation-delay: 2.385s !important;
}
.textFadeIn span:nth-child(160) {
  -webkit-animation-delay: 2.4s !important;
          animation-delay: 2.4s !important;
}
.textFadeIn span:nth-child(161) {
  -webkit-animation-delay: 2.415s !important;
          animation-delay: 2.415s !important;
}
.textFadeIn span:nth-child(162) {
  -webkit-animation-delay: 2.43s !important;
          animation-delay: 2.43s !important;
}
.textFadeIn span:nth-child(163) {
  -webkit-animation-delay: 2.445s !important;
          animation-delay: 2.445s !important;
}
.textFadeIn span:nth-child(164) {
  -webkit-animation-delay: 2.46s !important;
          animation-delay: 2.46s !important;
}
.textFadeIn span:nth-child(165) {
  -webkit-animation-delay: 2.475s !important;
          animation-delay: 2.475s !important;
}
.textFadeIn span:nth-child(166) {
  -webkit-animation-delay: 2.49s !important;
          animation-delay: 2.49s !important;
}
.textFadeIn span:nth-child(167) {
  -webkit-animation-delay: 2.505s !important;
          animation-delay: 2.505s !important;
}
.textFadeIn span:nth-child(168) {
  -webkit-animation-delay: 2.52s !important;
          animation-delay: 2.52s !important;
}
.textFadeIn span:nth-child(169) {
  -webkit-animation-delay: 2.535s !important;
          animation-delay: 2.535s !important;
}
.textFadeIn span:nth-child(170) {
  -webkit-animation-delay: 2.55s !important;
          animation-delay: 2.55s !important;
}
.textFadeIn span:nth-child(171) {
  -webkit-animation-delay: 2.565s !important;
          animation-delay: 2.565s !important;
}
.textFadeIn span:nth-child(172) {
  -webkit-animation-delay: 2.58s !important;
          animation-delay: 2.58s !important;
}
.textFadeIn span:nth-child(173) {
  -webkit-animation-delay: 2.595s !important;
          animation-delay: 2.595s !important;
}
.textFadeIn span:nth-child(174) {
  -webkit-animation-delay: 2.61s !important;
          animation-delay: 2.61s !important;
}
.textFadeIn span:nth-child(175) {
  -webkit-animation-delay: 2.625s !important;
          animation-delay: 2.625s !important;
}
.textFadeIn span:nth-child(176) {
  -webkit-animation-delay: 2.64s !important;
          animation-delay: 2.64s !important;
}
.textFadeIn span:nth-child(177) {
  -webkit-animation-delay: 2.655s !important;
          animation-delay: 2.655s !important;
}
.textFadeIn span:nth-child(178) {
  -webkit-animation-delay: 2.67s !important;
          animation-delay: 2.67s !important;
}
.textFadeIn span:nth-child(179) {
  -webkit-animation-delay: 2.685s !important;
          animation-delay: 2.685s !important;
}
.textFadeIn span:nth-child(180) {
  -webkit-animation-delay: 2.7s !important;
          animation-delay: 2.7s !important;
}
.textFadeIn span:nth-child(181) {
  -webkit-animation-delay: 2.715s !important;
          animation-delay: 2.715s !important;
}
.textFadeIn span:nth-child(182) {
  -webkit-animation-delay: 2.73s !important;
          animation-delay: 2.73s !important;
}
.textFadeIn span:nth-child(183) {
  -webkit-animation-delay: 2.745s !important;
          animation-delay: 2.745s !important;
}
.textFadeIn span:nth-child(184) {
  -webkit-animation-delay: 2.76s !important;
          animation-delay: 2.76s !important;
}
.textFadeIn span:nth-child(185) {
  -webkit-animation-delay: 2.775s !important;
          animation-delay: 2.775s !important;
}
.textFadeIn span:nth-child(186) {
  -webkit-animation-delay: 2.79s !important;
          animation-delay: 2.79s !important;
}
.textFadeIn span:nth-child(187) {
  -webkit-animation-delay: 2.805s !important;
          animation-delay: 2.805s !important;
}
.textFadeIn span:nth-child(188) {
  -webkit-animation-delay: 2.82s !important;
          animation-delay: 2.82s !important;
}
.textFadeIn span:nth-child(189) {
  -webkit-animation-delay: 2.835s !important;
          animation-delay: 2.835s !important;
}
.textFadeIn span:nth-child(190) {
  -webkit-animation-delay: 2.85s !important;
          animation-delay: 2.85s !important;
}
.textFadeIn span:nth-child(191) {
  -webkit-animation-delay: 2.865s !important;
          animation-delay: 2.865s !important;
}
.textFadeIn span:nth-child(192) {
  -webkit-animation-delay: 2.88s !important;
          animation-delay: 2.88s !important;
}
.textFadeIn span:nth-child(193) {
  -webkit-animation-delay: 2.895s !important;
          animation-delay: 2.895s !important;
}
.textFadeIn span:nth-child(194) {
  -webkit-animation-delay: 2.91s !important;
          animation-delay: 2.91s !important;
}
.textFadeIn span:nth-child(195) {
  -webkit-animation-delay: 2.925s !important;
          animation-delay: 2.925s !important;
}
.textFadeIn span:nth-child(196) {
  -webkit-animation-delay: 2.94s !important;
          animation-delay: 2.94s !important;
}
.textFadeIn span:nth-child(197) {
  -webkit-animation-delay: 2.955s !important;
          animation-delay: 2.955s !important;
}
.textFadeIn span:nth-child(198) {
  -webkit-animation-delay: 2.97s !important;
          animation-delay: 2.97s !important;
}
.textFadeIn span:nth-child(199) {
  -webkit-animation-delay: 2.985s !important;
          animation-delay: 2.985s !important;
}
.textFadeIn span:nth-child(200) {
  -webkit-animation-delay: 3s !important;
          animation-delay: 3s !important;
}
.textFadeIn span:nth-child(201) {
  -webkit-animation-delay: 3.015s !important;
          animation-delay: 3.015s !important;
}
.textFadeIn span:nth-child(202) {
  -webkit-animation-delay: 3.03s !important;
          animation-delay: 3.03s !important;
}
.textFadeIn span:nth-child(203) {
  -webkit-animation-delay: 3.045s !important;
          animation-delay: 3.045s !important;
}
.textFadeIn span:nth-child(204) {
  -webkit-animation-delay: 3.06s !important;
          animation-delay: 3.06s !important;
}
.textFadeIn span:nth-child(205) {
  -webkit-animation-delay: 3.075s !important;
          animation-delay: 3.075s !important;
}
.textFadeIn span:nth-child(206) {
  -webkit-animation-delay: 3.09s !important;
          animation-delay: 3.09s !important;
}
.textFadeIn span:nth-child(207) {
  -webkit-animation-delay: 3.105s !important;
          animation-delay: 3.105s !important;
}
.textFadeIn span:nth-child(208) {
  -webkit-animation-delay: 3.12s !important;
          animation-delay: 3.12s !important;
}
.textFadeIn span:nth-child(209) {
  -webkit-animation-delay: 3.135s !important;
          animation-delay: 3.135s !important;
}
.textFadeIn span:nth-child(210) {
  -webkit-animation-delay: 3.15s !important;
          animation-delay: 3.15s !important;
}
.textFadeIn span:nth-child(211) {
  -webkit-animation-delay: 3.165s !important;
          animation-delay: 3.165s !important;
}
.textFadeIn span:nth-child(212) {
  -webkit-animation-delay: 3.18s !important;
          animation-delay: 3.18s !important;
}
.textFadeIn span:nth-child(213) {
  -webkit-animation-delay: 3.195s !important;
          animation-delay: 3.195s !important;
}
.textFadeIn span:nth-child(214) {
  -webkit-animation-delay: 3.21s !important;
          animation-delay: 3.21s !important;
}
.textFadeIn span:nth-child(215) {
  -webkit-animation-delay: 3.225s !important;
          animation-delay: 3.225s !important;
}
.textFadeIn span:nth-child(216) {
  -webkit-animation-delay: 3.24s !important;
          animation-delay: 3.24s !important;
}
.textFadeIn span:nth-child(217) {
  -webkit-animation-delay: 3.255s !important;
          animation-delay: 3.255s !important;
}
.textFadeIn span:nth-child(218) {
  -webkit-animation-delay: 3.27s !important;
          animation-delay: 3.27s !important;
}
.textFadeIn span:nth-child(219) {
  -webkit-animation-delay: 3.285s !important;
          animation-delay: 3.285s !important;
}
.textFadeIn span:nth-child(220) {
  -webkit-animation-delay: 3.3s !important;
          animation-delay: 3.3s !important;
}
.textFadeIn span:nth-child(221) {
  -webkit-animation-delay: 3.315s !important;
          animation-delay: 3.315s !important;
}
.textFadeIn span:nth-child(222) {
  -webkit-animation-delay: 3.33s !important;
          animation-delay: 3.33s !important;
}
.textFadeIn span:nth-child(223) {
  -webkit-animation-delay: 3.345s !important;
          animation-delay: 3.345s !important;
}
.textFadeIn span:nth-child(224) {
  -webkit-animation-delay: 3.36s !important;
          animation-delay: 3.36s !important;
}
.textFadeIn span:nth-child(225) {
  -webkit-animation-delay: 3.375s !important;
          animation-delay: 3.375s !important;
}
.textFadeIn span:nth-child(226) {
  -webkit-animation-delay: 3.39s !important;
          animation-delay: 3.39s !important;
}
.textFadeIn span:nth-child(227) {
  -webkit-animation-delay: 3.405s !important;
          animation-delay: 3.405s !important;
}
.textFadeIn span:nth-child(228) {
  -webkit-animation-delay: 3.42s !important;
          animation-delay: 3.42s !important;
}
.textFadeIn span:nth-child(229) {
  -webkit-animation-delay: 3.435s !important;
          animation-delay: 3.435s !important;
}
.textFadeIn span:nth-child(230) {
  -webkit-animation-delay: 3.45s !important;
          animation-delay: 3.45s !important;
}
.textFadeIn span:nth-child(231) {
  -webkit-animation-delay: 3.465s !important;
          animation-delay: 3.465s !important;
}
.textFadeIn span:nth-child(232) {
  -webkit-animation-delay: 3.48s !important;
          animation-delay: 3.48s !important;
}
.textFadeIn span:nth-child(233) {
  -webkit-animation-delay: 3.495s !important;
          animation-delay: 3.495s !important;
}
.textFadeIn span:nth-child(234) {
  -webkit-animation-delay: 3.51s !important;
          animation-delay: 3.51s !important;
}
.textFadeIn span:nth-child(235) {
  -webkit-animation-delay: 3.525s !important;
          animation-delay: 3.525s !important;
}
.textFadeIn span:nth-child(236) {
  -webkit-animation-delay: 3.54s !important;
          animation-delay: 3.54s !important;
}
.textFadeIn span:nth-child(237) {
  -webkit-animation-delay: 3.555s !important;
          animation-delay: 3.555s !important;
}
.textFadeIn span:nth-child(238) {
  -webkit-animation-delay: 3.57s !important;
          animation-delay: 3.57s !important;
}
.textFadeIn span:nth-child(239) {
  -webkit-animation-delay: 3.585s !important;
          animation-delay: 3.585s !important;
}
.textFadeIn span:nth-child(240) {
  -webkit-animation-delay: 3.6s !important;
          animation-delay: 3.6s !important;
}
.textFadeIn span:nth-child(241) {
  -webkit-animation-delay: 3.615s !important;
          animation-delay: 3.615s !important;
}
.textFadeIn span:nth-child(242) {
  -webkit-animation-delay: 3.63s !important;
          animation-delay: 3.63s !important;
}
.textFadeIn span:nth-child(243) {
  -webkit-animation-delay: 3.645s !important;
          animation-delay: 3.645s !important;
}
.textFadeIn span:nth-child(244) {
  -webkit-animation-delay: 3.66s !important;
          animation-delay: 3.66s !important;
}
.textFadeIn span:nth-child(245) {
  -webkit-animation-delay: 3.675s !important;
          animation-delay: 3.675s !important;
}
.textFadeIn span:nth-child(246) {
  -webkit-animation-delay: 3.69s !important;
          animation-delay: 3.69s !important;
}
.textFadeIn span:nth-child(247) {
  -webkit-animation-delay: 3.705s !important;
          animation-delay: 3.705s !important;
}
.textFadeIn span:nth-child(248) {
  -webkit-animation-delay: 3.72s !important;
          animation-delay: 3.72s !important;
}
.textFadeIn span:nth-child(249) {
  -webkit-animation-delay: 3.735s !important;
          animation-delay: 3.735s !important;
}
.textFadeIn span:nth-child(250) {
  -webkit-animation-delay: 3.75s !important;
          animation-delay: 3.75s !important;
}
.textFadeIn span:nth-child(251) {
  -webkit-animation-delay: 3.765s !important;
          animation-delay: 3.765s !important;
}
.textFadeIn span:nth-child(252) {
  -webkit-animation-delay: 3.78s !important;
          animation-delay: 3.78s !important;
}
.textFadeIn span:nth-child(253) {
  -webkit-animation-delay: 3.795s !important;
          animation-delay: 3.795s !important;
}
.textFadeIn span:nth-child(254) {
  -webkit-animation-delay: 3.81s !important;
          animation-delay: 3.81s !important;
}
.textFadeIn span:nth-child(255) {
  -webkit-animation-delay: 3.825s !important;
          animation-delay: 3.825s !important;
}
.textFadeIn span:nth-child(256) {
  -webkit-animation-delay: 3.84s !important;
          animation-delay: 3.84s !important;
}
.textFadeIn span:nth-child(257) {
  -webkit-animation-delay: 3.855s !important;
          animation-delay: 3.855s !important;
}
.textFadeIn span:nth-child(258) {
  -webkit-animation-delay: 3.87s !important;
          animation-delay: 3.87s !important;
}
.textFadeIn span:nth-child(259) {
  -webkit-animation-delay: 3.885s !important;
          animation-delay: 3.885s !important;
}
.textFadeIn span:nth-child(260) {
  -webkit-animation-delay: 3.9s !important;
          animation-delay: 3.9s !important;
}
.textFadeIn span:nth-child(261) {
  -webkit-animation-delay: 3.915s !important;
          animation-delay: 3.915s !important;
}
.textFadeIn span:nth-child(262) {
  -webkit-animation-delay: 3.93s !important;
          animation-delay: 3.93s !important;
}
.textFadeIn span:nth-child(263) {
  -webkit-animation-delay: 3.945s !important;
          animation-delay: 3.945s !important;
}
.textFadeIn span:nth-child(264) {
  -webkit-animation-delay: 3.96s !important;
          animation-delay: 3.96s !important;
}
.textFadeIn span:nth-child(265) {
  -webkit-animation-delay: 3.975s !important;
          animation-delay: 3.975s !important;
}
.textFadeIn span:nth-child(266) {
  -webkit-animation-delay: 3.99s !important;
          animation-delay: 3.99s !important;
}
.textFadeIn span:nth-child(267) {
  -webkit-animation-delay: 4.005s !important;
          animation-delay: 4.005s !important;
}
.textFadeIn span:nth-child(268) {
  -webkit-animation-delay: 4.02s !important;
          animation-delay: 4.02s !important;
}
.textFadeIn span:nth-child(269) {
  -webkit-animation-delay: 4.035s !important;
          animation-delay: 4.035s !important;
}
.textFadeIn span:nth-child(270) {
  -webkit-animation-delay: 4.05s !important;
          animation-delay: 4.05s !important;
}
.textFadeIn span:nth-child(271) {
  -webkit-animation-delay: 4.065s !important;
          animation-delay: 4.065s !important;
}
.textFadeIn span:nth-child(272) {
  -webkit-animation-delay: 4.08s !important;
          animation-delay: 4.08s !important;
}
.textFadeIn span:nth-child(273) {
  -webkit-animation-delay: 4.095s !important;
          animation-delay: 4.095s !important;
}
.textFadeIn span:nth-child(274) {
  -webkit-animation-delay: 4.11s !important;
          animation-delay: 4.11s !important;
}
.textFadeIn span:nth-child(275) {
  -webkit-animation-delay: 4.125s !important;
          animation-delay: 4.125s !important;
}
.textFadeIn span:nth-child(276) {
  -webkit-animation-delay: 4.14s !important;
          animation-delay: 4.14s !important;
}
.textFadeIn span:nth-child(277) {
  -webkit-animation-delay: 4.155s !important;
          animation-delay: 4.155s !important;
}
.textFadeIn span:nth-child(278) {
  -webkit-animation-delay: 4.17s !important;
          animation-delay: 4.17s !important;
}
.textFadeIn span:nth-child(279) {
  -webkit-animation-delay: 4.185s !important;
          animation-delay: 4.185s !important;
}
.textFadeIn span:nth-child(280) {
  -webkit-animation-delay: 4.2s !important;
          animation-delay: 4.2s !important;
}
.textFadeIn span:nth-child(281) {
  -webkit-animation-delay: 4.215s !important;
          animation-delay: 4.215s !important;
}
.textFadeIn span:nth-child(282) {
  -webkit-animation-delay: 4.23s !important;
          animation-delay: 4.23s !important;
}
.textFadeIn span:nth-child(283) {
  -webkit-animation-delay: 4.245s !important;
          animation-delay: 4.245s !important;
}
.textFadeIn span:nth-child(284) {
  -webkit-animation-delay: 4.26s !important;
          animation-delay: 4.26s !important;
}
.textFadeIn span:nth-child(285) {
  -webkit-animation-delay: 4.275s !important;
          animation-delay: 4.275s !important;
}
.textFadeIn span:nth-child(286) {
  -webkit-animation-delay: 4.29s !important;
          animation-delay: 4.29s !important;
}
.textFadeIn span:nth-child(287) {
  -webkit-animation-delay: 4.305s !important;
          animation-delay: 4.305s !important;
}
.textFadeIn span:nth-child(288) {
  -webkit-animation-delay: 4.32s !important;
          animation-delay: 4.32s !important;
}
.textFadeIn span:nth-child(289) {
  -webkit-animation-delay: 4.335s !important;
          animation-delay: 4.335s !important;
}
.textFadeIn span:nth-child(290) {
  -webkit-animation-delay: 4.35s !important;
          animation-delay: 4.35s !important;
}
.textFadeIn span:nth-child(291) {
  -webkit-animation-delay: 4.365s !important;
          animation-delay: 4.365s !important;
}
.textFadeIn span:nth-child(292) {
  -webkit-animation-delay: 4.38s !important;
          animation-delay: 4.38s !important;
}
.textFadeIn span:nth-child(293) {
  -webkit-animation-delay: 4.395s !important;
          animation-delay: 4.395s !important;
}
.textFadeIn span:nth-child(294) {
  -webkit-animation-delay: 4.41s !important;
          animation-delay: 4.41s !important;
}
.textFadeIn span:nth-child(295) {
  -webkit-animation-delay: 4.425s !important;
          animation-delay: 4.425s !important;
}
.textFadeIn span:nth-child(296) {
  -webkit-animation-delay: 4.44s !important;
          animation-delay: 4.44s !important;
}
.textFadeIn span:nth-child(297) {
  -webkit-animation-delay: 4.455s !important;
          animation-delay: 4.455s !important;
}
.textFadeIn span:nth-child(298) {
  -webkit-animation-delay: 4.47s !important;
          animation-delay: 4.47s !important;
}
.textFadeIn span:nth-child(299) {
  -webkit-animation-delay: 4.485s !important;
          animation-delay: 4.485s !important;
}
.textFadeIn span:nth-child(300) {
  -webkit-animation-delay: 4.5s !important;
          animation-delay: 4.5s !important;
}
.textFadeIn span:nth-child(301) {
  -webkit-animation-delay: 4.515s !important;
          animation-delay: 4.515s !important;
}
.textFadeIn span:nth-child(302) {
  -webkit-animation-delay: 4.53s !important;
          animation-delay: 4.53s !important;
}
.textFadeIn span:nth-child(303) {
  -webkit-animation-delay: 4.545s !important;
          animation-delay: 4.545s !important;
}
.textFadeIn span:nth-child(304) {
  -webkit-animation-delay: 4.56s !important;
          animation-delay: 4.56s !important;
}
.textFadeIn span:nth-child(305) {
  -webkit-animation-delay: 4.575s !important;
          animation-delay: 4.575s !important;
}
.textFadeIn span:nth-child(306) {
  -webkit-animation-delay: 4.59s !important;
          animation-delay: 4.59s !important;
}
.textFadeIn span:nth-child(307) {
  -webkit-animation-delay: 4.605s !important;
          animation-delay: 4.605s !important;
}
.textFadeIn span:nth-child(308) {
  -webkit-animation-delay: 4.62s !important;
          animation-delay: 4.62s !important;
}
.textFadeIn span:nth-child(309) {
  -webkit-animation-delay: 4.635s !important;
          animation-delay: 4.635s !important;
}
.textFadeIn span:nth-child(310) {
  -webkit-animation-delay: 4.65s !important;
          animation-delay: 4.65s !important;
}
.textFadeIn span:nth-child(311) {
  -webkit-animation-delay: 4.665s !important;
          animation-delay: 4.665s !important;
}
.textFadeIn span:nth-child(312) {
  -webkit-animation-delay: 4.68s !important;
          animation-delay: 4.68s !important;
}
.textFadeIn span:nth-child(313) {
  -webkit-animation-delay: 4.695s !important;
          animation-delay: 4.695s !important;
}
.textFadeIn span:nth-child(314) {
  -webkit-animation-delay: 4.71s !important;
          animation-delay: 4.71s !important;
}
.textFadeIn span:nth-child(315) {
  -webkit-animation-delay: 4.725s !important;
          animation-delay: 4.725s !important;
}
.textFadeIn span:nth-child(316) {
  -webkit-animation-delay: 4.74s !important;
          animation-delay: 4.74s !important;
}
.textFadeIn span:nth-child(317) {
  -webkit-animation-delay: 4.755s !important;
          animation-delay: 4.755s !important;
}
.textFadeIn span:nth-child(318) {
  -webkit-animation-delay: 4.77s !important;
          animation-delay: 4.77s !important;
}
.textFadeIn span:nth-child(319) {
  -webkit-animation-delay: 4.785s !important;
          animation-delay: 4.785s !important;
}
.textFadeIn span:nth-child(320) {
  -webkit-animation-delay: 4.8s !important;
          animation-delay: 4.8s !important;
}
.textFadeIn span:nth-child(321) {
  -webkit-animation-delay: 4.815s !important;
          animation-delay: 4.815s !important;
}
.textFadeIn span:nth-child(322) {
  -webkit-animation-delay: 4.83s !important;
          animation-delay: 4.83s !important;
}
.textFadeIn span:nth-child(323) {
  -webkit-animation-delay: 4.845s !important;
          animation-delay: 4.845s !important;
}
.textFadeIn span:nth-child(324) {
  -webkit-animation-delay: 4.86s !important;
          animation-delay: 4.86s !important;
}
.textFadeIn span:nth-child(325) {
  -webkit-animation-delay: 4.875s !important;
          animation-delay: 4.875s !important;
}
.textFadeIn span:nth-child(326) {
  -webkit-animation-delay: 4.89s !important;
          animation-delay: 4.89s !important;
}
.textFadeIn span:nth-child(327) {
  -webkit-animation-delay: 4.905s !important;
          animation-delay: 4.905s !important;
}
.textFadeIn span:nth-child(328) {
  -webkit-animation-delay: 4.92s !important;
          animation-delay: 4.92s !important;
}
.textFadeIn span:nth-child(329) {
  -webkit-animation-delay: 4.935s !important;
          animation-delay: 4.935s !important;
}
.textFadeIn span:nth-child(330) {
  -webkit-animation-delay: 4.95s !important;
          animation-delay: 4.95s !important;
}
.textFadeIn span:nth-child(331) {
  -webkit-animation-delay: 4.965s !important;
          animation-delay: 4.965s !important;
}
.textFadeIn span:nth-child(332) {
  -webkit-animation-delay: 4.98s !important;
          animation-delay: 4.98s !important;
}
.textFadeIn span:nth-child(333) {
  -webkit-animation-delay: 4.995s !important;
          animation-delay: 4.995s !important;
}
.textFadeIn span:nth-child(334) {
  -webkit-animation-delay: 5.01s !important;
          animation-delay: 5.01s !important;
}
.textFadeIn span:nth-child(335) {
  -webkit-animation-delay: 5.025s !important;
          animation-delay: 5.025s !important;
}
.textFadeIn span:nth-child(336) {
  -webkit-animation-delay: 5.04s !important;
          animation-delay: 5.04s !important;
}
.textFadeIn span:nth-child(337) {
  -webkit-animation-delay: 5.055s !important;
          animation-delay: 5.055s !important;
}
.textFadeIn span:nth-child(338) {
  -webkit-animation-delay: 5.07s !important;
          animation-delay: 5.07s !important;
}
.textFadeIn span:nth-child(339) {
  -webkit-animation-delay: 5.085s !important;
          animation-delay: 5.085s !important;
}
.textFadeIn span:nth-child(340) {
  -webkit-animation-delay: 5.1s !important;
          animation-delay: 5.1s !important;
}
.textFadeIn span:nth-child(341) {
  -webkit-animation-delay: 5.115s !important;
          animation-delay: 5.115s !important;
}
.textFadeIn span:nth-child(342) {
  -webkit-animation-delay: 5.13s !important;
          animation-delay: 5.13s !important;
}
.textFadeIn span:nth-child(343) {
  -webkit-animation-delay: 5.145s !important;
          animation-delay: 5.145s !important;
}
.textFadeIn span:nth-child(344) {
  -webkit-animation-delay: 5.16s !important;
          animation-delay: 5.16s !important;
}
.textFadeIn span:nth-child(345) {
  -webkit-animation-delay: 5.175s !important;
          animation-delay: 5.175s !important;
}
.textFadeIn span:nth-child(346) {
  -webkit-animation-delay: 5.19s !important;
          animation-delay: 5.19s !important;
}
.textFadeIn span:nth-child(347) {
  -webkit-animation-delay: 5.205s !important;
          animation-delay: 5.205s !important;
}
.textFadeIn span:nth-child(348) {
  -webkit-animation-delay: 5.22s !important;
          animation-delay: 5.22s !important;
}
.textFadeIn span:nth-child(349) {
  -webkit-animation-delay: 5.235s !important;
          animation-delay: 5.235s !important;
}
.textFadeIn span:nth-child(350) {
  -webkit-animation-delay: 5.25s !important;
          animation-delay: 5.25s !important;
}
.textFadeIn span:nth-child(351) {
  -webkit-animation-delay: 5.265s !important;
          animation-delay: 5.265s !important;
}
.textFadeIn span:nth-child(352) {
  -webkit-animation-delay: 5.28s !important;
          animation-delay: 5.28s !important;
}
.textFadeIn span:nth-child(353) {
  -webkit-animation-delay: 5.295s !important;
          animation-delay: 5.295s !important;
}
.textFadeIn span:nth-child(354) {
  -webkit-animation-delay: 5.31s !important;
          animation-delay: 5.31s !important;
}
.textFadeIn span:nth-child(355) {
  -webkit-animation-delay: 5.325s !important;
          animation-delay: 5.325s !important;
}
.textFadeIn span:nth-child(356) {
  -webkit-animation-delay: 5.34s !important;
          animation-delay: 5.34s !important;
}
.textFadeIn span:nth-child(357) {
  -webkit-animation-delay: 5.355s !important;
          animation-delay: 5.355s !important;
}
.textFadeIn span:nth-child(358) {
  -webkit-animation-delay: 5.37s !important;
          animation-delay: 5.37s !important;
}
.textFadeIn span:nth-child(359) {
  -webkit-animation-delay: 5.385s !important;
          animation-delay: 5.385s !important;
}
.textFadeIn span:nth-child(360) {
  -webkit-animation-delay: 5.4s !important;
          animation-delay: 5.4s !important;
}
.textFadeIn span:nth-child(361) {
  -webkit-animation-delay: 5.415s !important;
          animation-delay: 5.415s !important;
}
.textFadeIn span:nth-child(362) {
  -webkit-animation-delay: 5.43s !important;
          animation-delay: 5.43s !important;
}
.textFadeIn span:nth-child(363) {
  -webkit-animation-delay: 5.445s !important;
          animation-delay: 5.445s !important;
}
.textFadeIn span:nth-child(364) {
  -webkit-animation-delay: 5.46s !important;
          animation-delay: 5.46s !important;
}
.textFadeIn span:nth-child(365) {
  -webkit-animation-delay: 5.475s !important;
          animation-delay: 5.475s !important;
}
.textFadeIn span:nth-child(366) {
  -webkit-animation-delay: 5.49s !important;
          animation-delay: 5.49s !important;
}
.textFadeIn span:nth-child(367) {
  -webkit-animation-delay: 5.505s !important;
          animation-delay: 5.505s !important;
}
.textFadeIn span:nth-child(368) {
  -webkit-animation-delay: 5.52s !important;
          animation-delay: 5.52s !important;
}
.textFadeIn span:nth-child(369) {
  -webkit-animation-delay: 5.535s !important;
          animation-delay: 5.535s !important;
}
.textFadeIn span:nth-child(370) {
  -webkit-animation-delay: 5.55s !important;
          animation-delay: 5.55s !important;
}
.textFadeIn span:nth-child(371) {
  -webkit-animation-delay: 5.565s !important;
          animation-delay: 5.565s !important;
}
.textFadeIn span:nth-child(372) {
  -webkit-animation-delay: 5.58s !important;
          animation-delay: 5.58s !important;
}
.textFadeIn span:nth-child(373) {
  -webkit-animation-delay: 5.595s !important;
          animation-delay: 5.595s !important;
}
.textFadeIn span:nth-child(374) {
  -webkit-animation-delay: 5.61s !important;
          animation-delay: 5.61s !important;
}
.textFadeIn span:nth-child(375) {
  -webkit-animation-delay: 5.625s !important;
          animation-delay: 5.625s !important;
}
.textFadeIn span:nth-child(376) {
  -webkit-animation-delay: 5.64s !important;
          animation-delay: 5.64s !important;
}
.textFadeIn span:nth-child(377) {
  -webkit-animation-delay: 5.655s !important;
          animation-delay: 5.655s !important;
}
.textFadeIn span:nth-child(378) {
  -webkit-animation-delay: 5.67s !important;
          animation-delay: 5.67s !important;
}
.textFadeIn span:nth-child(379) {
  -webkit-animation-delay: 5.685s !important;
          animation-delay: 5.685s !important;
}
.textFadeIn span:nth-child(380) {
  -webkit-animation-delay: 5.7s !important;
          animation-delay: 5.7s !important;
}
.textFadeIn span:nth-child(381) {
  -webkit-animation-delay: 5.715s !important;
          animation-delay: 5.715s !important;
}
.textFadeIn span:nth-child(382) {
  -webkit-animation-delay: 5.73s !important;
          animation-delay: 5.73s !important;
}
.textFadeIn span:nth-child(383) {
  -webkit-animation-delay: 5.745s !important;
          animation-delay: 5.745s !important;
}
.textFadeIn span:nth-child(384) {
  -webkit-animation-delay: 5.76s !important;
          animation-delay: 5.76s !important;
}
.textFadeIn span:nth-child(385) {
  -webkit-animation-delay: 5.775s !important;
          animation-delay: 5.775s !important;
}
.textFadeIn span:nth-child(386) {
  -webkit-animation-delay: 5.79s !important;
          animation-delay: 5.79s !important;
}
.textFadeIn span:nth-child(387) {
  -webkit-animation-delay: 5.805s !important;
          animation-delay: 5.805s !important;
}
.textFadeIn span:nth-child(388) {
  -webkit-animation-delay: 5.82s !important;
          animation-delay: 5.82s !important;
}
.textFadeIn span:nth-child(389) {
  -webkit-animation-delay: 5.835s !important;
          animation-delay: 5.835s !important;
}
.textFadeIn span:nth-child(390) {
  -webkit-animation-delay: 5.85s !important;
          animation-delay: 5.85s !important;
}
.textFadeIn span:nth-child(391) {
  -webkit-animation-delay: 5.865s !important;
          animation-delay: 5.865s !important;
}
.textFadeIn span:nth-child(392) {
  -webkit-animation-delay: 5.88s !important;
          animation-delay: 5.88s !important;
}
.textFadeIn span:nth-child(393) {
  -webkit-animation-delay: 5.895s !important;
          animation-delay: 5.895s !important;
}
.textFadeIn span:nth-child(394) {
  -webkit-animation-delay: 5.91s !important;
          animation-delay: 5.91s !important;
}
.textFadeIn span:nth-child(395) {
  -webkit-animation-delay: 5.925s !important;
          animation-delay: 5.925s !important;
}
.textFadeIn span:nth-child(396) {
  -webkit-animation-delay: 5.94s !important;
          animation-delay: 5.94s !important;
}
.textFadeIn span:nth-child(397) {
  -webkit-animation-delay: 5.955s !important;
          animation-delay: 5.955s !important;
}
.textFadeIn span:nth-child(398) {
  -webkit-animation-delay: 5.97s !important;
          animation-delay: 5.97s !important;
}
.textFadeIn span:nth-child(399) {
  -webkit-animation-delay: 5.985s !important;
          animation-delay: 5.985s !important;
}
.textFadeIn span:nth-child(400) {
  -webkit-animation-delay: 6s !important;
          animation-delay: 6s !important;
}
.textFadeIn span:nth-child(401) {
  -webkit-animation-delay: 6.015s !important;
          animation-delay: 6.015s !important;
}
.textFadeIn span:nth-child(402) {
  -webkit-animation-delay: 6.03s !important;
          animation-delay: 6.03s !important;
}
.textFadeIn span:nth-child(403) {
  -webkit-animation-delay: 6.045s !important;
          animation-delay: 6.045s !important;
}
.textFadeIn span:nth-child(404) {
  -webkit-animation-delay: 6.06s !important;
          animation-delay: 6.06s !important;
}
.textFadeIn span:nth-child(405) {
  -webkit-animation-delay: 6.075s !important;
          animation-delay: 6.075s !important;
}
.textFadeIn span:nth-child(406) {
  -webkit-animation-delay: 6.09s !important;
          animation-delay: 6.09s !important;
}
.textFadeIn span:nth-child(407) {
  -webkit-animation-delay: 6.105s !important;
          animation-delay: 6.105s !important;
}
.textFadeIn span:nth-child(408) {
  -webkit-animation-delay: 6.12s !important;
          animation-delay: 6.12s !important;
}
.textFadeIn span:nth-child(409) {
  -webkit-animation-delay: 6.135s !important;
          animation-delay: 6.135s !important;
}
.textFadeIn span:nth-child(410) {
  -webkit-animation-delay: 6.15s !important;
          animation-delay: 6.15s !important;
}
.textFadeIn span:nth-child(411) {
  -webkit-animation-delay: 6.165s !important;
          animation-delay: 6.165s !important;
}
.textFadeIn span:nth-child(412) {
  -webkit-animation-delay: 6.18s !important;
          animation-delay: 6.18s !important;
}
.textFadeIn span:nth-child(413) {
  -webkit-animation-delay: 6.195s !important;
          animation-delay: 6.195s !important;
}
.textFadeIn span:nth-child(414) {
  -webkit-animation-delay: 6.21s !important;
          animation-delay: 6.21s !important;
}
.textFadeIn span:nth-child(415) {
  -webkit-animation-delay: 6.225s !important;
          animation-delay: 6.225s !important;
}
.textFadeIn span:nth-child(416) {
  -webkit-animation-delay: 6.24s !important;
          animation-delay: 6.24s !important;
}
.textFadeIn span:nth-child(417) {
  -webkit-animation-delay: 6.255s !important;
          animation-delay: 6.255s !important;
}
.textFadeIn span:nth-child(418) {
  -webkit-animation-delay: 6.27s !important;
          animation-delay: 6.27s !important;
}
.textFadeIn span:nth-child(419) {
  -webkit-animation-delay: 6.285s !important;
          animation-delay: 6.285s !important;
}
.textFadeIn span:nth-child(420) {
  -webkit-animation-delay: 6.3s !important;
          animation-delay: 6.3s !important;
}
.textFadeIn span:nth-child(421) {
  -webkit-animation-delay: 6.315s !important;
          animation-delay: 6.315s !important;
}
.textFadeIn span:nth-child(422) {
  -webkit-animation-delay: 6.33s !important;
          animation-delay: 6.33s !important;
}
.textFadeIn span:nth-child(423) {
  -webkit-animation-delay: 6.345s !important;
          animation-delay: 6.345s !important;
}
.textFadeIn span:nth-child(424) {
  -webkit-animation-delay: 6.36s !important;
          animation-delay: 6.36s !important;
}
.textFadeIn span:nth-child(425) {
  -webkit-animation-delay: 6.375s !important;
          animation-delay: 6.375s !important;
}
.textFadeIn span:nth-child(426) {
  -webkit-animation-delay: 6.39s !important;
          animation-delay: 6.39s !important;
}
.textFadeIn span:nth-child(427) {
  -webkit-animation-delay: 6.405s !important;
          animation-delay: 6.405s !important;
}
.textFadeIn span:nth-child(428) {
  -webkit-animation-delay: 6.42s !important;
          animation-delay: 6.42s !important;
}
.textFadeIn span:nth-child(429) {
  -webkit-animation-delay: 6.435s !important;
          animation-delay: 6.435s !important;
}
.textFadeIn span:nth-child(430) {
  -webkit-animation-delay: 6.45s !important;
          animation-delay: 6.45s !important;
}
.textFadeIn span:nth-child(431) {
  -webkit-animation-delay: 6.465s !important;
          animation-delay: 6.465s !important;
}
.textFadeIn span:nth-child(432) {
  -webkit-animation-delay: 6.48s !important;
          animation-delay: 6.48s !important;
}
.textFadeIn span:nth-child(433) {
  -webkit-animation-delay: 6.495s !important;
          animation-delay: 6.495s !important;
}
.textFadeIn span:nth-child(434) {
  -webkit-animation-delay: 6.51s !important;
          animation-delay: 6.51s !important;
}
.textFadeIn span:nth-child(435) {
  -webkit-animation-delay: 6.525s !important;
          animation-delay: 6.525s !important;
}
.textFadeIn span:nth-child(436) {
  -webkit-animation-delay: 6.54s !important;
          animation-delay: 6.54s !important;
}
.textFadeIn span:nth-child(437) {
  -webkit-animation-delay: 6.555s !important;
          animation-delay: 6.555s !important;
}
.textFadeIn span:nth-child(438) {
  -webkit-animation-delay: 6.57s !important;
          animation-delay: 6.57s !important;
}
.textFadeIn span:nth-child(439) {
  -webkit-animation-delay: 6.585s !important;
          animation-delay: 6.585s !important;
}
.textFadeIn span:nth-child(440) {
  -webkit-animation-delay: 6.6s !important;
          animation-delay: 6.6s !important;
}
.textFadeIn span:nth-child(441) {
  -webkit-animation-delay: 6.615s !important;
          animation-delay: 6.615s !important;
}
.textFadeIn span:nth-child(442) {
  -webkit-animation-delay: 6.63s !important;
          animation-delay: 6.63s !important;
}
.textFadeIn span:nth-child(443) {
  -webkit-animation-delay: 6.645s !important;
          animation-delay: 6.645s !important;
}
.textFadeIn span:nth-child(444) {
  -webkit-animation-delay: 6.66s !important;
          animation-delay: 6.66s !important;
}
.textFadeIn span:nth-child(445) {
  -webkit-animation-delay: 6.675s !important;
          animation-delay: 6.675s !important;
}
.textFadeIn span:nth-child(446) {
  -webkit-animation-delay: 6.69s !important;
          animation-delay: 6.69s !important;
}
.textFadeIn span:nth-child(447) {
  -webkit-animation-delay: 6.705s !important;
          animation-delay: 6.705s !important;
}
.textFadeIn span:nth-child(448) {
  -webkit-animation-delay: 6.72s !important;
          animation-delay: 6.72s !important;
}
.textFadeIn span:nth-child(449) {
  -webkit-animation-delay: 6.735s !important;
          animation-delay: 6.735s !important;
}
.textFadeIn span:nth-child(450) {
  -webkit-animation-delay: 6.75s !important;
          animation-delay: 6.75s !important;
}
.textFadeIn span:nth-child(451) {
  -webkit-animation-delay: 6.765s !important;
          animation-delay: 6.765s !important;
}
.textFadeIn span:nth-child(452) {
  -webkit-animation-delay: 6.78s !important;
          animation-delay: 6.78s !important;
}
.textFadeIn span:nth-child(453) {
  -webkit-animation-delay: 6.795s !important;
          animation-delay: 6.795s !important;
}
.textFadeIn span:nth-child(454) {
  -webkit-animation-delay: 6.81s !important;
          animation-delay: 6.81s !important;
}
.textFadeIn span:nth-child(455) {
  -webkit-animation-delay: 6.825s !important;
          animation-delay: 6.825s !important;
}
.textFadeIn span:nth-child(456) {
  -webkit-animation-delay: 6.84s !important;
          animation-delay: 6.84s !important;
}
.textFadeIn span:nth-child(457) {
  -webkit-animation-delay: 6.855s !important;
          animation-delay: 6.855s !important;
}
.textFadeIn span:nth-child(458) {
  -webkit-animation-delay: 6.87s !important;
          animation-delay: 6.87s !important;
}
.textFadeIn span:nth-child(459) {
  -webkit-animation-delay: 6.885s !important;
          animation-delay: 6.885s !important;
}
.textFadeIn span:nth-child(460) {
  -webkit-animation-delay: 6.9s !important;
          animation-delay: 6.9s !important;
}
.textFadeIn span:nth-child(461) {
  -webkit-animation-delay: 6.915s !important;
          animation-delay: 6.915s !important;
}
.textFadeIn span:nth-child(462) {
  -webkit-animation-delay: 6.93s !important;
          animation-delay: 6.93s !important;
}
.textFadeIn span:nth-child(463) {
  -webkit-animation-delay: 6.945s !important;
          animation-delay: 6.945s !important;
}
.textFadeIn span:nth-child(464) {
  -webkit-animation-delay: 6.96s !important;
          animation-delay: 6.96s !important;
}
.textFadeIn span:nth-child(465) {
  -webkit-animation-delay: 6.975s !important;
          animation-delay: 6.975s !important;
}
.textFadeIn span:nth-child(466) {
  -webkit-animation-delay: 6.99s !important;
          animation-delay: 6.99s !important;
}
.textFadeIn span:nth-child(467) {
  -webkit-animation-delay: 7.005s !important;
          animation-delay: 7.005s !important;
}
.textFadeIn span:nth-child(468) {
  -webkit-animation-delay: 7.02s !important;
          animation-delay: 7.02s !important;
}
.textFadeIn span:nth-child(469) {
  -webkit-animation-delay: 7.035s !important;
          animation-delay: 7.035s !important;
}
.textFadeIn span:nth-child(470) {
  -webkit-animation-delay: 7.05s !important;
          animation-delay: 7.05s !important;
}
.textFadeIn span:nth-child(471) {
  -webkit-animation-delay: 7.065s !important;
          animation-delay: 7.065s !important;
}
.textFadeIn span:nth-child(472) {
  -webkit-animation-delay: 7.08s !important;
          animation-delay: 7.08s !important;
}
.textFadeIn span:nth-child(473) {
  -webkit-animation-delay: 7.095s !important;
          animation-delay: 7.095s !important;
}
.textFadeIn span:nth-child(474) {
  -webkit-animation-delay: 7.11s !important;
          animation-delay: 7.11s !important;
}
.textFadeIn span:nth-child(475) {
  -webkit-animation-delay: 7.125s !important;
          animation-delay: 7.125s !important;
}
.textFadeIn span:nth-child(476) {
  -webkit-animation-delay: 7.14s !important;
          animation-delay: 7.14s !important;
}
.textFadeIn span:nth-child(477) {
  -webkit-animation-delay: 7.155s !important;
          animation-delay: 7.155s !important;
}
.textFadeIn span:nth-child(478) {
  -webkit-animation-delay: 7.17s !important;
          animation-delay: 7.17s !important;
}
.textFadeIn span:nth-child(479) {
  -webkit-animation-delay: 7.185s !important;
          animation-delay: 7.185s !important;
}
.textFadeIn span:nth-child(480) {
  -webkit-animation-delay: 7.2s !important;
          animation-delay: 7.2s !important;
}
.textFadeIn span:nth-child(481) {
  -webkit-animation-delay: 7.215s !important;
          animation-delay: 7.215s !important;
}
.textFadeIn span:nth-child(482) {
  -webkit-animation-delay: 7.23s !important;
          animation-delay: 7.23s !important;
}
.textFadeIn span:nth-child(483) {
  -webkit-animation-delay: 7.245s !important;
          animation-delay: 7.245s !important;
}
.textFadeIn span:nth-child(484) {
  -webkit-animation-delay: 7.26s !important;
          animation-delay: 7.26s !important;
}
.textFadeIn span:nth-child(485) {
  -webkit-animation-delay: 7.275s !important;
          animation-delay: 7.275s !important;
}
.textFadeIn span:nth-child(486) {
  -webkit-animation-delay: 7.29s !important;
          animation-delay: 7.29s !important;
}
.textFadeIn span:nth-child(487) {
  -webkit-animation-delay: 7.305s !important;
          animation-delay: 7.305s !important;
}
.textFadeIn span:nth-child(488) {
  -webkit-animation-delay: 7.32s !important;
          animation-delay: 7.32s !important;
}
.textFadeIn span:nth-child(489) {
  -webkit-animation-delay: 7.335s !important;
          animation-delay: 7.335s !important;
}
.textFadeIn span:nth-child(490) {
  -webkit-animation-delay: 7.35s !important;
          animation-delay: 7.35s !important;
}
.textFadeIn span:nth-child(491) {
  -webkit-animation-delay: 7.365s !important;
          animation-delay: 7.365s !important;
}
.textFadeIn span:nth-child(492) {
  -webkit-animation-delay: 7.38s !important;
          animation-delay: 7.38s !important;
}
.textFadeIn span:nth-child(493) {
  -webkit-animation-delay: 7.395s !important;
          animation-delay: 7.395s !important;
}
.textFadeIn span:nth-child(494) {
  -webkit-animation-delay: 7.41s !important;
          animation-delay: 7.41s !important;
}
.textFadeIn span:nth-child(495) {
  -webkit-animation-delay: 7.425s !important;
          animation-delay: 7.425s !important;
}
.textFadeIn span:nth-child(496) {
  -webkit-animation-delay: 7.44s !important;
          animation-delay: 7.44s !important;
}
.textFadeIn span:nth-child(497) {
  -webkit-animation-delay: 7.455s !important;
          animation-delay: 7.455s !important;
}
.textFadeIn span:nth-child(498) {
  -webkit-animation-delay: 7.47s !important;
          animation-delay: 7.47s !important;
}
.textFadeIn span:nth-child(499) {
  -webkit-animation-delay: 7.485s !important;
          animation-delay: 7.485s !important;
}
.textFadeIn span:nth-child(500) {
  -webkit-animation-delay: 7.5s !important;
          animation-delay: 7.5s !important;
}
.textFadeIn span:nth-child(501) {
  -webkit-animation-delay: 7.515s !important;
          animation-delay: 7.515s !important;
}
.textFadeIn span:nth-child(502) {
  -webkit-animation-delay: 7.53s !important;
          animation-delay: 7.53s !important;
}
.textFadeIn span:nth-child(503) {
  -webkit-animation-delay: 7.545s !important;
          animation-delay: 7.545s !important;
}
.textFadeIn span:nth-child(504) {
  -webkit-animation-delay: 7.56s !important;
          animation-delay: 7.56s !important;
}
.textFadeIn span:nth-child(505) {
  -webkit-animation-delay: 7.575s !important;
          animation-delay: 7.575s !important;
}
.textFadeIn span:nth-child(506) {
  -webkit-animation-delay: 7.59s !important;
          animation-delay: 7.59s !important;
}
.textFadeIn span:nth-child(507) {
  -webkit-animation-delay: 7.605s !important;
          animation-delay: 7.605s !important;
}
.textFadeIn span:nth-child(508) {
  -webkit-animation-delay: 7.62s !important;
          animation-delay: 7.62s !important;
}
.textFadeIn span:nth-child(509) {
  -webkit-animation-delay: 7.635s !important;
          animation-delay: 7.635s !important;
}
.textFadeIn span:nth-child(510) {
  -webkit-animation-delay: 7.65s !important;
          animation-delay: 7.65s !important;
}
.textFadeIn span:nth-child(511) {
  -webkit-animation-delay: 7.665s !important;
          animation-delay: 7.665s !important;
}
.textFadeIn span:nth-child(512) {
  -webkit-animation-delay: 7.68s !important;
          animation-delay: 7.68s !important;
}
.textFadeIn span:nth-child(513) {
  -webkit-animation-delay: 7.695s !important;
          animation-delay: 7.695s !important;
}
.textFadeIn span:nth-child(514) {
  -webkit-animation-delay: 7.71s !important;
          animation-delay: 7.71s !important;
}
.textFadeIn span:nth-child(515) {
  -webkit-animation-delay: 7.725s !important;
          animation-delay: 7.725s !important;
}
.textFadeIn span:nth-child(516) {
  -webkit-animation-delay: 7.74s !important;
          animation-delay: 7.74s !important;
}
.textFadeIn span:nth-child(517) {
  -webkit-animation-delay: 7.755s !important;
          animation-delay: 7.755s !important;
}
.textFadeIn span:nth-child(518) {
  -webkit-animation-delay: 7.77s !important;
          animation-delay: 7.77s !important;
}
.textFadeIn span:nth-child(519) {
  -webkit-animation-delay: 7.785s !important;
          animation-delay: 7.785s !important;
}
.textFadeIn span:nth-child(520) {
  -webkit-animation-delay: 7.8s !important;
          animation-delay: 7.8s !important;
}
.textFadeIn span:nth-child(521) {
  -webkit-animation-delay: 7.815s !important;
          animation-delay: 7.815s !important;
}
.textFadeIn span:nth-child(522) {
  -webkit-animation-delay: 7.83s !important;
          animation-delay: 7.83s !important;
}
.textFadeIn span:nth-child(523) {
  -webkit-animation-delay: 7.845s !important;
          animation-delay: 7.845s !important;
}
.textFadeIn span:nth-child(524) {
  -webkit-animation-delay: 7.86s !important;
          animation-delay: 7.86s !important;
}
.textFadeIn span:nth-child(525) {
  -webkit-animation-delay: 7.875s !important;
          animation-delay: 7.875s !important;
}
.textFadeIn span:nth-child(526) {
  -webkit-animation-delay: 7.89s !important;
          animation-delay: 7.89s !important;
}
.textFadeIn span:nth-child(527) {
  -webkit-animation-delay: 7.905s !important;
          animation-delay: 7.905s !important;
}
.textFadeIn span:nth-child(528) {
  -webkit-animation-delay: 7.92s !important;
          animation-delay: 7.92s !important;
}
.textFadeIn span:nth-child(529) {
  -webkit-animation-delay: 7.935s !important;
          animation-delay: 7.935s !important;
}
.textFadeIn span:nth-child(530) {
  -webkit-animation-delay: 7.95s !important;
          animation-delay: 7.95s !important;
}
.textFadeIn span:nth-child(531) {
  -webkit-animation-delay: 7.965s !important;
          animation-delay: 7.965s !important;
}
.textFadeIn span:nth-child(532) {
  -webkit-animation-delay: 7.98s !important;
          animation-delay: 7.98s !important;
}
.textFadeIn span:nth-child(533) {
  -webkit-animation-delay: 7.995s !important;
          animation-delay: 7.995s !important;
}
.textFadeIn span:nth-child(534) {
  -webkit-animation-delay: 8.01s !important;
          animation-delay: 8.01s !important;
}
.textFadeIn span:nth-child(535) {
  -webkit-animation-delay: 8.025s !important;
          animation-delay: 8.025s !important;
}
.textFadeIn span:nth-child(536) {
  -webkit-animation-delay: 8.04s !important;
          animation-delay: 8.04s !important;
}
.textFadeIn span:nth-child(537) {
  -webkit-animation-delay: 8.055s !important;
          animation-delay: 8.055s !important;
}
.textFadeIn span:nth-child(538) {
  -webkit-animation-delay: 8.07s !important;
          animation-delay: 8.07s !important;
}
.textFadeIn span:nth-child(539) {
  -webkit-animation-delay: 8.085s !important;
          animation-delay: 8.085s !important;
}
.textFadeIn span:nth-child(540) {
  -webkit-animation-delay: 8.1s !important;
          animation-delay: 8.1s !important;
}
.textFadeIn span:nth-child(541) {
  -webkit-animation-delay: 8.115s !important;
          animation-delay: 8.115s !important;
}
.textFadeIn span:nth-child(542) {
  -webkit-animation-delay: 8.13s !important;
          animation-delay: 8.13s !important;
}
.textFadeIn span:nth-child(543) {
  -webkit-animation-delay: 8.145s !important;
          animation-delay: 8.145s !important;
}
.textFadeIn span:nth-child(544) {
  -webkit-animation-delay: 8.16s !important;
          animation-delay: 8.16s !important;
}
.textFadeIn span:nth-child(545) {
  -webkit-animation-delay: 8.175s !important;
          animation-delay: 8.175s !important;
}
.textFadeIn span:nth-child(546) {
  -webkit-animation-delay: 8.19s !important;
          animation-delay: 8.19s !important;
}
.textFadeIn span:nth-child(547) {
  -webkit-animation-delay: 8.205s !important;
          animation-delay: 8.205s !important;
}
.textFadeIn span:nth-child(548) {
  -webkit-animation-delay: 8.22s !important;
          animation-delay: 8.22s !important;
}
.textFadeIn span:nth-child(549) {
  -webkit-animation-delay: 8.235s !important;
          animation-delay: 8.235s !important;
}
.textFadeIn span:nth-child(550) {
  -webkit-animation-delay: 8.25s !important;
          animation-delay: 8.25s !important;
}
.textFadeIn span:nth-child(551) {
  -webkit-animation-delay: 8.265s !important;
          animation-delay: 8.265s !important;
}
.textFadeIn span:nth-child(552) {
  -webkit-animation-delay: 8.28s !important;
          animation-delay: 8.28s !important;
}
.textFadeIn span:nth-child(553) {
  -webkit-animation-delay: 8.295s !important;
          animation-delay: 8.295s !important;
}
.textFadeIn span:nth-child(554) {
  -webkit-animation-delay: 8.31s !important;
          animation-delay: 8.31s !important;
}
.textFadeIn span:nth-child(555) {
  -webkit-animation-delay: 8.325s !important;
          animation-delay: 8.325s !important;
}
.textFadeIn span:nth-child(556) {
  -webkit-animation-delay: 8.34s !important;
          animation-delay: 8.34s !important;
}
.textFadeIn span:nth-child(557) {
  -webkit-animation-delay: 8.355s !important;
          animation-delay: 8.355s !important;
}
.textFadeIn span:nth-child(558) {
  -webkit-animation-delay: 8.37s !important;
          animation-delay: 8.37s !important;
}
.textFadeIn span:nth-child(559) {
  -webkit-animation-delay: 8.385s !important;
          animation-delay: 8.385s !important;
}
.textFadeIn span:nth-child(560) {
  -webkit-animation-delay: 8.4s !important;
          animation-delay: 8.4s !important;
}
.textFadeIn span:nth-child(561) {
  -webkit-animation-delay: 8.415s !important;
          animation-delay: 8.415s !important;
}
.textFadeIn span:nth-child(562) {
  -webkit-animation-delay: 8.43s !important;
          animation-delay: 8.43s !important;
}
.textFadeIn span:nth-child(563) {
  -webkit-animation-delay: 8.445s !important;
          animation-delay: 8.445s !important;
}
.textFadeIn span:nth-child(564) {
  -webkit-animation-delay: 8.46s !important;
          animation-delay: 8.46s !important;
}
.textFadeIn span:nth-child(565) {
  -webkit-animation-delay: 8.475s !important;
          animation-delay: 8.475s !important;
}
.textFadeIn span:nth-child(566) {
  -webkit-animation-delay: 8.49s !important;
          animation-delay: 8.49s !important;
}
.textFadeIn span:nth-child(567) {
  -webkit-animation-delay: 8.505s !important;
          animation-delay: 8.505s !important;
}
.textFadeIn span:nth-child(568) {
  -webkit-animation-delay: 8.52s !important;
          animation-delay: 8.52s !important;
}
.textFadeIn span:nth-child(569) {
  -webkit-animation-delay: 8.535s !important;
          animation-delay: 8.535s !important;
}
.textFadeIn span:nth-child(570) {
  -webkit-animation-delay: 8.55s !important;
          animation-delay: 8.55s !important;
}
.textFadeIn span:nth-child(571) {
  -webkit-animation-delay: 8.565s !important;
          animation-delay: 8.565s !important;
}
.textFadeIn span:nth-child(572) {
  -webkit-animation-delay: 8.58s !important;
          animation-delay: 8.58s !important;
}
.textFadeIn span:nth-child(573) {
  -webkit-animation-delay: 8.595s !important;
          animation-delay: 8.595s !important;
}
.textFadeIn span:nth-child(574) {
  -webkit-animation-delay: 8.61s !important;
          animation-delay: 8.61s !important;
}
.textFadeIn span:nth-child(575) {
  -webkit-animation-delay: 8.625s !important;
          animation-delay: 8.625s !important;
}
.textFadeIn span:nth-child(576) {
  -webkit-animation-delay: 8.64s !important;
          animation-delay: 8.64s !important;
}
.textFadeIn span:nth-child(577) {
  -webkit-animation-delay: 8.655s !important;
          animation-delay: 8.655s !important;
}
.textFadeIn span:nth-child(578) {
  -webkit-animation-delay: 8.67s !important;
          animation-delay: 8.67s !important;
}
.textFadeIn span:nth-child(579) {
  -webkit-animation-delay: 8.685s !important;
          animation-delay: 8.685s !important;
}
.textFadeIn span:nth-child(580) {
  -webkit-animation-delay: 8.7s !important;
          animation-delay: 8.7s !important;
}
.textFadeIn span:nth-child(581) {
  -webkit-animation-delay: 8.715s !important;
          animation-delay: 8.715s !important;
}
.textFadeIn span:nth-child(582) {
  -webkit-animation-delay: 8.73s !important;
          animation-delay: 8.73s !important;
}
.textFadeIn span:nth-child(583) {
  -webkit-animation-delay: 8.745s !important;
          animation-delay: 8.745s !important;
}
.textFadeIn span:nth-child(584) {
  -webkit-animation-delay: 8.76s !important;
          animation-delay: 8.76s !important;
}
.textFadeIn span:nth-child(585) {
  -webkit-animation-delay: 8.775s !important;
          animation-delay: 8.775s !important;
}
.textFadeIn span:nth-child(586) {
  -webkit-animation-delay: 8.79s !important;
          animation-delay: 8.79s !important;
}
.textFadeIn span:nth-child(587) {
  -webkit-animation-delay: 8.805s !important;
          animation-delay: 8.805s !important;
}
.textFadeIn span:nth-child(588) {
  -webkit-animation-delay: 8.82s !important;
          animation-delay: 8.82s !important;
}
.textFadeIn span:nth-child(589) {
  -webkit-animation-delay: 8.835s !important;
          animation-delay: 8.835s !important;
}
.textFadeIn span:nth-child(590) {
  -webkit-animation-delay: 8.85s !important;
          animation-delay: 8.85s !important;
}
.textFadeIn span:nth-child(591) {
  -webkit-animation-delay: 8.865s !important;
          animation-delay: 8.865s !important;
}
.textFadeIn span:nth-child(592) {
  -webkit-animation-delay: 8.88s !important;
          animation-delay: 8.88s !important;
}
.textFadeIn span:nth-child(593) {
  -webkit-animation-delay: 8.895s !important;
          animation-delay: 8.895s !important;
}
.textFadeIn span:nth-child(594) {
  -webkit-animation-delay: 8.91s !important;
          animation-delay: 8.91s !important;
}
.textFadeIn span:nth-child(595) {
  -webkit-animation-delay: 8.925s !important;
          animation-delay: 8.925s !important;
}
.textFadeIn span:nth-child(596) {
  -webkit-animation-delay: 8.94s !important;
          animation-delay: 8.94s !important;
}
.textFadeIn span:nth-child(597) {
  -webkit-animation-delay: 8.955s !important;
          animation-delay: 8.955s !important;
}
.textFadeIn span:nth-child(598) {
  -webkit-animation-delay: 8.97s !important;
          animation-delay: 8.97s !important;
}
.textFadeIn span:nth-child(599) {
  -webkit-animation-delay: 8.985s !important;
          animation-delay: 8.985s !important;
}
.textFadeIn span:nth-child(600) {
  -webkit-animation-delay: 9s !important;
          animation-delay: 9s !important;
}
.textFadeIn.active span {
  -webkit-animation: textBlurIn 1s ease forwards;
          animation: textBlurIn 1s ease forwards;
}

@-webkit-keyframes textBlurIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes textBlurIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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