.header {
  padding: 1rem 0;
  top: 0;
  left: 0;
  right: 0;
  position: fixed;
  z-index: 3;
}
.header > .center-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100%;
}
.header > .center-box .header-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  z-index: 3;
}
.header > .center-box .header-left .nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  height: 2.5rem;
  cursor: pointer;
  transition: gap 0.1s ease;
  will-change: gap;
}
.header > .center-box .header-left .nav-btn .nav-line {
  height: 2px;
  width: 2.25rem;
  background-color: #ffffff;
  transition: transform 0.3s;
}
.header > .center-box .header-left .nav-btn .nav-line:first-of-type {
  transform-origin: 33% 50%;
}
.header > .center-box .header-left .nav-btn .nav-line:last-of-type {
  transform-origin: 0 50%;
}
.header > .center-box .header-left .nav-btn.opened {
  gap: 6px;
}
.header > .center-box .header-left .nav-btn.opened .nav-line:first-of-type {
  transform: rotate(45deg);
}
.header > .center-box .header-left .nav-btn.opened .nav-line:last-of-type {
  transform: rotate(-10deg);
}
.header > .center-box .header-left nav {
  position: relative;
}
.header > .center-box .header-left nav ul {
  display: none;
  opacity: 0;
  gap: 0.75em;
  list-style-type: none;
  transition: opacity 0.4s;
}
.header > .center-box .header-left nav ul.shown {
  display: flex;
  opacity: 1;
}
.header > .center-box .header-left nav ul li a {
  border-radius: 0.25rem;
  display: flex;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.12rem 0.25rem;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  transition: background-color 0.3s, color 0.3s;
  will-change: background-color, color;
}
@media (max-width: 768px) {
  .header > .center-box .header-left nav ul li a {
    font-size: 0.75rem;
  }
}
.header > .center-box .header-left nav ul li a a {
  transition: color 0.3s;
  will-change: color;
}
.header > .center-box .header-left nav ul li a:active {
  background-color: #ffffff;
  color: #000000;
}
.header > .center-box .header-left nav ul li a:active a {
  color: #000000;
}
.header > .center-box .header-left nav ul li a.current_page_item {
  background-color: #ffffff;
  color: #000000;
}
.header > .center-box .header-left nav ul li a.current_page_item a {
  color: #000000;
}
@media (min-width: 768px) {
  .header > .center-box .header-left nav ul li a:hover {
    background-color: #ffffff;
    color: #000000;
  }
  .header > .center-box .header-left nav ul li a:hover a {
    color: #000000;
  }
}
.header > .center-box .header-left nav ul li.disabled {
  display: none;
  cursor: none;
}
.header > .center-box .header-left nav ul li.disabled a:hover {
  background-color: transparent !important;
  color: #ffffff !important;
}
.header > .center-box .header-left nav ul li.current_page_item a {
  background-color: #ffffff;
  color: #000000;
}
.header > .center-box .header-left nav .cursor-tooltip {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(25rem, 3rem);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.header > .center-box .header-left nav .cursor-tooltip-content {
  background: #000000;
  border-radius: 0.25rem;
  padding: 0.12rem 0.25rem;
  transform: translate(-50%, -50%);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 0.975rem */
  letter-spacing: 0.015rem;
}
@media (max-width: 768px) {
  .header > .center-box .header-left nav .cursor-tooltip-content {
    font-size: 0.625rem;
    letter-spacing: 0.0125rem;
  }
}
.header > .center-box .logo {
  z-index: 3;
}
.header > .center-box .logo img {
  height: 2.25rem;
}
.header .about {
  transform: translateX(-100%);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: backdrop-filter 0.5s ease-out;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  scrollbar-color: rgba(255, 255, 255, 0.4) #1f1f1f;
}
.header .about::-webkit-scrollbar {
  background: #1f1f1f;
  width: 0.5rem;
}
.header .about::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2em;
}
.header .about .pogany-img-container img {
  display: block;
  padding-bottom: 1rem;
  width: 100%;
  height: auto;
}

