/* Отключаем анимации до load, но НЕ трогаем лоадер */
html.preload *:not(#page-loader):not(#page-loader *),
html.preload *:not(#page-loader):not(#page-loader *)::before,
html.preload *:not(#page-loader):not(#page-loader *)::after {
  animation: none !important;
  transition: none !important;
}

html.preload #page-loader .spinner {
  animation: spin 0.9s linear infinite !important;
}

.page-loader{
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.spinner{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 4px solid rgba(0,0,0,.15);
  border-top-color: #399ac4;
  animation: spin 0.9s linear infinite;
}

.loader-text{
  font-size: 14px;
  line-height: 1.2;
  color: rgba(0,0,0,.65);
  font-family: inherit; /* будет как на сайте */
}

@keyframes spin { to { transform: rotate(360deg); } }

.page-loader.is-hidden{
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}


button:focus {
  outline: none;
}

/* Убираем все глобальные overflow */
html {
  overflow-y: scroll; /* предотвращаем прыжки контента */
  scrollbar-width: none; /* Firefox */
}

html::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

body {
  margin: 0;
  padding: 0;
  position: relative;
}

/* Локальные исправления */
#header {
  width: 100%;
  position: relative;
}

#header .content {
  width: 100%;
  position: relative;
  overflow-x: clip; /* современная альтернатива hidden */
}

@media (max-width: 575.5px) {
  #header .content {
    overflow-x: clip;
  }

  #header .left-man-bubble--mobile {
    left: 0;
    bottom: 0;
  }
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

#header .content {
  padding: 4.43vw 0 3.91vw;
  display: flex;
  display: -ms-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(
    255.27deg,
    #414141 11.44%,
    #4dacd4 21.78%,
    #cee888 35.76%,
    #317a99 49.73%,
    #102f3c 61.66%,
    #264a59 76.14%
  );
  /* backdrop-filter: blur(10px); */
  position: relative;
}

#header .content::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50.52vw;
  top: 0;
  left: 0;
  background-image: url("../../img/header/main-bg-bubbles.png");
  background-size: 100% 50.52vw;
}

#header .menu {
  display: flex;
  display: -ms-flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  position: fixed;
  padding: 0.78vw 2.6vw;
  top: 4.43vw;
  z-index: 2;
  border-radius: 5.21vw;
  background: #d9d9d91e;
  position: absolute;
  transition: all 0.5s;
  transform: translateZ(0);
  will-change: transform;
}

#header.active .menu {
  background: white;
  top: 3.2vw;
  position: fixed;
}

#header .menu::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 5.21vw;
  background: #d9d9d91e;
  box-shadow: 0vw 0.21vw 0.78vw 0vw #1c3843;
  opacity: 12%;
}

#header .menu .menu-items {
  display: flex;
  display: -ms-flex;
  flex-direction: row;
  align-items: flex-end;
  position: relative;
  column-gap: 3.39vw;
}

#header .menu .menu-item {
  display: block;
  white-space: nowrap;
  color: white;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 0.83vw;
  line-height: 0.99vw;
  letter-spacing: -0.02em;
}

#header.active .menu .menu-item {
  color: black;
}

#header .menu .menu-item:focus {
  color: white;
  outline: none;
}

#header.active .menu .menu-item:focus {
  color: black;
}

#header .description {
  display: flex;
  display: -ms-flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  color: white;
  width: 100%;
  padding-top: 8.59vw;
  row-gap: 2.08vw;
  position: relative;
  z-index: 1;
}

#header .description .event-title {
  font-family: TT Travels Medium;
  font-weight: 500;
  font-size: 2.76vw;
  line-height: 2.76vw;
  letter-spacing: 0.003em;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.52vw;
}

#header .description .event-title span:last-child {
  font-size: 2.63vw;
}

#header .description .event-details {
  font-family: TT Travels Medium;
  font-weight: 500;
  font-size: 1.25vw;
  line-height: 1.25vw;
  letter-spacing: 0.003em;
}

#header .buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 1.04vw;
}

#header .join-btn {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 0.63vw;
  line-height: 0.89vw;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  padding: 0.63vw 1.25vw;
  border-radius: 1.67vw;
  background: linear-gradient(90deg, #abb249 0%, #4dacd4 100%);
  box-shadow: 0vw 0.21vw 0.78vw 0vw #0000001a;
  outline: none;
  border: none;
  color: white;
}

