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

body {
  margin: 0;
  /* overflow: hidden; */
}

.webgl {
  position: fixed;
  top: 0;
  left: 0;
  outline: none;
}

canvas {
  margin: 0;
  position: fixed;
  background-color: black;
  width: 100%;
  height: 100%;
}
.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0,0,0,.25);
  -moz-appearance: none !important;
  appearance: auto !important;
}
#loading-screen {
  position: absolute;
  z-index: 999999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #131313;
  /* background-image: url(/img/loading-gif.gif);
  background-repeat: no-repeat;
  background-position: center 110px; */
  opacity: 1;
  transition: 1s opacity;
}

#loading-screen.fade-out {
  opacity: 0;
  z-index: 1;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #9370db;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #ba55d3;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}
#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #ff00ff;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loading-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}

.loading-text h2 {
  font-size: 43px;
  font-family: "swera_demobold";
  font-weight: bolder;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
  line-height: 70px;
}

.loading-text p {
  font-family: "swera_demoregular";
  font-size: 16px;
  letter-spacing: 2.2px;
  padding: 0;
  color: white;
  text-transform: uppercase;
  margin: 0;
}

p {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 24px;
  padding: 0;
  margin: 0;
}

.icon-arrow-down {
  position: absolute;
  z-index: 6;
  width: 13px;
  height: 31px;
  right: auto;
  left: 50%;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 2rem;
  margin: auto;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  animation: fade_move_down 2s ease-in-out infinite;
}

.icon-arrow-down:before {
  text-indent: 0;
  position: absolute;
  content: "";
  background-image: url(../img/arrow-down.png);
  background-size: cover;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  width: 13px;
  height: 31px;
  object-fit: contain;
}

@keyframes fade_move_down {
  0% {
    transform: translate(0, 10px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(0, -10px);
    opacity: 0;
  }
}

#panel1 {
  position: absolute;
  top: 0px;
  height: 100vh !important;
  min-height: 100%;
  width: 100% !important;
}
#panel2 {
  position: absolute;
  top: 800px;
  height: 100vh !important;
  min-height: 100%;
  width: 100% !important;
}

#panel3 {
  position: absolute;
  top: 1600px;
  height: 100vh !important;
  min-height: 100%;
  width: 100% !important;
}
#panel4 {
  position: absolute;
  top: 2400px;
  height: 100vh !important;
  min-height: 100%;
  width: 100% !important;
}
#panel5 {
  position: absolute;
  top: 3200px;
  height: 100vh !important;
  min-height: 100%;
  width: 100% !important;
}
#panel6 {
  position: absolute;
  top: 4000px;
  height: 100vh !important;
  min-height: 100%;
  width: 100% !important;
}

.intro {
  position: fixed;
  pointer-events: none;
  text-align: left;
  bottom: 50px;
  left: 50px;
  color: white;
  font-family: lato;
  font-weight: 300;
  font-size: 15px;
  z-index: 1;
  width: 20%;
}

.intro h1 {
  font-size: 44px;
  font-family: "swera_demoregular";
  font-weight: bolder;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
  line-height: 70px;
}

.intro p {
  font-family: "swera_demoregular";
  font-size: 14px;
  letter-spacing: 2.5px;
  padding: 0;
  color: white;
  text-transform: uppercase;
  margin: 0;
}
/* #team1 {
  transition: 1s;
  opacity: 0;
  display: none;
} */
.teamintro {
  position: fixed;
  /* pointer-events: none; */
  text-align: left;
  bottom: 0;
  right: 0;
  color: white;
  font-family: lato;
  font-weight: 300;
  font-size: 15px;
  z-index: 3;
  width: 30%;
  transition: 1s;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.teamintro h1 {
  font-size: 60px;
  font-family: "swera_demoregular";
  font-weight: bolder;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  line-height: 70px;
}

.teamintro p {
  font-family: "swera_demoregular";
  font-size: 14px;
  letter-spacing: 2.5px;
  padding: 0;
  color: white;
  text-transform: uppercase;
  margin: 0;
}

.teamintro a img {
  padding-top: 10px;
  width: 30px;
}
.teamintro2 a img {
  padding-top: 10px;
  width: 30px;
}
.teamintro2 {
  position: fixed;
  /* pointer-events: none; */
  text-align: left;
  bottom: 0;
  left: 200px;
  color: white;
  font-family: lato;
  font-weight: 300;
  font-size: 15px;
  z-index: 3;
  width: 30%;
  transition: 1s;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.teamintro2 h1 {
  font-size: 60px;
  font-family: "swera_demoregular";
  font-weight: bolder;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  line-height: 70px;
}

.teamintro2 p {
  font-family: "swera_demoregular";
  font-size: 14px;
  letter-spacing: 2.5px;
  padding: 0;
  color: white;
  text-transform: uppercase;
  margin: 0;
}

.logo {
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 999999;
}

.sound {
  position: absolute;
  top: 50px;
  right: 0px;
  z-index: 3;
  display: flex;
  align-items: center;
  transform: translate(-50%, -50%);
  color: white;
  cursor: pointer;
}

.sound::after {
  content: "ON";
}

.sound1 {
  position: absolute;
  top: 50px;
  right: 0px;
  z-index: 3;
  display: flex;
  align-items: center;
  transform: translate(-50%, -50%);
  color: white;
  cursor: pointer;
  display: none;
}

.sound1::after {
  content: "OFF";
}

.bar {
  width: 1px;
  height: 15px;
  margin: 0 4px;
  background-color: #00ffc2;
  animation: up-down 0.6s infinite;
  animation-delay: 0s;
}

.bar:nth-child(2) {
  animation-delay: 0.1s;
}
.bar:nth-child(3) {
  animation-delay: 0.2s;
}
.bar:nth-child(4) {
  animation-delay: 0.3s;
}
.bar:nth-child(5) {
  animation-delay: 0.4s;
}
.bar:nth-child(6) {
  animation-delay: 0.5s;
}

.bar1 {
  width: 2px;
  height: 8px;
  margin: 0 4px;
  background-color: #00ffc2;
  /* animation: up-down 0.6s infinite; */
  animation-delay: 0s;
}

@keyframes up-down {
  0% {
    height: 5px;
  }
  50% {
    height: 20px;
  }
  100% {
    height: 5px;
  }
}

.docs {
  position: fixed;
  bottom: 28px;
  right: 30px;
  z-index: 99999;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgb(255 255 255 / 18%);
  border: 2px solid #9f9f9fa6;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 300;
  cursor: pointer;
  transition: 0.5s;
}

.docs:hover {
  background: rgba(0, 255, 195, 0.363);
  border: 2px solid #35f7ff;
  cursor: pointer;
}

.menu {
  position: fixed;
  z-index: 99999;
  bottom: 80px;
  right: 30px;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 255, 195, 0.253);
  border: 2px solid #35f7ff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 300;
  cursor: pointer;
}

.menu:hover {
  background: rgba(0, 255, 195, 0.363);
  border: 2px solid #35f7ff;
  cursor: pointer;
}

/* .circle2{
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0,255,194,.045);
  border: 1px solid rgba(0,255,194,.3);
  animation: circle1 1s infinite ease-out;
  animation-delay: 0.02s;
} */

.circle3 {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 255, 194, 0.02);
  border: 1px solid rgba(0, 255, 195, 0.712);
  animation: circle2 1s infinite ease-out;
}

/* @keyframes circle1 {
  0%{width: 10px; height: 10px; opacity: 0;}
  25%{width: 20px; height: 20px; opacity: 0.5;}
  50%{width: 30px; height: 30px; opacity: 1;}
  75%{width: 40px; height: 40px; opacity: 0.5;}
  100%{width: 50px; height: 50px; opacity: 0;}
} */

@keyframes circle2 {
  0% {
    width: 10px;
    height: 10px;
    opacity: 0;
  }
  25% {
    width: 30px;
    height: 30px;
    opacity: 0.5;
  }
  50% {
    width: 50px;
    height: 50px;
    opacity: 1;
  }
  75% {
    width: 70px;
    height: 70px;
    opacity: 0.5;
  }
  100% {
    width: 90px;
    height: 90px;
    opacity: 0;
  }
}

#fade {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.774);
  z-index: 1001;
  filter: alpha(opacity=80);
}

#light {
  display: none;
  position: absolute;
  width: 80%;
  border: 2px solid #25c4cb;
  z-index: 1002;
  overflow: visible;
  margin: 0 auto;
  vertical-align: middle;
}

