* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --primary-bg-color: #050c1f;
  --secondary-bg-color: rgba(161, 150, 115, 0.15);
  --primary-font-color: #ffffff;
  --secondary-font-color: #efcb58;
  --primary-font-family: "Bebas Neue", cursive;
  --secondary-font-family: "Montserrat", sans-serif;
}

body {
  overflow: hidden;
}

html {
  overflow-x: hidden;
  background: var(--primary-bg-color);
}

section {
  width: 100%;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.primary {
  display: flex;
  justify-content: space-between;
}
/* header */
header {
  width: 100%;
  height: 200px;
  background-color: var(--primary-bg-color);
  display: flex;
  flex-direction: column;
  position: relative;
}

header .blend-box {
  position: absolute;
  width: 80%;
  height: 100%;
  background-image: url(./assets/ellipse/ellipse.png);
  filter: blur(200px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  top: -30%;
}

.header-items {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 1;
  padding: 0 7rem;
}

.logo {
  margin-right: auto;
}

.navbar > ul {
  width: 840px;
  display: flex;
  font-family: var(--primary-font-family);
  justify-content: space-between;
}

.navbar ul li,
.sidebar ul li {
  list-style: none;
}

.roller {
  height: 2rem;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.roller > a {
  position: relative;
  top: 0;
  transition: all 0.7s ease;
}

.roller > a:hover {
  top: -1.8rem;
}

.rolled-txt {
  color: var(--primary-font-color);
}

.navbar ul li a,
.sidebar ul li a {
  text-decoration: none;
  color: #909092;
  font-size: 1.375rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.header-btn {
  height: 60px;
  display: flex;
  align-items: center;
  margin-left: 60px;
  gap: 0.938rem;
}

.btn {
  height: 55px;
  width: 149px;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1px;
  cursor: pointer;
  clip-path: polygon(
    10% 0,
    90% 1%,
    100% 20%,
    100% 80%,
    90% 100%,
    10% 100%,
    0 80%,
    0 20%
  );
}
.btn > .inner-span {
  position: relative;
  height: 100%;
  width: 100%;
  background-color: var(--primary-bg-color);
  color: var(--primary-font-color);
  text-transform: uppercase;
  font-family: var(--primary-font-family);
  font-size: 1.5rem;
  display: grid;
  place-items: center;
  clip-path: polygon(
    10% 0,
    90% 1%,
    100% 20%,
    100% 80%,
    90% 100%,
    10% 100%,
    0 80%,
    0 20%
  );
  transition: transform 2s ease;
}

.inner-span > img {
  height: 100%;
  width: 100%;
  scale: 1.1;
  transition: transform 0.4s linear;
  scale: 2.9;
}

.inner-span > span {
  position: absolute;
  color: #ffffff;
}

.btn img:hover {
  transform: rotate(-180deg);
}

.discord-btn > .inner-span {
  position: relative;
}

.discord-btn .hover-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s linear;
}

.discord-btn .btn-img:hover + .hover-img {
  /* opacity: 1; */
  display: block;
  rotate: -180deg;
}

.menu-icon,
.close-icon {
  font-size: 3rem;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
}

.menu-icon:hover,
.close-icon:hover {
  scale: 1.1;
}

.close-icon {
  position: absolute;
  right: 2rem;
  top: 2rem;
}

.menu-icon,
.close-icon {
  display: none;
  z-index: 9;
}

.sidebar {
  position: absolute;
  width: 200px;
  top: 0;
  right: 0;
  display: flex;
  height: 38rem;
  font-family: var(--primary-font-family);
  background-color: var(--primary-bg-color);
  display: none;
  justify-content: center;
  transition: all 1s ease;
  z-index: 2;
}

.sidebar > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.sidebar > ul {
  position: absolute;
  text-align: center;
  margin-top: 6rem;
}

.sidebar ul li {
  margin-bottom: 0.5rem;
}

.header-bottom {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 auto;
  bottom: 0;
}

.header-bottom > .heading {
	display: block;
	font-family: var(--primary-font-family);
	min-width: fit-content;
	color: #bbbcbd;
	font-size: 2.875rem;
	letter-spacing: 2px;
	white-space: nowrap;
}

.header-bottom > .heading > span {
  color: #b09849;
}

.header-bottom > img {
  width: 300px;
  height: 27px;
}

/* Header for Medium devices */

@media screen and (max-width: 1024px) {
  .header-items {
    padding: 0;
    justify-content: space-between;
  }

  .navbar {
    display: none;
  }

  .header-items > .header-btn {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  .header-bottom > img {
    height: 25px;
    width: 200px;
  }
}

/* Header for Small devices */

@media screen and (max-width: 600px) {
  .header-items > .header-btn {
    display: none;
  }

  .header-bottom > img {
    height: 25px;
    width: 20%;
  }

  .header-bottom {
    justify-content: center;
  }

  .header-bottom > img {
    display: none;
  }

  .heading {
    font-size: 1.5rem;
  }
}

/* The Teams */
.team-menu {
  display: none;
  justify-content: center;
  position: absolute;
  height: 15095px;
  top: 0;
  background-color: var(--primary-bg-color);
  z-index: 10;
}

.team-menu .ellipse-bg {
  position: absolute;
  width: 104.32vw;
  height: 2042px;
  background: rgba(239, 203, 88, 0.13);
  filter: blur(150px);
  border-radius: 50%;
  z-index: 1;
}

.team-menu .main {
  color: var(--primary-font-color);
  text-transform: uppercase;
  width: 100%;
  margin: 0 7.815vw;
  margin-top: 3rem;
}

.team-menu .menu-head {
  width: 100%;
  font-size: clamp(3rem, 4.166vw, 80px);
  font-family: var(--primary-font-family);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.team-menu .menu-head > span {
  margin: auto;
}

.team-menu .menu-head > .close-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 37px;
  width: 37px;
  cursor: pointer;
}

.team-menu .close-btn > img:last-child {
  height: auto;
  width: 50%;
}

.team-menu .close-btn > img:first-child {
  position: absolute;
  width: 100%;
}

.team-menu .menu-head > span > span {
  color: var(--secondary-font-color);
}

.team-menu .team {
  display: flex;
  font-family: var(--primary-font-family);
  font-size: clamp(1.6rem, 2.08vw, 42px);
  justify-content: space-between;
  margin: 2rem 0;
}

.team-menu .team > a {
  cursor: pointer;
  text-decoration: none;
  display: block;
  z-index: 11;
}

.team-menu .menu > .team > a span {
  letter-spacing: 3px;
  white-space: nowrap;
}

.team-menu .team > a > div {
  color: var(--primary-font-color);
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 3rem);
}

.team-menu .team > a img {
  height: auto;
  width: 35%;
}

.team-menu .team > img {
  height: auto;
  width: 3.5%;
}

.team-menu .menu > img {
  height: auto;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .team-menu .team > img {
    width: 5%;
  }

  .team-menu .team > div img {
    width: 30%;
  }
}

@media screen and (max-width: 600px) {
  .team-menu .team > img {
    width: 10%;
  }

  .team-menu .close-btn > img:last-child {
    width: 40%;
  }

  .team-menu .close-btn > img:first-child {
    width: 80%;
  }
}

/* World Map */

.world-container {
  position: relative;
  width: 100%;
  max-height: 1064px;
  z-index: 1;
  overflow: hidden;
}

.blend-div {
  position: absolute;
  height: 40px;
  width: 100%;
  background: #0c1120;
  top: -1%;
  z-index: 8;
  filter: blur(10px);
}

.blend-div-2 {
  position: absolute;
  height: clamp(10px, 2.604vw, 50px);
  width: 100%;
  background: var(--primary-bg-color);
  z-index: 8;
  filter: blur(15px);
  rotate: 180deg;
}
.world-map {
  background-color: rgba(5, 12, 31, 0.4);
  z-index: 0;
}

.world-banner {
  position: relative;
  width: 100%;
  mix-blend-mode: multiply;
}

.teams {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.teams > div {
  position: absolute;
  width: 100%;
}

.teams > div > img {
    display: block;
    width: 9%;
    animation: icon-grow 6s infinite;
    cursor: pointer;
    position: relative;
    z-index: 2;
    cursor: pointer;
    object-fit: cover;
    border-radius: 80%;
    bottom: auto;
}

.teams > div > img.paused {
  animation-play-state: paused;
}

.teams .team-card {
    position: relative;
    top: 20%;
    left: 10%;
    z-index: 3;
    display: none;
    align-items: center;
    justify-content: center;
    width: fit-content;
    width: 100%;
    height: 100%;
    cursor: pointer;
    bottom: 0%;
}

.teams .team-card.show {
  display: flex;
}

.teams .team-card > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 18%;
  height: auto;
  backdrop-filter: blur(155px);
}

.teams .team-card > .card-info {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0.937vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 16.1%;
  height: 86%;
}

.teams .card-info > div:nth-child(1) {
  display: flex;
  align-items: center;
  gap: 0.416vw;
}

.teams .card-info > div:nth-child(1) > img {
  height: auto;
  width: 18%;
}

.teams .card-info > div:nth-child(1) > span {
  font-size: clamp(4px, 1.145vw, 22px);
  font-family: var(--primary-font-family);
  color: var(--primary-font-color);
}

.teams .team-card > .card-info > div:first-child > span > span {
  color: var(--secondary-font-color);
}

.teams .team-card > .card-info > span {
  color: var(--primary-font-color);
  font-family: var(--secondary-font-family);
  font-size: clamp(3px, 0.781vw, 15px);
}

.teams .team-card > .card-info > div:nth-child(3) {
  display: flex;
  justify-content: space-between;
}

.teams .team-card > .card-info > div:nth-child(3) > a {
  text-decoration: none;
  cursor: pointer;
}

.teams .team-card > .card-info > div:nth-child(3) span {
  font-size: clamp(4px, 0.885vw, 17px);
  font-family: var(--primary-font-family);
  color: var(--primary-font-color);
}

.teams #team1 {
  left: 45%;
  top: 48%;
}

#team2 {
  left: 64%;
  top: 50%;
}

#team3 {
  left: 24%;
  top: 36%;
}

