*,
*::before,
*::after {
  box-sizing: border-box;
}
ul[class],
ol[class] {
  padding: 0;
}
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
ul[class],
ol[class] {
  list-style: none;
}
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
img {
  max-width: 100%;
  display: block;
}
input,
button,
textarea,
select {
  font: inherit;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --spacer-xl: 88px;
  --spacer-md: 72px;
  --spacer-sm: 48px;
  --black: #0c0c0c;
  --red: #ba1e22;
  --white: #f1f1f1;
}
html,
body {
  height: 100%;
}
body {
  min-height: 100.3%;
  background-color: var(--white);
  font-family: 'Libre Franklin', sans-serif;
  color: var(--black);
  font-size: 17px;
  line-height: 30px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
  scroll-behavior: smooth;
}
.body-wrapper {
  padding-left: 48px;
  padding-right: 48px;
  max-width: calc(1180px + 48px + 48px);
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
@media (min-height: 768px) {
  header {
    top: 0;
    position: sticky;
    height: 710px;
  }
}
header {
  flex-shrink: 0;
  padding-top: 65px;
  max-width: 180px;
  margin-right: 120px;
}
header .logo {
  display: inline-block;
  margin-bottom: 52px;
}
header .main-menu a {
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 500;
  line-height: 24px;
  padding: 12px 0 8px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}
header .main-menu a.current {
  font-weight: bold;
}
header .main-menu a:hover {
  font-weight: bold;
}
header .main-menu > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 180px;
  height: 18px;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='180' height='18' viewBox='0 0 180 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 17.2001V15.193H169.272L159.191 5.55903L162.149 0.836426L178.512 15.5945L180 17.2001H0Z' fill='%23BA1E22'/%3E%3C/svg%3E%0A");
  transform: translateX(-20px);
  transition: transform 0.3s;
  will-change: transform;
}
header .main-menu > a:hover::after,
header .main-menu > a.current::after {
  transform: translateX(0);
}
header .main-menu .sub-menu {
  margin-top: 26px;
}
header .main-menu .sub-menu a {
  font-size: 15px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
header .main-menu .sub-menu a:hover {
  text-decoration: underline;
}
header .main-menu .sub-menu a::after {
  display: none;
}
header .languages {
  margin-top: 32px;
  margin-bottom: 32px;
}
header .languages a {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  padding: 2px;
  opacity: 0.4;
  transition: opacity 0.3s;
}
header .languages a:first-child {
  padding-left: 0;
}
header .languages a:hover,
header .languages a.current {
  opacity: 1;
}
header .socials a {
  opacity: 0.4;
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
  transition: opacity 0.3s;
  transform: translateZ(0);
}
header .socials a:hover {
  opacity: 1;
}
header .socials svg rect {
  stroke: var(--black);
}
header .socials svg path {
  fill: var(--black);
}
header .socials .ecomail img {
  padding-bottom: 6px;
}
.content {
  width: 100%;
}
.content > :last-child {
  margin-bottom: 0 !important;
}
.newsletter {
  margin-top: 25px;
}
footer {
  margin-top: 155px;
  background-color: #e5e5e5;
  padding: 72px 48px var(--spacer-xl);
  letter-spacing: 0.05em;
}
footer .wrapper {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 300px;
}
footer h3 + .subtitle {
  margin-top: 0;
}
footer .subtitle {
  margin-top: 32px;
}
footer .columns {
  display: flex;
  justify-content: space-between;
  margin-bottom: calc(var(--spacer-xl) - 10px);
}
footer .columns .column {
  width: 33.33%;
}
footer .columns .column:first-child {
  width: 31%;
}
footer .columns .column:not(:nth-child(3n)) {
  padding-right: 5%;
}
footer .columns .column.organizer img {
  max-width: 145px;
}
footer .partners .logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  grid-gap: 20px;
}
footer .partners .logos a {
  display: inline-block;
  vertical-align: middle;
}
footer .partners .logos a img {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 180px;
  max-height: 90px;
}
.policy-page h2,
.policy-page h3 {
  margin-top: 24px;
}
h1,
h2,
h3 {
  letter-spacing: 0.05em;
}
h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 36px;
  line-height: 48px;
  text-transform: uppercase;
}
h2 {
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
}
h3 {
  font-size: 17px;
  line-height: 24px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
}
h2.sub-header,
h3.sub-header {
  margin-bottom: var(--spacer-sm);
}
.button {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  padding: 12px 33px;
  background-color: var(--red);
  text-decoration: none;
  color: var(--white);
  transition: opacity 0.3s;
}
.button:hover {
  opacity: 0.8;
}
.button.disabled {
  opacity: 0.6;
}
.button.reserved {
  background-color: #383838;
}
.button.reserved:hover {
  opacity: 1;
}
.button.full-width {
  width: 100%;
  text-align: center;
}
a.more,
a.go-back {
  display: inline-block;
  font-size: 15px;
  line-height: 24px;
  text-transform: uppercase;
  opacity: 0.3;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
}
a.more:hover,
a.go-back:hover {
  text-decoration: underline;
}
a {
  color: var(--red);
  outline: 0;
}
a:hover {
  text-decoration: none;
}
a.bold-link {
  text-transform: uppercase;
  color: var(--black);
  text-decoration: underline;
  font-weight: 600;
}
a.bold-link:hover {
  text-decoration: none;
}
.entry-content {
  max-width: 700px;
  opacity: 0.5;
  margin-bottom: var(--spacer-md);
}
.subtitle {
  opacity: 0.6;
  font-size: 15px;
  margin-top: 24px;
  margin-bottom: 2px;
}
p + p {
  margin-top: 30px;
}
p.subtitle + p {
  margin-top: 16px;
}
.bold {
  font-weight: 600 !important;
  opacity: 0.9 !important;
}
.small-text {
  font-size: 15px;
  line-height: 24px;
}
* {
  min-height: 0;
  min-width: 0;
}
.slider-images {
  margin-bottom: 20px !important;
}
.slider-images .slick-dots {
  position: relative;
  bottom: 0;
  text-align: left;
  display: flex;
  margin-top: 12px;
}
.slider-images .slick-dots li {
  margin: 0 4px;
}
.slider-images .slick-dots li:first-child {
  margin-left: 0;
}
.slider-images .slick-dots li button:before {
  content: '';
  background-color: var(--black);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: 6px;
  top: 6px;
  transition: opacity 0.3s;
}
.slider-text {
  margin-bottom: var(--spacer-xl) !important;
}
.slider-text .text-wrapper {
  display: flex;
}
.slider-text .text-wrapper h1 {
  width: 50%;
}
.slider-text .text-wrapper p {
  line-height: 24px;
  margin-bottom: 32px;
}
.slider-text .text-wrapper .info-more {
  width: 50%;
  margin-top: 48px;
  padding-left: 40px;
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--spacer-xl);
  margin-bottom: 24px;
}
.section-header h2 {
  margin-bottom: 0;
}
.section-header a {
  flex-shrink: 0;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.3;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  margin-left: 20px;
}
.section-header a:hover {
  text-decoration: underline;
}
.featured-image {
  display: block;
  margin-bottom: 64px;
  width: 100%;
}
.page-header h1 {
  width: 68%;
  margin-bottom: var(--spacer-sm);
}
.page-header.no-featured-image {
  margin-top: 190px;
}
.page-header .header-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.page-header .header-meta time {
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0.3;
}
.page-header .header-meta a {
  margin-top: 4px;
}
.news-home {
  display: flex;
  flex-wrap: wrap;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: var(--spacer-xl);
}
.news-home article {
  margin-right: 8%;
  width: 28%;
  margin-top: 32px;
  letter-spacing: 0.05em;
}
.news-home article:nth-child(-n+3) {
  margin-top: 0;
}
.news-home article:nth-child(3n) {
  margin-right: 0;
}
.news-home article a {
  color: currentColor;
  text-decoration: none;
}
.news-home article a:hover {
  text-decoration: underline;
}
.news-home article h3 {
  margin-bottom: 20px;
  font-weight: 500;
}
.news-home article time {
  display: inline-block;
  opacity: 0.3;
  margin-bottom: 12px;
}
.news-home article p {
  opacity: 0.6;
  margin-bottom: 22px;
}
.news {
  margin: var(--spacer-sm) 0;
}
.news article {
  letter-spacing: 0.05em;
  position: relative;
}
.news article:not(:last-child) {
  margin-bottom: var(--spacer-md);
}
.news article time {
  display: inline-block;
  margin-left: 20px;
  opacity: 0.5;
  float: right;
}
.news article a {
  color: currentColor;
  text-decoration: none;
}
.news article a:hover {
  text-decoration: underline;
}
.news article h2 {
  margin-bottom: 20px;
}
.news article p {
  clear: both;
  opacity: 0.5;
  margin-right: 70px;
  letter-spacing: 0;
  max-width: 720px;
}
.news article .more {
  position: absolute;
  right: 0;
  bottom: 0;
}
.news-detail .entry-content {
  opacity: 0.9;
  margin-bottom: 0;
}
.program-section {
  margin-bottom: var(--spacer-xl);
}
.program-section h2 {
  margin-bottom: var(--spacer-sm);
}
.entry-content + .program-section {
  margin-top: var(--spacer-md);
}
.program {
  margin-top: 36px;
}
.program .program-item {
  display: flex;
  font-size: 15px;
  line-height: 24px;
}
.program .program-item:not(:last-child) {
  margin-bottom: 64px;
}
.program .program-item .image {
  flex-shrink: 0;
  margin-right: 3%;
}
.program .program-item .image img {
  max-width: 241px;
  -o-object-fit: cover;
     object-fit: cover;
}
.program .program-item p,
.program .program-item .day {
  font-size: 14px;
}
.program .program-item .text-info {
  flex-grow: 1;
  display: flex;
  letter-spacing: 0.05em;
  max-width: 415px;
}
.program .program-item .text-info a {
  text-decoration: none;
  color: currentColor;
}
.program .program-item .text-info a:hover {
  text-decoration: underline;
}
.program .program-item .text-info h3 {
  text-transform: none;
  font-weight: 500;
}
.program .program-item .text-info .date {
  display: flex;
  flex-flow: column;
  width: 30%;
  margin-right: 5%;
}
.program .program-item .text-info .date time {
  font-weight: 500;
  margin-bottom: 10px;
}
.program .program-item .text-info .date .day {
  opacity: 0.6;
  margin-bottom: 10px;
}
.program .program-item .text-info .date .start {
  margin-top: auto;
  font-weight: 600;
}
.program .program-item .text-info .title-price {
  margin-right: 5%;
  width: 70%;
  display: flex;
  flex-flow: column;
}
.program .program-item .text-info .title-price h3 {
  margin-bottom: 10px;
}
.program .program-item .text-info .title-price p {
  opacity: 0.6;
  margin-bottom: 10px;
}
.program .program-item .text-info .title-price p:nth-of-type(2n) {
  margin-top: 0px;
}
.program .program-item .text-info .title-price .price {
  margin-top: auto;
  font-weight: 600;
}
.program .program-item .tickets {
  flex-grow: 1;
  flex-shrink: 0;
  width: 180px;
  max-width: 180px;
  text-align: center;
  display: flex;
  flex-flow: column;
}
.program .program-item .tickets .button {
  width: 100%;
}
.program .program-item .tickets .tickets-left {
  font-size: 12px;
  opacity: 0.4;
  margin-top: 8px;
}
.program .program-item .tickets .program-link {
  margin-top: auto;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.3;
}
.program .program-item .tickets .program-link:hover {
  text-decoration: underline;
}
.program-filter {
  top: 0;
  z-index: 1;
  position: sticky;
  padding-top: 65px;
  padding-bottom: 10px;
  margin-top: 125px;
  background-color: var(--white);
}
.program-filter.navigation a {
  margin-bottom: 0;
}
.program-filter .slick-slider .slick-slide:not(:last-child) {
  margin-right: var(--spacer-sm);
}
.program-filter .slick-prev {
  top: 35%;
  left: -50px;
}
.program-filter .slick-prev:before {
  content: url("/t/assets/arrowPrev.svg");
}
.program-filter .slick-next {
  top: 35%;
  right: -50px;
}
.program-filter .slick-next:before {
  content: url("/t/assets/arrowNext.svg");
}
.program-header.page-header {
  margin-top: calc(var(--spacer-sm) - 10px);
}
.navigation a {
  display: inline-block;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 4px;
  text-transform: uppercase;
  opacity: 0.3;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s, color 0.3s;
}
.navigation a.current,
.navigation a:hover {
  color: var(--red);
  opacity: 1;
}
.navigation a:not(:last-child) {
  margin-right: var(--spacer-sm);
}
.page-header + .navigation {
  margin-top: -20px;
}
.navigation + .news,
.navigation + .section-header {
  margin-top: var(--spacer-md);
}
.program-detail {
  margin-bottom: var(--spacer-xl);
}
.program-detail .program-meta {
  display: flex;
  justify-content: space-between;
  margin: var(--spacer-sm) 0;
  align-items: center;
}
.program-detail .program-meta .meta-text {
  width: 65%;
}
.program-detail .program-meta .tickets {
  width: 32%;
}
.program-detail .program-meta .meta-text {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-right: 30px;
}
.program-detail .program-meta .meta-subtle {
  margin-top: 8px;
  opacity: 0.3;
}
.program-detail .program-meta .meta-subtle span {
  display: inline-block;
  padding: 0 2px;
}
.program-detail .entry-content {
  opacity: 0.9;
}
.responsive {
  display: none;
}
.gallery {
  margin-top: var(--spacer-md);
  margin-bottom: -2%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.gallery .gallery-item {
  text-align: center;
  text-decoration: none;
  width: 32%;
  margin-bottom: 2%;
  transition: opacity 0.3s;
}
.gallery .gallery-item img {
  width: 100%;
}
.gallery .gallery-item:hover {
  opacity: 0.85;
}
.gallery .gallery-item .caption {
  margin-top: 5px;
  color: var(--black);
}
.gallery::after {
  content: '';
  flex: 0 0 32%;
}
.two-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  letter-spacing: 0.05em;
  margin: var(--spacer-md) 0;
}
.two-columns h3 {
  margin-bottom: 32px;
}
.two-columns p + h3 {
  margin-top: 50px;
}
.two-columns .column {
  width: 47%;
}
.two-columns.one-third > .column:nth-child(1n) {
  width: 65%;
}
.two-columns.one-third > .column:nth-child(2n) {
  width: 32%;
}
.two-columns .two-columns {
  margin: 0;
}
.two-columns.vertical-center {
  align-items: center;
}
.two-columns.small-text h3 {
  margin-bottom: 24px;
}
.three-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: var(--spacer-md) 0;
}
.three-columns .column {
  width: 30%;
}
.three-columns h3 {
  margin-bottom: 32px;
}
.column.margin-top {
  margin-top: 32px;
}
.groups {
  margin: calc(var(--spacer-md) - 10px) 0;
}
.groups .groups-item {
  display: flex;
  text-decoration: none;
  color: currentColor;
}
.groups .groups-item:hover h3 {
  text-decoration: underline;
}
.groups .groups-item:not(:last-child) {
  margin-bottom: var(--spacer-md);
}
.groups .groups-item .group-image {
  max-width: 240px;
  width: 100%;
  margin-right: var(--spacer-sm);
}
.groups .groups-item .group-image img {
  -o-object-fit: cover;
     object-fit: cover;
}
.groups .groups-item .group-text {
  max-width: 420px;
}
.groups .groups-item .group-text h3 {
  text-transform: none;
  margin-bottom: 10px;
}
.groups .groups-item .group-text p {
  opacity: 0.5;
}
.repertoar {
  margin: var(--spacer-sm) 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.repertoar .repertoar-item {
  width: 32%;
  text-decoration: none;
  color: currentColor;
}
.repertoar .repertoar-item:hover {
  text-decoration: underline;
}
.repertoar .repertoar-item img {
  width: 100%;
}
.repertoar .repertoar-item h3 {
  text-transform: none;
  margin-top: 20px;
  margin-bottom: 0;
  margin-bottom: var(--spacer-sm);
}
.repertoar::after {
  content: '';
  flex: 0 0 32%;
}
.repertoar:last-child {
  margin-bottom: calc(-1 * var(--spacer-sm)) !important;
}
.info-table {
  letter-spacing: 0.05em;
  opacity: 0.7;
  width: 100%;
  border-collapse: collapse;
}
.info-table td {
  padding-top: 15px;
}
.info-table td:first-child {
  width: 29%;
}
.info-table td:not(:first-child) {
  font-weight: 600;
  padding-left: var(--spacer-sm);
}
.documents {
  margin: var(--spacer-md) 0;
}
.documents a {
  display: block;
  font-size: 18px;
  line-height: 34px;
  color: currentColor;
  opacity: 0.9;
}
@media (min-height: 768px) and (max-width: 1112px) {
  header {
    height: 690px;
  }
}
@media (max-width: 1112px) {
  :root {
    --spacer-xl: 72px;
  }
  .body-wrapper {
    padding-left: 36px;
    padding-right: 36px;
  }
  header {
    padding-top: 50px;
    margin-right: 80px;
  }
  header .logo {
    margin-bottom: 37px;
  }
  .featured-image {
    margin-left: -36px;
    margin-right: -36px;
    width: calc(100% + 72px);
    max-width: initial;
  }
  .page-header.no-featured-image {
    margin-top: 160px;
  }
  footer {
    margin-top: 88px;
  }
  footer .wrapper {
    padding-left: 240px;
  }
  .program-filter {
    padding-top: 35px;
  }
  .program .program-item .image {
    margin-right: 3.5%;
  }
  .program .program-item .text-info .date {
    margin-right: 6%;
  }
}
#menu-opener {
  display: none;
  margin-top: 4px;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 100;
}
#menu-opener:hover {
  cursor: pointer;
}
#menu-opener::before,
#menu-opener::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  width: 30px;
  height: 3px;
  background-color: var(--black);
  transition: transform 0.3s, background-color 0.3s;
}
#menu-opener::before {
  margin-top: -7px;
}
#menu-opener::after {
  margin-top: 3px;
}
body.menu-opened #menu-opener::before,
body.menu-opened #menu-opener::after {
  background-color: var(--white);
}
body.menu-opened #menu-opener::before {
  transform: translate(0px, 5px) rotate(-45deg);
}
body.menu-opened #menu-opener::after {
  transform: translate(0px, -5px) rotate(45deg);
}
@media (max-width: 1023px) {
  .body-wrapper,
  #menu-opener {
    display: block;
  }
  body.menu-opened {
    overflow: hidden;
  }
  body.menu-opened header::before {
    opacity: 0.6;
    pointer-events: auto;
  }
  body.menu-opened header nav {
    transform: translateX(0px);
  }
  body.scrolled header {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  body.scrolled header::after {
    opacity: 0.1;
  }
  body.scrolled header nav {
    padding-top: 80px;
  }
  body.scrolled header .logo {
    width: 120px;
  }
  .content {
    padding-top: 140px;
  }
  header {
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    width: 100%;
    padding: 40px 36px;
    background-color: var(--white);
    max-width: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    transition: padding 0.3s;
  }
  header::before {
    content: '';
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--black);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
  }
  header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background-color: var(--black);
    opacity: 0;
    transition: opacity 0.3s;
  }
  header .logo {
    margin-bottom: 0;
    width: 180px;
    transition: width 0.5s;
  }
  header .logo img {
    transform: translateZ(0);
  }
  header nav {
    position: fixed;
    z-index: 1;
    background-color: var(--red);
    top: 0;
    bottom: 0;
    right: 0;
    overflow-y: auto;
    padding: 120px 35px 72px;
    max-width: 320px;
    width: 100%;
    transition: transform 0.5s;
    transform: translateX(100%);
  }
  header .main-menu {
    font-size: 24px;
  }
  header .main-menu a {
    color: var(--white);
    margin-bottom: 30px;
  }
  header .main-menu a:hover {
    text-decoration: underline;
  }
  header .main-menu a::after {
    display: none;
  }
  header .main-menu .sub-menu {
    margin: var(--spacer-md) 0 var(--spacer-sm);
  }
  header .languages-socials {
    display: flex;
    justify-content: space-between;
  }
  header .languages {
    margin: 0;
  }
  header .languages a {
    color: var(--white);
  }
  header .socials a {
    opacity: 1;
    padding-top: 4px;
  }
  header .socials a:hover {
    opacity: 0.6;
  }
  header .socials svg rect {
    stroke: var(--white);
  }
  header .socials svg path {
    fill: var(--white);
  }
  header .socials .ecomail img {
    filter: invert(1);
  }
  footer .wrapper {
    padding-left: 0;
  }
  .page-header.no-featured-image {
    margin-top: var(--spacer-sm);
  }
  .program-filter {
    margin-top: 0;
    top: 50px;
  }
}
@media (max-width: 1023px) {
  .slider-images {
    margin-left: -36px;
    margin-right: -36px;
  }
  .slider-images .slick-dots {
    padding-left: 36px;
  }
  .slider-text .text-wrapper {
    display: block;
  }
  .slider-text .text-wrapper h1 {
    width: auto;
  }
  .slider-text .text-wrapper .info-more {
    margin-top: 24px;
    padding-left: 0;
    width: auto;
  }
}
@media (max-width: 767px) {
  :root {
    --spacer-xl: 56px;
    --spacer-md: 48px;
    --spacer-sm: 24px;
  }
  .body-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
  header {
    padding: 40px 20px;
  }
  header .main-menu .sub-menu {
    margin-bottom: var(--spacer-md);
  }
  body {
    font-size: 15px;
    line-height: 24px;
  }
  h1 {
    font-size: 24px;
    line-height: 36px;
  }
  h2 {
    font-size: 16px;
  }
  h3 {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .subtitle {
    font-size: 13px;
  }
  .button {
    font-size: 13px;
    line-height: 20px;
    padding: 10px 20px;
  }
  a.more,
  a.go-back {
    font-size: 13px;
  }
  .section-header a {
    font-size: 13px;
  }
  .featured-image {
    margin-bottom: var(--spacer-md);
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }
  .page-header h1 {
    width: 100%;
    margin-bottom: calc(var(--spacer-sm) + 10px);
  }
  .page-header .header-meta a {
    margin-top: 0;
  }
  .page-header + .navigation {
    margin-top: -10px;
  }
  .navigation a {
    font-size: 13px;
  }
  .info-table td:first-child {
    width: 48%;
  }
  .slider-images {
    margin-left: -20px;
    margin-right: -20px;
  }
  .slider-images .slick-dots {
    padding-left: 20px;
  }
  .slider-text .text-wrapper .info-more {
    margin-top: 16px;
  }
  .slider-text .text-wrapper p {
    margin-bottom: 12px;
  }
  .news-home article {
    width: 100%;
    margin-right: 0;
  }
  .news-home article:not(:first-child) {
    margin-top: 32px !important;
  }
  .news-home article h3 {
    margin-bottom: 10px;
  }
  .news-home article p {
    margin-bottom: 12px;
  }
  .news article p {
    margin-right: 40px;
  }
  .program .program-item {
    flex-flow: column;
    position: relative;
  }
  .program .program-item:not(:last-child) {
    margin-bottom: 42px;
  }
  .program .program-item .image {
    display: none;
  }
  .program .program-item .text-info {
    flex-flow: column;
    max-width: initial;
  }
  .program .program-item .text-info .date {
    flex-flow: row;
    position: relative;
    margin-bottom: 5px;
    margin-right: 0;
    width: auto;
  }
  .program .program-item .text-info .date time {
    margin-right: 24px;
    margin-bottom: 0;
    font-weight: 600;
  }
  .program .program-item .text-info .date .start {
    margin-top: 0;
    margin-right: 70px;
  }
  .program .program-item .text-info .date .day {
    margin-bottom: 0;
    position: absolute;
    right: 0;
  }
  .program .program-item .text-info .title-price {
    margin-right: 0;
    width: auto;
  }
  .program .program-item .text-info .title-price h3 {
    font-weight: 600;
    margin-bottom: 2px;
  }
  .program .program-item .text-info .title-price p {
    font-size: 13px;
    margin-bottom: 0;
  }
  .program .program-item .text-info .title-price .price {
    position: absolute;
    left: 0;
    bottom: 18px;
    font-weight: 400;
  }
  .program .program-item .tickets {
    flex-flow: column;
    max-width: initial;
    width: auto;
    align-items: flex-end;
    margin-top: 24px;
  }
  .program .program-item .tickets .tickets-left {
    order: 1;
    flex-grow: 5;
    text-align: left;
    margin-top: 0;
    line-height: 16px;
  }
  .program .program-item .tickets .button {
    order: 2;
    flex-grow: 1;
    width: auto;
    min-width: 120px;
  }
  .program .program-item .tickets .program-link {
    display: none;
  }
  .program-filter {
    padding-top: 24px;
    top: 60px;
  }
  .program-filter + .page-header {
    margin-top: var(--spacer-sm);
  }
  footer {
    margin-top: 72px;
    padding: 50px 20px 30px;
  }
  footer .columns {
    flex-wrap: wrap;
  }
  footer .columns .column {
    width: 100%;
    margin-bottom: var(--spacer-md);
  }
  footer .columns .column:first-child {
    width: 100%;
    order: 3;
    margin-bottom: 0;
  }
  footer .subtitle {
    margin-top: 24px;
  }
  .program-detail .page-header h1 {
    margin-bottom: var(--spacer-sm);
  }
  .program-detail .program-meta {
    flex-wrap: wrap;
    margin: var(--spacer-sm) 0 var(--spacer-md);
  }
  .program-detail .program-meta .meta-text {
    width: 100%;
    font-size: 13px;
  }
  .program-detail .program-meta .tickets {
    display: none;
  }
  .responsive {
    display: block;
  }
  .repertoar .repertoar-item {
    width: calc(50% - 10px);
    margin-bottom: 10px;
  }
  .gallery .gallery-item {
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }
  .column.margin-top {
    margin-top: 0;
  }
  .two-columns h3 {
    margin-bottom: 24px;
  }
  .two-columns p + h3 {
    margin-top: 40px;
  }
  .two-columns .column {
    width: 100%;
  }
  .two-columns .column:not(:last-child) {
    margin-bottom: var(--spacer-md);
  }
  .two-columns.one-third > .column:nth-child(1n) {
    width: 100%;
  }
  .two-columns.one-third > .column:nth-child(2n) {
    width: 100%;
  }
  .three-columns h3 {
    margin-bottom: 24px;
  }
  .three-columns .column {
    width: 100%;
  }
  .three-columns .column:not(:last-child) {
    margin-bottom: var(--spacer-md);
  }
  .documents a {
    font-size: 15px;
    line-height: 24px;
  }
  .documents a:not(:last-child) {
    margin-bottom: 24px;
  }
}
@media (max-width: 480px) {
  .groups .groups-item {
    display: block;
  }
  .groups .groups-item .group-image {
    max-width: initial;
    margin-bottom: 16px;
  }
  .groups .groups-item .group-image img {
    width: 100%;
  }
}
@media (max-width: 414px) {
  .repertoar .repertoar-item,
  .gallery .gallery-item {
    width: 100%;
  }
  .repertoar .repertoar-item:last-child,
  .gallery .gallery-item:last-child {
    margin-bottom: 0;
  }
}
