.product-search {
    margin: 1.0625rem 0 2rem;
    position: relative;
    z-index: 1;
  }
  @media (min-width: 768px) {
    .product-search {
      margin: 1.0625rem 0 4.125rem;
    }
  }
  @media (min-width: 1200px) {
    .product-search {
      margin: 1.25rem 0 4.125rem;
    }
  }
.product-search-advanced {
    margin: 0rem auto 0rem auto !important;
}
@media (min-width: 992px) {
  .product-search:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2.5rem);
    height: 100%;
    max-width: 1680px;
    border-radius: 10px;
    background-color: #f2f2f2;
    pointer-events: none;
  }
}

.product-search__wrapper {
  background-color: #f2f2f2;
  border-radius: 10px;
  padding: 1.675rem 1.25rem 2.5rem;
}
@media (min-width: 992px) {
  .product-search__wrapper {
    position: relative;
    z-index: 1;
    background-color: transparent;
  }
}
.product-search__title {
  margin-bottom: 0.75rem;
}
@media (min-width: 1200px) {
  .product-search__title {
    margin-bottom: 1.375rem;
  }
}
.product-search__form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
@media (min-width: 1200px) {
  .product-search__form {
    gap: 1.75rem;
  }
}
.product-search__row {
  display: flex;
  flex-flow: row wrap;
  gap: 1.125rem 0.5rem;
}
@media (min-width: 992px) {
  .product-search__row {
    display: grid;
    align-items: flex-end;
  }
}
@media (min-width: 1200px) {
  .product-search__row {
    gap: 1rem;
  }
}
@media (min-width: 992px) {
  .product-search__row--top {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
.product-search__row--top > *:first-child, .product-search__row--top > *:nth-child(2) {
  flex: 0 0 100%;
}
.product-search__row--top > *:nth-child(3), .product-search__row--top > *:nth-child(4) {
  flex: 0 0 100%;
}
@media (min-width: 375px) {
  .product-search__row--top > *:nth-child(3), .product-search__row--top > *:nth-child(4) {
    flex: 0 0 calc(50% - 0.25rem);
  }
}
@media (min-width: 992px) {
  .product-search__row--bottom {
    grid-template-columns: 2fr 2fr 13.75rem;
  }
}
.product-search__row--bottom > *:first-child, .product-search__row--bottom > *:nth-child(2) {
  flex: 0 0 100%;
}
@media (min-width: 375px) {
  .product-search__row--bottom > *:first-child, .product-search__row--bottom > *:nth-child(2) {
    flex: 0 0 calc(50% - 0.25rem);
  }
}
.product-search__row--bottom > *:nth-child(3) {
  flex: 0 0 100%;
}
.product-search__btn  {
  text-align: right;
}
.product-search__btn button {
  width: 100%;
}

/*
.articles {
  margin: 5.625rem 0;
  padding: 5.625rem 0 5rem;
  background-color: #2874bb;
  position: relative;
}
@media (min-width: 992px) {
  .articles {
    margin: 9.375rem 0 6.25rem;
    padding: 4.6875rem 0 5.625rem;
  }
}
.articles:before, .articles:after {
  content: "";
  position: absolute;
  width: 4.8125rem;
  height: 1.875rem;
  background-color: #fff;
}
@media (min-width: 992px) {
  .articles:before, .articles:after {
    width: 9.1875rem;
    height: 4.375rem;
  }
}
.articles:before {
  top: -1px;
  left: 0;
  clip-path: polygon(0 0, 100% 0, calc(100% - 1rem) 100%, 0% 100%);
}
@media (min-width: 992px) {
  .articles:before {
    clip-path: polygon(0 0, 100% 0, calc(100% - 2.6875rem) 100%, 0% 100%);
  }
}
.articles:after {
  bottom: 0;
  right: 0;
  clip-path: polygon(1rem 0, 100% 0, 100% 100%, 0% 100%);
}
@media (min-width: 992px) {
  .articles:after {
    clip-path: polygon(2.6875rem 0, 100% 0, 100% 100%, 0% 100%);
  }
}
.articles__top {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  color: #fff;
  margin-bottom: 1.75rem;
}
@media (min-width: 992px) {
  .articles__top {
    margin-bottom: 2.5rem;
  }
}
.articles__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.125rem;
}
@media (min-width: 992px) {
  .articles__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.article-item {
  border: 2px solid #fff;
  background-color: #fff;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  padding: 1.875rem 1.25rem;
}
@media (min-width: 992px) {
  .article-item {
    padding: 1.75rem 1.625rem;
  }
}
@media (hover: hover) {
  .article-item {
    transition: background-color 300ms ease-in-out 0ms;
  }
  .article-item:hover {
    background-color: transparent;
  }
  .article-item:hover .article-item__date, .article-item:hover .article-item__title-link {
    color: #fff;
  }
  .article-item:hover .article-item__description {
    color: rgba(255, 255, 255, 0.5);
  }
  .article-item:hover .article-item__btn .button__link {
    color: #fff;
  }
  .article-item:hover .article-item__btn .button__link:before {
    background-color: #fff;
  }
}
.article-item__date {
  margin-bottom: 0.5625rem;
  font-weight: 500;
  color: #adadad;
}
@media (min-width: 992px) {
  .article-item__date {
    margin-bottom: 0.375rem;
  }
}
.article-item__title {
  margin-bottom: 0.75rem;
}
@media (min-width: 992px) {
  .article-item__title {
    margin-bottom: 1.25rem;
  }
}
.article-item__description {
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 1.25rem;
}
@media (min-width: 1200px) {
  .article-item__description {
    margin-bottom: 2.5rem;
  }
}
@media (hover: hover) {
  .article-item__date, .article-item__description {
    transition: color 300ms ease-in-out 0ms;
  }
}
.article-item__btn {
  margin-top: auto;
}
@media (hover: hover) {
  .article-item__btn .button__link:before {
    transition: background-color 300ms ease-in-out 0ms;
  }
}
*/

.icon-tiles {
  margin: 5.625rem 0 2.8125rem;
}
@media (min-width: 992px) {
  .icon-tiles {
    margin: 6.25rem 0 7.1875rem;
  }
}
.icon-tiles__title {
  text-align: center;
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .icon-tiles__title {
    margin-bottom: 3.4375rem;
  }
}
.icon-tiles__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.125rem;
}
@media (min-width: 992px) {
  .icon-tiles__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.icon-tile {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  border: 1px solid #d3d3d3;
  box-shadow: 0px 3px 76px rgba(0, 0, 0, 0);
  padding: 1.5rem 1.25rem;
}
@media (min-width: 1200px) {
  .icon-tile {
    padding: 2.75rem 2.75rem 1.625rem;
  }
}
@media (hover: hover) {
  .icon-tile {
    transition: border-color 300ms ease-in-out 0ms , box-shadow 300ms ease-in-out 0ms;
  }
  .icon-tile:hover {
    border-color: #fff;
    box-shadow: 0px 3px 76px rgba(0, 0, 0, 0.04);
  }
}
.icon-tile__icon-link {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.75rem;
}
@media (min-width: 1200px) {
  .icon-tile__icon-link {
    margin-bottom: 2.75rem;
  }
}
.icon-tile__title {
  margin-bottom: 0.8125rem;
}

.content-block {
  margin: 2.8125rem 0 3.75rem;
}
@media (min-width: 992px) {
  .content-block {
    margin: 6.875rem 0 7.5rem;
  }
}
.content-block__content p {
  color: rgba(0, 0, 0, 0.5);
}

.counters {
  margin: 3.75rem 0 5.625rem;
}
@media (min-width: 992px) {
  .counters {
    margin: 7.5rem 0 6.25rem;
  }
}
.counters__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2.8125rem;
}
@media (min-width: 992px) {
  .counters__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.8125rem 1.25rem;
  }
}
.counters__item {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media (min-width: 992px) {
  .counters__item {
    text-align: center;
  }
}
.counters__title {
  color: #2874bb;
  font-weight: 400;
}
.counters__title:before {
  content: attr(data-prefix);
}
.counters__title:after {
  content: attr(data-suffix);
}