#team4 {
  left: 20%;
  top: 50%;
}

#team5 {
  left: 26%;
  top: 62%;
}

#team6 {
  left: 40%;
  top: 40%;
}

#team7 {
  left: 12%;
  top: 30%;
}

#team8 {
  left: 16.5%;
  top: 40%;
}

#team3,
#team6,
#team8,
#team7 {
  animation-delay: 0.5s;
}

@keyframes icon-grow {
  0% {
    scale: 0.9;
  }
  50% {
    transform: scale(1.2);
    translate: 15px;
  }
  100% {
    scale: 0.9;
    translate: 0;
  }
}

.map-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
}

.map-overlay > img:nth-child(1),
.map-overlay > img:nth-child(3) {
  height: auto;
  width: 8.5%;
}

.map-overlay > img:nth-child(2) {
  height: auto;
  width: 18%;
  align-self: flex-end;
}

/* New Era */

.container {
  width: 100%;
  height: auto;
  background-color: var(--primary-bg-color);
  position: relative;
  overflow: hidden;
  padding-top: 1re2rem;
}

.container > .primary-box {
  max-height: 352px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.container > .primary-box > div {
  display: flex;
  flex-direction: column;
}

.ne-design > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.ne-design > img:last-child {
  transform: scaleY(-1);
}

.primary-box > .heading {
  height: auto;
  min-width: fit-content;
  font-size: 4.5rem;
  font-family: var(--primary-font-family);
  color: var(--primary-font-color);
}

.primary-box > .heading > span > span {
  color: var(--secondary-font-color);
}

.primary-box > .heading > img {
  width: 312px;
  height: 32px;
}

.new-era .blend-box {
  position: absolute;
  width: 85%;
  height: 10rem;
  background: rgba(239, 203, 88, 0.15);
  filter: blur(150px);
}

.new-era .btn {
  height: 55px;
  width: 242px;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1px;
  clip-path: polygon(
    10% 0,
    90% 1%,
    100% 20%,
    100% 80%,
    90% 100%,
    10% 100%,
    0 80%,
    0 20%
  );
}

.inner-span {
  display: block;
  height: 100%;
  width: 100%;
  background-color: #050c1f;
  clip-path: polygon(
    10% 0,
    90% 1%,
    100% 20%,
    100% 80%,
    90% 100%,
    10% 100%,
    0 80%,
    0 20%
  );
}

.btn-txt {
  height: 100%;
  width: 100%;
  display: block;
  text-transform: uppercase;
  font-family: var(--primary-font-family);
  font-size: 1.5rem;
  color: white;
  background-color: transparent;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}

.btn-txt::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, #ffd057 0%, rgba(255, 208, 87, 0.1) 100%);
  z-index: 0;
  transition: all 1s ease;
  z-index: -1;
}

.new-era .secondary-box > .ne-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.new-era .ne-btn > img {
  position: absolute;
  width: 13%;
  height: auto;
}

.new-era .ne-btn > div {
  position: relative;
  font-family: var(--primary-font-family);
  font-size: clamp(0.3rem, 1.25vw, 1.5rem);
  color: var(--primary-font-color);
  display: flex;
  align-items: center;
  gap: 4px;
}

.video-slider {
  margin-top: 10rem;
  margin-bottom: 13rem;
  position: relative;
}

.video-slider > .slider-ellipse-bg {
  width: 1300px;
  height: 36.97vw;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(239, 203, 88, 0.15);
  filter: blur(150px);
  animation: bash-ellipse-bg-glow 6s infinite;
}

.swiper-wrapper {
  width: 574px;
}

.swiper-slide {
  position: relative;
  background-size: cover;
  transition: all 0.5s linear;
}

.swiper-slide > img {
  position: absolute;
  width: 100%;
  height: auto;
  scale: 1.08;
  top: -2%;
  animation: slide-bg 6s infinite;
}

@keyframes slide-bg {
  50% {
    scale: 1.13;
  }
}

.swiper-slide > .video-border {
  position: relative;
  height: 510px;
  overflow: hidden;
  background: var(--secondary-font-color);
  clip-path: polygon(
    7% 0,
    93% 0,
    100% 9%,
    100% 91%,
    93% 100%,
    7% 100%,
    0 91%,
    0 9%
  );
  padding: 3px;
}