#fade2 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.527);
  z-index: 1001;
  opacity: 1;
}

#light2 {
  display: block;
  position: absolute;
  top: 30%;
  z-index: 1002;
  overflow: visible;
  margin: 0 auto;
}

#boxclose {
  position: absolute;
  top: -25px;
  right: -25px;
  cursor: pointer;
  background: #30b3b9;
  border-radius: 50px;
}

#boxclose2 {
  position: absolute;
  display: flex;
  top: 10px;
  right: 30px;
  cursor: pointer;
  z-index: 1002;
  justify-content: center;
  align-items: center;
}

/* .boxclose:before {
  content: "×";
} */

#fade:hover ~ #boxclose {
  display: none;
}

#fade2:hover ~ #boxclose {
  display: none;
}

.test:hover ~ .test2 {
  display: none;
}

.keys-info {
  position: absolute;
  bottom: 10px;
  display: flex;
  justify-content: center;
  z-index: 99999;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.keys-box {
  background: rgb(17 51 54);
  border: 2px solid #11959738;
  padding: 6px 15px 6px;
  color: rgb(255 255 255);
  font-size: 12px;
  font-weight: 700;
  font-family: monospace;
}

.line2 {
  display: flex;
}

.key {
  background: rgba(5, 124, 160, 0.18);
  border-radius: 5px;
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 500;
  width: 30px;
  height: 30px;
  text-align: center;
  margin: 0 2px 4px;
  vertical-align: middle;
}

.keys {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
  padding-bottom: 10px;
}

#loading-screen {
  position: absolute;
  z-index: 999999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #131313;
  /* background-image: url(/img/loading-gif.gif);
  background-repeat: no-repeat;
  background-position: center 110px; */
  opacity: 1;
  transition: 1s opacity;
}

#loading-screen.fade-out {
  opacity: 0;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #9370db;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #ba55d3;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}
#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #ff00ff;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loading-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}

.loading-text h2 {
  padding: 0;
  font-size: 43px;
  font-family: "swera_demobold";
  font-weight: bolder;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
  line-height: 70px;
}

.loading-text p {
  font-family: "swera_demoregular";
  font-size: 16px;
  letter-spacing: 2.2px;
  padding: 0;
  color: white;
  text-transform: uppercase;
  margin: 0;
}

#modalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  height: 100%;
  width: 100%;
}
.modalPopup {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 50%;
  padding: 0 0 30px;
  -webkit-box-shadow: 0 2px 10px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 10px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 10px 3px rgba(0, 0, 0, 0.2);
}
.modalContent {
  padding: 0 2em;
}
.headerBar {
  width: 100%;
  background: #edcb04 url(http://cognex.com/gfx/site/bg-global-header.png)
    repeat-x 0 0;
  margin: 0;
  text-align: center;
}
.headerBar img {
  margin: 1em 0.7em;
}
h1 {
  margin-bottom: 0.2em;
  font-size: 26px;
  text-transform: capitalize;
}
p {
  margin: 0.75em 0 1.5em;
}
.buttonStyle {
  border: transparent;
  border-radius: 0;
  background: #6d6d6d;
  color: #eee !important;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  padding: 6px 25px;
  text-decoration: none;
  background: -moz-linear-gradient(top, #6d6d6d 0%, #1e1e1e 100%);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #6d6d6d),
    color-stop(100%, #1e1e1e)
  );
  background: -webkit-linear-gradient(top, #6d6d6d 0%, #1e1e1e 100%);
  background: -o-linear-gradient(top, #6d6d6d 0%, #1e1e1e 100%);
  background: -ms-linear-gradient(top, #6d6d6d 0%, #1e1e1e 100%);
  background: linear-gradient(to bottom, #6d6d6d 0%, #1e1e1e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6d6d6d', endColorstr='#1e1e1e',GradientType=0 );
  /*	-webkit-box-shadow: 0 2px 4px 0 #999;
box-shadow: 0 2px 4px 0 #999; */
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.buttonStyle:hover {
  background: #1e1e1e;
  color: #fff;
  background: -moz-linear-gradient(top, #1e1e1e 0%, #6d6d6d 100%, #6d6d6d 100%);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #1e1e1e),
    color-stop(100%, #6d6d6d),
    color-stop(100%, #6d6d6d)
  );
  background: -webkit-linear-gradient(
    top,
    #1e1e1e 0%,
    #6d6d6d 100%,
    #6d6d6d 100%
  );
  background: -o-linear-gradient(top, #1e1e1e 0%, #6d6d6d 100%, #6d6d6d 100%);
  background: -ms-linear-gradient(top, #1e1e1e 0%, #6d6d6d 100%, #6d6d6d 100%);
  background: linear-gradient(
    to bottom,
    #1e1e1e 0%,
    #6d6d6d 100%,
    #6d6d6d 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e1e1e', endColorstr='#6d6d6d',GradientType=0 );
}
.returnToProfile {
  text-align: center;
  margin: 3em;
}
.returnToProfile a,
.returnToProfile a:visited {
  color: #ddd;
}
.returnToProfile a:hover {
  color: #fff;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  text-align: left;
  background-image: url(/img/pop_up.webp);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}

.sidenav a {
  padding: 4px 8px 8px 16px;
  text-decoration: none;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav h2 {
  color: #ffffff;
  padding: 20px 140px 0px 100px;
  font-family: "swera_demobold";
  font-size: 30px;
  font-weight: 700;
}
.sidenav h3 {
  color: #cfcfcf;
  padding: 20px 140px 0px 100px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  /* text-shadow: 0 0 4px #37cfdf; */
}

.sidenav p {
  color: #838383;
  padding: 0px 140px 10px 100px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 20px;
  font-weight: 300;
  text-align: justify;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 15px;
  right: 110px;
  max-width: 50px;
  max-height: 50px;
}

.sidemenu {
  height: 410px;
  width: 0;
  position: fixed;
  z-index: 99998;
  bottom: 100px;
  right: 30px;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 20px;
  text-align: left;
  background-image: url(/img/pop_up.webp);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  opacity: 0.9;
}

.sidemenu a {
  padding: 4px 8px 8px 16px;
  text-decoration: none;
  color: #818181;
  display: block;
  transition: 0.3s;
}
.sidemenu h3 {
  position: relative;
  color: #b3b3b3;
  margin: 0;
  font-family: sans-serif;
  padding-left: 20px;
  padding-bottom: 10px;
  padding-top: 15px;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: capitalize;
  transition: 0.5;
}

.sidemenu h3:hover {
  text-decoration: none;
  cursor: pointer;
  color: #35f7ff;
}
.sidemenu p {
  position: relative;
  color: #b3b3b3;
  margin: 0;
  font-family: sans-serif;
  padding-left: 40px;
  padding-bottom: 15px;
  padding-top: 15px;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: capitalize;
  transition: 0.5;
}

.sidemenu p:hover {
  text-decoration: none;
  cursor: pointer;
  color: #35f7ff;
}

.sidemenu .closebtn {
  position: absolute;
  top: 30px;
  right: 60px;
  max-width: 20px;
  max-height: 20px;
  z-index: 99;
}

/* scrollbar  */

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

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: grey;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #35f7ff;
}

.centertext {
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
  position: absolute;
  display: flex;
  margin: auto;
  z-index: 999999;
  top: 66%;
  color: #ffffff;
  font-family: sans-serif;
  width: 50%;
  flex-direction: column;
  left: 0;
  right: 0;
}

.centertext h2 {
  font-family: "swera_demoregular";
  font-size: 14px;
  padding: 15px 70px;
  width: 150px;
  margin: 10px auto 10px;
  padding: 15px;
  background-color: #151c23;
  border: 2px solid #455253;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

.centertext a {
  font-size: 10px;
  font-weight: 300;
  margin: 0;
  padding: 0;
  color: #d3d3d3;
  transition: 2s;
  text-decoration: none;
}

.centertext a:hover {
  text-decoration: underline;
  color: #eeeeee;
}

.scroll {
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  position: fixed;
  display: flex;
  align-items: center;
  margin: auto;
  z-index: 9999999;
  bottom: 2%;
  color: #ffffff;
  font-family: sans-serif;
  width: 50%;
  flex-direction: column;
  left: 0;
  right: 0;
}

#contactus {
  display: none;
  position: fixed;
  z-index: 9999999;
  width: 100%;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  background-color: #121212ba;
}

.contact_form {
  color: #fff;
  min-width: 90%;
  position: absolute;
  height: 85%;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  background-color: #181818;
  border-radius: 5px;
  padding: 50px 0px;
  border: 1px solid #052526;
  display: flex;
    flex-direction: column;
    justify-content: center;
}

a.openform {
  padding: 0;
  color: #838383;
}
a.openform:hover {
  padding: 0;
  color: #35f7ff;
  padding-left: 10px;
}

a.closeform {
  position: absolute;
  top: 20px;
  right: 20px;
}

/* h2 {
  text-align: center;
  padding-top: 3rem;
  font-weight: normal;
  font-family: system-ui;
  color: aliceblue;
} */

.para {
  text-align: center;
  padding-top: 0.2rem;
  color: #7d8087;
  font-weight: normal;
  font-family: system-ui;
}
.input_text {
  padding: 20px !important;
  margin: 1.2rem !important;
  margin-top: 1.2rem !important;
  width: 100%;
  border-radius: 30px;
  outline: none;
  color: #7d8087;
  font-size: 1rem;
  background-color: #202020;
  border: 1px solid #282828;
  border-radius: 5px;
  overflow-anchor: none;
  transition: 0.5s ease-in;
}

.input_text:hover {
  border: 1px solid #35f7ff;
  background: linear-gradient(to right, #35f8ff13, #056a6e11);
}

textarea {
  width: 80%;
  border-radius: 20px;
  padding: 15px 0px 0px 15px;
  font-size: 1rem;
  outline: none;
  color: #7d8087;
  background-color: #202020;
  border: 1px solid #282828;
  border-radius: 5px;
  overflow-anchor: none;
  transition: 0.5s ease-in;
}
textarea:hover {
  border: 1px solid #35f7ff;
  background: linear-gradient(to right, #35f8ff13, #056a6e11);
}
ul {
  list-style: none;
}

li {
  padding: 20px;
  display: inline;
  flex-direction: row;
  align-items: center;
  width: auto;
}

label {
  cursor: pointer;
  margin-left: 30px;
}
.btn_text {
  margin-top: 50px;
  padding: 17px 80px;
  border-radius: 30px;
  color: white;
  font-size: 18px;
  transition: 1s;
  background-color: #202020;
  border: 1px solid #6a6a6a;
  border-radius: 5px;
  overflow-anchor: none;
  transition: 0.5s ease-in;
}
.btn_text:hover {
  border: 1px solid #35f7ff;
  background: linear-gradient(to right, #35f8ff13, #056a6e11);
}
.contact_bottom_text {
  padding-top: 50px;
}
.end_text {
  color: #7d8087;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-right: 30px;
}

.end_text li {
  padding: 0;
  margin: 0;
}
.end_text li a {
  color: white;
}

.end_text li a:hover {
  color: #35f7ff;
}

label {
  margin-left: 10px;
  font-size: 16px;
  font-family: Lato;
  color: #ababab;
}

#caret-icon {
  color: #7d8087;
  cursor: pointer;
}

#registeration-phone {
  /* padding-left: 100px; */
  margin-top: 0.5rem !important;
}
#registeration-phone-container {
  position: relative;
}

#registeration-countrycode {
  color: #7d8087;
}

#registeration-countrycode-container {
  cursor: pointer;
  border-right: 1px solid #6a6a6a;
  position: absolute;
  top: 8px;
  padding: 7px;
  height: 88%;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 80px;
  justify-content: space-between;
}

#home-form {
  position: relative;
}

#registeration-country-codes {
  position: absolute;
  display: none;
  width: 500px;
  top: 230px;
  overflow: scroll;
  height: 250px;
}

.registeration-country-code-option {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background-color: #202020;
  color: #7d8087;
}
.registeration-country-code-option:hover {
  background-color: #fff;
  color: #000;
}
.registeration-country-code-option-active {
  background-color: #fff;
  color: #000;
}
.active {
  background-color: #fff;
  color: #000;
}
#registeration-dummy {
  z-index: -9999;
}

#error-msg {
  color: red;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  display: none;
}

#registeration-country-codes::-webkit-scrollbar {
  display: none;
}
.icon-name1 {
  transform: scaleX(0);
  text-align: center;
  font-size: 16px;
  padding-top: 12px;
  color: #fff;
}
.icon-name2 {
  transform: scaleX(0);
  text-align: center;
  font-size: 16px;
  padding-top: 12px;
  color: #fff;
}
.icon-name3 {
  transform: scaleX(0);
  text-align: center;
  font-size: 16px;
  padding-top: 12px;
  color: #fff;
}
.icon-name4 {
  transform: scaleX(0);
  text-align: center;
  font-size: 16px;
  padding-top: 12px;
  color: #fff;
}
.icon-name5 {
  transform: scaleX(0);
  text-align: center;
  font-size: 16px;
  padding-top: 12px;
  color: #fff;
}
.icon-name6 {
  transform: scaleX(0);
  text-align: center;
  font-size: 16px;
  padding-top: 12px;
  color: #fff;
}
.icon-name7 {
  transform: scaleX(0);
  text-align: center;
  font-size: 16px;
  padding-top: 12px;
  color: #fff;
}
.icon-name8 {
  transform: scaleX(0);
  text-align: center;
  font-size: 16px;
  padding-top: 12px;
  color: #fff;
}
.footer-icon1 {
  position: relative;
  z-index: 9;
}
.footer-icon2 {
  position: relative;
  z-index: 9;
}
.footer-icon3 {
  position: relative;
  z-index: 9;
}
.footer-icon4 {
  position: relative;
  z-index: 9;
}
#contact_us_link {
  /* display: none; */
}
#blog1-container {
  display: flex;
}
#blog1_right_icon {
  color: #fff;
}
#form-container {
  display: flex;
  flex-direction: column;
}

