@charset "UTF-8";
/* CSS Document */



.title-navigation-wrapper {
max-width: 900px;
width: 100%;
margin: auto;
padding: 0px 15px;
}


.title-logo-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /* justify-content: space-between; */
  max-width: 950px;
  width: 100%;
  margin: auto;
  padding: 0px 15px;
}

.title-logo-container-left {
  flex: 0 0 60%;
  min-width: 500px;
  text-align: left;
}

.title-logo-container-right {
  flex: 0 0 35%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.floating-image {
  animation: float 6s ease-in-out infinite;
  height: auto;
  max-width: 300px;
}


@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-1px) rotate(-2deg);
  }
  50% {
    transform: translateY(1px) rotate(-1deg);
  }
  75% {
    transform: translateY(-2px) rotate(-2deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}





@media screen and (max-width: 768px) {
  .title-logo-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .title-logo-container-left,
  .title-logo-container-right {
    flex: 0 0 100%;
  }

  .title-logo-container-left {
    margin-bottom: 1.5rem;
	min-width: 100px;
	  
  }
}
