/* VARIABLES */
/* Colors */
/* Breakpoints */
/* BASIC */
html {
  scroll-behavior: smooth;
}

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

body {
  font-family: "Dosis", sans-serif;
  font-size: 25px;
  font-weight: 400;
  color: #fff;
  background-color: #290000;
}

/* SHARED */
.flex-row {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-row-center {
  display: flex;
  align-items: center;
}

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

.flex-col-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.flex-row-start-between {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.nav-padding {
  padding: 0 140px 0 278px;
}

a {
  text-decoration: none;
  color: #fff;
}

p {
  margin-bottom: 0;
}

.header-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

.title-text {
  font-size: 70px;
  font-weight: 700;
  line-height: 89px;
}

.section-text {
  font-size: 45px;
  font-weight: 700;
  line-height: 45px;
}

.chapter-text {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
}

.chapter-prologue-text {
  font-size: 30px;
  font-weight: 700;
  line-height: 45px;
}

.chapter-content-text {
  font-size: 30px;
  font-weight: 400;
  line-height: 38px;
}

.subtitle-text {
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
}

.button-text {
  font-size: 25px;
  font-weight: 700;
  line-height: 32px;
}

.regular-text {
  font-size: 25px;
  font-weight: 400;
  line-height: 35px;
}

.regular-bold-text {
  font-size: 25px;
  font-weight: 700;
  line-height: 35px;
}

.uppercase {
  text-transform: uppercase;
}

.read-da-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/backgrounds/read-da-bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 180px;
  height: 70px;
  text-align: center;
  border: 0;
  background-color: transparent;
  font-family: "Dosis", sans-serif;
  z-index: 8;
}
.read-da-button span {
  color: #fff;
}
.read-da-button:hover {
  cursor: pointer;
}

.discord-button {
  background-image: url("../images/backgrounds/discord-bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 215px;
  height: 84px;
  text-align: center;
  border: 0;
  background-color: transparent;
  font-family: "Dosis", sans-serif;
}
.discord-button span {
  color: #7700ff;
}
.discord-button:hover {
  cursor: pointer;
}

.whitelist {
  position: relative;
  -webkit-box-reflect: below -20px linear-gradient(transparent, rgba(0, 0, 0, 0.2));
  display: block;
}
.whitelist span {
  animation: blingbling 1s infinite;
  animation-delay: calc(0.1s * var(--i));
  position: relative;
  display: inline-block;
}

@keyframes blingbling {
  0%, 40%, 100% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-10px);
  }
}
/* CONTENT */
/*Header*/
header {
  width: 100%;
  height: 87px;
  position: sticky;
  top: 0;
  background-color: #290000;
  z-index: 10;
}
header nav {
  width: 100%;
  height: 100%;
}
header nav .chapter-logo {
  display: none;
}
header nav .header-logo {
  position: relative;
  top: 16px;
  align-self: baseline;
}
header nav .header-logo-mobile {
  display: none;
}
header nav .middle {
  width: 743px;
}
header nav .middle .menu-group:first-of-type {
  width: 204px;
}
header nav .middle .menu-group:nth-of-type(2) {
  width: 180px;
}
header nav .middle .menu-group:nth-of-type(3) {
  width: 170px;
}
header nav .right {
  width: 152px;
}
header nav .right a:last-of-type {
  position: relative;
  top: 3px;
}

/*Content*/
#first {
  background-image: url("../images/backgrounds/first-bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}
#first .left {
  width: 40%;
  padding-top: 136px;
}
#first .left h1 {
  color: #f6d967;
  margin-bottom: 25px;
}
#first .left p {
  color: #f6d967;
}
#first .left img {
  display: block;
  margin-left: auto;
  margin-bottom: 2px;
  position: relative;
  top: -16px;
}
#first .left .cta-container {
  display: flex;
}
@media screen and (max-width: 768px) {
  #first .left .cta-container {
    display: block;
  }
}
#first .left a {
  margin-bottom: 108px;
}
#first .right {
  width: 60%;
  position: relative;
}
#first .right img {
  object-fit: none;
}
#first .right img:first-of-type {
  align-self: flex-start;
  margin-top: 36px;
  margin-left: 36px;
  z-index: 2;
}
#first .right img:nth-of-type(2) {
  position: absolute;
  bottom: -272px;
  right: -76px;
}
#first .right .mobile-poo {
  display: none;
}

#additional {
  position: relative;
  background-color: #7700ff;
  padding: 48px;
  overflow: hidden;
}
#additional .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.44;
}
#additional .title-text {
  color: #fff;
  z-index: 0;
}
#additional .subtitle-text {
  text-align: center;
  margin-top: 18px;
  margin-bottom: 18px;
}
#additional .neon-text {
  color: #f6d967;
  letter-spacing: 8px;
  text-align: center;
  z-index: 1;
  text-shadow: 0 0 7px #f6d967, 0 0 10px #f6d967, 0 0 21px #f6d967, 0 0 42px #d7bd54, 0 0 82px #d7bd54, 0 0 92px #d7bd54, 0 0 102px #d7bd54, 0 0 151px #d7bd54;
}
#additional .price-text {
  font-size: 48px;
  text-align: center;
}
#additional .promise-container {
  flex-wrap: wrap;
  justify-content: center;
  z-index: 1;
}
#additional .tombstone-container {
  width: 230px;
  height: 230px;
  border-radius: 25px;
  margin: 25px;
  background-color: #f6d967;
  color: #7700ff;
  text-align: center;
  padding: 15px;
  z-index: 10;
}
#additional .tombstone-container .regular-text {
  color: #7700ff;
  font-weight: bold;
  margin-bottom: 12px;
}
#additional .tombstone-container .text {
  font-size: 22px;
}
#additional .wl-button {
  width: 240px;
  height: 60px;
  border: 3px solid #f6d967;
  background-color: unset;
  cursor: pointer;
  position: relative;
  z-index: 10;
  border-radius: 48px;
  margin: 24px;
}
#additional .wl-button:hover {
  background-color: #f6d967;
  transition: all 0.5s ease-in;
  background-position: -100% 100%;
}
#additional .wl-button:hover a {
  color: #7700ff;
  transition: all 0.5s ease-in;
}
#additional .wl-button a {
  font-size: 20px;
  color: #f6d967;
  font-weight: normal;
  z-index: 10;
}

