@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@900&display=swap");
.gate-xplore {
  display: flex;
  width: 100%;
  height: 90px;
  background: #fff;
  margin: 20px auto;
  padding: 0 10px;
  border-radius: 5px;
  border: 1px solid #f5f5f5;
  box-shadow: 0px 6px 8px 0px rgb(0 0 0 / 10%);
  position: relative;
}
.arr-right {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-left: auto;
}
.arr-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.xplore-link {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  cursor: pointer;
}
.gate-xplore-wrap,
.gate-xplore-sponsor {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.gate-xplore-sponsor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 0 10px;

  /* background-color: rgba(56, 58, 207, 0.5); */
  background-color: #fff;
}

.gate-xplore-wrap .photo-box,
.gate-xplore-sponsor .photo-box {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gate-xplore-wrap .photo-box.circle-container,
.gate-xplore-sponsor .photo-box.circle-container {
  overflow: visible;
}
.gradient-rotate {
  width: 100%;
  height: 100%;
  background: linear-gradient(240deg, #383acf, #9c2fad, #cf4973, #f57d2d);
  -webkit-animation: rotateGradient 3s cubic-bezier(0.77, 0.03, 0.32, 0.97)
    infinite;
  -moz-animation: rotateGradient 3s cubic-bezier(0.77, 0.03, 0.32, 0.97)
    infinite;
  animation: rotateGradient 2.8s cubic-bezier(0.77, 0.03, 0.32, 0.97) infinite;
  flex: none;
}
.gate-xplore-wrap .photo-box .imgbox,
.gate-xplore-sponsor .photo-box .imgbox {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border-radius: 50%;
  display: flex;
}
.gate-xplore-wrap .photo-box .imgbox img,
.gate-xplore-sponsor .photo-box .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
}

.gate-xplore-wrap .photo-box svg,
.gate-xplore-sponsor .photo-box svg {
  fill: none;
  stroke: #8a3ab9;
  stroke-linecap: round;
  stroke-width: 4;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  animation: stroke-draw 6s ease-out infinite alternate;
  overflow: visible !important;
  width: 70px;
  height: 70px;
  max-width: 100%;
}
.gate-xplore-sponsor .photo-box svg circle {
  width: 70px;
  height: 70px;
  max-width: 100%;
}

@keyframes stroke-draw {
  from {
    stroke: #8a3ab9;
    stroke-dasharray: 1;
  }
  to {
    stroke: #cd486b;
    transform: rotate(180deg);
    stroke-dasharray: 8;
  }
}

.gate-xplore-wrap .desc,
.gate-xplore-sponsor .desc {
  text-align: left;
  padding: 0 0 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gate-xplore-wrap .desc small,
.gate-xplore-sponsor .desc small {
  color: #f00;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.99px;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.gate-xplore-wrap .desc .title,
.gate-xplore-sponsor .desc .title {
  line-height: 17px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  font-family: "Roboto", sans-serif;
}
@-webkit-keyframes rotateGradient {
  0% {
    background-position: 0% 50%;
    transform: rotate(0deg);
  }
  50% {
    background-position: 100% 50%;
    transform: rotate(180deg);
  }
  100% {
    background-position: 0% 50%;
    transform: rotate(360deg);
  }
}
@-moz-keyframes rotateGradient {
  0% {
    background-position: 0% 50%;
    transform: rotate(0deg);
  }
  50% {
    background-position: 100% 50%;
    transform: rotate(180deg);
  }
  100% {
    background-position: 0% 50%;
    transform: rotate(360deg);
  }
}
@keyframes rotateGradient {
  0% {
    background-position: 0% 50%;
    transform: rotate(0deg);
  }
  50% {
    background-position: 100% 50%;
    transform: rotate(180deg);
  }
  100% {
    background-position: 0% 50%;
    transform: rotate(360deg);
  }
}
/* dark mode */
body.theme-dark .gate-xplore {
  background: #262626;
  border: 1px solid rgba(0, 0, 0, 0);
}
body.theme-dark .gate-xplore .slider-wrap .gate-xplore-wrap .desc,
body.theme-dark .gate-xplore .slider-wrap .gate-xplore-sponsor .desc {
  color: #fff;
}
body.theme-dark .gate-xplore .arr-right {
  background: #f3f3f3;
}
@media (min-width: 350px) {
  .gate-xplore {
    padding: 0 15px;
  }

  .gate-xplore-sponsor {
    padding: 0 15px;
  }
  .gate-xplore-wrap .photo-box,
  .gate-xplore-sponsor .photo-box {
    width: 70px;
    height: 70px;
  }
  .gate-xplore-wrap .photo-box .imgbox,
  .gate-xplore-sponsor .photo-box .imgbox {
    width: 64px;
    height: 64px;
  }
}
@media (min-width: 360px) {
  .gate-xplore-wrap .desc,
  .gate-xplore-sponsor .desc {
    padding: 0 10px;
  }
  .arr-right {
    width: 35px;
    height: 35px;
  }
}
