.toptrash, .bottrash {
  height: 700px;
  width: 100%;
  background: hotpink;
}

.parallax-end {
  /* position: relative; */
}

.buffer {
  margin-top: 200px;
}

.text {
  position: relative;
  top: 230px;
  left: 30%;
  z-index: 3;
}

.desc {
  font-size: 12px;
}

.parallax-title {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  font-size: 50px;
  width: 100%;
    max-width: 500px;
  text-align: center;
  opacity: 0;
  transition: transform 300ms ease, opacity 300ms ease;
}

.parallax-title .heading{
  text-transform: uppercase;
  font-family: var(--ff_2);
  line-height:1;

}
.parallax-title .blurb-desc{
  font-size:16px;
  font-family: var(--ff_1);

}

.parallax-blurb .blurb-title{
  line-height: 1.25;
  font-weight: 700;
  font-size:18px;
}

.parallax-blurb .blurb-desc p{
  font-size:16px;
}

.parallax-background {
  background-color: #2e48aa;
  margin-bottom:0px;
}

.parallax-scroller {
position: relative;
    transition: background 1s ease;
    background-color: #2e48aa;
  height: 300vh;
  color:white;

  /* background: rgb(46,72,170);
  background: linear-gradient(180deg, rgba(46,72,170,1) 0%, rgba(41,63,147,1) 28%, rgba(19,115,129,1) 69%, rgba(106,38,79,1) 100%); */
}

.parallax-description-text {
  max-width: 656px;
  width: 100%;
  margin: 0 auto;
  padding: 190px 0 120px;
  color:white;

}

.parallax-fixed {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 656px;
  height: 75vh;
  transform: translateX(-50%) translateY(-50%);
  pointer-events: none;
}

.parallax-active .parallax-fixed {
  position: fixed;
}

.parallax-active .scroll-1 .parallax-fixed {
  position: absolute;
}
.parallax-active.fixed-first .scroll-1 .parallax-fixed {
  position: fixed;
}

.parallax-planet {
  max-width: 486px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  max-height: 486px;
  background-color: var(--c_b5);
  border-radius: 50%;
  margin: 0 auto;
  position: absolute;
  top: 54px;
  left: 50%;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  transform: translateX(-50%) scale(0);
}

.parallax-moon {
  max-width: 110px;
  max-height: 110px;
  width: 100%;
  height: 100%;
  background-color: tomato;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 100px;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease, left 1s ease, right 1s ease;
  transform: translateX(-50%) scale(0);
  z-index: 2;
}

.parallax-arc {
  position: absolute;
  top: 110px;
  left: 50%;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  transform: translateX(-50%) scale(0);
  max-width: 604px;
  width: 100%;
}

.mobile-parallax-arc {
  position: absolute;
  top: 170px;
  left: 50%;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  transform: translateX(-50%) scale(0);
  max-width: 355px;
  width: 100%;
  visibility: hidden;
}

.parallax-active .parallax-arc {
  position: fixed;
}

.parallax-active .scroll-1 .parallax-arc {
  position: absolute;
}
.parallax-active.fixed-first .scroll-1 .parallax-arc {
  position: fixed;
}


.parallax-arc svg.arc,
.mobile-parallax-arc svg.arc {
  width: 100%;
  height: auto;
}

.parallax-arc .progress-1,
.mobile-parallax-arc .progress-1 {
  position: absolute;
  bottom: 0px;
  left: -7px;
}
.parallax-arc .progress-2,
.mobile-parallax-arc .progress-2 {
  top: -7px;
  position: absolute;
  left: 50%;
}
.parallax-arc .progress-3,
.mobile-parallax-arc .progress-3 {
  bottom: 0px;
  right: -7px;
  position: absolute;
}

.panel-2 .parallax-planet {
  background-color: var(--c_b4);
  transform: translateX(-50%) scale(0);
}

.panel-3 .parallax-planet {
  background-color: var(--c_b4);
  transform: translateX(-50%) scale(0);
}

.parallax-blurbs {
  height: 100vh;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
}
.parallax-blurbs .parallax-blurb {
  max-width: 232px;
  transition: opacity 1.5s ease, transform 1.5s ease;
  /* transform: translateY(50px); */
  opacity: 0;
  position: relative;
  z-index: 3;
}

.parallax-blurbs .parallax-blurb.active {
  /* transform: translateY(0px); */
  opacity: 1;
}

.parallax-blurbs .parallax-blurb .blurb-title {
  color: var(--c_a1);
}

.parallax-blurbs .parallax-blurb:first-child {
  /* margin-top: -250px; */
  top: -200px;
  text-align: right;
}

.parallax-blurbs .parallax-blurb:last-child {
  /* margin-bottom: -250px; */
  bottom: -200px;
}

