@import url("https://fonts.googleapis.com/css2?family=Familjen+Grotesk:wght@400;600;700&display=swap");

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

body {
  font-family: "Familjen Grotesk", sans-serif;
  background: #000;
  color: #fff;
}

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

ul {
  list-style: none;
}

/* Header/Navbar */
.main-header {
  background-image: linear-gradient(#000000, #000000, #00000000);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  height: 95px;
  padding: 0 30px;
}

/* Logo */
.logo {
  width: 450px;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

/* Desktop Menu */
.desktop-main-menu {
  margin-left: 50px;
}

.desktop-main-menu ul {
  display: flex;
}

.desktop-main-menu ul li {
  position: relative;
  margin-right: 20px;
  padding-bottom: 2px;
}

/* Menu item bottom border */
.desktop-main-menu ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transform-origin: right center;
}

.desktop-main-menu ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
  transition-duration: 0.4s;
}

/* Sections */
section {
  position: relative;
  height: 100vh;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-transform: uppercase;
}

.section-inner {
  margin: 20px;
  padding: 20px;
  border-radius: 20px;
  background-image: linear-gradient(#00000059, #00000059, #00000059);
  position: absolute;
  bottom: 200px;
  left: 150px;
  max-width: 560px;
}

.section-inner h4 {
  font-size: 22px;
  margin-bottom: 5px;
  font-weight: 300;
  animation: fadeInUp 0.5s ease-in-out;
}

.section-inner h2 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeInUp 0.5s ease-in-out 0.2s;
  animation-fill-mode: both; /* Stop from showing at start*/
}

.section-inner a {
  animation: fadeInUp 0.5s ease-in-out 0.4s;
  animation-fill-mode: both; /* Stop from showing at start*/
}

/* Background images */
.section-a {
  background-image: url("../img/zendar-zone-img.webp");
}

.alaska {
  position: fixed;
  top: 40%;
  left: 75%;
  width: 100%;
  display: flex;
  justify-content: stretch;
  align-items: center;
  text-transform: uppercase;
  height: 95px;
  padding: 0 30px;
}

.section-b {
  background-image: url("../img/Zendar-Home-Second.webp");
}
.section-c {
  background-image: url("../img/AI-Home-Page-Third.webp");
}
.section-d {
  background-image: url("../img/Zendar-Home-Forth.webp");
}
.section-e {
  background-image: url("../img/Zendar-Home-Fifth.webp");
}
.section-f {
  background-image: url("../img/Zendar-Home-Sixth.webp");
}

.ZendarCinematicUniverse {
  background-image: url("../img/Zendar-Home-Sixth.webp");
  opacity: 40%;
}

.btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  min-width: 130px;
  padding: 15px 50px;
  margin-top: 10px;
  border: 2px solid #fff;
  border-radius: 20px;
  text-transform: uppercase;
  font-weight: bold;
  overflow: hidden;
  z-index: 2;
}

.submit {
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  min-width: 130px;
  padding: 15px 50px;
  margin-top: 10px;
  border: 2px solid #fff;
  border-radius: 20px;
  text-transform: uppercase;
  font-weight: bold;
  overflow: hidden;
  z-index: 2;
}

.btn:hover span {
  color: #000;
}

.btn .hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  color: #000;
  z-index: -1;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn:hover .hover {
  transform: translateY(0);
}

.scroll-arrow {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeBounce 5s infinite;
}

/* Footer */
footer {
  position: relative;
  padding: 55px 0;
}

footer ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

footer ul li {
  margin-right: 30px;
  color: #aaa;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 2.5;
}

footer ul li a {
  color: #fff;
  transition: color 0.6s;
}

footer ul li a:hover {
  color: #aaa;
}

/* Hamburger Menu */
.hamburger {
  position: fixed;
  top: 40px;
  right: 20px;
  z-index: 10;
  cursor: pointer;
  width: 20px;
  height: 20px;
  background: none;
  border: none;
}

.hamburger-top,
.hamburger-middle,
.hamburger-bottom {
  position: absolute;
  width: 20px;
  height: 2px;
  top: 0;
  left: 0;
  background: #fff;
  transition: all 0.5s;
}

.hamburger-middle {
  transform: translateY(5px);
}

