@font-face {
  font-family: 'Gilroy-Regular';
  src: url('../fonts/Gilroy-Regular.woff2') format('woff2'),
    url('../fonts/Gilroy-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy-Medium';
  src: url('../fonts/Gilroy-Medium.woff2') format('woff2'),
    url('../fonts/Gilroy-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy-Semibold';
  src: url('../fonts/Gilroy-Semibold.woff2') format('woff2'),
    url('../fonts/Gilroy-Semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy-Bold';
  src: url('../fonts/Gilroy-Bold.woff2') format('woff2'),
    url('../fonts/Gilroy-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
body,
.footer__contact-btn,
.load-more-btn,
.events__event-btn {
  font-family: 'Gilroy-Regular', sans-serif;
  font-weight: 400;
}
.footer__copyright a {
  font-family: 'Gilroy-Medium', sans-serif;
  font-weight: 500;
}
.header__menu-link.router-link-active,
.load-more-btn:hover,
.event-page__content-title,
.event-page__content-btn {
  font-family: 'Gilroy-Semibold', sans-serif;
  font-weight: 600;
}
.main__title,
.events__title,
.events__event-title {
  font-family: 'Gilroy-Bold', sans-serif;
  font-weight: 700;
}
:root {
  --vs-colors--lightest: rgba(60, 60, 60, 0.26);
  --vs-colors--light: rgba(60, 60, 60, 0.5);
  --vs-colors--dark: #333;
  --vs-colors--darkest: rgba(0, 0, 0, 0.15);
  --vs-search-input-color: inherit;
  --vs-search-input-bg: rgb(255, 255, 255);
  --vs-search-input-placeholder-color: inherit;
  --vs-font-size: 1rem;
  --vs-line-height: 1.4;
  --vs-state-disabled-bg: rgb(248, 248, 248);
  --vs-state-disabled-color: var(--vs-colors--light);
  --vs-state-disabled-controls-color: var(--vs-colors--light);
  --vs-state-disabled-cursor: not-allowed;
  --vs-border-color: var(--vs-colors--lightest);
  --vs-border-width: 1px;
  --vs-border-style: solid;
  --vs-border-radius: 4px;
  --vs-actions-padding: 4px 6px 0 3px;
  --vs-controls-color: var(--vs-colors--light);
  --vs-controls-size: 1;
  --vs-controls--deselect-text-shadow: 0 1px 0 #fff;
  --vs-selected-bg: #f0f0f0;
  --vs-selected-color: var(--vs-colors--dark);
  --vs-selected-border-color: var(--vs-border-color);
  --vs-selected-border-style: var(--vs-border-style);
  --vs-selected-border-width: var(--vs-border-width);
  --vs-dropdown-bg: #fff;
  --vs-dropdown-color: inherit;
  --vs-dropdown-z-index: 1000;
  --vs-dropdown-min-width: 160px;
  --vs-dropdown-max-height: 350px;
  --vs-dropdown-box-shadow: 0px 3px 6px 0px var(--vs-colors--darkest);
  --vs-dropdown-option-bg: #000;
  --vs-dropdown-option-color: var(--vs-dropdown-color);
  --vs-dropdown-option-padding: 3px 20px;
  --vs-dropdown-option--active-bg: #e75410af;
  --vs-dropdown-option--active-color: #fff;
  --vs-dropdown-option--deselect-bg: #fb5858;
  --vs-dropdown-option--deselect-color: #fff;
  --vs-transition-timing-function: cubic-bezier(1, -0.115, 0.975, 0.855);
  --vs-transition-duration: 150ms;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-x: hidden;
}
*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
a {
  text-decoration: none;
  color: inherit;
}
p {
  margin: 0;
  padding: 0;
}
ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: inherit;
}
input {
  outline: none;
}
* {
  outline: 0 !important;
}
body {
  min-width: 320px;
  font-size: 18px;
  color: #000;
  overflow-x: hidden;
  margin: 0;
}
.container {
  max-width: 1430px;
  padding: 0 60px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .container {
    padding: 0 15px;
  }
}
.container.isHome {
  padding: 0;
}
.shadow-wrapper {
  opacity: 0;
  position: fixed;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: -100%;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: opacity ease-out 0.5s;
  -o-transition: opacity ease-out 0.5s;
  transition: opacity ease-out 0.5s;
}
.shadow-wrapper.active {
  opacity: 1;
  left: 0;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 0 40px 0;
}
.header__logo {
  height: 70px;
  margin-top: 20px;
}
.header__logo img {
  height: 70px;
  width: 100%;
  max-width: 170px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (max-width: 900px) {
  .header__logo {
    height: 55px;
  }
  .header__logo img {
    height: 55px;
  }
}
.header__nav {
  font-size: 16px;
  -webkit-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  transition: all ease 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 900px) {
  .header__nav {
    right: -100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: fixed;
    z-index: 1000;
    top: 0;
    background-color: #fff;
    height: 100vh;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 300px;
    min-width: 300px;
    padding: 70px 30px;
  }
  .header__nav .header__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: 0;
  }
  .header__nav .header__menu li {
    margin: 0;
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.header__nav.isHome {
  width: 100%;
}
.header__nav.isOpen {
  right: 0;
}
.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-right: 0;
  margin-top: 20px;
  width: 100%;
}
.header__menu li {
  margin: 0 20px;
}
.header__menu li:first-child {
  margin-left: 0;
}
.header__menu-link {
  font-size: 16px;
  cursor: pointer;
  white-space: nowrap;
}
.header__menu-link:hover {
  color: var(--main-bg-color, #615ffb);
}
.header__menu-link.router-link-active {
  color: var(--main-bg-color, #615ffb);
  border-bottom: 1px solid var(--main-bg-color, #615ffb);
}
.header__contact-btn {
  padding: 8px 30px;
  margin-top: 20px;
  white-space: nowrap;
  border: 1px solid #000;
  border-radius: 15px;
}
.header__contact-btn:hover {
  color: #fff;
  background-color: var(--main-bg-color, #615ffb);
  border: 1px solid var(--main-bg-color, #615ffb);
}
.header__menu-btn {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 12px 10px;
  margin-top: 20px;
  border-radius: 10px;
  background-color: var(--main-bg-color, #615ffb);
  border: none;
  cursor: pointer;
}
.header__menu-btn span {
  display: block;
  width: 24px;
  height: 3px;
  margin-bottom: 5px;
  background-color: var(--main-text-color, #fff);;
  border-radius: 2px;
}
.header__menu-btn span:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 900px) {
  .header__menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
/* .header__menu-btn.isHome {
  background-color: #fff;
}
.header__menu-btn.isHome span {
  background-color: #be3d03;
} */
.footer {
  background-color: #fbfbfb;
  padding: 35px 0;
  border-top: 2px solid var(--main-bg-color, #615ffb);
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 800px) {
  .footer__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: -webkit-max-content 1fr;
    -ms-grid-columns: max-content 1fr;
    grid-template-columns: -webkit-max-content 1fr;
    grid-template-columns: max-content 1fr;
    -ms-grid-rows: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 20px;
    grid-row-gap: 0;
  }
}
@media screen and (max-width: 400px) {
  .footer__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.footer__logo {
  height: 70px;
}
.footer__logo img {
  height: 70px;
  width: max-content;
  max-width: 140px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (max-width: 900px) {
  .footer__logo {
    height: 55px;
  }
  .footer__logo img {
    height: 55px;
  }
}
@media screen and (max-width: 800px) {
  .footer__logo {
    -ms-grid-row-span: 2;
    grid-row: span 2;
  }
}
@media screen and (max-width: 400px) {
  .footer__logo {
    -ms-grid-row-span: 1;
    grid-row: span 1;
    margin-bottom: 12px;
  }
}
.footer__info {
  max-width: 430px;
  font-size: 16px;
  margin: 0 30px;
}
.footer__info span {
  display: block;
}
.footer__info span:nth-child(2) {
  margin-bottom: 5px;
}
@media screen and (max-width: 800px) {
  .footer__info {
    margin: 0;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.footer__contact-btn {
  font-size: 18px;
  background-color: transparent;
  border: 1px solid #000;
  border-radius: 15px;
  padding: 8px 30px;
  margin-bottom: 10px;
  cursor: pointer;
  display: block;
}
.footer__contact-btn:hover {
  color: #fff;
  background-color: var(--main-bg-color, #615ffb);
  border: 1px solid var(--main-bg-color, #615ffb);
}
.footer__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media screen and (max-width: 800px) {
  .footer__contact {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.footer__social {
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: right;
}
.footer__copyright {
  margin-left: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.footer__copyright span {
  color: #615ffb;
}
@media screen and (max-width: 800px) {
  .footer__copyright {
    margin: 0 auto;
    margin-top: 20px;
  }
}
@media screen and (max-width: 400px) {
  .footer__copyright {
    margin-left: 0;
    margin-bottom: 20px;
    width: auto;
  }
}
.main-container {
  width: 50%;
  padding-left: 40px;
}
@media screen and (max-width: 900px) {
  .main-container {
    width: 100%;
    padding: 0;
  }
  .main-container .header__inner {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
.load-more-btn {
  font-size: 18px;
  background-color: transparent;
  border: 1px solid #000;
  border-radius: 15px;
  padding: 8px 30px;
  margin: 0 auto;
  margin-top: 70px;
  cursor: pointer;
  display: block;
}
.load-more-btn:hover {
  color: #fff;
  background-color: var(--main-bg-color, #615ffb);
  border: 1px solid var(--main-bg-color, #615ffb);
}
.main {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}
.main__wrapper {
  display: flex;
  justify-content: flex-end;
  min-height: 800px;
}
@media screen and (max-width: 900px) {
  .main {
    background-repeat: no-repeat;
    background-size: 100vw 300px;
    background-position-x: center;
    background-position-y: top;
  }
}
.main__bg {
  max-width: 50%;
  width: 100%;
  border-radius: 0 0 30px 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 50%;
  height: 100%;
  max-height: 800px;
}
@media screen and (max-width: 1600px) {
  .main__bg {
    max-height: 700px;
  }
  .main__wrapper {
    min-height: 700px;
  }
}
@media screen and (max-width: 1500px) {
  .main__bg {
    max-height: 650px;
  }
  .main__wrapper {
    min-height: 650px;
  }
}
@media screen and (max-width: 1400px) {
  .main__bg {
    max-height: 600px;
  }
  .main__wrapper {
    min-height: 600px;
  }
}
@media screen and (max-width: 1300px) {
  .main__bg {
    max-height: 600px;
  }
  .main__wrapper {
    min-height: 600px;
  }
}
@media screen and (max-width: 1200px) {
  .main__bg {
    max-height: 550px;
  }
  .main__wrapper {
    min-height: 550px;
  }
}
@media screen and (max-width: 1100px) {
  .main__bg {
    max-height: 500px;
  }
  .main__wrapper {
    min-height: 500px;
  }
}
@media screen and (max-width: 1000px) {
  .main__bg {
    max-height: 450px;
  }
  .main__wrapper {
    min-height: 450px;
  }
}
@media screen and (max-width: 900px) {
  .main__bg {
    height: 500px;
    max-height: 500px;
    max-width: 100%;
    border-radius: 0;
    z-index: -1;
    right: 0;
  }
  .main__wrapper {
    flex-direction: column;
    min-height: 0;
  }
}
.main__inner {
  margin-top: 80px;
}
@media screen and (max-width: 900px) {
  .main__inner {
    margin-top: 420px;
  }
}
@media screen and (max-width: 700px) {
  .main__bg {
    height: 400px;
  }
  .main__inner {
    margin-top: 320px;
  }
}
@media screen and (max-width: 600px) {
  .main__bg {
    height: 350px;
  }
  .main__inner {
    margin-top: 270px;
  }
}
@media screen and (max-width: 500px) {
  .main__bg {
    height: 300px;
  }
  .main__inner {
    margin-top: 220px;
  }
}
@media screen and (max-width: 400px) {
  .main__bg {
    height: 250px;
  }
  .main__inner {
    margin-top: 170px;
  }
}
.main__title-inner img {
  max-width: 240px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (max-width: 900px) {
  .main__title-inner img {
    max-width: auto;
    width: auto;
    height: 65px;
    -o-object-fit: contain;
    object-fit: contain;
  }
}
.main__title {
  font-size: 36px;
  margin-top: 40px;
}
@media screen and (max-width: 900px) {
  .main__title {
    font-size: 24px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 460px) {
  .main__title {
    font-size: 18px;
  }
}
@media screen and (max-width: 380px) {
  .main__title {
    font-size: 16px;
  }
}
.main__text {
  font-size: 22px;
  margin-bottom: 40px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 15;
  -webkit-box-orient: vertical;
}
.main__text p {
  margin-top: 16px;
}
@media screen and (max-width: 900px) {
  .main__text {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .main__text p {
    margin-top: 12px;
  }
}
.events {
  margin-bottom: 70px;
}
.events__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 300px;
  width: 100%;
}
.events__empty h2 {
  font-size: 24px;
  font-family: 'Gilroy-Semibold', sans-serif;
  font-weight: 600px;
  text-align: center;
}
.events__empty img {
  width: 240px;
  margin-bottom: 10px;
}
.events__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 60px;
}
@media screen and (max-width: 1100px) {
  .events__list {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
  }
}
@media screen and (max-width: 700px) {
  .events__list {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 400px) {
  .events__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.events__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 70px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1000px) {
  .events__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 12px;
  }
}
.events__title {
  font-size: 30px;
}
@media screen and (max-width: 500px) {
  .events__title {
    font-size: 24px;
  }
}
.events__event-img {
  display: block;
  position: relative;
}
.events__event-soldout {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  background-color: #e85050;
  border: 3px solid #cf3a3a;
  border-radius: 5px;
  margin: 0 36px;
  padding: 10px;
  font-size: 22px;
  font-weight: 700;
  font-family: 'Gilroy-Bold', sans-serif;
  color: #fff;
  text-align: center;
}
.events__event-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 30px;
}
.events__event-title {
  font-size: 20px;
  margin: 20px 0;
  display: block;
}
@media screen and (max-width: 900px) {
  .events__event-title {
    font-size: 18px;
  }
  .events__event-soldout {
    margin: 0 20px;
    padding: 10px;
    font-size: 18px;
  }
}
.events__event-loc {
  font-size: 14px;
  margin-bottom: 6px;
}
.events__event-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.events__event-bottom-inner span {
  display: block;
}
.events__event-bottom-inner span:first-child {
  margin-bottom: 3px;
}
.events__event-btn {
  font-size: 18px;
  border: 1px solid #000;
  border-radius: 15px;
  padding: 5px 30px; 
  cursor: pointer; 
  margin-top: 10px; 
  width: 100%; 
  background-color: transparent; 
  color: #000; 
  transition: all 0.3s ease;
  text-align: center;
}

.events__event-btn.disabled {
  pointer-events: none;
  background-color: var(--main-bg-color, #615ffb); 
  border: 1px solid var(--main-bg-color, #615ffb); 
  color: var(--main-text-color, #fff);
  opacity: 0.5;
}

.events__event-btn:hover {
  background-color: var(--main-bg-color, #615ffb); 
  color: var(--main-text-color, #fff); 
  border: 1px solid; 
  border-color: var(--main-bg-color, #615ffb);
}

.event-page {
  margin-bottom: 90px;
}
.event-page__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1200px) {
  .event-page__inner {
    display: block;
  }
}
.event-page__map {
  margin-left: 40px;
  min-width: 360px;
  max-height: 600px;
  height: 100vh;
}
.event-page__map iframe {
  border-radius: 30px;
  min-width: 360px;
}
@media screen and (max-width: 500px) {
  .event-page__map iframe {
    min-width: 260px;
  }
}
@media screen and (max-width: 1200px) {
  .event-page__map {
    margin-left: 0;
    margin-top: 40px;
    height: 400px;
    min-width: auto;
  }
}
@media screen and (max-width: 400px) {
  .event-page__map {
    height: 300px;
  }
}
.event-page__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: -webkit-max-content 1fr;
  -ms-grid-rows: max-content 1fr;
  grid-template-rows: -webkit-max-content 1fr;
  grid-template-rows: max-content 1fr;
  grid-column-gap: 30px;
}
@media screen and (max-width: 500px) {
  .event-page__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 800px) {
  .event-page__content-top {
    margin-top: 20px;
  }
}
@media screen and (max-width: 500px) {
  .event-page__content-top {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 800px) {
  .event-page__content-bottom {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    margin-top: 30px;
  }
}
@media screen and (max-width: 500px) {
  .event-page__content-bottom {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
}
.event-page__img {
  -ms-grid-row-span: 2;
  grid-row: span 2;
  height: 100%;
  max-height: 700px;
  width: 100%;
  position: relative;
}
.event-page__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left top;
  object-position: left top;
}
@media screen and (max-width: 800px) {
  .event-page__img {
    -ms-grid-row-span: 1;
    grid-row: span 1;
  }
}
.event-page__content-link {
  position: relative;
  margin-left: 14px;
  margin-bottom: 30px;
  border-bottom: 1px solid #000;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.event-page__content-link::before {
  position: absolute;
  width: 7px;
  height: 13px;
  background-image: url('../images/left-arrow.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: 50%;
  left: -14px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  content: '';
}
.event-page__content-title {
  font-size: 24px;
  margin-bottom: 20px;
}
.event-page__content-location,
.event-page__content-date {
  margin-left: 40px;
  margin-bottom: 20px;
  padding-top: 5px;
  position: relative;
}
.event-page__content-location::before,
.event-page__content-date::before {
  position: absolute;
  content: '';
  left: -40px;
  top: 0;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.event-page__content-location::before {
  background-image: url('../images/location.png');
}
.event-page__content-date::before {
  background-image: url('../images/calendar.png');
}
.event-page__content-text {
  margin-top: 20px;
}
.event-page__content-text p {
  margin-bottom: 20px;
}
.event-page__content-btn {
  color: var(--main-text-color, #fff);
  background-color: var(--main-bg-color, #615ffb);
  border: 1px solid var(--main-bg-color, #615ffb);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 20px;
  border-radius: 15px;
  padding: 8px 36px;
  cursor: pointer;
}
.event-page__content-btn--soldout {
  pointer-events: none;
}
@media screen and (max-width: 800px) {
  .event-page__content-btn {
    width: 100%;
    text-align: center;
    background-color: transparent;
    border: 1px solid #000;
    color: #000;
  }
  .event-page__content-btn:hover {
    color: var(--main-text-color, #fff);
    background-color: var(--main-bg-color, #615ffb);
    border: 1px solid var(--main-bg-color, #615ffb);
  }
}

.header__select-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-grow: 1;
}
@media screen and (max-width: 900px) {
  .header__select-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 12px;
  }
}
.header__dropdown {
  position: relative;
  font-size: 16px;
  color: #000;
  display: flex;
  align-items: center;
}
.header__dropdown input {
  position: absolute;
  left: -200vw;
}
.header__dropdown-title {
  cursor: pointer;
}
.header__dropdown-icon {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}
.header__dropdown-icon svg {
  width: 16px;
  height: 16px;
  fill: #000;
}
.header__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  right: -13px;
  background-color: #fff;
  color: #000;
  border-radius: 8px;
  border: 1px solid #eee;
  cursor: auto;
  text-align: right;
  z-index: 100;
  overflow: hidden;
}
.header__dropdown-menu li {
  display: flex;
  justify-content: center;
  margin: 0;
}
.header__dropdown-menu li a {
  padding: 8px 12px;
}
.header__dropdown-menu li a:hover {
  background: #f0f0f0;
}
.header__dropdown.active .header__dropdown-menu {
  display: block;
}
@media screen and (max-width: 900px) {
  .header__select-wrapper .dropdown {
    left: 0;
    right: auto;
  }
  .header__dropdown {
    margin-left: 0;
  }
  .header__dropdown-title {
    border: none;
    color: var(--main-bg-color, #615ffb);
    cursor: auto;
    margin: 0;
    margin-right: 5px;
  }
  .header__dropdown-icon {
    opacity: 0;
    width: 0;
    margin: 0;
    padding: 0;
  }
  .header__dropdown-menu {
    display: flex;
    position: static;
    padding: 0;
    border: none;
    margin: 0;
  }
  .header__dropdown-menu li {
    margin: 0 5px !important;
  }
  .header__dropdown-menu li a {
    border-radius: 8px;
  }
}

.events__filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 16px;
}
.events__filters-item {
  cursor: pointer;
}
.events__filters-item.selected {
  font-family: 'Gilroy-Semibold', sans-serif;
  font-weight: 600;
  border-bottom: 1px solid #000;
}

.main-dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-size: 16px;
}

.main-dropdown .selected {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: none;
  border-radius: 0;
  user-select: none;
  background: transparent;
}

.main-dropdown:has(.dropdown.open) .selected .arrow {
  transform: rotate(180deg);
}

.main-dropdown .selected .selected-text.selected,
.main-dropdown.main-dropdown--mobile .selected-text {
  font-family: 'Gilroy-Semibold', sans-serif;
  font-weight: 600;
  border-bottom: 1px solid #000;
}

.main-dropdown .icon,
.main-dropdown .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  min-width: 15px;
  min-height: 15px;
}

.main-dropdown .arrow {
  width: 11px;
  height: 11px;
  min-width: 11px;
  min-height: 11px;
}

.main-dropdown .icon svg,
.main-dropdown .arrow svg {
  width: 100%;
  height: 100%;
}

.main-dropdown .dropdown {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  width: max-content;
  background: white;
  border-radius: 8px;
  border: 1px solid #eee;
  display: none;
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  min-width: 140px;
}

.main-dropdown .dropdown.open {
  display: block;
}

.main-dropdown .dropdown div {
  padding: 8px 12px;
  cursor: pointer;
}

.main-dropdown .dropdown .selected {
  pointer-events: none;
  color: var(--main-bg-color, #615ffb);
}

.main-dropdown .dropdown div:hover {
  background: #f0f0f0;
}

.main-dropdown.main-dropdown--mobile {
  display: none;
}
.main-dropdown.main-dropdown--mobile .dropdown {
  left: 0;
  right: auto;
}

@media screen and (max-width: 700px) {
  .events__filters .events__filters-item,
  .events__filters .main-dropdown {
    display: none;
  }
  .main-dropdown.main-dropdown--mobile {
    display: flex;
  }
}
