@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/bebas-neue-400-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/bebas-neue-400-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
* {
  box-sizing: border-box;
}
.col-12 {
  width: 100%;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1f2933;
  background: #ffffff;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #2f7a3d;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #1f5a2a;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Bebas Neue", "Inter", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin: 0 0 0.5em;
  line-height: 1.15;
  color: #1f2933;
}
.title {
  font-family: "Bebas Neue", "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 16px;
  color: #1f2933;
}
.subtitle {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2f7a3d;
  margin: 0 0 8px;
}
.description {
  font-size: 1rem;
  color: #5b6770;
  margin: 0 0 16px;
  max-width: 720px;
}
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  padding: 12px 24px;
}
.header .container {
  width: 100%;
}
.header .row {
  align-items: center;
}
.header .logo img {
  max-height: 64px;
  width: auto;
}
.header .main-nav {
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header .main-nav nav > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
}
.header .main-nav nav > ul > li {
  position: relative;
  text-align: center;
}
.header .main-nav a {
  font-weight: 500;
  color: #1f2933;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  position: relative;
  padding: 6px 0;
  display: inline-block;
  line-height: 1.2;
  max-width: 180px;
  white-space: normal;
  word-break: break-word;
}
.header .main-nav a:hover {
  color: #2f7a3d;
}
.header .main-nav .has-submenu > a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}
.header .main-nav .has-submenu:hover > a::before,
.header .main-nav .has-submenu:focus-within > a::before {
  transform: translateY(1px) rotate(225deg);
}
.header .main-nav .submenu {
  list-style: none;
  padding: 8px 0;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: max-content;
  min-width: 200px;
  max-width: 280px;
  text-align: left;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 110;
}
.header .main-nav .submenu li {
  display: block;
}
.header .main-nav .submenu a {
  display: block;
  max-width: none;
  padding: 10px 18px;
  text-transform: none;
  letter-spacing: 0.3px;
  font-size: 0.92rem;
  color: #1f2933;
}
.header .main-nav .submenu a::after {
  display: none;
}
.header .main-nav .submenu a:hover {
  background: #f4f7f9;
  color: #2f7a3d;
}
.header .main-nav .has-submenu:hover > .submenu,
.header .main-nav .has-submenu:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #1f2933;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
@media (max-width: 991px) {
  .nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }
  .header {
    padding: 10px 16px;
  }
  .header .row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
  }
  .header .row > [class^="col-"] {
    float: none;
    width: auto;
  }
  .header .row > [class^="col-"]:first-child {
    flex: 0 0 auto;
  }
  .header .row > [class^="col-"]:last-child {
    flex: 1 1 auto;
    min-width: 0;
  }
  .header .logo img {
    max-height: 52px;
  }
  .main-nav {
    height: auto;
    justify-content: flex-end;
  }
  .main-nav nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }
  .main-nav.is-open nav {
    display: block;
  }
  .main-nav nav > ul {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 8px 0;
  }
  .main-nav nav > ul > li {
    text-align: left;
    border-top: 1px solid rgba(31, 41, 51, 0.08);
  }
  .main-nav nav > ul > li:first-child {
    border-top: none;
  }
  .main-nav a {
    max-width: none;
    display: block;
    padding: 14px 24px;
  }
  .main-nav .has-submenu > a {
    display: flex;
    align-items: center;
  }
  .main-nav .has-submenu > a::before {
    margin: 0 0 0 auto;
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
  }
  .main-nav .has-submenu.is-open > a {
    color: #2f7a3d;
    background: #f4f7f9;
  }
  .main-nav .has-submenu.is-open > a::before {
    transform: rotate(225deg);
  }
  .main-nav .submenu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    min-width: 0;
    padding: 4px 0;
    background: #f4f7f9;
    border-top: 1px solid rgba(31, 41, 51, 0.08);
  }
  .main-nav .submenu li + li a {
    border-top: 1px solid rgba(31, 41, 51, 0.06);
  }
  .main-nav .submenu a {
    padding: 12px 24px 12px 40px;
    font-size: 0.88rem;
    color: rgba(31, 41, 51, 0.8);
  }
  .main-nav .submenu a:hover {
    background: transparent;
    color: #2f7a3d;
  }
  .main-nav .has-submenu.is-open > .submenu {
    display: block;
  }
  .main-nav.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .main-nav.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .main-nav.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 14px 24px;
  border-radius: 999px;
  background: #2f7a3d;
  color: white;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  z-index: 210;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.floating-cta:hover {
  transform: translateY(-2px);
  background: #286834;
  color: #fff;
}
.hero {
  position: relative;
}
.hero-slider {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 420px;
  overflow: hidden;
  background: #111;
}
.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.65) 100%);
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide .container {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 720px;
  padding: 0 24px;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero-subtitle {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: #2f7a3d;
}
.hero-title {
  font-family: "Bebas Neue", "Inter", sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: 1px;
  color: #fff;
}
.hero-description {
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0;
  max-width: 560px;
}
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #222;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease;
}
.hero-nav:hover {
  background: #fff;
}
.hero-nav-prev {
  left: 18px;
}
.hero-nav-next {
  right: 18px;
}
.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 2;
}
.hero-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-dot:hover {
  transform: scale(1.15);
}
.hero-dot.is-active {
  background: #fff;
}
.advantages {
  padding: 64px 0;
  background: #f4f7f9;
}
.advantages .row {
  margin: 0 -12px;
  display: flex;
  flex-wrap: wrap;
}
.advantages [class^="col-"] {
  padding: 12px;
  float: none;
  display: flex;
}
.advantage-item {
  width: 100%;
  background: #ffffff;
  border-radius: 8px;
  padding: 28px 24px;
  height: 100%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border-top: 3px solid #2f7a3d;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.advantage-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.advantage-item h3 {
  font-family: "Bebas Neue", "Inter", sans-serif;
  font-size: 1.5rem;
  margin: 0 0 12px;
  color: #2f7a3d;
}
.advantage-item p {
  margin: 0;
  color: #5b6770;
  line-height: 1.55;
}
.news {
  padding: 80px 0;
  background: #ffffff;
}
.news .row {
  margin: 0 -12px;
}
.news [class^="col-"] {
  padding: 12px;
}
.news-grid {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.news-grid > [class^="col-"] {
  float: none;
  display: flex;
  flex-direction: column;
}
.news-grid .news-card {
  flex: 1 1 auto;
}
.news-card {
  background: #f4f7f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.news-card-image {
  display: block;
  height: 200px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #ececef;
}
.news-card-content {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
}
.news-card-date {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: #5b6770;
}
.news-card-title {
  font-family: "Bebas Neue", "Inter", sans-serif;
  font-size: 1.6rem;
  margin: 0;
  color: #1f2933;
}
.news-card p {
  margin: 0;
  color: #5b6770;
}
.news-card-link {
  margin-top: auto;
  font-weight: 600;
  color: #2f7a3d;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.news-card-link::after {
  content: "→";
  font-size: 1rem;
  transition: transform 0.2s ease;
}
.news-card-link:hover::after {
  transform: translateX(2px);
}
.news-grid--more {
  margin-top: 4px;
}
.news-card--compact .news-card-image {
  height: 140px;
}
.news-card--compact .news-card-content {
  padding: 16px 16px 20px;
  gap: 8px;
}
.news-card--compact .news-card-title {
  font-size: 1.2rem;
}
.news-card--compact p {
  font-size: 0.92rem;
  line-height: 1.45;
}
.news-slider {
  margin: 24px 0 30px;
}
.news-slider-stage {
  position: relative;
  height: 600px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ececef;
}
.news-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #222;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: background 0.2s ease;
}
.news-slider-nav:hover {
  background: #fff;
}
.news-slider-nav-prev {
  left: 14px;
}
.news-slider-nav-next {
  right: 14px;
}
.news-slider-counter {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}
.news-slider-thumbs {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.news-slider-thumb {
  flex: 0 0 auto;
  width: 120px;
  height: 78px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: none;
  cursor: pointer;
  opacity: 0.6;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.news-slider-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-slider-thumb:hover {
  opacity: 1;
}
.news-slider-thumb.is-active {
  opacity: 1;
  border-color: #2f7a3d;
}
.news-slide {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  pointer-events: none;
}
.news-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 768px) {
  .news-slider-stage {
    height: 320px;
  }
  .news-slider-thumb {
    width: 92px;
    height: 62px;
  }
}
.news-cta {
  margin-top: 28px;
  text-align: center;
}
.news-button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 999px;
  background: #2f7a3d;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: background 0.2s ease, transform 0.2s ease;
}
.news-button:hover {
  background: #1f5a2a;
  color: #fff;
  transform: translateY(-1px);
}
.news-pagination {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.news-pagination-info {
  color: #5b6770;
  font-weight: 600;
}
.news-article {
  padding: 80px 0;
  background: #ffffff;
}
.news-article .container {
  max-width: 820px;
}
.news-article .page-content p {
  margin: 0 0 1.1em;
  color: #5b6770;
}
.news-back {
  display: inline-block;
  margin-bottom: 18px;
  font-weight: 600;
  color: #2f7a3d;
}
.news-back:hover {
  color: #1f5a2a;
}
.about-us {
  padding: 20px 0;
}
.about-us .row {
  margin: 0 -16px 48px;
  align-items: center;
}
.about-us .row:last-child {
  margin-bottom: 0;
}
.about-us [class^="col-"] {
  padding: 16px;
}
.about-us img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}
.about-us iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.about-us ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #1f2933;
}
.about-us ul strong {
  color: #2f7a3d;
  margin-right: 6px;
}
.download-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid #e3e8ec;
  border-radius: 8px;
  background: #f4f7f9;
  color: #1f2933;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}
