/* VARS */

:root {
  --color-main: #efa23b;
  --color-white: #ffffff;
  --color-black: #060606;
  --color-gray: #b6b6b6;
  --color-gray-dark: #5b5b5b;
}

/* FONTS */

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

/* CSS RESET */

* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-tap-highlight-color: transparent;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  position: relative;
  min-width: 360px;
  height: 100%;
}

body {
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

input,
button,
textarea,
select {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type="submit"] {
  display: inline-block;
  background-color: transparent;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
}

input:focus,
input:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

a {
  color: inherit;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

address {
  font-style: normal;
}

legend {
  display: block;
}

svg *[fill] {
  fill: currentColor;
}

svg *[stroke] {
  stroke: currentColor;
}

svg {
  -webkit-transition-property: fill, stroke;
  transition-property: fill, stroke;
}

/* BODY */

body {
  color: var(--color-white);
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1;
  background-color: var(--color-black);
}

body._locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

/* WRAPPER */

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.wrapper > main {
  padding-bottom: 80px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

/* CONTAINER */

.container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 1480px;
}

/* COMMON */

/* SECTION */

.section:not(:last-child) {
  margin-bottom: 100px;
}

/* CONTENT EDITOR */

.content-editor {
  --ce-mb: 30px;
  font-size: 18px;
  line-height: 1.8;
}

.content-editor > *:first-child {
  margin-top: 0;
  padding-top: 0;
}

.content-editor > *:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.content-editor hr {
  display: block;
  height: 1px;
  background: var(--color-gray-dark);
  margin-bottom: var(--ce-mb);
}

.content-editor strong,
.content-editor b {
  font-weight: 600;
}

.content-editor p {
  margin-bottom: var(--ce-mb);
}

.content-editor img {
  width: 100%;
  height: auto;
  max-height: 412px;
  -o-object-fit: contain;
  object-fit: contain;
}

.content-editor a {
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

/* BUTTONS */

.btn {
  padding: 4px 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: 342px;
  min-height: 76px;
  color: var(--color-black);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
  -webkit-transition: color 0.2s ease, background-color 0.2s ease;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.btn-close {
  position: relative;
  width: 36px;
  height: 36px;
  background-color: transparent;
  text-decoration: none;
}

.btn-close::after,
.btn-close::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 2px;
  background-color: var(--color-main);
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.btn-close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.btn-close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

/* SOCIALS */

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px 20px;
}

.socials > li {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.socials > li > a {
  width: 46px;
  height: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--color-gray);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.socials > li > a img,
.socials > li > a svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 85%;
  height: 79%;
  -o-object-fit: contain;
  object-fit: contain;
}

/* HEADER */

.header {
  padding: 55px 0 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}

.header > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

.header-logo {
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 126px;
  height: 62px;
}

.header-logo img,
.header-logo svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left center;
  object-position: left center;
}

.header-controls {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 48px;
}

.header-phone {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.header-phone svg {
  display: none;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 85%;
  height: 79%;
  -o-object-fit: contain;
  object-fit: contain;
}

.header-language__link {
  display: none !important;
  padding: 11px 15px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  min-width: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  border: 2px solid var(--color-gray-dark);
  -webkit-transition: color 0.2s ease, border-color 0.2s ease;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.header-language__link img,
.header-language__link svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 32px;
  height: 20px;
  -o-object-fit: cover;
  object-fit: cover;
}

/* FOOTER */

.footer {
  padding: 40px 0 80px;
}

.footer > .container {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-columns: 1fr 40px 230px 40px 1fr;
  grid-template-columns: 1fr 230px 1fr;
  gap: 40px;
}

.footer-col {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
}

.footer-col:last-child {
  text-align: right;
}

.footer-copy {
  font-size: 16px;
  line-height: 1.1;
}

.footer-logo {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
}

.footer-logo img,
.footer-logo svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer-list > li:not(:last-child) {
  margin-bottom: 12px;
}

.footer-link {
  font-size: 16px;
  line-height: 1.1;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

/* POPUP */

.popup {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
}

.popup._open {
  opacity: 1;
  visibility: visible;
}

.popup._open .popup-content {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

html._loaded .popup {
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease, visibility 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease, visibility 0.6s ease, -webkit-transform 0.6s ease;
}

.popup-body {
  padding: 30px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100%;
}

.popup-content {
  padding: 34px 32px 20px;
  position: relative;
  width: 100%;
  max-width: 1000px;
  color: var(--color-white);
  background-color: var(--color-black);
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  border: 1px solid rgba(255, 255, 255, 0.15);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease, -webkit-transform 0.6s ease;
}

.popup-content .pretix-widget {
  margin: 0;
  padding: 0;
  border: none;
}

.popup-content .pretix-widget .pretix-widget-info-message {
  margin: 10px 0 24px;
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 0;
}

.popup-content .pretix-widget .pretix-widget-category {
  margin: 0;
}

.popup-content .pretix-widget .pretix-widget-item-row {
  padding: 10px 0 32px;
}

.popup-content .pretix-widget .pretix-widget-item-info-col {
  padding: 0 0 8px;
}

.popup-content .pretix-widget .pretix-widget-voucher-headline {
  margin: 24px 0 12px;
}

.popup-content .pretix-widget .pretix-widget-item-title {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
}

.popup-content .pretix-widget .pretix-widget-item-description {
  font-size: 16px;
  line-height: 1.5;
}

.popup-content .pretix-widget .pretix-widget-action {
  margin: 0;
  width: 100%;
  text-align: center;
}

.popup-content .pretix-widget .pretix-widget-action button,
.popup-content .pretix-widget .pretix-widget-voucher button {
  margin: 0 auto;
  max-width: 300px;
  height: 56px;
  color: var(--color-black);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background-color: var(--color-main);
  border-color: var(--color-main);
  border-radius: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.popup-content .pretix-widget .pretix-widget-resume-button {
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-black);
  background-color: var(--color-main);
  border-color: var(--color-main);
  border-radius: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.popup-content .pretix-widget .pretix-widget-attribution {
  margin-top: 12px;
}

.popup-content .pretix-widget h3,
.popup-content .pretix-widget-alert-box h3 {
  padding: 0;
  margin-bottom: 20px;
  font-family: "Montserrat";
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

.popup-close.btn-close {
  position: absolute;
  top: 8px;
  right: 8px;
}

.pretix-widget-overlay .pretix-widget-frame-inner {
  margin: 24px 15px;
  width: calc(100vw - 30px);
  height: calc(100vh - 48px);
}

.pretix-widget-overlay .pretix-widget-alert-holder {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.pretix-widget-overlay .pretix-widget-alert-holder #pretix-widget-0-error-message {
  padding: 15px 0;
}

/* PAGE-INTRO */

.page-intro {
  padding: 204px 0 96px;
  position: relative;
  min-height: 400px;
}

.page-intro > .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-intro__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-intro__bg::before,
.page-intro__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.page-intro__bg::after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgb(0, 0, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0));
  opacity: 0.4;
}

.page-intro__bg::before {
  background-color: rgba(0, 0, 0, 0.4);
}

.page-intro__bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom center;
  object-position: bottom center;
}

.page-intro__title {
  position: relative;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.page-intro__title:not(:last-child) {
  margin-bottom: 24px;
}

.page-intro__text {
  font-size: 20px;
  line-height: 1.5;
}

.page-intro__text:not(:last-child) {
  margin-bottom: 44px;
}

/* EVENT */

.event > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 24px;
}

.event-img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 49.2%;
}

.event-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.event-content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.event-content__top {
  margin-bottom: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
}

.event-content__title {
  padding-left: 10px;
  position: relative;
}

.event-content__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0.1em;
  height: 85%;
  background-color: var(--color-white);
}

.event-content__text:not(:last-child) {
  margin-bottom: 40px;
}

/* RESPONSIVE */

@media screen and (max-width: 1439.98px) {
  .btn {
    max-width: 320px;
    min-height: 64px;
  }

  .header {
    padding: 32px 0 20px;
  }
}

@media screen and (max-width: 1199.98px) {
  .wrapper > main {
    padding-bottom: 60px;
  }

  .section:not(:last-child) {
    margin-bottom: 80px;
  }

  .content-editor {
    --ce-mb: 24px;
  }

  .socials > li > a {
    width: 40px;
    height: 40px;
  }

  .header {
    padding: 20px 0;
  }

  .header-logo {
    width: 108px;
    height: 52px;
  }

  .footer {
    padding: 40px 0 60px;
  }

  .footer > .container {
    -ms-grid-columns: 1fr 192px 1fr;
    grid-template-columns: 1fr 192px 1fr;
  }

  .page-intro__title {
    font-size: 38px;
  }

  .page-intro__text {
    font-size: 18px;
  }

  .event-img {
    width: 40%;
  }
}

@media screen and (max-width: 991.98px) {
  .header > .container {
    gap: 32px;
  }

  .header-controls {
    gap: 32px;
  }

  .event > .container {
    display: block;
  }

  .event-img {
    margin: 0 auto 44px;
    width: 100%;
    max-width: 600px;
  }

  .event-content__botton {
    text-align: center;
  }
}

@media screen and (max-width: 767.98px) {
  .container {
    padding: 0 15px;
  }

  .socials {
    gap: 8px 12px;
  }

  .socials > li > a {
    width: 36px;
    height: 36px;
  }

  .header > .container {
    gap: 20px;
  }

  .header-logo {
    width: 96px;
    height: 48px;
  }

  .header-controls {
    gap: 20px;
  }

  .header-language__link {
    padding: 6px 0;
    min-width: unset;
    border: none;
  }

  .header-language__link > span {
    display: none;
  }

  .footer {
    padding: 40px 0;
  }

  .footer > .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0;
  }

  .footer-col {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 48%;
  }

  .footer-col:first-child {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .footer-col:last-child {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .footer-logo {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin: 0 0 32px;
    width: 100%;
  }

  .footer-logo > .img {
    margin: 0 auto;
    width: 192px;
  }

  .page-intro {
    padding: 180px 0 96px;
  }

  .page-intro__title {
    font-size: 32px;
  }
}

@media screen and (max-width: 575.98px) {
  body {
    font-size: 16px;
  }

  .wrapper > main {
    padding-bottom: 40px;
  }

  .section:not(:last-child) {
    margin-bottom: 60px;
  }

  .content-editor {
    --ce-mb: 20px;
    font-size: 16px;
  }

  .btn {
    max-width: unset;
    min-height: 60px;
    font-size: 16px;
  }

  .socials > li > a {
    width: 32px;
    height: 32px;
  }

  .header {
    padding: 16px 0;
  }

  .header-logo {
    width: 80px;
    height: 40px;
  }

  .header-controls {
    gap: 12px;
  }

  .header-phone {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    color: var(--color-gray);
    width: 32px;
    height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .header-phone svg {
    display: block;
  }

  .header-phone > span {
    display: none;
  }

  .header-language__link {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .header-socials {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .footer-col {
    width: 100%;
  }

  .footer-col:first-child {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    text-align: center;
  }

  .footer-col:last-child {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-bottom: 20px;
    text-align: center;
  }

  .footer-copy {
    font-size: 14px;
  }

  .footer-logo > .img {
    width: 172px;
  }

  .footer-link {
    font-size: 14px;
  }

  .popup-content {
    padding: 30px 16px 20px;
  }

  .popup-content .pretix-widget .pretix-widget-item-title {
    font-size: 18px;
  }

  .popup-content .pretix-widget .pretix-widget-item-description {
    font-size: 14px;
  }

  .popup-content .pretix-widget h3,
  .popup-content .pretix-widget-alert-box h3 {
    margin-bottom: 15px;
  }

  .page-intro__title {
    font-size: 28px;
  }

  .page-intro__text {
    font-size: 16px;
  }
}

@media (pointer: fine) {
  .content-editor a:hover {
    color: var(--color-main);
  }

  .btn-close:hover::after,
  .btn-close:hover::before {
    background-color: var(--color-white);
  }

  .socials > li > a:hover {
    color: var(--color-main);
  }

  .header-phone:hover {
    color: var(--color-main);
  }

  .header-language__link:hover {
    color: var(--color-main);
    border-color: var(--color-main);
  }

  .footer-link:hover {
    color: var(--color-main);
  }
}

@media (any-hover: hover) {
  .btn:hover {
    color: var(--color-main);
    background-color: var(--color-black);
  }

  .popup-content .pretix-widget .pretix-widget-action button:not([disabled]):hover,
  .popup-content .pretix-widget .pretix-widget-voucher button:not([disabled]):hover {
    opacity: 0.75;
  }

  .popup-content .pretix-widget .pretix-widget-resume-button:not([disabled]):hover {
    opacity: 0.75;
  }
}