.header.about-opened .center-box .logo {
  z-index: 1;
}
.header.about-opened .about {
  transform: translateX(0);
  padding-top: 3.5rem;
  overflow-y: auto;
  z-index: 2;
}
.header.about-opened .about .center-box {
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100svh);
}
.header.about-opened .about .info-title-container h2 {
  padding: 4.5rem 0;
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 768px) {
  .header.about-opened .about .info-title-container h2 {
    font-size: 1.5rem;
  }
}
.header.about-opened .about .info-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.header.about-opened .about .info-content .info {
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 768px) {
  .header.about-opened .about .info-content .info {
    font-size: 1.5rem;
  }
}
.header.about-opened .about .info-content .info-table {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.header.about-opened .about .info-content .info-table .row {
  display: grid;
  grid-template-columns: 3fr 5fr;
  gap: 2.5rem 1.5rem;
}
.header.about-opened .about .info-content .info-table .row h3 {
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}
@media (max-width: 768px) {
  .header.about-opened .about .info-content .info-table .row h3 {
    font-size: 0.75rem;
  }
}
.header.about-opened .about .info-content .info-table .row ul {
  list-style-type: none;
  transition: opacity 0.4s;
}
.header.about-opened .about .info-content .info-table .row ul li {
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}
@media (max-width: 768px) {
  .header.about-opened .about .info-content .info-table .row ul li {
    font-size: 0.75rem;
  }
}
.header.about-opened .about .info-content .info-table .row ul li .manager {
  padding-bottom: 0.12rem;
  padding-left: 0.13rem;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 768px) {
  .header.about-opened .about .info-content .info-table .row ul li .manager {
    font-size: 0.75rem;
  }
}
.header.about-opened .about .info-content .info-table .row ul li a {
  text-decoration: none;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}
@media (max-width: 768px) {
  .header.about-opened .about .info-content .info-table .row ul li a {
    font-size: 0.75rem;
  }
}
.header.about-opened .about .info-content .info-table .row ul.recognitions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.header.about-opened .about .info-content .info-table .row ul.recognitions li span {
  display: block;
}
.header.about-opened .about .info-content .info-table .row ul.publisher li {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.header.about-opened .about .info-content .info-table .row ul.publisher li img {
  height: 1rem;
  width: 1rem;
}
.header.about-opened .about .info-content .about-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header.about-opened .about .info-content .about-title-row h2 {
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 768px) {
  .header.about-opened .about .info-content .about-title-row h2 {
    font-size: 1.5rem;
  }
}
.header.about-opened .about .info-content .pogany-img-container h3 {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 768px) {
  .header.about-opened .about .info-content .pogany-img-container h3 {
    font-size: 0.75rem;
  }
}
.header.about-opened .about .info-content .bio p {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
}
@media (max-width: 768px) {
  .header.about-opened .about .info-content .bio p {
    font-size: 0.75rem;
  }
}
.header.about-opened .about .info-content .copyright-year {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 768px) {
  .header.about-opened .about .info-content .copyright-year {
    font-size: 0.75rem;
  }
}
.header.about-opened .about .info-content .events-btn-container {
  padding: 0 0 2.5rem;
  display: flex;
  align-items: flex-start;
}
.header.about-opened .about .info-content .events-btn-container a {
  display: block;
  padding: 1.25rem 1.5rem;
  border-radius: 1.25rem;
  border: 2px solid #ffffff;
  text-decoration: none;
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 768px) {
  .header.about-opened .about .info-content .events-btn-container a {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .header.about-opened .about .info-content .events-btn-container a {
    border-radius: 1rem;
  }
}
.header.about-opened .about .about-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 3.75rem 0 1rem;
}
.header.about-opened .about .about-footer .social-media-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  list-style-type: none;
}
.header.about-opened .about .about-footer .social-media-links li a {
  text-decoration: none;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}
@media (max-width: 768px) {
  .header.about-opened .about .about-footer .social-media-links li a {
    font-size: 0.75rem;
  }
}
.header.about-opened .about .about-footer .social-media-links li a .underline {
  height: 1px;
  background-color: #ffffff;
  width: 100%;
}
.header.about-opened .about .about-footer button {
  cursor: pointer;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}
@media (max-width: 768px) {
  .header.about-opened .about .about-footer button {
    font-size: 0.75rem;
  }
}

@media only screen and (min-width: 768px) {
  .header {
    padding: 1.25rem 0;
  }
  .header .center-box .header-left nav ul {
    display: flex;
    opacity: 1;
  }
  .header .center-box .header-left nav ul li.disabled {
    display: block !important;
    opacity: 0.5;
  }
  .header .center-box .logo {
    z-index: 3 !important;
  }
  .header .center-box .logo img {
    height: 3rem;
  }
}
@media only screen and (min-width: 1024px) {
  .header .center-box .header-left {
    gap: 2.5rem;
  }
  .header .center-box .header-left .nav-btn {
    height: 3rem;
  }
  .header .center-box .header-left .nav-btn .nav-line {
    width: 3rem;
  }
  .header .center-box .header-left .nav-btn:hover {
    gap: 6px;
  }
  .header.about-opened .center-box .header-left nav ul {
    display: flex;
  }
  .header.about-opened .center-box .header-left nav ul li.disabled {
    display: block;
  }
  .header.about-opened .center-box .logo {
    display: block;
    z-index: 3;
  }
  .header.about-opened .about {
    padding-top: 0rem;
  }
  .header.about-opened .about .center-box {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 5rem 1rem;
  }
  .header.about-opened .about .center-box .info-title-container h2 {
    padding: 0;
    display: flex;
    position: sticky;
    top: 9.25rem;
  }
  .header.about-opened .about .center-box .info-content {
    gap: 5rem 1rem;
    padding-top: 18.12rem;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
  }
  .header.about-opened .about .center-box .info-content .info {
    grid-column: 1/7;
  }
  .header.about-opened .about .center-box .info-content .info-table {
    grid-column: 1/8;
    padding-top: 5rem;
  }
  .header.about-opened .about .center-box .info-content .info-table .row {
    grid-template-columns: 1fr 6fr;
    gap: 2.5rem 1.75rem;
  }
  .header.about-opened .about .center-box .info-content .info-table .row ul li .manager {
    padding-left: 0.25rem;
  }
  .header.about-opened .about .center-box .info-content .info-table .row ul.recognitions {
    gap: 1.25rem;
  }
  .header.about-opened .about .center-box .info-content .info-table .row ul.publisher li {
    gap: 1rem;
  }
  .header.about-opened .about .center-box .info-content .info-table .row ul.publisher li img {
    height: 1.375rem;
    width: 1.375rem;
  }
  .header.about-opened .about .center-box .info-content .about-title-row {
    grid-column: 1/8;
  }
  .header.about-opened .about .center-box .info-content .about-title-row h2 {
    padding: 0;
  }
  .header.about-opened .about .center-box .info-content .pogany-img-container {
    grid-column: 1/8;
  }
  .header.about-opened .about .center-box .info-content .bio {
    grid-column: 1/7;
  }
  .header.about-opened .about .center-box .info-content .copyright-year {
    grid-column: 1/8;
  }
  .header.about-opened .about .center-box .info-content .events-btn-container {
    grid-column: 1/8;
    padding: 0 0 5rem;
  }
  .header.about-opened .about .center-box .info-content .events-btn-container a {
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease, transform 0.3s ease;
    will-change: color, transform;
  }
  .header.about-opened .about .center-box .info-content .events-btn-container a:after {
    content: "";
    width: 50%;
    height: auto;
    aspect-ratio: 1/1;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.3s ease;
    transform-origin: 90% 100%;
    border-radius: 50%;
    z-index: 0;
    background: #ffffff;
    will-change: transform;
    z-index: -1;
  }
  .header.about-opened .about .center-box .info-content .events-btn-container a:hover {
    color: #000000;
    transform: scale(0.98);
  }
  .header.about-opened .about .center-box .info-content .events-btn-container a:hover:after {
    transform: scale(2.5);
  }
  .header.about-opened .about .center-box .about-footer {
    grid-column: 1/3;
    padding: 0 0 1.25rem;
  }
  .header.about-opened .about .center-box .about-footer .social-media-links {
    gap: 1rem;
  }
  .header.about-opened .about .center-box .about-footer .social-media-links li a .underline {
    transition: width 0.3s ease;
    will-change: width;
  }
  .header.about-opened .about .center-box .about-footer .social-media-links li a:hover .underline {
    width: 0%;
  }
  .header.about-opened .about .center-box .about-footer button .underline {
    background-color: #ffffff;
    height: 1px;
    width: 0;
    transition: width 0.3s ease;
    will-change: width;
  }
  .header.about-opened .about .center-box .about-footer button:hover .underline {
    width: 100%;
  }
}
footer {
  justify-self: flex-end;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}
footer p {
  text-align: center;
  padding: 0 0.75rem 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 0.975rem */
  letter-spacing: 0.015rem;
}
@media (max-width: 768px) {
  footer p {
    font-size: 0.625rem;
    letter-spacing: 0.0125rem;
  }
}
footer p span {
  color: rgba(255, 255, 255, 0.4);
}
footer p a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.4);
}