.swiper-slide > .video-border > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(
    7% 0,
    93% 0,
    100% 9%,
    100% 91%,
    93% 100%,
    7% 100%,
    0 91%,
    0 9%
  );
}

.swiper-slide-active {
  scale: 1.2;
  z-index: 2;
}

.new-era .sm-btn-border {
  height: 3.1rem;
  width: 3.1rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  background-color: rgba(255, 255, 255, 0.8);
  clip-path: polygon(
    18% 0,
    82% 0,
    100% 18%,
    100% 82%,
    82% 100%,
    18% 100%,
    0 82%,
    0 18%
  );
  padding: 1px;
  cursor: pointer;
}

.sm-btn {
  background-color: var(--primary-bg-color);
  height: 100%;
  width: 100%;
  clip-path: polygon(
    23% 0,
    82% 0,
    100% 18%,
    100% 82%,
    82% 100%,
    18% 100%,
    0 82%,
    0 18%
  );
  display: flex;
  justify-content: center;
  align-items: center;
}

.sm-btn > img {
  position: absolute;
  height: 110%;
  width: 110%;
  object-fit: cover;
  transition: all 0.3s linear;
}

.new-era .sm-btn:hover > img {
  scale: 1.5;
  rotate: 180deg;
}

.sm-btn > i {
  font-size: clamp(1.5rem, 1.666vw, 2rem);
  color: white;
  z-index: 1;
}

.video-title {
  position: absolute;
  color: var(--primary-font-color);
  font-family: var(--secondary-font-family);
  font-weight: 600;
  font-size: clamp(0.8rem, 1.666vw, 2rem);
  left: 1.5rem;
  bottom: 2.5rem;
}

@keyframes glow {
  0% {
    filter: drop-shadow(6px 0px 52px 0px #efcb58, -9px -8px 15px -3px #efcb58);
  }
  50% {
    filter: drop-shadow(
      6px 0px 100px 24px #efcb58,
      -9px -8px 15px -3px #efcb58
    );
  }
  100% {
    filter: drop-shadow(6px 0px 52px 0px #efcb58, -9px -8px 15px -3px #efcb58);
  }
}

/* Medium Devices */
@media screen and (max-width: 1024px) {
  .primary-box > .heading {
    font-size: 3rem;
  }

  .primary-box > .heading > img {
    height: 2rem;
    max-width: 15rem;
  }

  .swiper-slide > .video-border {
    height: 250px;
  }

  .video-title {
    bottom: 2rem;
  }
}

/* Small Devices */
@media screen and (max-width: 600px) {
  .ne-design > img {
    max-height: 50px;
  }

  .primary-box > .heading {
    font-size: 1.5rem;
  }

  .primary-box > .heading > img {
    height: 0.8rem;
    width: 6rem;
  }

  .secondary-box {
    margin-top: 1rem;
  }

  .swiper-slide > .video-border {
    height: 200px;
  }

  .sm-btn-border {
    height: 2rem;
    width: 2rem;
  }

  .video-title {
    bottom: 1.5rem;
    left: 1rem;
  }
}

@media screen and (max-width: 400px) {
  .ne-design {
    height: 30px;
    width: 40px;
  }
}

/* Gitbook Container */
.gitbook > .container {
  position: relative;
  background: var(--primary-bg-color);
  margin-bottom: 2rem;
}

.gitbook-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.gitbook-header > img {
  max-height: 293px;
  max-width: 542px;
}

.gitbook .heading {
  color: var(--primary-font-color);
  font-family: var(--primary-font-family);
  font-size: 3.75vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: fit-content;
}

.heading > span > span {
  color: var(--secondary-font-color);
}

.heading > img {
  max-height: 2rem;
  max-width: 19.5rem;
}
.ellipse-container {
  position: absolute;
  width: 100%;
  filter: blur(30px);
  top: 0;
}

.gitbook .ellipse-container > img {
  height: auto;
  width: 100%;
  object-fit: contain;
  object-position: center;
}

.gitbook-items {
  position: relative;
  width: 100%;
  /* max-height: 800px; */
  color: var(--primary-font-color);
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  font-family: var(--secondary-font-family);
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.sub-container-2 {
  color: var(--primary-font-color);
  font-size: 1.146vw;
  line-height: clamp(16px, 2.13vw, 41px);
  max-width: 814px;
  overflow: hidden;
  justify-self: center;
}

.sub-container-1 > div,
.sub-container-3 > div {
  position: relative;
}

.sub-container-1 > div > img,
.sub-container-3 > div > img {
  height: auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.sub-container-1 > div {
  animation: sub-container-1 8s infinite;
  position: relative;
}

.sub-container-3 > div {
  animation: sub-container-3 8s infinite;
  position: relative;
}

.sub-container-1 > div > img:not(:first-child),
.sub-container-3 > div > img:not(:first-child) {
  z-index: 0;
  height: auto;
  width: 16%;
  position: absolute;
  animation: svg-design-inout 8s infinite;
}

.left-design {
  left: 17%;
  top: 33%;
}

.top-design {
  rotate: 90deg;
  left: 42%;
  top: 16%;
}

.right-design {
  rotate: 180deg;
  right: 17%;
  top: 33%;
}

.bottom-design {
  rotate: 270deg;
  left: 42%;
  bottom: 16%;
}

.gitbook .btn {
  margin: 0 auto;
  margin-bottom: 4rem;
}

@keyframes svg-design-inout {
  50% {
    transform: translateX(-85%);
  }
}

@keyframes sub-container-1 {
  50% {
    transform: translateY(20px);
  }
}

@keyframes sub-container-3 {
  50% {
    transform: translate(40px, -40px);
  }
}

/* Medium Devices */
@media screen and (max-width: 1024px) {
  .heading {
    font-size: 2.4rem;
  }
  .gitbook-header > img {
    height: 11rem;
    width: 17rem;
  }
}

.gitbook .btn,
.epoch-bash .btn {
  height: auto;
  width: 9%;
  font-size: clamp(0.3rem, 1.25vw, 1.5rem);
  padding: clamp(0.45px, 0.052vw, 1px);
}

.gitbook .btn > .inner-span,
.epoch-bash .btn > .inner-span {
  font-size: clamp(0.3rem, 1.25vw, 1.5rem);
}

/* Small Devices */
@media screen and (max-width: 600px) {
  .gitbook .ellipse-container > img {
    height: 1100px;
    width: 100%;
  }

  .gitbook-items {
    grid-template-columns: auto;
    grid-template-rows: 1fr 1.5fr 1fr;
    place-items: center;
  }

  .gitbook .sub-container-2 {
    margin: 0 2rem;
  }

  .sub-container-1 > div,
  .sub-container-3 > div {
    display: flex;
    justify-content: center;
  }

  .sub-container-1 > div > img,
  .sub-container-3 > div > img {
    width: 40%;
  }

  .sub-container-1 > div > img:not(:first-child),
  .sub-container-3 > div > img:not(:first-child) {
    width: 7%;
  }

  .left-design {
    left: 37%;
    top: 33%;
  }

  .top-design {
    rotate: 90deg;
    left: 46.5%;
    top: 13%;
  }

  .right-design {
    rotate: 180deg;
    right: 37%;
    top: 33%;
  }

  .bottom-design {
    rotate: 270deg;
    left: 46.5%;
    bottom: 13%;
  }

  .gitbook .sub-container-2 {
    line-height: 20px;
  }
}

/* the commissioner */

.primary-box {
  display: flex;
  justify-content: space-between;
}

.heading {
  min-width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: center;
  color: var(--primary-font-color);
  font-family: var(--primary-font-family);
  font-size: 4.5rem;
}

.heading > span > span {
  color: var(--secondary-font-color);
}

.heading > img {
  height: 32px;
  width: 312px;
}

.primary-box > img {
  height: 248px;
}

.primary-box > img:last-child {
  rotate: 180deg;
}

.commissioner .secondary-box {
  width: 100%;
  position: relative;
  color: var(--primary-font-color);
  font-family: var(--secondary-font-family);
  margin: 0 auto;
}

.commissioner .secondary-box > .main {
  max-width: 1310px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 2fr;
  place-items: center;
  gap: 2rem;
  margin: 0 auto;
}

.commissioner .secondary-box > .main > p {
  text-align: center;
  line-height: 41px;
  letter-spacing: 1px;
  font-size: 1.145vw;
}

.commissioner .banner {
  position: relative;
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.commissioner .main .banner > img {
  height: auto;
  width: 100%;
  animation: banner-grow 12s infinite;
}

@keyframes banner-grow {
  0% {
    scale: 1;
  }
  50% {
    scale: 1.08;
  }
  100% {
    scale: 1;
  }
}

.secondary-box > .overlay {
  height: 100%;
  width: 100%;
  position: absolute;
}

.secondary-box .overlay > img {
  width: 100%;
  height: 1320px;
  filter: blur(150px);
}

.secondary-box .overlay > img:last-child {
  width: 100%;
  height: 461px;
  position: relative;
  top: -19rem;
  filter: blur(25px);
}

.banner-teams {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}

.banner-teams > img {
  position: absolute;
  width: 20%;
}

.banner-teams > #team1 {
  left: 82%;
  top: 4%;
  animation: team1-translate 12s infinite;
}

@keyframes team1-translate {
  50% {
    transform: translateX(15.1vw);
  }
}

.banner-teams > #team2 {
  left: 2%;
  top: 68%;
  animation: team2-translate 12s infinite;
}

@keyframes team2-translate {
  50% {
    transform: translateX(-80%);
  }
}

.banner-teams > #team3 {
  left: 84%;
  top: 26%;
  animation: team3-translate 12s infinite;
}

@keyframes team3-translate {
  50% {
    transform: translateX(11.9vw);
  }
}

.banner-teams > #team4 {
  left: 84%;
  top: 68%;
  animation: team4-translate 12s infinite;
}

@keyframes team4-translate {
  50% {
    transform: translateX(80%);
  }
}

.banner-teams > #team5 {
  left: 84%;
  top: 47%;
  animation: team5-translate 12s infinite;
}