#second {
  background-color: #7700ff;
  position: relative;
  padding: 97px 278px 65px 0;
  align-items: flex-end;
  overflow: hidden;
}
#second .palm-tree-bg {
  position: absolute;
  left: 0;
  top: 0;
  object-fit: none;
}
#second .palm-tree-bg-mobile {
  display: none;
}
#second .splash-bg {
  position: absolute;
  right: 180px;
  top: 0;
  object-fit: none;
}
#second .title-text {
  color: #f6d967;
  margin-bottom: 20px;
}
#second .subtitle-text {
  color: #f6d967;
  margin-bottom: 35px;
}
#second .regular-text {
  color: #f6d967;
  margin-bottom: 35px;
  max-width: 950px;
  text-align: right;
}

#third {
  background-color: #f6d967;
  position: relative;
  overflow-x: clip;
  overflow: hidden;
}
#third .splash-bg {
  position: relative;
  left: 166px;
  top: -1px;
  width: max-content;
  margin-bottom: 32px;
}
#third .info-container .written-info-container {
  margin-left: 278px;
  max-width: 950px;
}
#third .info-container .written-info-container .title-text {
  color: #7700ff;
  margin-bottom: 49px;
}
#third .info-container .written-info-container .regular-bold-text {
  color: #7700ff;
  margin-bottom: 24px;
}
#third .info-container .written-info-container .regular-text {
  color: #7700ff;
  margin-bottom: 24px;
}
#third .info-container .written-info-container .read-da-button {
  margin-top: 28px;
  margin-bottom: 32px;
}
#third .info-container .written-info-container .wtf-images {
  width: 769px;
  height: 278px;
  z-index: 4;
  margin-left: 42px;
}
#third .info-container .written-info-container .wtf-images .img-container .nft {
  width: 242px;
  height: 242px;
  border-radius: 10px;
}
#third .info-container .written-info-container .wtf-images .slick-arrow {
  width: 43px !important;
  height: 37px !important;
  z-index: 4;
}
#third .info-container .written-info-container .wtf-images .slick-next {
  right: -56px !important;
}
#third .info-container .written-info-container .wtf-images .slick-next:before {
  display: none;
}
#third .info-container .written-info-container .wtf-images .slick-prev {
  left: -56px !important;
}
#third .info-container .written-info-container .wtf-images .slick-prev:before {
  display: none;
}
#third .info-container .written-info-container .wtf-images .slick-prev img {
  transform: rotate(180deg);
}
#third .info-container .written-info-container .wtf-images .slick-list {
  padding-top: 18px !important;
  padding-bottom: 12px !important;
  padding-left: 13px !important;
  background-color: rgba(218, 187, 67, 0.7);
  border-radius: 10px;
}
#third .info-container .graphic-info-container {
  z-index: 3;
}
#third .info-container .graphic-info-container img {
  width: 661px;
  object-fit: contain;
}
#third .info-container .graphic-info-container img:nth-of-type(2) {
  display: none;
}
#third .info-container .wtf-images-mobile {
  display: none;
}
#third .club-container {
  padding: 110px 144px 150px 204px;
  position: relative;
  overflow-x: clip;
}
#third .club-container .title-text {
  color: #7700ff;
  margin-bottom: 28px;
  z-index: 3;
}
#third .club-container .regular-text {
  color: #7700ff;
  margin-bottom: 76px;
  text-align: center;
  max-width: 950px;
  z-index: 3;
}
#third .club-container .promise-container {
  width: 100%;
  z-index: 3;
}
#third .club-container .promise-container .tombstone-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-repeat: no-repeat;
  background-size: cover;
}
#third .club-container .promise-container .tombstone-container h3 {
  margin-bottom: 0px;
  font-size: 45px;
}
#third .club-container .promise-container .tombstone-container .regular-text {
  max-width: 225px;
}
#third .club-container .promise-container .tombstone-container:nth-of-type(1) {
  width: 273px;
  height: 291px;
  background-image: url("../images/backgrounds/wtf-tombstone-1.png");
}
#third .club-container .promise-container .tombstone-container:nth-of-type(2) {
  width: 273px;
  height: 346px;
  position: relative;
  top: -28px;
  background-image: url("../images/backgrounds/wtf-tombstone-2.png");
}
#third .club-container .promise-container .tombstone-container:nth-of-type(2) .title-text {
  margin-top: 28px;
}
#third .club-container .promise-container .tombstone-container:nth-of-type(3) {
  width: 240px;
  height: 390px;
  background-image: url("../images/backgrounds/wtf-tombstone-3.png");
}
#third .club-container .promise-container .tombstone-container:nth-of-type(3) h3 {
  margin-bottom: 14px;
}
#third .club-container .promise-container .tombstone-container:nth-of-type(4) {
  width: 280px;
  height: 380px;
  background-image: url("../images/backgrounds/wtf-tombstone-4.png");
}
#third .club-container .promise-container .tombstone-container:nth-of-type(4) h3 {
  margin-bottom: 14px;
}
#third .club-container .promise-container .tombstone-container:nth-of-type(5) {
  width: 260px;
  height: 355px;
  background-image: url("../images/backgrounds/wtf-tombstone-5.png");
}
#third .club-container .promise-container .tombstone-container:nth-of-type(5) h3 {
  margin-bottom: 14px;
}
#third .club-container .club-bg-light {
  position: absolute;
  bottom: 167px;
  z-index: 1;
}
#third .club-container .club-bg-bright {
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 2;
}

