/**
 * Fonts
 */
/**
 * HTML tag sizes
 */
/**
 * Global vars
**/
.page-header {
  margin-top: 6rem;
}
.page-header + section {
  margin-top: 2.5rem;
}
.page-header__title {
  margin: 0;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  margin: 0 -5px;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #d9dbe9;
  color: #302d80;
}
.breadcrumbs .breadcrumb {
  margin: 0 5px;
}

.product-item {
  display: block;
  margin-bottom: 3rem;
}
@media (max-width: 600px) {
  .product-item {
    margin-bottom: 1rem;
  }
}
.product-item:hover img {
  transform: scale(1.1);
}
.product-item__img {
  position: relative;
  display: block;
  background-color: #f7f8fb;
  border-radius: 0.8rem;
  padding: 2.4rem;
}
.product-item__img .product-tags {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
}
.product-item__img .product-tags .product-tag {
  padding: 0.5rem 1rem;
  background-color: #302d80;
  border-radius: 0.4rem;
  color: #fff;
  margin-right: 1rem;
}
.product-item__img .product-tags .product-tag p {
  margin: 0;
}
@media (max-width: 600px) {
  .product-item__img {
    padding: 1rem;
  }
}
.product-item__img img {
  margin: 0 auto;
  height: 100%;
  width: auto;
  max-width: 100%;
  transition: 0.2s;
}
.product-item__title {
  font-weight: 700;
  text-align: center;
  margin-top: 1.6rem;
  color: #302d80;
}

.news-list .product-item__img {
  width: 100%;
  aspect-ratio: 268/210;
}
.news-list .product-item__img img {
  -o-object-fit: cover;
     object-fit: cover;
}

.news-list {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