#header .event-subtitle {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 1.17vw;
  line-height: 140%;
  letter-spacing: 0;
  text-align: center;
  color: white;
  margin-top: 4.17vw;
}

#header .buttons button:last-child {
  background: white;
}

#header a {
  display: flex;
}

#header a .join-btn {
  color: black;
}

#header .left-bubbles {
  position: absolute;
  left: 13.28vw;
  bottom: -6.77vw;
  width: 22.92vw;
  height: 23.18vw;
  z-index: 0;
}

#header .right-bottom-bubbles {
  position: absolute;
  top: 8.07vw;
  right: 0;
  width: 38.28vw;
  height: 41.41vw;
  z-index: 0;
}

#header .right-top-bubbles--mobile {
  display: none;
}

#header .right-top-bubbles {
  position: absolute;
  top: 0;
  right: 13.8vw;
  width: 42.19vw;
  height: 23.18vw;
  z-index: 0;
}

#header .left-man {
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  height: 100%;
  z-index: 0;
}

#header .left-man--mobile {
  display: none;
}

#header .left-man-bubble--mobile {
  display: none;
}

#header .left-man-bubble {
  position: absolute;
  left: 6.77vw;
  bottom: -10.42vw;
  width: 40.62vw;
  height: auto;
  z-index: 0;
}

#header .right-man {
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
  height: 100%;
  z-index: 0;
}

#header .right-man--mobile {
  display: none;
}

#header .right-man-bubble {
  position: absolute;
  right: 5.21vw;
  bottom: -4.17vw;
  width: 31.25vw;
  height: auto;
  z-index: 0;
}

#header .right-man-bubble--mobile {
  display: none;
}

#header .right-man-rectangle {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42.45vw;
  height: 100%;
  background-image: url("../../img/header/right-man-rectangle.png");
  background-size: 100% 50.52vw;
  z-index: 0;
  opacity: 0.44;
}

#header .right-bottom-white-bubbles {
  position: absolute;
  right: 0;
  bottom: 0;
  width: auto;
  height: 9.38vw;
  pointer-events: none;
  z-index: 0;
}

#header .menu-mobile {
  display: none;
}

#header .toggle-button {
  display: none;
}

#sidebar {
  display: none;
}

#header .event-details--mobile {
  display: none;
}

#header .arrow--mobile {
  display: none;
}