#upper-form {
  width: 100%;
}

.form-check-label {
  text-align: left;
}
#first-form {
  position: relative;
}
#error-msg-contact {
  color: red;
  text-align: center;
  position: absolute;
  left: 68px;
}
#button-container {
  position: relative;
}
/*modal*/
.modal {
  display: none;
  position: fixed;
  justify-content: center;
  align-items: center;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
  background-color: #202020 !important;
  position: relative;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #35f7ff !important;
  width: 40% !important;
  text-align: center;
}
#modal-text {
  color: #7d8087 !important;
  margin: 0;
  font-size: 18px;
  padding: 30px 0px;
}
#modal-text1 {
  color: #7d8087 !important;
  margin: 0;
  font-size: 18px;
  padding: 30px 0px;
}
#close-cross-btn {
  position: absolute;
  top: 0;
  right: 12px;
}
#close-cross-btn1 {
  position: absolute;
  top: 0;
  right: 12px;
}
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
/*modal*/
.iti {
  width: 100%;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  position: absolute !important;
  /* left: 80px !important; */
  margin-top: 0.6rem !important;
}

.iti__country-list {
  background-color: #222 !important;
}

.iti input {
  margin-top: 0.5rem !important;
}
#telephone {
  margin-left: 0 !important;
  margin-top: 0.5rem !important;
  padding-left: 50px !important;
}
#telephone-parent {
  margin-left: 1.2rem !important;
  width: 100%;
}
.footer-info{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  width: 1006px;
  margin-bottom: 60px;
}
.footer-address{
  display: flex;
  align-items: center;
  
}
.footer-address div{
  padding-left: 10px;
  color: #fff;
}

.footer-email{
display: flex;
align-items: center;
}

