/* ============================ */
/*    Global Styles */
/* ============================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Oswald", sans-serif;
}

/* ============================ */
/*    Navigation Bar */
/* ============================ */

.navbarcontainer {
  position: fixed;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: 100%;
  min-height: 5vh;
  background-color: rgba(4, 4, 8, 0.8);
}
.navwrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 75px;
}
.navbox-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
}
.navbox-1 img {
  width: 100%;
  height: 100%;
}
.navbox-2 {
  display: flex;
  justify-content: end;
  align-items: center;
  width: 100%;
  height: 50px;
  gap: 3rem;
}
.navbox-2 a {
  text-decoration: none;
  font-size: 1.2rem;
  font-family: "Montserrat", sans-serif;
  color: rgb(255, 255, 255);
}
.navbox-2 a:hover {
  transition: color 0.2s ease;
  color: rgb(0, 119, 255);
}
.navbox-3 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 50px;
  gap: 0.5rem;
}
.navlogo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.navbox-3 img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* ============================ */
/*    Hero */
/* ============================ */

.landingcontainer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: 100%;
  min-height: 100vh;
  background-color: black;
}
.landingbg {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("assets/images/backgrounds/bg2.jpg");
  background-position: center;
  background-size: cover;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 400;
  opacity: 10%;
}
.landingvideo {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  opacity: 15%;
}
.landingvideo video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.landingwrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 800px;
  z-index: 500;
}
.landingbox-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 225px;
  color: white;
  font-family: "Josefin Sans", cursive;
}
.landingtitle-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 600px;
  height: 200px;
  font-size: 7.5rem;

  z-index: 400;
  color: rgb(255, 255, 255);
  text-shadow: rgb(16, 112, 255) 0px 0px 10px;
}
.humane {
  opacity: 0;
  filter: blur(5px);
  transform: translateX(80%);
  transition: all 1s;
  transition-delay: all 0.2s;
}
.landingtitle-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 600px;
  height: 200px;

  font-size: 7rem;
  text-shadow: rgb(16, 112, 255) 0px 0px 10px;
  z-index: 500;
}
.interface {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(80%);
  transition: all 1.2s;
  transition-delay: all 0.2s;
}
.landingbox-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  font-size: 2rem;
  letter-spacing: 4px;
  color: #ccc;
  font-weight: bold;
  font-family: "Josefin Sans", sans-serif;
}
.rotating-text {
  display: inline-block;
  color: #58b4ff; /* Highlight color for rotating text */
  transition: opacity 0.5s ease, transform 0.5s ease; /* Smooth fade and movement */
  position: relative;
}

/* ============================ */
/*    Staying Sane Message */
/* ============================ */

#systemscontainer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%;
  min-height: 30vh;
  background: url("assets/images/backgrounds/bg4.jpg");
  background-position: center;
  background-size: cover;
}
.systemswrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 600px;
  width: 100%;
}
.systemsbox-1,
.systemsbox-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
  width: 5000px;
  font-size: 10rem;
}
.systemsbox-1 {
  color: orangered;
  transition: all 0s ease;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 2.5px;
}
.systemsbox-2 {
  background-image: url("assets/images/backgrounds/bg1.jpg");
  background-position: bottom;
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: bold;
  transition: all 0s ease;
}

/* ============================ */
/*    Specialist Message */
/* ============================ */

.diamondcontainer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 30vh;
  background: linear-gradient(
    rgb(4, 4, 8),
    rgb(4, 4, 8),
    rgb(4, 4, 8),
    rgb(4, 4, 8),
    rgb(4, 4, 8),
    rgb(4, 4, 8),
    rgb(4, 4, 8),
    rgb(4, 4, 7),
    rgb(4, 4, 7),
    rgb(3, 3, 5)
  );
}
.diamondbg {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("assets/images/backgrounds/bg3.jpg");
  background-position: center;
  background-size: cover;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 100%;
}
.diamondwrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 700px;
  gap: 0.5rem;
  color: white;
}
.diamondbox-1 {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  width: 100%;
  gap: 1.5rem;
  font-size: 3rem;
}
.we,
.are,
.the,
.only {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(80%);
  transition: all 0.6s;
  transition-delay: all 0.2s;
}
.we {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
}
.are {
  transition: all 0.8s;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
}
.the {
  transition: all 1s;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
}
.only {
  transition: all 1.2s;
}
.diamondbox-2 {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  width: 100%;
  font-size: 6rem;
  letter-spacing: 4px;
  background-image: url("assets/images/backgrounds/bg5.jpg");
  background-position: left;
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: bold;
  opacity: 0;
  filter: blur(5px);
  transform: translateY(80%);
  transition: all 0.8s;
  transition-delay: all 1s;
}
.diamondbox-3 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  width: 100%;
  font-size: 3rem;
  opacity: 0;
  filter: blur(5px);
  transform: translateY(80%);
  transition: all 1.4s;
  transition-delay: all 5s;
}

/* ============================ */
/*    Fluency With Services Message */
/* ============================ */

.fluencycontainer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%;
  min-height: 30vh;
  background: url("assets/images/backgrounds/bg4.jpg");
  background-position: center;
  background-size: cover;
}
.fluencywrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 600px;
  width: 100%;
}
.fluencybox-1,
.fluencybox-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
  width: 5000px;
  font-size: 9rem;
}
.fluencybox-1 {
  background-image: url("assets/images/backgrounds/bg1.jpg");
  background-position: bottom;
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: bold;
}
.fluencybox-2 {
  color: orangered;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 2.5px;
}

/* ============================ */
/*    Studying Message */
/* ============================ */