.hamburger-bottom {
  transform: translateY(10px);
}

/* Transition hamburger to X when open */
.open {
  transform: rotate(90deg);
}

.open .hamburger-top {
  transform: rotate(45deg) translateY(6px) translateX(6px);
}

.open .hamburger-middle {
  display: none;
}

.open .hamburger-bottom {
  transform: rotate(-45deg) translateY(6px) translateX(-6px);
}

/* Overlay */
.overlay-show {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 3;
}

/* Stop body scroll */
.stop-scrolling {
  overflow: hidden;
}

/* Hide mobile main menu items */
.mobile-only {
  display: none;
}

/* Mobile menu */
.mobile-main-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 350px;
  height: 100%;
  background: #000;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Bring menu from right */
.show-menu {
  transform: translateX(0);
}

.mobile-main-menu ul {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  padding: 50px;
  width: 100%;
}

.mobile-main-menu ul li {
  margin-bottom: 20px;
  font-size: 18px;
  text-transform: uppercase;
  border-bottom: 1px #555 dotted;
  width: 100%;
  text-align: right;
  padding-bottom: 8px;
}

.mobile-main-menu ul li a {
  color: #fff;
  transition: color 0.6s;
}

.mobile-main-menu ul li a:hover {
  color: #aaa;
}

/* Inner Pages */
.bg-zendar-zone {
  background-image: url("../img/zendar-zone-img.webp");
}

.bg-sleep-music {
  background: rgba(0, 1, 1, 0.5);
  background-size: cover;
  background-image: url("../img/Sleep-Music-Theme.webp");
  background-blend-mode: darken;
}

.bg-zendar-music-universe {
  background-image: url("../img/Zendar-Music-Universe.webp");
}

.bg-xplora-galaxy {
  background: rgba(0, 1, 1, 0.575);
  background-size: cover;
  background-image: url("../img/Xplora-Galaxy.webp");
  background-blend-mode: darken;
}

.bg-we-are-working {
  background: rgba(0, 1, 1, 0.575);
  background-size: cover;
  background-image: url("../img/We-Are-Working.webp");
  background-blend-mode: darken;
}

.bg-contact-theme {
  background: rgba(0, 1, 1, 0.575);
  background-size: cover;
  background-image: url("../img/Contact-Theme.webp");
  background-blend-mode: darken;
}

.bg-contact-theme {
  background: rgba(0, 1, 1, 0.575);
  background-size: cover;
  background-image: url("../img/Supllier-Theme.webp");
  background-blend-mode: darken;
}

.bg-zendarship-theme {
  background-image: url("../img/Zendarship.webp");
}

.bg_dark {
  background-image: url("../img/Wallpaper-Dark.png");
}

.section-animate {
  animation: fadeIn 2s ease-in-out;
}

.section-inner-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  text-align: center;
  width: 80%;
  padding-top: 130px;
}

.section-inner-center h3 {
  font-size: 100px;
  margin-bottom: 15px;
  animation: fadeInUp 0.5s ease-in-out;
}

.alaska {
  font-size: 100px;
  margin-bottom: 15px;
  animation: fadeInUp 0.5s ease-in-out;
}

.Name-grid-view h3 {
  font-size: 60px;
  margin-bottom: 15px;
  animation: fadeInUp 0.5s ease-in-out;
}

.section-inner-center p {
  font-size: 20px;
  animation: fadeInUp 0.5s ease-in-out 0.2s;
  animation-fill-mode: both;
}

.section-inner-center img {
  animation: fadeInUp 0.5s ease-in-out 0.2s;
  animation-fill-mode: both;
}

.section-inner-center a {
  animation: fadeInUp 0.6s ease-in-out 0.2s;
  animation-fill-mode: both;
}

/* ============================== Video Grid View ===================================*/

.new-container {
  padding-top: 30px;
}

/* ============================== Video Grid View ===================================*/

/* ==============================supplier screen===================================*/

.section-suppliers {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
  width: 80%;
}

.privacy_policy_section_suppliers {
  position: absolute;
  padding-bottom: 140px;
  padding-top: 20%;
  text-align: left;
  padding-left: 10%;
  padding-right: 10%;
}

