@import "clearStyle.css";
@import "animate.css";
@import "bootstrap.min.css";
@import "font-awesome.min.css";
@import "colors/theme-color-1.css";
body {
  font-family: "Microsoft YaHei";
  font-size: 14px;
}
a {
  color: #333;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
a:hover {
  color: #5d78ff;
}
a,
a:hover,
a:active,
a:focus {
  text-decoration: none;
}
/*  Animations */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translate3d(0, -40px, 0);
    transform: translate3d(0, -40px, 0);
  }
  to {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translate3d(0, -40px, 0);
    transform: translate3d(0, -40px, 0);
  }
  to {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  to {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  to {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  to {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  to {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.spin {
  -webkit-animation: spin 2s linear infinite;
  animation: spin 1s linear infinite;
}
.btn {
  position: relative;
  text-transform: capitalize;
  border-radius: 0;
  overflow: hidden;
  z-index: 0;
  font-size: 16px;
  color: #5d78ff;
  border: 1px solid #5d78ff;
  padding: 8px 30px;
  border-radius: 30px;
  display: inline-block;
  background: rgba(72, 111, 255, 0.03);
}
.btn:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.btn:active,
.btn:hover,
.btn:focus {
  color: #fff;
  background: #5d78ff;
}
.btn:active:after,
.btn:hover:after,
.btn:focus:after {
  color: #fff;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  background: #5d78ff;
}
.knowMore {
  color: #fff;
  position: relative;
  text-transform: capitalize;
  border-radius: 0;
  overflow: hidden;
  z-index: 0;
  font-size: 16px;
  padding: 8px 30px;
  background: #5d78ff;
}
.knowMore:active,
.knowMore:hover,
.knowMore:focus {
  background: #2c0ffa;
  transition: all 500ms;
  color: #fff;
}
.knowMore:active:after,
.knowMore:hover:after,
.knowMore:focus:after {
  color: #5d78ff;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  background: #fff;
}
.btnWhite {
  width: 166px;
  height: 42px;
  box-sizing: border-box;
  position: relative;
  text-transform: capitalize;
  border-radius: 0;
  overflow: hidden;
  z-index: 0;
  font-size: 16px;
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btnWhite:active,
.btnWhite:hover,
.btnWhite:focus {
  color: #fff;
  border: none;
  background-color: #5d78ff;
  transition: all 1150ms linear;
}
.btnWhite:active:after,
.btnWhite:hover:after,
.btnWhite:focus:after {
  color: #fff;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
.preLoader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 99999;
  overflow: hidden;
}
.preLoader:before {
  content: "";
  -webkit-animation: spin 2s linear infinite;
  animation: spin 1s linear infinite;
  width: 70px;
  height: 70px;
  position: absolute;
  border: 5px solid #5d78ff;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
html,
body {
  min-width: 1100px;
  width: 100%;
}
.header {
  min-width: 1100px;
  width: 100%;
}
.header .container {
  min-width: 1100px;
  width: 100%;
}
.header-top-info li,
.header-top-settings li {
  padding: 0 10px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-top-info li a,
.header-top-settings li span {
  font-size: 12px;
  color: #8287a7;
  display: inline-block;
  cursor: pointer;
}
.header-top-info li.social-icons a {
  display: inline-block;
  padding: 0 5px;
  font-size: 11px;
}
.header-top-info li a:hover,
.header-top-settings li span:hover,
.header-top-settings li span[aria-expanded="true"] {
  color: #fff;
}
.header-top-settings li span {
  text-transform: uppercase;
}
.header-top-settings .dropdown-menu {
  margin: 0;
  font-size: 14px;
  border: 0;
  border-radius: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header-top-settings .dropdown-menu {
  margin-top: 16px;
}
.header-top-settings .dropdown-menu a {
  text-align: left;
  padding: 12px 20px;
}
.header-top-settings .dropdown-menu a:not(:first-child) {
  border-top: 1px solid #e2e6fb;
}
.header-top-settings .dropdown-menu a:hover {
  background-color: #ffffff;
  color: #5d78ff;
}
.dropdown-menu.dropdown-menu-right.show {
  margin-left: 0px;
}
.main-header {
  box-shadow: none;
  position: relative;
  z-index: 999;
  background: #fff;
}
.main-header.active {
  background: #111;
}
.main-header.active .header-menu > ul > li > a {
  color: #fff;
}
.main-header.stuck {
  position: fixed;
  top: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  width: 100%;
}
.header-menu,
.header-menu ul,
.header-menu ul li,
.header-menu ul li a,
.header-menu #menu-button {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
}
.header-menu ul li {
  position: relative;
}
.header-menu ul li:hover .borderTop {
  -webkit-transition: all 1s;
  transition: all 1s;
  display: block;
}
.header-menu ul li a i {
  margin-left: 4px;
}
.header-menu #menu-button {
  display: none;
}
.header-menu > ul ul {
  text-align: left;
  z-index: 99999;
}
.header-menu > ul > li {
  display: inline-block;
  float: left;
}
.header-menu > ul > li.has-sub:hover:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2em;
  bottom: -2em;
  cursor: pointer;
  left: 0;
}
.header-menu > ul > li {
  padding-left: 15px;
  padding-right: 15px;
  height: 60px;
}
.header-menu > ul > li > a {
  padding: 27px 0;
  font-size: 16px;
}
.header-menu > ul > li:hover > a,
.header-menu > ul > li.active > a {
  color: #5d78ff !important;
}
.header-menu > ul > li > a:after,
.header-menu > ul > li.active > a:after,
.header-menu > ul > li:hover > a:after {
  content: " ";
  position: absolute;
  width: 0;
  height: 3px;
  background: #5d78ff;
  left: 0;
  right: 0;
  bottom: 10px;
  margin: auto;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.header-menu > ul > li > a:hover:after,
.header-menu > ul > li.active > a:after,
.header-menu > ul > li:hover > a:after {
  width: 100%;
}
.header-menu > ul > li.active > a:after {
  background: transparent !important;
}
.header-menu > ul > li > a > i {
  font-size: 10px;
}
.header-menu ul ul {
  position: absolute;
  left: -9999px;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: top 0.2s ease, opacity 0.2s ease;
  transition: top 0.2s ease, opacity 0.2s ease;
}
.header-menu > ul > li > ul {
  top: 120px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: top 0.2s ease, opacity 0.2s ease;
  transition: top 0.2s ease, opacity 0.2s ease;
}
.header-menu > ul > li:hover > ul {
  left: auto;
  top: 60px;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.header-menu.align-right > ul > li:hover > ul {
  right: 0;
}
.header-menu ul ul ul {
  top: 32px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header-menu ul ul ul:before {
  content: "";
  position: absolute;
  left: -7px;
  top: 7px;
  width: 0;
  height: 0;
  border-right: 7px solid #ecf7fe;
  border-top: 7px solid transparent;
  z-index: 99;
}
.header-menu ul ul ul:after {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  width: 10px;
  height: 100%;
  z-index: -1;
}
.header-menu ul ul ul li {
  background: #fff;
}
.header-menu ul ul > li:hover > ul {
  top: 0;
  left: 188px;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.header-menu.align-right ul ul > li:hover > ul {
  left: auto;
  right: 178px;
  padding-left: 0;
  padding-right: 10px;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.header-menu ul ul li a {
  width: 180px;
  padding: 13px 10px;
  font-size: 14px;
  line-height: 1.25;
  position: relative;
  background: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.header-menu ul ul li a i {
  position: absolute;
  right: 15px;
  top: 16px;
  font-size: 10px;
}
.header-menu ul ul li:hover > a,
.header-menu ul ul li > a:hover,
.header-menu ul ul li.active > a {
  color: #5d78ff !important;
}
.menu-wraper {
  float: right;
}
.header-menu > ul {
  transition: 0.3s all linear;
}
.header-menu > ul > li:last-child {
  margin-right: 0px !important;
  padding-right: 0px !important;
}
.headerSaaS {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.headerSaaS a.headerSaaS {
  display: block;
  width: 100px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: #d7deff;
  margin: 0;
}
.headerSaaS a.headerSaaS:hover {
  background: #B2B9FA;
  color: #333;
}
.headerRight a {
  padding: 10px;
  background: #d7deff;
}
footer {
  width: 100%;
  min-width: 1100px;
  background: #040818;
  margin: 0 auto;
  text-align: center;
}
footer .footer {
  width: 100%;
}
footer .footer .footerHeader {
  margin: 0 auto;
  height: 160px;
  width: 1080px;
  border-bottom: 1px solid #cccccc;
  display: flex;
  align-items: center;
}
footer .footer .footerHeader ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .footer .footerHeader ul li {
  display: flex;
  align-items: center;
}
footer .footer .footerHeader ul li span {
  margin-left: 10px;
  font-size: 16px;
  color: #fff;
}
footer .footer .footerBody {
  margin: 10px auto 0;
  height: 310px;
  width: 1080px;
  border-bottom: 1px solid #cccccc;
  display: flex;
  align-items: center;
}
footer .footer .footerBody ul {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
footer .footer .footerBody ul li {
  display: flex;
  flex-direction: column;
}
footer .footer .footerBody ul li h4 {
  font-size: 14px;
  color: #fff;
  text-align: left;
}
footer .footer .footerBody ul li .ulCont {
  display: flex;
}
footer .footer .footerBody ul li .ulCont ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
footer .footer .footerBody ul li .ulCont ul li {
  font-size: 14px;
  margin-top: 12px;
  position: relative;
}
footer .footer .footerBody ul li .ulCont ul li:hover .expect {
  display: block;
  animation: riseFooter 0.3s linear;
}
footer .footer .footerBody ul li .ulCont ul li .expect {
  width: 150px;
  position: absolute;
  top: -32px;
  left: -47px;
  right: 0px;
  margin: 0 auto;
  background: #fff;
  font-size: 14px;
  color: #333;
  padding: 2px 0;
  z-index: 10;
  display: none;
}
footer .footer .footerBody ul li .ulCont ul li .expect.left3 {
  left: -55px;
}
footer .footer .footerBody ul li .ulCont ul li .expect span {
  color: #333;
  display: block;
  text-align: center;
}
footer .footer .footerBody ul li .ulCont ul li .expect .borderBottom {
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-top: 6px solid #fff;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}
footer .footer .footerBody ul li .ulCont ul li a {
  color: #999999;
}
footer .footer .footerBody ul li .ulCont ul li a:hover {
  color: #5d78ff;
}
footer .footer .footerBody ul li .ulCont ul li span {
  color: #999999;
}
footer .footer .footerBody ul li .ulCont ul li.QRcode {
  display: none;
  width: 170px;
  text-align: center;
  position: relative;
}
footer .footer .footerBody ul li .ulCont ul li.QRcode img {
  position: absolute;
  left: 0px;
  margin: 0 auto;
  width: 100px;
  height: 100px;
}
footer .footer .footerBody ul li .ulCont ul li.QRcode img.left1 {
  left: -35px;
}
footer .footer .footerBody ul li .ulCont ul li.QRcode img.left2 {
  left: 40px;
}
footer .footer .footerBody ul li .ulCont ul li.QRcode img.left3 {
  left: 110px;
}
footer .footer .footerBody ul li .ulCont ul li ul {
  width: 174px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
footer .footer .footerBody ul li .ulCont ul li ul li:hover {
  cursor: pointer;
}
footer .footer .footerBody ul li .ulCont ul:nth-child(2) {
  margin-left: 28px;
}
footer .footer .footerBottom {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding-bottom: 15px;
}
footer .footer .footerBottom a {
  display: block;
  font-size: 14px;
  color: #999999;
}
@-webkit-keyframes iconrotateZ {
  from {
    -webkit-transform: rotateZ(0deg);
  }
  to {
    -webkit-transform: rotateZ(360deg);
  }
}
@keyframes iconrotateZ {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes frameworkrotate {
  from {
    -webkit-transform: rotateZ(0deg);
  }
  to {
    -webkit-transform: rotateZ(360deg);
  }
}
@keyframes frameworkrotate {
  from {
    transform: rotateX(0deg);
  }
  to {
    transform: rotateX(30deg);
  }
}
.enerModule .module7 .colsflip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
}
.enerModule .module7 .colflip {
  margin-bottom: 25px;
}
.enerModule .module7 .containerflip {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
.enerModule .module7 .front,
.enerModule .module7 .back {
  background-size: cover;
  background-position: center;
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -o-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  min-height: 250px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.enerModule .module7 .back {
  background: #486fff;
  background: -webkit-linear-gradient(45deg, #95acff 0%, #486fff 100%);
  background: -o-linear-gradient(45deg, #95acff 0%, #486fff 100%);
  background: linear-gradient(45deg, #95acff 0%, #486fff 100%);
}
.enerModule .module7 .containerflip:hover .front,
.enerModule .module7 .containerflip:hover .back {
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -o-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
}
.enerModule .module7 .back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.enerModule .module7 .inner {
  -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
  transform: translateY(-50%) translateZ(60px) scale(0.94);
  top: 45%;
  position: absolute;
  left: 40px;
  width: 59%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
}
.enerModule .module7 .containerflip .back {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  display: none;
}
.enerModule .module7 .containerflip .front {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.enerModule .module7 .containerflip {
  width: 510px;
  background: #fff;
}
.enerModule .module7 .containerflip:hover {
  background: #5d78ff;
}
.enerModule .module7 .containerflip:hover .front .inner h3 {
  color: #fff;
}
.enerModule .module7 .containerflip:hover .front .inner span {
  background: #fff;
}
.enerModule .module7 .containerflip:hover .front .inner p {
  color: #fff;
}
.enerModule .module7 .containerflip:hover .front .rightImg .icon2 {
  display: block;
}
.enerModule .module7 .containerflip:hover .front .rightImg .icon1 {
  display: none;
}
.enerModule .module7 .containerflip .front,
.enerModule .module7 .containerflip .back {
  width: 510px;
  margin: 0 auto;
  box-shadow: 0px 0px 20px #dddddd;
}
.enerModule .module7 .containerflip .front .rightImg,
.enerModule .module7 .containerflip .back .rightImg {
  position: absolute;
  right: 0px;
  top: 16%;
  z-index: 10;
  width: 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.enerModule .module7 .containerflip .front .rightImg .icon1,
.enerModule .module7 .containerflip .back .rightImg .icon1 {
  display: block;
}
.enerModule .module7 .containerflip .front .rightImg .icon2,
.enerModule .module7 .containerflip .back .rightImg .icon2 {
  display: none;
}
.enerModule .module7 .front .inner h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
}
.enerModule .module7 .front .inner span {
  margin: 35px 0 25px 0;
  display: block;
  width: 50px;
  height: 2px;
  background: #5d78ff;
}
.enerModule .module7 .front .inner p {
  font-size: 16px;
  color: #999;
}
.enerModule .module7 .back .inner h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 15px;
}
.enerModule .module7 .back .inner span {
  margin: 35px 0 25px 0;
  display: block;
  width: 50px;
  height: 2px;
  background: #fff;
}
.enerModule .module7 .back .inner p {
  font-size: 16px;
  color: #fff;
}
.mediModule .module5 .colsflip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
}
.mediModule .module5 .colflip {
  margin-bottom: 37px;
}
.mediModule .module5 .containerflip {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
.mediModule .module5 .front,
.mediModule .module5 .back {
  background-size: cover;
  background-position: center;
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -o-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  min-height: 280px;
  height: auto;
}
.mediModule .module5 .back {
  background: #486fff;
  background: -webkit-linear-gradient(45deg, #95acff 0%, #486fff 100%);
  background: -o-linear-gradient(45deg, #95acff 0%, #486fff 100%);
  background: linear-gradient(45deg, #95acff 0%, #486fff 100%);
}
.mediModule .module5 .back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
}
.mediModule .module5 .inner {
  -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
  transform: translateY(-50%) translateZ(60px) scale(0.94);
  top: 35%;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
}
.mediModule .module5 .containerflip .back {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.mediModule .module5 .containerflip .front {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.mediModule .module5 .containerflip {
  width: 340px;
  background: #fff;
}
.mediModule .module5 .containerflip:hover {
  background: #5d78ff;
}
.mediModule .module5 .containerflip:hover .front .inner h3 {
  color: #fff;
}
.mediModule .module5 .containerflip:hover .front .inner p {
  color: #fff;
}
.mediModule .module5 .containerflip:hover .rightImg {
  display: none;
}
.mediModule .module5 .containerflip:hover .rightImg img {
  width: 102px;
}
.mediModule .module5 .containerflip .front,
.mediModule .module5 .containerflip .back {
  width: 340px;
  margin: 0 auto;
  box-shadow: 0px 0px 20px #dddddd;
}
.mediModule .module5 .containerflip .front .rightImg {
  position: absolute;
  right: 33px;
  bottom: 41px;
  z-index: 10;
  display: block;
}
.mediModule .module5 .containerflip .front .rightImg img {
  width: 102px;
}
.mediModule .module5 .front .inner,
.mediModule .module5 .back .inner {
  width: 80%;
  margin: 0 auto;
}
.mediModule .module5 .front .inner h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
}
.mediModule .module5 .front .inner p {
  font-size: 16px;
  color: #999;
}
.mediModule .module5 .back .inner h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 15px;
}
.mediModule .module5 .back .inner p {
  font-size: 16px;
  color: #fff;
}
.f-main-list {
  width: 1100px;
  text-align: center;
}
.f-main-item {
  display: inline-block;
  width: 280px;
  *display: inline;
  _zoom: 1;
  position: relative;
}
.f-main-item:hover .f-bg .circle {
  -webkit-animation: iconrotateZ 6s linear infinite;
  -webkit-animation-fill-mode: both;
  animation: iconrotateZ 6s linear infinite;
  animation-fill-mode: both;
}
.f-main-item .line {
  position: absolute;
  right: -146px;
  top: 85px;
}
.fk-infoBlockWrap .fk-infoBlock {
  width: 280px;
  height: 170px;
  transform-origin: center center;
  position: relative;
  _overflow: visible;
}
.fk-infoBlockWrap .f-bg {
  width: 280px;
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  right: 0;
  margin: auto auto;
  transition: all 0.3s;
  transform-origin: center center;
  overflow: visible;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fk-infoBlockWrap .f-bg .hand {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  margin: auto auto;
}
.f-bg .circle {
  width: 186px;
}
.f-bg .hand {
  width: 126px;
}
.fk-infoBlockWrap .f-infoBlock-normal .f-bg {
  background: transparent;
}
.fk-infoBlockWrap {
  position: relative;
}
.fk-infoBlockWrap .f-wrapBg {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 0;
  transition: all 0.3s;
  overflow: visible;
}
.fk-infoBlockWrap .f-infoWrap {
  position: absolute;
  top: 0;
  z-index: 2;
  text-align: center;
  width: 280px;
  left: 0px;
  transition: all 0.3s;
  opacity: 0;
  filter: alpha(opacity=0);
}
.fk-infoBlockWrap .f-infoWrap .f-info-title {
  text-align: center;
}
.f-info-title h3 {
  text-align: center;
  font-size: 24px;
  height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.f-info-title p {
  margin: 0 auto;
  width: 94%;
  text-align: center;
  font-size: 16px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #666;
}
.f-infoBlock-fasico .f-infoWrap {
  top: -13px;
  text-align: center;
}
.fk-infoBlock .f-info-title {
  font-size: 16px;
}
.f-infoBlock-name {
  padding-top: 45px;
  transition: opacity 0.1s;
  opacity: 1;
  position: absolute;
  top: 175px;
  width: 100%;
  left: 0;
  text-align: center;
}
.f-infoBlock-name h3 {
  font-size: 24px;
  color: #333333;
}
.f-infoBlock-name p {
  text-align: left;
  margin-top: 15px;
  font-size: 16px;
  color: #999999;
}
#plistEnery {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#plistEnery li {
  width: 248px;
  height: 560px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  transition: all 500ms;
}
#plistEnery li .mask {
  width: 250px;
  height: 200px;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: -200px;
  z-index: 20;
  transition: all 500ms;
  background: #5d78ff;
  opacity: 0.5;
}
#plistEnery li .imgage {
  height: 275px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#plistEnery li .imgage img {
  width: 180px;
}
#plistEnery li div.box {
  width: 91%;
  margin: 0 auto;
  position: relative;
  z-index: 11;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#plistEnery li h3 {
  font-size: 24px;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
}
#plistEnery li p {
  margin-top: 10px;
  font-size: 16px;
  color: #666;
  text-align: left;
}
#plistEnery li .arrowImg {
  display: none;
}
#plistEnery li .csbg {
  width: 248px;
  height: 260px;
  background: #5d78ff;
  opacity: 0.3;
  position: absolute;
  left: 0;
  bottom: -260px;
  z-index: 5;
  transition: all 500ms;
}
#plistEnery li:hover .imgage {
  height: 200px;
}
#plistEnery li:hover .box {
  text-align: center;
}
#plistEnery li:hover .box h3 {
  margin-top: 20px;
}
#plistEnery li:hover .box p {
  display: block;
}
#plistEnery li:hover .box .arrowImg {
  display: block;
}
#plist {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#plist li {
  width: 248px;
  height: 390px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  transition: all 500ms;
  background: #fff;
  box-shadow: 0px 0px 20px #eee;
}
#plist li .mask {
  width: 248px;
  height: 190px;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: -190px;
  z-index: 20;
  transition: all 500ms;
}
#plist li .imgage {
  height: 275px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#plist li div.box {
  width: 78%;
  margin: 0 auto;
  position: relative;
  z-index: 11;
}
#plist li:nth-child(2) div.box {
  width: 71%;
}
#plist li h3 {
  font-size: 24px;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
}
#plist li p {
  margin-top: 10px;
  font-size: 16px;
  color: #666;
  display: none;
}
#plist li .csbg {
  width: 248px;
  height: 130px;
  background: #5d78ff;
  position: absolute;
  left: 0;
  bottom: -130px;
  z-index: 5;
  transition: all 500ms;
}
#plist li:hover {
  color: #fff;
}
#plist li:hover .imgage {
  height: 215px;
}
#plist li:hover p {
  display: block;
  color: #fff;
}
#plist li:hover .mask {
  top: 0px;
}
#plist li:hover .csbg {
  bottom: 0px;
}
.positionOffset {
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
  -webkit-perspective: 1800px;
  perspective: 1800px;
  text-align: center;
}
.positionOffset .cards {
  background: #fff;
  border-radius: 15px;
  display: inline-block;
  -webkit-perspective: 1800px;
  perspective: 1800px;
  text-align: center;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: rotateX(11deg) rotateY(16.5deg);
  transform: rotateX(11deg) rotateY(16.5deg);
}
.positionOffset .cards img {
  box-shadow: 0px 25px 30px -25px #666;
}
.product-grid {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-grid .product-image {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-grid .product-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.product-grid .product-image img {
  width: 498px;
}
.product-grid .pic-1 {
  opacity: 1;
  transform: rotateY(0);
  transition: all 0.5s ease-out 0s;
}
.product-grid .pic-2 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  margin: auto auto;
  opacity: 0;
  transform: rotateY(-90deg);
  transition: all 0.5s ease-out 0s;
}
.bubbly-button {
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 149px;
  height: 46px;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  cursor: pointer;
  position: relative;
  transition: transform ease-in 0.1s, box-shadow ease-in 0.25s;
  box-shadow: 0 0px 25px rgba(72, 111, 255, 0.5);
}
.bubbly-button:hover {
  background-color: #486fff;
  border: none;
}
.bubbly-button i {
  margin-right: 5px;
  font-size: 22px;
}
.bubbly-button:focus {
  outline: 0;
}
.bubbly-button:before,
.bubbly-button:after {
  position: absolute;
  content: "";
  display: block;
  width: 140%;
  height: 100%;
  left: -20%;
  z-index: -1000;
  transition: all ease-in-out 0.5s;
  background-repeat: no-repeat;
}
.bubbly-button:before {
  display: none;
  top: -75%;
  background-image: radial-gradient(circle, #486fff 20%, transparent 20%), radial-gradient(circle, transparent 20%, #486fff 20%, transparent 30%), radial-gradient(circle, #486fff 20%, transparent 20%), radial-gradient(circle, #486fff 20%, transparent 20%), radial-gradient(circle, transparent 10%, #486fff 15%, transparent 20%), radial-gradient(circle, #486fff 20%, transparent 20%), radial-gradient(circle, #486fff 20%, transparent 20%), radial-gradient(circle, #486fff 20%, transparent 20%), radial-gradient(circle, #486fff 20%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
}
.bubbly-button:after {
  display: none;
  bottom: -75%;
  background-image: radial-gradient(circle, #486fff 20%, transparent 20%), radial-gradient(circle, #486fff 20%, transparent 20%), radial-gradient(circle, transparent 10%, #486fff 15%, transparent 20%), radial-gradient(circle, #486fff 20%, transparent 20%), radial-gradient(circle, #486fff 20%, transparent 20%), radial-gradient(circle, #486fff 20%, transparent 20%), radial-gradient(circle, #486fff 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 10% 10%, 20% 20%;
}
.bubbly-button:active {
  border: none;
  transform: scale(0.9);
  background-color: #5d78ff;
  box-shadow: 0 2px 25px rgba(72, 111, 255, 0.2);
}
.bubbly-button.animate:before {
  display: block;
  animation: topBubbles ease-in-out 0.75s forwards;
}
.bubbly-button.animate:after {
  display: block;
  animation: bottomBubbles ease-in-out 0.75s forwards;
}
@keyframes topBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@-webkit-keyframes topBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes bottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@-webkit-keyframes bottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
.dg {
  background: #040818;
  color: transparent;
}
@-webkit-keyframes bird {
  0% {
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  25% {
    -moz-transform: translate(0, -5px);
    -webkit-transform: translate(0, -5px);
    -o-transform: translate(0, -5px);
    -ms-transform: translate(0, -5px);
    transform: translate(0, -5px);
  }
  50% {
    -moz-transform: translate(0, -10px);
    -webkit-transform: translate(0, -10px);
    -o-transform: translate(0, -10px);
    -ms-transform: translate(0, -10px);
    transform: translate(0, -10px);
  }
  75% {
    -moz-transform: translate(0, -5px);
    -webkit-transform: translate(0, -5px);
    -o-transform: translate(0, -5px);
    -ms-transform: translate(0, -5px);
    transform: translate(0, -5px);
  }
  100% {
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes bird {
  0% {
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  25% {
    -moz-transform: translate(0, -10px);
    -webkit-transform: translate(0, -10px);
    -o-transform: translate(0, -10px);
    -ms-transform: translate(0, -10px);
    transform: translate(0, -10px);
  }
  50% {
    -moz-transform: translate(0, -20px);
    -webkit-transform: translate(0, -20px);
    -o-transform: translate(0, -20px);
    -ms-transform: translate(0, -20px);
    transform: translate(0, -20px);
  }
  75% {
    -moz-transform: translate(0, -10px);
    -webkit-transform: translate(0, -10px);
    -o-transform: translate(0, -10px);
    -ms-transform: translate(0, -10px);
    transform: translate(0, -10px);
  }
  100% {
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.topCont {
  position: fixed;
  right: 10px;
  bottom: 45px;
  cursor: pointer;
  z-index: 200;
  display: none;
}
.topCont:hover .unfold {
  display: block;
}
.topCont:hover .packUp {
  display: none;
}
.topCont .packUp {
  width: 80px;
}
.topCont .unfold {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  display: none;
  position: relative;
}
.topCont .unfold img:nth-child(1) {
  width: 120px;
  margin: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 60px;
  margin: auto auto;
}
.topCont .unfold img:nth-child(2) {
  width: 80px;
  margin: 0;
}
@keyframes toTop {
  0% {
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  10% {
    -moz-transform: translate(0, -10px);
    -webkit-transform: translate(0, -10px);
    -o-transform: translate(0, -10px);
    -ms-transform: translate(0, -10px);
    transform: translate(0, -10px);
  }
  20% {
    -moz-transform: translate(0, -20px);
    -webkit-transform: translate(0, -20px);
    -o-transform: translate(0, -20px);
    -ms-transform: translate(0, -20px);
    transform: translate(0, -20px);
  }
  30% {
    -moz-transform: translate(0, -30px);
    -webkit-transform: translate(0, -30px);
    -o-transform: translate(0, -30px);
    -ms-transform: translate(0, -30px);
    transform: translate(0, -30px);
  }
  40% {
    -moz-transform: translate(0, -40px);
    -webkit-transform: translate(0, -40px);
    -o-transform: translate(0, -40px);
    -ms-transform: translate(0, -40px);
    transform: translate(0, -40px);
  }
  50% {
    -moz-transform: translate(0, -50px);
    -webkit-transform: translate(0, -50px);
    -o-transform: translate(0, -50px);
    -ms-transform: translate(0, -50px);
    transform: translate(0, -50px);
  }
  60% {
    -moz-transform: translate(0, -60px);
    -webkit-transform: translate(0, -60px);
    -o-transform: translate(0, -60px);
    -ms-transform: translate(0, -60px);
    transform: translate(0, -60px);
  }
  70% {
    -moz-transform: translate(0, -70px);
    -webkit-transform: translate(0, -70px);
    -o-transform: translate(0, -70px);
    -ms-transform: translate(0, -70px);
    transform: translate(0, -70px);
  }
  80% {
    -moz-transform: translate(0, -80px);
    -webkit-transform: translate(0, -80px);
    -o-transform: translate(0, -80px);
    -ms-transform: translate(0, -80px);
    transform: translate(0, -80px);
  }
  90% {
    -moz-transform: translate(0, -90px);
    -webkit-transform: translate(0, -90px);
    -o-transform: translate(0, -90px);
    -ms-transform: translate(0, -90px);
    transform: translate(0, -90px);
  }
  100% {
    -moz-transform: translate(0, -100px);
    -webkit-transform: translate(0, -100px);
    -o-transform: translate(0, -100px);
    -ms-transform: translate(0, -100px);
    transform: translate(0, -100px);
  }
}
@-webkit-keyframes toTop {
  0% {
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  10% {
    -moz-transform: translate(0, -10px);
    -webkit-transform: translate(0, -10px);
    -o-transform: translate(0, -10px);
    -ms-transform: translate(0, -10px);
    transform: translate(0, -10px);
  }
  20% {
    -moz-transform: translate(0, -20px);
    -webkit-transform: translate(0, -20px);
    -o-transform: translate(0, -20px);
    -ms-transform: translate(0, -20px);
    transform: translate(0, -20px);
  }
  30% {
    -moz-transform: translate(0, -30px);
    -webkit-transform: translate(0, -30px);
    -o-transform: translate(0, -30px);
    -ms-transform: translate(0, -30px);
    transform: translate(0, -30px);
  }
  40% {
    -moz-transform: translate(0, -40px);
    -webkit-transform: translate(0, -40px);
    -o-transform: translate(0, -40px);
    -ms-transform: translate(0, -40px);
    transform: translate(0, -40px);
  }
  50% {
    -moz-transform: translate(0, -50px);
    -webkit-transform: translate(0, -50px);
    -o-transform: translate(0, -50px);
    -ms-transform: translate(0, -50px);
    transform: translate(0, -50px);
  }
  60% {
    -moz-transform: translate(0, -60px);
    -webkit-transform: translate(0, -60px);
    -o-transform: translate(0, -60px);
    -ms-transform: translate(0, -60px);
    transform: translate(0, -60px);
  }
  70% {
    -moz-transform: translate(0, -70px);
    -webkit-transform: translate(0, -70px);
    -o-transform: translate(0, -70px);
    -ms-transform: translate(0, -70px);
    transform: translate(0, -70px);
  }
  80% {
    -moz-transform: translate(0, -80px);
    -webkit-transform: translate(0, -80px);
    -o-transform: translate(0, -80px);
    -ms-transform: translate(0, -80px);
    transform: translate(0, -80px);
  }
  90% {
    -moz-transform: translate(0, -90px);
    -webkit-transform: translate(0, -90px);
    -o-transform: translate(0, -90px);
    -ms-transform: translate(0, -90px);
    transform: translate(0, -90px);
  }
  100% {
    -moz-transform: translate(0, -100px);
    -webkit-transform: translate(0, -100px);
    -o-transform: translate(0, -100px);
    -ms-transform: translate(0, -100px);
    transform: translate(0, -100px);
  }
}
@keyframes toBottom {
  0% {
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  10% {
    -moz-transform: translate(0, 10px);
    -webkit-transform: translate(0, 10px);
    -o-transform: translate(0, 10px);
    -ms-transform: translate(0, 10px);
    transform: translate(0, 10px);
  }
  20% {
    -moz-transform: translate(0, 20px);
    -webkit-transform: translate(0, 20px);
    -o-transform: translate(0, 20px);
    -ms-transform: translate(0, 20px);
    transform: translate(0, 20px);
  }
  30% {
    -moz-transform: translate(0, 30px);
    -webkit-transform: translate(0, 30px);
    -o-transform: translate(0, 30px);
    -ms-transform: translate(0, 30px);
    transform: translate(0, 30px);
  }
  40% {
    -moz-transform: translate(0, 40px);
    -webkit-transform: translate(0, 40px);
    -o-transform: translate(0, 40px);
    -ms-transform: translate(0, 40px);
    transform: translate(0, 40px);
  }
  50% {
    -moz-transform: translate(0, 50px);
    -webkit-transform: translate(0, 50px);
    -o-transform: translate(0, 50px);
    -ms-transform: translate(0, 50px);
    transform: translate(0, 50px);
  }
  60% {
    -moz-transform: translate(0, 60px);
    -webkit-transform: translate(0, 60px);
    -o-transform: translate(0, 60px);
    -ms-transform: translate(0, 60px);
    transform: translate(0, 60px);
  }
  70% {
    -moz-transform: translate(0, 70px);
    -webkit-transform: translate(0, 70px);
    -o-transform: translate(0, 70px);
    -ms-transform: translate(0, 70px);
    transform: translate(0, 70px);
  }
  80% {
    -moz-transform: translate(0, 80px);
    -webkit-transform: translate(0, 80px);
    -o-transform: translate(0, 80px);
    -ms-transform: translate(0, 80px);
    transform: translate(0, 80px);
  }
  90% {
    -moz-transform: translate(0, 90px);
    -webkit-transform: translate(0, 90px);
    -o-transform: translate(0, 90px);
    -ms-transform: translate(0, 90px);
    transform: translate(0, 90px);
  }
  100% {
    -moz-transform: translate(0, 100px);
    -webkit-transform: translate(0, 100px);
    -o-transform: translate(0, 100px);
    -ms-transform: translate(0, 100px);
    transform: translate(0, 100px);
  }
}
@-webkit-keyframes toBottom {
  0% {
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  10% {
    -moz-transform: translate(0, 10px);
    -webkit-transform: translate(0, 10px);
    -o-transform: translate(0, 10px);
    -ms-transform: translate(0, 10px);
    transform: translate(0, 10px);
  }
  20% {
    -moz-transform: translate(0, 20px);
    -webkit-transform: translate(0, 20px);
    -o-transform: translate(0, 20px);
    -ms-transform: translate(0, 20px);
    transform: translate(0, 20px);
  }
  30% {
    -moz-transform: translate(0, 30px);
    -webkit-transform: translate(0, 30px);
    -o-transform: translate(0, 30px);
    -ms-transform: translate(0, 30px);
    transform: translate(0, 30px);
  }
  40% {
    -moz-transform: translate(0, 40px);
    -webkit-transform: translate(0, 40px);
    -o-transform: translate(0, 40px);
    -ms-transform: translate(0, 40px);
    transform: translate(0, 40px);
  }
  50% {
    -moz-transform: translate(0, 50px);
    -webkit-transform: translate(0, 50px);
    -o-transform: translate(0, 50px);
    -ms-transform: translate(0, 50px);
    transform: translate(0, 50px);
  }
  60% {
    -moz-transform: translate(0, 60px);
    -webkit-transform: translate(0, 60px);
    -o-transform: translate(0, 60px);
    -ms-transform: translate(0, 60px);
    transform: translate(0, 60px);
  }
  70% {
    -moz-transform: translate(0, 70px);
    -webkit-transform: translate(0, 70px);
    -o-transform: translate(0, 70px);
    -ms-transform: translate(0, 70px);
    transform: translate(0, 70px);
  }
  80% {
    -moz-transform: translate(0, 80px);
    -webkit-transform: translate(0, 80px);
    -o-transform: translate(0, 80px);
    -ms-transform: translate(0, 80px);
    transform: translate(0, 80px);
  }
  90% {
    -moz-transform: translate(0, 90px);
    -webkit-transform: translate(0, 90px);
    -o-transform: translate(0, 90px);
    -ms-transform: translate(0, 90px);
    transform: translate(0, 90px);
  }
  100% {
    -moz-transform: translate(0, 100px);
    -webkit-transform: translate(0, 100px);
    -o-transform: translate(0, 100px);
    -ms-transform: translate(0, 100px);
    transform: translate(0, 100px);
  }
}
@keyframes toLeft {
  0% {
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  10% {
    -moz-transform: translate(10px, 0);
    -webkit-transform: translate(10px, 0);
    -o-transform: translate(10px, 0);
    -ms-transform: translate(10px, 0);
    transform: translate(10px, 0);
  }
  20% {
    -moz-transform: translate(20px, 0);
    -webkit-transform: translate(20px, 0);
    -o-transform: translate(20px, 0);
    -ms-transform: translate(20px, 0);
    transform: translate(20px, 0);
  }
  30% {
    -moz-transform: translate(30px, 0);
    -webkit-transform: translate(30px, 0);
    -o-transform: translate(30px, 0);
    -ms-transform: translate(30px, 0);
    transform: translate(30px, 0);
  }
  40% {
    -moz-transform: translate(40px, 0);
    -webkit-transform: translate(40px, 0);
    -o-transform: translate(40px, 0);
    -ms-transform: translate(40px, 0);
    transform: translate(40px, 0);
  }
  50% {
    -moz-transform: translate(50px, 0);
    -webkit-transform: translate(50px, 0);
    -o-transform: translate(50px, 0);
    -ms-transform: translate(50px, 0);
    transform: translate(50px, 0);
  }
  60% {
    -moz-transform: translate(60px, 0);
    -webkit-transform: translate(60px, 0);
    -o-transform: translate(60px, 0);
    -ms-transform: translate(60px, 0);
    transform: translate(60px, 0);
  }
  70% {
    -moz-transform: translate(70px, 0);
    -webkit-transform: translate(70px, 0);
    -o-transform: translate(70px, 0);
    -ms-transform: translate(70px, 0);
    transform: translate(70px, 0);
  }
  80% {
    -moz-transform: translate(80px, 0);
    -webkit-transform: translate(80px, 0);
    -o-transform: translate(80px, 0);
    -ms-transform: translate(80px, 0);
    transform: translate(80px, 0);
  }
  90% {
    -moz-transform: translate(90px, 0);
    -webkit-transform: translate(90px, 0);
    -o-transform: translate(90px, 0);
    -ms-transform: translate(90px, 0);
    transform: translate(90px, 0);
  }
  100% {
    -moz-transform: translate(100px, 0);
    -webkit-transform: translate(100px, 0);
    -o-transform: translate(100px, 0);
    -ms-transform: translate(100px, 0);
    transform: translate(100px, 0);
  }
}
@-webkit-keyframes toLeft {
  0% {
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  10% {
    -moz-transform: translate(10px, 0);
    -webkit-transform: translate(10px, 0);
    -o-transform: translate(10px, 0);
    -ms-transform: translate(10px, 0);
    transform: translate(10px, 0);
  }
  20% {
    -moz-transform: translate(20px, 0);
    -webkit-transform: translate(20px, 0);
    -o-transform: translate(20px, 0);
    -ms-transform: translate(20px, 0);
    transform: translate(20px, 0);
  }
  30% {
    -moz-transform: translate(30px, 0);
    -webkit-transform: translate(30px, 0);
    -o-transform: translate(30px, 0);
    -ms-transform: translate(30px, 0);
    transform: translate(30px, 0);
  }
  40% {
    -moz-transform: translate(40px, 0);
    -webkit-transform: translate(40px, 0);
    -o-transform: translate(40px, 0);
    -ms-transform: translate(40px, 0);
    transform: translate(40px, 0);
  }
  50% {
    -moz-transform: translate(50px, 0);
    -webkit-transform: translate(50px, 0);
    -o-transform: translate(50px, 0);
    -ms-transform: translate(50px, 0);
    transform: translate(50px, 0);
  }
  60% {
    -moz-transform: translate(60px, 0);
    -webkit-transform: translate(60px, 0);
    -o-transform: translate(60px, 0);
    -ms-transform: translate(60px, 0);
    transform: translate(60px, 0);
  }
  70% {
    -moz-transform: translate(70px, 0);
    -webkit-transform: translate(70px, 0);
    -o-transform: translate(70px, 0);
    -ms-transform: translate(70px, 0);
    transform: translate(70px, 0);
  }
  80% {
    -moz-transform: translate(80px, 0);
    -webkit-transform: translate(80px, 0);
    -o-transform: translate(80px, 0);
    -ms-transform: translate(80px, 0);
    transform: translate(80px, 0);
  }
  90% {
    -moz-transform: translate(90px, 0);
    -webkit-transform: translate(90px, 0);
    -o-transform: translate(90px, 0);
    -ms-transform: translate(90px, 0);
    transform: translate(90px, 0);
  }
  100% {
    -moz-transform: translate(100px, 0);
    -webkit-transform: translate(100px, 0);
    -o-transform: translate(100px, 0);
    -ms-transform: translate(100px, 0);
    transform: translate(100px, 0);
  }
}
@keyframes toRight {
  0% {
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  10% {
    -moz-transform: translate(-10px, 0);
    -webkit-transform: translate(-10px, 0);
    -o-transform: translate(-10px, 0);
    -ms-transform: translate(-10px, 0);
    transform: translate(-10px, 0);
  }
  20% {
    -moz-transform: translate(-20px, 0);
    -webkit-transform: translate(-20px, 0);
    -o-transform: translate(-20px, 0);
    -ms-transform: translate(-20px, 0);
    transform: translate(-20px, 0);
  }
  30% {
    -moz-transform: translate(-30px, 0);
    -webkit-transform: translate(-30px, 0);
    -o-transform: translate(-30px, 0);
    -ms-transform: translate(-30px, 0);
    transform: translate(-30px, 0);
  }
  40% {
    -moz-transform: translate(-40, 0);
    -webkit-transform: translate(-40, 0);
    -o-transform: translate(-40, 0);
    -ms-transform: translate(-40, 0);
    transform: translate(-40, 0);
  }
  50% {
    -moz-transform: translate(-50px, 0);
    -webkit-transform: translate(-50px, 0);
    -o-transform: translate(-50px, 0);
    -ms-transform: translate(-50px, 0);
    transform: translate(-50px, 0);
  }
  60% {
    -moz-transform: translate(-60px, 0);
    -webkit-transform: translate(-60px, 0);
    -o-transform: translate(-60px, 0);
    -ms-transform: translate(-60px, 0);
    transform: translate(-60px, 0);
  }
  70% {
    -moz-transform: translate(-70px, 0);
    -webkit-transform: translate(-70px, 0);
    -o-transform: translate(-70px, 0);
    -ms-transform: translate(-70px, 0);
    transform: translate(-70px, 0);
  }
  80% {
    -moz-transform: translate(-80px, 0);
    -webkit-transform: translate(-80px, 0);
    -o-transform: translate(-80px, 0);
    -ms-transform: translate(-80px, 0);
    transform: translate(-80px, 0);
  }
  90% {
    -moz-transform: translate(-90px, 0);
    -webkit-transform: translate(-90px, 0);
    -o-transform: translate(-90px, 0);
    -ms-transform: translate(-90px, 0);
    transform: translate(-90px, 0);
  }
  100% {
    -moz-transform: translate(-100px, 0);
    -webkit-transform: translate(-100px, 0);
    -o-transform: translate(-100px, 0);
    -ms-transform: translate(-100px, 0);
    transform: translate(-100px, 0);
  }
}
@-webkit-keyframes toRight {
  0% {
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  10% {
    -moz-transform: translate(-10px, 0);
    -webkit-transform: translate(-10px, 0);
    -o-transform: translate(-10px, 0);
    -ms-transform: translate(-10px, 0);
    transform: translate(-10px, 0);
  }
  20% {
    -moz-transform: translate(-20px, 0);
    -webkit-transform: translate(-20px, 0);
    -o-transform: translate(-20px, 0);
    -ms-transform: translate(-20px, 0);
    transform: translate(-20px, 0);
  }
  30% {
    -moz-transform: translate(-30px, 0);
    -webkit-transform: translate(-30px, 0);
    -o-transform: translate(-30px, 0);
    -ms-transform: translate(-30px, 0);
    transform: translate(-30px, 0);
  }
  40% {
    -moz-transform: translate(-40, 0);
    -webkit-transform: translate(-40, 0);
    -o-transform: translate(-40, 0);
    -ms-transform: translate(-40, 0);
    transform: translate(-40, 0);
  }
  50% {
    -moz-transform: translate(-50px, 0);
    -webkit-transform: translate(-50px, 0);
    -o-transform: translate(-50px, 0);
    -ms-transform: translate(-50px, 0);
    transform: translate(-50px, 0);
  }
  60% {
    -moz-transform: translate(-60px, 0);
    -webkit-transform: translate(-60px, 0);
    -o-transform: translate(-60px, 0);
    -ms-transform: translate(-60px, 0);
    transform: translate(-60px, 0);
  }
  70% {
    -moz-transform: translate(-70px, 0);
    -webkit-transform: translate(-70px, 0);
    -o-transform: translate(-70px, 0);
    -ms-transform: translate(-70px, 0);
    transform: translate(-70px, 0);
  }
  80% {
    -moz-transform: translate(-80px, 0);
    -webkit-transform: translate(-80px, 0);
    -o-transform: translate(-80px, 0);
    -ms-transform: translate(-80px, 0);
    transform: translate(-80px, 0);
  }
  90% {
    -moz-transform: translate(-90px, 0);
    -webkit-transform: translate(-90px, 0);
    -o-transform: translate(-90px, 0);
    -ms-transform: translate(-90px, 0);
    transform: translate(-90px, 0);
  }
  100% {
    -moz-transform: translate(-100px, 0);
    -webkit-transform: translate(-100px, 0);
    -o-transform: translate(-100px, 0);
    -ms-transform: translate(-100px, 0);
    transform: translate(-100px, 0);
  }
}
.wisdModule .module3 .box {
  position: relative;
  overflow: hidden;
}
.wisdModule .module3 .box:before,
.wisdModule .module3 .box:after,
.wisdModule .module3 .box-content:before,
.wisdModule .module3 .box-content:after {
  content: '';
  background: linear-gradient(#486fff, #486fff);
  height: 101%;
  width: 25%;
  transform: translateY(-100%);
  position: absolute;
  left: 0;
  top: -2px;
  z-index: 1;
  transition: all 0.3s;
}
.wisdModule .module3 .box:hover:before,
.wisdModule .module3 .box:hover:after,
.wisdModule .module3 .box:hover .box-content:before,
.wisdModule .module3 .box:hover .box-content:after {
  transform: translateY(0);
}
.wisdModule .module3 .box:after {
  left: 25%;
}
.wisdModule .module3 .box .box-content:before {
  left: 50%;
}
.wisdModule .module3 .box .box-content:after {
  left: 75%;
}
.wisdModule .module3 .box:hover .box-content:after {
  transition-delay: 0s;
}
.wisdModule .module3 .box img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease 0s;
}
.wisdModule .module3 .box .boxBottom {
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: 50px;
  line-height: 50px;
  text-indent: 45px;
  width: 100%;
  color: #fff;
  font-size: 24px;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}
.wisdModule .module3 .box .box-content {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}
.wisdModule .module3 .item {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  transition: all 0.3s ease 0.1s;
}
.wisdModule .module3 .box:hover .item {
  opacity: 1;
  bottom: 5px;
}
.wisdModule .module3 .box .itemP {
  color: #fff;
  font-size: 16px;
  margin: 0 0 25px 45px;
  text-align: left;
}
.wisdModule .module3 .box .cicleImg {
  margin-left: 45px;
  width: 60px;
  height: 60px;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.wisdModule .module3 .box .cicleImg img {
  width: 26px;
}
.wisdModule .module3 .box .post {
  color: #fff;
  font-size: 24px;
  display: block;
  margin: 25px 0 10px 45px;
}
.wisdModule .module5 .swiper-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.wisdModule .module5 .swiper-slide {
  background-size: cover;
  background-position: center;
}
.wisdModule .module5 .gallery-top {
  height: 100%;
  width: 100%;
}
.wisdModule .module5 .swiper-button-prev,
.wisdModule .module5 .swiper-button-next {
  display: none !important;
}
.wisdModule .module5 .gallery-thumbs {
  height: 71px;
  box-sizing: border-box;
}
.wisdModule .module5 .gallery-thumbs .swiper-slide {
  width: 53px;
  height: 100%;
  margin: 20px 20px 0 0;
  overflow: hidden;
}
.wisdModule .module5 .gallery-thumbs .swiper-slide-thumb-active {
  border: 1px solid #5d78ff;
}
.hvr-sweep-to-right {
  width: 166px;
  height: 42px;
  box-sizing: border-box;
  text-transform: capitalize;
  border-radius: 0;
  overflow: hidden;
  z-index: 0;
  font-size: 16px;
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-right:hover,
.hvr-sweep-to-right:focus,
.hvr-sweep-to-right:active {
  color: #030121;
}
.hvr-sweep-to-right:hover:before,
.hvr-sweep-to-right:focus:before,
.hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.hvr-sweep-to-rightMore {
  width: 166px;
  height: 42px;
  box-sizing: border-box;
  text-transform: capitalize;
  border-radius: 0;
  overflow: hidden;
  z-index: 0;
  font-size: 16px;
  color: #5d78ff;
  border: 1px solid #5d78ff;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-rightMore:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #5d78ff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-rightMore:hover,
.hvr-sweep-to-rightMore:focus,
.hvr-sweep-to-rightMore:active {
  color: #fff;
}
.hvr-sweep-to-rightMore:hover:before,
.hvr-sweep-to-rightMore:focus:before,
.hvr-sweep-to-rightMore:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
@keyframes warn {
  0% {
    transform: scale(0.3);
    -webkit-transform: scale(0.3);
    opacity: 0.0;
  }
  25% {
    transform: scale(0.3);
    -webkit-transform: scale(0.3);
    opacity: 0.1;
  }
  50% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
    opacity: 0.3;
  }
  75% {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 0.0;
  }
}
@keyframes warn1 {
  0% {
    transform: scale(0.3);
    -webkit-transform: scale(0.3);
    opacity: 0.0;
  }
  25% {
    transform: scale(0.3);
    -webkit-transform: scale(0.3);
    opacity: 0.1;
  }
  50% {
    transform: scale(0.3);
    -webkit-transform: scale(0.3);
    opacity: 0.3;
  }
  75% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    opacity: 0.0;
  }
}
@-webkit-keyframes warn {
  0% {
    transform: scale(0);
    -webkit-transform: scale(0);
    opacity: 0.0;
  }
  25% {
    transform: scale(0);
    -webkit-transform: scale(0);
    opacity: 0.1;
  }
  50% {
    transform: scale(0.1);
    -webkit-transform: scale(0.1);
    opacity: 0.3;
  }
  75% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 0.0;
  }
}
@keyframes riseAn {
  0% {
    top: -36px;
    opacity: 0.0;
  }
  25% {
    top: -42px;
    opacity: 0.3;
  }
  50% {
    top: -52px;
    opacity: 0.5;
  }
  75% {
    top: -60px;
    opacity: 0.7;
  }
  100% {
    top: -66px;
    opacity: 1;
  }
}
@-webkit-keyframes riseAn {
  0% {
    top: -36px;
    opacity: 0.0;
  }
  25% {
    top: -42px;
    opacity: 0.3;
  }
  50% {
    top: -52px;
    opacity: 0.5;
  }
  75% {
    top: -60px;
    opacity: 0.7;
  }
  100% {
    top: -66px;
    opacity: 1;
  }
}
@keyframes riseAboutAn {
  0% {
    top: -50px;
    opacity: 0.0;
  }
  25% {
    top: -100px;
    opacity: 0.3;
  }
  50% {
    top: -150px;
    opacity: 0.5;
  }
  75% {
    top: -200px;
    opacity: 0.7;
  }
  90% {
    top: -220px;
    opacity: 1;
  }
}
@-webkit-keyframes riseAboutAn {
  0% {
    top: -50px;
    opacity: 0.0;
  }
  25% {
    top: -100px;
    opacity: 0.3;
  }
  50% {
    top: -150px;
    opacity: 0.5;
  }
  75% {
    top: -200px;
    opacity: 0.7;
  }
  90% {
    top: -220px;
    opacity: 1;
  }
}
@keyframes riseAboutAn3 {
  0% {
    top: -20px;
    opacity: 0.0;
  }
  25% {
    top: -40px;
    opacity: 0.3;
  }
  50% {
    top: -60px;
    opacity: 0.5;
  }
  75% {
    top: -80px;
    opacity: 0.7;
  }
  90% {
    top: -100px;
    opacity: 1;
  }
}
@-webkit-keyframes riseAboutAn3 {
  0% {
    top: -20px;
    opacity: 0.0;
  }
  25% {
    top: -40px;
    opacity: 0.3;
  }
  50% {
    top: -60px;
    opacity: 0.5;
  }
  75% {
    top: -80px;
    opacity: 0.7;
  }
  90% {
    top: -100px;
    opacity: 1;
  }
}
@-webkit-keyframes riseAboutAn3 {
  0% {
    top: -20px;
    opacity: 0.0;
  }
  25% {
    top: -40px;
    opacity: 0.3;
  }
  50% {
    top: -60px;
    opacity: 0.5;
  }
  75% {
    top: -80px;
    opacity: 0.7;
  }
  90% {
    top: -100px;
    opacity: 1;
  }
}
@keyframes riseAboutAn4 {
  0% {
    top: -30px;
    opacity: 0.0;
  }
  25% {
    top: -70px;
    opacity: 0.3;
  }
  50% {
    top: -95px;
    opacity: 0.5;
  }
  75% {
    top: -120px;
    opacity: 0.7;
  }
  90% {
    top: -150px;
    opacity: 1;
  }
}
@-webkit-keyframes riseAboutAn4 {
  0% {
    top: -30px;
    opacity: 0.0;
  }
  25% {
    top: -70px;
    opacity: 0.3;
  }
  50% {
    top: -95px;
    opacity: 0.5;
  }
  75% {
    top: -120px;
    opacity: 0.7;
  }
  90% {
    top: -150px;
    opacity: 1;
  }
}
@keyframes riseAboutAn5 {
  0% {
    top: -40px;
    opacity: 0.0;
  }
  25% {
    top: -80px;
    opacity: 0.3;
  }
  50% {
    top: -120px;
    opacity: 0.5;
  }
  75% {
    top: -160px;
    opacity: 0.7;
  }
  90% {
    top: -200px;
    opacity: 1;
  }
}
@-webkit-keyframes riseAboutAn5 {
  0% {
    top: -40px;
    opacity: 0.0;
  }
  25% {
    top: -80px;
    opacity: 0.3;
  }
  50% {
    top: -120px;
    opacity: 0.5;
  }
  75% {
    top: -160px;
    opacity: 0.7;
  }
  90% {
    top: -200px;
    opacity: 1;
  }
}
@keyframes riseFooter {
  0% {
    top: -6px;
    opacity: 0.0;
  }
  25% {
    top: -12px;
    opacity: 0.3;
  }
  50% {
    top: -18px;
    opacity: 0.5;
  }
  75% {
    top: -24px;
    opacity: 0.7;
  }
  90% {
    top: -30px;
    opacity: 1;
  }
}
@-webkit-keyframes riseFooter {
  0% {
    top: -6px;
    opacity: 0.0;
  }
  25% {
    top: -12px;
    opacity: 0.3;
  }
  50% {
    top: -18px;
    opacity: 0.5;
  }
  75% {
    top: -24px;
    opacity: 0.7;
  }
  90% {
    top: -30px;
    opacity: 1;
  }
}
[data-animate] {
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
@-webkit-keyframes birdabout {
  0% {
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  25% {
    -moz-transform: translate(0, -5px);
    -webkit-transform: translate(0, -5px);
    -o-transform: translate(0, -5px);
    -ms-transform: translate(0, -5px);
    transform: translate(0, -5px);
  }
  50% {
    -moz-transform: translate(0, -10px);
    -webkit-transform: translate(0, -10px);
    -o-transform: translate(0, -10px);
    -ms-transform: translate(0, -10px);
    transform: translate(0, -10px);
  }
  75% {
    -moz-transform: translate(0, -5px);
    -webkit-transform: translate(0, -5px);
    -o-transform: translate(0, -5px);
    -ms-transform: translate(0, -5px);
    transform: translate(0, -5px);
  }
  100% {
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes birdabout {
  0% {
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  25% {
    -moz-transform: translate(0, -5px);
    -webkit-transform: translate(0, -5px);
    -o-transform: translate(0, -5px);
    -ms-transform: translate(0, -5px);
    transform: translate(0, -5px);
  }
  50% {
    -moz-transform: translate(0, -10px);
    -webkit-transform: translate(0, -10px);
    -o-transform: translate(0, -10px);
    -ms-transform: translate(0, -10px);
    transform: translate(0, -10px);
  }
  75% {
    -moz-transform: translate(0, -5px);
    -webkit-transform: translate(0, -5px);
    -o-transform: translate(0, -5px);
    -ms-transform: translate(0, -5px);
    transform: translate(0, -5px);
  }
  100% {
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
