*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #333;
  font-size: 20px;
  font-weight: 600;
}

body {
  margin: 0;
  font-family: sans-serif;
  background-color: #f3f3f3;
}

.container {
  max-width: 1200px;
  padding: 0 10px;
  margin: 0 auto;
}

.header-top {
  background-color: #131921;
  border-bottom: 1px solid #b2b2b2;
  padding: 10px;
}

.header-top a img {
  width: 100px;
}

.header-bottom {
  background-color: #fff;
  border-bottom: 1px solid #b2b2b2;
  box-shadow: 0px 18px 42px 0px #d6d6d6;
}

.header-bottom-f {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.header-box-a,
.header-box-b {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header-box-a img {
  width: 90px;
}

.product {
  text-align: center;
}

.product-title {
  font-size: 26px;
  font-weight: 600;
  margin: 40px 0 20px 0;
}

.product-text {
  font-size: 18px;
  margin-bottom: 10px;
}

.product_item {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 50px 0;
}

.product_items {
  max-width: 250px;
  width: 100%;
  border: 1px solid #e1e1e1;
  box-shadow: 0px 0px 13px 0px #d6d6d6;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  padding: 10px;
  border-radius: 8px;
}

.product_items-box img {
  width: 100%;
}

.product_items-title {
  font-size: 20px;
  font-weight: 600;
}

.product_items-text {
  font-size: 16px;
  font-weight: 400;
  margin: 10px 0;
}

.product_items-prime {
  position: relative;
  padding-left: 10px;
  display: inline-block;
  color: #117be6;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 10px;
}

.product_items-prime::before {
  content: "";
  background-image: url(../images/imag.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  top: 6px;
  left: 0;
  position: absolute;
}

.product_items-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  margin-top: 20px;
  padding: 10px 20px;
  border: 1px solid #b2b2b2;
  width: 80%;
  margin: 0 auto;
  border-radius: 20px;
}