#fourth {
  background-color: #7700ff;
  position: relative;
  overflow: hidden;
}
#fourth .splash-bg {
  position: absolute;
  left: 140px;
  top: 0;
}
#fourth .title-text {
  margin-top: 56px;
  margin-bottom: 92px;
  color: #f6d967;
}
#fourth .roadmap-container {
  margin-left: -140px;
  margin-bottom: 38px;
}
#fourth .roadmap-container .left img {
  object-fit: none;
}
#fourth .roadmap-container .left img:nth-of-type(2) {
  margin-top: -52px;
}
#fourth .roadmap-container .left img:nth-of-type(3) {
  margin-top: -108px;
}
#fourth .roadmap-container .left img:nth-of-type(4) {
  margin-top: -60px;
  position: relative;
  left: -40px;
}
#fourth .roadmap-container .right .milestone {
  display: flex;
  flex-direction: column;
  margin-bottom: 72px;
}
#fourth .roadmap-container .right .milestone .section-text {
  color: #f6d967;
  margin-bottom: 14px;
}
#fourth .roadmap-container .right .milestone .section-text img {
  display: none;
}
#fourth .roadmap-container .right .milestone .regular-text {
  color: #f6d967;
  max-width: 690px;
}
#fourth .poo-bg {
  position: absolute;
  right: -144px;
  bottom: -401px;
}

#fifth {
  background-color: #f6d967;
  overflow: hidden;
  position: relative;
}
#fifth .bg-img {
  opacity: 0.44;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#fifth .content {
  position: relative;
}
#fifth .content .splash-bg {
  position: absolute;
  top: -9px;
  left: 84px;
  width: max-content;
}
#fifth .content .title-text {
  color: #fff;
  margin-top: 83px;
  margin-bottom: 77px;
}
#fifth .content .team-container {
  margin-bottom: 68px;
  width: 1458px;
}
#fifth .content .team-container .team-member img {
  width: 294px;
  height: 294px;
  border-radius: 50%;
  margin-bottom: 7px;
}
#fifth .content .team-container .team-member .section-text {
  color: #fff;
  margin-bottom: 16px;
}
#fifth .content .team-container .team-member .member-desc p {
  color: #7700ff;
  text-align: center;
  max-width: 260px;
}
#fifth .content .team-container .team-member .member-desc .regular-bold-text {
  margin-bottom: 8px;
}
#fifth .content .team-container .team-member:nth-of-type(1) .member-desc {
  height: 180px;
  width: 273px;
  padding-top: 6px;
  background-image: url("../images/backgrounds/team-bubble-1.png");
}
#fifth .content .team-container .team-member:nth-of-type(2) .member-desc {
  height: 174px;
  width: 260px;
  padding-top: 31px;
  background-image: url("../images/backgrounds/team-bubble-2.png");
  position: relative;
  top: 16px;
}
#fifth .content .team-container .team-member:nth-of-type(3) .member-desc {
  height: 209px;
  width: 314px;
  padding-top: 6px;
  background-image: url("../images/backgrounds/team-bubble-3.png");
}
#fifth .content .team-container .team-member:nth-of-type(4) .member-desc {
  height: 313px;
  width: 338px;
  padding-top: 6px;
  background-image: url("../images/backgrounds/team-bubble-4.png");
}

#sixth {
  background-color: #fff;
  overflow: hidden;
}
#sixth .title-text {
  color: #7700ff;
  margin-top: 47px;
  margin-bottom: 16px;
}
#sixth .img-container {
  margin-bottom: 52px;
}
#sixth .img-container img {
  margin-right: 85px;
}

#seventh {
  position: relative;
  background-color: #f6d967;
  overflow: hidden;
}
#seventh .title-text {
  margin-bottom: 85px;
  margin-top: 70px;
  color: #7700ff;
  text-align: center;
}
#seventh .faq-container {
  margin-bottom: 192px;
  margin-left: 278px;
  max-width: calc(100% - 818px);
}
#seventh .faq-container .question {
  outline: none;
  border: 0;
  display: flex;
  align-items: center;
  margin-bottom: 9px;
  margin-bottom: 36px;
  background-color: transparent;
  text-align: left;
}
#seventh .faq-container .question:hover {
  cursor: pointer;
}
#seventh .faq-container .question span {
  color: #7700ff;
  font-family: "Dosis", sans-serif;
}
#seventh .faq-container .question img {
  margin-left: 48px;
  width: 23px;
  transform: rotate(90deg);
}
#seventh .faq-container .question.active img {
  width: 27px;
  transform: rotate(0);
}
#seventh .faq-container .answer {
  color: #7700ff;
  margin-top: -27px;
  margin-bottom: 36px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
#seventh .ape-mobile {
  display: none;
}

/*Footer*/
footer {
  height: 231px;
  position: relative;
  background-color: #7700ff;
  overflow-x: clip;
}
footer .logo {
  margin-left: 278px;
}
footer .social-icons {
  margin-left: 8%;
  width: 220px;
}
footer .club-logo {
  margin-left: 16%;
  position: relative;
  top: -28px;
  z-index: 4;
}
footer .ape-img {
  position: absolute;
  object-fit: none;
  z-index: 3;
  right: -50px;
  bottom: 0;
}