@keyframes team5-translate {
  50% {
    transform: translateX(120%);
  }
}

.banner-teams > #team6 {
  left: 2%;
  top: 2%;
  animation: team6-translate 12s infinite;
}

@keyframes team6-translate {
  50% {
    transform: translateX(-15.014vw);
  }
}

.banner-teams > #team7 {
  left: 2%;
  top: 26%;
  animation: team7-translate 12s infinite;
}

@keyframes team7-translate {
  50% {
    transform: translateX(-11.9vw);
  }
}

.banner-teams > #team8 {
  left: 2%;
  top: 47%;
  animation: team8-translate 12s infinite;
}

@keyframes team8-translate {
  50% {
    transform: translateX(-120%);
  }
}

.tertiary-box {
  position: relative;
  height: 400px;
  margin-top: 8rem;
}

.tertiary-box > .overlay > img {
  height: 100%;
}

.tape {
  position: absolute;
  top: 0;
}

.tape > img {
  width: 135%;
  height: auto;

  object-fit: cover;
}

.tape > img:nth-child(2) {
  /* height: auto;
    width: 101%; */
  position: absolute;
  top: 10px;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .heading {
    font-size: 2.5rem;
  }

  .heading > img {
    height: 20%;
    width: 55%;
  }

  .commissioner .secondary-box .banner {
    width: 70%;
  }

  .commissioner .secondary-box > .main > p {
    line-height: 32px;
  }
}

@media screen and (max-width: 600px) {
  .heading {
    font-size: 1.2rem;
  }

  .heading > img {
    height: 20%;
  }

  .commissioner .secondary-box > .main > p {
    line-height: 20px;
  }
}

/* Epoch Bash */

.epoch-bash > .secondary-box > p {
  font-family: var(--secondary-font-family);
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 41px;
  letter-spacing: 1px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  color: var(--primary-font-color);
  max-width: 1340px;
}

.epoch-bash .tertiary-box {
  height: 721px;
  width: 100%;
  display: grid;
  place-items: center;
}

.epoch-bash .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  position: relative;
  max-width: 1607px;
  gap: 1rem;
}

.epoch-bash .bash-ellipse-bg {
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: rgba(239, 203, 88, 0.15);
  border-radius: 50%;
  filter: blur(150px);
  animation: bash-ellipse-bg-glow 5s infinite;
}

@keyframes bash-ellipse-bg-glow {
  50% {
    background-color: rgba(239, 203, 88, 0.35);
  }
}

.epoch-bash .sub-grid {
  position: relative;
}

.epoch-bash .sub-grid {
  display: grid;
  place-items: center;
}

.epoch-bash .sub-grid > img:first-child {
  position: absolute;
  height: auto;
  width: 83%;
  z-index: 1;
  animation: bash-bg-glow 5s infinite;
}

@keyframes bash-bg-glow {
  50% {
    scale: 1.02;
  }
}

.epoch-bash .sub-grid > img:nth-child(2) {
  position: relative;
  width: 80%;
  height: auto;
  z-index: 1;
}

.epoch-bash .sub-grid-designs {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
}

.epoch-bash .sub-grid-designs > img {
  position: absolute;
}

.epoch-bash .sub-grid-designs > img:nth-child(1),
.epoch-bash .sub-grid-designs > img:nth-child(3) {
  height: auto;
  width: 16%;
  animation: bash-design-inout-left-right 5s infinite;
}

.epoch-bash .sub-grid-designs > img:nth-child(2),
.epoch-bash .sub-grid-designs > img:nth-child(4) {
  height: auto;
  width: 50%;
  animation: bash-design-inout-top-bottom 5s infinite;
}

.epoch-bash .sub-grid-designs > img:nth-child(1) {
  top: 0%;
  left: 2%;
}

.epoch-bash .sub-grid-designs > img:nth-child(2) {
  top: -19%;
  right: 25%;
}

.epoch-bash .sub-grid-designs > img:nth-child(3) {
  rotate: 180deg;
  top: 0%;
  right: 2%;
}

.epoch-bash .sub-grid-designs > img:nth-child(4) {
  bottom: -19%;
  right: 25%;
  rotate: 180deg;
}

