@charset "UTF-8";
/*-----------------------------------------------------------*/
/* LAYOUTS */
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/* TYPOGRAPHY                                                */
/*-----------------------------------------------------------*/
.hero-header__title {
  font-size: 132px;
  font-weight: normal;
  line-height: 1.3em;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 132px;
  font-weight: bold;
  line-height: 1.3em;
  letter-spacing: -0.02em;
}

.program-section__title, .split-section__title, h2 {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.3em;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.3em;
  letter-spacing: -0.01em;
}

.main-footer__title, .promo-strip, .split-section__list-title, h4 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3em;
  letter-spacing: -0.01em;
}

h5 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3em;
  letter-spacing: -0.01em;
}

.header__logo-link {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.3em;
}

h6 {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.3em;
}

@media screen and (max-width: 1024px) {
  .hero-header__title {
    font-size: 45px;
    font-weight: normal;
    line-height: 1.3em;
    letter-spacing: -0.01em;
  }
  h1 {
    font-size: 45px;
    font-weight: bold;
    line-height: 1.3em;
    letter-spacing: -0.01em;
  }
  .program-section__title, .split-section__title, h2 {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.3em;
    letter-spacing: -0.01em;
  }
}
@media screen and (max-width: 768px) {
  .hero-header__title {
    font-size: 64px;
    font-weight: normal;
    line-height: 1.3em;
    letter-spacing: -0.01em;
  }
  h1 {
    font-size: 64px;
    font-weight: bold;
    line-height: 1.3em;
    letter-spacing: -0.01em;
  }
  .program-section__title, .split-section__title, h2 {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.3em;
    letter-spacing: -0.01em;
  }
}
.gallery .gallery-header .gallery-desc, .program-section__wrapper .count, .split-section__perex {
  font-size: 24px;
  font-weight: normal;
  line-height: 1.4em;
}

.form button[type=submit], .program-table__header {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4em;
}

.form input:not([type=submit]):not([type=checkbox]),
.form textarea, .newsletter-section .newsletter-form__submit, .split-section__text, .header__mobile-link, .button, .message-block {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.4em;
}

.form label, .form [for=suhlasim], .translation-message, .main-footer, .main-footer__link-item a, .newsletter-section .newsletter-form__input, .newsletter-section .newsletter-form__info, .program-table__date, .split-section__list-text, .header__link {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.4em;
}

.main-footer__bottom, .split-section__list-number {
  font-size: 14px;
  font-weight: normal;
  line-height: 0.7142857143em;
}

/*-----------------------------------------------------------*/
/* GLOBAL SETTINGS                                           */
/*-----------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: #333333;
  background: #ffffff;
  line-height: 1.6;
  letter-spacing: -0.03em;
}

a {
  color: #333333;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #0045FF;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.blue {
  color: #0045FF;
}

/*-----------------------------------------------------------*/
/* TYPOGRAPHY                                                */
/*-----------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h2, h3, h4, h5, h6 {
  line-height: 1.5em;
}

/*-----------------------------------------------------------*/
/* BUTTON                                                    */
/*-----------------------------------------------------------*/
.button {
  padding: 20px 32px;
  display: flex;
  flex-flow: row nowrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 200px;
  font-family: "DM Sans", sans-serif;
  width: fit-content;
  background-color: #0045FF;
  color: #ffffff;
  transition: all 0.3s ease;
  transform: scale(1);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  cursor: pointer;
}
.button:hover {
  transform: scale(0.95);
  background-color: #75E2A8;
  color: #ffffff;
}
.button:active {
  transform: scale(0.9);
}
.button--full {
  width: 100%;
}
.button--icon::after {
  content: "";
  --size: 14px;
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
  min-height: var(--size);
  max-width: var(--size);
  max-height: var(--size);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("/images/icons/button-arrow.svg");
  display: block;
}
.button--lg {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3em;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.button--lg::after {
  --size: 18px;
}
.button--light {
  background-color: #ffffff;
  color: #333333;
  font-weight: 500;
}
.button--light:hover {
  background-color: #ffffff !important;
  color: #333333 !important;
}
.button--light::after {
  filter: invert(1);
}
.button--blue-border {
  background-color: #0045FF;
  border: solid 2px #ffffff !important;
  color: #ffffff;
  font-weight: 500;
}
.button--blue-border:hover {
  background-color: #0045FF !important;
  color: #ffffff !important;
}
.button--dark {
  background-color: #000000;
  color: #ffffff;
}

/*-----------------------------------------------------------*/
/* LANGUAGE SWITCHER                                         */
/*-----------------------------------------------------------*/
.lang {
  position: fixed;
  top: 24px;
  left: 24px;
  --size: 64px;
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
  min-height: var(--size);
  max-width: var(--size);
  max-height: var(--size);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px 1px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  background-color: #ffffff;
  z-index: 100;
  transform: scale(1);
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .lang {
    top: unset;
    left: unset;
    right: 16px;
    bottom: 16px;
  }
}
.lang:hover {
  transform: scale(0.95);
}
.lang:active {
  transform: scale(0.9);
}
.lang img {
  width: 100%;
  height: 100%;
}

.message-block {
  padding: 32px;
  text-align: center;
  background-color: #000000;
  border-radius: 10px;
  color: #ffffff;
  width: fit-content;
  margin: 0 auto;
}

.wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  vertical-align: middle;
  padding-top: 160px;
  padding-bottom: 120px;
  min-height: 80vh;
}
@media screen and (max-width: 768px) {
  .wrapper {
    padding-top: 120px;
    min-height: 60vh;
  }
}

