@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*::after, *::before, * {
  margin: 0;
  padding: 0;
}


body {
  background: #ddd;
  font-family: 'Poppins', sans-serif;
}
.wrapper {
  /* padding: 20px; */
  position: relative;
  height: 100%;
}
.wrapper .header {
  background: #C22B32;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 60px;
}
.wrapper .header ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.wrapper .header ul li {
  margin: 0 10px;
}
.wrapper .header ul li a {
  color: #fff;
  text-decoration: none;
}


.wrapper .title-strip {
  padding: 10px 20px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../../images/Rectangle_28.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .title-strip .title h3 {
  color: #fff;
}
.wrapper .tabs {
  margin: 20px 0;
  padding: 0 20px;
}
.wrapper .tabs ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.wrapper .tabs ul li {
  margin-right: 10px;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}
.wrapper .tabs ul li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}
.wrapper .tabs ul li.active {
  background: #C22B32;
  color: #fff;
}

.wrapper section.main {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  background-color: #fff;
}



.wrapper .searchResult {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  background-color: #fff;
}
.wrapper .searchResult .blocks {
  width: 200px !important;
  height: 200px !important;
  border-radius: 5px !important;
  overflow: hidden !important;
  margin: 10px !important;
  border:1px solid #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  background: #083c73;
}
.wrapper .searchResult .blocks:hover {
  background: #530101;
}
.wrapper .searchResult .blocks .product_image {
  width: 150px;
 height: 150px;
 display: flex;
 align-items: center;
 justify-content: center;
}
.wrapper section.main .blocks small{
  font-size: 15px;
 }
.wrapper .searchResult .blocks .product_image img {
  width: 65%;
 height: 65%;
 object-fit: contain;
}













.wrapper section.main .blocks {
  width: 200px;
  height: 200px;
  border-radius: 5px;
  overflow: hidden;
  margin: 10px;
  border:1px solid #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  background: #083c73;
}
.wrapper section.main .blocks:hover {
  background: #530101;
}
.wrapper section.main .blocks .product_image{
 width: 150px;
 height: 150px;
 display: flex;
 align-items: center;
 justify-content: center;
}
.wrapper section.main .blocks .product_image img{
 width: 65%;
 height: 65%;
 object-fit: contain;
}
.wrapper section.main .blocks small{
 font-size: 15px;
}

