/**
 * ----------------------------------------
 * Contact
 * ----------------------------------------
 */
.container_centered_row {
	display: flex;
	flex-direction: row;
	width: 100%;
	text-align: center;
	padding: 0% 5%;
}

.container_centered_collum_low_margin {
	display: flex;
	flex-direction: column;
	margin-top: 70px;
	padding: 0% 5%;
	align-items: center;
	justify-content: center;
	width: 80%;
}

.container_centered_collum_low_margin h2 {
	animation: bounce-in-fwd 0.8s;
}

.container_centered_collum_low_margin h3 {
	animation: bounce-in-fwd 1.1s;
}

.container_centered_collum_low_margin h5 {
	margin-top: clamp(20px, 15%, 80px);
	font-style: italic;
	animation: bounce-in-fwd 1.4s;
}

.container_left {
	text-align: left;
}

.container_Right {
	text-align: right;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip h3 {
  cursor: url(../cursor/cursor_vibrant_pointer.png) 12 0, pointer !important;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 140px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/**
 * ----------------------------------------
 * Responsive
 * ----------------------------------------
 */
@media screen and (max-width: 780px) {
    .container_centered_collum_low_margin h3 {
		font-size: 90%;
	}
}

/**
 * ----------------------------------------
 * Animations
 * ----------------------------------------
 */
@keyframes bounce-in-fwd {
  0% {
    transform: scale(0);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: scale(1);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: scale(0.7);
    animation-timing-function: ease-in;
  }
  72% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
  81% {
    transform: scale(0.84);
    animation-timing-function: ease-in;
  }
  89% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
  95% {
    transform: scale(0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}