.devicecontainer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  min-height: 20vh;
  width: 100%;
  background: linear-gradient(
    rgb(4, 4, 8),
    rgb(4, 4, 8),
    rgb(4, 4, 8),
    rgb(4, 4, 8),
    rgb(4, 4, 8),
    rgb(4, 4, 8),
    rgb(4, 4, 8),
    rgb(4, 4, 7),
    rgb(4, 4, 7),
    rgb(3, 3, 5)
  );
}
.devicebg {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("assets/images/backgrounds/bg3.jpg");
  background-position: center;
  background-size: cover;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 400;
  opacity: 100%;
}
.devicewrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 800px;
  width: 1500px;
  color: white;
}
.devicebox-1 {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  width: 100%;
  font-size: 4rem;
  z-index: 500;
  gap: 1rem;
}
.devicebox-1 h2:nth-child(2),
.devicebox-2 h2:nth-child(1) {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
}
.devicebox-2 {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 125px;
  width: 100%;
  font-size: 2.5rem;
  z-index: 500;
  gap: 1rem;
}
.dc-1,
.dc-2,
.dc-3,
.dc-4 {
  opacity: 0;
  filter: blur(5px);
  transform: translateX(80%);
  transition: all 2s;
  transition-delay: all 1s;
}
.dc-1,
.dc-4 {
  background-image: url("assets/images/backgrounds/bg5.jpg");
  background-position: left;
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: bold;
}
.devicebox-3 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 125px;
  width: 100%;
  gap: 1rem;
  font-size: 4rem;
  z-index: 500;
}
.home,
.family,
.deserve {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(80%);
  transition: all 1s;
  transition-delay: all 1s;
}
.family {
  transition: all 2s;
}
.deserve {
  background-image: url("assets/images/backgrounds/bg5.jpg");
  background-position: left;
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: bold;
  transition: all 3s;
}

/* ============================ */
/*    Committed Section */
/* ============================ */

.commitcontainer {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 10vh;
  width: 100%;
}
.commitwrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  width: 100%;
}
.commitbanner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  font-size: 9rem;
  color: orangered;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 2.5px;
}

/* ============================ */
/*    About Section */
/* ============================ */

.aboutcontainer {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40vh;
  width: 100%;
}
.aboutwrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 500px;
  width: 100%;
}
.aboutbox-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  width: 1200px;
  font-size: 3rem;
  background-image: url("assets/images/backgrounds/bg1.jpg");
  background-position: top;
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: bold;
}
.aboutbox-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  width: 1500px;
  font-size: 0.9rem;
  font-family: "Quicksand", sans-serif;
}
.aboutbox-4 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  width: 100%;
  gap: 2rem;
}
.aboutlogo {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000729ee;
  border-radius: 10px;
  height: 100px;
  width: 100px;
}
.aboutlogo img {
  width: 100%;
  height: 100%;
}

/* ============================ */
/*    Friend Message */
/* ============================ */

#levelcontainer {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 35vh;
  width: 100%;
  background: linear-gradient(
    rgb(4, 4, 8),
    rgb(4, 4, 8),
    rgb(4, 4, 8),
    rgb(4, 4, 8),
    rgb(4, 4, 8),
    rgb(4, 4, 8),
    rgb(4, 4, 8),
    rgb(4, 4, 7),
    rgb(4, 4, 7),
    rgb(3, 3, 5)
  );
  background: url("assets/images/backgrounds/bg3.jpg");
  background-position: center;
  background-size: cover;
}
.levelwrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 500px;
  width: 100%;
}
.levelbanner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  color: white;
  font-size: 3rem;
  gap: 1.5rem;
}
.lb-1,
.lb-2,
.lb-3,
.lb-4 {
  font-family: "Press Start 2P", cursive;
  background-image: url("assets/images/backgrounds/bg5.jpg");
  background-position: right;
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: bold;
  opacity: 0;
  filter: blur(5px);
  transform: translateY(80%);
  transition: all 0.8s;
  transition-delay: all 1s;
}
.lb-2 {
  transition: all 1.2s;
}
.lb-3 {
  transition: all 1.6s;
}
.lb-4 {
  transition: all 2s;
}

/* ============================ */
/*    Contact Section */
/* ============================ */

.contactcontainer {
  overflow: hidden;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 40vh;
  background-image: url("assets/images/backgrounds/bg4.jpg");
  background-position: center;
  background-size: cover;
}
.contactwrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 500px;
  width: 100%;
}
.contactmainbox {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 350px;
  width: 100%;
  gap: 1.5rem;
}
.contactbox-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 250px;
  width: 400px;
  background-color: rgb(15, 15, 15);
  text-decoration: none;
  border-radius: 10px;
  color: white;
  text-shadow: rgb(255, 255, 255) 0px 1px;
  transition: transform 0.3s ease-in-out;
}
.contactbox-1:hover {
  color: white;
  text-shadow: rgb(255, 255, 255) 1px 1px;
  background-color: #1f1f1f;
  transform: scale(1.05);
}
.contactbox-1:nth-child(1) {
  background-color: rgb(15, 15, 15);
}
.contactbox-1:nth-child(2) {
  background-color: rgb(15, 15, 15);
}
.contactbox-1:nth-child(3) {
  background-color: rgb(15, 15, 15);
}
.contactbox-1:nth-child(1) h2 {
  color: rgb(255, 67, 10);
}
.contactbox-1:nth-child(2) h2 {
  color: rgb(252, 255, 91);
}
.contactbox-1:nth-child(3) h2 {
  color: rgb(57, 149, 255);
}
.contactbox-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  font-size: 1.5rem;
  font-family: "Press Start 2p", sans-serif;
}
.arrow {
  color: #242424;
}

/* ============================ */
/*    Footer */
/* ============================ */

