@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  list-style: none;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

:root {
  --accent: #896845;
  --accent-bright: #D15C3C;
  --ass: #777777;
  --white: #ffffff;
  --black: #0e0a07;
}

body .product {
  width: 100%;
  min-height: 100vh;
  padding: 30px 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
body .product .header_text {
  font-size: 6rem;
  font-weight: 600;
  color: var(--ass);
}
body .product img {
  width: 500px;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
body .products {
  margin-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
body .products .box {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  box-shadow: 0 0 7px var(--ass);
  border-radius: 0.6rem;
  overflow: hidden;
  transition: all 0.7s ease;
}
body .products .box img {
  width: 100%;
}
body .products .box p {
  padding: 1rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  color: var(--ass);
  font-size: 1rem;
}
body .products .box p ion-icon {
  font-size: 1.4rem;
  color: var(--accent-bright);
}
body .products .box:hover {
  transform: scale(1.1);
  box-shadow: 3px 3px 12px var(--ass);
}
body .brands {
  width: 100%;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: var(--white);
}
body .brands .title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-bright);
}
body .brands .logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
body .brands .logos img {
  height: 100px;
}
body .brands .dnld-btn {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 7px 17px;
  border: 2px solid var(--ass);
  border-radius: 100px;
  color: var(--ass);
}
body .brands .dnld-btn:hover {
  background: var(--ass);
  color: var(--white);
}

@media screen and (max-width: 999px) {
  body .product {
    width: 100%;
    min-height: 60vh;
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  body .product .header_text {
    font-size: 4rem;
    font-weight: 600;
    color: var(--ass);
  }
  body .product img {
    width: 100%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  body .brands .logos img {
    height: auto;
    width: 300px;
  }
  body .brands .dnld-btn {
    margin-top: 1rem;
  }
}/*# sourceMappingURL=global2.css.map */