@media (max-width: 575.5px) {
  #header .content {
    padding: 0 9.38vw 9.38vw;
    background: linear-gradient(
      241.43deg,
      #414141 10.88%,
      #4dacd4 19.46%,
      #cee888 31.06%,
      #317a99 42.66%,
      #102f3c 52.56%,
      #264a59 64.58%
    );
    height: 100vh;
    max-height: 179vw;
  }

  #header .content::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-image: url("../../img/header/main-bg-bubbles--mobile.svg");
    background-size: cover;
    background-repeat: no-repeat;
  }

  #header .menu {
    display: none;
  }

  #header .description {
    padding-top: 0;
    row-gap: 0;
    height: 100%;
    justify-content: flex-end;
  }

  #header .description .event-title {
    font-size: 6.56vw;
    line-height: 6.56vw;
    row-gap: 1.56vw;
    margin-bottom: 9.38vw;
    white-space: nowrap;
  }

  #header .description .event-title span:last-child {
    font-size: 5vw;
    line-height: 5vw;
  }

  #header .description .event-details {
    display: none;
  }

  #header .description .event-details--mobile {
    display: block;
    font-family: TT Travels Medium;
    font-weight: 500;
    font-size: 3.5vw;
    line-height: 120%;
    letter-spacing: 0;
    text-align: center;
    color: white;
    margin-bottom: 4.69vw;
  }

  #header .buttons {
    flex-direction: column;
    row-gap: 4.69vw;
  }

  #header .join-btn {
    font-size: 2.5vw;
    line-height: 3.44vw;
    padding: 2.5vw 5vw;
    border-radius: 6.56vw;
    box-shadow: 0vw 0.83vw 3.1vw 0vw #0000001a;
  }

  #header .event-subtitle {
    font-size: 2.5vw;
    line-height: 120%;
    margin: 9.38vw 0;
  }

  #header .left-bubbles {
    position: absolute;
    left: 13.28vw;
    bottom: -6.77vw;
    width: 22.92vw;
    height: 23.18vw;
    z-index: 0;
    display: none;
  }

  #header .right-bottom-bubbles {
    position: absolute;
    top: 8.07vw;
    right: 0;
    width: 38.28vw;
    height: 41.41vw;
    z-index: 0;
    display: none;
  }

  #header .right-top-bubbles:not(.right-top-bubbles--mobile) {
    display: none;
  }

  #header .right-top-bubbles--mobile {
    position: absolute;
    top: 0;
    right: 0;
    width: 79.38vw;
    height: 81.56vw;
    z-index: 0;
    display: block;
  }

  #header .left-man:not(.left-man--mobile) {
    display: none;
  }

  #header .left-man--mobile {
    position: absolute;
    left: 0;
    top: 9.38vw;
    width: 64.38vw;
    height: 107.81vw;
    z-index: 0;
    display: block;
  }

  #header .left-man-bubble:not(.left-man-bubble--mobile) {
    display: none;
  }

  #header .left-man-bubble--mobile {
    position: absolute;
    left: -1.56vw;
    bottom: -14.06vw;
    width: 24.06vw;
    height: 44.06vw;
    z-index: 0;
    display: block;
  }

  #header .right-man:not(.right-man--mobile) {
    display: none;
  }

  #header .right-man--mobile {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 65.63vw;
    height: 168.13vw;
    z-index: 0;
  }

  #header .right-man-bubble:not(.right-man-bubble--mobile) {
    display: none;
  }

  #header .right-man-bubble--mobile {
    position: absolute;
    right: 0;
    bottom: -21.25vw;
    width: 37.81vw;
    height: 69.06vw;
    z-index: 0;
    display: block;
  }

  #header .right-man-rectangle {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 42.45vw;
    height: 100%;
    background-image: url("../../img/header/right-man-rectangle.png");
    background-size: 100% 50.52vw;
    z-index: 0;
    opacity: 0.44;
    display: none;
  }

  #header .right-bottom-white-bubbles {
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
    height: 9.38vw;
    pointer-events: none;
    z-index: 0;
    display: none;
  }

  #header .arrow--mobile {
    display: block;
    width: 5vw;
    height: 2.81vw;
  }

  #header .arrow--mobile {
    animation: floatArrow 3s ease-in-out infinite;
    will-change: transform;
    transform-origin: center;
  }

  @keyframes floatArrow {
    0%,
    100% {
      transform: translateY(0) scale(1);
    }
    25% {
      transform: translateY(-1.56vw) scale(1.01);
    }
    50% {
      transform: translateY(0) scale(1);
    }
    75% {
      transform: translateY(-1.56vw) scale(1.01);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    #header .arrow--mobile {
      animation: none;
    }
  }

  #header .menu {
    display: none;
  }

  #header .menu-mobile {
    display: none;
  }

  #header .toggle-button {
    font-family: Artegra Sans Extended;
    font-weight: 500;
    font-size: 3.91vw;
    line-height: normal;
    letter-spacing: -0.02em;
    background: transparent;
    color: rgba(0, 0, 0, 1);
    border: none;
    display: flex;
    display: -ms-flex;
    flex-direction: row;
    align-items: center;
    column-gap: 2.5vw;
    z-index: 3;
    padding: 0;
    position: fixed;
    top: 7.81vw;
    left: 7.81vw;
    height: 5.63vw;
  }

  #header .toggle-button:focus {
    outline: none;
  }

  #header .toggle-button img {
    height: 3.13vw;
    width: auto;
  }

  #header .toggle-button img:nth-of-type(2) {
    display: none;
  }

  #header .toggle-button.sidebar_open img:nth-of-type(2) {
    display: block;
  }

  #header .toggle-button.sidebar_open img:nth-of-type(1) {
    display: none;
  }

  #sidebar {
    position: fixed;
    height: -webkit-fill-available;
    height: 100%;
    top: 0;
    background: white;
    color: black;
    transition: left 0.3s ease;
    z-index: 2;
    display: flex;
    display: -ms-flex;
    flex-direction: column;
    justify-content: space-between;
    width: 64.06vw;
    left: -64.06vw;
    padding: 20.94vw 0 9.38vw 7.81vw;
  }

  .sidebar.open {
    left: 0 !important;
  }

  #sidebar .menu-items {
    font-size: 4.06vw;
    line-height: 5vw;
    margin-bottom: 5.7vw;
  }

  #sidebar .menu-items li:not(:last-child) {
    margin-bottom: 5vw;
  }

  #sidebar ul {
    list-style: none;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 1.25vw;
    line-height: 1.52vw;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
  }

  #sidebar .menu-items li:not(:last-child) {
    margin-bottom: 4.06vw;
  }

  #sidebar ul a {
    color: rgba(171, 168, 156, 1);
    text-decoration: none;
    font-weight: 400;
  }

  #sidebar ul a.active {
    color: #4dacd4;
    font-weight: 500;
    text-decoration: underline;
  }

  #sidebar .social {
    font-family: Montserrat;
    font-weight: 400;
    letter-spacing: 0;
    font-size: 3.44vw;
    line-height: 4.06vw;
    display: flex;
    display: -ms-flex;
    flex-direction: row-reverse;
    column-gap: 5vw;
    row-gap: 2.5vw;
    justify-content: flex-end;
    margin-top: auto;
  }

  #sidebar .social li {
    display: flex;
    display: -ms-flex;
    flex-direction: row;
    align-items: center;
    column-gap: 1.56vw;
    margin-bottom: 0;
  }

  #sidebar .social li a {
    color: rgba(84, 84, 84, 1);
  }

  #sidebar .social li img {
    height: 5vw;
    width: auto;
  }

  #sidebar .top__button {
    display: inline-block;
    font-size: 2.5vw;
    line-height: 3.44vw;
    border-radius: 6.56vw;
    padding: 2.5vw 5vw;
    margin-left: 0;
    opacity: 1;
    width: fit-content;
    border: none;
    color: white;
    font-family: "Montserrat";
    font-weight: 500;
    text-transform: uppercase;
    background: linear-gradient(90deg, #abb249 0%, #4dacd4 100%);
    box-shadow: 0vw 0.83vw 3.1vw 0vw #0000001a;
  }

  #sidebar .top__button + .top__button {
    color: black;
    background: white;
  }

  #sidebar .top__button:focus {
    outline: none;
  }

  #sidebar .top__button:first-of-type {
    margin-bottom: 4.7vw;
  }

  #sidebar .top__button:disabled {
    opacity: 0.5;
  }

  #sidebar .contacts {
    margin-top: 3.44vw;
    display: flex;
    display: -ms-flex;
    flex-direction: row;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 3.13vw;
    line-height: 4.38vw;
    letter-spacing: 0;
    color: rgba(84, 84, 84, 1);
    text-align: left;
  }

  #sidebar .contacts li {
    display: flex;
    column-gap: 1.56vw;
  }

  #sidebar .contacts a {
    color: rgba(84, 84, 84, 1);
    text-decoration: none;
  }
}

