#kt-search-form-wrapper {
  background-color: #f3f3f3;
  padding-block: 20px;
  border-width: 1px 0;
  border-color: black;
  border-style: solid;
}

.kt-search-form {
  display: flex;
  align-items: center;
  text-align: center;
  max-width: 1240px;
  margin: auto;
}
.kt-search-form__label {
  padding-inline: 1em;
  line-height: 100%;
  margin: 0;
}
.kt-search-form__select {
  height: 100%;
  border: none;
}
.kt-search-form__input {
  align-self: flex-end;
  margin-left: auto;
  max-width: 300px;
  border-color: black;
}
.kt-search-form .kt-select {
  display: inline-block;
  min-width: 150px;
  color: black;
  border: none;
}

.kt-category {
  padding-block: 60px;
}
.kt-category__heading {
  text-align: center;
}
.kt-category__heading__title {
  margin-bottom: 1em;
  text-align: center;
  font-size: 30px;
  color: #c92e2e;
  font-family: Open Sans;
  font-weight: 600;
  font-style: normal;
}
.kt-category__heading__divider {
  width: 2em;
  margin-inline: auto;
  margin-bottom: 1em;
  border-top: 2px solid black;
  opacity: 1;
}
.kt-category__heading__description {
  max-width: 1240px;
  margin-bottom: 1em;
  margin-inline: auto;
  text-align: center;
}
.kt-category__btn, .kt-category-type-2 .kt-category__btn-type-2 {
  position: relative;
  display: block;
  width: fit-content;
  margin: auto;
  padding: 0.5em 1.5em;
  background-color: transparent;
  border: 1px solid #4c4c4c;
  cursor: pointer;
}
.kt-category__btn span, .kt-category-type-2 .kt-category__btn-type-2 span {
  position: relative;
  z-index: 1;
  color: #4c4c4c;
}
.kt-category__btn:before, .kt-category-type-2 .kt-category__btn-type-2:before {
  content: "";
  z-index: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #981b1e;
  transform-origin: 50%;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.kt-category__btn:hover:before, .kt-category-type-2 .kt-category__btn-type-2:hover:before {
  transform-origin: 50%;
  transform: scaleX(1);
  transition: transform 0.3s ease;
}
.kt-category__btn:hover span, .kt-category-type-2 .kt-category__btn-type-2:hover span {
  color: white;
  transition: color 0.3s ease;
}

.kt-category__products > .row {
  margin-bottom: 1em;
  overflow: hidden;
}

.kt-product-type-1__img {
  max-height: 300px;
  overflow: hidden;
}
.kt-product-type-1__img img {
  width: 100%;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.kt-product-type-1__name {
  padding-block: 6px;
  text-align: center;
  color: black;
  background-color: #ccc;
}
.kt-product-type-1:hover img {
  transform: scale(1.2);
  transition: transform 0.3s ease;
}

.parent-category {
  text-align: center;
}
.parent-category__name {
  text-align: center;
  font-family: Open Sans;
  font-size: 40px;
  font-weight: 600;
  font-style: normal;
}
.parent-category__description {
  max-width: 1240px;
  margin-bottom: 1em;
  margin-inline: auto;
  text-align: center;
}
.parent-category__description--white {
  color: white;
}

.kt-category-thumb--type-2 {
  display: flex;
  margin-left: 20px;
  align-items: center;
}
.kt-category-thumb--type-2 .kt-category-thumb__img--type-2 {
  width: 80px;
  height: 80px;
}
.kt-category-thumb--type-2 .kt-category-thumb__name--type-2 {
  margin-bottom: 0;
  text-align: left;
}
.kt-category-thumb--type-2 .kt-category-thumb__name--type-2 a {
  font-size: 14px;
  font-weight: normal;
  color: white !important;
  text-transform: uppercase;
}

.kt-category__heading--type-2 {
  padding: 75px;
}
.kt-category__heading--type-2 .kt-category__heading__title--type-2 {
  max-width: 400px;
  margin-bottom: 5px;
  font-size: 28px;
  font-weight: 600;
  color: #3d3d3d;
  text-transform: uppercase;
}
.kt-category__heading--type-2 .kt-category__heading__description--type-2 {
  max-width: 400px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #4d4d4d;
}

.kt-category-type-2 {
  border-bottom: 1px solid #646464;
}
.kt-category-type-2 .kt-category__btn-type-2 {
  border: none;
  background-color: gainsboro;
}

.kt-product-type-2 {
  position: relative;
  background-color: transparent;
}
.kt-product-type-2 .kt-product-type-2__img {
  position: relative;
  width: 100%;
  max-height: 300px;
  overflow: hidden;
}
.kt-product-type-2 .kt-product-type-2__img img:first-child {
  width: 100%;
}
.kt-product-type-2 .kt-product-type-2__img img:last-child {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  transform: translateY(-101%);
  transition: transform 0.3s ease;
}
.kt-product-type-2 .kt-product-type-2__name {
  margin-bottom: 0;
  padding: 8px;
  text-align: center;
  text-overflow: ellipsis;
  box-sizing: content-box;
}
.kt-product-type-2 .kt-product-type-2__name a {
  height: 48px;
  line-height: 24px;
  transition: color 0.3s ease;
}
.kt-product-type-2:hover .kt-product-type-2__img img:last-child {
  transform: translateY(0);
}
.kt-product-type-2:hover .kt-product-type-2__name {
  background-color: #981b1e;
}
.kt-product-type-2:hover .kt-product-type-2__name a {
  color: white !important;
}

.text-white {
  color: white;
}

.py-80 {
  padding-block: 80px;
}

/*# sourceMappingURL=style.css.map */
