

/* FANS */
.fans {
  padding: 20vh 0;
}

.fans .content .left .phrase {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.fans .content .icons {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 2vw;
}
.fans .content .icons .little_guy {
  width: 6%;
  aspect-ratio: 57 / 129;
  transform-origin: 50% 100%;
  will-change: transform;
  transform: scale(1, 0);
}

.fans .content .icons .little_guy_inner {
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.fans .content .icons .little_guy svg {
  width: 100%;
  height: auto;
  display: block;
}

/* attendees */

.attendees .content .left .phrase {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.attendees .content .right {
  display: flex;
  justify-content: flex-end;
}

.bar_container {
  position: relative;
  display: flex;
  gap: 1vw;
  aspect-ratio: 1;
  align-items: flex-end;
  width: 100%;
  max-width: 740px;
  pointer-events: auto;
}
.bar_container .line {
  position: relative;
  width: 9%;
  border-radius: 50px;
  background-color: var(--darkgrey);
  transform-origin: bottom;
  will-change: transform, background-color;
  transform: scaleY(1);
  /* box-shadow: 0 0 0 rgba(235, 10, 30, 0); */
}

.bar_container .line:nth-child(1) {
  height: 10%;
}
.bar_container .line:nth-child(2) {
  height: 20%;
}
.bar_container .line:nth-child(3) {
  height: 30%;
}
.bar_container .line:nth-child(4) {
  height: 40%;
}
.bar_container .line:nth-child(5) {
  height: 50%;
}
.bar_container .line:nth-child(6) {
  height: 60%;
}
.bar_container .line:nth-child(7) {
  height: 70%;
}
.bar_container .line:nth-child(8) {
  height: 80%;
}
.bar_container .line:nth-child(9) {
  height: 90%;
}
.bar_container .line:nth-child(10) {
  height: 100%;
}

/* 
.bar_container .line:after{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	bottom: 0;
	border-radius: 50px;
	background-color: var(--red);
} */

/* festivals */

.festivals .content .right .phrase {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.festivals .content .left {
  display: flex;
  justify-content: flex-end;
}

.circles_container {
  position: relative;
  width: 100%;
  /* max-width: 740px; */
  aspect-ratio: 1; /* or whatever your design uses */
  overflow: hidden;
}

.circles_container .circle {
  position: absolute;
  border-radius: 999px;
  background: #18191b; /* grey */
  will-change: transform, background-color;
  /* transform: translate3d(0,0,0) scale(0); */
  cursor: pointer;
  aspect-ratio: 1;
}

.circles_container .circle:nth-child(1) {
  left: 6%;
  top: 10%;
  width: 30%;
}
.circles_container .circle:nth-child(2) {
  left: 38%;
  top: 17%;
  width: 15%;
}
.circles_container .circle:nth-child(3) {
  left: 42%;
  top: 31%;
  width: 30%;
}
.circles_container .circle:nth-child(4) {
  left: 8%;
  top: 41%;
  width: 35%;
}
.circles_container .circle:nth-child(5) {
  left: 57%;
  top: 8%;
  width: 25%;
}
.circles_container .circle:nth-child(6) {
  left: 48%;
  top: 63%;
  width: 22%;
}

/* followers */

.followers .content .right .phrase {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.followers .content .left {
  display: flex;
  justify-content: flex-end;
}

.circles_grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
  max-width: 740px;
  aspect-ratio: 1;
  margin: 0 auto;
}

.circles_grid .circle {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--lightblue);
  will-change: transform;
  transform: scale(0);
  transform-origin: center;
}

@media(max-width:767px){
  .followers .section_title.font_script{
    font-size: 7.5vw;
  }
}

/* Visits */

.visits .content .left .phrase {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.visits .section_title .font_script {
  display: inline-block;
}

.circles_stack {
  position: relative;
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
  pointer-events: auto;
}

.circles_stack .circle {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  aspect-ratio: 1;
  border-radius: 50%;
  will-change: transform;
  transform: scale(0);
  transform-origin: 50% 100%;
  pointer-events: none;
}

.circles_stack .circle_inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--teal);
  will-change: transform;
  transform: translateX(0);
}

.circles_stack .circle:nth-child(1) {
  position: relative; /* sets container height */
  width: 100%;
  opacity: 0.2;
}
.circles_stack .circle:nth-child(2) {
  width: 80%;
  opacity: 0.3;
}
.circles_stack .circle:nth-child(3) {
  width: 60%;
  opacity: 0.5;
}
.circles_stack .circle:nth-child(4) {
  width: 40%;
  opacity: 0.7;
}
.circles_stack .circle:nth-child(5) {
  width: 20%;
  opacity: 1;
}

/* BRANDS */

.brands .content .left .phrase {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}


section.brands .left{
  width: 40%
}
section.brands .right{
  width: 50%;
}

.circles_gather{
  position: relative;
  width: 100%;
  max-width: 740px;
  aspect-ratio: 1;
  margin: 0 auto;
  overflow: hidden;
}

.circles_gather .circle{
  position: absolute;
  top: 0;
  left: 0;
  width: 8%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--green);
  opacity: 0;
  will-change: transform, opacity;
  transform: translate3d(0,0,0);
}


/* STADIUM */

.stadium .content .left .phrase {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}


section.stadium .left{
  width: 50%
}
section.stadium .right{
  width: 40%;
}

.stadium .section_title .font_script {
  display: inline-block;
}
.stadium p.copy{
  width: 55%;
}


.circles_stadium{
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  aspect-ratio: 0.65;
  overflow: visible;
}

.circles_stadium .circle{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--purple);
  opacity: 0;
  will-change: transform, opacity;
  transform: translate3d(0,0,0);
}