.footer-email div{
  padding-left: 10px;
  color: #fff;
}
@media (max-width: 1440px) {
  .checkbox_form {
    padding: 30px 40px 0px 70px;
  }
  .heading {
    display: flex;
    margin: 30px 0px 0px 70px;
    font-family: system-ui;
  }
  label {
    margin-left: 8px;
  }
}
@media (max-width: 1024px) {
  .checkbox_form {
    padding: 30px 40px 0px 50px;
  }
  .heading {
    display: flex;
    margin: 30px 0px 0px 50px;
    font-family: system-ui;
  }
  label {
    margin-left: 5px;
  }
}
@media (max-width: 768px) {
  .footer-info{
    width: 92vw;
    flex-direction: column;
  }
  .footer-address{
    display: flex;
    align-items: center;
    color: #fff;
  }
  .footer-address div{
    padding-left: 5px;
    color: #fff;
    font-size: 13px;

  }
  .footer-email{
    display: flex;
    align-items: center;
  }
  .footer-email div{
    padding-left: 5px;
    color: #fff;
    font-size: 13px;

  }
  .modal {
    top: 200px !important;
  }
  .modal-content {
    width: 80vw !important;
  }
  .checkbox_form {
    padding: 30px 40px 0px 50px;
  }
  .heading {
    display: flex;
    margin: 30px 0px 0px 50px;
    font-family: system-ui;
  }
  label {
    margin-left: 3px;
  }
  #error-msg-contact {
    left: 0 !important;
  }
  .iti-mobile .iti--container {
    width: 85vw;
    z-index: 9999999;
  }
  .form-check-input[type="radio"] {
    appearance: auto !important;
  }
}
@media (max-width: 425px) {
  .checkbox_form {
    padding: 30px 40px 0px 30px;
  }
  .heading {
    display: flex;
    margin: 30px 0px 0px 40px;
    font-family: system-ui;
  }
  textarea {
    height: 65px;
  }
  .contact_form {
    padding: 15px 0;
  }
  .para {
    font-size: 20px;
  }
  .contact_bottom_text {
    padding: 0 !important;
  }
  #contact_us_text {
    font-size: 18px;
  }
  .sidemenu h3 {
    padding: 15px 0 15px 15px;
  }
}
.form-check-input[type="radio"] {
  appearance: auto !important;
}

#leftSidebar {
  position: fixed;
  top: 35%;
  right: 2%;
  z-index: 1;
}
#leftSidebar > ul {
  /* all of these are for demo only: */
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
#leftSidebar > ul > li {
  display: block;
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  text-align: right;
  padding: 0;
  position: relative;
  padding: 5px;
}
nav#leftSidebar ul li a {
  position: relative;
}
nav#leftSidebar ul li a span {
  display: flex;
  justify-content: center;
}
nav#leftSidebar ul li a span::after {
  display: block;
  position: absolute;
  content: "";
  top: 0;
  width: 8px;
  height: 8px;
  border-radius: 18px;
  opacity: 1;
  background-color: #505050;
}
nav#leftSidebar ul li a.active span::after {
  background-color: #fff;
  border: 1px solid #cc8d0c;
  width: 12px;
  height: 12px;
  margin-top: -2px;
}
.new-text {
  position: absolute;
  top: 10px;
  right: 40px;
  color: #b7b7b700;
  font-size: 12px;
  font-family: "swera_demoregular";
  font-weight: 700;
  letter-spacing: 2px;
  text-align: right;
  width: 250px;
}
/* .new-text::after{
content: '';
  width: 30px;
  height: 1px;
  background-color: #3c3c3c;
  position: absolute;
  right: -40px;
  top: 10px;
} */
#a1 {
  display: none;
}
#a:hover + #a1 {
  display: block;
}
#b1 {
  display: none;
}
#b:hover + #b1 {
  display: block;
}
#c1 {
  display: none;
}
#c:hover + #c1 {
  display: block;
}
#d1 {
  display: none;
}
#d:hover + #d1 {
  display: block;
}
#e1 {
  display: none;
}
#e:hover + #e1 {
  display: block;
}
#f1 {
  display: none;
}
#f:hover + #f1 {
  display: block;
}

.btn-check:focus + .btn,
.btn:focus {
  outline: 0;
  box-shadow: none !important;
}