/*
* Audio
*/
.wave-container {
  background-color: #29000036;
  border-radius: 20px;
  height: 80px;
  padding: 16px;
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 11;
  display: flex;
  align-items: center;
}
.wave-container:hover {
  cursor: pointer;
}
.wave-container.playing span {
  animation: wave 2s linear infinite;
}
.wave-container .sound-on {
  background-image: url("../images/icons/sound_on.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
}
.wave-container span {
  background-color: #f6d967;
  width: 10px;
  height: 16px;
  margin-right: 2px;
  border-radius: 2px;
}
.wave-container span:nth-of-type(1) {
  animation-delay: 0s;
}
.wave-container span:nth-of-type(2) {
  animation-delay: 0.2s;
}
.wave-container span:nth-of-type(3) {
  animation-delay: 0.4s;
}
.wave-container span:nth-of-type(4) {
  animation-delay: 0.6s;
}
.wave-container span:nth-of-type(5) {
  animation-delay: 0.8s;
}
.wave-container span:nth-of-type(6) {
  animation-delay: 1s;
  margin-right: 0;
}

@keyframes wave {
  0%, 50% {
    transform: scaleY(1);
  }
  25% {
    transform: scaleY(4);
    background-color: #7700ff;
  }
}
audio {
  display: none;
}

/*
* Pages
*/
.chapter-padding {
  padding-left: 278px;
  padding-right: 416px;
}

.chapter .chapter-title-container {
  width: 100%;
  height: 818px;
  background-image: url("../images/backgrounds/first-bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  overflow: clip;
  justify-content: flex-end;
  padding-left: 278px;
  padding-right: 278px;
}
.chapter .chapter-title-container .fly {
  position: absolute;
  left: 105px;
  top: 296px;
}
.chapter .chapter-title-container .poo-img {
  position: absolute;
  bottom: -172px;
  right: 186px;
}
.chapter .chapter-title-container .ape-club-logo {
  margin-left: auto;
  margin-right: auto;
  width: 760px;
  z-index: 2;
}
.chapter .chapter-title-container .title-text {
  color: #f6d967;
  margin-bottom: 50px;
  z-index: 2;
}
.chapter .chapter-title-container .chapter-text {
  color: #f6d967;
  z-index: 2;
}
.chapter .chapter-content-container {
  background-color: #f6d967;
  padding-top: 68px;
  overflow: clip;
}
.chapter .chapter-content-container .chapter-part {
  position: relative;
}
.chapter .chapter-content-container .chapter-part .chapter-prologue-text {
  margin-bottom: 40px;
  color: #7700ff;
}
.chapter .chapter-content-container .chapter-part .chapter-content-text {
  position: relative;
  margin-left: 138px;
  margin-bottom: 40px;
  color: #7700ff;
  z-index: 4;
}
.chapter .chapter-content-container .chapter-part .chapter-content-text .roadmap-img {
  z-index: -1;
}
.chapter .chapter-content-container .chapter-divider {
  width: calc(100% + 694px);
  height: 200px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: -278px;
  margin-right: -416px;
  background-color: #290000;
}

#chapter1 .chapter-part:first-of-type .club-bg-light {
  position: absolute;
  bottom: 167px;
  left: -892px;
  z-index: 1;
}
#chapter1 .chapter-part:first-of-type .club-bg-bright {
  position: absolute;
  bottom: -1px;
  left: -278px;
  z-index: 2;
}
#chapter1 .chapter-part:first-of-type .chapter-content-text:last-of-type {
  margin-bottom: 600px;
}
#chapter1 .chapter-part:first-of-type .chapter-content-text:nth-of-type(5) .roadmap-img {
  position: absolute;
  left: -240px;
  bottom: -32px;
  width: 288px;
}
#chapter1 .chapter-part:nth-of-type(2) {
  padding-top: 92px;
  padding-bottom: 82px;
}
#chapter1 .chapter-part:nth-of-type(2) .chapter-content-text:nth-of-type(2) .roadmap-img {
  position: absolute;
  bottom: 16px;
  right: -202px;
  width: 228px;
}
#chapter1 .chapter-part:nth-of-type(4) {
  padding-top: 92px;
  padding-bottom: 164px;
}
#chapter1 .chapter-part:nth-of-type(4) .chapter-content-text:nth-of-type(3) .roadmap-img {
  position: absolute;
  top: -152px;
  right: -240px;
  width: 348px;
}
#chapter1 .chapter-part:nth-of-type(4) .chapter-content-text:nth-of-type(4) .roadmap-img {
  position: absolute;
  top: -198px;
  left: -244px;
  width: 268px;
}
#chapter1 .chapter-divider {
  background-image: url("../images/backgrounds/first-bg.png");
}