/* ecosystem */
section.ecosystem .content{
  flex-direction: column;
  padding: max(50px,5vh) 0;
}

.ecosystem .section_title .font_script {
  display: inline-block;
}

section.ecosystem .content .full_column{
  margin-bottom: 5vh;
}


/* Slider info block */
section.info_blocks.s{
  display: block;
  padding: 10vh 0;
}

.js-subnav-slider .info_blocks_container {
  position: relative;
  overflow: hidden;
  transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1);
  touch-action: pan-y;
}

.js-subnav-slider .info_block {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translateX(0);
  z-index: 1;
  padding: 0 8vw;
}

.js-subnav-slider .info_block.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.js-subnav-slider .info_block.animating {
  opacity: 1;
  pointer-events: none;
  z-index: 3;
  transition: transform 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

.js-subnav-slider .info_block.is-measuring {
  position: relative !important;
  inset: auto !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: none !important;
  z-index: -1 !important;
}

.js-subnav-slider .info_block.enter-from-right {
  transform: translateX(100%);
}

.js-subnav-slider .info_block.enter-from-left {
  transform: translateX(-100%);
}

.js-subnav-slider .info_block.enter-to-center {
  transform: translateX(0);
}

.js-subnav-slider .info_block.leave-to-left {
  transform: translateX(-100%);
}

.js-subnav-slider .info_block.leave-to-right {
  transform: translateX(100%);
}

.js-subnav-slider .subnav {
  display: flex;
  gap: 20px;
  padding: 5vh 0;
  justify-content: center;
  flex-wrap: wrap;
}

.js-subnav-slider .subnav .option {
  cursor: pointer;
  background-color: transparent;
  border: 2px solid #000;
  color: #000;
  padding: 8px 30px;
  border-radius: 50px;
  white-space: nowrap;
}

.js-subnav-slider .subnav .option:hover,
.js-subnav-slider .subnav .option.active {
  background-color: #000;
  border: 2px solid #000;
  color: #fff;opacity: 1;
}
@media(max-width:767px){
  .js-subnav-slider .subnav{
    gap: 6px;
  }
  .js-subnav-slider .subnav .option{
    font-size: 0.8rem;
  }
}
