.custom-color{
    color: #E72E3A;;
}

.custom-background{
    background-color: #E72E3A;
}

.banner {
    position: relative;
    height: 100vh;
    background-color: rgb(237, 51, 62);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: background-color 1s ease-in-out;
  }

  .banner video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* oscurece el video */
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .content {
    position: relative;
    z-index: 2;
    text-align: center;
  }

  .text-right-justify {
    text-align: right;
    max-width: 600px;
    margin-top: 20px;
  }

  .show-video {
    background-color: transparent !important;
  }

  .show-video video {
    opacity: 1;
  }

  .show-video::after {
    opacity: 1;
  }

  @media (max-width: 768px) {
    .text-right-justify {
      text-align: center;
    }
  }