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

body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.page {
  width: calc(100% - 80px);
  height: 100vh;
  background-image: linear-gradient(rgba(12, 3, 51, 0.3), rgba(12, 3, 51, 0.3));
  position: relative;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  z-index: 1;
  box-sizing: border-box;
  margin: 0;
}


.containers {
  width: 100%;
  max-width: 110%;
  padding: 0 20px;
}

nav {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 30px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav h1 {
  width: 350px;
  color: white;
}

nav div {
  width: 25px;
}

nav ul li {
  list-style: none;
  display: inline-block;
  margin-left: 40px;
}

nav ul li a {
  text-decoration: none;
  color: #ffff;
  font-size: 17px;
}

.content {
  text-align: center;

}

.content h1 {
  font-size: 160px;
  color: #fff;
  font-weight: 600;
}

.content img.logo {
  width: 1200px;
  height: auto;
  margin-left: 35%
}

.content h1:hover {
  -webkit-text-stroke: 2px #ffff;
  color: transparent;
}

.content a {
  text-decoration: none;
  display: inline-block;
  color: #ffff;
  font-size: 24px;
  border: 2px solid #ffff;
  padding: 14px 70px;
  border-radius: 50px;
  margin-top: 20px;
}



.productBox {
  text-align: center;
  background-color: #DCE0E1;
  padding: 20px;
  box-shadow: 0 50px 50px #757676;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.productBox {
  transition: transform 0.3s ease-in-out;
}

.productBox:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}

.back-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: fill;
  z-index: -1;
}




.top {
  position: absolute;
  color: white;
  bottom: 0%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 40px;
}
.product-card {
  position: relative;
}

.overlay-text {
  position: center;
  top: 2px;
  transform: translate(-220%, 290%);
  color: #fff;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.overlay-text h2,
.overlay-text p,
.overlay-text h1,
.overlay-text {
  white-space: nowrap;
  margin: 1% 0;
  font-size: 35px;
}

.card {
  flex: 0 0 calc(33.33% - 20px);
  margin: 90%x;
  margin-top: -70%;
  margin-left: 30%;
}

.slider-container {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px; /* Adjust as needed */
}

.slider {
  width: 100%;
  display: flex;
}

.slider img {
  width: 100%;
  height: auto;
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: white;
  text-align: center;
  padding: 10px;
  z-index: 2;
  font-size: 20px;
}