/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 01 2026 | 09:06:51 */
.hamburger {
  width: 35px;
  height: 25px;
  position: relative;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 7px;
  background: #161616;
  left: 0;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 14px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.hamburger.active span:nth-child(2) {
  transform: rotate(-45deg);
  top: 10px;
}

@media screen and (max-width: 767px) {
  .hamburger {
   width: 30px;
  }
	.hamburger span {
    height: 5px;
  }
  .hamburger span:nth-child(2) {
    top: 12px;
}
}

/*FULLSCREEN MENU*/

.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9998;
  transition: all 0.6s ease;
  transform: translateY(-100%);
}

.fullscreen-menu.active {
  transform: translateY(0);
}

/*FULLSCREEN MENU-ODKAZY*/

.menu-links-wrapper-small {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  flex-direction: column;
  height: 65px;
  text-decoration: none;
}

.menu-link-default-small,
.menu-link-hover-small {
  font-weight: 700;
  font-size: 55px;
  color: #161616;
  line-height: 1.1em;
}

.menu-links-wrapper-small::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background-color: #161616;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s ease;
}

.menu-links-wrapper-small:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-links-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  flex-direction: column;
  height: 135px;
  text-decoration: none;
}

/* texty */
.menu-link-default,
.menu-link-hover {
  font-weight: 700;
  font-size: 120px;
  color: #161616;
  line-height: 1.1em;
}

/* underline – VÝCHOZÍ STAV */
.menu-links-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 10px;
  background-color: #161616;
  transform: scaleX(1);              /* VIDITELNÉ */
  transform-origin: left;
  transition: transform 0.6s ease;
}

/* hover – mizí */
.menu-links-wrapper:hover::after {
  transform: scaleX(0);              /* ZMIZÍ */
  transform-origin: right;
}

@media screen and (max-width: 980px) {
  .menu-link-default,
  .menu-link-hover {
  font-size: 5rem;
	}
	.menu-links-wrapper {
  height: 95px;
	}
}

@media screen and (max-width: 767px) {
  .menu-link-default,
  .menu-link-hover {
  font-size: 3rem;
	}
	.menu-links-wrapper {
  height: 60px;
	}
	.menu-links-wrapper::after {
    height: 6px;
	}
	.menu-link-default-small,
	.menu-link-hover-small {
    font-size: 2.5rem;
	}
	.menu-links-wrapper-small {
    height: 50px;
	}
	.menu-links-wrapper-small::after {
    height: 5px;
	}
}