.modal-backdrop.show {
  opacity: 0.65;
}

#regmodal .modal-dialog,
#modalActs .modal-dialog {
  max-width: 32.29vw;
  margin: 8.33vw auto auto;
}

#regmodal .modal-close,
#modalActs .modal-close {
  height: 1.04vw;
  width: 1.04vw;
  background: url(../../img/header/close.png) center center no-repeat;
  background-size: contain;
  border: none;
  outline: none;
  position: absolute;
  right: -1.93vw;
  top: -1.09vw;
}

#regmodal .modal-content,
#modalActs .modal-content {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 0.21vw 2.22vw 0px rgba(0, 0, 0, 0.25);
  border: none;
  border-radius: 0.78vw;
}

#regmodal .modal-body,
#modalActs .modal-body {
  padding: 2.08vw 3.91vw 2.6vw;
  border-radius: 0.78vw;
}

#regmodal .modal-title,
#modalActs .modal-title {
  font-family: TT Travels Medium;
  font-weight: 500;
  font-size: 1.3vw;
  line-height: normal;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  color: #434343;
  margin-bottom: 0.78vw;
}

#regmodal form,
#modalActs form {
  margin: 0;
}

#regmodal .form-group,
#modalActs .form-group {
  display: flex;
  display: -ms-flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 0.26vw;
  margin-bottom: 0.52vw;
}

