.latest__products__container {
   max-width: 850px;
   width: 100%;
   height: auto;
   text-align: center;
   /* border: 1px solid white; */
   display: inline-block;
   margin-top: 100px;
}

.latest__products__title {
   color: #a5a5a5;
   font-size: 1em;
   margin-bottom: 25px;
   font-family: BankGothic Md Bt;
}

.grid__latest__products {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   align-items: stretch;
   /* background: red; */
   padding: 0 100px 0 100px;
   align-items: center;
   animation: fade-in-top 1s 1;
   /* border: 1px solid white; */
}

.card__latest__products {
   width: 150px;
   height: 220px;
   background-color: #1b1b1b;
   /* border: 1px solid #2e2e2e; */
   cursor: pointer;
   opacity: 1;
   transition: 0.1s;
   box-shadow: 0 0 30px 1px black;
   box-sizing: border-box;
   margin: 1em 10px;
   /* border-top: 1px solid #494949; */
   transition: 0.2s;
}

.card__latest__products:hover {
   transform: scale(1.1);
   /* border: 1px solid #a5a5a5; */
}

.card__image__latest__products__container {
   width: 100%;
   height: 100%;
   background-color: #1b1b1b;
   background-size: 100%;
   background-position: center;
   background-repeat: no-repeat;
   background-color: #030303;
   box-shadow: 0 0 10px 0 black inset;
}

.card__image__latest__products {
   width: 100%;
   height: 100%;
   background-size: 100%;
}

.card__latest__products__title {
   color: #777;
   opacity: 1;
   font-family: BankGothic Md Bt;
   font-size: 1em;
   margin-bottom: 5px;
   /* background-color: #ffae00; */
   /* border: 1px solid #2e2e2e; */
   padding: 5px;
   margin-top: 5px;
   width: 100%;
   box-sizing: border-box;
}

.card__latest__products__description {
   color: #b8b8b8;
   font-family: "Titillium Web";
   font-size: 0.8em;
}

.card__latest__products__price {
   color: #ffae00;
   font-size: 1em;
   font-family: "Titillium Web";
   margin-top: -5px;
}

@keyframes fade-in-top {
   0% {
      margin-top: 50px;
      opacity: 0;
   }
}