/* ----------------------------- MAIN-CONTAINER ----------------------------- */

#main--main {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  width: auto;
  max-width: 2160px;
  position: relative;
  top: 100px;
}

.anchor {
  position: absolute;
  top: -10rem;
  left: 0px;
}

/* ------------------------- multi-column--squares3 ------------------------- */
.multi-column--squares3 {
  width: calc(100% - 3rem);
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 1rem;
}

.container--sq-img {
  width: 32%;
  height: auto;
  object-fit: contain;
  position: relative;
}

.sq-img {
  width: 100%;
  height: auto;
}

.overlay {
  text-decoration: none;
  position: absolute;
  font-size: 2rem;
  left: 50%;
  transform: translate(-50%, -50%);
  right: auto;
  top: 50%;
  /* mix-blend-mode: screen; */
  color: white;
}

/* ----------------------------------- VID ---------------------------------- */
.vid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #7c52ee, #533ce7, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 5s ease infinite;
}

/* --------------------------------- E-CRATE -------------------------------- */

.container--discord {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-direction: row;
  padding: 0 0 1.5rem 0;
}

.container--discord__sub-left {
  position: relative;
  width: 64%;
  left: 1.5rem;
}

.container--discord__sub-right {
  width: 29%;
  aspect-ratio: 1/1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  right: 1.5rem;
}

/* ------------------------ .multi-column--sub-header ----------------------- */

.multi-column--sub-header {
  font-size: 2rem;
  padding-bottom: 1rem;
}

.header-spacing {
  padding-left: var(--left-padding);
}

/* -------------------------- CONTAINTER--SUBSCRIBE ------------------------- */

.container--subscribe {
  background-color: var(--blue);
  color: white;
  padding: 1rem var(--left-padding) 2rem var(--left-padding);
  width: calc(100% - 3rem);
  margin-bottom: 2rem;
}

.container--subscribe section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 16px;
}

.container--subscribe section article {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: 2px rgb(134, 118, 255) solid;
  flex-basis: 100%;
  padding: 1rem;
}

.tier {
  display: block;
  padding-bottom: 1rem;
}

.container--subscribe section p {
  font-size: 1rem;
}

.container--subscribe p {
  margin-bottom: 2rem;
}

.price {
  padding-bottom: 1rem;
  font-size: 1.5rem;
}

.price::before {
  content: "CA";
  font-size: 0.75rem;
  position: relative;
  bottom: 0.5rem;
}

/* ---------------------------- SUBSCRIBE-BUTTON ---------------------------- */

#subscribe {
  display: block;
  width: fit-content;
  text-decoration: none;
  padding: 0.25rem 2.5rem 0.25rem 2.5rem;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid blue;
  background-color: white;
  color: blue;
  transition: 50ms;
}

#subscribe:hover {
  background-color: rgb(68, 68, 255);
  color: white;
  transform: scale(1.1);
  box-shadow: 0px 6px 7px #000;
}

#subscribe:active {
  background-color: rgb(108, 108, 255);
  color: white;
  transform: scale(0.95);
  box-shadow: 0px 2px 3px #000;
}

/* ----------------------------- TEXT-PARAGRAPH ----------------------------- */
#learn {
  align-self: flex-end;
  text-decoration: none;
  cursor: pointer;
  color: #000;
}

#learn:hover {
  text-decoration: underline;
}

.description {
  display: flex;
  flex-direction: column;
  padding: 0.5rem var(--left-padding) 2rem var(--left-padding);
}

.paragraph {
  padding-bottom: var(--left-padding);
  font-size: 1.5rem;
}

li {
  padding-bottom: 0.5rem;
}

.copyright {
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
}

/* ----------------------------CONTAINER--INFO__SECTION---------------------- */

.container--info-section {
  width: calc(100% - 3rem);
  margin: auto;
  display: flex;

  flex-direction: column;
  padding-bottom: 2rem;
}

.container--img {
  padding-bottom: 1rem;
  position: relative;
}

.responsive-img {
  width: 100%;
  height: auto;
}

.vis-overlay {
  position: absolute;
  bottom: 2rem;
  left: 1rem;
  color: rgba(255, 195, 195, 0.7);
  mix-blend-mode: screen;
  font-size: 2rem;
}

/* -------------------------------- ANIMATION ------------------------------- */

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* ------------------------------ MEDIA-QUERIES ----------------------------- */

@media screen and (max-width: 640px) {
  .container--subscribe section {
    display: block;
  }

  p {
    font-size: 1rem;
  }

  .multi-column--sub-header {
    font-size: 1.5rem;
  }

  .price {
    font-size: 1rem;
  }

  #main--main {
    top: 4rem;
  }

  .container--subscribe section article {
    margin-bottom: 1rem;
  }

  .price::before {
    bottom: 0.3rem;
  }

  .paragraph {
    font-size: 1rem;
  }

  .overlay {
    font-size: 1rem;
  }

  .container--discord__sub-left {
    width: calc(100% - 3rem);
  }

  .container--discord__sub-right {
    display: none;
  }

  .multi-column--squares3 {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
  }
}