.footercontainer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 10vh;
  background: linear-gradient(
    rgb(4, 4, 8),
    rgb(4, 4, 8),
    rgb(4, 4, 8),
    rgb(4, 4, 8),
    rgb(4, 4, 8),
    rgb(4, 4, 8),
    rgb(4, 4, 8),
    rgb(4, 4, 7),
    rgb(4, 4, 7),
    rgb(3, 3, 5)
  );
}
.footerwrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100px;
  width: 100%;
}
.footerbox-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 100%;
  font-size: 1.5rem;
  background-image: url("assets/images/backgrounds/bg1.jpg");
  background-position: top;
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: bold;
}
.footerwrapper a {
  text-decoration: none;
}
.footerwrapper h2:hover {
  transition: 0.6s ease;
  color: rgb(255, 222, 195);
}
.footerbox-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 100%;
  color: rgb(49, 49, 49);
  gap: 0.4rem;
}
.footerbox-2 a {
  font-size: 0.8rem;
}
.footerbox-2 h2 {
  font-size: 0.8rem;
}

/* Initial Animation */
.showgeneric-1 {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

/* ============================ */
/*    Media Queries */
/* ============================ */

@media (max-width: 1750px) {
  .systemswrapper {
    height: 500px;
    width: 100%;
  }
  .systemsbox-1,
  .systemsbox-2 {
    height: 200px;
    font-size: 8rem;
  }
  .fluencywrapper {
    height: 500px;
    width: 100%;
  }
  .fluencybox-1,
  .fluencybox-2 {
    height: 250px;
    font-size: 7.8rem;
  }
  .commitwrapper {
    height: 300px;
  }
  .commitbanner {
    font-size: 8rem;
  }
}

@media (max-width: 1536px) {
  .navwrapper {
    height: 40px;
  }
  .navbox-1 {
    width: 60px;
    height: 60px;
  }
  .navbox-2 {
    width: 100%;
    height: 40px;
    gap: 2rem;
    padding-right: 20px;
  }
  .navbox-2 a {
    font-size: 1.2rem;
  }
  .navbox-3 {
    width: 200px;
    height: 40px;
    gap: 0.5rem;
  }
  .navlogo {
    width: 25px;
    height: 25px;
  }
  .landingwrapper {
    width: 100%;
    height: 800px;
  }
  .landingbox-1 {
    width: 1250px;
    height: 175px;
  }
  .landingtitle-1 {
    width: 500px;
    height: 150px;
    font-size: 6.5rem;
    text-shadow: rgb(16, 112, 255) 0px 0px 10px;
  }
  .landingtitle-2 {
    width: 500px;
    height: 150px;
    font-size: 6.5rem;
    text-shadow: rgb(16, 112, 255) 0px 0px 10px;
  }
  .landingbox-2 {
    width: 100%;
    height: 100px;
    font-size: 1.5rem;
  }
  .systemswrapper {
    height: 400px;
    width: 100%;
  }
  .systemsbox-1,
  .systemsbox-2 {
    height: 175px;
    font-size: 6.8rem;
  }
  .diamondcontainer {
    min-height: 30vh;
  }
  .diamondwrapper {
    height: 700px;
    gap: 0.5rem;
  }
  .diamondbox-1 {
    height: 100px;
    width: 100%;
    gap: 1.25rem;
    font-size: 3rem;
  }
  .diamondbox-2 {
    height: 150px;
    width: 100%;
    font-size: 4.5rem;
    letter-spacing: 3px;
  }
  .diamondbox-3 {
    height: 100px;
    width: 100%;
    font-size: 3rem;
  }
  .fluencywrapper {
    height: 400px;
    width: 100%;
  }
  .fluencybox-1,
  .fluencybox-2 {
    height: 250px;
    font-size: 6.6rem;
  }
  .devicecontainer {
    min-height: 20vh;
  }
  .devicewrapper {
    height: 700px;
    width: 1250px;
  }
  .devicebox-1 {
    height: 100px;
    width: 100%;
    font-size: 3.5rem;
    gap: 1rem;
  }
  .devicebox-2 {
    height: 125px;
    width: 100%;
    font-size: 2.25rem;
    gap: 1rem;
  }
  .devicebox-3 {
    height: 100px;
    width: 100%;
    gap: 1rem;
    font-size: 3rem;
  }
  .commitcontainer {
    min-height: 10vh;
  }
  .commitwrapper {
    height: 250px;
  }
  .commitbanner {
    font-size: 7rem;
  }
  .aboutcontainer {
    min-height: 40vh;
  }
  .aboutwrapper {
    height: 500px;
  }
  .aboutbox-1 {
    height: 200px;
    width: 1200px;
    font-size: 2.8rem;
  }
  .aboutbox-2 {
    height: 100px;
    width: 1000px;
    font-size: 0.8rem;
  }
  .aboutbox-4 {
    height: 200px;
    width: 100%;
    gap: 2rem;
  }
  .aboutlogo {
    height: 100px;
    width: 100px;
  }
  .levelwrapper {
    height: 450px;
  }
  .levelbanner {
    font-size: 2.8rem;
    gap: 1.5rem;
  }
  .contactcontainer {
    min-height: 40vh;
  }
  .contactwrapper {
    height: 500px;
  }
  .contactbanner {
    height: 125px;
    font-size: 3.8rem;
    gap: 1.5rem;
  }
  .contactbanner h2:nth-child(2),
  .contactbanner h2:nth-child(4) {
    -webkit-text-stroke-width: 2px;
  }
  .contactmainbox {
    height: 350px;
    gap: 3rem;
  }
  .contactbox-1 {
    height: 250px;
    width: 350px;
  }
  .contactbox-2 {
    height: 100px;
    width: 100%;
    font-size: 1.4rem;
  }
  .contactbox-3 {
    height: 150px;
    width: 100%;
    font-size: 1rem;
  }
  .footercontainer {
    min-height: 10vh;
  }
  .footerwrapper {
    height: 100px;
  }
  .footerbox-1 {
    height: 60px;
    font-size: 1.5rem;
  }
  .footerbox-2 {
    height: 40px;
    gap: 0.4rem;
  }
  .footerbox-2 a {
    font-size: 0.8rem;
  }
  .footerbox-2 h2 {
    font-size: 0.8rem;
  }
  .privacycontainer {
    min-height: 90vh;
  }
  .privacywrapper {
    height: 1200px;
    gap: 1rem;
  }
  .privacyboxtitle {
    width: 1200px;
    height: 100px;
    font-size: 2rem;
  }
  .privacybox-1,
  .privacybox-2,
  .privacybox-3,
  .privacybox-4,
  .privacybox-5,
  .privacybox-6 {
    height: 100px;
    width: 1200px;
  }
}

@media (max-width: 1280px) {
  .navwrapper {
    height: 40px;
  }
  .navbox-1 {
    width: 60px;
    height: 60px;
  }
  .navbox-2 {
    width: 100%;
    height: 40px;
    gap: 2rem;
    padding-right: 20px;
  }
  .navbox-2 a {
    font-size: 1.1rem;
  }
  .navbox-3 {
    width: 200px;
    height: 40px;
    gap: 0.5rem;
  }
  .navlogo {
    width: 25px;
    height: 25px;
  }
  .landingwrapper {
    width: 100%;
    height: 800px;
  }
  .landingbox-1 {
    width: 1000px;
    height: 175px;
  }
  .landingtitle-1 {
    width: 400px;
    height: 150px;
    font-size: 5rem;
    text-shadow: rgb(16, 112, 255) 0px 0px 10px;
  }
  .landingtitle-2 {
    width: 400px;
    height: 150px;
    font-size: 5rem;
    text-shadow: rgb(16, 112, 255) 0px 0px 10px;
  }
  .landingbox-2 {
    width: 100%;
    height: 75px;
    font-size: 1.5rem;
  }
  .systemswrapper {
    height: 300px;
    width: 100%;
  }
  .systemsbox-1,
  .systemsbox-2 {
    height: 150px;
    font-size: 5.2rem;
  }
  .diamondcontainer {
    min-height: 30vh;
  }
  .diamondwrapper {
    height: 600px;
    gap: 0.5rem;
  }
  .diamondbox-1 {
    height: 75px;
    width: 100%;
    gap: 1.25rem;
    font-size: 2.8rem;
  }
  .diamondbox-2 {
    height: 150px;
    width: 100%;
    font-size: 3.8rem;
    letter-spacing: 3px;
  }
  .diamondbox-3 {
    height: 75px;
    width: 100%;
    font-size: 2.6rem;
  }
  .fluencywrapper {
    height: 300px;
    width: 100%;
  }
  .fluencybox-1,
  .fluencybox-2 {
    height: 250px;
    font-size: 5.2rem;
  }
  .devicecontainer {
    min-height: 30vh;
  }
  .devicewrapper {
    height: 600px;
    width: 1000px;
  }
  .devicebox-1 {
    height: 100px;
    width: 100%;
    font-size: 3rem;
    gap: 1rem;
  }
  .devicebox-2 {
    height: 100px;
    width: 100%;
    font-size: 2rem;
    gap: 1rem;
  }
  .devicebox-3 {
    height: 100px;
    width: 100%;
    gap: 1rem;
    font-size: 2.4rem;
  }
  .commitwrapper {
    height: 200px;
  }
  .commitbanner {
    font-size: 5.5rem;
  }
  .aboutcontainer {
    min-height: 30vh;
  }
  .aboutwrapper {
    height: 450px;
  }
  .aboutbox-1 {
    height: 150px;
    width: 1200px;
    font-size: 2.5rem;
  }
  .aboutbox-2 {
    height: 100px;
    width: 900px;
    font-size: 0.7rem;
  }
  .aboutbox-4 {
    height: 150px;
    width: 100%;
    gap: 2rem;
  }
  .aboutlogo {
    height: 75px;
    width: 75px;
  }
  .levelwrapper {
    height: 450px;
  }
  .levelbanner {
    font-size: 2.2rem;
    gap: 1.5rem;
  }
  .contactcontainer {
    min-height: 40vh;
  }
  .contactwrapper {
    height: 500px;
  }
  .contactbanner {
    height: 125px;
    font-size: 3.5rem;
    gap: 1.5rem;
  }
  .contactbanner h2:nth-child(2),
  .contactbanner h2:nth-child(4) {
    -webkit-text-stroke-width: 2px;
  }
  .contactmainbox {
    height: 300px;
    gap: 2rem;
  }
  .contactbox-1 {
    height: 200px;
    width: 300px;
  }
  .contactbox-2 {
    height: 100px;
    width: 100%;
    font-size: 1.2rem;
  }
  .contactbox-3 {
    height: 150px;
    width: 100%;
    font-size: 0.9rem;
  }
  .footercontainer {
    min-height: 10vh;
  }
  .footerwrapper {
    height: 100px;
  }
  .footerbox-1 {
    height: 60px;
    font-size: 1.5rem;
  }
  .footerbox-2 {
    height: 40px;
    gap: 0.4rem;
  }
  .footerbox-2 a {
    font-size: 0.8rem;
  }
  .footerbox-2 h2 {
    font-size: 0.8rem;
  }
  .privacycontainer {
    min-height: 90vh;
  }
  .privacywrapper {
    height: 1200px;
    gap: 1rem;
  }
  .privacyboxtitle {
    width: 900px;
    height: 100px;
    font-size: 1.8rem;
  }
  .privacybox-1,
  .privacybox-2,
  .privacybox-3,
  .privacybox-4,
  .privacybox-5,
  .privacybox-6 {
    height: 100px;
    width: 900px;
    font-size: 0.9rem;
  }
}

@media (max-width: 1024px) {
  .navwrapper {
    height: 40px;
  }
  .navbox-1 {
    width: 60px;
    height: 60px;
  }
  .navbox-2 {
    width: 100%;
    height: 40px;
    gap: 2rem;
  }
  .navbox-2 a {
    font-size: 1.1rem;
  }
  .navbox-3 {
    width: 200px;
    height: 40px;
    gap: 0.5rem;
  }
  .navlogo {
    width: 25px;
    height: 25px;
  }
  .landingwrapper {
    width: 100%;
    height: 700px;
  }
  .landingbox-1 {
    align-items: end;
    width: 750px;
    height: 150px;
  }
  .landingtitle-1 {
    width: 325px;
    height: 100px;
    font-size: 3.8rem;
    text-shadow: rgb(16, 112, 255) 0px 0px 10px;
  }
  .landingtitle-2 {
    width: 325px;
    height: 100px;
    font-size: 3.8rem;
    text-shadow: rgb(16, 112, 255) 0px 0px 10px;
  }
  .landingbox-2 {
    width: 100%;
    height: 50px;
    font-size: 1rem;
  }
  #systemscontainer {
    min-height: 20vh;
  }
  .systemswrapper {
    height: 225px;
    width: 100%;
  }
  .systemsbox-1,
  .systemsbox-2 {
    width: 1000px;
    height: 100px;
    font-size: 4rem;
  }
  .systemsbox-1 {
    -webkit-text-stroke-width: 2px;
  }
  .diamondcontainer {
    min-height: 30vh;
  }
  .diamondwrapper {
    height: 600px;
    gap: 0.5rem;
  }
  .diamondbox-1 {
    height: 75px;
    width: 100%;
    gap: 1.25rem;
    font-size: 2.4rem;
  }
  .diamondbox-2 {
    height: 100px;
    width: 100%;
    font-size: 3rem;
    letter-spacing: 3px;
  }
  .diamondbox-3 {
    height: 75px;
    width: 100%;
    font-size: 2.1rem;
  }
  .fluencycontainer {
    min-height: 20vh;
  }
  .fluencywrapper {
    height: 225px;
    width: 100%;
  }
  .fluencybox-1,
  .fluencybox-2 {
    width: 1000px;
    height: 250px;
    font-size: 3.9rem;
  }
  .fluencybox-2 {
    -webkit-text-stroke-width: 2px;
  }
  .devicecontainer {
    min-height: 30vh;
  }
  .devicewrapper {
    height: 600px;
    width: 750px;
  }
  .devicebox-1 {
    height: 75px;
    width: 100%;
    font-size: 2.25rem;
    gap: 1rem;
  }
  .devicebox-2 {
    height: 100px;
    width: 100%;
    font-size: 1.6rem;
    gap: 1rem;
  }
  .devicebox-3 {
    height: 75px;
    width: 100%;
    gap: 1rem;
    font-size: 1.8rem;
  }
  .commitcontainer {
    min-height: 15vh;
  }
  .commitwrapper {
    height: 150px;
  }
  .commitbanner {
    font-size: 4.2rem;
    -webkit-text-stroke-width: 2px;
  }
  .aboutcontainer {
    min-height: 30vh;
  }
  .aboutwrapper {
    height: 450px;
  }
  .aboutbox-1 {
    height: 125px;
    width: 1200px;
    font-size: 2.2rem;
  }
  .aboutbox-2 {
    height: 150px;
    width: 600px;
    font-size: 0.7rem;
  }
  .aboutbox-4 {
    height: 150px;
    width: 100%;
    gap: 1.5rem;
  }
  .aboutlogo {
    height: 50px;
    width: 50px;
  }
  .levelwrapper {
    height: 425px;
  }
  .levelbanner {
    font-size: 1.6rem;
    gap: 1rem;
  }
  .contactcontainer {
    min-height: 40vh;
  }
  .contactwrapper {
    height: 600px;
  }
  .contactbanner {
    height: 100px;
    font-size: 2.6rem;
    gap: 1rem;
  }
  .contactbanner h2:nth-child(2),
  .contactbanner h2:nth-child(4) {
    -webkit-text-stroke-width: 1.5px;
  }
  .contactmainbox {
    flex-direction: column;
    height: 500px;
    gap: 1rem;
  }
  .contactbox-1 {
    height: 140px;
    width: 600px;
    gap: 1rem;
  }
  .contactbox-2 {
    height: 50px;
    width: 100%;
    font-size: 1.5rem;
  }
  .contactbox-3 {
    height: 75px;
    width: 100%;
    font-size: 0.8rem;
  }
  .footercontainer {
    min-height: 10vh;
  }
  .footerwrapper {
    height: 100px;
  }
  .footerbox-1 {
    height: 60px;
    font-size: 1.5rem;
  }
  .footerbox-2 {
    height: 40px;
    gap: 0.4rem;
  }
  .footerbox-2 a {
    font-size: 0.8rem;
  }
  .footerbox-2 h2 {
    font-size: 0.8rem;
  }
  .privacycontainer {
    min-height: 90vh;
  }
  .privacywrapper {
    height: 1100px;
    gap: 1rem;
  }
  .privacyboxtitle {
    width: 700px;
    height: 75px;
    font-size: 1.6rem;
  }
  .privacybox-1,
  .privacybox-2,
  .privacybox-3,
  .privacybox-4,
  .privacybox-5,
  .privacybox-6 {
    height: 100px;
    width: 700px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .navwrapper {
    height: 40px;
  }
  .navbox-1 {
    width: 55px;
    height: 55px;
  }
  .navbox-2 {
    width: 100%;
    height: 40px;
    gap: 1rem;
  }
  .navbox-2 a {
    font-size: 1rem;
  }
  .navbox-3 {
    width: 200px;
    height: 40px;
    gap: 0.5rem;
  }
  .navlogo {
    width: 20px;
    height: 20px;
  }
  .landingwrapper {
    width: 100%;
    height: 600px;
  }
  .landingbox-1 {
    align-items: end;
    width: 600px;
    height: 125px;
  }
  .landingtitle-1 {
    width: 275px;
    height: 100px;
    font-size: 3.2rem;
    text-shadow: rgb(16, 112, 255) 0px 0px 10px;
  }
  .landingtitle-2 {
    width: 275px;
    height: 100px;
    font-size: 3.2rem;
    text-shadow: rgb(16, 112, 255) 0px 0px 10px;
  }
  .landingbox-2 {
    width: 100%;
    height: 50px;
    font-size: 0.8rem;
  }
  #systemscontainer {
    min-height: 18vh;
  }
  .systemswrapper {
    height: 180px;
    width: 100%;
  }
  .systemsbox-1,
  .systemsbox-2 {
    width: 1000px;
    height: 85px;
    font-size: 3.2rem;
  }
  .systemsbox-1 {
    -webkit-text-stroke-width: 1.5px;
  }
  .diamondcontainer {
    min-height: 30vh;
  }
  .diamondwrapper {
    height: 600px;
    gap: 0.5rem;
  }
  .diamondbox-1 {
    height: 50px;
    width: 100%;
    gap: 1.25rem;
    font-size: 2rem;
  }
  .diamondbox-2 {
    height: 100px;
    width: 100%;
    font-size: 2.4rem;
    letter-spacing: 2px;
  }
  .diamondbox-3 {
    height: 50px;
    width: 100%;
    font-size: 1.8rem;
  }
  .fluencycontainer {
    min-height: 18vh;
  }
  .fluencywrapper {
    height: 180px;
    width: 100%;
  }
  .fluencybox-1,
  .fluencybox-2 {
    width: 1000px;
    height: 250px;
    font-size: 3.2rem;
  }
  .fluencybox-2 {
    -webkit-text-stroke-width: 1.5px;
  }
  .devicecontainer {
    min-height: 30vh;
  }
  .devicewrapper {
    height: 600px;
    width: 600px;
  }
  .devicebox-1 {
    height: 75px;
    width: 100%;
    font-size: 1.8rem;
    gap: 1rem;
  }
  .devicebox-2 {
    height: 75px;
    width: 100%;
    font-size: 1.4rem;
    gap: 1rem;
  }
  .devicebox-3 {
    height: 75px;
    width: 100%;
    gap: 1rem;
    font-size: 1.5rem;
  }
  .commitcontainer {
    min-height: 15vh;
  }
  .commitwrapper {
    height: 150px;
  }
  .commitbanner {
    font-size: 3.5rem;
    -webkit-text-stroke-width: 1.5px;
  }
  .aboutcontainer {
    min-height: 30vh;
  }
  .aboutwrapper {
    height: 400px;
  }
  .aboutbox-1 {
    height: 100px;
    width: 1200px;
    font-size: 2rem;
  }
  .aboutbox-2 {
    height: 150px;
    width: 500px;
    font-size: 0.6rem;
  }
  .aboutbox-4 {
    height: 100px;
    width: 100%;
    gap: 1rem;
  }
  .aboutlogo {
    height: 50px;
    width: 50px;
  }
  .levelwrapper {
    height: 425px;
  }
  .levelbanner {
    font-size: 1.4rem;
    gap: 1rem;
  }
  .contactcontainer {
    min-height: 40vh;
  }
  .contactwrapper {
    height: 600px;
  }
  .contactbanner {
    height: 100px;
    font-size: 2.2rem;
    gap: 1rem;
  }
  .contactbanner h2:nth-child(2),
  .contactbanner h2:nth-child(4) {
    -webkit-text-stroke-width: 1.5px;
  }
  .contactmainbox {
    flex-direction: column;
    height: 500px;
    gap: 1rem;
  }
  .contactbox-1 {
    height: 130px;
    width: 600px;
    gap: 1rem;
  }
  .contactbox-2 {
    height: 50px;
    width: 100%;
    font-size: 1.5rem;
  }
  .contactbox-3 {
    height: 75px;
    width: 100%;
    font-size: 0.8rem;
  }
  .footercontainer {
    min-height: 8vh;
  }
  .footerwrapper {
    height: 90px;
  }
  .footerbox-1 {
    height: 50px;
    font-size: 1.2rem;
  }
  .footerbox-2 {
    height: 40px;
    gap: 0.4rem;
  }
  .footerbox-2 a {
    font-size: 0.8rem;
  }
  .footerbox-2 h2 {
    font-size: 0.8rem;
  }
  .privacycontainer {
    min-height: 90vh;
  }
  .privacywrapper {
    height: 1100px;
    gap: 1rem;
  }
  .privacyboxtitle {
    width: 600px;
    height: 75px;
    font-size: 1.5rem;
  }
  .privacybox-1,
  .privacybox-2,
  .privacybox-3,
  .privacybox-4,
  .privacybox-5,
  .privacybox-6 {
    height: 100px;
    width: 600px;
    font-size: 0.9rem;
  }
}

