@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap");
/* @font-face {
  font-family: Avenir;
  src: url(../fonts/avenir/avenir_roman_12.woff);
}  */
body {
  font-family: "Exo 2", sans-serif;
  /*  font-family: Avenir; */
  /*   font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; */
  color: white;
  letter-spacing: 1.1px;
  line-height: 1.35;
}

h2 {
  font-weight: 400;
  font-size: 1.8rem;
}

h3 {
  font-weight: 300;
}

.faq h3 {
  font-size: 1.7rem;
}

p {
  font-size: 1rem;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-margin-top: 93px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgb(34, 34, 34);
}

::-webkit-scrollbar-thumb {
  background: #464646;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  background-color: black;
}

main {
  -webkit-animation: fade 0.3s forwards;
          animation: fade 0.3s forwards;
  opacity: 0;
  min-height: 100%;
  /*  flex: 1; */
}
main.landing {
  min-height: calc(100svh - 93px);
  /* min-height: 600px; */
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
main.dark {
  position: relative;
  z-index: 1;
}
main.dark::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-image: url("../assets/images/Atmos image 2.png");
  background-size: 400px;
  width: 100%;
  height: 100%;
  z-index: -2;
  -webkit-filter: blur(20px);
          filter: blur(20px);
}
main.dark::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: -1;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.container {
  max-width: 1440px;
  margin: 20px auto;
  padding: 20px;
}

.container-full {
  margin: 50px;
  padding: 20px;
}
.container-full .container {
  max-width: 1550px;
}

.center-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.my-downloads {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  min-height: calc(100vh - 93px);
  gap: 22px;
  margin: 0;
  padding: 20px !important;
}
.my-downloads h1 {
  font-size: 60px;
}
.my-downloads p {
  max-width: 900px;
}
.my-downloads a {
  color: rgb(255, 77, 175);
  text-decoration: none;
}

/* Buttons */
.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px;
  text-decoration: none;
  background-color: rgb(29, 29, 29);
  color: white;
  border-radius: 10px;
  min-width: 300px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 0px 0px 5px rgb(25, 133, 242);
          box-shadow: 0px 0px 5px rgb(25, 133, 242);
  cursor: pointer;
}
.button.light {
  background-color: white;
  color: black;
}
.button.light:hover {
  background-color: rgb(206, 206, 206);
}
.button:hover {
  background-color: rgb(36, 36, 36);
}

/* Header */
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 40px;
  height: 93px;
  position: sticky;
  background-color: black;
  top: 0;
  z-index: 10;
}
header a:has(img) {
  font-size: 0;
}
header img {
  width: 140px;
}
header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
header nav a {
  color: white;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-transform: uppercase;
}
header nav a:hover, header nav a.active {
  color: rgb(255, 77, 175);
}

#hamburger,
#close {
  display: none;
  width: 30px;
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(70deg) brightness(104%) contrast(102%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(70deg) brightness(104%) contrast(102%);
}

/* Home */
.home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 25px;
  text-align: center;
  overflow-x: hidden;
  width: 100%;
  padding: 10px;
  margin: 0 auto;
  padding-top: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.home img {
  width: 100%;
  height: 55vh;
  height: 65vh;
  padding-bottom: 5vh;
  margin-top: -5vh;
  -o-object-fit: contain;
     object-fit: contain;
  /* margin-bottom: auto; */
}
.home h2 {
  white-space: nowrap;
}
.home .home-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 25px;
  font-size: 1.2rem;
}

/* Learn more */
.gridx-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.gridx-2 .gridx-2-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.gridx-2 .gridx-2-item h2 {
  color: rgb(255, 77, 175);
}
.gridx-2 .gridx-2-item p {
  max-width: 600px;
}