.header {
  width: 100%;
  background-color: #ffffff;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  border: solid 1px #575757;
  border-width: 1px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0px 40px 1px rgba(0, 0, 0, 0.08);
  position: fixed;
  width: calc(100% - 32px);
  max-width: calc(100% - 32px);
  top: 16px;
  left: 16px;
  z-index: 999;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .header {
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
  }
}
.header, .header * {
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .header {
    overflow: visible;
  }
}
.header .container {
  padding: 0;
  margin: 0 auto;
  max-width: unset;
  width: 100%;
}
@media (max-width: 1024px) {
  .header .container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .header .container {
    padding-left: 0;
    padding-right: 0;
  }
}
.header__info a {
  color: #0045FF;
  text-decoration: underline;
}
.header__info a:hover {
  text-decoration: underline;
}
.header__inner {
  display: flex;
  justify-content: flex-start;
  min-height: 70px;
}
.header__logo {
  display: flex;
  align-items: center;
  padding: 0 32px;
  margin: 0 auto 0 0;
}
@media screen and (max-width: 768px) {
  .header__logo {
    padding: 0 16px;
  }
}
.header__logo-link {
  color: #000000;
  text-decoration: none;
  letter-spacing: -0.02em;
  word-spacing: -0.1em;
  text-transform: lowercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header__logo-link .popis {
  line-height: 0.8em;
  font-size: 88%;
  position: relative;
  bottom: -2px;
}
@media screen and (max-width: 768px) {
  .header__logo-link .popis {
    font-size: 80%;
  }
}
@media screen and (max-width: 350px) {
  .header__logo-link .popis {
    font-size: 65%;
  }
}
.header__logo-link .martin {
  font-size: 220%;
}
@media screen and (max-width: 768px) {
  .header__logo-link .martin {
    font-size: 200%;
  }
}
@media screen and (max-width: 350px) {
  .header__logo-link .martin {
    font-size: 160%;
  }
}
.header__logo-link:hover {
  color: #000000;
}
@media (max-width: 768px) {
  .header__logo-link {
    font-size: 15px;
  }
}
.header__nav--desktop {
  margin: 0 0 0 auto;
}
@media (max-width: 1024px) {
  .header__nav--desktop {
    display: none;
  }
}
.header__menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  height: 100%;
}
.header__item {
  display: flex;
  align-items: center;
  border-left: 1px solid #575757;
}
.header__link {
  display: block;
  padding: 0 32px;
  text-decoration: none;
  color: #000000;
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: 500;
  letter-spacing: 0;
}
.header__link:hover {
  background-color: #f2f2f2;
  color: #000000;
}
.header__actions {
  display: flex;
  align-items: stretch;
}
.header__socials {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  border-left: 1px solid #575757;
}
@media (max-width: 1024px) {
  .header__socials {
    display: none;
  }
}
.header__social-link {
  --size: 30px;
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
  min-height: var(--size);
  max-width: var(--size);
  max-height: var(--size);
  background-color: #0045FF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
  border-radius: 50%;
}
.header__social-link:hover {
  color: #75E2A8;
}
.header__social-link i {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  color: #ffffff;
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
  min-height: var(--size);
  max-width: var(--size);
  max-height: var(--size);
}
.header__social-link:first-of-type {
  background-color: #833AB4;
}
.header__social-link:nth-of-type(3) {
  background-color: #CD201F;
}
.header__lang {
  display: flex;
  align-items: center;
  padding: 0 32px;
  border-left: 1px solid #575757;
  border-right: none;
}
@media screen and (max-width: 1024px) {
  .header__lang {
    border-right: 1px solid #575757;
  }
}
@media screen and (max-width: 768px) {
  .header__lang {
    padding: 0 16px;
  }
}
.header__lang img {
  display: block;
  width: 24px;
  height: auto;
}
.header__toggler {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 16px;
  border-right: 1px solid #575757;
}
@media (max-width: 1024px) {
  .header__toggler {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 60px;
    align-items: center;
    border-right: none;
  }
}
.header__toggler span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #000000;
  transition: all 0.3s ease;
}
.header__toggler.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__toggler.is-active span:nth-child(2) {
  opacity: 0;
}
.header__toggler.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.header.menu-open .header__nav--mobile {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.header__nav--mobile {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 9;
  border: solid 1px #575757;
  border-radius: 10px;
}
.header__nav--mobile {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease-in-out, opacity 0.3s ease-in-out;
}
.header__nav--mobile .header__mobile-item:first-of-type {
  border-top: none;
}
.header__mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__mobile-item {
  border-bottom: 1px solid #575757;
}
.header__mobile-item:first-child {
  border-top: 1px solid #575757;
}
.header__mobile-item:last-of-type {
  border-bottom: none;
}
.header__mobile-item .header__socials {
  display: flex !important;
  width: 100%;
  justify-content: center;
  align-items: center;
  border: none !important;
  padding: 16px;
}
.header__mobile-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease;
  padding-right: 24px;
}
.header__mobile-link i {
  color: #555;
  font-size: 16px;
}
.header__mobile-link:hover {
  color: #75E2A8;
}

