.products {
  /* height: 100%; */
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/products/bg-products-v3.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
}

.products .container {
  position: relative;
  width: 100%;
  height: 768px;
  overflow: hidden;
}

.content-item {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  /* left: 100%; */
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: left 1s;
}

.product-img {
  position: relative;
  width: 50%;
  height: 100%;
}

.products img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-text {
  width: 70%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  padding: 0 5%;
}

.product-text h3 {
  text-align: center;
  font-weight: 300;
  padding: 0 20px;
}

.product-text img {
  max-width: 280px;
  width: 35%;
  height: auto;
}

.product-text h2 {
  font-size: 2.1rem;
  font-style: italic;
  color: #5f8415;
}

.products .last-item {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.product-text h2, 
.product-text p,
.last-item p {
  font-family: "Times New Roman", Times, serif;
}

.product-text p,
.last-item p {
  font-size: 1.3rem;
}

#product-cubachance {
  display: none;
}

.fade-out {
  animation: fadeOut 1s forwards;
}

.fade-in {
  animation: fadeIn 1s forwards;
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}