.start-logo-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--main-background-color);
  z-index: 5;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.start-position-logo {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 1s ease;
}

.end-position-logo {
  position: absolute;
  top: 80px;
  left: 77px;
  transform: translate(0%, 0%);
  width: 100.03px;
  height: 121.97px;
}

@media(max-width: 1024px) {

.start-logo-background {
  background-color: var(--join-dark-blue);
}

.start-position-logo {
    width: 100.03px;
    height: 121.97px;
}

.end-position-logo {
    width: 64px;
    height: 78.03px;
    top: 37px;
    left: 38px;
}

.start-position-logo .white-logo {
  fill: white;
  transition: fill 0.5s ease;
}

.end-position-logo .white-logo {
  fill: #2a3647;
}

}