.footer-container {
  width: 100%;
  height: auto;
  padding-top: 120px;
}

.privacy_policy_footer-container {
  width: 100%;
  height: auto;
  padding-top: 1820px;
}

.section-suppliers h3 {
  font-size: 40px;
  margin-bottom: 15px;
  text-transform: uppercase;
  animation: fadeInUp 0.5s ease-in-out;
}

.privacy_policy_section_suppliers h3 {
  font-size: 40px;
  margin-bottom: 15px;
  text-transform: uppercase;
  animation: fadeInUp 0.5s ease-in-out;
}

.section-suppliers p {
  margin-top: 40px;
  font-size: 16px;
  animation: fadeInUp 0.5s ease-in-out 0.2s;
  animation-fill-mode: both;
}

.privacy_policy_section_suppliers p {
  margin-top: 40px;
  font-size: 16px;
  animation: fadeInUp 0.5s ease-in-out 0.2s;
  animation-fill-mode: both;
}

.section-suppliers a {
  margin-top: 40px;
  font-size: 16px;
  animation: fadeInUp 0.5s ease-in-out 0.2s;
  animation-fill-mode: both;
}

.privacy_policy_section_suppliers a {
  margin-top: 40px;
  font-size: 16px;
  animation: fadeInUp 0.5s ease-in-out 0.2s;
  animation-fill-mode: both;
}

.container {
  margin-top: 40px;
}

.container2 {
  margin-top: 15px;
}

form {
  margin-top: 40px;
  font-size: 16px;
  animation: fadeInUp 0.5s ease-in-out 0.2s;
  animation-fill-mode: both;
}

.zone {
  width: 100%;
  height: 20%;
  display: inline-flex;
}

/*---------------------*/

.main_hrader {
  width: 100%;
  height: 100vh;
  place-items: center;
}

