@charset "UTF-8";
html {
  font-size: 100%;
}
@media (min-width: 1200px) {
  html {
    font-size: 106.25%;
  }
}

body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: #333740;
  margin: 0;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1a0a3f;
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2.2rem;
  text-align: center;
}

h3 {
  font-size: 1.7rem;
}

p {
  margin-bottom: 1rem;
}

strong,
b {
  font-weight: 700;
}

a {
  color: #562180;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
a:hover {
  color: #522cba;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

section {
  padding: 3.5rem 0;
}

.container {
  width: 90%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1360px;
  }
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.btn--primary {
  background-color: #562180;
  border-color: #562180;
  color: #ffffff;
}
.btn--primary:hover {
  background-color: #522cba;
  border-color: #522cba;
}
.btn--secondary {
  background-color: transparent;
  color: #562180;
  border-color: #562180;
}
.btn--secondary:hover {
  background-color: #562180;
  color: #ffffff;
}
.btn--secondary:hover span.material-symbols-outlined {
  color: #ffffff;
}
.btn--large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.top-bar {
  background-color: #ffffff;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
}
.top-bar__container {
  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;
  min-height: 4rem;
  gap: 4rem;
}
@media (max-width: 768px) {
  .top-bar__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem 2rem;
  }
}
.top-bar__logo-image {
  height: 60px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 768px) {
  .top-bar__logo-image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    margin-left: 1rem;
  }
}
.top-bar__collapsible-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 768px) {
  .top-bar__collapsible-content {
    display: none;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .top-bar__collapsible-content--active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.top-bar__menu {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 3rem auto;
  grid-template-columns: auto auto;
  -ms-grid-rows: auto 0 auto;
  grid-template-rows: auto auto;
      grid-template-areas: "lewy-gora prawy" "lewy-dol  prawy";
  gap: 0 3rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  justify-items: start;
  line-height: 1.4;
  margin-right: auto;
}
@media (max-width: 768px) {
  .top-bar__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin: 0;
    gap: 0.5rem;
  }
}
.top-bar__menu-item {
  color: #333740;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .top-bar__menu-item {
    text-align: left;
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 8px;
    background-color: #fff;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .top-bar__menu-item:hover, .top-bar__menu-item:focus {
    background-color: #78479c;
    color: white;
  }
  .top-bar__menu-item--phone {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .top-bar__menu-item--email {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .top-bar__menu-item--address {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.top-bar__menu-item--phone {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: lewy-gora;
}
.top-bar__menu-item--email {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: lewy-dol;
}
.top-bar__menu-item--address {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  grid-area: prawy;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .top-bar__reserve-button {
    margin-left: 0;
    margin-top: 1rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    padding: 1rem 2rem;
  }
}
.top-bar__hamburger {
  display: none;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #333740;
  line-height: 1;
}
.top-bar__hamburger .material-symbols-outlined {
  font-size: 32px;
}
@media (max-width: 768px) {
  .top-bar__hamburger {
    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;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.hero {
  position: relative;
  color: #ffffff;
  overflow: hidden;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: calc(100vh - 50px);
  background-color: #1a0a3f;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(51, 0, 153, 0)), color-stop(90%, rgba(51, 0, 153, 0)), to(rgba(51, 0, 153, 0.2))), radial-gradient(circle at 90% 40%, rgba(0, 191, 255, 0.8) 0%, rgba(75, 0, 130, 0.7) 46%, rgba(108, 8, 108, 0.5) 53%, rgba(0, 0, 0, 0.9) 63%);
  background-image: linear-gradient(to right, rgba(51, 0, 153, 0) 0%, rgba(51, 0, 153, 0) 90%, rgba(51, 0, 153, 0.2) 100%), radial-gradient(circle at 90% 40%, rgba(0, 191, 255, 0.8) 0%, rgba(75, 0, 130, 0.7) 46%, rgba(108, 8, 108, 0.5) 53%, rgba(0, 0, 0, 0.9) 63%);
  margin: -10px 0 0 0;
}
@media (min-width: 768px) {
  .hero {
    min-height: calc(100vh - 50px);
  }
}
.hero__video-background {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.hero__video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__text-content {
  text-align: center;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 576px) {
  .hero__text-content {
    padding-top: 1rem;
    padding-bottom: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 768px) {
  .hero__text-content {
    -ms-flex-preferred-size: 65%;
        flex-basis: 65%;
    text-align: left;
  }
}
.hero__title {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  line-height: 105%;
  color: #e0e0e0;
}
@media (min-width: 576px) {
  .hero__title {
    font-size: 2.8rem;
  }
}
@media (min-width: 992px) {
  .hero__title {
    font-size: 3.2rem;
  }
}
.hero__subtitle {
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 700;
  color: #e0e0e0;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
  position: relative;
}
@media (min-width: 576px) {
  .hero__subtitle {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  .hero__subtitle {
    font-size: 1.7rem;
  }
}
.hero__event-details {
  display: block;
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
  font-weight: 400;
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: right;
  position: relative;
}
.hero__event-details::before {
  display: block;
  content: "";
  width: 3rem;
  height: 3px;
  background-color: #1b87ce;
  position: absolute;
  right: 0;
  top: 0.73rem;
}
@media (max-width: 576px) {
  .hero__event-details {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    line-height: 200%;
  }
  .hero__event-details .hero__date {
    font-size: 1.4rem;
  }
  .hero__event-details .hero__location {
    font-size: 1.2rem;
  }
}
.hero__title-section {
  -ms-flex-preferred-size: 52%;
      flex-basis: 52%;
}
@media (max-width: 576px) {
  .hero__title-section {
    margin-top: 3rem;
  }
}
.hero__description {
  -ms-flex-preferred-size: fill;
      flex-basis: fill;
}
.hero__description-header {
  color: #e0e0e0;
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  margin-top: 2rem;
}
@media (max-width: 576px) {
  .hero__description-header {
    padding-top: 2.5rem;
    padding-bottotm: 2.5rem;
    padding-left: 0;
    padding-right: 0;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    position: relative;
  }
  .hero__description-header::after {
    display: block;
    content: "";
    width: 3rem;
    height: 3px;
    background-color: #1b87ce;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    top: -1rem;
  }
}
@media (max-width: 576px) {
  .hero__description-text {
    text-align: justify;
    font-size: 1.2rem;
    line-height: 140%;
    color: #e0e0e0;
  }
}
.hero__date {
  font-weight: 700;
  font-size: 2rem;
  margin-top: 2rem;
}
@media (max-width: 576px) {
  .hero__date {
    margin-top: 1rem;
  }
}
.hero__location {
  font-size: 1.3rem;
}

.program-overview {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.program-overview__row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
}
@media (max-width: 576px) {
  .program-overview__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.program-overview__row:not(:last-child)::after {
  content: "";
  display: block;
  width: 100%; /* Szerokość linii */
  height: 1px; /* Grubość linii */
  background-color: #adadad; /* Kolor linii */
  position: absolute;
  bottom: -2.5rem; /* Pozycjonowanie linii - połowa wartości 'gap' w kontenerze */
  left: 0;
}
.program-overview__summary {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: block;
  text-align: center;
}

.program-heading__text {
  -ms-flex-preferred-size: 80%;
      flex-basis: 80%;
}
.program-heading__agenda {
  word-wrap: unset;
}
@media (max-width: 576px) {
  .program-heading__agenda {
    margin: 0 auto;
  }
}
.program-heading__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 100%;
  color: #1a0a3f;
}
@media (max-width: 576px) {
  .program-heading__title {
    text-align: center;
    width: 100%;
    display: inline-block;
    margin-bottom: 2rem;
    font-size: 2.2rem;
  }
}
.program-heading__agenda {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  text-align: right;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.program-module {
  line-height: 120%;
  font-size: 1.1rem;
  /** FIRST COLUMN */
  /** MIDDLE COLUMN */
  /** FOOTER */
}
@media (max-width: 768px) {
  .program-module {
    gap: 1rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.program-module__header {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
}
@media (max-width: 768px) {
  .program-module__header {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .program-module__header {
    text-align: left;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.program-module__content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.program-module__footer {
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
}
.program-module__title {
  font-size: 5rem;
  color: #1b87ce;
  margin: 0;
}
@media (max-width: 768px) {
  .program-module__title {
    font-size: 2.5rem;
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
  }
}
.program-module__date {
  font-weight: 700;
  font-size: 1.8rem;
  color: #333740;
  margin: 0;
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
}
@media (max-width: 768px) {
  .program-module__date {
    text-align: right;
    font-size: 1.6rem;
  }
}
.program-module__optional {
  margin-top: 0.3rem;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media (max-width: 576px) {
  .program-module__optional {
    text-align: left;
  }
}
.program-module__content {
  line-height: 140%;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .program-module__content {
    margin-top: 1rem;
  }
}
@media (max-width: 576px) {
  .program-module__content {
    background-color: #f2f2f2;
    margin-top: 0;
    padding: 1rem;
    border-radius: 8px;
  }
}
.program-module__text-lead {
  font-weight: 700;
  padding: 0;
  margin: 0;
}
.program-module__text-detail {
  color: #333740;
  list-style-type: "- ";
  padding-left: 1rem;
}
.program-module__footer {
  text-align: right;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media (max-width: 768px) {
  .program-module__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
  }
}
@media (max-width: 576px) {
  .program-module__footer {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    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;
  }
}
.program-module__price-lead {
  margin: 0;
}
.program-module__price-lead--accent {
  color: #1b87ce;
  font-weight: 700;
}
@media (max-width: 576px) {
  .program-module__price-lead {
    text-align: left;
  }
}
.program-module__price {
  font-size: 2.6rem;
  font-weight: 700;
  margin: 1.1rem 0;
}
@media (max-width: 576px) {
  .program-module__price {
    font-size: 2.3rem;
  }
}

.we-invite {
  background-color: #000;
  background-clip: padding-box;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(51, 0, 153, 0)), color-stop(90%, rgba(51, 0, 153, 0)), to(rgba(51, 0, 153, 0.2))), radial-gradient(circle at 100% 80%, rgba(0, 191, 255, 0.8) 0%, rgba(75, 0, 130, 0.7) 46%, rgba(108, 8, 108, 0.5) 53%, rgba(0, 0, 0, 0.9) 63%);
  background-image: linear-gradient(to right, rgba(51, 0, 153, 0) 0%, rgba(51, 0, 153, 0) 90%, rgba(51, 0, 153, 0.2) 100%), radial-gradient(circle at 100% 80%, rgba(0, 191, 255, 0.8) 0%, rgba(75, 0, 130, 0.7) 46%, rgba(108, 8, 108, 0.5) 53%, rgba(0, 0, 0, 0.9) 63%);
  margin: -10px 0 0 0;
  color: #e0e0e0;
  position: relative;
}
@media (max-width: 768px) {
  .we-invite {
    overflow: hidden;
  }
}
.we-invite::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 6rem;
  background-color: white;
  z-index: 1;
}
@media (max-width: 768px) {
  .we-invite::after {
    z-index: 0;
  }
}
.we-invite .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5rem;
  position: relative;
}
.we-invite__left-column {
  padding-top: 3rem;
  padding-bottom: 3rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6rem;
}
@media (max-width: 768px) {
  .we-invite__left-column {
    padding: 17rem 0 1rem 0;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .we-invite__left-column {
    padding: 10rem 0 1rem 0;
  }
}
.we-invite__heading {
  position: relative;
  margin-top: 6rem;
}
@media (max-width: 768px) {
  .we-invite__heading {
    display: none;
    font-size: 1.6rem;
    margin-top: 1rem;
    margin-bottom: 4rem;
  }
}
.we-invite__heading::after {
  display: block;
  content: "";
  width: 3rem;
  height: 3px;
  background-color: #1b87ce;
  position: absolute;
  bottom: -1rem;
  background-color: #78479c;
  height: 2px;
  width: 2rem;
}
.we-invite__names {
  font-size: 2.2rem;
  line-height: 140%;
  font-weight: bold;
  position: relative;
}
@media (max-width: 768px) {
  .we-invite__names {
    position: relative;
    font-size: 2.9rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 110%;
  }
  .we-invite__names-block {
    z-index: 10;
    margin: 0 -3rem -1rem;
    padding: 0.8rem 3rem 1rem;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, rgba(0, 191, 255, 0)), color-stop(53%, rgba(46, 8, 108, 0.5)), to(rgba(0, 0, 0, 0.9)));
    background: linear-gradient(to bottom, rgba(0, 191, 255, 0) 1%, rgba(46, 8, 108, 0.5) 53%, rgba(0, 0, 0, 0.9) 100%);
  }
}
@media (max-width: 576px) {
  .we-invite__names {
    font-size: 1.7rem;
  }
}
.we-invite__text {
  font-style: italic;
  font-size: 1.2rem;
}
.we-invite__right-column {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  position: relative;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media (max-width: 768px) {
  .we-invite__right-column {
    position: absolute;
    z-index: 1;
  }
}
.we-invite__image {
  position: relative;
  bottom: 0;
  max-height: 140%;
  z-index: 2;
}
@media (max-width: 768px) {
  .we-invite__image {
    z-index: 2;
  }
}

.certification {
  text-align: center;
  padding: 4rem 0;
}
.certification > .container {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.certification > .container > * {
  padding: 0;
  margin: 0;
}
.certification__title {
  font-size: 3.6rem;
}
@media (max-width: 576px) {
  .certification__title {
    line-height: 110%;
    font-size: 3.1rem;
    font-weight: 700;
  }
}
.certification__description {
  font-size: 1.25rem;
  line-height: 120%;
  width: 75%;
}
@media (max-width: 576px) {
  .certification__description {
    width: 100%;
  }
}
.certification__includes-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-top: 3rem !important;
  position: relative;
}
@media (max-width: 576px) {
  .certification__includes-title {
    width: 100%;
    color: #0f4c74;
    text-transform: uppercase;
  }
  .certification__includes-title::before {
    display: block;
    content: "";
    width: 3rem;
    height: 3px;
    background-color: #1b87ce;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    top: -1rem;
  }
}
.certification__includes {
  font-style: italic;
  font-size: 1.6rem;
}
@media (max-width: 576px) {
  .certification__includes {
    font-size: 1.4rem;
    line-height: 160%;
  }
  .certification__includes .divider {
    font-size: 2rem;
    font-weight: 400;
  }
}
.certification__includes .divider {
  color: #1b87ce;
  font-weight: 700;
}
.certification__summary {
  font-size: 1.25rem;
  margin-top: 3rem !important;
  position: relative;
}
.certification__summary::before {
  display: block;
  content: "";
  width: 3rem;
  height: 3px;
  background-color: #1b87ce;
  position: absolute;
  height: 2px;
  background-color: #562180;
  width: 2rem;
  left: 50%;
  top: -0.5rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 576px) {
  .certification__summary {
    line-height: 120%;
  }
  .certification__summary::before {
    top: -1.8rem;
  }
}

.registration {
  background-color: #000;
}
.registration > .container {
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .registration > .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.registration__column-left, .registration__column-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  place-self: center;
  position: relative;
}
.registration__column-left {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 576px) {
  .registration__column-left {
    padding: 1rem 3rem;
  }
}
.registration__logo {
  width: clamp(20vw, 25%, 80vw);
  height: auto;
  margin: auto 0;
}
@media (max-width: 576px) {
  .registration__logo {
    width: 33vw;
    margin-left: 1.3rem;
    margin-right: auto;
  }
}
.registration__column-right {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
.registration .registration-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #000000;
  padding: 24px;
  max-width: 500px;
  width: 100%;
}
@media (max-width: 576px) {
  .registration .registration-form {
    padding: 16px;
  }
}
.registration .registration-form__info {
  font-size: 1.2rem;
  color: #b0b0b0;
  margin-bottom: 8px;
}
.registration .registration-form__title {
  font-size: 3rem;
  color: #ffffff;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 32px;
}
.registration .registration-form__notes {
  margin-top: 32px;
}
.registration .registration-form__note {
  font-size: 1rem;
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 8px;
}
.registration .registration-form__note:last-child {
  margin-bottom: 0;
}
.registration .form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.registration .form__group {
  margin-bottom: 0;
}
.registration .form__group > p {
  position: relative;
  margin-bottom: 24px;
}
.registration .form__input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #6a359c;
  color: #ffffff;
  padding: 20px 4px 4px 4px;
  font-size: 1.65rem;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.registration .form__input:focus {
  outline: none;
  border-bottom-color: #1b87ce;
}
.registration .form__input::-webkit-input-placeholder {
  color: transparent;
}
.registration .form__input::-moz-placeholder {
  color: transparent;
}
.registration .form__input:-ms-input-placeholder {
  color: transparent;
}
.registration .form__input::-ms-input-placeholder {
  color: transparent;
}
.registration .form__input::placeholder {
  color: transparent;
}
.registration .form__label {
  position: absolute;
  left: 4px;
  top: 16px;
  font-size: 1rem;
  font-style: italic;
  color: #b0b0b0;
  pointer-events: none;
  -webkit-transition: top 0.2s ease-out, font-size 0.2s ease-out, color 0.2s ease-out;
  transition: top 0.2s ease-out, font-size 0.2s ease-out, color 0.2s ease-out;
  text-transform: lowercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 8px);
  z-index: 1;
}
.registration .form__button {
  background-color: #6a359c;
  color: #ffffff;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  cursor: pointer;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: 24px;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.registration .form__button:hover {
  background-color: #502876;
}
.registration .form__button__group > p:has(span.wpcf7-form-control-wrap > input.form__input:not(:-moz-placeholder-shown)) > label.form__label {
  top: 2px;
  font-size: 0.85rem;
  color: #1b87ce;
}
.registration .form__button__group > p:has(span.wpcf7-form-control-wrap > input.form__input:not(:-ms-input-placeholder)) > label.form__label {
  top: 2px;
  font-size: 0.85rem;
  color: #1b87ce;
}
.registration .form__button__group > p:has(span.wpcf7-form-control-wrap > input.form__input:focus) > label.form__label, .registration .form__button__group > p:has(span.wpcf7-form-control-wrap > input.form__input:not(:placeholder-shown)) > label.form__label {
  top: 2px;
  font-size: 0.85rem;
  color: #1b87ce;
}
.registration .wpcf7-response-output {
  color: #b0b0b0;
  border: 1px solid #6a359c;
  background-color: #0d0d0d;
  margin: 16px 0 0 0;
  padding: 12px;
  border-radius: 4px;
}
.registration .wpcf7-not-valid-tip {
  color: #ff6961;
  font-size: 0.9rem;
  margin-top: 4px;
}
.registration > p:has(input.wpcf7-submit) {
  margin-bottom: 0;
}
.registration .wpcf7-response-output {
  color: #b0b0b0;
  border: 1px solid #6a359c;
  background-color: #0d0d0d;
  margin: 16px 0 0 0;
  padding: 12px;
  border-radius: 4px;
}
.registration .wpcf7-not-valid-tip {
  color: #ff6961;
  font-size: 0.9rem;
  margin-top: 4px;
}
.registration > p:has(input.wpcf7-submit) {
  margin-bottom: 0;
}

.discover-more {
  background-color: #47196b;
  color: white;
}
.discover-more > .container {
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3rem;
}
@media (max-width: 768px) {
  .discover-more > .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.discover-more__column-left, .discover-more__column-right {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  place-self: center;
  position: relative;
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
@media (max-width: 992px) {
  .discover-more__column-left, .discover-more__column-right {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
  }
}
.discover-more__column-left {
  text-align: right;
}
.discover-more__title {
  text-transform: uppercase;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 112%;
  color: white;
  margin-bottom: 0;
  text-wrap: balance;
}
@media (max-width: 768px) {
  .discover-more__title {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .discover-more__title {
    font-size: 2.2rem;
  }
}
.discover-more__description {
  font-size: 0.9rem;
  color: #856c9e;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 0.5rem;
  text-wrap: balance;
}
@media (max-width: 768px) {
  .discover-more__description {
    font-size: 1.2rem;
    text-align: center;
  }
}
.discover-more__social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 700;
  font-size: 1.2rem;
  gap: 0.8rem;
}
.discover-more__social-links::after {
  content: "";
  display: block;
  width: 1px;
  height: 3rem;
  background-color: #856c9e;
  margin-top: 0.3rem;
}
@media (max-width: 768px) {
  .discover-more__social-links::after {
    display: none;
  }
}
.discover-more__link {
  color: #ffffff;
  line-height: 100%;
  padding: 0 1rem;
  font-size: 1.1rem;
  padding: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 768px) {
  .discover-more__link {
    background-color: white;
    padding: 1rem;
    font-size: 1.35rem !important;
  }
}
.discover-more__link:hover {
  padding-left: 1rem;
  color: inherit;
}
.discover-more__link .fa-brands {
  padding-right: 0.4rem;
}
@media (max-width: 768px) {
  .discover-more__link {
    line-height: 3rem;
    font-size: 1rem;
    border: 1px solid #562180;
    text-align: center;
    border-radius: 8px;
    margin: 0.3rem;
    color: #3b1757;
    display: inline-block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .discover-more__link .fa-brands {
    font-size: 2rem;
    padding: 0 0.5rem;
    -webkit-transform: translateY(0.3rem);
            transform: translateY(0.3rem);
  }
}

.footer {
  background-image: url("./../img/logo-bg.svg");
  background-repeat: no-repeat;
  background-size: 40%;
  background-position: 30% -50%;
}
.footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__column-left, .footer__column-right {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer__column-left, .footer__column-right {
    padding-top: 2rem;
    padding-bottom: 0;
  }
}
.footer__column-left {
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
.footer .certificates__image {
  padding: 1rem 2rem;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 768px) {
  .footer .certificates__image {
    padding: 1rem 0.5rem;
  }
}
.footer .certificates__image--IDEA {
  max-width: 30%;
}
@media (max-width: 992px) {
  .footer .certificates__image--IDEA {
    max-width: 50%;
  }
}
.footer .certificates__image--IMPLANTY {
  max-width: 50%;
}
@media (max-width: 992px) {
  .footer .certificates__image--IMPLANTY {
    max-width: 100%;
  }
}
.footer__column-right {
  text-align: justify;
  font-size: 0.9rem;
  line-height: 110%;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
@media (max-width: 768px) {
  .footer__column-right {
    padding-top: 2rem;
    padding-bottom: 0;
    font-size: 1.2rem;
    line-height: 120%;
  }
}
.footer__column-right p {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
.footer__copyrights {
  text-align: center;
  border-top: 1px solid #b1b6c1;
  padding-top: 1rem;
  padding-bottom: 2rem;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
.rc-anchor-container {
  background-color: red;
}

.top-navbar__lang-form {
  position: relative;
  padding-left: 0;
  margin-left: 0;
  border-left: none;
}
@media (max-width: 991px) {
  .top-navbar__lang-form {
    border-top: 1px solid #eaeaea;
    margin-top: 3rem;
    padding-top: 2rem;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    text-align: center;
  }
}
.top-navbar__lang-form .lang-switcher {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.top-navbar__lang-form .lang-switcher__trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.top-navbar__lang-form .lang-switcher__flag {
  width: 20px;
  height: auto;
  border-radius: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.top-navbar__lang-form .lang-switcher__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333740;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.top-navbar__lang-form .lang-switcher__arrow svg {
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.top-navbar__lang-form .lang-switcher__name {
  display: none;
}
.top-navbar__lang-form .lang-switcher__list {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 160px;
  background: white;
  border: 1px solid rgba(51, 55, 64, 0.1);
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  z-index: 1000;
  padding: 8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.top-navbar__lang-form .lang-switcher:hover .lang-switcher__list, .top-navbar__lang-form .lang-switcher__trigger[aria-expanded=true] + .lang-switcher__list {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.top-navbar__lang-form .lang-switcher__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #333740;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.top-navbar__lang-form .lang-switcher__item--current {
  background-color: rgba(120, 71, 156, 0.1);
  color: #78479c;
  font-weight: 700;
}
.top-navbar__lang-form .lang-switcher__item-flag {
  width: 20px;
  height: auto;
  border-radius: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.top-navbar__lang-form .lang-switcher__item-name {
  font-size: 0.9rem;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .top-navbar__lang-form .lang-switcher__trigger {
    display: none;
  }
  .top-navbar__lang-form .lang-switcher__list {
    position: static;
    opacity: 1 !important;
    visibility: visible !important;
    -webkit-transform: none;
            transform: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
    padding: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem;
    background: transparent;
  }
  .top-navbar__lang-form .lang-switcher__item {
    padding: 0;
    background: none;
    color: #333740;
    font-weight: normal;
  }
  .top-navbar__lang-form .lang-switcher__item-name {
    display: none;
  }
  .top-navbar__lang-form .lang-switcher__item-flag {
    width: 32px;
    height: 32px;
    border-radius: 50%;
  }
}

.lang-dropdown {
  position: relative;
  display: inline-block;
}
.lang-dropdown__trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.lang-dropdown__trigger:hover, .lang-dropdown__trigger:focus {
  border-color: #1b87ce;
  background-color: rgba(27, 135, 206, 0.1);
}
.lang-dropdown__trigger[aria-expanded=true] {
  border-color: #78479c;
  background-color: rgba(120, 71, 156, 0.1);
}
.lang-dropdown__trigger[aria-expanded=true] .lang-dropdown__arrow svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.lang-dropdown__flag {
  width: 20px;
  height: auto;
  border-radius: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.lang-dropdown__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333740;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.lang-dropdown__arrow svg {
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.lang-dropdown__menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 160px;
  background: white;
  border: 1px solid rgba(51, 55, 64, 0.1);
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  z-index: 1000;
  padding: 8px 0;
}
.lang-dropdown:hover .lang-dropdown__menu, .lang-dropdown__trigger[aria-expanded=true] + .lang-dropdown__menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.lang-dropdown__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #333740;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.lang-dropdown__item:hover {
  background-color: rgba(27, 135, 206, 0.1);
}
.lang-dropdown__item--current {
  background-color: rgba(120, 71, 156, 0.1);
  color: #78479c;
  font-weight: 700;
}
.lang-dropdown__item-flag {
  width: 20px;
  height: auto;
  border-radius: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.lang-dropdown__item-flag--fallback {
  width: 20px;
  height: 14px;
  background: linear-gradient(135deg, #1b87ce, #78479c);
  color: white;
  font-size: 10px;
  font-weight: bold;
  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;
  border-radius: 2px;
}
.lang-dropdown__item-name {
  font-size: 0.9rem;
  white-space: nowrap;
}
@media (hover: none) and (pointer: coarse) {
  .lang-dropdown:hover .lang-dropdown__menu {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

.lang-flags__btn {
  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;
  background: transparent;
  border: none;
  padding: 4px;
  border-radius: 50%;
  -webkit-transition: background 0.2s, -webkit-box-shadow 0.2s;
  transition: background 0.2s, -webkit-box-shadow 0.2s;
  transition: background 0.2s, box-shadow 0.2s;
  transition: background 0.2s, box-shadow 0.2s, -webkit-box-shadow 0.2s;
  cursor: pointer;
  outline: none;
}
.lang-flags__btn--current, .lang-flags__btn:hover, .lang-flags__btn:focus {
  background: rgba(120, 71, 156, 0.08);
  -webkit-box-shadow: 0 0 0 2px #78479c;
          box-shadow: 0 0 0 2px #78479c;
}

.lang-flags__flag {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: block;
}