@media (max-width: 640px) {
  .navwrapper {
    height: 75px;
  }
  .navbox-1 {
    width: 40px;
    height: 40px;
  }
  .navbox-2 {
    width: 225px;
    height: 25px;
    gap: 0.8rem;
  }
  .navbox-2 a {
    font-size: 0.8rem;
  }
  .navbox-3 {
    width: 50px;
    height: 25px;
    gap: 0.5rem;
  }
  .navlogo {
    width: 20px;
    height: 20px;
  }
  .landingvideo {
    opacity: 30%;
  }
  .landingwrapper {
    width: 100%;
    height: 550px;
  }
  .landingbox-1 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 450px;
    height: 200px;
  }
  .landingtitle-1 {
    justify-content: center;
    width: 350px;
    height: 75px;
    font-size: 3rem;
    text-shadow: rgb(16, 112, 255) 0px 0px 8px;
  }
  .landingtitle-2 {
    justify-content: center;
    width: 350px;
    height: 75px;
    font-size: 3rem;
    text-shadow: rgb(16, 112, 255) 0px 0px 8px;
  }
  .landingbox-2 {
    width: 100%;
    height: 25px;
    font-size: 0.8rem;
  }
  #systemscontainer {
    min-height: 15vh;
  }
  .systemswrapper {
    height: 160px;
    width: 100%;
  }
  .systemsbox-1,
  .systemsbox-2 {
    width: 1000px;
    height: 75px;
    font-size: 2.5rem;
  }
  .systemsbox-1 {
    -webkit-text-stroke-width: 1px;
  }
  .diamondcontainer {
    min-height: 30vh;
  }
  .diamondwrapper {
    height: 600px;
    gap: 0.5rem;
  }
  .diamondbox-1 {
    height: 50px;
    width: 100%;
    gap: 1.25rem;
    font-size: 1.8rem;
  }
  .diamondbox-2 {
    height: 100px;
    width: 100%;
    font-size: 2.2rem;
    letter-spacing: 2px;
  }
  .diamondbox-3 {
    height: 50px;
    width: 100%;
    font-size: 1.6rem;
  }
  .diamondbg {
    opacity: 60%;
  }
  .fluencycontainer {
    min-height: 15vh;
  }
  .fluencywrapper {
    height: 160px;
    width: 100%;
  }
  .fluencybox-1,
  .fluencybox-2 {
    width: 1000px;
    height: 250px;
    font-size: 2.4rem;
  }
  .fluencybox-2 {
    -webkit-text-stroke-width: 1px;
  }
  .devicecontainer {
    min-height: 30vh;
  }
  .devicewrapper {
    height: 600px;
    width: 450px;
  }
  .devicebox-1 {
    height: 75px;
    width: 100%;
    font-size: 1.4rem;
    gap: 0.5rem;
  }
  .devicebox-2 {
    height: 50px;
    width: 100%;
    font-size: 1.1rem;
    gap: 0.5rem;
  }
  .devicebox-3 {
    height: 75px;
    width: 100%;
    gap: 0.5rem;
    font-size: 1.15rem;
  }
  .devicebox-1 h2:nth-child(2),
  .devicebox-2 h2:nth-child(1) {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 0.5px;
  }
  .devicebg {
    background: url("assets/images/backgrounds/bg2.jpg");
    background-position: center;
    background-size: cover;
    opacity: 50%;
  }
  .commitcontainer {
    min-height: 10vh;
  }
  .commitwrapper {
    height: 100px;
  }
  .commitbanner {
    font-size: 2.55rem;
    -webkit-text-stroke-width: 1px;
  }
  .aboutcontainer {
    min-height: 30vh;
  }
  .aboutwrapper {
    height: 400px;
  }
  .aboutbox-1 {
    height: 100px;
    width: 1200px;
    font-size: 1.5rem;
  }
  .aboutbox-2 {
    height: 150px;
    width: 400px;
    font-size: 0.6rem;
  }
  .aboutbox-4 {
    height: 100px;
    width: 100%;
    gap: 0.5rem;
  }
  .aboutlogo {
    height: 40px;
    width: 40px;
  }
  .levelwrapper {
    height: 425px;
  }
  .levelbanner {
    font-size: 1rem;
    gap: 1rem;
  }
  .contactcontainer {
    min-height: 40vh;
  }
  .contactwrapper {
    height: 550px;
  }
  .contactbanner {
    height: 75px;
    font-size: 1.6rem;
    gap: 1rem;
  }
  .contactbanner h2:nth-child(2),
  .contactbanner h2:nth-child(4) {
    -webkit-text-stroke-width: 1px;
  }
  .contactmainbox {
    flex-direction: column;
    height: 500px;
    gap: 1rem;
  }
  .contactbox-1 {
    height: 130px;
    width: 100%;
    gap: 0.5rem;
  }
  .contactbox-2 {
    height: 50px;
    width: 100%;
    font-size: 1.3rem;
  }
  .contactbox-3 {
    height: 75px;
    width: 100%;
    font-size: 0.9rem;
  }
  .footercontainer {
    min-height: 8vh;
  }
  .footerwrapper {
    height: 90px;
  }
  .footerbox-1 {
    height: 50px;
    font-size: 1.2rem;
  }
  .footerbox-2 {
    height: 40px;
    gap: 0.4rem;
  }
  .footerbox-2 a {
    font-size: 0.8rem;
  }
  .footerbox-2 h2 {
    font-size: 0.8rem;
  }
  .privacycontainer {
    min-height: 90vh;
  }
  .privacywrapper {
    height: 1100px;
    gap: 1rem;
  }
  .privacyboxtitle {
    width: 400px;
    height: 75px;
    font-size: 1rem;
  }
  .privacybox-1,
  .privacybox-2,
  .privacybox-3,
  .privacybox-4,
  .privacybox-5,
  .privacybox-6 {
    height: 100px;
    width: 400px;
    font-size: 0.8rem;
  }
}