#regmodal .form-group label,
#modalActs .form-group label {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 0.83vw;
  line-height: normal;
  letter-spacing: 0;
  color: black;
  margin: 0;
}

#regmodal .form-group .required {
  color: rgba(245, 85, 15, 1);
}

#regmodal .form-group input,
#modalActs .form-group input {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 0.83vw;
  line-height: normal;
  letter-spacing: 0;
  color: black;
  padding: 0.52vw 0.94vw;
  border-radius: 0.52vw;
  margin: 0;
  background: rgba(224, 224, 224, 1);
  border: none;
  box-shadow: none;
}

#regmodal .choice-package {
  margin-top: 0!important;
  position: relative;
  margin-bottom: 0!important;
  cursor: pointer;
  width: 100%;
}

#regmodal .choice-package__head {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 0.83vw;
  line-height: normal;
  letter-spacing: 0;
  color: rgba(130, 130, 130, 1);
  padding: 0.52vw 0.94vw;
  border-radius: 0.52vw;
  margin: 0;
  background: rgba(224, 224, 224, 1);
  display: flex;
  display: -ms-flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

#regmodal .choice-package__arrow {
  background: url(../../img/header/form-arrow.png);
  background-size: 100% 100%;
  width: 0.68vw;
  height: 0.31vw;
  border: none;
  transform: scaleY(-1);
}

#regmodal .choice-package.active .choice-package__arrow {
  transform: scaleY(1);
}

#regmodal .choice-package__arrow:focus {
  outline: none;
}

#regmodal .choice-package__body {
  position: absolute;
  top: 100%;
  flex-direction: column;
  row-gap: 0.26vw;
  width: 100%;
  padding-top: 0.26vw;
  z-index: 1;
  display: none;
}

#regmodal .choice-package.active .choice-package__body {
  display: flex;
  display: -ms-flex;
}

#regmodal .choice-group {
  padding: 0.62vw 2.45vw;
  background: #434343;
  width: 100%;
  border-radius: 0.57vw;
}

#regmodal .choice-group input[type="radio"] {
  display: none;
}

#regmodal .choice-group label {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 0.83vw;
  line-height: 100%;
  letter-spacing: 0;
  color: white;
  position: relative;
  margin: 0;
}

#regmodal .choice-group input[type="radio"] + label:before {
  content: "";
  position: absolute;
  left: -1.46vw;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0.94vw;
  height: 0.94vw;
  border-radius: 0.21vw;
  background: white;
}

#regmodal .choice-group input[type="radio"]:checked + label:after {
  position: absolute;
  top: 0.05vw;
  bottom: 0;
  left: -1.46vw;
  margin: auto;
  width: 0.94vw;
  height: 0.94vw;
  content: "";
  background: url(../../img/header/check-icon.png);
  background-size: contain;
  display: flex;
  display: -ms-flex;
  justify-content: center;
  align-items: center;
}

#regmodal .check-group {
  padding-left: 2.03vw;
}

#regmodal .check-group input[type="checkbox"] {
  display: none;
}

#regmodal .check-group label {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 0.66vw;
  line-height: normal;
  letter-spacing: 0;
  color: rgba(110, 110, 110, 1);
  position: relative;
  display: flex;
  display: -ms-flex;
  align-items: flex-start;
}

#regmodal .check-group label a {
  color: rgba(110, 110, 110, 1);
  text-decoration: underline;
}

#regmodal .check-group input[type="checkbox"] + label:before {
  content: "";
  position: absolute;
  left: -2.03vw;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1.25vw;
  height: 1.25vw;
  border-radius: 0.31vw;
  background: rgba(217, 217, 217, 1);
}

#regmodal .check-group input[type="checkbox"]:checked + label:after {
  position: absolute;
  top: 0.05vw;
  bottom: 0;
  left: -2.03vw;
  margin: auto;
  width: 1.25vw;
  height: 1.25vw;
  content: "";
  background: url(../../img/header/check-icon.png);
  background-size: contain;
  display: flex;
  display: -ms-flex;
  justify-content: center;
  align-items: center;
}

#regmodal .show-message {
  position: relative;
  padding: 0;
  border: none;
  background: transparent;
  outline: none !important;
  margin-top: 0.16vw;
}

