* {
  box-sizing: border-box;
  margin: 0;
}
body {
  background-color: black;
}
.desktop-none {
  display: none;
}
canvas {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgb(22, 17, 26);
  margin: 0;
}
.webgl {
  position: fixed;
  top: 0;
  left: 0;
  outline: none;
}
#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: 2;
}

#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: 40px;
  font-family: "swera_demobold";
  font-weight: bolder;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
  line-height: 50px;
  padding: 0;
}

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

#banner-mobile {
  display: none;
}

/*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*/

.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;
}

#mySidemenu {
  width: 0;
}

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

#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: 100%; */
  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: 10px;
  right: 10px;
}

/* 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: 15px !important;
  margin: 5px 0 !important;
  width: 100%;
  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);
}
.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 80px;
}

label {
  margin-left: 10px;
  font-size: 14px;
  font-family: Lato;
  color: #ababab;
}
.iti__country.iti__highlight {
  background-color: rgb(80 80 80 / 90%) !important;
}
@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) {
  .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;

  }
  .iti__flag-box,
  .iti__country-name {
    color: #fff !important;
  }
  .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;
  }
  .loading-text img {
    width: 60%;
}
  #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%;
    margin-top: 5px !important;
  }
}
.form-check-input[type="radio"] {
  appearance: auto;
}
.heading {
  display: flex;
  margin: 30px 0px 0px 80px;
  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: 100%;
  }

  .heading {
    display: flex;
    margin: 10px 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: 30px;
    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;
  }
  .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: 820px) {
  .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 80px;
    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: 768px) and (max-width: 820px) {
  .social ul li {
    margin: 0px 5px;
  }
}

@media (min-width: 821px) 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;
  }
}




/* contact form */  /* contact form *//* contact form *//* contact form *//* contact form *//* contact form *//* contact form *//* contact form *//* contact form */

.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;
}

.services_form{
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.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;
  width: 90%;
}
#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;
}
.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;
}

@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) {
  /* #message {
    margin: 10px !important;
} */

  .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: 10px 0px 0px;
  }
  .heading {
    display: flex;
    margin: 0px;
    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: 24px;
    font-family: 'swera_demobold';
    padding: 20px 0;
  }
  .sidemenu h3 {
    padding: 15px 0 15px 15px;
  }
}
.form-check-input[type="radio"] {
  appearance: auto !important;
}

.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;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wave {
  width: 5px;
  height: 100px;
  background: linear-gradient(45deg, cyan, #fff);
  margin: 3px;
  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);
  }
}



@media (min-width: 541px) and (max-width: 820px) {
  .shoppingpara h4 {
    width: 340px;
  }
  .tab-none {
    display: none;
  }
  .tab-display-center{
    display: flex;
    align-items: center;
  }
  .input_text2 {
    padding: 20px;
    margin: 10px 0px;
    width: 100%;
}
.rectangles {
  top: -10px;
  left: 157px;
}
.full-height-tab{
  height: 100%;
}
.second_box {
  margin-bottom: 100px;
}
.community {
  margin: 0px 50px;
}
.social ul li a {
  width: 80px;
  height: 80px;
}
textarea {
  width: 100%;
}

}