@media (max-width: 475px) {
  .navbarcontainer {
    padding: 0px;
    padding-right: 10px;
    padding-left: 10px;
  }
  .navwrapper {
    height: 75px;
    gap: 0.5rem;
  }
  .navbox-1 {
    width: 35px;
    height: 35px;
  }
  .navbox-2 {
    padding-bottom: 10px;
    width: 225px;
    height: 40px;
    gap: 0.6rem;
    border-radius: 10px;
  }
  .navbox-2 a {
    font-size: 0.8rem;
  }
  .navbox-2 a:hover {
    color: rgb(255, 255, 255);
  }
  .navbox-3 {
    width: 50px;
    height: 25px;
    gap: 0.25rem;
  }
  .navlogo {
    width: 15px;
    height: 15px;
  }
  .landingwrapper {
    width: 100%;
    height: 550px;
  }
  .landingbox-1 {
    width: 300px;
    height: 175px;
  }
  .landingtitle-1 {
    width: 250px;
    height: 75px;
    font-size: 2.5rem;
    text-shadow: rgb(16, 112, 255) 0px 0px 3.5px;
  }
  .landingtitle-2 {
    width: 250px;
    height: 75px;
    font-size: 2.5rem;
    text-shadow: rgb(16, 112, 255) 0px 0px 3.5px;
  }
  .landingbox-2 {
    width: 75%;
    height: 75px;
    font-size: 1rem;
  }
  .landingbox-2 h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }
  #systemscontainer {
    min-height: 10vh;
  }
  .systemswrapper {
    height: 100px;
    width: 100%;
  }
  .systemsbox-1,
  .systemsbox-2 {
    width: 1000px;
    height: 50px;
    font-size: 1.8rem;
  }
  .diamondcontainer {
    max-height: 50vh;
  }
  .diamondwrapper {
    height: 500px;
    gap: 0.25rem;
  }
  .diamondbox-1 {
    height: 50px;
    width: 100%;
    gap: 0.6rem;
    font-size: 1.6rem;
  }
  .we {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 0.5px;
  }
  .are {
    transition: all 0.8s;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 0.5px;
  }
  .the {
    transition: all 1s;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 0.5px;
  }
  .diamondbox-2 {
    height: 75px;
    width: 100%;
    font-size: 1.8rem;
    letter-spacing: 0px;
  }
  .diamondbox-3 {
    height: 50px;
    width: 100%;
    font-size: 1.2rem;
  }
  .fluencycontainer {
    min-height: 10vh;
  }
  .fluencywrapper {
    height: 100px;
    width: 100%;
  }
  .fluencybox-1,
  .fluencybox-2 {
    width: 1000px;
    height: 250px;
    font-size: 1.8rem;
  }
  .devicecontainer {
    min-height: 30vh;
  }
  .devicewrapper {
    height: 500px;
    width: 350px;
  }
  .devicebox-1 {
    flex-direction: column;
    height: 100px;
    width: 100%;
    font-size: 0rem;
    gap: 0rem;
  }
  .dc-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 350px;
    font-size: 3.5rem;
  }
  .dc-2 {
    font-size: 2.5rem;
  }
  .devicebox-2 {
    flex-wrap: wrap;
    height: auto;
    width: 100%;
  }
  .dc-3 {
    text-align: center;
    font-size: 2.75rem;
  }
  .dc-4 {
    font-size: 2rem;
  }
  .devicebox-3 {
    flex-wrap: wrap;
    height: auto;
    width: 100%;
    font-size: 1.5rem;
  }
  .deserve {
    font-size: 2.75rem;
  }
  .devicebox-1 h2:nth-child(2),
  .devicebox-2 h2:nth-child(1) {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 0.3px;
  }
  .commitcontainer {
    min-height: 10vh;
  }
  .commitwrapper {
    height: 100px;
  }
  .commitbanner {
    font-size: 2rem;
  }
  .aboutcontainer {
    min-height: 25vh;
  }
  .aboutwrapper {
    height: 350px;
  }
  .aboutbox-1 {
    height: 75px;
    width: 1200px;
    font-size: 1.2rem;
  }
  .aboutbox-2 {
    height: 200px;
    width: 325px;
    font-size: 0.6rem;
  }
  .aboutbox-4 {
    height: 75px;
    width: 100%;
    gap: 0.5rem;
  }
  .aboutlogo {
    height: 35px;
    width: 35px;
  }
  .levelwrapper {
    height: 325px;
  }
  .levelbanner {
    height: 100px;
    flex-wrap: wrap;
    font-size: 1.5rem;
    gap: 0.5rem;
  }
  .contactcontainer {
    min-height: 40vh;
    padding: 0px;
  }
  .contactwrapper {
    height: 500px;
  }
  .contactbanner {
    height: 75px;
    font-size: 1.3rem;
    gap: 0.5rem;
  }
  .contactbanner h2:nth-child(2),
  .contactbanner h2:nth-child(4) {
    -webkit-text-stroke-width: 1px;
  }
  .contactmainbox {
    flex-direction: column;
    height: 450px;
    gap: 1rem;
  }
  .contactbox-1 {
    height: 120px;
    width: 80%;
    gap: 0.5rem;
  }
  .contactbox-2 {
    height: 50px;
    width: 100%;
    font-size: 1rem;
  }
  .contactbox-3 {
    height: 75px;
    width: 100%;
    font-size: 0.8rem;
  }
  .footercontainer {
    min-height: 8vh;
  }
  .footerwrapper {
    height: 80px;
  }
  .footerbox-1 {
    height: 40px;
    font-size: 1rem;
  }
  .footerbox-2 {
    height: 40px;
    gap: 0.2rem;
  }
  .footerbox-2 a {
    font-size: 0.7rem;
  }
  .footerbox-2 h2 {
    font-size: 0.7rem;
  }
  .privacycontainer {
    min-height: 80vh;
  }
  .privacywrapper {
    height: 950px;
    gap: 1rem;
  }
  .privacyboxtitle {
    width: 340px;
    height: 50px;
    font-size: 0.8rem;
  }
  .privacybox-1,
  .privacybox-2,
  .privacybox-3,
  .privacybox-4,
  .privacybox-5,
  .privacybox-6 {
    height: 100px;
    width: 340px;
    font-size: 0.7rem;
  }
}