.blog1_main {
  position: fixed;
  text-align: left;
  bottom: 0;
  left: 10%;
  color: white;
  font-family: lato;
  font-weight: 300;
  font-size: 15px;
  z-index: 3;
  width: 35%;
  top: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog1_main h1 {
  font-size: 30px;
  font-family: "swera_demoregular";
  font-weight: bolder;
  letter-spacing: 1px;
  color: #cbcbcb;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}

.blogs_para {
  max-height: 350px;
  overflow: overlay;
  padding-right: 20px;
  padding-top: 20px;
}
.blogs_para p {
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 0;
  color: #cbcbcb;
  text-align: justify;
}

.bannerabout {
  height: 100vh;
  display: flex;
  align-items: center;
}

.bannerabout h1 {
  color: #ffffff;
  font-size: 80px;
  font-weight: 700;
  /* text-transform: uppercase; */
  width: 50%;
  padding-top: 0;
  white-space: pre-wrap;
  font-family: "swera_demoregular";
}
.bannerabout p {
  color: #bfbfbf;
  font-size: 16px;
  width: 50%;
}
.bannerabout h2 {
  color: #fff;
  font-size: 18px;
}

.scrollleft {
  position: relative;
  overflow: hidden;
  border-top: 2px solid #35f7ff;
  border-bottom: 2px solid #35f7ff;
  background-color: #35f8ff28;
  height: 130px;
  margin-bottom: 100px;
  transform: rotate(0deg);
}

.scroll-img {
  transform: rotate(-2deg);
}

.marquee {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
}
.marquee span {
  display: inline-block;
  font-size: 110px;
  font-weight: 500;
  position: relative;
  left: 100%;
  animation: marquee 20s linear infinite;
  color: #35f7ff;
  text-transform: uppercase;
}
.marquee:hover span {
  animation-play-state: paused;
}

.marquee span:nth-child(1) {
  animation-delay: 0s;
}
.marquee span:nth-child(2) {
  animation-delay: 0.2s;
}
.marquee span:nth-child(3) {
  animation-delay: 0.4s;
}
.marquee span:nth-child(4) {
  animation-delay: 0.6s;
}
.marquee span:nth-child(5) {
  animation-delay: 0.8s;
}

@keyframes marquee {
  0% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}

.video-sec {
  font-family: "swera_demoregular";
  color: #35f7ff;
  font-size: 100px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 100px;
  position: relative;
}

.video-ul {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.video-sec ul li {
  padding: 30px 0px;
}

.astro {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  z-index: 0;
  animation: astro 4s linear infinite;
  cursor: pointer;
}

@keyframes astro {
  0% {
    top: 50px;
  }
  50% {
    top: 0px;
  }
  100% {
    top: 50px;
  }
}

.abouttext {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 48px;
  font-weight: 500;
  width: 60%;
  color: #ffffff;
  line-height: 60px;
  padding: 50px 0;
}

.abouttext p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 32px;
  text-transform: uppercase;
  line-height: 56px;
  padding-top: 60px;
  text-align: center;
}

.bluecolor {
  color: #35f7ff;
}

.team {
  padding: 100px 0px 150px;
}

.teams {
  display: flex;
  color: #fff;
}

.teams h2 {
  font-size: 30px;
  padding-top: 10px;
  position: relative;
}

.plus {
  color: #35f7ff;
  display: inline-block;
  background-color: #121616;
  border: 1px solid #112728;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  text-align: center;
  padding-top: 2px;
  font-size: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.5s ease-in;
  margin-left: 20px;
}

/* .plus:hover{
  color: #35f7ff;
  border: 1px solid #35f7ff;
  background: linear-gradient(to right, #35f8ff13, #056a6e11);
  cursor: pointer;
} */

.plus:hover {
  color: #35f7ff;
  border: 1px solid #35f7ff;
  background: linear-gradient(to right, #35f8ff13, #056a6e11);
  cursor: pointer;
  width: 200px;
  /* border-radius: 5px; */
  position: relative;
}

.plus:hover ::after {
  content: "View Team";
  position: absolute;
  top: 0;
  left: 0;
}

.teams p {
  font-size: 14px;
  padding: 5px 0;
  margin: 0;
}

.team1 {
  /* text-align: right; */
  padding-right: 100px;
}

.member-left {
  padding-bottom: 200px;
}

.member-left img {
  width: 90%;
}

.member-right {
  padding-top: 200px;
}

.member-right img {
  width: 90%;
}

.about-h2 {
  font-size: 70px;
  font-weight: 500;
  padding: 50px 0 10px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}

.team h3 {
  font-size: 18px;
  font-weight: 500;
  padding: 0px 0 50px;
  text-align: center;
  color: #9e9e9e;
}

.accord-item {
  background-color: transparent;
  border: 0;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-timing-function: ease;
  animation-name: styles_viewBottom__s398_;
  animation-fill-mode: both;
}

.accord-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 25px 40px;
  font-size: 1rem;
  color: #ffffff;
  text-align: left;
  background-color: #101010;
  border: 1px solid #161616;
  border-radius: 5px;
  overflow-anchor: none;
  transition: 0.5s ease-in;
}

.accord-button:hover {
  border: 1px solid #35f7ff;
  background: linear-gradient(to right, #35f8ff13, #056a6e11);
}

.accord-button:active {
  border: 1px solid #35f7ff;
  background: linear-gradient(to right, #35f8ff13, #056a6e11);
}

.about-community-main {
  display: flex;
}
.about-community {
  display: flex;
  justify-content: space-around;
}

.about-community img {
  background-color: #121616;
  border: 1px solid #112728;
  border-radius: 5px;
  transition: 0.5s ease-in;
  width: 100px;
  padding: 20px;
  transform: rotate(-5deg);
}

.about-community img:hover {
  border: 1px solid #35f7ff;
  background: linear-gradient(to right, #35f8ff13, #056a6e11);
  transform: rotate(0deg);
}

.fullheight {
  padding: 100px;
  background-color: black;
}
.heading_h2 {
  text-align: center;
  color: #fff;
  font-size: 5rem;
}
.flexing {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  line-height: 47px;
  height: 47px;
  padding: 0px 15px;
}
.customdiv {
  margin-top: 40px;
}
.accord-button::after {
  content: "+";
  background-image: none;
  line-height: 14px;
  font-size: 30px;
  position: absolute;
  right: 10px;
  color: #35f7ff;
}
.accord-button:not(.collapsed)::after {
  content: "−";
  background-image: none;
  transform: none;
}
.txtblack {
  color: #adadad;
  font-size: 14px;
  font-weight: 300;
  font-family: sans-serif;
  padding: 10px 10px;
  text-align: left;
}
.customtop {
  margin-top: 20px;
}
.accordion-button:not(.collapsed) {
  color: black;
  background-color: white;
  box-shadow: none;
}
.maindiv {
  padding-bottom: 100px;
}

.for-canvas {
  overflow: hidden;
}
#my_canvas {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100% !important;
}

.bottom-footer {
  display: flex;
  color: rgb(143, 143, 143);
  font-size: 16px;
  border-top: 1px solid #252525;
  transition: 1s ease;
}

.bot-text {
  display: flex;
  justify-content: space-between;
  padding: 20px 0px;
  font-size: 16px;
}

.bot-text p {
  padding: 0;
  margin: 0;
  font-size: 16px;
}

.bottom-footer a {
  color: rgb(143, 143, 143);
  text-decoration: none;
  transition: 1s ease;
}

.bottom-footer a:hover {
  color: #35f7ff;
}

/* RESPONSIVE FOR MOBILE */ /* RESPONSIVE FOR MOBILE */ /* RESPONSIVE FOR MOBILE */ /* RESPONSIVE FOR MOBILE */

@media only screen and (max-width: 500px) {
  .blogs_para {
    overflow: visible;
  }
  .blogs_para {
    padding-right: 0;
}
  .teamintro {
    position: fixed;
    text-align: left;
    bottom: 100px;
    color: white;
    font-family: lato;
    font-weight: 300;
    font-size: 15px;
    z-index: 3;
    width: 100%;
    transition: 1s;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }

  .teamintro h1 {
    font-size: 40px;
    margin: 0;
    padding: 0;
    line-height: 40px;
  }
  .teamintro2 {
    position: fixed;
    text-align: left;
    bottom: 100px;
    left: 0;
    color: white;
    font-family: lato;
    font-weight: 300;
    font-size: 15px;
    z-index: 3;
    width: 100%;
    transition: 1s;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }

  .teamintro2 h1 {
    font-size: 40px;
    margin: 0;
    padding: 0;
    line-height: 40px;
  }

  .docs {
    /* display: none; */
    top: 30px;
    right: 80px;
  }

  #fade2 {
    display: none;
  }

  .input_text {
    padding: 10px 20px !important;
    width: 100%;
    margin: 10px !important;
  }

  textarea {
    width: 100%;
    margin: 10px !important;
  }

  #telephone-parent {
    margin-left: 10px !important;
    width: 100%;
}

  .para {
    text-align: center;
    padding-top: 0;
    color: rgb(125, 128, 135);
    font-weight: normal;
    font-family: system-ui;
    font-size: 16px;
  }

  #loading-screen {
    position: absolute;
    z-index: 999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #131313;
    /* background-image: url(/img/loading-gif.gif);
    background-repeat: no-repeat;
    background-position: center 110px; */
    opacity: 1;
    transition: 1s opacity;
    /* display: none; */
  }

  .contact_form {
    height: auto;
    bottom: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  label {
    text-align: left;
  }

  .centertext {
    width: 90%;
  }
  .docs {
    /* display: none; */
  }
  .menu {
    top: 30px;
  }
  /* .sidemenu {
    z-index: 9999999;
    top: -20px;
    right: 0px;
  } */
  .loading-text img {
    width: 60%;
  }
  .loading-text h2 {
    font-size: 22px;
    line-height: 40px;
  }
  .loading-text p {
    font-size: 12px;
  }

  .blog1_main {
    position: relative;
    text-align: left;
    bottom: auto;
    left: 0;
    right: 0;
    width: 85%;
    top: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 50px;
  }
  .bannerabout h1 {
    font-size: 34px;
    font-weight: 700;
    width: 100%;
    padding: 0 20px;
  }
  .bot-text p {
    padding: 0;
    margin: 0;
    font-size: 16px;
  }
  .bottom-footer a {
    color: rgb(143, 143, 143);
    text-decoration: none;
    transition: 1s ease;
    font-size: 14px;
  }

  .accord-button {
    padding: 17px 40px;
  }
  .customtop {
    margin-top: 15px;
  }

  .bannerabout {
    padding: 150px 0px 0px;
    height: 100vh;
  }

  .abouttext {
    font-size: 20px;
    font-weight: 500;
    width: 60%;
    line-height: 30px;
    padding: 0;
  }

  .team {
    padding: 0;
  }

  .member-left {
    padding-bottom: 30px;
  }

  .member-right {
    padding-top: 0;
    padding-bottom: 30px;
  }

  .about-h2 {
    font-size: 60px;
    padding: 30px 0 0;
    line-height: 60px;
  }

  .about-community-main {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
  }

  .about-community {
    display: flex;
    justify-content: space-evenly;
    padding: 20px 0px;
  }

  .about-community img {
    width: 80px;
  }
  .maindiv {
    padding-bottom: 30px;
  }

  .abouttext p {
    padding: 0 22px;
    font-size: 20px;
    line-height: 36px;
  }

  .bot-text {
    display: flex;
    justify-content: space-between;
    padding: 20px 0px;
    flex-direction: column;
  }

  .bottom-footer {
    font-size: 14px;
    font-weight: 500;
  }

  .member-left {
    padding: 10px 30px 0px;
  }

  .member-left img {
    width: 100%;
  }

  .member-right {
    padding: 10px 30px 0px;
  }

  .member-right img {
    width: 100%;
  }

  .keys-info {
    display: none;
  }
}

/* RESPONSIVE FOR TAB */ /* RESPONSIVE FOR TAB */ /* RESPONSIVE FOR TAB */ /* RESPONSIVE FOR TAB */ /* RESPONSIVE FOR TAB */

@media only screen and (min-width: 501px) and (max-width: 768px) {
  .loading-text h2 {
    font-size: 32px;
    line-height: 50px;
  }
  .loading-text p {
    font-size: 14px;
  }
  .loading-text img {
    width: 60%;
  }

  #fade2 {
    display: none;
  }

  .keys-info {
    display: none;
  }
}

/* RESPONSIVE FOR mini device */ /* RESPONSIVE FOR mini device */ /* RESPONSIVE FOR mini device */ /* RESPONSIVE FOR mini device */

@media only screen and (max-width: 1024px) {
  .intro {
    display: none;
  }
}

/* RESPONSIVE FOR Small device */ /* RESPONSIVE FOR Small device */ /* RESPONSIVE FOR Small device */ /* RESPONSIVE FOR Small device */

@media only screen and (max-width: 1200px) {
}

/* RESPONSIVE FOR mini device */

@media only screen and (max-width: 1366px) {
  .intro {
    width: 24%;
  }
  .intro h1 {
    font-size: 32px;
  }
  .intro p {
    font-size: 12px;
  }
  .para {
    padding-top: 0.1rem;
  }
  .input_text {
    margin: 0.5rem;
    padding: 8px;
  }
  .contact_bottom_text {
    padding: 0;
  }
  .checkbox_form {
    padding: 5px 0px 0px 20px;
  }
  .heading {
    margin: 10px 0px 0px 70px;
  }
  #contact_us_form_text {
    font-size: 16px;
  }
}