@keyframes bash-design-inout-left-right {
  50% {
    transform: translateX(-5%);
  }
}

@keyframes bash-design-inout-top-bottom {
  50% {
    transform: translateY(-5%);
  }
}

.epoch-bash .btn {
  margin: 0 auto;
}

.epoch-bash .line {
  margin: clamp(1.5rem, 2.5vw, 3rem) 0;
}

@media screen and (max-width: 1024px) {
  .epoch-bash .tertiary-box,
  .epoch-bash .bash-ellipse-bg {
    height: 500px;
  }
}

@media screen and (max-width: 600px) {
  .epoch-bash .tertiary-box,
  .epoch-bash .bash-ellipse-bg {
    height: 850px;
    margin-bottom: 1rem;
  }

  .epoch-bash .grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8rem;
  }
}

@media screen and (max-width: 468px) {
  .epoch-bash .grid {
    gap: 5rem;
  }
}
/* The cards */

.primary-box {
  display: flex;
  justify-content: space-between;
}

.primary-box > img {
  width: 30%;
  height: auto;
}

.heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--primary-font-color);
  font-family: var(--primary-font-family);
  font-size: 3.75vw;
}

.heading > span > span {
  color: var(--secondary-font-color);
}

.heading > img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.cards .secondary-box {
  width: 100%;
  max-height: 812px;
  position: relative;
  display: flex;
  align-items: center;
}

.cards .ellipse-bg {
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 100%;
  height: 100%;
  background: rgba(239, 203, 88, 0.15);
  border-radius: 50%;
  scale: 1.1;
  filter: blur(150px);
  animation: bg-glow 9s infinite;
  z-index: 0;
}

@keyframes bg-glow {
  0% {
    background: rgba(239, 203, 88, 0.15);
    scale: 1.1;
  }
  50% {
    background: rgba(239, 203, 88, 0.35);
    scale: 1.2;
  }
  100% {
    background: rgba(239, 203, 88, 0.15);
    scale: 1.1;
  }
}

.cards .secondary-box > .card-details {
  position: relative;
  background-image: url(./assets/the-cards/card-variant9.svg);
  height: 710px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  animation: card 4s linear;
  z-index: 2;
  margin-top: 4rem;
}

@keyframes card {
  0% {
    background-image: url(./assets/the-cards/card-variant.svg);
  }
  11% {
    background-image: url(./assets/the-cards/card-variant2.svg);
  }
  22% {
    background-image: url(./assets/the-cards/card-variant3.svg);
  }
  33% {
    background-image: url(./assets/the-cards/card-variant3.svg);
  }
  44% {
    background-image: url(./assets/the-cards/card-variant4.svg);
  }
  55% {
    background-image: url(./assets/the-cards/card-variant5.svg);
  }
  66% {
    background-image: url(./assets/the-cards/card-variant6.svg);
  }
  77% {
    background-image: url(./assets/the-cards/card-variant7.svg);
  }
  88% {
    background-image: url(./assets/the-cards/card-variant8.svg);
  }
  100% {
    background-image: url(./assets/the-cards/card-variant9.svg);
  }
}

.cards > .line {
  margin: 4rem 0;
  display: grid;
  place-items: center;
  width: 100%;
}