.video {
  position: relative;
  max-width: 650px;
  width: 100%;
}
.video video {
  width: 100%;
  aspect-ratio: 16/9;
}
.video .video-overlay {
  cursor: pointer;
  margin: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.video .video-overlay img {
  width: 80px;
}
.video .video-overlay:hover {
  background-color: rgba(0, 0, 0, 0.4);
}

.how-it-works {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 20px;
}
.how-it-works li {
  margin-bottom: 10px;
  text-align: justify;
}

.container-bg {
  background-color: #bfa7d8;
  color: black;
}

.what-we-need {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.what-we-need .gridx-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
.what-we-need .gridx-3 .gridx-3-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  max-width: 300px;
  margin: 30px 0;
}
.what-we-need .gridx-3 .gridx-3-item svg {
  height: 80px;
  width: 80px;
}
.what-we-need .gridx-3 .gridx-3-item p {
  font-weight: 200;
}

/* Faq */
.faq h2 {
  text-align: center;
  color: rgb(255, 166, 215);
  font-size: 2.5rem;
}
.faq .faq-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  padding: 40px 0;
  cursor: default;
  -webkit-transition: 1s;
  transition: 1s;
  border-bottom: 2px solid #ad7ade;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.faq .faq-item .faq-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.faq .faq-item .faq-top span {
  font-size: 4rem;
  font-weight: 600;
  color: rgb(255, 77, 175);
}
.faq .faq-item .faq-top span,
.faq .faq-item .faq-top h3 {
  -webkit-transition: 1s;
  transition: 1s;
}
.faq .faq-item p,
.faq .faq-item a {
  display: none;
  opacity: 0;
  -webkit-animation: fade 0.9s forwards;
          animation: fade 0.9s forwards;
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
  margin: 10px 0;
}
.faq .faq-item a {
  color: #ad7ade;
  text-decoration: none;
}
.faq .faq-item.active {
  height: auto;
  padding: 80px 0;
}
.faq .faq-item.active p {
  display: block;
}
.faq .faq-item.active a {
  display: inline-block;
}
.faq .faq-item.active span,
.faq .faq-item.active h3 {
  color: rgb(29, 103, 205);
}

/* How to */
.instruction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  text-align: center;
}
.instruction .videos-grid {
  margin: 40px 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.instruction .videos-grid.v-x-2 {
  grid-template-columns: 1fr;
  max-width: 768px;
}
.instruction .videos-grid .videos-grid-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.instruction .videos-grid .videos-grid-item h3 {
  margin: 10px 0;
  margin-bottom: 5px;
  font-weight: bold;
  min-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
}
.instruction .videos-grid .videos-grid-item iframe {
  width: 100%;
  aspect-ratio: 16/9;
  margin-top: auto;
  -webkit-box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.336);
          box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.336);
}
.instruction h2 {
  color: rgb(255, 77, 175);
}

/* Team */
.team {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin-bottom: 40px;
}
.team h2 {
  color: rgb(255, 77, 175);
  font-size: 2.2rem;
}
.team p {
  max-width: 570px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 70px 0;
  gap: 20px;
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.team-member-texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.team-member-texts hr {
  background-color: rgb(255, 77, 175);
  height: 2px;
  width: 100%;
  border: none;
}

.team-member-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.team-member-text h3 {
  font-size: 26px;
  font-weight: bold;
  color: #d4b9ef;
}
.team-member-text p {
  max-width: 100%;
}

.person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  position: relative;
  max-width: 230px;
  width: 100%;
}
.person .person-image {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.person .person-text {
  background-color: rgba(30, 28, 53, 0.8470588235);
  color: #d4b9ef;
  width: 85%;
  margin-left: auto;
  padding: 5px;
  z-index: 2;
  margin-right: -1px;
}
.person .person-text h4 {
  font-weight: 600;
}
.person .person-text p {
  font-size: 0.9rem;
}
.person a {
  text-decoration: none;
  color: #ffa6d7;
  text-transform: uppercase;
  z-index: 2;
  background-color: black;
  padding: 5px;
  width: calc(100% + 2px);
  margin-left: -1px;
  margin-bottom: -1px;
  font-size: 0.9rem;
}
.person .child-text {
  opacity: 0;
  text-align: center;
  background-color: black;
  padding: 5px;
  font-size: 0.8rem;
}
.person .person-hover {
  position: relative;
}
.person .person-child {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: 100%;
}
.person .person-child img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  background-color: black;
}
.person:hover .person-child,
.person:hover .child-text {
  opacity: 1;
}

/* Our Work */
.work {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 10%;
}
.work h2 {
  color: rgb(255, 77, 175);
  font-size: 2.2rem;
}
.work p {
  max-width: 570px;
}
.work .work-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.work .work-item h3 {
  color: rgb(255, 77, 175);
}

.album {
  background-color: #e9e8eb;
  border-radius: 17px;
  padding: 15px;
  max-width: 500px;
  padding-bottom: 0;
  width: 100%;
}
.album .album-cover {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.album .song {
  padding: 15px 0;
}

.song {
  background-color: #e9e8eb;
  padding: 15px;
  border-radius: 17px;
  max-width: 500px;
  width: 100%;
  display: grid;
  grid-template-columns: 10fr 2fr;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.song .song-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: black !important;
  gap: 5px;
  width: 100%;
  overflow: hidden;
}
.song .song-details img {
  margin-top: 4px;
  width: 65px;
  -webkit-filter: brightness(0) saturate(100%) invert(52%) sepia(7%) saturate(66%) hue-rotate(202deg) brightness(97%) contrast(87%);
          filter: brightness(0) saturate(100%) invert(52%) sepia(7%) saturate(66%) hue-rotate(202deg) brightness(97%) contrast(87%);
}
.song h3 {
  color: black !important;
  font-weight: 600;
  float: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 90%;
}
.song p {
  float: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 90%;
}
.song .song-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fb233c;
  aspect-ratio: 1/1;
  border-radius: 50%;
  -webkit-transition: 0.5s background;
  transition: 0.5s background;
  width: 60px;
  padding: 10px;
}
.song .song-link:hover {
  background-color: black;
}

