#fi-container {
  background-color: var(--homeFirstbackgroundColor);
  padding: 10px 0px;
}

#fi-control-left,
#fi-control-pause,
#fi-control-play,
#fi-control-right {
  cursor: pointer;
}

.fi-card{
  overflow: hidden;
}

.fi-card > .img-header {
  height: 250px;
  border-radius: 5px 5px 0px 0px;
  width: 100%;
  transform: scale(1);
}
#fi-wrapper {
  min-height: 290px;
  overflow: hidden;
}
#fi-wrapper #fi-message-container #fi-message {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}
#fi-wrapper #fi-message-container #fi-message::before {
  transform: translate(0%, 0px);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#fi-wrapper #fi-message-container #fi-message::after {
  transform: translate(0%, 0px);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#fi-wrapper #fi-image {
  display: block;
  height: 100%;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  position: relative;  
}

.fi-support-hidden
{
  transition: opacity 0.5s;
}
.fi-hidden
{
  opacity: 0;
}
.fi-in {
  animation: fiIn 1.5s ease-in-out;
}

@keyframes fiIn {
  0% {
    opacity: 0;
    transform: translate(-100%, 0px);  
  }

  50% {
    opacity: 0;
    transform: translate(100%, 0px); 
  }

  100% {
    opacity: 1;
    transform: translate(0px, 0px);    
  }
}

.fi-out {
  animation: fiOut 1.5s ease-in-out;
}

@keyframes fiOut {
  0% {
    opacity: 1;
    transform: translate(0px, 0px);  
  }

  50% {
    opacity: 0;
    transform: translate(-100%, 0px); 
  }
}