@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&family=Poppins:wght@600&family=Ubuntu+Mono:ital@1&display=swap');

:root {
  --primary: #00D1FF;
  --light: #EEEEEE;
  --dark: #212121;
}

html {
  scroll-behavior: smooth;
}

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

.container {

  font-family: Poppins;
  max-width: 1280px;
  margin: 0 auto;

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

nav {
  position: flex;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: var(--dark);
  padding: 16px 32px;
  border-bottom: 3px solid var(--primary);
}

h1 {
  color: #FFF;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hamburger {
  display: block;
  position: relative;
  z-index: 1;

  user-select: none;

  appearance: none;
  border: none;
  outline: none;
  background: none;

  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;

  background-color: var(--light);
  border-radius: 6px;
  z-index: 1;

  transform-origin: 0 0;

  transition: 0.4s;
}

.hamburger:hover span:nth-child(2) {
  transform: translateX(10px);
  background-color: var(--primary);
}

.hamburger.is-active span:nth-child(1) {
  transform: translate(0px, -2px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: translateX(15px);
}

.hamburger.is-active span:nth-child(3) {
  transform: translate(-3px, 3px) rotate(-45deg);
}

.hamburger.is-active:hover span {
  background-color: var(--primary);
}

.menu {
  display: none;
  flex: 1 1 0%;
  justify-content: flex-end;
  margin: 0 -16px;
}

.menu a {
  color: #FFFFFF;
  margin: 0 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s;
  padding: 8px 16px;
  border-radius: 99px;
}

.menu a.is-active, .menu a:hover {
  background-color: var(--primary);
  color: #000000;
}

.bruh {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 18px;
}

#hero{
  width: 100%;
  height: 100vh;
  background: black no-repeat center / cover;
  color: white;
}

.container2 {
  width: 90%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container2 .info h1{
  font-size: 3rem;
  margin-bottom: 1rem;
}

.container2 .info h2{
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.container2 .info p{
  font-size: 1.2rem;
  max-width: 70%;
}

.container2 .info a{
  text-decoration: none;
  display: inline-block;
  background: white;
  border-radius: 4px;
  font-size: 1.8rem;
  padding: .5em 2em;
  margin-top: 2rem;
  color: black;
}

.container2 .info a:hover{
  background: var(--primary);
  transition: 0.4s ease-out;
}

#about{
  width: 100%;
  height: 100vh;
  color: black;
}

.container3 {
  width: 90%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.container3 .info h1{
  font-size: 3rem;
  margin-bottom: 1rem;
  color: black;
  justify-items: center;
}

.container3 .info p{
  font-size: 1.2rem;
  max-width: 70%;
  margin: 0 auto;
}

.moment {
  color: white;
  width: 60%;
  height: 60vh;
  background: black;
  margin: 0 auto;
  border-radius: 20px;
  margin-bottom: 1rem;
}


#team{
  width: 100%;
  min-height: 100vh;
  background: black;
  color: white;
  display: table;
}

.container4 {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.container4 .info h1{
  font-size: 3rem;
  margin-bottom: 1rem;
  margin-top: 6rem;
  color: white;
  justify-items: center;
}

.container4 .info h2{
  margin-top: 1rem;
  font-size: 1.7rem;
  color: black;
  justify-items: center;
}

.container4 .info p{
  font-size: 1.2rem;
  max-width: 70%;
  margin: 0 auto;
  margin-bottom: 1rem;
}

.cont {
  flex-wrap: wrap;
  display:flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-bottom: 5rem;

}

.card {
  background: white;
  width: 250px;
  color: black;
  margin: 10px;
  border-radius: 15px;
}

.card-image {
  height: 250px;
  margin-bottom: 15px;
  background-size: cover;
  border-radius: 15px 15px 0 0;
}

.car-1{
  background-image: url(assets/ashwin.webp)
}

.car-2{
  background-image: url(assets/huraira.webp)
}

.car-3{
  background-image: url(assets/william.webp)
}

.car-4{
  background-image: url(assets/kabir.webp)
}

.car-5{
  background-image: url(assets/kaira.webp)
}


#demos{
  width: 100%;
  height: 100vh;
  color: black;
}

.container5 {
  width: 90%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.container5 .info h1{
  font-size: 3rem;
  margin-bottom: 1rem;
  color: black;
  justify-items: center;
}

.container5 .info p{
  font-size: 1.2rem;
  max-width: 70%;
  margin: 0 auto;
}

.dropdown {
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  text-align: center;
  align-items: center;
  background: #0F0F0F;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.dropdown a {
  padding: 1rem;
  color: white;
  font-family: Poppins;
  text-decoration: none;
  font-style: italic;
}

.dropdown a:hover {
  color: var(--primary);
}

.hidden {
  display: none;
}

.footer-container {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background-color: var(--dark);
  padding: 4rem 0 4rem 0;
}

.footer {
  font-family: Poppins;
  width: 80%;
  height: 40vh;
  background-color: var(--dark);
  color: #ffffff;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
}

.footer-heading {
  display: flex;
  flex-direction: column;
  margin-right: 4rem;
}

.footer-heading h2 {
  margin-bottom: 2rem;
}

.footer-heading a {
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer-heading a:hover {
  color: var(--primary);
  transition: 0.3s ease-out;
}

.footer-email-form h2 {
  margin-bottom: 2rem;
}

input[type=email] {
  width: 7rm;
  height: 40px;
  border-radius: 4px 0 0 4px;
  outline: none;
  border: none;
  padding-left: 0.5rem;
  font-size: 1rem;
  margin-bottom: 1rem;
}

#footer-email::placeholder {
  color: #b1b1b1;
}

#footer-email-btn {
  width: 5rem;
  height: 40px;
  border-radius: 0 4px 4px 0;
  background-color: var(--light);
  outline: none;
  border: none;
  color: black;
  font-size: 1rem;
}

#footer-email-btn:hover {
  cursor: pointer;
  background-color: var(--primary);
  transition: all 0.4s ease-out;
}

#setup{
  width: 100%;
  height: 100vh;
  color: white;
  background-color: black;
}

