* {
  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;
}

.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;
}

.container {
  width: 75%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

form {
  background: url('img/form.png') center center/cover no-repeat;
  display: flex;
  flex-direction: column;
  padding: 2vw 4vw;
  width: 90%;
  max-width: 600px;
  border-radius: 10px;
  margin-left: 800px;
  margin-bottom: 200px;
}

form h3 {
  flex-direction: column;
  padding: 2vw 4vw;
  width: 90%;
  max-width: 600px;
  border-radius: 10px;
  color: white;
  margin-bottom: 20px;
  font-size: 42px;
}

form input,
form textarea {
  border: 0;
  margin: 10px 0;
  padding: 20px;
  outline: none;
  background: black;
  font-size: 16px;
  color: white;
}

form button {
  padding: 15px;
  background: #ff5361;
  color: #ffff;
  font-size: 18px;
  border: 0;
  outline: none;
  cursor: pointer;
  width: 150px;
  margin: 20px auto 0;
  border-radius: 30px;
}

.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;
}


.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.card {
  position: relative;
  min-width: 200px;
  text-align: center;
  margin: 10px;
  transition: transform 0.3s eas-in-out;
  width: 300px;
  height: 400px;

}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
}

.card-content {
  position: relative;
}

.card img {
  width: 500px;
  height: auto;
  border-radius: 8px;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 83.5%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.overlay-text h2,
.overlay-text p,
.overlay-text h1,
.overlay-text .buy-button {
  white-space: nowrap;
  margin: 10px 0;
}


.buy-button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.buy-button:hover {
  background-color: #45a049;
}

.buy-button {
  position: center;
}

.top {
  position: absolute;
  color: white;
  top: 210px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 40px;
}

.product-card {
  position: relative;
}

.hidden {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(50px);
  transition: opacity 1s, filter 1s, transform 1s;
}

.show {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}


.container {
  display: flex;
  justify-content: flex-start;
  overflow: visible;
  margin-top: 50px;
}

.row {
  display: flex;
  justify-content: space-between;
  transition: transform 0.5s ease-in-out;
  margin-left: 0;
}

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


.back {
  margin-top: 20px;
  margin-left: 20px;
  text-align: left;
  z-index: 3;
}

#backButton {
  background-color: #3498db;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

#backButton {
  position: absolute;
  transform: translate(-50%, -50%);
  color: #fff;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

#backButton:hover {
  background-color: #2980b9;
}




.info {
  float: left;
  margin-left:70px;
  margin-top:100px;
}

.info h2{
  font-size: 25px;
  color: gold;
}

.info img {
 width: 10%; 
 height: 20%; 
}

.facebook-logo {
 width: 20px;
 height: 20px;
}



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