h1 {
  font-weight: 600;
  font-size: clamp(24px, 3vw, 47px);
  line-height: 100%;
  color: #111111;
}

h2 {
  font-weight: 400;
  font-size: clamp(20px, 3vw, 32px);
  line-height: 100%;
  color: #111111;
}

h3 {
  font-weight: 500;
  font-size: 16px;
  line-height: 138%;
  color: #111111;
}

h3 {
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: #111111;
}

.product {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.product img {
  max-width: 285px;
  width: 100%;
  border-radius: 5px;
}
.product .product-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.product .product-content h3 {
  color: rgb(17, 17, 17);
  border: 0;
  padding: 0;
}
.product .product-content .product-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product .product-content .product-info p {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: rgb(17, 17, 17);
}
.product .product-content .product-info .product-text {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.product .product-content .product-info .product-text p {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: rgb(17, 17, 17);
}
.product .product-content button {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  height: 50px;
  background-color: transparent;
  border: solid 1px rgb(39, 106, 139);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  align-items: center;
  cursor: pointer;
  color: rgb(39, 106, 139);
}
.product .product-content button span {
  color: rgb(24, 24, 24);
}

.btn {
  border: solid 1px rgb(39, 106, 139);
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(39, 106, 139);
  border-radius: 5px;
  max-width: 320px;
  width: 100%;
  text-decoration: none;
  cursor: pointer;
}

.about-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about-button .arrow {
  position: relative;
  width: 100%;
  max-width: 252px;
  height: 1px;
  background-color: #000;
}
.about-button .arrow::after {
  content: "";
  position: absolute;
  right: -4px;
  top: -4px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #000;
}
.about-button span {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid rgb(39, 106, 139);
  width: 320px;
  height: 50px;
  border-radius: 5px;
  color: rgb(39, 106, 139);
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  cursor: pointer;
}/*# sourceMappingURL=components.css.map */