@media only screen and (min-width: 1024px) {
  footer p {
    padding: 0 1.25rem 1.25rem;
  }
  footer p a {
    transition: color 0.3s;
    will-change: color;
  }
  footer p a:hover {
    color: #ffffff;
  }
}
.background-image {
  position: fixed;
  background-position: top;
  background-size: auto 80%;
  background-repeat: repeat-x;
  background-color: #000000;
  height: 100vh;
  opacity: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.main-page main {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.main-page main .center-box {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  padding-bottom: 3rem;
}
.main-page main .center-box .main-page-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
  opacity: 0;
}
.main-page main .center-box .main-page-content .next-event {
  grid-column: 1/2;
  background-color: #1f1f1f;
  padding: 0.75rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.88rem;
}
.main-page main .center-box .main-page-content .next-event .no-event-bg {
  display: none;
}
.main-page main .center-box .main-page-content .next-event.no-event {
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.main-page main .center-box .main-page-content .next-event.no-event .no-event-bg {
  display: block;
  position: absolute;
  object-fit: cover;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.main-page main .center-box .main-page-content .next-event.no-event .event-info,
.main-page main .center-box .main-page-content .next-event.no-event .date,
.main-page main .center-box .main-page-content .next-event.no-event .ticket-link {
  display: none;
}
.main-page main .center-box .main-page-content .next-event .event-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.main-page main .center-box .main-page-content .next-event .event-info .date {
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}
@media (max-width: 768px) {
  .main-page main .center-box .main-page-content .next-event .event-info .date {
    font-size: 0.75rem;
  }
}
.main-page main .center-box .main-page-content .next-event .event-info .location {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 768px) {
  .main-page main .center-box .main-page-content .next-event .event-info .location {
    font-size: 0.75rem;
  }
}
.main-page main .center-box .main-page-content .next-event .ticket-link {
  border-radius: 0.25rem;
  padding: 0.12rem 0.25rem;
  text-decoration: none;
  display: block;
  border: 1px solid #ffffff;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}
@media (max-width: 768px) {
  .main-page main .center-box .main-page-content .next-event .ticket-link {
    font-size: 0.75rem;
  }
}
.main-page main .center-box .main-page-content .next-event .event {
  text-decoration: none;
  z-index: 1;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 768px) {
  .main-page main .center-box .main-page-content .next-event .event {
    font-size: 0.75rem;
  }
}
.main-page main .center-box .main-page-content iframe {
  grid-column: 1/3;
}

@media only screen and (min-width: 768px) {
  .main-page main .center-box .main-page-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .main-page main .center-box .main-page-content .next-event {
    grid-column: 1/2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .main-page main .center-box .main-page-content iframe {
    grid-column: 2/4;
    align-self: end;
  }
}
@media only screen and (min-width: 1024px) {
  .background-image {
    background-size: auto 100%;
  }
  .main-page main .center-box {
    padding-bottom: 5.38rem;
  }
  .main-page main .center-box .main-page-content {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
  }
  .main-page main .center-box .main-page-content .next-event {
    gap: 1rem;
  }
  .main-page main .center-box .main-page-content .next-event .ticket-link {
    padding: 0.25rem 0.5rem;
    transition: background-color 0.3s, color 0.3s;
    will-change: background-color, color;
  }
  .main-page main .center-box .main-page-content .next-event .ticket-link a {
    transition: color 0.3s;
    will-change: color;
  }
  .main-page main .center-box .main-page-content .next-event .ticket-link:active {
    background-color: #ffffff;
    color: #000000;
  }
  .main-page main .center-box .main-page-content .next-event .ticket-link:active a {
    color: #000000;
  }
  .main-page main .center-box .main-page-content .next-event .ticket-link.current_page_item {
    background-color: #ffffff;
    color: #000000;
  }
  .main-page main .center-box .main-page-content .next-event .ticket-link.current_page_item a {
    color: #000000;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 768px) {
  .main-page main .center-box .main-page-content .next-event .ticket-link:hover {
    background-color: #ffffff;
    color: #000000;
  }
  .main-page main .center-box .main-page-content .next-event .ticket-link:hover a {
    color: #000000;
  }
}
.concerts-page .background-image {
  background-size: cover;
}
.concerts-page main .center-box ul {
  list-style-type: none;
}
.concerts-page main .center-box ul .concert {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.concerts-page main .center-box ul .concert-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.concerts-page main .center-box ul .concert-info .concert-date {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 768px) {
  .concerts-page main .center-box ul .concert-info .concert-date {
    font-size: 0.75rem;
  }
}
.concerts-page main .center-box ul .concert-info h2 {
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 768px) {
  .concerts-page main .center-box ul .concert-info h2 {
    font-size: 1.5rem;
  }
}
.concerts-page main .center-box ul .concert .ticket-link {
  display: flex;
  text-decoration: none;
  border: 1px solid #ffffff;
  border-radius: 0.25rem;
  padding: 0.12rem 0.25rem;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 768px) {
  .concerts-page main .center-box ul .concert .ticket-link {
    font-size: 0.75rem;
  }
}

@media only screen and (min-width: 1024px) {
  .concerts-page main .center-box {
    display: grid;
    grid-template-columns: 5fr 7fr;
  }
  .concerts-page main .center-box ul {
    grid-column: 2/3;
  }
  .concerts-page main .center-box ul .concert {
    gap: 1.25rem;
    padding: 2.5rem 0;
  }
  .concerts-page main .center-box ul .concert-info {
    gap: 0.5rem;
  }
  .concerts-page main .center-box ul .concert .ticket-link {
    padding: 0.25rem 0.5rem;
    transition: background-color 0.3s, color 0.3s;
    will-change: background-color, color;
  }
  .concerts-page main .center-box ul .concert .ticket-link a {
    transition: color 0.3s;
    will-change: color;
  }
  .concerts-page main .center-box ul .concert .ticket-link:active {
    background-color: #ffffff;
    color: #000000;
  }
  .concerts-page main .center-box ul .concert .ticket-link:active a {
    color: #000000;
  }
  .concerts-page main .center-box ul .concert .ticket-link.current_page_item {
    background-color: #ffffff;
    color: #000000;
  }
  .concerts-page main .center-box ul .concert .ticket-link.current_page_item a {
    color: #000000;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 768px) {
  .concerts-page main .center-box ul .concert .ticket-link:hover {
    background-color: #ffffff;
    color: #000000;
  }
  .concerts-page main .center-box ul .concert .ticket-link:hover a {
    color: #000000;
  }
}
.news-page .background-image {
  background-size: cover;
}
.news-page main .center-box ul {
  list-style-type: none;
}
.news-page main .center-box ul .news {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.news-page main .center-box ul .news-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.news-page main .center-box ul .news-info .news-date {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 768px) {
  .news-page main .center-box ul .news-info .news-date {
    font-size: 0.75rem;
  }
}
.news-page main .center-box ul .news-info h2 {
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 768px) {
  .news-page main .center-box ul .news-info h2 {
    font-size: 1.5rem;
  }
}
.news-page main .center-box ul .news p {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
}
@media (max-width: 768px) {
  .news-page main .center-box ul .news p {
    font-size: 0.75rem;
  }
}

@media only screen and (min-width: 1024px) {
  .news-page main .center-box {
    grid-template-columns: 5fr 7fr;
    display: grid;
  }
  .news-page main .center-box ul {
    grid-column: 2/3;
  }
  .news-page main .center-box ul .news {
    padding: 2.5rem 0;
    gap: 1.25rem 1rem;
  }
  .news-page main .center-box ul .news-info {
    grid-column: 1/6;
    gap: 0.5rem;
  }
  .news-page main .center-box ul .news p {
    grid-column: 1/5;
  }
}
.fancybox__dialog {
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}
.fancybox__dialog .fancybox__backdrop {
  background-color: transparent;
}

.media-page .background-image {
  background-size: cover;
}
.media-page main .center-box ul {
  list-style-type: none;
  grid-column: 2/3;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.media-page main .center-box ul .media {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.media-page main .center-box ul .media-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.media-page main .center-box ul .media-info .media-date {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 768px) {
  .media-page main .center-box ul .media-info .media-date {
    font-size: 0.75rem;
  }
}
.media-page main .center-box ul .media-info h2 {
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 768px) {
  .media-page main .center-box ul .media-info h2 {
    font-size: 1.5rem;
  }
}
.media-page main .center-box ul .media .mediaSwiper {
  max-width: 100%;
  margin: 0;
}
.media-page main .center-box ul .media .mediaSwiper .swiper-wrapper .swiper-slide {
  width: auto;
}
.media-page main .center-box ul .media .mediaSwiper .swiper-wrapper .swiper-slide:focus-visible {
  outline: 1px solid white;
}
.media-page main .center-box ul .media .mediaSwiper .swiper-wrapper .swiper-slide img {
  height: 6rem;
  width: auto;
}

@media only screen and (min-width: 1024px) {
  .media-page main .center-box {
    display: grid;
    grid-template-columns: 5fr 7fr;
  }
  .media-page main .center-box ul {
    grid-column: 2/3;
  }
  .media-page main .center-box ul .media {
    gap: 1.25rem;
    padding: 2.5rem 0;
  }
  .media-page main .center-box ul .media-info {
    gap: 0.5rem;
  }
  .media-page main .center-box ul .media .mediaSwiper .swiper-wrapper .swiper-slide img {
    height: 10rem;
  }
}
.press-materials_content .center-box .press-materials_login-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.press-materials_content .center-box .press-materials_login-form .press-materials_title-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.press-materials_content .center-box .press-materials_login-form .press-materials_title-row span {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 768px) {
  .press-materials_content .center-box .press-materials_login-form .press-materials_title-row span {
    font-size: 0.75rem;
  }
}
.press-materials_content .center-box .press-materials_login-form .press-materials_title-row h1 {
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 768px) {
  .press-materials_content .center-box .press-materials_login-form .press-materials_title-row h1 {
    font-size: 1.5rem;
  }
}
.press-materials_content .center-box .press-materials_login-form form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}
.press-materials_content .center-box .press-materials_login-form form input[type=password] {
  display: block;
  width: 100%;
  background-color: #1f1f1f;
  border-radius: 0.25rem;
  padding: 0.75rem 1rem;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
}
@media (max-width: 768px) {
  .press-materials_content .center-box .press-materials_login-form form input[type=password] {
    font-size: 0.75rem;
  }
}
.press-materials_content .center-box .press-materials_login-form form input[type=submit] {
  background-color: transparent;
  border-radius: 0.25rem;
  padding: 0.25rem 0.5rem;
  align-self: flex-start;
  border: 1px solid #ffffff;
  cursor: pointer;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  transition: background-color 0.3s, color 0.3s;
  will-change: background-color, color;
}
@media (max-width: 768px) {
  .press-materials_content .center-box .press-materials_login-form form input[type=submit] {
    font-size: 0.75rem;
  }
}
.press-materials_content .center-box .press-materials_login-form form input[type=submit] a {
  transition: color 0.3s;
  will-change: color;
}
.press-materials_content .center-box .press-materials_login-form form input[type=submit]:active {
  background-color: #ffffff;
  color: #000000;
}
.press-materials_content .center-box .press-materials_login-form form input[type=submit]:active a {
  color: #000000;
}
.press-materials_content .center-box .press-materials_login-form form input[type=submit].current_page_item {
  background-color: #ffffff;
  color: #000000;
}
.press-materials_content .center-box .press-materials_login-form form input[type=submit].current_page_item a {
  color: #000000;
}
@media (min-width: 768px) {
  .press-materials_content .center-box .press-materials_login-form form input[type=submit]:hover {
    background-color: #ffffff;
    color: #000000;
  }
  .press-materials_content .center-box .press-materials_login-form form input[type=submit]:hover a {
    color: #000000;
  }
}
.press-materials_content .center-box .press-materials_content {
  padding-top: 2.5rem;
  padding-bottom: 10.56rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.press-materials_content .center-box .press-materials_content_header {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.press-materials_content .center-box .press-materials_content_header .title-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.press-materials_content .center-box .press-materials_content_header .title-row span {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 768px) {
  .press-materials_content .center-box .press-materials_content_header .title-row span {
    font-size: 0.75rem;
  }
}
.press-materials_content .center-box .press-materials_content_header .title-row h1 {
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 768px) {
  .press-materials_content .center-box .press-materials_content_header .title-row h1 {
    font-size: 1.5rem;
  }
}
.press-materials_content .center-box .press-materials_content_header p {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
}
@media (max-width: 768px) {
  .press-materials_content .center-box .press-materials_content_header p {
    font-size: 0.75rem;
  }
}
.press-materials_content .center-box .press-materials_content_elem {
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.press-materials_content .center-box .press-materials_content_elem .title-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.press-materials_content .center-box .press-materials_content_elem .title-row span {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
}
@media (max-width: 768px) {
  .press-materials_content .center-box .press-materials_content_elem .title-row span {
    font-size: 0.75rem;
  }
}
.press-materials_content .center-box .press-materials_content_elem .title-row h2 {
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 768px) {
  .press-materials_content .center-box .press-materials_content_elem .title-row h2 {
    font-size: 1.5rem;
  }
}
.press-materials_content .center-box .press-materials_content_elem .title-row a {
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  text-decoration: none;
  border: 1px solid #ffffff;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  transition: background-color 0.3s, color 0.3s;
  will-change: background-color, color;
}
@media (max-width: 768px) {
  .press-materials_content .center-box .press-materials_content_elem .title-row a {
    font-size: 0.75rem;
  }
}
.press-materials_content .center-box .press-materials_content_elem .title-row a a {
  transition: color 0.3s;
  will-change: color;
}
.press-materials_content .center-box .press-materials_content_elem .title-row a:active {
  background-color: #ffffff;
  color: #000000;
}
.press-materials_content .center-box .press-materials_content_elem .title-row a:active a {
  color: #000000;
}
.press-materials_content .center-box .press-materials_content_elem .title-row a.current_page_item {
  background-color: #ffffff;
  color: #000000;
}
.press-materials_content .center-box .press-materials_content_elem .title-row a.current_page_item a {
  color: #000000;
}
@media (min-width: 768px) {
  .press-materials_content .center-box .press-materials_content_elem .title-row a:hover {
    background-color: #ffffff;
    color: #000000;
  }
  .press-materials_content .center-box .press-materials_content_elem .title-row a:hover a {
    color: #000000;
  }
}
.press-materials_content .center-box .press-materials_content_elem .materials {
  padding-top: 1.25rem;
}
.press-materials_content .center-box .press-materials_content_elem .materials h3 {
  padding-bottom: 0.75rem;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
}
@media (max-width: 768px) {
  .press-materials_content .center-box .press-materials_content_elem .materials h3 {
    font-size: 0.75rem;
  }
}
.press-materials_content .center-box .press-materials_content_elem .materials .material-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 0.5rem;
  padding: 0.75rem 0 1.25rem;
}
.press-materials_content .center-box .press-materials_content_elem .materials .material-container .material-elem {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}
.press-materials_content .center-box .press-materials_content_elem .materials .material-container .material-elem img {
  height: 6.25rem;
  width: auto;
}
.press-materials_content .center-box .press-materials_content_elem .materials .material-container .material-elem h4 {
  background-color: #ffffff;
  color: #000000;
  padding: 0.25rem 0.5rem;
}
.press-materials_content .center-box .press-materials_content_elem .materials .material-container .material-elem .material-elem_info span {
  display: block;
  opacity: 0.4;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 768px) {
  .press-materials_content .center-box .press-materials_content_elem .materials .material-container .material-elem .material-elem_info span {
    font-size: 0.75rem;
  }
}
.press-materials_content .center-box .press-materials_content_elem .materials .material-container .material-elem a {
  border-radius: 0.25rem;
  border: 1px solid #ffffff;
  padding: 0.25rem 0.5rem;
  text-decoration: none;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  transition: background-color 0.3s, color 0.3s;
  will-change: background-color, color;
}
@media (max-width: 768px) {
  .press-materials_content .center-box .press-materials_content_elem .materials .material-container .material-elem a {
    font-size: 0.75rem;
  }
}
.press-materials_content .center-box .press-materials_content_elem .materials .material-container .material-elem a a {
  transition: color 0.3s;
  will-change: color;
}
.press-materials_content .center-box .press-materials_content_elem .materials .material-container .material-elem a:active {
  background-color: #ffffff;
  color: #000000;
}
.press-materials_content .center-box .press-materials_content_elem .materials .material-container .material-elem a:active a {
  color: #000000;
}
.press-materials_content .center-box .press-materials_content_elem .materials .material-container .material-elem a.current_page_item {
  background-color: #ffffff;
  color: #000000;
}
.press-materials_content .center-box .press-materials_content_elem .materials .material-container .material-elem a.current_page_item a {
  color: #000000;
}
@media (min-width: 768px) {
  .press-materials_content .center-box .press-materials_content_elem .materials .material-container .material-elem a:hover {
    background-color: #ffffff;
    color: #000000;
  }
  .press-materials_content .center-box .press-materials_content_elem .materials .material-container .material-elem a:hover a {
    color: #000000;
  }
}

@media only screen and (min-width: 1024px) {
  .press-materials_content .center-box {
    display: grid;
    grid-template-columns: 5fr 7fr;
  }
  .press-materials_content .center-box .press-materials_login-form {
    grid-column: 2/3;
    max-width: 38.5rem;
  }
  .press-materials_content .center-box .press-materials_content {
    grid-column: 2/3;
  }
  .press-materials_content .center-box .press-materials_content_header .title-row {
    gap: 0.5rem;
  }
  .press-materials_content .center-box .press-materials_content_elem {
    padding-top: 2.5rem;
    gap: 1.25rem;
  }
  .press-materials_content .center-box .press-materials_content_elem .materials {
    padding-top: 2.5rem;
  }
  .press-materials_content .center-box .press-materials_content_elem .materials h3 {
    padding-bottom: 1.5rem;
  }
  .press-materials_content .center-box .press-materials_content_elem .materials .material-container {
    gap: 2.5rem 0.5rem;
    padding: 0 0 2.5rem;
  }
  .press-materials_content .center-box .press-materials_content_elem .materials .material-container .material-elem {
    gap: 1.25rem;
  }
  .press-materials_content .center-box .press-materials_content_elem .materials .material-container .material-elem img {
    height: 10rem;
  }
  .press-materials_content .center-box .press-materials_content_elem .materials .material-container .material-elem h4 {
    padding: 0.5rem 1rem;
  }
}
.privacy-policy-page .background-image {
  background-size: cover;
}
.privacy-policy-page main {
  min-height: calc(100svh - 3.5rem - 5.5rem);
}
.privacy-policy-page main .center-box {
  padding: 2.5rem 1rem;
}
.privacy-policy-page main .center-box .content-wrapper span {
  display: block;
  padding-bottom: 0.25rem;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 768px) {
  .privacy-policy-page main .center-box .content-wrapper span {
    font-size: 0.75rem;
  }
}
.privacy-policy-page main .center-box .content-wrapper h1 {
  text-transform: uppercase;
  padding-bottom: 0.75rem;
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 768px) {
  .privacy-policy-page main .center-box .content-wrapper h1 {
    font-size: 1.5rem;
  }
}
.privacy-policy-page main .center-box .content-wrapper .content {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
@media (max-width: 768px) {
  .privacy-policy-page main .center-box .content-wrapper .content {
    font-size: 0.75rem;
  }
}
.privacy-policy-page main .center-box .content-wrapper .content ul {
  list-style-position: inside;
}

@media only screen and (min-width: 1024px) {
  .privacy-policy-page main {
    min-height: calc(100svh - 3.5rem - 5.5rem);
  }
  .privacy-policy-page main .center-box {
    padding: 5rem 1.25rem;
    display: grid;
    grid-template-columns: 5fr 7fr;
  }
  .privacy-policy-page main .center-box .content-wrapper {
    grid-column: 2/3;
  }
  .privacy-policy-page main .center-box .content-wrapper span {
    padding-bottom: 0.5rem;
  }
  .privacy-policy-page main .center-box .content-wrapper h1 {
    padding-bottom: 1.25rem;
  }
}
.not-found-page .background-image {
  background-size: cover;
}
.not-found-page main {
  min-height: calc(100svh - 3.5rem - 5.5rem);
}
.not-found-page main .center-box .not-found-content {
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}
.not-found-page main .center-box .not-found-content .not-found-title-container {
  display: flex;
  gap: 0.25rem;
  flex-direction: column;
}
.not-found-page main .center-box .not-found-content .not-found-title-container h1 {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 768px) {
  .not-found-page main .center-box .not-found-content .not-found-title-container h1 {
    font-size: 0.75rem;
  }
}
.not-found-page main .center-box .not-found-content .not-found-title-container h2 {
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 768px) {
  .not-found-page main .center-box .not-found-content .not-found-title-container h2 {
    font-size: 1.5rem;
  }
}
.not-found-page main .center-box .not-found-content p {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
}
@media (max-width: 768px) {
  .not-found-page main .center-box .not-found-content p {
    font-size: 0.75rem;
  }
}
.not-found-page main .center-box .not-found-content a {
  border: 1px solid #ffffff;
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  transition: background-color 0.3s, color 0.3s;
  will-change: background-color, color;
}
@media (max-width: 768px) {
  .not-found-page main .center-box .not-found-content a {
    font-size: 0.75rem;
  }
}
.not-found-page main .center-box .not-found-content a a {
  transition: color 0.3s;
  will-change: color;
}
.not-found-page main .center-box .not-found-content a:active {
  background-color: #ffffff;
  color: #000000;
}
.not-found-page main .center-box .not-found-content a:active a {
  color: #000000;
}
.not-found-page main .center-box .not-found-content a.current_page_item {
  background-color: #ffffff;
  color: #000000;
}
.not-found-page main .center-box .not-found-content a.current_page_item a {
  color: #000000;
}
@media (min-width: 768px) {
  .not-found-page main .center-box .not-found-content a:hover {
    background-color: #ffffff;
    color: #000000;
  }
  .not-found-page main .center-box .not-found-content a:hover a {
    color: #000000;
  }
}

@media only screen and (min-width: 1024px) {
  .not-found-page main {
    min-height: calc(100svh - 3.5rem - 5.5rem);
  }
  .not-found-page main .center-box {
    padding: 5rem 1.25rem;
    display: grid;
    grid-template-columns: 5fr 7fr;
  }
  .not-found-page main .center-box .not-found-content {
    grid-column: 2/3;
  }
}
#cc-main {
  /** Change font **/
  --cc-font-family: "Outfit", sans-serif;
  /** Change button primary color to black **/
  --cc-bg: #1f1f1f99;
  --cc-btn-primary-bg: #ffffff;
  --cc-secondary-color: #ffffff;
  --cc-btn-primary-hover-bg: #ffffffcc;
  --cc-btn-secondary-bg: transparent;
  --cc-btn-secondary-border-color: #ffffff;
  --cc-btn-secondary-hover-bg: #ffffff;
  --cc-btn-secondary-hover-border-color: #ffffff;
  --cc-btn-secondary-hover-color: #1f1f1f;
  --cc-separator-border-color: #ffffff66;
  --cc-cookie-category-block-bg: #ffffff1a;
  --cc-cookie-category-block-hover-bg: #ffffff33;
  --cc-cookie-category-block-hover-border: #ffffff1a;
  --cc-cookie-category-block-border: #ffffff33;
  --cc-cookie-category-expanded-block-hover-bg: #ffffff33;
  --cc-toggle-readonly-bg: #ffffff33;
  --cc-overlay-bg: rgba(0, 0, 0, 0.4);
  --cc-toggle-readonly-knob-bg: #ffffff66;
  --cc-toggle-on-bg: #ffffff99;
  --cc-toggle-off-knob-bg: #ffffff66;
  --cc-toggle-off-bg: #1f1f1f;
  --cc-toggle-on-knob-bg: #1f1f1f;
}

#cc-main .cm__body,
#cc-main .pm--box {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

:root {
  --a-mobile: 16;
  --b-mobile: 20;
  --c-mobile: 0;
  --d-mobile: 768;
  --a: 12;
  --b: 24;
  --c: 768;
  --d: 3840;
}

* {
  color: #ffffff;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-stroke: 0;
  transition-delay: 0;
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 1px solid #000000;
}

#wpadminbar * {
  color: unset !important;
}

html {
  scroll-behavior: smooth;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  font-size: clamp(var(--a-mobile) * 1px, var(--a-mobile) * 1px + (var(--b-mobile) - var(--a-mobile)) * (100vw - var(--c) * 1px) / (var(--d-mobile) - var(--c-mobile)), var(--b-mobile) * 1px);
}

body {
  font-family: "Outfit", sans-serif;
  background-color: #000000;
}
body.scroll-block {
  overflow-y: hidden;
}

button,
a,
input {
  font-family: "Outfit", sans-serif;
  background-color: transparent;
  border: 0;
  color: #ffffff;
}
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 1px solid #ffffff;
}

.center-box {
  padding: 0 1rem;
}

main .center-box {
  padding: 2.5rem 1rem 10.56rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.line {
  height: 1px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  grid-column: 1/-1;
}

.fade-in {
  opacity: 0;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
}

.hidden {
  display: none;
}

#page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

main {
  width: 100%;
  padding-top: 3.25rem;
  min-height: 100svh;
}

@media only screen and (min-width: 768px) {
  html {
    font-size: clamp(var(--a) * 1px, var(--a) * 1px + (var(--b) - var(--a)) * (100vw - var(--c) * 1px) / (var(--d) - var(--c)), var(--b) * 1px);
  }
  main {
    padding-top: 5.75rem;
    min-height: 100svh;
  }
}
@media only screen and (min-width: 1024px) {
  .center-box {
    padding: 0 1.25rem;
  }
  main .center-box {
    padding: 1rem 1.25rem 19.75rem;
  }
  .max-width,
  .content-width {
    max-width: 38.5rem;
  }
  .title-width {
    max-width: 48.375rem;
  }
}

/*# sourceMappingURL=main.css.map */
