* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "Neue Montreal"; */
}

@font-face {
  font-family: heading;
  src: url(../fonts/MilkyWalky-Regular.otf);
}

@font-face {
  font-family: para;
  src: url(../fonts/paragraph.woff2);
}

html,body{
  background-color: #e0fff7;
  cursor: none;
  overflow-x: hidden;
}

body::-webkit-scrollbar{
  display: none;
}

#chatdiv{
  position: fixed;
  display: flex;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}
#chatdiv>a>img{
  width: 100px;
}


.container {
  position: absolute;
  width: 100vw;
  height: 100px;
  overflow: hidden;
  background: #ffffff00;
  z-index: 999999 !important;
}

.navbar {
  position: fixed;
  z-index: 999999 !important;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2em 3em;
}

.site-logo {
  width: 110px;
  height: 50px;
  margin-left: -20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-logo img{
  width: 100% !important;
  height: 50px;
}

#menu-toggle-btn {
  margin-top: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
  width: 20px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10000;
}

span {
  height: 2px;
  background: #000000;
  width: 24px;
  display: inline-block;
  position: absolute;
  top: 50%;
  transition: all 0.3s;
}

span::before {
  content: " ";
  position: absolute;
  display: inline-block;
  height: 2px;
  background: #000000;
  transform: translateY(-4px);
  width: 24px;
  transition: all 0.3s;
}

span::before {
  top: -2px;
}

.active span {
  transform: rotate(45deg);
  background: #000;
}

.active span::before {
  top: unset;
  transform: rotate(-90deg);
  background: #000;
}

.active:hover span::before {
  top: unset;
}

#nav-container {
  /* border: 2px solid red; */
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  background: #b8b8b8;
  color: #000;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
}

.nav {
  /* border: 2px solid green; */
  width: 70%;
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
}

.flex {
  /* border: 2px solid yellow; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  justify-content: flex-start;
  align-items: start;
  width: 400px;
  height: 400px;
  object-fit: cover;
}

.nav-logo img{
  width: 100%;
}

.nav-socials {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-top: -100px;
}

.nav-socials a {
  font-weight: 400;
  text-decoration: none;
  font-family: para;
  color: #000;
  font-size: 24px;
}

.nav-link {
  position: relative;
}

.nav-link a {
  padding-left: 250px !important;
  font-family: heading;
  position: relative;
  top: 60px;
  text-decoration: none;
  color: #000;
  font-size: 60px;
  font-weight: 800;
}

.nav-link a:hover{
  letter-spacing: 3px;
  transition: all 250ms ease-in-out;
}

.nav-item-wrapper:after {
  content: "";
  position: absolute;
  top: 60px;
  left: 0;
  width: 500px;
  height: 60px;
  background: #b8b8b8;
  margin: 0 auto;
  transition: 1s;
}

.nav-footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 2em 1em;
  display: flex;
  justify-content: space-between;
}

.nav-footer a {
  text-decoration: none;
  color: #000;
  font-size: 20px;
  padding: 0 1em;
  font-family: para;
}

.banner{
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  z-index: 0;
}

.headervideo {
  width: 80%;
  /* height: 100vh; */
  object-fit: cover;
 }
 
 .headervideo video{
   width: 100%;
   margin-top: 100px;
   height: 80%;
   object-fit: cover;
 }


@media (max-width: 900px) {
  .nav {
    flex-direction: column-reverse;
  }

  .nav-logo {
    display: none;
  }

  .nav-socials {
    flex-direction: row;
    margin-top: 4em;
  }

  .nav-socials a {
    padding: 0 0.4em;
  }

  .nav-footer {
    display: none;
  }
}

@media screen and (min-width: 300px) and (max-width:500px){

  .site-logo{
    width: 60px;
  }
  #nav-container .nav{
    display: flex;
    flex-direction: column-reverse;
    width: 100vw;
  }

  .flex{
    display: flex;
    flex-direction: column;
    margin-bottom: 100px;
  }

  .columlink{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 200px;
  }

  .nav-link{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -250px;
  }

  .nav-socials{
    display: flex;
    flex-direction: column-reverse;
  }

  .headingfornav{
    font-size: 30px !important;
    margin-top: 100px !important;
  }
}