.hero-header {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .hero-header {
    height: 80vh;
    min-height: 500px;
    max-height: 600px;
  }
}
.hero-header .container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 120px;
  padding-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .hero-header .container {
    padding: 50px;
    padding-bottom: 32px;
  }
}
@media screen and (max-width: 768px) {
  .hero-header .container {
    padding: 20px;
    padding-bottom: 64px;
  }
}
.hero-header__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-header__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1); /* Filter môžete zmeniť, ale použijeme overlay pre stmavenie */
}
.hero-header__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(to top right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  pointer-events: none;
}
.hero-header__title {
  color: #ffffff;
  margin: 0;
  line-height: 0.8em;
}
.hero-header__highlight {
  color: rgb(102, 143.4, 255);
}

#changing-word {
  display: inline-block;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  opacity: 1;
  transform: translateY(0);
}

#changing-word.fade-out {
  opacity: 0;
  transform: translateY(-10px);
}

#changing-word.fade-in {
  opacity: 0;
  transform: translateY(10px);
}

.section {
  padding: 0;
}
.section .container {
  max-width: unset;
  width: 100%;
}
.section--light {
  background-color: #ffffff;
  color: #333333;
}

.split-section {
  display: flex;
  flex-flow: row wrap;
  gap: 0;
  align-items: center;
}
.split-section__title {
  margin-bottom: 24px !important;
}
.split-section__visual {
  flex: 1 1 50%;
  order: 1;
}
@media (max-width: 1024px) {
  .split-section__visual {
    flex: 1 1 100%;
    height: 350px;
    margin-bottom: 32px;
  }
}
.split-section__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-section__content {
  flex: 1 1 50%;
  order: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding: 32px;
}
.split-section__content a:not(.button) {
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .split-section__content {
    flex: 1 1 100%;
    order: 2;
    max-width: 100%;
    padding: 16px;
    padding-bottom: 100px;
  }
}
.split-section__content__inner {
  max-width: 500px;
  margin: 0 auto;
}
.split-section--reverse .split-section__visual {
  order: 2;
}
.split-section--reverse .split-section__content {
  order: 1;
}
@media (max-width: 1024px) {
  .split-section--reverse .split-section__visual {
    order: 1;
  }
  .split-section--reverse .split-section__content {
    order: 2;
  }
}
.split-section__title {
  margin-bottom: 16px;
}
.split-section__perex {
  margin-bottom: 32px;
}
.split-section__text {
  margin-bottom: 32px;
}
.split-section__list {
  margin-bottom: 32px;
}
.split-section__list-item {
  padding: 16px 0;
}
.split-section__list-number {
  color: #75E2A8;
}
.split-section__list-title {
  margin-bottom: 8px;
}
.promo-strip-container,
.promo-strip-no-text {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0;
  z-index: 10;
}
.promo-strip-container--left,
.promo-strip-no-text--left {
  transform: skewY(-0.5deg);
}
.promo-strip-container--right,
.promo-strip-no-text--right {
  transform: skewY(0.5deg);
}
.promo-strip-container,
.promo-strip-no-text {
  margin-top: -15px;
  margin-bottom: -15px;
}