#coupon {
  position: fixed;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  color: white;
  top: 50%;
  z-index: 100;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 50px;
  text-align: center;
  border: 2px dashed rgb(255, 77, 175);
  outline: 10px solid rgb(17, 17, 17);
  max-width: 992px;
  width: 100%;
  opacity: 0;
  -webkit-animation: fadein 0.5s forwards;
          animation: fadein 0.5s forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-height: 100svh;
  background-color: rgba(17, 17, 17, 0.85);
}
#coupon h2 {
  line-height: 1.2;
  font-size: 3rem;
  color: rgb(255, 77, 175);
}
#coupon img {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 15px;
  right: 15px;
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1951%) hue-rotate(92deg) brightness(110%) contrast(101%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1951%) hue-rotate(92deg) brightness(110%) contrast(101%);
  cursor: pointer;
}
#coupon .code {
  background-color: #1d1d1d;
  padding: 15px;
  position: relative;
  max-width: 300px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#coupon .code #reveal-code {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1d1d1d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  padding: 15px;
}
#coupon .code #reveal-code:hover {
  background-color: #222222;
}
#coupon #no-thanks {
  text-decoration: underline;
  cursor: pointer;
}
#coupon #cost {
  color: rgb(255, 77, 175);
  font-size: 1.8rem;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.legal {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.legal h3 {
  font-weight: bold;
  margin: 0 !important;
}
.legal ul {
  margin-left: 25px;
}
.legal .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1000px;
  gap: 20px;
}

/* --------- login  --------- */
.login-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}
.login-page main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.login h2 {
  color: rgb(255, 77, 175);
}
.login img {
  max-width: 60px;
  width: 100%;
}

.login-page iframe {
  left: -200vw !important;
}

/* #landing {
  iframe {
    display: block !important;
    z-index: 100;
    pointer-events: none;
  }
} */
.recovery-mode iframe {
  background: black;
  display: block !important;
  z-index: 1000 !important;
}

.form {
  max-width: 400px !important;
  border-radius: 10px;
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-top: 20px;
  background-color: white;
}
.form::after {
  content: "";
  background-color: white;
  width: 30px;
  height: 30px;
  top: 5px;
  right: 3px;
  position: absolute;
  z-index: 100;
}

.buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 100;
  position: relative;
  padding: 0 32px;
  gap: 5px;
  background-color: white;
}
.buttons.logged-in {
  opacity: 0;
  pointer-events: none;
}
.buttons button {
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  display: block;
  background-color: transparent;
  width: 50%;
  text-align: center;
  padding: 10px;
  border-bottom: 2px solid rgba(14, 30, 37, 0.418);
  color: rgba(14, 30, 37, 0.418);
  -webkit-transition: 0.3s background-color;
  transition: 0.3s background-color;
  cursor: pointer;
}
.buttons button:hover {
  background-color: whitesmoke;
}
.buttons button.active-btn {
  border-bottom: 2px solid rgb(14, 30, 37);
  color: black;
}

#identity-widget {
  width: 100%;
}
#identity-widget iframe {
  left: 0 !important;
  margin-top: -66px !important;
  display: block !important;
  position: relative !important;
  height: 650px !important;
  width: 100% !important;
}

#confirmation-banner {
  background: #bfa7d8;
  color: black;
  padding: 15px;
  text-align: center;
  border-radius: 10px;
  position: fixed;
  bottom: 15px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.hidden {
  display: none;
}

/* Footer */
footer {
  padding: 40px;
  background-color: rgb(10, 10, 10);
}
footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: end;
}
footer .footer-content img {
  max-width: 50px;
}
footer .footer-content h3 {
  margin-bottom: 5px;
}
footer .footer-content a {
  color: white;
  text-decoration: none;
  margin: 0 4px;
}
footer .copyright {
  color: #989898;
  margin-top: 5px;
}

