/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/

html {
  font-family: "Inter", sans-serif !important;
}

#banners_grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
}

#banners_grid li {
  flex: 0 0 calc(100% / 6);
  max-width: calc(100% / 6);
  box-sizing: border-box;

}

#banners_grid li .img_container {
  position: relative;
  display: block;
  overflow: hidden;
}

#banners_grid li .img_container img {
  width: 100%;
  height: auto;
  display: block;
}

#banners_grid li .short_info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 10px;
  background: rgba(0, 0, 0, 0.2);
}

#banners_grid li .btn_1 {
  background: #fff;
  color: #000;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 14px;
}

.grid_item figure {
  position: relative;
  overflow: hidden;
}

.grid_item figure img {
  object-fit: cover;
}

#brands .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
}

#brands .item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}