.promo-strip-no-text {
  height: 75px;
}
.promo-strip-no-text--primary {
  background-color: #0045FF;
}
.promo-strip-no-text--secondary {
  background-color: #75E2A8;
}
.promo-strip-no-text--dark {
  background-color: #000000;
}
@media screen and (max-width: 768px) {
  .promo-strip-no-text {
    height: 50px;
  }
}

.promo-strip {
  width: 200%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 0;
  animation: scroll-left 70s linear infinite;
}
.promo-strip--to-right {
  animation: scroll-right 70s linear infinite;
}
.promo-strip--primary {
  background-color: #0045FF;
  color: #ffffff;
}
.promo-strip--secondary {
  background-color: #75E2A8;
  color: #000000;
}
.promo-strip--dark {
  background-color: #000000;
  color: #ffffff;
}
@media (max-width: 768px) {
  .promo-strip {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3em;
    padding: 12px 0;
    animation: scroll-left 10s linear infinite;
  }
  .promo-strip--to-right {
    animation: scroll-right 10s linear infinite;
  }
}

.promo-strip__inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.promo-strip__claim {
  padding: 0 16px;
}
.promo-strip__claim span {
  color: #75E2A8;
}

.promo-strip__separator {
  padding: 0 8px;
}

.program-section {
  background-color: rgba(0, 69, 255, 0.7);
  padding: 200px 0 240px 0;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .program-section {
    padding: 120px 0 120px 0;
  }
}
@media screen and (max-width: 768px) {
  .program-section {
    padding: 60px 0 60px 0;
  }
}
.program-section .container {
  position: relative;
}
.program-section__title {
  color: #ffffff;
  margin-bottom: 64px;
  font-weight: normal;
  text-align: center;
  font-size: 50px;
  line-height: 1.2em;
}
@media screen and (max-width: 768px) {
  .program-section__title {
    font-size: 36px;
    margin-bottom: 32px;
  }
}
.program-section__calendar-icon svg {
  --size: 80px;
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
  min-height: var(--size);
  max-width: var(--size);
  max-height: var(--size);
}
.program-section__calendar-icon {
  position: absolute;
  top: -10px;
  right: 16px;
  z-index: 2;
  transform: translate(50%, 50%);
}
@media (max-width: 1024px) {
  .program-section__calendar-icon {
    display: none;
  }
}
.program-section__wrapper {
  width: 100%;
  position: relative;
  height: fit-content;
}
.program-section__wrapper .count {
  position: absolute;
  top: 10px;
  right: 10px;
  transform: translate(50%, -50%) rotate(4deg) scale(1);
  background-color: #fe3724;
  color: #ffffff;
  padding: 4px 30px;
  font-weight: 200;
  border-radius: 200px;
  animation: scale 2s ease-in-out infinite alternate;
  box-shadow: 0 10px 40px 1px rgba(0, 0, 0, 0.2);
}
@keyframes scale {
  from {
    transform: translate(50%, -50%) rotate(4deg) scale(1);
  }
  to {
    transform: translate(50%, -50%) rotate(4deg) scale(1.2);
  }
}

