/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 01 2026 | 09:14:19 */
.text-links-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  flex-direction: column;
  height: 65px;
  text-decoration: none;
}

.text-link-default,
.text-link-hover {
  font-weight: 700;
  font-size: 55px;
  line-height: 1.1em;
}

.white-text {
	color: #fff;
}

/* underline – VÝCHOZÍ STAV */
.text-links-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background-color: #fff;
  transform: scaleX(1);              /* VIDITELNÉ */
  transform-origin: left;
  transition: transform 0.6s ease;
}

/* hover – mizí */
.text-links-wrapper:hover::after {
  transform: scaleX(0);              /* ZMIZÍ */
  transform-origin: right;
}

@media screen and (max-width: 767px) {
  .text-link-default,
  .text-link-hover {
  font-size: 2.5rem;
	}
	.text-links-wrapper {
  height: 45px;
	}
	.text-links-wrapper::after {
  height: 4px;
	}
}