/*
* RESPONSIVE 
*/
@media screen and (max-width: 1720px) {
  .nav-padding {
    padding: 0 140px 0 140px;
  }

  #first .left {
    width: 50%;
  }
  #first .left img {
    transform: scale(0.8);
    top: -28px;
    left: -16px;
  }
  #first .right {
    width: 50%;
  }
  #first .right img {
    transform: scale(0.8);
  }
  #first .right img:nth-of-type(1) {
    margin-left: 0;
  }
  #first .right img:nth-of-type(2) {
    bottom: -220px;
    right: -116px;
  }

  #second {
    padding: 97px 140px 65px 0;
  }
  #second .palm-tree-bg {
    left: -160px;
    height: 100%;
    object-fit: contain;
  }
  #second .regular-text {
    z-index: 2;
    max-width: 750px;
  }

  #third .splash-bg {
    left: 32px;
  }
  #third .info-container .written-info-container {
    margin-left: 140px;
  }
  #third .info-container .graphic-info-container img {
    width: 580px;
  }
  #third .club-container {
    padding: 110px 100px 150px 120px;
  }

  #fourth .poo-bg {
    transform: scale(0.7);
    right: -275px;
    bottom: -480px;
  }
  #fourth .roadmap-container {
    margin-left: -278px;
  }

  #fifth .content .title-text {
    margin-top: 40px;
    margin-bottom: 48px;
  }
  #fifth .content .team-container {
    margin-bottom: 40px;
    width: 1360px;
  }

  #seventh .title-text {
    margin-top: 56px;
  }
  #seventh .faq-container {
    margin-bottom: 100px;
    margin-left: 140px;
    max-width: calc(100% - 680px);
  }

  footer {
    height: 200px;
  }
  footer .logo {
    margin-left: 140px;
    margin-top: 16px;
  }
}
@media screen and (max-width: 1500px) {
  .header-text {
    font-size: 16px;
    line-height: 20px;
  }

  .title-text {
    font-size: 45px;
    line-height: 45px;
  }

  .section-text {
    font-size: 30px;
    line-height: 38px;
  }

  .chapter-text {
    font-size: 30px;
    line-height: 38px;
  }

  .chapter-prologue-text {
    font-size: 25px;
    line-height: 30px;
  }

  .chapter-content-text {
    font-size: 25px;
    line-height: 25px;
  }

  .subtitle-text {
    font-size: 25px;
    line-height: 25px;
  }

  .button-text {
    font-size: 20px;
    line-height: 24px;
  }

  .regular-text {
    font-size: 20px;
    line-height: 28px;
  }

  .regular-bold-text {
    font-size: 20px;
    line-height: 28px;
  }

  .read-da-button {
    background-size: contain;
    width: 148px;
  }

  .discord-button {
    background-size: cover;
    width: 180px;
    height: 64px;
  }

  header {
    height: 64px;
  }
  header nav .header-logo {
    transform: scale(0.8);
    top: 0;
  }
  header nav .middle {
    width: 560px;
  }
  header nav .middle .menu-group:first-of-type {
    width: 164px;
  }
  header nav .middle .menu-group:nth-of-type(2) {
    width: 144px;
  }
  header nav .middle .menu-group:nth-of-type(3) {
    width: 136px;
  }
  header nav .right a img {
    transform: scale(0.8);
  }
  header nav .right a:last-of-type img {
    top: -2px;
    position: relative;
  }

  #first .left a {
    margin-top: -16px;
  }
  #first .right img:nth-of-type(1) {
    margin-left: -76px;
  }
  #first .right img:nth-of-type(2) {
    bottom: -308px;
  }

  #second .splash-bg {
    object-fit: contain;
    width: 240px;
  }

  #third .splash-bg {
    left: 32px;
    top: -8px;
    width: 312px;
    margin-bottom: 4px;
  }
  #third .info-container .written-info-container .title-text {
    margin-bottom: 24px;
  }
  #third .info-container .written-info-container .read-da-button {
    margin-top: 0;
    margin-bottom: 14px;
  }
  #third .info-container .written-info-container .wtf-images {
    width: 516px;
  }
  #third .info-container .graphic-info-container img {
    width: 500px;
  }
  #third .club-container .regular-text {
    margin-bottom: 108px;
  }
  #third .club-container .promise-container .tombstone-container {
    background-size: auto;
  }
  #third .club-container .promise-container .tombstone-container .regular-text {
    max-width: 160px;
  }
  #third .club-container .promise-container .tombstone-container h3 {
    margin-bottom: 24px;
    margin-top: 16px;
  }
  #third .club-container .promise-container .tombstone-container:nth-of-type(1) {
    width: 240px;
    height: 240px;
  }
  #third .club-container .promise-container .tombstone-container:nth-of-type(2) {
    width: 270px;
    height: 256px;
    top: -12px;
  }
  #third .club-container .promise-container .tombstone-container:nth-of-type(3) {
    width: 227px;
    height: 308px;
  }
  #third .club-container .promise-container .tombstone-container:nth-of-type(4) {
    width: 276px;
    height: 316px;
  }
  #third .club-container .promise-container .tombstone-container:nth-of-type(5) {
    width: 224px;
    height: 260px;
  }

  #fourth .splash-bg {
    left: 268px;
    width: 440px;
  }
  #fourth .title-text {
    margin-bottom: 40px;
  }
  #fourth .roadmap-container .left img {
    transform: scale(0.8);
  }
  #fourth .roadmap-container .left img:nth-of-type(2) {
    height: 360px;
  }
  #fourth .roadmap-container .left img:nth-of-type(3) {
    height: 376px;
  }
  #fourth .roadmap-container .right .milestone {
    max-width: 516px;
  }

  #fifth .content .team-container {
    width: 1124px;
  }
  #fifth .content .team-container .team-member img {
    width: 200px;
    height: 200px;
  }
  #fifth .content .team-container .team-member .member-desc {
    background-size: cover;
    background-repeat: no-repeat;
  }
  #fifth .content .team-container .team-member .member-desc p {
    max-width: 220px;
  }
  #fifth .content .team-container .team-member:nth-of-type(1) .member-desc {
    width: 220px;
  }
  #fifth .content .team-container .team-member:nth-of-type(2) .member-desc {
    width: 240px;
    height: 202px;
    top: 0px;
    padding-top: 26px;
  }
  #fifth .content .team-container .team-member:nth-of-type(3) .member-desc {
    width: 270px;
    height: 184px;
  }
  #fifth .content .team-container .team-member:nth-of-type(4) .member-desc {
    width: 270px;
    height: 256px;
  }

  #seventh .title-text {
    margin-bottom: 46px;
  }
  #seventh .faq-container {
    margin-bottom: 80px;
  }
  #seventh .faq-container .question {
    margin-bottom: 28px;
  }
  #seventh .faq-container .question img {
    width: 20px;
  }
  #seventh .faq-container .question.active img {
    width: 24px;
  }

  footer .ape-img {
    transform: scale(0.8);
    bottom: -90px;
  }

  .chapter-padding {
    padding-left: 140px;
    padding-right: 140px;
  }

  .chapter .chapter-title-container {
    height: 618px;
    padding-left: 140px;
    padding-right: 140px;
  }
  .chapter .chapter-title-container .fly {
    left: 20px;
    top: 192px;
    transform: scale(0.8);
  }
  .chapter .chapter-title-container .ape-club-logo {
    width: 532px;
  }
  .chapter .chapter-title-container .poo-img {
    bottom: -280px;
    transform: scale(0.8);
  }

  #chapter1 .chapter-part:nth-of-type(2) .chapter-content-text:nth-of-type(2) .roadmap-img {
    right: -80px;
    width: 160px;
  }
  #chapter1 .chapter-part:nth-of-type(4) .chapter-content-text:nth-of-type(3) .roadmap-img {
    right: -108px;
    width: 260px;
  }
  #chapter1 .chapter-part:nth-of-type(4) .chapter-content-text:nth-of-type(4) .roadmap-img {
    left: -172px;
    width: 180px;
  }
}
@media screen and (max-width: 1280px) {
  .nav-padding {
    padding: 0 40px 0 40px;
  }

  header nav .middle {
    width: 480px;
  }
  header nav .middle .menu-group:nth-of-type(1) {
    width: 140px;
  }
  header nav .middle .menu-group:nth-of-type(2) {
    width: 140px;
  }

  #first {
    overflow-x: clip;
  }
  #first .left img {
    margin-bottom: -20px;
  }
  #first .left a {
    margin-bottom: 80px;
  }
  #first .right img:nth-of-type(1) {
    margin-left: -140px;
    transform: scale(0.6);
  }
  #first .right img:nth-of-type(2) {
    bottom: -340px;
  }

  #second {
    padding: 65px 40px 65px 0;
    overflow: hidden;
  }
  #second .splash-bg {
    display: none;
  }
  #second .regular-text {
    max-width: 620px;
  }

  #third .splash-bg {
    display: none;
  }
  #third .info-container .written-info-container {
    margin-top: 40px;
    margin-left: 40px;
  }
  #third .info-container .graphic-info-container {
    margin-top: 40px;
  }
  #third .info-container .graphic-info-container img {
    width: 400px;
  }
  #third .club-container {
    padding: 60px 40px 80px 40px;
  }
  #third .club-container .promise-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  #third .club-container .promise-container .tombstone-container h3 {
    margin-bottom: 15px;
  }
  #third .club-container .promise-container .tombstone-container:nth-of-type(2) {
    height: 306px;
    top: -34px;
  }
  #third .club-container .promise-container .tombstone-container:nth-of-type(2) .title-text {
    margin-top: 50px;
  }
  #third .club-container .promise-container .tombstone-container:nth-of-type(3) {
    width: 204px;
    height: 310px;
  }
  #third .club-container .promise-container .tombstone-container:nth-of-type(4) {
    width: 233px;
  }
  #third .club-container .promise-container .tombstone-container:nth-of-type(5) {
    width: 193px;
  }
  #third .club-container .promise-container .tombstone-container .regular-text {
    margin-bottom: 0;
  }

  #fourth .splash-bg {
    display: none;
  }
  #fourth .title-text {
    margin-top: 40px;
  }
  #fourth .roadmap-container {
    margin-left: -180px;
  }
  #fourth .roadmap-container .right .milestone:last-of-type .regular-text {
    max-width: 440px;
  }
  #fourth .poo-bg {
    transform: scale(0.6);
    right: -267px;
    bottom: -513px;
  }

  #fifth .bg-img {
    object-fit: cover;
  }
  #fifth .content .splash-bg {
    display: none;
  }
  #fifth .content .team-container {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  #fifth .content .team-container .team-member {
    width: 33.3%;
  }
  #fifth .content .team-container .team-member:nth-of-type(2) .member-desc {
    padding-top: 42px;
  }

  #sixth .img-container {
    flex-wrap: wrap;
    margin: 0 40px;
  }
  #sixth .img-container img {
    margin-right: 40px;
  }

  #seventh .title-text {
    margin-top: 40px;
  }
  #seventh .faq-container {
    margin-left: 40px;
    max-width: 768px;
  }

  footer .logo {
    margin-left: 40px;
  }
  footer .club-logo {
    margin-left: 8%;
  }
  footer .ape-img {
    transform: scale(0.6);
    bottom: -180px;
    right: -145px;
  }

  .chapter-padding {
    padding-left: 40px;
    padding-right: 40px;
  }

  .chapter .chapter-title-container {
    padding-left: 40px;
    padding-right: 40px;
  }
  .chapter .chapter-title-container .fly {
    display: none;
  }
  .chapter .chapter-title-container .poo-img {
    right: 0;
  }
  .chapter .chapter-content-container {
    padding-top: 40px;
  }
  .chapter .chapter-content-container .chapter-part .chapter-content-text {
    margin-left: 60px;
    margin-bottom: 28px;
  }
  .chapter .chapter-content-container .chapter-part .chapter-content-text .roadmap-img {
    display: none;
  }
  .chapter .chapter-content-container .chapter-divider {
    height: 200px;
    margin-left: -40px;
    margin-right: 0;
    width: calc(100% + 80px);
  }

  #chapter1 .chapter-part:nth-of-type(2) {
    padding-top: 48px;
    padding-bottom: 40px;
  }

  #chapter1 .chapter-part:nth-of-type(4) {
    padding-top: 48px;
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 768px) {
  .title-text {
    font-size: 36px;
    line-height: 46px;
  }

  .subtitle-text {
    font-size: 15px;
    line-height: 19px;
  }

  .section-text {
    font-size: 30px;
    line-height: 30px;
  }

  .button-text {
    font-size: 25px;
    line-height: 32px;
  }

  .regular-text {
    font-size: 15px;
    line-height: 30px;
  }

  .regular-bold-text {
    font-size: 15px;
    line-height: 30px;
  }

  .chapter-text {
    font-size: 25px;
    line-height: 32px;
  }

  .chapter-prologue-text {
    font-size: 20px;
    line-height: 40px;
  }

  .chapter-content-text {
    font-size: 20px;
    line-height: 30px;
  }

  .nav-padding {
    padding: 0 48px 0 48px;
  }

  .read-da-button {
    width: 180px;
    height: 70px;
  }

  .discord-button {
    width: 215px;
    height: 84px;
  }

  header {
    height: 170px;
    position: relative;
  }
  header nav {
    justify-content: center !important;
    align-items: flex-start !important;
  }
  header nav .header-logo {
    display: none;
  }
  header nav .chapter-logo {
    display: block;
    position: absolute;
    bottom: -88px;
    left: auto;
    right: auto;
    margin-top: 4px;
  }
  header nav .header-logo-mobile {
    display: block;
    position: absolute;
    bottom: -88px;
    left: auto;
    right: auto;
  }
  header nav .middle {
    display: none;
  }
  header nav .right {
    margin-top: 32px;
  }
  header nav .right a img {
    transform: none;
  }
  header nav .right a:last-of-type img {
    top: 0;
  }

  #first {
    flex-direction: column;
    background-position: right;
  }
  #first .left {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding-top: 129px;
    text-align: center;
  }
  #first .left h1 {
    margin-bottom: 48px;
  }
  #first .left img {
    display: none;
  }
  #first .left a {
    margin-top: 24px;
    margin-bottom: 0;
  }
  #first .right {
    width: 100%;
  }
  #first .right img:nth-of-type(1) {
    width: 225px;
    transform: none;
    object-fit: scale-down;
    margin-left: 0;
  }
  #first .right img:nth-of-type(2) {
    display: none;
  }
  #first .right .mobile-poo {
    display: block;
    position: absolute;
    right: -68px;
    bottom: -156px;
  }

  #second {
    padding: 54px 28px 66px;
    align-items: center;
  }
  #second .title-text {
    z-index: 2;
  }
  #second .subtitle-text {
    z-index: 2;
    margin-bottom: 24px;
  }
  #second .regular-text {
    text-align: center;
    max-width: none;
  }
  #second .discord-button {
    margin-top: 32px;
    z-index: 2;
  }
  #second .palm-tree-bg {
    display: none;
  }
  #second .palm-tree-bg-mobile {
    display: block;
    position: absolute;
    top: 0;
    left: -376px;
    height: 100%;
    object-fit: contain;
  }

  #third .info-container {
    flex-direction: column;
    align-items: center;
  }
  #third .info-container .written-info-container {
    margin-top: 32px;
    margin-left: 0;
    padding: 34px;
    max-width: none;
    text-align: center;
    align-items: center;
  }
  #third .info-container .written-info-container .title-text {
    margin-bottom: 32px;
  }
  #third .info-container .written-info-container .regular-bold-text {
    margin-bottom: 40px;
  }
  #third .info-container .written-info-container .read-da-button {
    margin-top: 16px;
    margin-bottom: 26px;
  }
  #third .info-container .written-info-container .wtf-images {
    display: none;
  }
  #third .info-container .graphic-info-container {
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #third .info-container .graphic-info-container img {
    object-fit: none;
    width: auto;
  }
  #third .info-container .graphic-info-container img:first-of-type {
    display: none;
  }
  #third .info-container .graphic-info-container img:nth-of-type(2) {
    display: block;
    margin-right: -56px;
  }
  #third .info-container .wtf-images-mobile {
    display: block;
    width: 278px;
    margin-top: 124px;
    margin-bottom: 124px;
  }
  #third .info-container .wtf-images-mobile .slick-list {
    padding-top: 18px !important;
    padding-bottom: 12px !important;
    padding-left: 16px !important;
    background-color: rgba(218, 187, 67, 0.7);
    border-radius: 10px;
  }
  #third .info-container .wtf-images-mobile .slick-arrow {
    width: 43px !important;
    height: 37px !important;
    z-index: 4;
  }
  #third .info-container .wtf-images-mobile .slick-next {
    right: 112px !important;
    bottom: -58px;
    top: auto;
    transform: rotate(90deg);
  }
  #third .info-container .wtf-images-mobile .slick-next:before {
    display: none;
  }
  #third .info-container .wtf-images-mobile .slick-prev {
    left: 112px !important;
    top: -58px;
    transform: rotate(90deg);
  }
  #third .info-container .wtf-images-mobile .slick-prev:before {
    display: none;
  }
  #third .info-container .wtf-images-mobile .slick-prev img {
    transform: rotate(180deg);
  }
  #third .club-container {
    padding: 0px 65px 148px 65px;
  }
  #third .club-container .title-text {
    margin-bottom: 60px;
    text-align: center;
  }
  #third .club-container .regular-text {
    margin-bottom: 64px;
  }
  #third .club-container .promise-container {
    flex-wrap: unset;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  #third .club-container .promise-container .tombstone-container h3 {
    font-size: 45px;
    line-height: 60px;
  }
  #third .club-container .promise-container .tombstone-container .regular-text {
    font-size: 25px;
    line-height: 35px;
    max-width: 225px;
  }
  #third .club-container .promise-container .tombstone-container:nth-of-type(1) {
    width: 272px;
    height: 291px;
    margin-bottom: 58px;
  }
  #third .club-container .promise-container .tombstone-container:nth-of-type(2) {
    width: 284px;
    height: 318px;
    top: 0;
    margin-bottom: 44px;
    background-position-x: 12px;
  }
  #third .club-container .promise-container .tombstone-container:nth-of-type(2) .title-text {
    margin-top: 30px;
    margin-bottom: 32px;
  }
  #third .club-container .promise-container .tombstone-container:nth-of-type(3) {
    width: 240px;
    height: 390px;
    margin-bottom: 102px;
  }
  #third .club-container .promise-container .tombstone-container:nth-of-type(4) {
    width: 279px;
    height: 381px;
    margin-bottom: 72px;
  }
  #third .club-container .promise-container .tombstone-container:nth-of-type(5) {
    width: 259px;
    height: 354px;
  }

  #fourth .splash-bg {
    display: block;
    left: -62px;
    top: -8px;
    width: 750px;
  }
  #fourth .poo-bg {
    display: none;
  }
  #fourth .title-text {
    margin-top: 194px;
    margin-bottom: 25px;
  }
  #fourth .roadmap-container {
    margin-left: 0;
    margin-bottom: 28px;
    width: 100%;
    padding-left: 45px;
    padding-right: 28px;
  }
  #fourth .roadmap-container .left {
    display: none;
  }
  #fourth .roadmap-container .right .milestone {
    margin-bottom: 24px;
  }
  #fourth .roadmap-container .right .milestone .section-text {
    display: flex;
    align-items: flex-end;
  }
  #fourth .roadmap-container .right .milestone .section-text img {
    display: block;
  }
  #fourth .roadmap-container .right .milestone .regular-text {
    line-height: 25px;
  }
  #fourth .roadmap-container .right .milestone:nth-of-type(1) .section-text img {
    width: 135px;
    margin-right: 16px;
  }
  #fourth .roadmap-container .right .milestone:nth-of-type(2) .section-text {
    margin-bottom: 38px;
  }
  #fourth .roadmap-container .right .milestone:nth-of-type(2) .section-text img {
    width: 85px;
    margin-right: 66px;
    margin-bottom: -24px;
  }
  #fourth .roadmap-container .right .milestone:nth-of-type(3) .section-text {
    margin-bottom: 38px;
  }
  #fourth .roadmap-container .right .milestone:nth-of-type(3) .section-text img {
    width: 95px;
    margin-right: 56px;
    margin-bottom: -24px;
  }
  #fourth .roadmap-container .right .milestone:nth-of-type(4) .section-text {
    margin-bottom: 38px;
  }
  #fourth .roadmap-container .right .milestone:nth-of-type(4) .section-text img {
    width: 115px;
    margin-right: 36px;
    margin-bottom: -24px;
  }

  #fifth .content .title-text {
    margin-top: 80px;
    margin-bottom: 84px;
  }
  #fifth .content .team-container {
    flex-wrap: unset;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #fifth .content .team-container .team-member {
    width: auto;
    margin-bottom: 84px;
  }
  #fifth .content .team-container .team-member img {
    width: 294px;
    height: 294px;
  }
  #fifth .content .team-container .team-member .section-text {
    font-size: 45px;
    line-height: 35px;
    margin-bottom: 16px;
  }
  #fifth .content .team-container .team-member .member-desc .regular-bold-text {
    font-size: 25px;
    line-height: 35px;
  }
  #fifth .content .team-container .team-member .member-desc .regular-text {
    font-size: 25px;
    line-height: 35px;
  }
  #fifth .content .team-container .team-member .member-desc p {
    max-width: 260px;
  }
  #fifth .content .team-container .team-member:nth-of-type(1) .member-desc {
    width: 273px;
    height: 180px;
  }
  #fifth .content .team-container .team-member:nth-of-type(2) .member-desc {
    padding-top: 32px;
    width: 260px;
    height: 174px;
  }
  #fifth .content .team-container .team-member:nth-of-type(3) .member-desc {
    height: 209px;
    width: 314px;
  }
  #fifth .content .team-container .team-member:nth-of-type(4) .member-desc {
    width: 338px;
    height: 313px;
  }

  #sixth {
    padding-bottom: 32px;
  }
  #sixth .title-text {
    margin-top: 54px;
    margin-bottom: 68px;
  }
  #sixth .img-container img {
    margin-bottom: 12px;
  }

  #seventh .title-text {
    margin-top: 54px;
    margin-bottom: 68px;
  }
  #seventh .faq-container {
    margin-left: 24px;
    max-width: 300px;
    margin-bottom: 180px;
  }
  #seventh .faq-container .question span {
    line-height: 35px;
  }
  #seventh .faq-container .question img {
    margin-left: auto;
  }
  #seventh .faq-container .answer p {
    font-size: 20px;
    line-height: 35px;
  }
  #seventh .ape-mobile {
    display: block;
    position: absolute;
    right: 20px;
    bottom: -192px;
  }

  footer {
    height: 360px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  footer .ape-img {
    display: none;
  }
  footer .club-logo {
    display: none;
  }
  footer .logo {
    margin: 0;
  }

  .wave-container {
    border-radius: 16px;
    height: 40px;
    padding: 12px;
    bottom: 20px;
    left: 20px;
  }
  .wave-container span {
    width: 8px;
    height: 12px;
  }

  .chapter-padding {
    padding-left: 36px;
    padding-right: 36px;
  }

  .chapter .chapter-title-container {
    padding-left: 36px;
    padding-right: 36px;
    height: 720px;
  }
  .chapter .chapter-title-container .title-text {
    margin-bottom: 6px;
    font-size: 35px;
    line-height: 44px;
  }
  .chapter .chapter-title-container .ape-club-logo {
    width: 232px;
    margin-left: unset;
    margin-top: 70px;
    margin-bottom: auto;
  }
  .chapter .chapter-title-container .poo-img {
    width: 356px;
    right: 0;
    left: 0;
    bottom: -108px;
    margin-left: auto;
    margin-right: auto;
    transform: unset;
  }
  .chapter .chapter-content-container {
    padding-top: 36px;
  }
  .chapter .chapter-content-container .chapter-part .chapter-prologue-text {
    margin-bottom: 80px;
  }
  .chapter .chapter-content-container .chapter-part .chapter-content-text {
    margin-left: 0;
  }
  .chapter .chapter-content-container .chapter-divider {
    height: 200px;
    margin-left: -36px;
    margin-right: 0;
    width: calc(100% + 72px);
  }
}
@media screen and (max-width: 468px) {
  #second .palm-tree-bg-mobile {
    left: -460px;
  }
}
@media screen and (min-width: 1920px) {
  #third .club-container .club-bg-bright {
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