.program-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 32px;
}
.program-table thead {
  background-color: #0045FF;
  background: linear-gradient(180deg, #0045FF 50%, rgb(0, 55.2, 204) 80%, rgb(0, 41.4, 153) 100%);
  color: #ffffff;
}
.program-table thead tr:first-child th:first-child {
  border-top-left-radius: 10px;
}
.program-table thead tr:first-child th:last-child {
  border-top-right-radius: 10px;
}
.program-table thead th {
  font-size: 20px;
  border: solid 2px #ffffff;
  border-width: 2px 1px;
  text-align: center;
}
.program-table thead th:first-of-type {
  border-left-width: 2px;
}
.program-table thead th:last-of-type {
  border-right-width: 2px;
}
.program-table__header {
  text-transform: uppercase;
  padding: 32px 16px;
  text-align: left;
}
.program-table tbody .program-table__row--highlight td:last-of-type {
  color: #edbe47;
  font-weight: bold;
}
.program-table tbody .program-table__row--highlight .program-table__icon {
  filter: grayscale(1);
}
@media screen and (max-width: 1024px) {
  .program-table tbody .program-table__row--highlight {
    position: relative;
  }
  .program-table tbody .program-table__row--highlight::after {
    content: "🚩";
    position: absolute;
    top: 20px;
    right: 20px;
    display: block;
    font-size: 22px;
    transform: translate(50%, -50%);
  }
}
.program-table tr:first-of-type td {
  border-top-width: 0;
}
.program-table tr:last-of-type td {
  border-bottom-width: 2px;
}
.program-table tr td {
  border: solid 2px #ffffff;
  border-width: 2px 1px 0 1px;
  text-align: center;
}
.program-table tr td:first-of-type {
  border-left-width: 2px;
}
.program-table tr td:last-of-type {
  border-right-width: 2px;
}
.program-table tr:last-of-type td:first-child {
  border-bottom-left-radius: 10px;
}
.program-table tr:last-of-type td:last-child {
  border-bottom-right-radius: 10px;
}
.program-table tr:nth-of-type(even) td {
  background-color: #181818;
}
.program-table tr:nth-of-type(odd) td {
  background-color: #000000;
}
.program-table__cell {
  padding: 20px 16px;
  color: #ffffff;
  vertical-align: middle;
  text-align: center;
}
.program-table__cell--day {
  width: 30%;
  font-size: 18px;
  line-height: 1em;
}
.program-table__cell--day span {
  font-size: 14px;
}
.program-table__cell--day .mobile {
  display: none;
}
.program-table__cell--time {
  width: 15%;
}
.program-table__cell--event {
  width: 55%;
  font-size: 22px;
}
.program-table__cell--event a {
  color: #ffffff;
  display: inline-block;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.75);
}
.program-table__cell--event a::after {
  content: "";
  --size: 24px;
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
  min-height: var(--size);
  max-width: var(--size);
  max-height: var(--size);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("/img/external-link.svg");
  display: inline-block;
  vertical-align: middle;
  padding-right: 12px;
  position: relative;
  top: -1px;
}
@media (max-width: 768px) {
  .program-table__cell {
    padding: 16px 8px;
    display: block;
    width: 100% !important;
    text-align: left;
    padding-right: 28px !important;
    padding-left: 28px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border: none !important;
  }
  .program-table__cell--day {
    padding-top: 24px !important;
    font-size: 16px;
  }
  .program-table__cell--day .mobile {
    font-size: 16px;
    display: inline-block;
  }
  .program-table__cell--day .program-table__date {
    opacity: 0.35;
    font-size: 16px;
    padding-top: 2px;
  }
  .program-table__cell--time {
    display: none;
  }
  .program-table__cell--event {
    padding-top: 10px !important;
    padding-bottom: 24px !important;
    font-weight: bold;
    font-size: 22px;
    line-height: 1em;
  }
}
.program-table__date {
  display: block;
  color: #ffffff;
  opacity: 0.5;
}
.program-table__icon {
  margin-right: 8px;
  font-size: 1.2em;
}
@media (max-width: 768px) {
  .program-table {
    display: block;
    border-collapse: collapse;
    border-radius: 10px;
  }
  .program-table thead {
    display: none;
  }
  .program-table tbody, .program-table tr {
    display: block;
    margin-bottom: 8px;
  }
  .program-table tr {
    border-radius: 10px;
    overflow: hidden;
  }
  .program-table tr:last-of-type td:first-of-type {
    border-radius: 0;
  }
  .program-table .program-table__cell {
    border: none;
    padding: 8px 16px;
  }
  .program-table .program-table__cell--event {
    padding-top: 0;
  }
}