.cards > .line > img {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .cards > .secondary-box {
    height: 600px;
  }

  .heading > img {
    width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .cards > .secondary-box {
    height: 350px;
  }
}

@media screen and (max-width: 400px) {
  .cards > .secondary-box {
    height: 250px;
  }
}

/* Card tab */
.cards-tab-container .primary-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cards-tab-container .primary-box > img {
  width: 10%;
  height: auto;
}

.cards-tab-container .primary-box > img:last-child {
  rotate: 180deg;
}

.cards-tab-container .tab-container {
  position: relative;
  width: 1391px;
  max-height: 670px;
  display: flex;
  align-items: center;
}

.cards-tab-container .bg-ellipse {
  position: absolute;
  height: 580px;
  width: 100%;
  background-color: rgba(239, 203, 88, 0.15);
  border-radius: 50%;
  filter: blur(150px);
  animation: bg-glow 6s infinite;
}

.cards-tab-container .tab-links {
  display: flex;
  flex-direction: column;
  font-size: 1.78vw;
  font-family: var(--primary-font-family);
  color: #a5a5a5;
  gap: clamp(0.8rem, 1.625vw, 1.825rem);
  letter-spacing: 3px;
  max-width: 320px;
  white-space: nowrap;
}

.tab-link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.tab-link > img {
  height: auto;
  width: 20%;

  visibility: hidden;
}

.tab-link.active > img {
  visibility: visible;
}

.cards-tab-container .tab-content {
  width: 100%;
  height: 655px;
  position: relative;
}

.cards-tab-container .tab-link {
  cursor: pointer;
}

.cards-tab-container .vertical-line {
  position: absolute;
  rotate: 90deg;
  height: 0.3%;
  width: 30%;
  left: 7%;
  top: 42%;
}

.cards-tab-container .tab-content > .tab-panel {
  color: var(--primary-font-color);
  font-family: var(--secondary-font-family);
  font-size: 1.25vw;
  line-height: clamp(20px, 2.13vw, 41px);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

/* Hide all tab panels by default */
.cards-tab-container .tab-content .tab-panel {
  display: none;
}

/* Show the active tab panel */
.cards-tab-container .tab-content .active {
  display: flex;
}

.tab-link.active {
  color: var(--primary-font-color);
  width: 100%;
}

.cards-tab-container .tab-panel > div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cards-tab-container .tab-panel > div > img {
  z-index: 1;
}

.cards-tab-container .tab-panel > div > div > img {
  z-index: 0;
}

.cards-tab-container .amateur-cards > img:nth-child(1) {
  position: relative;
  height: auto;
  width: 18%;
  /* max-width: 217.56px;
  max-height: 355.75px; */
  animation: amateur-card1 6s infinite;
}

@keyframes amateur-card1 {
  50% {
    transform: matrix(0.85, -0.53, 0, 1, 0, 0) scale(0.9) translate(28%, 35%);
  }
}

.cards-tab-container .amateur-cards > img:nth-child(2),
.cards-tab-container .amateur-cards > img:nth-child(3),
.cards-tab-container .athlete-cards > img {
  height: auto;
  width: 20%;
  /* max-width: 217.56px;
  max-height: 385.75px; */
}

.cards-tab-container .amateur-cards > img:nth-child(2),
.cards-tab-container .amateur-cards > img:nth-child(3) {
  animation: amateur-mid-cards 6s infinite;
}

@keyframes amateur-mid-cards {
  50% {
    transform: translateY(5%) scale(0.9);
  }
}

.cards-tab-container .amateur-cards > img:nth-child(4) {
  width: 20%;
  height: auto;
  animation: amateur-card4 6s infinite;
}

@keyframes amateur-card4 {
  50% {
    transform: matrix(0.85, 0.53, 0, 1, 0, 0) scale(0.9) translate(-28%, 35%);
  }
}

.cards-tab-container .athlete-cards > img:nth-child(1) {
  animation: athlete-card1 6s infinite;
}

@keyframes athlete-card1 {
  50% {
    transform: matrix(0.98, 0.18, 0, 1, 0, 0);
  }
}

.cards-tab-container .athlete-cards > img:nth-child(4) {
  animation: athlete-card4 6s infinite;
}

@keyframes athlete-card4 {
  50% {
    transform: matrix(0.98, -0.21, 0, 1, 0, 0);
  }
}

.cards-tab-container .team-cards > img:nth-child(1) {
  height: auto;
  width: 30%;
  position: relative;
  top: 25%;
  left: 2%;
  z-index: 1;
  animation: team-card1 6s infinite;
}

@keyframes team-card1 {
  50% {
    top: 0;
    transform: matrix(0.9, -0.43, 0, 1, 0, 0);
  }
}

.cards-tab-container .athlete-cards > img:nth-child(2),
.cards-tab-container .athlete-cards > img:nth-child(3) {
  transform: translateY(12%);
  animation: athlete-card-up 6s infinite;
}

@keyframes athlete-card-up {
  50% {
    transform: translateY(5%);
  }
}

.cards-tab-container .team-cards > img:nth-child(2) {
  height: auto;
  width: 30%;
  position: relative;
  z-index: 0;
  animation: team-card2 6s infinite;
}

@keyframes team-card2 {
  50% {
    top: 0;
    transform: matrix(0.9, 0.43, 0, 1, 0, 0);
  }
}

.cards-tab-container .team-cards > img:nth-child(3) {
  height: auto;
  width: 33%;
  position: relative;
  top: 25%;
  right: 3.5%;
  animation: team-card3 6s infinite;
}

@keyframes team-card3 {
  50% {
    top: 0;
    transform: matrix(0.91, -0.41, 0, 1, 0, 0);
  }
}

.cards-tab-container .team-cards {
  position: relative;
}

.cards-tab-container .team-cards .team-tab-decoration {
  position: absolute;
  height: 17vw;
  width: 100%;
}

.cards-tab-container .team-cards .team-tab-decoration > img {
  position: absolute;
  height: auto;
  width: 31%;
  z-index: 4;
  rotate: 180deg;
}

.cards-tab-container .team-cards .team-tab-decoration > img:nth-child(1) {
  bottom: -24%;
  left: 5.5%;
  animation: team-carddeco1 6s infinite;
}

@keyframes team-carddeco1 {
  50% {
    transform: rotate(-24.76deg) translateY(-12%);
  }
}

.cards-tab-container .team-cards .team-tab-decoration > img:nth-child(2) {
  bottom: 1.5%;
  left: 32.5%;
  animation: team-carddeco2 6s infinite;
}

@keyframes team-carddeco2 {
  50% {
    transform: rotate(24.76deg) translateY(-72%);
  }
}

.cards-tab-container .team-cards .team-tab-decoration > img:nth-child(3) {
  bottom: -24%;
  right: 7%;
  animation: team-carddeco3 6s infinite;
}

@keyframes team-carddeco3 {
  50% {
    transform: rotate(-24.76deg) translateY(-12%);
  }
}

.cards-tab-container .tab-description {
  text-align: center;
  max-width: 790px;
  margin-top: 6rem;
}

.cards-tab-container .tab-decoration {
  position: absolute;
  width: 100%;
  height: 22vw;
  z-index: 0;
}

.cards-tab-container .tab-decoration > img {
  position: absolute;
}

.cards-tab-container .tab-decoration > img:nth-child(1),
.cards-tab-container .tab-decoration > img:nth-child(3) {
  height: auto;
  width: 10%;
  /* max-width: 139.62px;
  max-height: 284.74px; */
}

.cards-tab-container .tab-decoration > img:nth-child(2),
.cards-tab-container .tab-decoration > img:nth-child(4) {
  height: auto;
  width: 33%;
  /* max-width: 385.65px;
  max-height: 139.66px; */
}

.cards-tab-container .tab-decoration > img:nth-child(1) {
  left: 12%;
  top: 22%;
}

.cards-tab-container .tab-decoration > img:nth-child(2) {
  left: 32%;
  top: -10%;
  rotate: 180deg;
  animation: fdgd 6s infinite;
}

.cards-tab-container .tab-decoration > img:nth-child(3) {
  right: 12%;
  top: 22%;
  rotate: 180deg;
}

.cards-tab-container .tab-decoration > img:nth-child(4) {
  left: 32%;
  bottom: -10%;
}

.cards-tab-container .athlete-cards > img:nth-child(1),
.cards-tab-container .athlete-cards > img:nth-child(4) {
  transform: translateY(-14%);
}

.cards-tab-container .lower-tabs {
  position: relative;
}

.cards-tab-container .lower-tabs > img:first-child {
  height: auto;
  width: 100%;
  /* max-height: 278.01px;
  max-width: 444.85px; */
  position: absolute;
  scale: 1.1;
}

.cards-tab-container .lower-tabs > img:nth-child(2) {
  width: 100%;
  height: auto;
  /* height: 261.03px;
  width: 433px; */
  position: relative;
}

.cards-tab-container .lower-tabs > .tab-decoration {
  height: 100%;
}

.cards-tab-container .lower-tabs > .tab-decoration > img {
  height: auto;
}

.cards-tab-container .lower-tabs > .tab-decoration > img:nth-child(1) {
  width: 21%;
  left: -10.2%;
  top: -2%;
  animation: tab-deco-inout1 6s infinite;
}

.cards-tab-container .lower-tabs > .tab-decoration > img:nth-child(2) {
  width: 100%;
  left: 1%;
  top: -24%;
  rotate: 0deg;
  animation: tab-deco-inout2 6s infinite;
}

.cards-tab-container .lower-tabs > .tab-decoration > img:nth-child(3) {
  width: 21%;
  right: -10.2%;
  top: -2%;
  animation: tab-deco-inout1 6s infinite;
}

.cards-tab-container .lower-tabs > .tab-decoration > img:nth-child(4) {
  width: 100%;
  left: 1%;
  bottom: -24%;
  rotate: 180deg;
  animation: tab-deco-inout2 6s infinite;
}

@keyframes tab-deco-inout1 {
  0% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(-16%);
  }
  100% {
    transform: translateX(0%);
  }
}

@keyframes tab-deco-inout2 {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(-11%);
  }
  100% {
    transform: translateY(0%);
  }
}

@media screen and (max-width: 1024px) {
  .cards-tab-container .vertical-line {
    left: 12%;
  }
}

@media screen and (max-width: 600px) {
  .cards-tab-container .vertical-line {
    left: 18%;
  }
}

@media screen and (max-width: 469px) {
  .cards-tab-container .vertical-line {
    left: 21%;
  }
}
/* Epoch Token */

.epoch-token > .primary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 7.2vw;
  margin: 8rem 0;
  height: 719px;
}

