:root {
  --primary: #F9BF2B;
  --mild-yellow: #F4C643;
  --red: #F4C643;
  --white: #ffffff;
  --gray: #282827;
  --medium-gray: #E9E9EC;
  --light-gray: #F2F2F8;
  --dark: #3c3c3c;
  --black: #0E0E0E;
}

.header-with-image-container {
  min-height: 320px;
}
.header-with-image-container h1 {
  font-size: 2.625rem;
}
.header-with-image-container h1.title-big {
  font-size: 3.5rem;
}
.header-with-image-container.bigger {
  min-height: 220px;
  margin-bottom: -20px;
  position: relative;
  z-index: 9;
}

section.post-list-with-filtration-1 .aside {
  max-width: 250px;
}
@media screen and (max-width: 991.98px) {
  section.post-list-with-filtration-1 .aside {
    max-width: 100%;
  }
}
section.post-list-with-filtration-1 .aside #search-input {
  border-radius: 50px;
  min-height: 45px;
  padding-left: 0.75rem;
  border: none;
}
section.post-list-with-filtration-1 .aside .aside-wrapper .accordion-item {
  border: 0;
}
section.post-list-with-filtration-1 .aside .aside-wrapper .accordion-item .accordion-collapse .filter-item {
  accent-color: var(--primary);
}
section.post-list-with-filtration-1 .aside .aside-wrapper .accordion-item .accordion-collapse .accordion-body {
  background-color: var(--white);
}
section.post-list-with-filtration-1 .aside .aside-wrapper .accordion-item .accordion-button {
  color: var(--gray);
}
section.post-list-with-filtration-1 .aside .aside-wrapper .accordion-item .accordion-button:focus {
  box-shadow: none;
}
section.post-list-with-filtration-1 .posts {
  position: relative;
}
section.post-list-with-filtration-1 .posts .loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 105%;
  height: 100%;
  z-index: 10;
  background-color: white;
  opacity: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.post-list-with-filtration-1 .posts .loading-overlay.hidden {
  display: none;
}
section.post-list-with-filtration-1 .posts .loading-overlay svg {
  background: none !important;
}

.product-card .wrapper {
  min-height: 360px;
}
.product-card a {
  text-decoration: none;
  color: var(--gray);
}
.product-card a .content h2 {
  font-size: 1.125rem;
}
.product-card a .content p {
  color: #848484;
  margin-bottom: 0;
}
.product-card a .image img {
  width: 100%;
  height: auto !important;
  max-height: 220px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.3s;
}
.product-card a:hover .content h2 {
  color: var(--primary);
}
.product-card a:hover .image img {
  transform: scale(1.05);
}

.download-pdf-banner {
  min-height: 210px;
}
.download-pdf-banner h2 {
  color: var(--white);
  font-size: 2.25rem;
}
.download-pdf-banner .polygon {
  clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
  background-color: #3d3d3b;
  width: 28%;
  height: 100%;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767.98px) {
  .download-pdf-banner .polygon {
    width: 35%;
  }
}
.download-pdf-banner .pdf {
  position: relative;
  z-index: 99;
}
.download-pdf-banner .buttons .btn {
  padding: 0.5rem 3.2rem;
}
.download-pdf-banner .title, .download-pdf-banner .buttons {
  z-index: 99;
}