.newsletter-section {
  width: 100%;
  background-color: #151515;
  background: radial-gradient(circle at 90% 150%, #0d0d0d 0%, #2e2e2e 60%, #171717 90%);
  padding: 100px;
  color: #ffffff;
  text-align: center;
}
.newsletter-section h2 {
  line-height: 1.3em;
  margin-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  .newsletter-section {
    padding: 32px 20px;
  }
}
.newsletter-section .container {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  border: solid 1px #ffffff;
  border-radius: 10px;
  padding: 64px;
  background: #202020;
}
@media (max-width: 1024px) {
  .newsletter-section .container {
    padding: 32px;
  }
}
.newsletter-section .newsletter-form {
  margin-top: 32px;
  width: 100%;
}
@media (max-width: 1024px) {
  .newsletter-section .newsletter-form {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .newsletter-section .newsletter-form {
    padding: 0;
  }
}
.newsletter-section .newsletter-form__fields {
  display: flex;
  flex-flow: row nowrap;
  gap: 0;
  margin-bottom: 32px;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .newsletter-section .newsletter-form__fields {
    flex-flow: column;
  }
}
.newsletter-section .newsletter-form__input {
  flex: 1 1 calc(50% - 16px / 2);
  padding: 24px;
  color: #000000;
  margin: 0 !important;
  height: fit-content;
  border: none;
  outline: none;
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
}
@media screen and (max-width: 1024px) {
  .newsletter-section .newsletter-form__input {
    width: 100%;
    max-width: unset;
  }
}
.newsletter-section .newsletter-form__input:first-of-type {
  border-right: solid 1px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1024px) {
  .newsletter-section .newsletter-form__input:first-of-type {
    border-right: none;
    border-bottom: solid 1px rgba(0, 0, 0, 0.5);
  }
}
.newsletter-section .newsletter-form__input:focus {
  border-color: #75E2A8;
  outline: none;
}
.newsletter-section .newsletter-form__input:nth-child(3) {
  flex: 1 1 100%;
}
@media (max-width: 1024px) {
  .newsletter-section .newsletter-form__input {
    flex: 1 1 100%;
  }
}
.newsletter-section .newsletter-form__submit {
  width: 100%;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  padding: 22px;
  border-radius: 0;
  font-weight: 700;
  margin-bottom: 0;
  height: fit-content;
  border: solid 1px #0045FF;
}
.newsletter-section .newsletter-form__submit:hover {
  background-color: #0034c3;
  transform: none;
}
.newsletter-section .newsletter-form__info {
  text-align: center;
  color: #727272;
}
.newsletter-section .newsletter-form__info a {
  color: #727272;
  text-decoration: underline;
}
.newsletter-section .newsletter-form__link {
  color: #75E2A8;
  text-decoration: underline;
}
.newsletter-section .newsletter-form__link:hover {
  color: #75E2A8;
  opacity: 0.8;
}

.main-footer {
  background-color: #000000;
  color: #ffffff;
  padding: 64px 0 0 0;
  border-top: 1px solid rgb(12.75, 12.75, 12.75);
}
.main-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgb(12.75, 12.75, 12.75);
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .main-footer__grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}
.main-footer__title {
  color: #0045FF;
  margin-bottom: 16px;
  margin-top: 32px;
}
.main-footer__title:first-child {
  margin-top: 0;
}
.main-footer__label {
  color: #666666;
  margin-right: 4px;
}
.main-footer__link {
  color: #ffffff;
  text-decoration: none;
}
.main-footer__link:hover {
  color: #75E2A8;
  text-decoration: underline;
}
.main-footer__address {
  font-style: normal;
  margin-bottom: 32px;
  color: #666666;
}
.main-footer__links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-footer__link-item {
  margin-bottom: 8px;
}
.main-footer__link-item a::before {
  content: "→";
  color: #75E2A8;
  margin-right: 8px;
  display: inline-block;
  transition: transform 0.2s;
}
.main-footer__link-item:hover a::before {
  transform: translateX(4px);
}
.main-footer__copyright {
  grid-column: 1/-1;
  text-align: center;
  color: rgb(76.5, 76.5, 76.5);
  padding-top: 16px;
}
.main-footer__bottom {
  background-color: rgb(12.75, 12.75, 12.75);
  border-top: 1px solid rgb(20.4, 20.4, 20.4);
  padding: 16px 0;
  color: rgb(76.5, 76.5, 76.5);
  line-height: 1.3em;
}
.main-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 0 120px;
}
@media (max-width: 1024px) {
  .main-footer__bottom-inner {
    padding: 0 50px;
  }
}
@media (max-width: 1024px) {
  .main-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}
