.intro .event .event-container.ms {
  justify-content: center;
}
.intro {
  background-size: cover;
  padding-top: 30px;
  min-height: 50vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.event-timer {
  margin-top: 30px;
  margin-bottom: 30px;
}
.intro .event .date {
  font-family: 'Libre Franklin', sans-serif;
  text-align: center;
  font-weight: 300;
  font-size: 26px;
  margin-top: 5px;
}
.btn-white {
  background-color: #FFFFFF !important;
  color: #0C4462;
  border: 2px solid #0C4462;
}
@media (min-width: 992px) {
.login-container .login-form, #form-register {
  margin: 20px 100px 20px 100px;
}
}
.agenda-tabs-container .tab-content .agenda-content li.layout-1 > * {
  color: #373d6d;
}
.agenda-tabs-container .tab-content .agenda-subtabs .nav-link.active {
  border-bottom: 4px solid #E1E77D;
}
.agenda-tabs-container .nav-link.active {
  background-color: #22275D;
  color: #FFFFFF;
}
footer {
  background: #0D2A3C;
  color: #FFFFFF;
}
footer .row.info {
  margin-top: 10px;
  margin-top: 40px;
}
section#info .text {
  gap: 0px;
}
.full-wh {
	left: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	max-width: 100vw;
	position: relative;
	right: 50%;
	width: 100vw;
}
.photo {
  padding: 20px;
  display: flex;
  justify-content: center;
  max-width: 90vw;
}
@media (max-width: 991px) {
	.desktop {
	display: none;
	}
}
@media (min-width: 991px) {
	.mobile {
	display: none;
	}
}

.img-fluid {
    max-width: 100%;
    width: 100%;
    height:  auto;
}
.img-fluid_2 {
  max-width: 100%;
  height: auto;
}
.spp {
  font-size: 14px;
}
body {
  padding-top: 1px;
}

.hero-als {
  position: relative;
  overflow: hidden;
}

/* delikatny ruch */
.hero-img {
  width: 100%;
  display: block;
  animation: heroDrift 8s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from { transform: scale(1.01) translateY(0px); }
  to   { transform: scale(1.03) translateY(-6px); }
}

/* subtelne światło przechodzące */
.hero-als::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.08) 45%,
    transparent 60%
  );
  animation: lightSweep 8s ease-in-out infinite;
}

@keyframes lightSweep {
  0%   { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}