/* line 3, stdin */
section.brands .title {
  font-weight: bold;
  margin-bottom: 80px; }

/* line 9, stdin */
section.brands .items-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 0; }
  @media screen and (max-width: 1000px) {
    /* line 9, stdin */
    section.brands .items-wrapper {
      grid-template-columns: repeat(2, 1fr); } }
  @media screen and (max-width: 460px) {
    /* line 9, stdin */
    section.brands .items-wrapper {
      grid-template-columns: repeat(1, 1fr); } }
  /* line 24, stdin */
  section.brands .items-wrapper .item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%; }
    /* line 31, stdin */
    section.brands .items-wrapper .item .image-wrapper {
      width: 200px;
      height: 100px;
      transition: .2s; }
      /* line 36, stdin */
      section.brands .items-wrapper .item .image-wrapper:hover {
        transform: scale(1.1); }
      /* line 41, stdin */
      section.brands .items-wrapper .item .image-wrapper img {
        object-fit: contain;
        object-position: center;
        height: 100%;
        width: 100%; }
