.token_contents {
  width: 100%;
  display: flex;
  gap: 20px;
}
iframe {
  width: 60%;
  aspect-ratio: 1/1;
}
.token_data_wrap {
  width: 40%;
  display: flex;
  align-items: center;
}
.token_data {
  width: 100%;
  max-width: 400px;
}
.token_data ul {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 10px;
  background-color: #111;
  border-radius: 16px;
  padding: 20px;
}

.token_data ul li {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.token_data ul li span {
  font-size: 24px;
  padding-left: 20px;
  position: relative;
}
.token_info {
  background-color: #111;
  border-radius: 16px;
  padding: 20px;
}
.token_info li span:first-of-type {
  position: relative;
  padding-left: 20px;
  width: 190px;
}
.token_data ul li span:first-child:after,
.token_info li span:first-child:after {
  width: 10px;
  height: 10px;
  content: "";
  background-color: red;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  border-radius: 50%;
}

.token_data ul li:first-child span:first-child:after,
.token_info li:first-child span:after {
  background-color: #3b82f6;
}
.token_data ul li:nth-child(2) span:first-child:after,
.token_info li:nth-child(2) span:after {
  background-color: #f43f5e;
}
.token_data ul li:nth-child(3) span:first-child:after,
.token_info li:nth-child(3) span:after {
  background-color: #f97316;
}
.token_data ul li:nth-child(4) span:first-child:after,
.token_info li:nth-child(4) span:after {
  background-color: #22c55e;
}
.token_data ul li:nth-child(5) span:first-child:after,
.token_info li:nth-child(5) span:after {
  background-color: #eab308;
}
.token_data ul li:nth-child(6) span:first-child:after,
.token_info li:nth-child(6) span:after {
  background-color: #06b6d4;
}
.token_data ul li:nth-child(7) span:first-child:after,
.token_info li:nth-child(7) span:after {
  background-color: #d946ef;
}
.token_data ul li:nth-child(8) span:first-child:after,
.token_info li:nth-child(8) span:after {
  background-color: #8b5cf6;
}
.token_data ul li:nth-child(9) span:first-child:after,
.token_info li:nth-child(9) span:after {
  background-color: #84cc16;
}
.team_img {
  width: 220px;
}
.team_img ~ .text-box {
  flex: 1;
}
.partner_list .img-area img:nth-child(2) {
  width: 100%;
  max-width: 150px;
}
.team_lists .single-box {
  align-items: flex-start;
}
.team_lists .text-box {
  height: 100%;
}
@media all and (max-width: 768px) {
  .token_contents {
    flex-direction: column;
  }
  .token_info {
    margin-top: 20px;
  }
  .token_info ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  iframe {
    width: 100%;
  }
  .token_data_wrap {
    width: 100%;
    display: flex;
    align-items: center;
  }
  .token_data {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .token_data ul {
    gap: 20px;
  }
  .partner_list {
    width: 50%;
    aspect-ratio: 1/1;
  }
  .partner_list .img-area {
    width: 70%;
    margin: 0 auto;
  }
}
@media all and (max-width: 480px) {
  .team_img {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .team_img img {
    width: 100% !important;
  }
  .team .text-box {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .partner_list {
    width: calc(50% - 5px);
    aspect-ratio: 1/1;
  }
  .team_list_wrap {
    gap: 10px;
    padding: 0 10px;
  }

  .partner_list {
    padding: 0;
  }
  .partner_list .single-box {
    margin-bottom: 0;
  }
}