#regmodal .show-message img {
  height: 0.83vw;
  width: auto;
}

#regmodal .show-message .hidden-message {
  display: none;
}

#regmodal .show-message:hover .hidden-message {
  display: block;
  position: absolute;
  top: 0.68vw;
  left: -0.1vw;
  width: 12.5vw;
  border-radius: 0.62vw;
  background: #6e6e6e;
  box-shadow: 0px 0.22vw 0.22vw 0px rgba(0, 0, 0, 0.25);
  padding: 0.52vw 0.78vw;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 0.57vw;
  line-height: normal;
  letter-spacing: 0;
  z-index: 1;
  text-align: left;
  color: white;
  cursor: default;
}

#regmodal .agree-group + .agree-group {
  margin-top: 0.36vw;
}

#regmodal .agree-group + .agree-group span {
  width: 18vw;
}

#regmodal .text-center {
  margin-top: 1.82vw;
}

#modalActs .btnRegis {
  text-align: center;
  margin-bottom: 1vw;
}

#regmodal .btn,
#modalActs .btnRegis button {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 1vw;
  line-height: normal;
  letter-spacing: -0.02em;
  color: white;
  border: none;
  background: linear-gradient(90deg, #abb249 0%, #399ac4 100%);
  box-shadow: 0px 0.08vw 0.08vw 0px rgba(207, 207, 207, 0.16);
  padding: 0.62vw 1.25vw;
  border-radius: 1.67vw;
  min-width: 10vw;
}

#modalActs .btnRegis button {
  margin-top: 1vw;
}

#regmodal .btn:focus,
#modalActs .btnRegis button:focus {
  outline: none;
}

#modalActs .form-group {
  position: relative;
}

#modalActs .show-password-link {
  position: absolute;
  right: 0.42vw;
  top: 1.82vw;
  line-height: 0.78vw;
  cursor: pointer;
}

#modalActs .modal-desc {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 0.83vw;
  line-height: normal;
  letter-spacing: 0;
  color: black;
  margin: 0;
  text-align: center;
}

#modalActs #actLinks {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 0.83vw;
  line-height: normal;
  letter-spacing: 0;
  color: black;
  margin: 0;
  display: flex;
  display: -ms-flex;
  flex-direction: column;
}

#modalActs .acts-title {
  margin-bottom: 0.5vw;
}

#modalActs #actLinks a {
  color: rgba(116, 138, 158, 1);
}

#regsuccess .modal-dialog,
#programAlert .modal-dialog {
  max-width: 28.91vw;
  margin-top: 18.49vw;
}

#regsuccess .modal-content,
#programAlert .modal-content {
  background: none;
  padding: 0;
  border: none;
}

#regsuccess .modal-body,
#programAlert .modal-body {
  background: white;
  border-radius: 0.78vw;
  box-shadow: 0px 0.21vw 2.23vw 0px rgba(0, 0, 0, 0.25);
  padding: 2vw 4vw;
  text-align: center;
}

#programAlert .modal-body {
  padding: 1.82vw 1.15vw 1.67vw 12.5vw;
}

#programAlert .modal-body:before {
  background: url(../../img/header/program.png) center center no-repeat;
  background-size: contain;
  width: 18.85vw;
  left: -4vw;
}

#regsuccess .modal-title,
#programAlert .modal-title {
  font-family: TT Travels Medium;
  font-weight: 500;
  font-size: 1.15vw;
  line-height: 1.3vw;
  letter-spacing: 0;
  margin-bottom: 0.1vw;
  color: #4dacd4;
  text-transform: uppercase;
}

#regsuccess .modal-subtitle,
#programAlert .modal-subtitle {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 1.08vw;
  line-height: normal;
  letter-spacing: 0;
  color: #414141;
}

#regsuccess .modal-close,
#programAlert .modal-close {
  height: 1.04vw;
  width: 1.04vw;
  background: url(../../img/header/close.png) center center no-repeat;
  background-size: contain;
  border: none;
  outline: none;
  position: absolute;
  right: -1.93vw;
  top: -1.09vw;
}