.center_div {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  text-align: center;
  padding-top: 160px;
  min-width: 50vw;
  height: 40vh;
  text-shadow: 0 0 2rem rgba(13, 209, 226, 0.9);
  font-size: 30px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.main_hraders {
  width: 100%;
  height: 100vh;
  place-items: center;
}

.center_divs {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  text-align: center;
  padding-top: 160px;
  min-width: 50vw;
  height: 40vh;
  text-shadow: 0 0 2rem rgba(13, 209, 226, 0.9);
  font-size: 30px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#my-canvas {
  position: unset;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100000;
}

.lk {
  padding-bottom: 90px;
  width: 100%;
  height: auto;
}

/* =========================================================Logo Size===================*/

.znedarzone {
  padding: 15px;
  max-width: 960px;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.sleep-music-logo {
  margin-top: 70px;
  max-width: 960px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.sleep-music-logo a {
  margin-top: 50px;
}

/* Stats */

.Zendarcollection {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.Zendarcollection img {
  width: 100%;
}

.logo-container {
  max-width: 960px;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.Name-grid-view {
  padding-top: 70px;
  text-align: center;
  text-transform: uppercase;
}

.Playlist-Title {
  font-size: 30px;
  text-align: center;
}

.video-grid-view {
  max-width: 960px;
  padding: 9px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  text-transform: uppercase;
  border-radius: 20px;
  background: linear-gradient(
    -45deg,
    #6200ff00,
    #6200ff7a,
    #6200ff00,
    #6200ff7a,
    #6200ff00,
    #6200ff7a,
    #6200ff00
  );
}

.video-grid-view-playlist {
  max-width: 960px;
  padding: 9px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  background-image: linear-gradient(
    -45deg,
    #6200ff00,
    #0fcbff52,
    #0fcbff00,
    #0fcbff52,
    #0fcbff00,
    #0fcbff52,
    #0fcbff00
  );
  border-radius: 20px;
}

.video-grid-view-playlist-thumbnail {
  max-width: 960px;
  padding: 9px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  background-image: linear-gradient(
    -45deg,
    #6200ff00,
    #6200ff7a,
    #0fcbff00,
    #6200ff7a,
    #0fcbff00,
    #6200ff7a,
    #0fcbff00
  );
  border-radius: 20px;
}

.quantumworld-grid-view-playlist-thumbnail {
  max-width: 960px;
  padding: 9px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  background-image: linear-gradient(
    -45deg,
    #6200ff00,
    #6200ff7a,
    #0fcbff00,
    #6200ff7a,
    #0fcbff00,
    #6200ff7a,
    #0fcbff00
  );
  border-radius: 20px;
}

.stats {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  text-transform: uppercase;
}

.stats div span {
  font-size: 160px;
}

.stats div h4 {
  font-size: 24px;
  font-weight: 300;
}

/* Animations */

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(140px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }

  40% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries */

@media (max-width: 960px) {
  .alaska {
    position: fixed;
    top: 40%;
    left: 58%;
    width: 100%;
    display: flex;
    justify-content: stretch;
    align-items: center;
    text-transform: uppercase;
    height: 95px;
    padding: 0 30px;
  }

  .privacy_policy_footer-container {
    width: 100%;
    height: auto;
    padding-top: 2230px;
  }

  /* Hide desktop menu */
  .desktop-main-menu {
    display: none;
  }

  /* Show main mobile items */
  .mobile-only {
    display: block;
  }

  .section-inner-center h3 {
    font-size: 75px;
  }
  .Name-grid-view h3 {
    font-size: 45px;
  }
  .video-grid-view {
    flex-direction: column;
    background: linear-gradient(
      #6200ff00,
      #6200ff7a,
      #6200ff00,
      #6200ff7a,
      #6200ff00,
      #6200ff7a,
      #6200ff00
    );
  }

  .video-grid-view-playlist {
    flex-direction: column;
    background-image: linear-gradient(
      #e91cbd00,
      #0fcbff83,
      #0fcbff00,
      #0fcbff52,
      #0fcbff00,
      #0fcbff25,
      #0fcbff00
    );
  }

  .video-grid-view-playlist-thumbnail {
    flex-direction: column;
    background-image: linear-gradient(#e91cbd00, #6200ff7a, #0fcbff00);
  }

  .quantumworld-grid-view-playlist-thumbnail {
    flex-direction: column;
    background-image: linear-gradient(#e91cbd00, #6200ff7a, #0fcbff00);
  }
}

@media (max-width: 600px) {
  .alaska {
    position: fixed;
    top: 35%;
    left: 9%;
    width: 100%;
    display: flex;
    justify-content: stretch;
    align-items: center;
    text-transform: uppercase;
    height: 95px;
    padding: 0 30px;
  }

  .privacy_policy_footer-container {
    width: 100%;
    height: auto;
    padding-top: 2755px;
  }

  .section-inner {
    bottom: 75px;
    left: 20px;
  }

  .section-inner h2 {
    font-size: 40px;
  }

  footer ul li:first-child {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  footer ul li {
    margin-right: 15px;
  }

  .logo {
    width: 250px;
  }

  .section-inner-center h3 {
    font-size: 50px;
  }

  .Name-grid-view h3 {
    font-size: 35px;
  }

  /* Stats */
  .stats {
    flex-direction: column;
  }

  .video-grid-view {
    flex-direction: column;
    background: linear-gradient(
      #6200ff00,
      #6200ff7a,
      #6200ff00,
      #6200ff7a,
      #6200ff00,
      #6200ff7a,
      #6200ff00
    );
  }

  .video-grid-view-playlist {
    flex-direction: column;
    background-image: linear-gradient(
      #e91cbd00,
      #0fcbff83,
      #0fcbff00,
      #0fcbff52,
      #0fcbff00,
      #0fcbff25,
      #0fcbff00
    );
  }

  .video-grid-view-playlist-thumbnail {
    flex-direction: column;
    background-image: linear-gradient(#e91cbd00, #6200ff7a, #0fcbff00);
  }

  .quantumworld-grid-view-playlist-thumbnail {
    flex-direction: column;
    background-image: linear-gradient(#e91cbd00, #ff00007a, #0fcbff00);
  }

  .Zendarcollection {
    flex-direction: column;
  }

  .stats div {
    margin-bottom: 20px;
  }
}

@media (max-width: 500px) {
}

@media (max-width: 400px) {
  .privacy_policy_section_suppliers {
    position: absolute;
    padding-top: 3840px;
    padding-bottom: 140px;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    width: 80%;
  }
}