.container6 {
  width: 90%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.container6 .info h1{
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
  justify-items: center;
}

.container6 .info p{
  max-width: 70%;
  margin: 0 auto;
}

.steps {
  margin-bottom: 2rem;
}

.boxi {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 2rem;
}

.vid {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
  .menu {
    display: flex;
  }
  .dropdown {
    display: none;
  }
  .cont {
    margin-top: 5rem;
  }
}

@media only screen and (max-width: 768px){
  html{
    font-size: 10px;
  }
  .footer-3 {
    display: none;
  }
  .cont {
    margin-bottom: 5rem;
  }
}

#pricing{
  width: 100%;
  min-height: 100vh;
  background: white;
  color: black;
  display: table;
}

.container7 {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.container7 .info h1{
  font-size: 3rem;
  margin-bottom: 1rem;
  margin-top: 6rem;
  color: black;
  justify-items: center;
}

.container7 .info h2{
  margin-top: 20px;
  color: black;
  justify-items: center;
}

.container7 .info h3{
  color: var(--dark);
  justify-items: center;
}

.container7 .info p{
  max-width: 70%;
  margin: 0 auto;
  margin-bottom: 20px;
  margin-top: 25px;
}

.container7 .info ul{
  margin-top: 40px;
  font-size: 14px;
  color: black;
  position: absolute;
  display: inline-block;
  margin-left: -65px;
  margin-right: 10px;
  text-align: left;
}

.pricecard {
  background: white;
  width: 250px;
  color: black;
  margin: 10px;
  border-radius: 15px;
  border: 4px solid black;
  min-height: 350px;
  position: relative;
}

.bubble {
  border-radius: 68px;
  background: var(--primary);
  color: black;
}

.zerodis {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: auto;
  bottom: 6px;
}

.clicker {
  background: var(--primary);
  color: black;
}

.clicker:hover {
  background: var(--dark);
  color: white;
  cursor: pointer;
  transition: 0.3s ease-out;
}
