.mobileFooter {
  display: none;
}
.text-primary{
  color: #FFF !important;
}
.border-secondary{
  border-color: #FFF !important;
}
.myFooter {
  position: relative;
  z-index: 2;
  padding-top: 50px;
}

.myFooter .footContent {
  padding: 36px 24px 16px;
  max-width: 1440px;
  margin: auto;
  width: 100%;
}

.myFooter .footContent .connectWay {
  display: flex;
  justify-content: center;
  padding: 8px 0;
}

.myFooter .footContent .connectWay .item {
  display: block;
  width: 32px;
  height: 32px;
  margin: 8px;
  border-radius: 50%;
}

.myFooter .footContent .connectWay .item img {
  display: block;
  width: 100%;
  height: 100%;
}

.myFooter .footContent .line2 {
  line-height: 24px;
  font-size: 16px;
  color: #FFF;
  text-align: center;
}

.myFooter .footContent .line3 {
  color: #FFF;
  text-align: center;
  line-height: 24px;
  font-size: 16px;
  display: flex;
  justify-content: center;
}

.myFooter .footContent .line3 .content_1 {
  margin: 0 8px;
}

.myFooter .footContent .line3 .content_2 {
  margin: 0 8px;
}

.myFooter .footContent .line3 .content_3 {
  margin: 0 8px;
}

.myFooter .footer-wave {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  overflow: hidden;
}

.myFooter .footer-wave .footer-wave-inner {
  position: absolute;
  top: 20px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  background-color: rgba(7, 179, 199, 0.3);
}

.myFooter .footer-wave .footer-wave-inner:nth-child(1) {
  animation: move-forever 6s linear infinite 0s;
}

.myFooter .footer-wave .footer-wave-inner:nth-child(2) {
  animation: move-forever 6s linear infinite -2s;
}

.myFooter .footer-wave .footer-wave-inner:nth-child(3) {
  animation: move-forever 6s linear infinite -4s;
}

@media (max-width: 1024px) {
  .myFooter .footContent {
    padding: 16px 24px 16px;
  }
  .myFooter .footContent .line3 {
    display: none;
  }
  .mobileFooter {
    display: flex;
    display: none;
    height: 60px;
    width: 100%;
    background: #FFF;
    justify-content: space-around;
    position: sticky;
    bottom: 0;
    left: 0;
    z-index: 9;
  }
  .mobileFooter .item .icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
  }
  .mobileFooter .item .icon svg {
    width: 24px;
    height: 24px;
  }
  .mobileFooter .item .icon svg path {
    fill: #333;
  }
  .mobileFooter .item .text {
    font-size: 12px;
    height: 20px;
    color: #666;
    text-align: center;
  }
  .mobileFooter .item:hover .icon svg path {
    fill: #07b3c7;
  }
  .mobileFooter .item:hover .text {
    color: #07b3c7;
  }
}

@keyframes move-forever {
  20% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  40% {
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
  }
  60% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  80% {
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
