.custom-promotionContainer {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 15px;
}

.custom-promotionContainer-mask {
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}

.custom-promotion-item {
  position: relative;
  width: 100%;
  height: 400px;
  background-color: #000000;

  z-index: 100;
}

/* BACK - FRONT */

.custom-promotion-back {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: inherit;
  display: flex;
  justify-content: center;

  transition-property: opacity;
  transition-duration: 0.15s;
}

.custom-promotion-front {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  transition-property: opacity;
  transition-duration: 0.15s;

  opacity: 0;
}

.custom-promotion-front .custom-promotion-content {
  padding-top: 45px;
  height: min-content;
  align-items: flex-start;
}

.custom-promotion-item-buttons-container {
  width: 100%;
  display: grid;
  padding: 45px;
  box-sizing: border-box;
  grid-template-columns: 1fr 1fr;
  column-gap: 25px;
}

.custom-promotion-item-buttons-container button:hover {
  /* transform: scale(1.05); */
}

.custom-promotion-item-buttons-detail {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: 1px solid rgb(163 1 1);

  text-transform: uppercase;
  color: #ffffff;

  transition-property: background-color;
  transition-duration: 0.15s;
}

.custom-promotion-item-buttons-detail:hover {
  background-color: rgb(163 1 1);
}

.custom-promotion-item-buttons-reserve {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(163 1 1);

  border: none;

  text-transform: uppercase;
  color: #ffffff;

  transition-property: transform;
  transition-duration: 0.15s;
}

/* HOVER */

.custom-promotion-item:hover .custom-promotion-back {
  opacity: 0;
}

.custom-promotion-item:hover .custom-promotionContainer-mask {
  opacity: 0.3;
}

.custom-promotion-item:hover .custom-promotion-front {
  opacity: 1;
}

/* ******************* */

.custom-promotion-imageContainer {
  position: relative;
  width: 100%;
  height: inherit;
}

.custom-promotions-image {
  position: absolute;
  width: 100%;
  height: inherit;
  object-fit: cover;
  opacity: 0.6;
}

.custom-promotion-content {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0 20px;
  box-sizing: border-box;
}

.custom-promotion-content {
  color: #ffffff;
  padding-bottom: 45px;
}

.custom-promotion-content p {
  margin: 0;
}

.custom-promotion-name p:nth-child(1) {
  font-size: 18px;
}

.custom-promotion-name p:nth-child(2) {
  font-size: 24px;
  font-weight: 700;
}

.custom-promotion-dsct {
  display: grid;
  grid-template-columns: 30px max-content;
}

.custom-promotion-dsct-text {
  width: 25px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 7.5px;
}

.custom-promotion-dsct-text p {
  transform: rotate(-90deg);
  font-size: 20px;
}

.custom-promotion-dsct p:nth-child(2) {
  font-size: 60px;
  line-height: 60px;
}

.custom-promotion-line {
  width: 5px;
  height: 65px;
  background-color: #f8cd3e;
  border-radius: 10px;

  margin: 0 10px 0 15px;
}

@media (max-width: 992px) {
  .custom-promotionContainer {
    grid-template-columns: 1fr;
    row-gap: 20px;
    grid-template-rows: min-content min-content;
  }
}

@media (max-width: 450px) {
  .custom-promotion-item-buttons-container {
    grid-template-columns: 1fr;
    row-gap: 20px;
    grid-template-rows: min-content min-content;
  }

  .custom-promotion-content {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
  }

  .custom-promotion-line {
    transform: rotate(90deg);
  }

  .custom-promotion-item {
    height: 500px;
  }
}
