* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Abel", sans-serif;
  font-size: 10px;
  scroll-behavior: smooth;
}

.wrapper {
  width: auto;
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 400, 0, 0.4)), url("");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.Container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  border-bottom: 1px solid rgb(0, 0, 0);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  flex-direction: row;
  flex-grow: 2%;
  margin-inline-end: initial;
  opacity: 1;
}

.logo {
  margin: -3.5%;
}

.menu {
  display: inline-block;
  line-height: 80px;
}

.menu ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.menu ul li {
  display: inline-block;
}

.menu ul li a {
  text-decoration: none;
  font-family: "Raleway", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  color: black;
  border: 1.5px solid transparent;
  border-radius: 4px;
  padding: 10px 15px;
  transition: 0.5s ease;

}

.menu ul li a:hover {
  border-color: black;
}



.header {
  text-align: center;
}

header button:hover {
  border-color: white;
}

.header h1 {
  font-family: "Raleway", sans-serif;
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 1rem;
  color: black;
  padding: 45% 20px 8px;
}

.header p {
  font-family: "Raleway", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  color: black;
  padding: 10px 15px;
}


.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60vh;
  margin-top: 80px;
  z-index: 9999;

}

.video-container video {
  max-width: 90%;
  max-height: 100%;
  margin: auto;
  border-radius: 20px;
  z-index: 9999;
}

@media only screen and (max-width: 768px) {
  .video-container video {
    max-width: 90%;
    max-height: 100%;
    margin: auto;
    border-radius: 20px;
    z-index: 9999;
  }

  .video-container video::poster {
    border-radius: 20px;
  }

}

.aboutus {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: black;
  font-size: 10em;

}


/* TEXT */
a,
a:visited,
a:hover {
  text-decoration: none;
}

li {
  list-style: none;
}

h1,
h2,
h3 {
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: 0.3em;
}

p {
  font-weight: 500;
  line-height: 150%;
}

/* SPACING */
.container {
  max-width: 95%;
  margin: 0 auto;
}

@media (min-width: 1440px) {
  .container {
    max-width: 1440px;
  }
}

.containerTxt {
  max-width: 90%;
  margin: 0 auto;
}


/* FOOTER */
footer {
  background-color: rgba(34, 34, 34, 0.9);
  color: #fff;
  padding: 0px 0;
}

.wrapper1 {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.wrapper1 p {
  font-size: 12px;
  margin: 0;
  text-align: center;
  padding: 10px 0;
  flex: 0 0 100%;
}

.wrapper1 a {
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  font-weight: bold;
  margin-left: 10px;
}

.wrapper1 a:hover {
  text-decoration: underline;
  transition: all 0.9s ease-in-out;
  color: rgb(75, 214, 63);
}


h1 {
  margin-bottom: 15px;
}

@media only screen and (max-width: 768px) {
  h1 {
    margin-top: 10px;
  }
}


#chat-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(45deg, #FE0944, #ff6d6d);
  color: white;
  border: none;
  border-radius: 20px;
  padding: 15px 25px;
  font-size: 22px;
  cursor: pointer;
  z-index: 9999;
  transition: transform 0.2s ease-out;
  font-family: 'Montserrat', sans-serif;
}

#chat-button:hover {
  transform: translateY(-5px);
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  #chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(45deg, #FE0944, #ff6d6d);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 5px 25px;
    font-size: 24px;
    cursor: pointer;
    z-index: 9999;
    transition: transform 0.2s ease-out;
    font-family: 'Montserrat', sans-serif;
  }

  #chat-button:hover {
    transform: translateY(-5px);
    cursor: pointer;
  }
}