@import url("../banners/banner.css");
@import url("../product-card/product-card.css");
.products {
  position: relative;
  width: 100dvw;
  display: flex !important;
  flex-direction: column;
  gap: 60px;
  z-index: 3;
  margin-top: -150px;
}
.products .categories {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.products .categories > div {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  gap: 1.5em;
  padding: 5px;
}
@media (max-width: 800px) {
  .products .categories > div {
    overflow-x: scroll;
    padding: 0;
    padding-bottom: 5px;
  }
}
.products .categories > div .category {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-grow: 1;
  flex-shrink: 0;
  max-width: 290px;
  height: 110px;
  border-radius: 10px;
  cursor: pointer;
}
@media (max-width: 800px) {
  .products .categories > div .category {
    flex: 0 0 190px;
  }
}
.products .categories > div .category img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(0.98);
  transition: 0.3s transform var(--transitionv2);
}
.products .categories > div .category h2 {
  position: absolute;
  font-size: var(--subsbtitle);
  color: #FFF;
  font-weight: 900;
  padding: 10px 0.5em;
  transform: scale(0.98);
  transition: 0.3s transform var(--transitionv2);
}
.products .categories > div .category::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: #848484;
  opacity: 0.6;
  transform: scale(0.98);
  transition: 0.3s all var(--transitionv2);
}
.products .categories > div .category.active::after {
  opacity: 0.2;
}
.products .categories > div .category.active:hover::after {
  opacity: 0.6;
}
.products .categories > div .category:hover::after {
  background: radial-gradient(circle at 50% 50%, #848484 0%, #000 100%);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.5058823529);
  transform: scale(1);
}
.products .categories > div .category.active h2, .products .categories > div .category:hover h2 {
  z-index: 4;
}
.products .categories > div .category:hover img, .products .categories > div .category:hover h2 {
  transform: scale(1);
}
.products .categories > div::-webkit-scrollbar {
  height: 5px;
}
.products .categories > div::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #FFF;
}
.products .categories > div::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 10px;
}
.products .headline {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  justify-content: space-between;
}
@media (max-width: 890px) {
  .products .headline {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 520px) {
  .products .headline {
    justify-content: center;
  }
}
.products .headline h2 {
  font-size: var(--subtitle);
  color: var(--color-primary);
}
@media (max-width: 520px) {
  .products .headline h2 {
    text-align: center;
  }
}
.products .headline .search-product {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #D9D9D9;
  width: 90%;
  max-width: 350px;
  height: 40px;
  border-radius: 30px;
  overflow: hidden;
}
.products .headline .search-product input {
  width: 100%;
  height: 100%;
  padding: 0 1em;
  background-color: transparent;
  outline: none;
  border: none;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  transition: 0.3s var(--transitionv2) all;
}
.products .headline .search-product input:focus {
  background-color: #FFF;
  box-shadow: 0 0 0 1px inset var(--color-primary);
}
.products .headline .search-product input::-moz-placeholder {
  color: #A2A2A2;
}
.products .headline .search-product input::placeholder {
  color: #A2A2A2;
}
.products .headline .search-product i {
  position: absolute;
  right: 1em;
  color: var(--color-primary);
}

.list {
  display: flex;
  flex-wrap: wrap;
  gap: 3.5em 3em;
  justify-content: space-evenly;
}
.list .no-results {
  font-size: var(--text);
  font-weight: 400;
  color: #A2A2A2;
  text-align: center;
}

.contact-us {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  width: 100%;
  max-width: 1000px;
  height: 250px;
  background-color: var(--accent-color);
  padding-top: 30px;
  overflow: unset;
  margin: 250px auto 90px calc((100% - 1050px) / 2);
  padding-right: 50px;
  border-radius: 10px;
}
@media (max-width: 1280px) {
  .contact-us {
    max-width: 750px;
    padding-right: 120px;
    margin: 250px auto 90px calc((100% - 800px) / 2);
  }
}
@media (max-width: 1050px) {
  .contact-us {
    max-width: 600px;
    margin: 200px auto 90px calc((100% - 650px) / 2);
  }
}
@media (max-width: 800px) {
  .contact-us {
    max-width: 90%;
    overflow: hidden;
    margin: 0 auto 90px auto;
    padding: 2em 0 8em 0;
  }
}
.contact-us h2 {
  color: #FFF;
  font-size: var(--subtitle);
  font-weight: 700;
}
.contact-us > div {
  display: flex;
  align-items: center;
  gap: 1em 2em;
}
.contact-us > div span {
  font-size: var(--subtitle);
  color: #FFF;
  font-weight: 900;
}
.contact-us > div a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-color);
  width: 160px;
  height: 35px;
  background-color: #FFF;
  border-radius: 10px;
  transition: 0.3s all var(--transitionv2);
}
.contact-us > div a:hover {
  background-color: var(--color-primary);
  color: #FFF;
}
@media (max-width: 520px) {
  .contact-us > div {
    flex-direction: column;
    height: 300px;
    /*             a:last-child{
                    background-color: var(--accent-color);
                    color: #FFF;
                } */
  }
}
@media (max-width: 520px) {
  .contact-us {
    padding: 2em 1em 0 1em;
  }
  .contact-us h2 {
    text-align: center;
  }
  .contact-us > * {
    z-index: 5;
  }
  .contact-us span {
    color: var(--accent-color) !important;
  }
}

.contact-us::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 500px;
  right: -80px;
  bottom: -20px;
  background: url("../../img/builder-frontview.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 2;
}
@media (max-width: 1280px) {
  .contact-us::before {
    right: -30px;
  }
}
@media (max-width: 1050px) {
  .contact-us::before {
    width: 170px;
  }
}
@media (max-width: 800px) {
  .contact-us::before {
    display: none;
  }
}

.contact-us::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 120px;
  left: -3px;
  bottom: -3px;
  background: url("../../img/ripper-paper.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 2;
}
@media (max-width: 800px) {
  .contact-us::after {
    height: 130px;
  }
}
@media (max-width: 520px) {
  .contact-us::after {
    height: 100px;
  }
}/*# sourceMappingURL=index.css.map */