.panel-3.parallax-end .parallax-blurbs .parallax-blurb:last-child{
  bottom:0px;
}

.panel {
  position: relative;
}


.scroll-1 .panel-1 .parallax-planet,
.scroll-1 .panel-1 .parallax-moon,
.scroll-2 .panel-2 .parallax-planet,
.scroll-2 .panel-2 .parallax-moon,
.scroll-3 .panel-3 .parallax-planet,
.scroll-3 .panel-3 .parallax-moon {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}
.scroll-1 .panel-1 .parallax-title,
.scroll-2 .panel-2 .parallax-title,
.scroll-3 .panel-3 .parallax-title {
  transform: translateX(-50%) translateY(100px);
  opacity: 1;
}
.scroll-1 .panel-1 .parallax-mobile-blurbs,
.scroll-2 .panel-2 .parallax-mobile-blurbs,
.scroll-3 .panel-3 .parallax-mobile-blurbs {
  transform: translateX(-50%) translateY(0px);
  opacity: 1;
}

.scroll-1 .panel-1 .mobile-parallax-arc,
.scroll-2 .panel-2 .mobile-parallax-arc,
.scroll-3 .panel-3 .mobile-parallax-arc {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

.scroll-1 .parallax-arc,
.scroll-2 .parallax-arc,
.scroll-3 .parallax-arc {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

.scroll-2 .progress-2 circle {
  fill: var(--c_a1);
}
.scroll-2 .panel-2 {
  z-index: 2;
  visibility: visible !important;
}
.scroll-2 .panel-1 {
  /* visibility: hidden; */
}
.scroll-2 .parallax-moon {
  left: auto;
  right: -17px;
}

.scroll-3 .progress-2 circle,
.scroll-3 .progress-3 circle {
  fill: var(--c_a1);
}
.scroll-3 .panel-3 {
  visibility: visible !important;
}
.scroll-3 .panel-1,
.scroll-3 .panel-2 {
  visibility: hidden;
}


.fixed-first .parallax-scroller{
background: rgb(106, 38, 79);
}

.parallax-active .panel-3 {
  background: none;
}

.parallax-mobile-blurbs {
bottom: auto;
top:530px;
left: 50%;
position: absolute;
display: none;
flex-direction: row;
gap: 20px;
opacity: 0;
transform: translateX(-50%) translateY(-100px);
transition: transform 300ms ease, opacity 300ms ease;
max-width: 420px;
width: calc(100% - 40px);
}

.parallax-mobile-blurbs .blurb-title{
  font-size: 16px;
  font-weight: 800;
  color: var(--c_a1);
}

.parallax-mobile-blurbs .blurb-desc{
  font-size: 14px;
}

@media screen and (max-width: 1198px) {
  .parallax-blurbs .parallax-blurb{
      display: none;
  }

  .parallax-mobile-blurbs {
    display: flex;
  }

  .parallax-arc {
    display: none;
  }

  .parallax-fixed {
    position: absolute !important;
  }

  .parallax-planet {
    max-width: 250px;
    max-height: 250px;
}

.parallax-moon {
    max-height: 90px;
    max-width: 90px;
    left: 200px;
}

.parallax-arc {
  max-width: 355px;
}

.mobile-parallax-arc {
  visibility: visible;

}

.scroll-2 .parallax-moon {
  right: 100px;
}

  .parallax-arc {
      top: 280px;
  }

  .parallax-planet {
      top: 224px;
  }

  .parallax-moon {
      top: 170px;
  }

  .parallax-title {
    bottom: auto;
    top: -200px;
  }
}


@media screen and (max-width: 719px) {

  .parallax-bg{
    overflow: hidden;
  }

  .-t\:1 {
      font-size: 2.3rem;
  }

  .parallax-fixed {
   width:100%;
  }


  .parallax-title{
    width: 100%;
    padding: 0 20px;
    font-size: 32px;
  }

  .parallax-title .blurb-desc {
    font-size: 13px;
    font-family: var(--ff_1);
}

  .parallax-blurbs .parallax-blurb {
      position: absolute;
      top: auto;
      left: 50%;
      bottom: 0;
      /* width: 656px; */
      /* transform: translateX(-50%) translateY(-50%); */
      pointer-events: none;
  }

  .parallax-blurbs .parallax-blurb:first-child {
      left: auto;
      top: auto;
  }

  .parallax-blurbs .parallax-blurb:last-child {
      right: 0;
      left: auto;
      bottom: auto;
  }
}

@media screen and (max-width: 450px) {

.parallax-planet {
  max-width: 200px;
  max-height: 200px;
}

.parallax-moon {
  max-height: 60px;
  max-width: 60px;
  left: 200px;
}

.parallax-arc {
  max-width: 300px;
}

}