@media (max-width: 575.5px) {
  #regmodal .modal-dialog,
  #modalActs .modal-dialog {
    max-width: 95.31vw;
    margin: 38.75vw auto auto;
  }

  #regmodal .modal-close,
  #modalActs .modal-close {
    height: 3.44vw;
    width: 3.44vw;
    right: 3.13vw;
    top: 3.13vw;
    z-index: 1;
  }

  #regmodal .modal-content,
  #modalActs .modal-content {
    box-shadow: 0px 6.78vw 72.06vw 0px rgba(0, 0, 0, 0.25);
    border-radius: 2.5vw;
  }

  #regmodal .modal-body,
  #modalActs .modal-body {
    padding: 6.25vw 10.94vw 7.81vw;
    border-radius: 2.5vw;
  }

  #regmodal .modal-title,
  #modalActs .modal-title {
    font-size: 4.38vw;
    margin-bottom: 1.88vw;
  }

  #regmodal .form-group,
  #modalActs .form-group {
    row-gap: 0.78vw;
    margin-bottom: 1.56vw;
  }

  #regmodal .form-group label,
  #modalActs .form-group label {
    font-size: 2.81vw;
  }

  #regmodal .form-group input,
  #modalActs .form-group input {
    font-size: 2.81vw;
    padding: 1.56vw 3.13vw;
    border-radius: 1.88vw;
    height: 6.88vw;
  }

  #regmodal .choice-package {
    margin-top: 4.69vw;
    position: relative;
    margin-bottom: 4.69vw;
  }

  #regmodal .choice-package__head {
    font-size: 2.81vw;
    padding: 1.56vw 2.19vw 1.56vw 3.13vw;
    border-radius: 1.88vw;
    height: 6.88vw;
  }

  #regmodal .choice-package__arrow {
    width: 2.81vw;
    height: 1.25vw;
    background: url(../../img/header/form-arrow.png) no-repeat;
    background-size: contain;
  }

  #regmodal .choice-package__body {
    row-gap: 0.78vw;
    padding-top: 0.94vw;
  }

  #regmodal .choice-group {
    padding: 1.88vw 2.81vw 1.88vw 7.19vw;
    border-radius: 1.72vw;
  }

  #regmodal .choice-group label {
    font-size: 2.5vw;
  }

  #regmodal .choice-group input[type="radio"] + label:before {
    left: -4.38vw;
    width: 2.81vw;
    height: 2.81vw;
    border-radius: 0.63vw;
  }

  #regmodal .choice-group input[type="radio"]:checked + label:after {
    left: -4.38vw;
    width: 2.81vw;
    height: 2.81vw;
    top: 0.16vw;
  }

  #regmodal .check-group {
    padding-left: 6.25vw;
  }

  #regmodal .check-group label {
    font-size: 2.03vw;
  }

  #regmodal .check-group input[type="checkbox"] + label:before {
    left: -6.25vw;
    width: 4.06vw;
    height: 4.06vw;
    border-radius: 1.09vw;
  }

  #regmodal .check-group input[type="checkbox"]:checked + label:after {
    left: -6.25vw;
    width: 4.06vw;
    height: 4.06vw;
    top: 0.63vw;
  }

  #regmodal .show-message {
    margin-top: 0.53vw;
  }

  #regmodal .show-message img {
    height: 2.7vw;
  }

  #regmodal .show-message:hover .hidden-message {
    top: 3.13vw;
    left: -21.88vw;
    width: 40vw;
    border-radius: 2.03vw;
    box-shadow: 0px 0.7vw 0.7vw 0px rgba(0, 0, 0, 0.25);
    padding: 1.56vw 2.19vw;
    font-weight: 400;
    font-size: 1.88vw;
  }

  #regmodal .agree-group + .agree-group {
    margin-top: 1.88vw;
  }

  #regmodal .agree-group + .agree-group span {
    width: 58.44vw;
  }

  #regmodal .text-center {
    margin-top: 5.31vw;
  }

  #regmodal .btn,
  #modalActs .btnRegis button {
    font-size: 3.28vw;
    box-shadow: 0px 0.26vw 0.26vw 0px rgba(207, 207, 207, 0.16);
    padding: 1.88vw 3.75vw;
    border-radius: 4.69vw;
    min-width: 30vw;
  }

  #modalActs .btnRegis {
    margin-bottom: 3vw;
  }

  #modalActs .show-password-link {
    right: 2vw;
    top: 6.4vw;
    width: 4vw;
  }

  #modalActs #actLinks {
    font-size: 2.81vw;
  }

  #modalActs .acts-title {
    margin-bottom: 1vw;
  }

  #modalActs .modal-desc {
    font-size: 2.81vw;
  }

  #regsuccess .modal-dialog,
  #programAlert .modal-dialog {
    max-width: 81.25vw;
    margin: 75vw auto 0;
  }

  #regsuccess .modal-body,
  #programAlert .modal-body {
    border-radius: 2.5vw;
    box-shadow: 0px 0.59vw 6.31vw 0px rgba(0, 0, 0, 0.25);
    padding: 5vw 10vw;
  }

  #regsuccess .modal-body:before,
  #programAlert .modal-body:before {
    width: 30vw;
    height: 34.69vw;
    bottom: -0.5vw;
  }

  #regsuccess .modal-title,
  #programAlert .modal-title {
    font-size: 3.2vw;
    line-height: 3.6vw;
    margin-bottom: 0.43vw;
    white-space: nowrap;
  }

  #regsuccess .modal-subtitle,
  #programAlert .modal-subtitle {
    font-size: 3.05vw;
  }

  #regsuccess .modal-close,
  #programAlert .modal-close {
    height: 2.81vw;
    width: 2.81vw;
    right: -3.56vw;
    top: -3.56vw;
  }
}