.download-link:hover {
  border-color: #2f7a3d;
  color: #2f7a3d;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.download-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #2f7a3d;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}
.downloads-block .downloads-list {
  gap: 12px;
}
.downloads-block .downloads-list li {
  max-width: 520px;
}
.prices-block .prices-group {
  margin-top: 32px;
}
.prices-block .prices-group-title {
  margin: 0 0 12px;
  font-family: "Bebas Neue", "Inter", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #1f5a2a;
}
.prices-block .prices-scroll {
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid #e3e8ec;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.prices-block .prices-note {
  margin: 24px 0 0;
  font-size: 0.9rem;
  color: #5b6770;
}
.prices-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}
.prices-table th,
.prices-table td {
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e3e8ec;
}
.prices-table thead th {
  background: #2f7a3d;
  color: #fff;
  font-weight: 600;
}
.prices-table thead th:not(:first-child) {
  text-align: right;
  white-space: nowrap;
}
.prices-table tbody th {
  font-weight: 500;
  color: #1f2933;
}
.prices-table tbody td {
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.prices-table tbody tr:nth-child(even) {
  background: #f4f7f9;
}
.prices-table tbody tr:last-child th,
.prices-table tbody tr:last-child td {
  border-bottom: 0;
}
@media (max-width: 600px) {
  .prices-table thead {
    display: none;
  }
  .prices-table tbody tr {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #e3e8ec;
  }
  .prices-table tbody th {
    display: block;
    border: 0;
    padding-bottom: 4px;
  }
  .prices-table tbody td {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border: 0;
    padding: 3px 16px;
    white-space: normal;
  }
  .prices-table tbody td::before {
    content: attr(data-label);
    font-weight: 500;
    text-align: left;
    color: #5b6770;
  }
}
.admission-form-block {
  background: #f4f7f9;
}
.admission-form {
  max-width: 860px;
}
.admission-pdf {
  margin: 0 0 8px;
  max-width: 520px;
}
.admission-fieldset {
  margin: 28px 0 0;
  padding: 18px 22px 22px;
  min-width: 0;
  border: 1px solid #e3e8ec;
  border-radius: 8px;
  background: #ffffff;
}
.admission-legend {
  padding: 0 8px;
  font-family: "Bebas Neue", "Inter", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #1f5a2a;
}
.admission-choice-group {
  margin-top: 18px;
}
.admission-choice-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1f2933;
}
.admission-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}
.admission-choice {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid #e3e8ec;
  border-radius: 8px;
  background: #f4f7f9;
  cursor: pointer;
  transition: border-color 0.15s ease;
}
.admission-choice:hover {
  border-color: #2f7a3d;
}
.admission-choice input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  accent-color: #2f7a3d;
}
.admission-hint {
  margin: 10px 0 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: #5b6770;
}
.calendar {
  padding: 80px 0 0;
  background: #ffffff;
}
.calendar > .container > .subtitle,
.calendar > .container > .title,
.calendar > .container > .description {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.calendar-board {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #f4f7f9;
  padding: 24px 16px 32px;
  overflow-x: auto;
}
.calendar-controls {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.calendar-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding-bottom: 1em;
}
.calendar-filter-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: #5b6770;
}
.calendar-filter {
  border: 1px solid #e3e8ec;
  background: #ffffff;
  color: #1f2933;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.calendar-filter:hover {
  border-color: #2f7a3d;
  color: #2f7a3d;
}
.calendar-filter.is-active {
  background: #2f7a3d;
  border-color: #2f7a3d;
  color: #fff;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(140px, 1fr));
  grid-template-rows: auto auto;
  grid-auto-rows: auto;
  min-width: 980px;
  border: 1px solid #e3e8ec;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
}
.calendar-day,
.calendar-cell {
  border-right: 1px solid #e3e8ec;
  border-bottom: 1px solid #e3e8ec;
}
.calendar-day {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.72rem;
  color: #5b6770;
}
.calendar-day-label {
  font-family: "Bebas Neue", "Inter", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  text-transform: none;
  color: #1f2933;
}
.calendar-day-short {
  display: none;
  font-weight: 600;
  color: #1f2933;
}
.calendar-cell {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  justify-content: flex-start;
  background: #ffffff;
  z-index: 0;
  min-height: 120px;
}
.calendar-empty {
  margin: 6px auto;
  color: #5b6770;
  font-size: 0.8rem;
  font-style: italic;
}
.calendar-legend {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  justify-content: center;
}
.calendar-legend-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 420px;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #5b6770;
}
.calendar-legend-item strong {
  display: block;
  font-weight: 600;
  color: #1f2933;
}
.calendar-legend-item .calendar-legend-swatch {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 4px;
  background: #ffffff;
  border-top: 4px solid #65c477;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.calendar-legend-item-kurs .calendar-legend-swatch {
  background: #f7ddda;
  border-top-color: #db695d;
}
@media (max-width: 600px) {
  .calendar-legend {
    justify-content: flex-start;
  }
}
.calendar-event {
  width: 100%;
  background: #ffffff;
  border-top: 4px solid #65c477;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.8rem;
  line-height: 1.3;
  color: #1f2933;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  z-index: 2;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.calendar-event:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.calendar-event strong {
  display: block;
  margin: 2px 0;
  font-weight: 600;
}
.calendar-event span {
  display: block;
  color: #5b6770;
  font-size: 0.75rem;
}
.calendar-event .calendar-event-time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.calendar-event .calendar-event-paid {
  display: inline-block;
  flex: 0 0 auto;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  color: #1f2933;
}
.calendar-event .calendar-event-badge {
  align-self: flex-start;
  width: fit-content;
  margin: 3px 0;
  background: #5b6770;
  color: #fff;
  padding: 1px 8px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.calendar-event .calendar-event-badge-stop {
  background: #c96a17;
}
.calendar-event-time {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: #1f5a2a;
}
.calendar-event-place {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.calendar-event-place-icon {
  flex: 0 0 auto;
  position: relative;
  top: 1px;
}
.calendar-event-kurs {
  background: #f7ddda;
  border-top-color: #db695d;
}
.calendar-event-kurs .calendar-event-time {
  color: #962d22;
}
.calendar-event-kurs .calendar-event-badge {
  background: #8e2a20;
}
.calendar-event-kurs .calendar-event-badge-stop {
  background: #c96a17;
}
.modal-open {
  overflow: hidden;
}
.event-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}
.event-modal.is-visible {
  display: block;
}
.event-modal.is-embed .event-modal-content {
  display: none;
}
.event-modal.is-embed .event-modal-frame {
  display: block;
}
.event-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 20, 26, 0.7);
}
.event-modal-dialog {
  position: relative;
  max-width: 960px;
  margin: 6vh auto;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 768px) {
  .event-modal-dialog {
    margin: 4vh 16px;
  }
}
.event-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #1f2933;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  z-index: 2;
}
.event-modal-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  grid-template-rows: auto;
}
@media (max-width: 992px) {
  .event-modal-content {
    grid-template-columns: 1fr;
  }
}
.event-modal-content.no-gallery {
  grid-template-columns: 1fr;
}
.event-modal-frame {
  display: none;
}
.event-modal-frame iframe {
  display: block;
  width: 100%;
  height: 80vh;
  border: 0;
}
@media (max-width: 768px) {
  .event-modal-frame iframe {
    height: 85vh;
  }
}
.event-modal-head {
  padding: 3em 2em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.event-modal-gallery {
  background: #f4f7f9;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 20px;
}
.event-modal-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}
.event-modal-body {
  grid-column: 1 / 3;
  padding: 28px 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.event-modal-date {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  font-weight: 600;
  color: #2f7a3d;
  margin: 0;
}
.event-modal-title {
  margin: 0;
  font-size: 2rem;
}
.event-modal-place {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: #5b6770;
  font-weight: 600;
}
.event-modal-place-icon {
  flex: 0 0 auto;
}
.event-modal-trainer {
  margin: 0;
  color: #5b6770;
  font-size: 0.9rem;
}
.event-modal-badge {
  margin: 6px 0 0;
  display: inline-block;
  background: #c0392b;
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.event-modal-notice {
  margin: 6px 0 0;
  color: #c0392b;
  font-weight: 600;
}
.event-modal-description {
  margin: 0;
  color: #5b6770;
}
.event-modal-map .map-consent,
.event-modal-map iframe {
  height: 240px;
}
.map-consent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 320px;
  padding: 24px;
  text-align: center;
  border: 1px solid #e3e8ec;
  border-radius: 8px;
  background: #f4f7f9;
}
.map-consent.is-loaded {
  display: block;
  padding: 0;
  border: 0;
}
.map-consent iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
  display: block;
}
.map-consent-button {
  padding: 12px 30px;
  border: none;
  border-radius: 999px;
  background: #2f7a3d;
  color: #fff;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: background 0.2s ease, transform 0.2s ease;
}
.map-consent-button:hover {
  background: #1f5a2a;
  transform: translateY(-1px);
}
.map-consent-hint {
  margin: 0;
  max-width: 460px;
  font-size: 0.85rem;
  line-height: 1.45;
  color: #5b6770;
}
.event-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.event-modal-more {
  align-self: flex-start;
  display: inline-block;
  background: #2f7a3d;
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.event-modal-more:hover {
  transform: translateY(-2px);
  background: #286834;
  color: #fff;
}
.event-modal-tag {
  background: #f4f7f9;
  color: #1f2933;
  border: 1px solid #e3e8ec;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .calendar-board {
    padding: 16px 12px 24px;
  }
  .calendar-grid {
    grid-template-columns: repeat(7, minmax(120px, 1fr));
    grid-auto-rows: auto;
    min-width: 840px;
  }
  .calendar-cell {
    min-height: 100px;
  }
  .calendar-day-label {
    display: none;
  }
  .calendar-day-short {
    display: block;
    font-size: 0.9rem;
  }
}
.footer {
  background: #1a2630;
  color: #c4ccd3;
  padding: 56px 0 24px;
  margin-top: 0;
}
.footer .row {
  margin: 0 -16px;
}
.footer [class^="col-"] {
  padding: 16px;
}
.footer a {
  color: #c4ccd3;
  text-decoration: none;
}
.footer a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-brand img {
  max-width: 120px;
  margin-bottom: 16px;
  background: #fff;
  padding: 8px;
  border-radius: 8px;
}
.footer-brand p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}
.footer-partner {
  margin-top: 28px;
}
.footer-partner .footer-heading {
  margin-bottom: 12px;
  font-size: 1rem;
}
.footer-partner-logo {
  display: inline-block;
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
}
.footer-partner-logo img {
  display: block;
  max-width: 200px;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  background: none;
  border-radius: 0;
}
.footer-partner-logo:hover {
  text-decoration: none;
}
.footer-partner-info {
  margin: 12px 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #9aa6af;
}
.footer-partner-info a {
  color: #9aa6af;
}
.footer-partner-info a:hover {
  color: #fff;
}
.footer-heading {
  margin: 0 0 16px;
  font-family: "Bebas Neue", "Inter", sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
}
.footer-links,
.footer-contact,
.footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
}
.footer .footer-has-submenu {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer .footer-sublinks {
  list-style: none;
  padding: 0 0 0 12px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  color: #9aa6af;
}
.footer .footer-sublinks a {
  color: #9aa6af;
}
.footer .footer-sublinks a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid #2d3942;
  padding: 20px 16px 0;
  margin-top: 32px;
  font-size: 0.88rem;
  color: #8a949e;
}
.footer-legal {
  flex-direction: row;
  gap: 20px;
}
.contact-form-block {
  background: #f4f7f9;
}
.contact-form {
  max-width: 720px;
  margin-top: 8px;
}
.contact-form .row {
  margin: 0 -8px;
}
.contact-form [class^="col-"] {
  padding: 8px;
}
.contact-form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-form-field {
  display: block;
  margin: 12px 0 0;
}
.contact-form-field > span {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #1f2933;
}
.contact-form-field input,
.contact-form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e3e8ec;
  border-radius: 8px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1rem;
  color: #1f2933;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form-field input:focus,
.contact-form-field textarea:focus {
  outline: none;
  border-color: #2f7a3d;
  box-shadow: 0 0 0 3px rgba(47, 122, 61, 0.15);
}
.contact-form-field textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form-req {
  color: #c0392b;
}
.contact-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 0;
  font-size: 0.95rem;
  color: #5b6770;
  line-height: 1.5;
}
.contact-form-consent input[type="checkbox"] {
  margin-top: 4px;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  accent-color: #2f7a3d;
}
.contact-form-note {
  margin: 12px 0 0;
  font-size: 0.85rem;
  color: #5b6770;
}
.contact-form-submit {
  margin-top: 20px;
  border: 0;
  cursor: pointer;
}
.contact-form-message {
  margin: 0 0 20px;
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 500;
}
.contact-form-message--ok {
  background: rgba(47, 158, 84, 0.12);
  border: 1px solid rgba(47, 158, 84, 0.4);
  color: #1f5a2a;
}
.contact-form-message--error {
  background: rgba(192, 57, 43, 0.1);
  border: 1px solid rgba(192, 57, 43, 0.35);
  color: #c0392b;
}