.main-footer__owner {
  flex-grow: 1;
}
.main-footer__credits, .main-footer__podcast-link {
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .main-footer__credits, .main-footer__podcast-link {
    order: 3;
  }
}
.main-footer__podcast-link {
  color: #75E2A8;
  text-decoration: none;
  padding-left: 32px;
}
@media (max-width: 1024px) {
  .main-footer__podcast-link {
    padding-left: 0;
    order: 2;
    margin-top: 4px;
  }
}
.main-footer__podcast-link:hover {
  text-decoration: underline;
}
.main-footer__credits a {
  text-decoration: underline;
  padding: 0 2px;
}
.main-footer__credits a:hover {
  color: #75E2A8;
}

.translation-message {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 999;
  background-color: #1e1e1e;
  color: #b4b4b4;
  text-align: left;
  padding: 16px;
  border-bottom: solid 1px #575757;
  border-radius: 10px;
  max-width: 310px;
  line-height: 1.2em;
  overflow: visible;
}
.translation-message a {
  color: #5e66ff;
  text-decoration: underline;
}
.translation-message .close {
  position: absolute;
  right: 8px;
  top: 8px;
  transform: translate(50%, -50%);
  --size: 28px;
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
  min-height: var(--size);
  max-width: var(--size);
  max-height: var(--size);
  border-radius: 50%;
  display: block;
  background-color: #ffffff;
  border: solid 1px #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.translation-message .close::before, .translation-message .close::after {
  content: "";
  width: 12px;
  height: 2px;
  background-color: black;
  position: absolute;
}
.translation-message .close::before {
  transform: rotate(-45deg);
}
.translation-message .close::after {
  transform: rotate(45deg);
}

.form {
  width: 100%;
  margin: 32px auto;
}
.form .row {
  display: flex;
  flex-flow: row nowrap;
  gap: 16px;
  width: 100%;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .form .row {
    flex-flow: column;
  }
}
.form label {
  width: 100%;
  display: block;
  margin-bottom: 8px;
  color: #000000;
}
.form input:not([type=submit]):not([type=checkbox]),
.form textarea {
  width: 100% !important;
  padding: 16px 20px !important;
  margin: 0.2rem 0 !important;
  background-color: #ffffff;
  border: 1px solid black;
  border-radius: 10px;
  color: #000000;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.form input:not([type=submit]):not([type=checkbox]):focus,
.form textarea:focus {
  border-color: #0045FF;
  outline: none;
  box-shadow: 0 0 0 1px rgba(0, 69, 255, 0.5);
}
.form input:not([type=submit]):not([type=checkbox])::placeholder,
.form textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.form textarea {
  resize: vertical;
  height: 80px;
  min-height: 80px;
  max-height: 120px;
  width: 100%;
  min-width: 100%;
}
.form [for=suhlasim] {
  display: flex !important;
  align-items: flex-start;
  margin-bottom: 16px;
  color: #000000;
}
.form [for=suhlasim] input[type=checkbox] {
  margin-right: 8px;
  width: auto !important;
  padding: 0 !important;
  margin-top: 2px !important;
}
.form button[type=submit] {
  padding: 18px 25px !important;
  width: 100%;
  margin-top: 16px;
  background-color: #0045FF;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.form button[type=submit]:hover {
  background-color: rgb(0, 57.96, 214.2);
  transform: translateY(-1px);
}

.gallery {
  padding: 120px 12px 12px 12px;
  background-color: #d8e0fa;
}
@media screen and (max-width: 1024px) {
  .gallery {
    padding: 100px 12px 12px 12px;
  }
}
.gallery .gallery-header {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .gallery .gallery-header {
    margin-bottom: 64px;
  }
}
.gallery .gallery-header a {
  text-decoration: underline;
}
.gallery .gallery-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media screen and (max-width: 1024px) {
  .gallery .gallery-content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.gallery .gallery-content .gallery-item {
  width: 100%;
  margin: 0;
}
.gallery .gallery-content .gallery-item img {
  width: 100%;
  margin: 0;
  display: block;
}