/* RESPONSIVE FOR Small Desktop device */

@media only screen and (min-width: 1367px) and (max-width: 1440px) {
}

/* RESPONSIVE FOR Laptop device */

@media only screen and (min-width: 1441px) and (max-width: 1600px) {
}

/* RESPONSIVE FOR Large Desktop device */

@media only screen and (min-width: 1601px) and (max-width: 1920px) {
}
canvas {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgb(22, 17, 26);
}
#banner-mobile {
  display: none;
}
body {
  background-color: black;
}
.desktop-none {
  display: none;
}

#myForm h2 {
  padding-bottom: 30px;
}

#mySidemenu {
  width: 0;
}

.home-form {
  display: flex;
  flex-direction: column;
}

.input_text2 {
  padding: 20px;
  margin: 0;
  width: 500px;
  border-radius: 30px;
  outline: none;
  color: #7d8087;
  font-size: 1rem;
  background-color: #202020;
  border: 1px solid #282828;
  border-radius: 5px;
  overflow-anchor: none;
  transition: 0.5s ease-in;
}
.input_text2:hover {
  border: 1px solid #35f7ff;
  background: linear-gradient(to right, #35f8ff13, #056a6e11);
}
.btn_text2 {
  margin-top: 20px;
  padding: 17px 80px;
  border-radius: 30px;
  color: white;
  font-size: 18px;
  transition: 1s;
  background-color: #202020;
  border: 1px solid #6a6a6a;
  border-radius: 5px;
  overflow-anchor: none;
  transition: 0.5s ease-in;
  width: 100%;
}
.btn_text2:hover {
  border: 1px solid #35f7ff;
  background: linear-gradient(to right, #35f8ff13, #056a6e11);
}

.entertainment {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.entertainment h3 {
  font-size: 24px;
  font-weight: 300;
  text-align: center;
  padding: 0 20%;
}

.social {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.social ul {
  display: flex;
  list-style: none;
  padding: 10px 0px;
}
.social ul li {
  margin: 0px 15px;
}
.social ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  border: 1px solid #13595c;
  background: linear-gradient(to right, #35f8ff13, #056a6e11);
  width: 60px;
  height: 60px;
  transition: 0.5s ease-in;
}
.social ul li a:hover {
  border: 1px solid #35f7ff;
  background: linear-gradient(to right, #35f8ff13, #056a6e11);
}
.social img {
  width: 50%;
}

.container-scroll {
  position: relative;
  width: 100vw;
  overflow: hidden;
}

.scrolling-text {
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.23, 0.36, 0.28, 0.83);
  will-change: transform;
  backface-visibility: hidden;
}

.scrolling-text .scrolling-text-content {
  color: #101010;
  font-size: 120px;
  font-family: "swera_demobold";
  white-space: nowrap;
  transition: transform 0.5s cubic-bezier(0.23, 0.36, 0.28, 0.83);
  line-height: 1em;
  margin: 50px 50px;
  background-color: #ffffff;
  padding: 30px 0px;
  border: 1px solid #286060;
}

.btn_text:hover {
  border: 1px solid #35f7ff;
  background: linear-gradient(to right, #35f8ff13, #056a6e11);
}

.shoppingpara {
  color: #c3c3c3;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 22px;
  font-weight: 500;
  text-align: justify;
  letter-spacing: 2px;
  padding-bottom: 30px;
}
.shoppingpara h2 {
  color: #818181;
  font-size: 18px;
  font-weight: 700;
  padding-top: 20px;
  padding-bottom: 15px;
  margin: 0;
}
.shoppingpara h4 {
  font-family: "swera_demoregular";
  width: 500px;
  color: #767676;
  font-size: 16px;
  font-weight: 500;
  padding: 17px 10px;
  margin: 0;
  /* background: linear-gradient(45deg, #1a1a1a, transparent); */
  border-bottom: 1px solid #202020;
  transition: 1s;
}
.shoppingpara #edm-nights:hover {
  color: #fff;
  background: linear-gradient(45deg, #15cbd3, transparent);
  background-image: url(../img/EDM_Night.gif);
  background-size: cover;
  background-position: bottom;
}
.shoppingpara #comedy-shows:hover {
  color: #fff;
  background: linear-gradient(45deg, #15cbd3, transparent);
  background-image: url(../img/Comedy_Show.gif);
  background-size: cover;
  background-position: bottom;
}
.shoppingpara #digital-concerts:hover {
  color: #fff;
  background: linear-gradient(45deg, #15cbd3, transparent);
  background-image: url(../img/Digital_Concert_Gif.gif);
  background-size: cover;
  background-position: bottom;
}
.shoppingpara #light-shows:hover {
  color: #fff;
  background: linear-gradient(45deg, #15cbd3, transparent);
  background-image: url(../img/Light_Show_Gif.gif);
  background-size: cover;
  background-position: bottom;
}
.shoppingpara #ramp-walks:hover {
  color: #fff;
  background: linear-gradient(45deg, #15cbd3, transparent);
  background-image: url(../img/Ramp_Walk.gif);
  background-size: cover;
  background-position: bottom;
}
.pilgrimage {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
}

.community {
  display: flex;
  flex-direction: column;
  margin: 10%;
  justify-content: center;
  background-image: url(../img/community_section.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 200px 0px;
}

.community h2 {
  font-family: "swera_demobold";
  font-weight: 700;
  color: #fff;
  font-size: 70px;
  text-align: center;
}
.community h3 {
  font-family: "swera_demobold";
  font-weight: 700;
  color: #fff;
  font-size: 70px;
  text-align: center;
}

.community p {
  text-align: center;
  padding: 20px 280px;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 20px;
  margin: 0;
}

.contact_bottom_text {
  padding-top: 10px;
}
.checkbox_form {
  display: flex;
  padding: 10px 0px 0px 30px;
}

label {
  margin-left: 10px;
  font-size: 14px;
  font-family: Lato;
  color: #ababab;
}

@media (max-width: 1440px) {
  /* .checkbox_form {
    padding: 30px 0px 20px 0px;
  } */
  .heading {
    display: flex;
    margin: 30px 0px 0px 70px;
    font-family: system-ui;
  }
  label {
    margin-left: 8px;
  }
}
@media (max-width: 1024px) {
  .checkbox_form {
    padding: 30px 40px 0px 50px;
  }
  .heading {
    display: flex;
    margin: 30px 0px 0px 50px;
    font-family: system-ui;
  }
  label {
    margin-left: 5px;
  }
}
@media (max-width: 768px) {
  .iti__flag-box,
  .iti__country-name {
    color: #fff !important;
  }
  body {
    background-color: #000 !important;
  }
  canvas {
    position: absolute;
  }
  .socialul {
    display: flex;
    padding-top: 40px;
    flex-direction: column;
  }
  .social ul li {
    margin: 0px 15px;
    padding: 0 20px;
  }

  .socialul {
    display: flex;
    padding-top: 40px;
    flex-direction: column;
  }
  .checkbox_form {
    padding: 30px 40px 0px 50px;
  }
  .heading {
    display: flex;
    margin: 30px 0px 0px 50px;
    font-family: system-ui;
  }
  label {
    margin-left: 3px;
  }
}
@media (max-width: 560px) {
  #banner-desktop {
    display: none;
  }
  #banner-mobile {
    display: none;
  }
  .checkbox_form {
    padding: 10px 0px 0px 20px;
    display: flex;
    align-items: flex-start;
  }
  .m-t-5{
    margin-top: 5px;
  }
  .heading {
    display: flex;
    margin: 30px 0px 0px 40px;
    font-family: system-ui;
  }
  textarea {
    width: 100%;
  }
}
.form-check-input[type="radio"] {
  appearance: auto;
}
.heading {
  display: flex;
  margin: 30px 0px 0px 30px;
  font-family: system-ui;
  font-size: 24px;
}

.btn_text {
  margin-top: 50px;
  padding: 17px 80px;
  border-radius: 30px;
  color: white;
  font-size: 18px;
  transition: 1s;
  background-color: #202020;
  border: 1px solid #6a6a6a;
  border-radius: 5px;
  overflow-anchor: none;
  transition: 0.5s ease-in;
}

.second_box {
  height: 600px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-image: url(../img/back.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.9;
}

.second_box h2 {
  font-family: "swera_demobold";
  font-weight: 700;
  font-size: 60px;
  text-align: center;
  padding: 0px 200px;
  margin: 0;
  padding-bottom: 20px;
}

.second_box p {
  font-family: "Lato", sans-serif;
  text-align: center;
  padding: 0 200px;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 2px;
}

.mailer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 300px 300px;
  background-color: #141414;
  background-image: url(../img/mailer-back.webp);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
}

.mailer h2 {
  color: #b9b9b9;
  font-size: 60px;
  font-weight: bolder;
  text-align: center;
  font-family: "swera_demobold";
}

.socialul {
  display: flex;
  padding-top: 40px;
}

.glitch {
  font-family: "swera_demobold";
  font-weight: 700;
  color: white;
  font-size: 60px;
  position: relative;
}

@keyframes noise-anim {
  0% {
    clip: rect(78px, 9999px, 3px, 0);
  }
  5% {
    clip: rect(82px, 9999px, 81px, 0);
  }
  10% {
    clip: rect(65px, 9999px, 17px, 0);
  }
  15% {
    clip: rect(33px, 9999px, 47px, 0);
  }
  20% {
    clip: rect(57px, 9999px, 30px, 0);
  }
  25% {
    clip: rect(37px, 9999px, 19px, 0);
  }
  30% {
    clip: rect(46px, 9999px, 12px, 0);
  }
  35% {
    clip: rect(7px, 9999px, 92px, 0);
  }
  40% {
    clip: rect(53px, 9999px, 50px, 0);
  }
  45% {
    clip: rect(83px, 9999px, 72px, 0);
  }
  50% {
    clip: rect(75px, 9999px, 88px, 0);
  }
  55% {
    clip: rect(29px, 9999px, 48px, 0);
  }
  60% {
    clip: rect(29px, 9999px, 25px, 0);
  }
  65% {
    clip: rect(96px, 9999px, 70px, 0);
  }
  70% {
    clip: rect(90px, 9999px, 61px, 0);
  }
  75% {
    clip: rect(97px, 9999px, 16px, 0);
  }
  80% {
    clip: rect(88px, 9999px, 28px, 0);
  }
  85% {
    clip: rect(12px, 9999px, 63px, 0);
  }
  90% {
    clip: rect(83px, 9999px, 73px, 0);
  }
  95% {
    clip: rect(14px, 9999px, 52px, 0);
  }
  100% {
    clip: rect(69px, 9999px, 7px, 0);
  }
}
.glitch:after {
  content: attr(data-text);
  position: absolute;
  left: 2px;
  text-shadow: -1px 0 red;
  top: 0;
  color: white;
  background: black;
  overflow: hidden;
  clip: rect(0, 900px, 0, 0);
  animation: noise-anim 2s infinite linear alternate-reverse;
}

@keyframes noise-anim-2 {
  0% {
    clip: rect(82px, 9999px, 5px, 0);
  }
  5% {
    clip: rect(2px, 9999px, 96px, 0);
  }
  10% {
    clip: rect(100px, 9999px, 28px, 0);
  }
  15% {
    clip: rect(42px, 9999px, 77px, 0);
  }
  20% {
    clip: rect(52px, 9999px, 37px, 0);
  }
  25% {
    clip: rect(10px, 9999px, 99px, 0);
  }
  30% {
    clip: rect(18px, 9999px, 79px, 0);
  }
  35% {
    clip: rect(17px, 9999px, 64px, 0);
  }
  40% {
    clip: rect(1px, 9999px, 1px, 0);
  }
  45% {
    clip: rect(79px, 9999px, 56px, 0);
  }
  50% {
    clip: rect(4px, 9999px, 72px, 0);
  }
  55% {
    clip: rect(23px, 9999px, 86px, 0);
  }
  60% {
    clip: rect(80px, 9999px, 47px, 0);
  }
  65% {
    clip: rect(11px, 9999px, 99px, 0);
  }
  70% {
    clip: rect(98px, 9999px, 8px, 0);
  }
  75% {
    clip: rect(19px, 9999px, 20px, 0);
  }
  80% {
    clip: rect(18px, 9999px, 15px, 0);
  }
  85% {
    clip: rect(16px, 9999px, 2px, 0);
  }
  90% {
    clip: rect(89px, 9999px, 88px, 0);
  }
  95% {
    clip: rect(83px, 9999px, 41px, 0);
  }
  100% {
    clip: rect(79px, 9999px, 45px, 0);
  }
}
.glitch:before {
  content: attr(data-text);
  position: absolute;
  left: -2px;
  text-shadow: 1px 0 blue;
  top: 0;
  color: white;
  background: black;
  overflow: hidden;
  clip: rect(0, 900px, 0, 0);
  animation: noise-anim-2 3s infinite linear alternate-reverse;
}

.docs {
  position: fixed;
  bottom: 28px;
  right: 30px;
  z-index: 99999;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgb(255 255 255 / 18%);
  border: 2px solid #9f9f9fa6;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 300;
  cursor: pointer;
  transition: 0.5s;
}

.docs:hover {
  background: rgba(0, 255, 195, 0.363);
  border: 2px solid #35f7ff;
  cursor: pointer;
}

.menu {
  position: fixed;
  z-index: 99999;
  bottom: 80px;
  right: 30px;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 255, 195, 0.253);
  border: 2px solid #35f7ff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 300;
  cursor: pointer;
}

.menu:hover {
  background: rgba(0, 255, 195, 0.363);
  border: 2px solid #35f7ff;
  cursor: pointer;
}

.circle3 {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 255, 194, 0.02);
  border: 1px solid rgba(0, 255, 195, 0.712);
  animation: circle2 1s infinite ease-out;
}

@keyframes circle2 {
  0% {
    width: 10px;
    height: 10px;
    opacity: 0;
  }
  25% {
    width: 30px;
    height: 30px;
    opacity: 0.5;
  }
  50% {
    width: 50px;
    height: 50px;
    opacity: 1;
  }
  75% {
    width: 70px;
    height: 70px;
    opacity: 0.5;
  }
  100% {
    width: 90px;
    height: 90px;
    opacity: 0;
  }
}

/* scrollbar  */

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

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: grey;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #35f7ff;
}

.centertext h2 {
  font-family: "swera_demoregular";
  font-size: 14px;
  padding: 15px 70px;
  width: 150px;
  margin: 10px auto 10px;
  padding: 15px;
  background-color: #151c23;
  border: 2px solid #455253;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

.centertext a {
  font-size: 10px;
  font-weight: 300;
  margin: 0;
  padding: 0;
  color: #d3d3d3;
  transition: 2s;
  text-decoration: none;
}

.centertext a:hover {
  text-decoration: underline;
  color: #eeeeee;
}
.logo {
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 999999;
}

.game h3 {
  color: #cfcfcf;
  font-family: "Lato", sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  padding-bottom: 5px;
  margin: 0;
}

.game p {
  color: #b5b5b5;
  font-family: "Lato", sans-serif;
  font-size: 15px;
  letter-spacing: 0px;
  line-height: 20px;
  font-weight: 100;
  padding-bottom: 10px;
  text-align: justify;
}

.game h1 {
  font-size: 90px;
  font-family: "swera_demoregular";
  font-weight: 700;
  letter-spacing: 6px;
  line-height: 0px;
  padding: 0;
}
.game {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.right h1 {
  opacity: 0;
}
.right p {
  opacity: 0;
}

.content {
  position: relative;
  z-index: 1;
  color: rgb(255, 255, 255);
}

.full-height {
  height: 100vh;
  display: flex;
  position: relative;
}

.container1 {
  height: 415px;
}

.centertext {
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
  position: absolute;
  display: flex;
  margin: auto;
  z-index: 999999;
  top: 66%;
  color: #ffffff;
  font-family: "Lato", sans-serif;
  width: 50%;
  flex-direction: column;
  left: 0;
  right: 0;
}

.centertext h1 {
  font-family: "swera_demoregular";
  font-size: 60px;
  padding-top: 30px;
  margin: 0;
}

.centertext p {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 2px;
  line-height: 22px;
}

.centertext a {
  font-size: 10px;
  font-weight: 300;
  margin: 0;
  padding: 0;
  color: #d3d3d3;
  transition: 2s;
  text-decoration: none;
}

.centertext a:hover {
  text-decoration: underline;
  color: #eeeeee;
}

.gamepara {
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #13595c;
  background: linear-gradient(to right, #35f8ff13, #056a6e11);
  margin-bottom: 20px;
}

h1 {
  font-size: 100px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: bolder;
  letter-spacing: 1px;
  padding: 200px 0 0;
}

p {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 24px;
  padding: 0;
  margin: 0;
}

.footer {
  position: relative;
  height: 100vh;
  display: flex;
  position: relative;
  background-color: #000;
  background-image: url(../img/footer-line.png);
  background-position: top left;
  background-repeat: no-repeat;
}

.rectangles {
  position: relative;
  top: 10px;
  left: 367px;
  display: flex;
}
.rectangles-one,
.rectangles-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 7px;
  height: 16px;
  border: solid 1px #35f7ff;
}
.rectangles-one {
  margin-right: 5px;
  background: #35f7ff;
  -webkit-animation: rectanglesOne 2s ease infinite;
  animation: rectanglesOne 2s ease infinite;
}
.rectangles-two {
  background: rgba(3, 255, 161, 0);
  -webkit-animation: rectanglesTwo 2s ease infinite;
  animation: rectanglesTwo 2s ease infinite;
}

@-webkit-keyframes rectanglesOne {
  50% {
    background: rgba(3, 255, 161, 0);
  }
}
@keyframes rectanglesOne {
  50% {
    background: rgba(3, 255, 161, 0);
  }
}
@-webkit-keyframes rectanglesTwo {
  50% {
    background: #03ffa1;
  }
}
@keyframes rectanglesTwo {
  50% {
    background: #03ffa1;
  }
}
.dots-lines {
  width: 100%;
  text-align: center;
}

@media only screen and (max-width: 540px) {
  .shoppingpara h4 {
    width: 100%;
  }

  .social ul li {
    margin: 0;
    padding: 0 10px;
  }
  .social ul {
    padding: 0;
    margin: 0;
  }
  .btn_text {
    margin-top: 20px;
    width: 90%;
  }

  .heading {
    display: flex;
    margin: 0px 0px 0px 20px;
    font-family: system-ui;
    font-size: 24px;
  }

  .docs {
    /* display: none; */
    top: 30px;
    right: 80px;
  }
  .mobile-none {
    display: none;
  }
  .desktop-none {
    display: block;
  }
  .menu {
    top: 30px;
  }
  /* .sidemenu {
    z-index: 9999999;
    top: 10px;
    right: 0px;
  } */ 
  .sidemenu .closebtn {
    top: 10px;
  }
  .rectangles {
    position: relative;
    top: -24px;
    left: 147px;
    display: flex;
  }

  .input_text2 {
    width: 100%;
  }

  .dots-lines {
    width: 100%;
  }
  .dots-lines img {
    width: 90%;
  }
  .game h3 {
    font-size: 18px;
  }
  .game p {
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 20px;
    font-weight: 100;
    text-align: left;
    padding-top: 10px;
    margin: 0;
  }
  .community {
    height: auto;
    border-radius: 0px;
    border: none;
    background-image: url(../img/community_mobile.webp);
    box-shadow: none;
    display: flex;
    flex-direction: column;
    /* padding: 80px 20px; */
    justify-content: center;
    margin: 20px;
  }

  .centertext {
    width: 90%;
  }
  .centertext h1 {
    font-family: "swera_demoregular";
    font-size: 40px;
    padding-top: 30px;
    margin: 0;
    text-align: center;
  }
  .centertext p {
    font-size: 13px;
    font-weight: 300;
  }
  .second_box {
    height: 500px;
    background-image: url(../img/back_mobile.webp);
  }

  .second_box h2 {
    font-size: 36px;
    padding: 0 20px 20px;
    text-align: left;
  }
  .second_box p {
    text-align: center;
    padding: 0 50px 0 20px;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    text-align: left;
  }
  .community h2 {
    font-family: "swera_demobold";
    font-weight: 700;
    color: #fff;
    font-size: 36px;
    text-align: left;
    padding-top: 0;
    padding-left: 20px;
  }
  .community p {
    text-align: left;
    padding: 0 40px 0 20px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 14px;
  }
  .glitch {
    font-size: 30px;
    padding: 0 20px;
  }
  .glitch:before {
    padding: 0 20px;
  }
  .glitch:after {
    padding: 0 20px;
  }
  .socialul {
    display: flex;
    flex-direction: column;
  }
  form {
    width: 90%;
  }
  .mailer h2 {
    font-size: 40px;
  }
  .mailer {
    padding: 100px 20px;
  }
  .shoppingpara {
    color: #c3c3c3;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    letter-spacing: 0;
    line-height: 30px;
    font-weight: 100;
    text-align: justify;
    padding: 0px 20px;
  }
}

@media (min-width: 541px) and (max-width: 768px) {
  .mailer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 20px;
    border-top: 1px solid #363636;
    border-bottom: 1px solid #363636;
  }
  .mailer h2 {
    font-size: 30px;
  }
  .shoppingpara {
    color: #c3c3c3;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 24px;
    font-weight: 100;
    text-align: justify;
  }
  .glitch {
    font-family: "swera_demobold";
    font-weight: 700;
    color: white;
    font-size: 32px;
    position: relative;
  }
  .community h2 {
    font-size: 40px;
  }
  .community p {
    text-align: center;
    padding: 20px 20px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 18px;
  }
  .community {
    height: 500px;
  }
  .second_box h2 {
    font-family: "swera_demobold";
    font-weight: 700;
    font-size: 50px;
    text-align: center;
    padding: 20px;
    margin: 0;
    padding-bottom: 20px;
  }
  .second_box p {
    text-align: center;
    padding: 0 20px;
    font-size: 17px;
    font-weight: 300;
    line-height: 24px;
  }
  .second_box {
    height: 400px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .glitch {
    font-size: 40px;
  }
  .social ul li {
    margin: 0px 0px;
  }
  .community p {
    padding: 20px;
    font-size: 15px;
  }
  .community h2 {
    font-size: 40px;
  }
}

@media (min-width: 1025px) and (max-width: 1439px) {
  .second_box h2 {
    font-family: "swera_demobold";
    font-weight: 700;
    font-size: 40px;
    text-align: center;
    padding: 0px 200px;
    margin: 0;
    padding-bottom: 20px;
  }
  .second_box p {
    text-align: center;
    padding: 0 100px;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
  }
  .community {
    height: 600px;
  }
  .community h2 {
    font-family: "swera_demobold";
    font-weight: 700;
    color: #fff;
    font-size: 50px;
    text-align: center;
    padding-top: 100px;
  }
  .community p {
    text-align: center;
    padding: 20px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 18px;
  }
  .shoppingpara {
    color: #c3c3c3;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    letter-spacing: 1px;
    line-height: 24px;
    font-weight: 100;
    text-align: justify;
  }

  .mailer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 50px;
    border-top: 1px solid #363636;
    border-bottom: 1px solid #363636;
  }
  .glitch {
    font-size: 50px;
  }
}

@media (min-width: 1440px) and (max-width: 1600px) {
  .community p {
    text-align: center;
    padding: 20px 120px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 20px;
  }
  .mailer {
    padding: 200px 300px;
  }
  .glitch {
    font-size: 70px;
  }
}

@media (min-width: 1601px) and (max-width: 1900px) {
  .mailer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 150px 240px;
    border-top: 1px solid #363636;
    border-bottom: 1px solid #363636;
  }
  .glitch {
    font-size: 60px;
  }
  .game h3 {
    font-size: 20px;
  }
  .community {
    height: 600px;
  }
  .second_box {
    height: 500px;
  }
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wave {
  width: 5px;
  height: 100px;
  background: linear-gradient(45deg, cyan, #fff);
  margin: 5px;
  animation: wave 1s linear infinite;
  border-radius: 20px;
}
.wave:nth-child(2) {
  animation-delay: 0.1s;
}
.wave:nth-child(3) {
  animation-delay: 0.2s;
}
.wave:nth-child(4) {
  animation-delay: 0.3s;
}
.wave:nth-child(5) {
  animation-delay: 0.4s;
}
.wave:nth-child(6) {
  animation-delay: 0.5s;
}
.wave:nth-child(7) {
  animation-delay: 0.6s;
}
.wave:nth-child(8) {
  animation-delay: 0.7s;
}
.wave:nth-child(9) {
  animation-delay: 0.8s;
}
.wave:nth-child(10) {
  animation-delay: 0.9s;
}

@keyframes wave {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
