@import url(https://fonts.googleapis.com/css?family=Anton|Roboto);
section{
    margin-bottom: 100px;
    height: 70vh !important;
}


.product-item {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  padding: 50px;
  padding-bottom: 10px;
  height: 50%;
  background-color: #272727;
}

.product-gallery {
  width: 60%;
  position: relative;
  overflow: hidden;
}

.product-gallery img {
  display: block;
  min-height: 70%;
  height: 90%;
  min-width: 100%;
}

.product-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30%;
}

.product-firm {
    width: 50%;
    margin-left: 8px;
    text-transform: uppercase;
    border-radius: 2px !important;
}

.product-name {
    color: #fffefe;
  font-size: 35px;
  line-height: 24px;
  margin: 15px 0;
}

.product-price {
  font-size: 18;
  color: #d7d7d7;
  margin: 10px 0;
}
.product-promotion {
  text-decoration: line-through;
  font-size: 12px;
  color: #fffefe;
  margin: 10px 0;
}

.product-price::after {
  content: " MZN";
}
.product-promotion::after {
  content: " MZN";
}

.product-colors {
  font-size: 14px;
  color: #0089cf;
  text-transform: uppercase;
}

.product-colors::before {
  content: "Colors: ";
  color: #ffffff;
}

.product-size {
    color: #d7d7d7;
  text-transform: uppercase;
  font-size: 14px;
}

.product-size::after {
  content: " Artigos Disponives";
}

.buy-btn {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  color: #000000;
  text-transform: uppercase;
  padding: 15px 55px;
  background-color: #ffffff;
  border: none;
  transition: 0.4s;
  margin: 15px 0;
}

.buy-btn:hover,
.buy-btn:focus,
.buy-btn:active {
  box-shadow: 1px 1px 15px 1px #828c90;
  transition: 0.4s;
  outline: none;
  cursor: pointer;
}

.product-info {
  margin: 50px 0;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #ffffff;
}


@media (max-width: 798.98px) {

section{
    display: flex;
    flex-direction: column;
}


.product-item {
    justify-content: start;
    width: 100%;
    padding: 0px;
  }

  .product-gallery {
    width: 100%;
    border: none;
    position: relative;
    overflow: hidden;
  }

  .product-gallery img {
    display: block;
    max-height: 100%;
    min-width: 100%;
    height: 80%;
    width: 80%;
  }

  .product-data {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .product-firm {
    padding-left: 8px;
    text-transform: uppercase;
    font-size: 12px;
    border-radius: 2px !important;
    width: 30%;
  }

  .product-name {
    padding: 8px;
    font-size: 20px;
    line-height: 24px;
    margin: 0px;
  }

  .product-price {
    padding: 8px;
    margin: 0px;
  }



  .buy-btn {
    padding: 10px;
    margin: 20px;
  }

  .buy-btn:hover,
  .buy-btn:focus,
  .buy-btn:active {
    box-shadow: none;
    transition: 0.4s;
    outline: none;
    cursor: pointer;
  }

  .product-info {
    margin: 0px;
  }

}

