
.background-image {
    width: 100%;
    height: 150%;
    overflow: hidden;
    position: absolute;
    z-index: -1;
    visibility: visible;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo-default {
    width: 300px;
    height: auto;
    padding-top: 3em;
}

.main-container {
    height: 100%;
    min-height: 100%;
    min-width: 100%;
    z-index: 0;
    overflow: hidden;
    position: initial!important;
    overflow-y: auto;
}

.bg-default {
    min-height: 100%;
    min-width: 100%;
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
}

.separator-line {
  width: 100%;
}

.image-animation {
  animation-duration: 0.5s;
  animation-name: animate-fade;
  animation-delay: 0.2s;
  animation-fill-mode: backwards;
  transition: transform .2s; /* Animation */
}

.image-animation:hover {
  transform: scale(1.4);
}

@keyframes animate-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