.epoch-token .grid-1 {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.epoch-token .heading {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.epoch-token .heading > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.epoch-token .heading > div > img {
  width: 100%;
  height: auto;
}

.epoch-token .content {
  max-width: 697px;
  font-family: var(--secondary-font-family);
  font-size: 1.145vw;
  color: var(--primary-font-color);
  line-height: 41px;
  text-align: left;
  position: relative;
}

.epoch-token .grid-1 .content > img {
  position: absolute;
  top: -100%;
  height: auto;
  width: 100%;
  filter: blur(50px);
}

.epoch-token .grid-2 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  z-index: 1;
}
.epoch-token .grid-2 > img {
  position: absolute;
}

.epoch-token .gr-polygon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.epoch-token .gr-polygon > img {
  object-fit: cover;
  object-position: center;
}

.epoch-token .gr-polygon > img:first-child {
  position: absolute;
  height: auto;
  width: 53%;
}

.epoch-token .gr-polygon > img:last-child {
  position: relative;
  height: auto;
  width: 50%;
}

.epoch-token .grid-2 .bg-ellipse {
  position: absolute;
  top: 0;
  height: auto;
  width: 100%;
  filter: blur(150px);
  object-fit: contain;
  object-position: center;
  z-index: -1;
}

.epoch-token .bg-ellipse > img {
  object-fit: contain;
  object-position: center;
  height: auto;
  width: 100%;
}

.epoch-token .grid-2 > img:nth-child(1) {
  height: auto;
  width: 100%;
  animation: clockwise 5.4s infinite;
}
.epoch-token .grid-2 > img:nth-child(2) {
  height: auto;
  max-width: 55%;
  animation: clockwise 5.2s infinite;
}

@keyframes clockwise {
  50% {
    rotate: 90deg;
  }
}

@media screen and (max-width: 1024px) {
  .epoch-token .content {
    line-height: 30px;
  }

  .epoch-token .heading > img {
    width: 40%;
  }
}

@media screen and (max-width: 600px) {
  .epoch-token > .primary {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 3rem;
    height: auto;
  }

  .epoch-token .content {
    line-height: 20px;
  }

  .epoch-token .heading > img {
    width: 20%;
  }
}

/* Epoch Platform */
.epoch-platform .primary-box > img {
  width: 28%;
  max-height: 215px;
}

.heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--primary-font-color);
  font-family: var(--primary-font-family);
  font-size: 3.75vw;
}

.heading > span > span {
  color: var(--secondary-font-color);
}

.heading > img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.epoch-platform .secondary-box {
  color: var(--primary-font-color);
  font-family: var(--secondary-font-family);
  font-size: 1.145vw;
  line-height: 41px;
  max-width: 1216px;
  margin: 0 auto;
  text-align: center;
}

.epoch-platform .tertiary-box {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 7rem 0;
  overflow: visible;
  height: 938px;
  max-height: 938px;
}

.epoch-platform .ellipse-bg {
  position: absolute;
  width: 82.39vw;
  height: 938px;
  background: rgba(239, 203, 88, 0.15);
  border-radius: 50%;
  filter: blur(150px);
  animation: platform-bg-glow 6s infinite;
}

@keyframes platform-bg-glow {
  0% {
    background: rgba(239, 203, 88, 0.15);
  }
  50% {
    background: rgba(239, 203, 88, 0.35);
  }
  100% {
    background: rgba(239, 203, 88, 0.15);
  }
}

.epoch-platform .platform {
  display: grid;
  place-items: center;
  margin: 0 3rem;
}

.epoch-platform .platform > .banner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.epoch-platform .platform > .banner > img:first-child {
  position: absolute;
  height: auto;
  width: 107%;
}

.epoch-platform .platform > .banner > img:nth-child(2) {
  position: relative;
  height: auto;
  width: 100%;
}

.epoch-platform .platform > .banner > .design {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.epoch-platform .platform > .banner > .design > img {
  position: absolute;
}

.epoch-platform .design > img:nth-child(1) {
  height: auto;
  width: 20%;
  left: -10%;
  top: 0;
  animation: platform-design-inout-left-right 6s infinite;
}

.epoch-platform .design > img:nth-child(2) {
  height: auto;
  width: 70%;
  rotate: 180deg;
  top: -20%;
  left: 14%;
  animation: platform-design-inout-top-bottom 6s infinite;
}

.epoch-platform .design > img:nth-child(3) {
  height: auto;
  rotate: 180deg;
  width: 20%;
  right: -10%;
  top: 0;
  animation: platform-design-inout-left-right 6s infinite;
}

.epoch-platform .design > img:nth-child(4) {
  height: auto;
  width: 70%;
  bottom: -20%;
  left: 14%;
  animation: platform-design-inout-top-bottom 6s infinite;
}

.epoch-platform .fourth-box {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  color: var(--primary-font-color);
  font-family: var(--primary-font-family);
  font-size: 1.7vw;
  gap: 1.563rem;
  align-items: center;
  margin: 2rem 0;
}

.epoch-platform .fourth-box > img {
  width: 3%;
  height: auto;
}
.epoch-platform .fourth-box > img:last-child {
  rotate: 180deg;
}

.epoch-platform .fourth-box > .ellipse {
  position: absolute;
  height: 100px;
  width: 28.64vw;
  background: rgba(239, 203, 88, 0.15);
  filter: blur(30px);
}

@keyframes platform-design-inout-left-right {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-1.7rem);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes platform-design-inout-top-bottom {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateY(2rem);
  }
  100% {
    transform: translateX(0);
  }
}

@media screen and (max-width: 1024px) {
  .epoch-platform .secondary-box {
    line-height: 30px;
  }

  .epoch-platform .ellipse-bg,
  .epoch-platform .tertiary-box {
    height: 600px;
  }
}

@media screen and (max-width: 600px) {
  .epoch-platform .secondary-box {
    line-height: 15px;
  }

  .epoch-platform .ellipse-bg,
  .epoch-platform .tertiary-box {
    height: 300px;
  }
}

/* Roadmap */
.roadmap {
  padding: 8rem 0;
  position: relative;
}

.roadmap .roadmap-ellipse-bg {
  position: absolute;
  top: 0;
  filter: blur(150px);
}

.roadmap .roadmap-ellipse-bg > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.roadmap .main-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.roadmap .main-box > img:last-child {
  rotate: 180deg;
}

.roadmap .main-box > img {
  height: auto;
  width: 10%;
}

.roadmap .mid-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.roadmap .mid-container > img:first-child {
  position: absolute;
  top: -2.5%;
  left: -1%;
  object-fit: contain;
  object-position: center;
  filter: blur(23px);
  height: auto;
  width: 103.5%;
  z-index: -1;
}

.roadmap .mid-container > img:nth-child(2) {
  position: relative;
  height: auto;
  width: 100%;
  object-fit: contain;
  object-position: center;
}

.roadmap .container-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  color: var(--primary-font-color);
  font-family: var(--primary-font-family);
  text-transform: uppercase;
}

.roadmap .mid-container > .container-details > div:first-child {
  position: absolute;
  display: grid;
  place-items: center;
  top: 27%;
  width: 100%;
}

.roadmap .mid-container > .container-details > div:first-child > img {
  position: absolute;
  object-fit: contain;
  object-position: center;
  width: 50%;
  height: auto;
}

.roadmap .mid-container > .container-details > div:first-child > span {
  position: relative;
  font-size: clamp(1.5rem, 3.38vw, 64.896px);
}

.roadmap .stages {
  position: relative;
  height: auto;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  top: 14.5%;
  padding: 0 4rem;
}