@media only screen and (max-width: 1200px) {
  .instruction .gridx-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 0;
    margin: 0;
  }
  .instruction .gridx-2 .gridx-2-item {
    width: 100%;
  }
  .instruction .gridx-2:nth-child(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .instruction .videos-grid {
    grid-template-columns: 1fr 1fr;
  }
  .instruction .videos-grid.v-x-2 {
    width: 100%;
  }
  .team-grid {
    -webkit-transform: none;
            transform: none;
  }
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (max-width: 992px) {
  .gridx-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .container-full {
    padding: 0;
    margin: 20px 0;
  }
  .instruction {
    padding: 20px;
  }
  .instruction .videos-grid {
    gap: 15px;
    grid-template-columns: 1fr 1fr;
  }
  .video {
    max-width: 100%;
  }
  .how-it-works {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px;
  }
  .how-it-works ul {
    padding-left: 20px;
  }
  #coupon {
    width: 90%;
  }
  .team-grid {
    /*    grid-template-columns: 1fr 1fr; */
    justify-items: center;
    /*  margin-bottom: 100px; */
    margin: 30px 0;
  }
  .work {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .work p {
    max-width: 100%;
  }
  .song .song-link {
    width: 50px !important;
    padding: 10px !important;
  }
  .song h3 {
    margin: 0;
  }
  .album,
  .song,
  h3 {
    margin: 0 auto;
  }
  .my-downloads h1 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 769px) {
  header nav {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    opacity: 1 !important;
    -webkit-transform: none !important;
            transform: none !important;
  }
}
@media only screen and (max-width: 768px) {
  #hamburger,
  #close {
    display: block;
  }
  #close {
    position: absolute;
    top: 30px;
    right: 20px;
  }
  main.landing {
    min-height: calc(100svh - 64px);
  }
  header {
    padding: 10px 20px;
    height: auto;
  }
  header a:has(img) {
    font-size: 0;
  }
  header nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: black;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    opacity: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .home .home-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 400px;
    width: 100%;
  }
  .home {
    gap: 15px;
  }
  .home h2 {
    font-size: 5vw;
  }
  .home img {
    height: 30vh;
    padding-bottom: 5vh;
  }
  .home .home-buttons {
    gap: 15px;
  }
  .instruction .videos-grid {
    margin: 0;
    grid-template-columns: 1fr;
  }
  .instruction .videos-grid.v-x-2 {
    grid-template-columns: 1fr;
  }
  #coupon {
    gap: 15px;
    padding: 30px;
  }
  #coupon h2 {
    font-size: 2rem;
  }
  .person .person-text h4 {
    font-size: 13px;
  }
  .person .person-text p {
    font-size: 0.8rem;
  }
  footer {
    text-align: center;
  }
  footer .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .footer-content div {
    margin: 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  footer .footer-content div h3 {
    font-weight: bold;
  }
  footer .footer-content div a {
    margin: 0;
  }
}
@media only screen and (max-width: 600px) {
  .what-we-need .gridx-3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .person {
    max-width: 300px;
    margin-bottom: 20px;
  }
  .person .person-text p {
    font-size: 0.8rem;
  }
  .person .person-text h4 {
    font-size: 16px;
  }
  .person .child-text {
    font-size: 1rem;
  }
  .team-member-texts {
    gap: 20px;
  }
  .team-member-texts h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 500px) {
  html {
    font-size: 85%;
  }
  .home .home-buttons {
    width: calc(100% - 20px);
    /*      max-width: 300px; */
  }
  .button {
    min-width: auto;
    width: 100%;
  }
  .faq {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .faq h3 {
    font-size: 1.2rem;
  }
  .faq span {
    font-size: 1.3rem;
  }
  .faq .faq-item {
    padding: 30px 0;
  }
  .faq .faq-item:hover {
    padding: 40px 0;
  }
  .my-downloads h1 {
    font-size: 30px;
  }
}
@media (hover: none) {
  .faq .faq-item.active {
    height: auto;
    padding: 80px 0;
  }
  .faq .faq-item.active p {
    display: block;
  }
  .faq .faq-item.active a {
    display: inline-block;
  }
  .faq .faq-item.active span,
  .faq .faq-item.active h3 {
    color: rgb(29, 103, 205);
  }
}
@media only screen and (max-height: 720px) {
  .home img {
    height: 60vh;
    padding-bottom: 5vh;
  }
}
@media only screen and (max-height: 620px) {
  .home img {
    height: 45vh;
    padding-bottom: 5vh;
  }
}
@media only screen and (max-height: 440px) {
  .home {
    gap: 10px;
  }
  .home img {
    height: 35vh;
    padding-bottom: 5vh;
  }
}
@media (hover: hover) and (pointer: fine) {
  .faq .faq-item:hover {
    height: auto;
    padding: 80px 0;
  }
  .faq .faq-item:hover p {
    display: block;
  }
  .faq .faq-item:hover a {
    display: inline-block;
  }
  .faq .faq-item:hover span,
  .faq .faq-item:hover h3 {
    color: rgb(29, 103, 205);
  }
}/*# sourceMappingURL=styles.css.map */