.bifold-complex-board {
  background-color: var(--wildcat-blue);
  text-align: ;
  color: white;
  display: flex;
}

.bifold-complex-image {
  flex: 1 1 auto;
  width: 50%;
  background-size: cover;
  position: relative;
}

.bifold-complex-image-side-buttons {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
}

.bifold-complex-image img {
  height: 100%;
  object-fit: cover;
  visibility: hidden;
}

.bifold-complex-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  flex: 1 1 auto;
  width: 50%
}

@media only screen and (max-width: 900px) {
  .bifold-complex-board {
    flex-direction: column;
  }
  .bifold-complex-image, .bifold-complex-text {
    width: 100%;
  }
}

