.design-img {
  position: relative;
  width: 100%;
  height: calc(100vh - 2rem);
  transition: all 3s;
  background-color: #fff;
}

.design-img .design-img1 {
  width: 100%;
  height: 100%;
  border: transparent;
  object-fit: cover;
  border: none !important;
}

.design-img .click {
  font-size: 10vw;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  font-weight: 900;
  font-family: MvBoli;
  transform: translate(-50%, -50%);
}

.design-img .design-img2 {
  width: 5%;
  text-align: center;
  color: #fff;
  font-size: 3.5vw;
  font-weight: 900;
  position: absolute;
  bottom: 22%;
  z-index: 9;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: jump 2.5s infinite;
  transition: all 0.3s ease;
  cursor: pointer;
}

@keyframes jump {
  0% {
    bottom: 24%;
  }

  50% {
    bottom: 20%;
    opacity: 0.4;
  }

  100% {
    bottom: 24%;
  }
}

.design-img .design-img2:hover {
  animation: none;
  transition: all 0.3s ease;
}

.hoverTool {
  transition: all .35s ease-in;
  cursor: pointer;
  width: 3vw;
  height: 6vw;
  position: fixed;
  z-index: 999;
  right: 0px;
  bottom: 10%;
  background-color: transparent;
  opacity: 0;
  transform: translateX(100px);
}

.hoverTool .hoverTool-item {
  font-size: 2vw;
  font-weight: 900;
  background-color: #53dcba;
  color: #fff;
  text-align: center;
  width: 100%;
  height: 3vw;
  line-height: 3vw;
  position: relative;
}

.hoverTool .one {
  background-color: #f4a926;
}

.hoverTool .one .set {
  text-align: center;
  font-size: 2.5vw;
  display: block;
  transition: all .35s ease-in;
  animation: setting 1s linear infinite;
}

.hoverTool .hoverTool-line {
  height: 0.3vw;
  width: 100%;
  background-color: transparent;
}

.foot {
  width: 100%;
  height: 10vw;
  animation: gradientBG 5s ease infinite;
  background: linear-gradient(45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background: linear-gradient(45deg, #23a6d5, #23d5ab, #53dcba, #ddace1);
  background-size: 600% 600%;
}

.foot .foot-title {
  text-align: center;
  line-height: 10vw;
  font-weight: bold;
  font-family: mvboli;
  font-size: 2vw;
}

.loading {
  width: 100%;
  height: calc(100vh);
  background-color: white;
  position: relative;
}

.loading .loading-video {
  display: block;
  width: 100%;
  height: calc(100vh);
}

.loading img {
  display: block;
  margin: 0 auto;
  width: 27vw;
  height: 27vw;
}

.loading .loading-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18vw;
  height: 18vw;
}

.loading .loading-loader .loading-list {
  position: relative;
}

.loading .loading-loader .loading-list .loading-item {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin-top: 50%;
  margin-left: 50%;
  transform: translate(-50%, -50%);
  border: 0.3vw solid #454ADE;
  border: 0.3vw solid #53DCBA;
  border-radius: 50%;
  animation: loading-loader 2s ease-out infinite;
}

.loading .loading-loader .loading-list .loading-item:nth-child(2) {
  animation-delay: -0.5s;
}

table {
  position: relative;
  margin-top: 0rem;
  margin: 0 auto;
  border-collapse: collapse;
  font-family: NavTitle;
}

table caption {
  font-size: 1.5vw;
  margin-bottom: 1rem;
}

table th {
  font-size: 1.5vw;
  text-align: center;
  padding: 0.4rem 0;
  background-color: #28ae78;
  box-shadow: 0px 0px 1px #131313 inset !important;
}

table td {
  font-size: 1.5vw;
  background-color: #fcfbf3;
  text-align: center;
  padding: 0.4rem;
  box-shadow: 0px 0px 1px #131313 inset !important;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes loading-loader {
  0% {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    opacity: 1;
  }

  100% {
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    opacity: 0;
  }
}

@keyframes setting {
  0% {
    transform: rotateZ(0deg);
  }

  50% {
    transform: rotateZ(180deg);
  }

  100% {
    transform: rotateZ(360deg);
  }
}

.active {
  border-left: 4px solid #28ae78 !important;
}

.move {
  transform: translateX(0px) !important;
}