.roadmap .stage {
  display: grid;
  place-items: center;
  /* font-size: clamp(0.7rem, 1.67vw, 33.01px); */
  font-size: 1.67vw;
}

.roadmap .stage > div {
  width: 11.65vw;
  height: 3.802vw;
  border-radius: clamp(3px, 0.341vw, 6.5625px);
  border: 0.82px solid var(--secondary-font-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
}

.roadmap .stage > div > svg {
  height: auto;
  width: 55%;
  fill: var(--primary-font-color);
}

.stage:not(:last-child) > .stage-child:hover {
  box-shadow: #efcb58 0px 0px 12px;
  fill: var(--secondary-font-color);
  cursor: pointer;
}

.stage-child:hover .fullstar-svg {
  fill: var(--secondary-font-color);
}
.roadmap .stage > img {
  position: relative;
  /* top: -0.5rem; */
  top: -8%;
  height: auto;
  width: 8.3%;
}

.roadmap .stage:last-child > div > span:first-child {
  font-size: 1.456vw;
  color: #ffffff80;
}

.roadmap .stage:last-child > div > span:last-child {
  font-size: 1.2vw;
  color: #ffffff80;
}

.roadmap .slider-btns {
  position: absolute;
  height: 100%;
  width: 100%;
}

.roadmap .btn-left > .sm-btn,
.roadmap .btn-right > .sm-btn {
  height: 2.447vw;
  width: 2.447vw;
  max-width: 47px;
  max-height: 47px;
  padding: 0.8px;
  cursor: pointer;
}

.roadmap .btn-left {
  position: absolute;
  top: 50%;
  left: 2%;
  transform: translateY(-50%);
}

.roadmap .btn-right {
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
}

.roadmap .sm-btn > img:nth-child(2) {
  position: absolute;
  max-height: 1.302vw;
  width: 0.781vw;
}

.roadmap .sm-btn > img {
  rotate: 0deg;
  scale: 1;
}

.roadmap .big-btn {
  width: 10.88vw;
  height: 2.864vw;
  position: relative;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.roadmap .big-btn > img {
  height: auto;
  width: 100%;
}

.roadmap .btn-bottom {
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
}

.roadmap .big-btn > span {
  color: var(--primary-font-color);
  font-family: var(--primary-font-family);
  position: absolute;
  font-size: 1.25vw;
}

#goto-roadmap,
#btn-left,
#btn-right {
  display: none;
}

@media screen and (max-width: 1024px) {
  .roadmap .main-box > img {
    width: 8%;
  }
}

/*founders and Advisors */

.f-and-adv {
  margin-bottom: 6rem;
}

.f-and-adv > .secondary-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
  margin-bottom: 10rem;
  position: relative;
}

.f-and-adv .secondary-box > .ellipse-bg {
  position: absolute;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  background: rgba(239, 203, 88, 0.15);
  border-radius: 50%;
  scale: 1.1;
  filter: blur(150px);
  animation: bg-glow 9s infinite;
  animation-delay: 2s;
}

@keyframes bg-glow {
  0% {
    background: rgba(239, 203, 88, 0.15);
    scale: 1.1;
  }
  50% {
    background: rgba(239, 203, 88, 0.35);
    scale: 1.28;
  }
  100% {
    background: rgba(239, 203, 88, 0.15);
    scale: 1.1;
  }
}

.f-and-adv .ellipse-bg > img {
  object-fit: contain;
  object-position: center;
  filter: blur(150px);
  margin: auto;
}

.f-and-adv > .secondary-box > img:last-child {
  rotate: 180deg;
}

.f-and-adv > .secondary-box > img {
  height: auto;
  width: 6%;
}

.f-and-adv > .secondary-box > div {
  width: 79%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-row-gap: 1rem;
  grid-column-gap: auto;
}

.f-and-adv .frame {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.f-and-adv .frame > img:first-child {
  max-height: 390px;
  width: 100%;
}

.f-and-adv .frame > img:last-child {
    position: absolute;
    /* [disabled]height: 0px; */
    width: 62%;
}

.f-and-adv .founders {
  color: var(--primary-font-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.name {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.f-and-adv .name > span {
  font-family: var(--primary-font-family);
  font-size: 1.454vw;
}

.f-and-adv .designation {
    position: relative;
    font-family: var(--secondary-font-family);
    font-size: 1.067vw;
    text-align: center;
}

.f-and-adv .name > .sm-btn-border {
  display: block;
  height: 1.5vw;
  width: 1.5vw;
  background-color: rgba(255, 255, 255, 0.8);
  clip-path: polygon(
    18% 0,
    82% 0,
    100% 18%,
    100% 82%,
    82% 100%,
    18% 100%,
    0 82%,
    0 18%
  );
  padding: 1px;
  cursor: pointer;
}

.f-and-adv .sm-btn,
footer .sm-btn {
  background-color: var(--primary-bg-color);
  height: 100%;
  width: 100%;
  clip-path: polygon(
    23% 0,
    82% 0,
    100% 18%,
    100% 82%,
    82% 100%,
    18% 100%,
    0 82%,
    0 18%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.f-and-adv .sm-btn > img:hover {
  scale: 1.5;
  rotate: -180deg;
}

.f-and-adv .sm-btn > i {
  font-size: 0.78vw;
  color: white;
  z-index: 1;
}

.line {
  width: 100%;
  display: flex;
  justify-content: center;
}

.line > img {
  width: 75%;
}

@media screen and (max-width: 600px) {
  .f-and-adv > .secondary-box > div {
    /* width: 79%; */

    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }

  .f-and-adv .name > .sm-btn-border {
    padding: 0.5px;
  }
}

/* Footer */
footer {
  color: var(--primary-font-color);
  width: 100%;
  padding: 0 clamp(1rem, 8.125vw, 9.8rem);
  padding-top: 3.5rem;
  padding-bottom: 2rem;
  display: flex;
  justify-content: space-between;
}

footer > .primary-section {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

footer .primary-section > img {
  width: 35%;
  height: auto;
}

footer .primary-section > div:nth-child(2) {
  font-family: var(--primary-font-family);
  font-size: clamp(1.8rem, 2.08vw, 40px);
}

footer .primary-section > div:nth-child(3) {
  font-family: var(--secondary-font-family);
  font-weight: 500;
  display: flex;
  align-items: center;
  font-size: clamp(14px, 0.88vw, 17px);
  gap: 3px;
}

footer .primary-section > div:nth-child(3) > i {
  font-size: 1.4rem;
}

footer .social-handles {
  display: flex;
  gap: 1rem;
  position: relative;
}

.social-handles > .sm-btn-border {
  height: 1.6rem;
  width: 1.6rem;
  cursor: pointer;
}

.social-handles .sm-btn > i {
  font-size: 1.1rem;
  color: white;
  z-index: 1;
}

footer .secondary-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  font-family: var(--secondary-font-family);
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  gap: 5.33vw;
}

footer .secondary-section > div {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  footer .secondary-section {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    font-family: var(--secondary-font-family);
    font-size: 15px;
  }
}

@media screen and (max-width: 600px) {
  footer .secondary-section {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    font-size: 15px;
    gap: 0;
  }
}

a {
  target-new: window;
}
