.container img {
  width: 100%;
  max-width: 300px;
  height: auto;
  z-index: 10;
}

.img {
  grid-area: img;
}

.title {
  grid-area: txt;
}

.designer_title {
  margin-top: 1rem;
  text-transform: uppercase;
  align-self: start;
}


.listing {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-left: 8.3%;
}

.listing .left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: auto;
}

.listing .right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: auto;
}

.listing .center {
  flex: 0 0 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.listing .box-content {
  margin: auto;
}

.listing .center .designer_title {
  align-self: center;
}


/*****************************************************************************
    responsive area
*****************************************************************************/

@media (min-width:769px) {
  .box-content {
    max-width: 18vw;
    min-width: 200px;
  }

}


@media only screen and (max-width:768px) {
  .listing {
    padding-right: 8.3%;
  }

  .listing .left {
    margin-right: 50%;
  }

  .listing .right {
    margin-left: 50%;
  }

  .listing .center {
    margin: 0 25%;
    flex: unset;
  }

}

@media only screen and (max-width: 992px) {
  .designer_title {
    margin-top: 0;
    margin-bottom: 2rem;
  }
}