/*NEW STYLES 03.09.2025*/
/* #header .content {
    padding: 6.77vw 4.17vw 5.73vw;
    background-image: url(../../img/header/header-new-bg.png?ver=1);
}

#header .description .event-title {
    margin-left: auto;
}

#header .description .event-email {
    margin-left: auto;
}

#header .description .event-email a {
    font-family: Artegra Sans Extended;
    font-weight: 400;
    font-style: Regular;
    font-size: 1.40vw;
    line-height: 1.98vw;
    letter-spacing: 0;
    color: white;
    margin-left: auto;
}

#header .description .event-tel a {
    font-family: Artegra Sans Extended;
    font-weight: 400;
    font-style: SemiBold;
    font-size: 1.40vw;
    line-height: 2.03vw;
    letter-spacing: 0;
    color: white;
} */

/* #header .description .event-data::before {
    background-image: url(../../img/header/header-new-img.png);
} */

#sidebar .social {
  flex-direction: column;
}

@media (max-width: 575.5px) {
  /* #header .content {
        padding: 20.31vw 6.25vw 101.56vw;
        background-image: url(../../img/header/header-new-bg-mobile.png?ver=1);
    }

    #header .description {
        position: relative;
        z-index: 1;
    }

    #header .description .event-email {
        display: none;
    }

    #header .description .event-tel {
        display: none;
    }

    #header .description .event-subtitle {
        margin-right: auto;
    }

    #header .description .event-data {
        flex-direction: column;
        row-gap: 3.12vw;
        margin-top: 6.88vw;
        font-family: Century Gothic;
        font-weight: 400;
        font-size: 3.51vw;
        line-height: 143%;
        letter-spacing: -0.02em;
    } */
}

.to-top {
  position: fixed;
  right: 2.08vw;
  bottom: 2.08vw;
  width: 3.13vw;
  height: 3.13vw;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../../img/header/to-top.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  font-size: 1.25vw;
  box-shadow: 0vw 0.21vw 0.78vw 0vw #0000001a;
  visibility: hidden;
  opacity: 0.5;
  transform: translate3d(0, 0.52vw, 0);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  will-change: transform, opacity;
}

.to-top.show {
  opacity: 0.85;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  animation: toTopFloat 3.2s ease-in-out infinite;
}

@keyframes toTopFloat {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -0.42vw, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

.to-top.show:hover {
  opacity: 1;
  transform: translate3d(0, -0.55vw, 0);
  box-shadow: 0vw 0.42vw 1.15vw rgba(0, 0, 0, 0.18);
}

.to-top.show:active {
  transform: translate3d(0, -0.3vw, 0);
  opacity: 0.95;
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .to-top.show {
    animation: none !important;
  }
}

@media (max-width: 575.5px) {
  .to-top {
    bottom: 10vw;
    width: 10.45vw;
    height: 10.45vw;
    right: 5vw;
  }
}
