@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Play:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* 
{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family:"Poppins",sans-serif;
}
.load-wrapper
{
  background-color: black;
  background-size: cover;
  width:100vw;
  height:100vh;
  top:0;
  left:0;
  position: fixed;
  z-index: 9999;
  display: flex;
  justify-content:center;
  align-items: center;
}
.loader
{
  display:inline-block;
  width:200px;
  height:20px;
  position: relative;
  border-radius: 10px;
  border:2px solid white;
  top:30%;
}
.load-inner
{
  vertical-align: top;
  display: inline-block;
  height:100%;
  border-radius: 10px;
  background-color: rgb(46, 116, 255);
  animation: load-inner 4s  ease-in;
}
.load-wrapper img
{
  position:absolute;
  top:40%;
  width:220px;
  height:160px;
}


@keyframes load-inner
{
  0%
  {
    width:0%;
  }
  25%
  {
    width:0%;
  }
  50%
  {
    width:50%;
  }
  75%
  {
    width:75%;
  }
  100%
  {
    width:100%;
  }
}
body
{
  height:100%;
  padding: 0;
  margin: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(Pics/Male\ Futuristic\ Ai\ Robo.png);
  background-repeat: no-repeat;
  background-position: center;
  height:100%;
  min-height: 100vh;
  background-attachment: fixed;
  background-size: cover;
  background-color: #000000;
  overflow: auto;
}
.logo
{
  height:70px;
  width:130px;
  margin-top:-10px;
  padding-left:30px;
}
nav
{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width:100%;
  margin-top:25px;
}
nav ul
{
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
nav li{
  height: 50px;
}
nav a
{
  padding: 15px 25px;
  margin-right:5px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-family: sans-serif,"poppins";
  font-weight: bolder;
}
nav a:hover
{
  color:rgba(237, 250, 54, 0.975);
}
.drop2
{
  text-decoration: none;
  color: white;
  font-size: 20px;
  font-family: sans-serif,"poppins";
  float: left;
  overflow: hidden;
  margin-top: -10;
}
.drop2 .dropbtn2
{
  padding: 15px 25px;
  margin-right:5px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-family: sans-serif,"poppins";
  font-weight: bolder;
}

.drop2-content a:hover {
  background-color: #ffffff00;
  color: rgb(255, 255, 255);
}

/* Dropdown content (hidden by default) */
.dropdown-content 
{
  display: none;
  position: absolute;
  backdrop-filter: blur(20px);
  width: 250px;
  box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: rgb(255, 255, 255);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.drop2:hover .dropdown-content 
{
  display: block;
}

.dropdown:hover .dropbtn 
{
  background-color: #ffffff00;
  color: rgb(255, 255, 255);
}
nav li:first-child{
  margin-right: auto;
}
.sidebar
{
  position: fixed;
  top:-18px; 
  right: 0;
  height:max-content;
  width: 250px;
  padding:10px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  display: none;
  flex-direction: column;
  padding-left: 0px;
  z-index: 999;
}
.sidebar li{
  width: 100%;
  display:flex;
}
.sidebar a{
  width: 100%;
  text-align: left;
  font-size: 15px;  
}
.sidebar li a
{
  display:flex;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: flex-start ;
}
.menu-button
{
  display: none;
}


@media(max-width: 900px)
{
  .hideOnMobile{
    display: none;
  }
  .drop2
  {
    display: none ;
  }
  .menu-button
  {
    display: block;
  }

}
@media(max-width: 425px)
{
  .sidebar{
    width: 40%;
    height:max-content;
  }
}

.background-container {
  position: relative;
  top: 0;
  margin-top: -1vh;
  width: 100vw;
  height: 150vh;
  background-image: url('Pics/OIG4.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero h1 {
  display: flex;
  text-align: center;
  justify-content: center;
  margin-top: 80vh;
  z-index: 2;
  font-size: 15vh;
  letter-spacing: 0.5vw;
  font-family: "Play",sans-serif;
  animation: fadeIn 8s ease-in-out;
  color: white;
}

.hero h1 {
  transition: transform 0.5s ease-in-out;
}

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

  100% {
    opacity: 1;
  }
}
.skyscraper, .skyscraper2 {
  position: absolute;
  top: 0;
  width: 50vw;
  height: 120vh;
  transition: transform 1s ease-in-out;
  overflow-y: hidden;
}

.skyscraper {
  left: 40vw;
  margin-top: 30vh;
}

.skyscraper2 {
  left: 6vw;
  margin-top: 30vh;
}

#title1
{
  color:rgb(255, 255, 255);
  -webkit-text-stroke: 2px rgb(18, 18, 18);
  font-size: 12vh;
  text-align: center;
  margin-top:50px;
  margin-bottom: 25px;
  padding-top:50px;
  padding-bottom:50px;
}
.tit
{
  height:30vh;
  margin-bottom: 3%;
  background-color: rgb(0, 0, 0);
}
.itit
{
  width:100vw;
  height:30vh;
  margin-bottom: 3%;
  background:url(Pics/It-title.gif)no-repeat center;
  background-size: cover;
}
.ctit
{
  width:100vw;
  height:30vh;
  margin-bottom: 3%;
  background:url(Pics/cultural\ title.gif)no-repeat center ;
  background-size: cover;
}
.tit
{
  width:100vw;
  height:30vh;
  margin-bottom: 3%;
  background:linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),url(Pics/download2.gif)no-repeat center ;
  background-size: cover;
}

.clginf 
{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  align-items: center;
  height:max-content;
  border: transparent;
  backdrop-filter:blur(10px);
  background: rgba(255, 255, 255, 0.164);
  margin-bottom: 30px;
}
.clginf h2
{
  color: #ffffff;
  padding:90px;
  padding-bottom: 40px;
  text-align: left;
  font-size: 35px;
  font-weight:bolder;
  font-family: Arial, Helvetica, sans-serif;
}
.clginf h3
{
  padding: 20px;
  color: #ffffff;
  font-size: 20px;
  font-weight:bolder; 
  font-family: Arial, Helvetica, sans-serif;
}
.clginf p
{
  color: white;
  width:90vw;
  padding:15px;
  border:1px solid white;
  margin-bottom: 20px;
}
.rules
{
  backdrop-filter: blur(5px);
  background-color:rgba(1, 2, 31, 0.542);
  border-radius: 5px;
  width: 100%;
  max-width: 1200px;
  padding-top: 30px;
  padding:10px;
  margin: auto;
}
.rules h2
{
  padding:10px 20px;
  color:rgb(241, 239, 108);
}
.rules p
{
  padding: 10px;
  color:rgb(246, 254, 190);
  border: 1px solid  rgb(255, 255, 255);
}
body, html 
{
  overflow-x: hidden;
}
.ccontainer 
{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 0px;
}


.zard {
  overflow: visible;
  width: 390px;
  height: 390px;
  padding:0;
  margin:0;
}

.content {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 300ms;
  box-shadow: 0px 0px 10px 1px #000000ee;
  border-radius: 5px;
}

.front, .back {
  background-color: #0c0c0c;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 5px;
  overflow: hidden;
}
.front, .back1 {
  background-color: #0c0c0c;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 5px;
  overflow: hidden;
}
.front, .back2 {
  background-color: #0c0c0c;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 5px;
  overflow: hidden;
}



.back {
  width: 100%;
  height: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.back1 {
  width: 100%;
  height: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.back2 {
  width: 100%;
  height: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}





.back::before {
  position: absolute;
  content: ' ';
  display: block;
  width: 160px;
  height: 160%;
  background: linear-gradient(90deg, transparent, rgb(255, 2, 255),  rgb(255, 2, 255),  rgb(255, 2, 255),  rgb(255, 2, 255), transparent);
  animation: rotation_481 5000ms infinite linear;
}
.back1::before {
  position: absolute;
  content: ' ';
  display: block;
  width: 160px;
  height: 160%;
  background: linear-gradient(90deg, transparent, gold, gold, gold, gold, transparent);
  animation: rotation_481 5000ms infinite linear;
}
.back2::before {
  position: absolute;
  content: ' ';
  display: block;
  width: 160px;
  height: 160%;
  background: linear-gradient(90deg, transparent, rgb(255, 110, 173), rgb(255, 110, 173), rgb(255, 110, 173), rgb(255, 110, 173), transparent);
  animation: rotation_481 5000ms infinite linear;
}



.back-content {
  position: absolute;
  width: 99%;
  height: 99%;
  background-color: #020116;
  border-radius: 5px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.back1-content {
  position: absolute;
  width: 99%;
  height: 99%;
  background-color: #020116;
  border-radius: 5px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.back2-content {
  position: absolute;
  width: 99%;
  height: 99%;
  background-color: #020116;
  border-radius: 5px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}



.back-content h2{
  font-size: 25px;
  color:rgb(254, 255, 224);
  margin-top: 15px;
}


.back-content img{
  height: 300px;
  border-radius: 10px;
}
.back1-content img{
  height: 300px;
  border-radius: 10px;
}
.back2-content img{
  height: 300px;
  border-radius: 10px;
}


.zard:hover .content {
  transform: rotateY(180deg);
}

@keyframes rotation_481 {
  0% {
    transform: rotateZ(0deg);
  }

  0% {
    transform: rotateZ(360deg);
  }
}

.front {
  transform: rotateY(180deg);
  color: white;
  text-align: center;
  justify-content: center;
  padding-left: 10px;
  padding-right: 10px;
}

.front h1
{
  font-size: 14px;
  z-index: 2;
  padding:0px;
  padding-top:5px;
}
.front p {
  padding: 10px 10px;
  padding-bottom: 5px;
  border: 1px solid white;
}
.front h2
{
  color:aqua;
  padding:20px;
}
.front h3
{
  font-size:16px;
  color:rgb(251, 255, 129);
  padding:2px;
}
.front-content .badge {
  background-color: #00000055;
  padding: 2px 10px;
  border-radius: 10px;
  backdrop-filter: blur(2px);
  width: fit-content;
}


.title {
  font-size: 11px;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
}

.title p {
  width: 50%;
}

.card-footer {
  color: #ffffff88;
  margin-top: 5px;
  font-size: 8px;
}

.front .img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color:#fdfd1abf;
  z-index: -1;
  position: relative;
  filter: blur(15px);
  animation: floating 2600ms infinite linear;
}

#bottom {
  background-color: #ff20d6a5;
  left: 50px;
  z-index: -1;
  width: 150px;
  height: 150px;
  animation-delay: -800ms;
}

#right {
  background-color: #ff00aa; 
  left: 160px;
  top: -80px;
  z-index: -1;
  width: 30px;
  height: 30px;
  animation-delay: -1800ms;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0px);
  }
}
footer
{
  background-color: black;
  height:80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer h2
{
  font-family: sans-serif;
  font-size:15px;
  color:grey;
  display:flex;
  text-align: center;
  justify-content: center;
  padding-left: 20px;
}
.joinus
{
display: flex;
justify-content: center;
margin: 80px 0;
}
.joinus button {
position: relative;
display: inline-block;
cursor: pointer;
outline: none;
border: 0;
vertical-align: middle;
text-decoration: none;
background: transparent;
padding: 0;
font-size: inherit;
font-family: inherit;
}

.joinus button.learn-more 
{
width: 12rem;
height: auto;
}

.joinus button.learn-more .jcircle 
{
transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
position: relative;
display: block;
margin: 0;
width: 3rem;
height: 3rem;
background: #282936d0;
border-radius: 1.625rem;
}

.joinus button.learn-more .jcircle .icon {
transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
position: absolute;
top: 0;
bottom: 0;
margin: auto;
background: #fff;
}

.joinus button.learn-more .jcircle .icon.arrow {
transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
left: 0.625rem;
width: 1.125rem;
height: 0.125rem;
background: none;
}

.joinus button.learn-more .jcircle .icon.arrow::before {
position: absolute;
content: "";
top: -0.29rem;
right: 0.0625rem;
width: 0.625rem;
height: 0.625rem;
border-top: 0.125rem solid gold;
border-right: 0.125rem solid gold;
transform: rotate(45deg);
}

.joinus button.learn-more .button-text a{
font-size: 18px;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
padding: 0.75rem 0;
margin: 0 0 0 1.85rem;
color:white;
font-weight: 700;
line-height: 1.6;
text-align: center;
text-transform: uppercase;
text-decoration: none;
}

.joinus button:hover .jcircle {
width: 100%;
}

.joinus button:hover .jcircle .icon.arrow {
background:gold;
transform: translate(1rem, 0);
}

.joinus button:hover .button-text  a{
color: white;
}
 .soicons{
  display: flex;
  justify-content: space-between;
  align-items: center ;
  padding-right: 30px;
 }

.soicons .button {
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(120deg, #833ab4, #fd1d1d, #fcb045);
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
  transition: 0.1s;
}
.soicons .button svg {
  color: white;
  width: 30px;
  height: 30px;
  z-index: 9;
}

.soicons .button:nth-child(2) {
  background: linear-gradient(120deg, #02ff2c, #008a12);
}

.soicons .button:nth-child(1) {
  background: linear-gradient(120deg, #833ab4, #fd1d1d, #fcb045);
}

.soicons .button:nth-child(3) {
  background: rgb(255, 33, 33);
}

.soicons .button:nth-child(6) {
  background: black;
}

.soicons .button:active {
  transform: scale(0.85);
}

.soicons .button::before {
  content: "";
  position: absolute;
  width: 55px;
  height: 55px;
  background-color: #212121;
  border-radius: 50px;
  z-index: -1;
  border: 0px solid rgba(255, 255, 255, 0.411);
  transition: 0.4s;
}
.soicons .button:hover::before {
  width: 0px;
  height: 0px;
}
.combtn
{
  display:flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  width:180px;
  height:40px;
  color:white;
  font-size: 18px;
  text-decoration: none;
  background-color: rgba(6, 67, 4, 0.956);
  border-radius: 5px;
  border:1px solid white;
}
.combtn:hover
{
  background-color:green;
}

.culbtn
{
  display:flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  width:180px;
  height:40px;
  color:white;
  font-size: 18px;
  text-decoration: none;
  background-color: rgba(6, 67, 4, 0.956);
  border-radius: 5px;
  border:1px solid white;
}
.culbtn:hover
{
  background-color:green;
}

.itbtn
{
  display:flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  width:180px;
  height:40px;
  color:white;
  font-size: 18px;
  text-decoration: none;
  background-color: rgba(6, 67, 4, 0.956);
  border-radius: 5px;
  border:1px solid white;
}
.itbtn:hover
{
  background-color:green;
}









/* For phones (max-width: 37.5vw or 600px) */
@media screen and (max-width: 600px) {

  .background-container {
    top: 0;
    margin-top: -1vh;
    width: 100vw;
    height: 90vh;
    background-image: url('Pics/OIG4.jpeg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    perspective: -100px;
  }

  nav ul {
    flex-direction: row;
    justify-content: flex-end;
  }

  nav a {
    font-size: 2.2vh;
    padding: 2.5vh 2.5vw;
  }

  .hero h1 {
    font-size: 6vh;
    margin-top: 35vh;
    text-align: center;
  }

  .skyscraper, .skyscraper2 {
    width: 70vw;
    height: 70vh;
    margin-top: 20vh;
  }

  .skyscraper {
    left: 45vw;
  }

  .skyscraper2 {
    left: -10vw;
  }

  .sidebar {
    width: 50vw;
  }

  .clginf 
{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  align-items: center;
  height:max-content;
  border: transparent;
  backdrop-filter:blur(10px);
  background: rgba(255, 255, 255, 0.164);
}
.clginf h2
{ 
  color: #ffffff;
  padding:90px 30px  20px;
  font-size: 20px;
  font-weight:bolder;
  font-family: Arial, Helvetica, sans-serif;
}
.clginf h3
{
  color: #ffffff;
  font-size: 20px;
  padding:20px;
  font-weight:bolder; 
  font-family: Arial, Helvetica, sans-serif;
}
  .ccontainer 
  {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 0px;
  }
  
  
  .zard {
    overflow: visible;
    width: 390px;
    height: 390px;
    padding:0;
    margin:0;
  }

}

/* For tablets (min-width: 37.5vw and max-width: 56.25vw or 900px) */
@media screen and (max-width: 500px) {

  .background-container {
   
    width: 100vw;
    height: 90vh;
    background-image: url('Pics/OIG4.jpeg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    perspective: -100px;
  }

  nav ul {
    flex-direction: row;
    justify-content: flex-end;
  }

  nav a {
    font-size: 2.2vh;
    padding: 2.5vh 2.5vw;
  }
  .logo
  {
    height:60px;
    width:110px;
    margin-top:-10px;
    padding-left:20px;
  }
  .hero h1 {
    font-size: 6vh;
    margin-top: 40vh;
    text-align: center;
  }

  .skyscraper, .skyscraper2 {
    width: 70vw;
    height: 70vh;
  }

  .skyscraper {
    left: 45vw;
    margin-top: 20vh;
  }

  .skyscraper2 {
    margin-left: -15px;
    margin-top: 20vh;
  }

  .sidebar {
    width: 50vw;
  }
footer
{
  bottom: 0;
  width:100%;
  margin-top: auto;
  background-color: black;
  height:60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer h2
{
  font-family: sans-serif;
  font-size:6px;
  color:grey;
  display:flex;
  text-align: center;
  justify-content: center;
  padding-left: 10px;
}
.soicons{
  display: flex;
  flex-wrap: wrap;
  padding-right: 5px;
}

.soicons .button 
{
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(120deg, #833ab4, #fd1d1d, #fcb045);
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.1s;
}
.soicons .button svg {
  color: white;
  width: 30px;
  height: 30px;
  z-index: 9;
}
.soicons .button::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #212121;
  border-radius: 50px;
  z-index: -1;
  border: 0px solid rgba(255, 255, 255, 0.411);
  transition: 0.4s;
}
.soicons .button:hover::before {
  width: 0px;
  height: 0px;
}

.clginf 
{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  align-items: center;
  height:max-content;
  border: transparent;
  backdrop-filter:blur(10px);
  background: rgba(255, 255, 255, 0.164);
}
.clginf h2
{ 
  color: #ffffff;
  padding:90px 30px  20px;
  font-size: 20px;
  font-weight:bolder;
  font-family: Arial, Helvetica, sans-serif;
}
.clginf h3
{
  padding-top: 30px;
  color: #ffffff;
  font-size: 20px;
  font-weight:bolder; 
  font-family: Arial, Helvetica, sans-serif;
}

#title1
{
  color:rgb(255, 255, 255);
  -webkit-text-stroke: 2px rgb(18, 18, 18);
  font-size: 7vh;
  text-align: center;
  margin-top:50px;
  margin-bottom: 25px;
  padding-top:50px;
  padding-bottom:50px;
}

.ccontainer 
{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 0px;
}


.zard {
  overflow: visible;
  width: 390px;
  height: 390px;
  padding:0;
  margin:0;
}
}










