@charset "UTF-8";
:root {
  --primary: #0b0b0b;
  --secondary: #ffffff;
  --accent: #0090c1;
  --inverse: #ffff3f;
  --bg-primary: #ffffff;
  --bg-secondary: #0b0b0b;
  --bg-accent: #4cc9f0;
  --bg-inverse: #2d00f7;
  --bg-decor: #373737;
  --bg-modal-footer: #e9e9e9;
  --text-primary: #0b0b0b;
  --text-secondary: #ffffff;
  --text-accent: #8fb201;
  --text-inverse: #c8fa00;
  --text-muted: #d3cbcb;
  --text-blur: #ffffff99;
  --text-blur-dark: #00000099;
  --borderse: #ececec;
  --borders-sec: #919191;
  --container-padding: clamp(16px, -40px + 7.2917vw, 100px);
}

.container {
  max-width: 192rem;
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.register-btn,
.btn-dark {
  background-color: var(--bg-secondary);
  color: var(--text-secondary);
}

.btn-light {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: background-color 0.3s;
}
:root {
  --primary: #0b0b0b;
  --secondary: #ffffff;
  --accent: #0090c1;
  --inverse: #ffff3f;
  --bg-primary: #ffffff;
  --bg-secondary: #0b0b0b;
  --bg-accent: #4cc9f0;
  --bg-inverse: #2d00f7;
  --bg-decor: #373737;
  --bg-modal-footer: #e9e9e9;
  --text-primary: #0b0b0b;
  --text-secondary: #ffffff;
  --text-accent: #8fb201;
  --text-inverse: #c8fa00;
  --text-muted: #d3cbcb;
  --text-blur: #ffffff99;
  --text-blur-dark: #00000099;
  --borderse: #ececec;
  --borders-sec: #919191;
  --container-padding: clamp(16px, -40px + 7.2917vw, 100px);
}

html {
  box-sizing: border-box;
}

*,
::after,
::before {
  box-sizing: inherit;
}

body,
html {
  margin: 0;
  scroll-behavior: smooth;
}

html {
  position: relative;
  tab-size: 4;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizespeed;
}

details > summary,
li,
ol,
ul {
  list-style: none;
}

summary {
  display: list-item;
}

details summary::-webkit-details-marker {
  display: none;
}

h1,
h2,
h3,
h4,
p {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol,
dl,
dd {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

label,
time {
  display: block;
}

figure,
blockquote {
  margin: 0;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
picture,
svg,
video {
  display: block;
  height: auto;
  max-width: 100%;
}

b,
strong {
  font-weight: 900;
}

address {
  font-style: normal;
}

button {
  margin: 0;
  padding: 0;
  border-color: transparent;
  background-color: transparent;
  font: inherit;
  font-size: 100%;
  color: inherit;
  line-height: 1;
  cursor: pointer;
  outline: 0;
  text-align: left;
}

button:disabled {
  cursor: default;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: none;
}

input,
textarea,
button,
select {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: transparent;
  font: inherit;
  line-height: 1;
}

.header {
  position: relative;
  transition: all 0.3s;
  width: 100%;
  z-index: 50;
}
@media (min-width: 768px) {
  .header {
    position: fixed;
    top: 0;
  }
  .header--scrolled {
    box-shadow: 0px 4px 34px 0px rgba(0, 0, 0, 0.4);
    background-color: var(--bg-primary);
  }
}
.header .container {
  height: 4rem;
  display: flex;
  align-items: center;
  column-gap: 12px;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .header .container {
    height: 7.2rem;
    justify-content: space-between;
  }
}
.header__nav {
  position: absolute;
  top: 4rem;
  left: 0;
  width: 100%;
  height: calc(100% - 4rem);
  background: rgba(237, 137, 137, 0.163);
}
@media (min-width: 768px) {
  .header__nav {
    position: static;
    height: auto;
    background: none;
  }
}
@media (min-width: 768px) {
  .header__nav {
    display: block;
  }
}
.header__logo {
  display: inline-block;
  padding-inline: 5.15px;
  font-weight: 800;
  font-size: 16px;
  line-height: 20px;
  text-wrap: nowrap;
  transition: color 0.3s;
}
@media (min-width: 768px) {
  .header__logo {
    padding-inline: 5.5px;
    font-size: 26px;
    line-height: 30px;
  }
}
@media (any-hover: hover) {
  .header__logo:hover {
    color: var(--text-inverse);
  }
}
.header__actions {
  display: flex;
  gap: 3.2rem;
}
.header__telegram {
  display: flex;
  text-wrap: nowrap;
  align-items: center;
  text-transform: uppercase;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
  font-size: 2rem;
}
.header__telegram span {
  margin-left: 0.6rem;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .header__telegram span {
    margin-left: 0.8rem;
    transition: color 0.3s;
    font-size: 1.6rem;
  }
}
@media (any-hover: hover) {
  .header__telegram:hover span {
    color: #a9d108;
  }
}
.header__register {
  display: none;
  padding-inline: 26.47px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  line-height: 40px;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  .header__register {
    display: block;
  }
}
.header__register:hover {
  color: var(--text-inverse);
}
.header__menu-icon {
  font-size: 2rem;
  cursor: pointer;
}
.header__menu-icon ._icon-close {
  display: none;
}
.header__menu-icon ._icon-icons {
  display: block;
}
.header__menu-icon--open ._icon-close {
  display: block;
}
.header__menu-icon--open ._icon-icons {
  display: none;
}
@media (min-width: 768px) {
  .header__menu-icon {
    display: none;
  }
}

.nav-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.4rem;
  padding: 4.7rem 1.6rem 5.7rem;
  background: var(--bg-primary);
  position: fixed;
  top: 4rem;
  overflow-y: auto;
  left: -100%;
  width: 100%;
  height: calc(100% - 4rem);
  z-index: 50;
  transition: all 0.3s;
}
.nav-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/line-mob.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (min-width: 768px) {
  .nav-menu::before {
    display: none;
  }
}
@media (min-width: 768px) {
  .nav-menu {
    background: none;
    position: static;
    width: auto;
    justify-content: center;
    padding: 0;
    height: 100%;
  }
}
.nav-menu--open {
  left: 0;
}
.nav-menu__list {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .nav-menu__list {
    flex-direction: row;
    gap: 0rem;
    flex-wrap: wrap;
    padding: 0;
  }
}
.nav-menu__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 0;
  font-size: 2rem;
  line-height: 3.1rem;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 1px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}
.nav-menu__list a::after {
  content: "";
  transition: all 0.3s;
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 1px;
  background-color: var(--bg-secondary);
}
.nav-menu__list a:hover::after {
  left: 0;
}
@media (min-width: 768px) {
  .nav-menu__list a {
    font-size: 1.6rem;
  }
}
.nav-menu__list a:not(:last-child) {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .nav-menu__list a:not(:last-child) {
    margin-bottom: 0;
    margin-right: clamp(8px, -23.3333px + 4.0799vw, 55px);
  }
}
.nav-menu__list a i {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .nav-menu__list a i {
    display: none;
  }
}
.nav-menu__bottom {
  z-index: 10;
}
.nav-menu__bottom .meetup {
  position: static;
  transform: none;
  width: 100%;
}
@media (min-width: 768px) {
  .nav-menu__bottom {
    display: none;
  }
}
.nav-menu__socials {
  margin-bottom: 4.4rem;
}
.nav-menu__socials > a {
  display: block;
  margin-bottom: 2rem;
  text-transform: lowercase;
  font-size: 1.4rem;
  line-height: 2.1rem;
  font-weight: 500;
  position: relative;
}
.nav-menu__socials > a::before {
  font-size: 1.6rem;
  margin-right: 0.6rem;
}
.nav-menu__socials > a::after {
  content: "";
  display: none;
}
.nav-menu__socials > a:last-child {
  margin-bottom: 0;
}
.nav-menu__socials > a span {
  border-bottom: 1px solid var(--bg-secondary);
}

@font-face {
  font-family: icons;
  font-display: swap;
  src: url(data:font/woff2;base64,d09GMgABAAAAAAjQAAsAAAAAENQAAAiCAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAXBEICpl4lAILHAABNgIkAzQEIAWCbgcgGwENyObnadN6n4HI/wRmiBIdiC61xHc9VnMIEbV1aB129wypkwpENz1JqFiuorG2yImmYja5pvZTRDWHKORuajfXOpXkMwLOD4DUjEBdoZoBS3Z4vjc5YRCNIWH0jvT8yBfjIkwVto7dBVA8jH4LPADOZs4oAPxGtwXdgTjkDmAN0cBMBrjFp0Y+jEAyReP6ECBmEyiqIBCQb6YAxXHRNXxwA07MQsDecr3F//DuwwcqBjQptEQfrvhyfaHLEMhBgGrihEychwv8az4G4CbYCU8Qk0qRiPbJAQ4gCAA0iqMpsCsLEbr5hobweTxPd9o+l8tzd/cX8UNCxJiWooOlTthtkdDd1V0ox7jS/RYtEjBCYTSCQ3QMXpL1ORItmrAhW1TP5PQBm2S7fYZCr/cWnInW6Gu8RMq9zpDdjpmlGquPoc9/y46Arf2+xv7I7uFwfa+3fjuoBqJ69uNvOaoeLND0IapIr/UtiS02aLwKi0oq5NpuX6XCfCigwHQwrHNoW7iiwmj2UlJEeyrc/CuoNnnperx0e3CA1uw9FNgsDNtzEmMl6dTJuBWpt/gYLMlQkBCKUEw2USC6Z8bBt8ogeXCh07UkKSs+Q66I92c7ZScplMHKDGXWkBQUT2cXJuXF5zcJqBI5MYVsQklCUZhxoUoyWhAfCIdQJJMgtSnAuI9ozd5KgwVr9njpevwQ5qCKwfNYYwOVnWgvzAJCYZBrL4JqEmsuIfXlIoSRequvsbsVhx6El2bIq8cGgIEAQYRUfcuVHKJ1Tuv/C1Lvkhn6IozHkPrPsj4HxgqiPQAqG8YIiHbY27wdVNvCdEMYo4a5JCsIKzWV6LcDJJvvkPWdxprRbUzTwlrwMOeL1NCubCtQdnYqG4rOOJVWRyIojUZfi6X2tZyP6LJ9rjUS5m+vAqts0cP2j/pn7XWGmEKKidohHbJhoEDrTHI4ck/ZE3Y7EYaaHlv8n+xAdgTvcMwclMkMah+Dgfpr0xjwEbuk+0JkJ9ntjLM6ZD3TB2yB2wLL0JAt3m7PwTvtkn3OJESdtMmH7QQ0jsQuG0tQhkaHdTovi1NfMeZz4budX3Xq9d4WU6snRx3SPWfD1Hpgqr/sdyb9mWPj7UHb7TN+retXy8ornFfTp4kqLevVTitgtL2g6sG0pg+p+wmHjv4WF2s8kXbwKi03aLx0OlDpvctKfXLiZ1aUXQAWI7XBB+A43psZ8bNnc8UlKBStnCe+9uwjlEMXLCuIzHo68ZaRs+xyrgHd5HQmFf00Dwv/DcKCHC+uSHbrVk1hYVyMRHhh9KGnKNbluXVwx+9F4mkIjvtBwvK7TUwFo2E6mObym62epctvbIh+2hPYnf4sb2r+FGxY6DEqJB1FuWf/cHRZw5raDQW90TtlP3q/OvPFGPt67kFYYl5zJLwuKCjUV1j9TXXyqdN2xiJ6ds2+rObbbxlxxBdf/Bx5NjOtitGtXfs7vsfv1qw1MI0phUzr2rUqPlGtXdPGZL21pJkS+wIK1X9PXPX3zL6ARFOM9NpCfs1CUp1VuoxfbXVKiLV8nGMl87PQLrEsTsECTGdbwq+FdHW7Z9i1dpF89GxLjcWzw7Ly/cUOayZryWIrwOq3ySLexJis/OWW/0TUsKxdRgt/iZUsCVbIDqD+StSmIPOjY/iLlEPydHlTV3FXk4cpdxs9Z+S/Yg9BwloiXx2H6W5z6trd0bnpcEVc8j/PeVml8+bmlC1kfrtalhfmypYFRIZFWrFR0jkcc10iX+L1aWaWtzs/Yd3KYfOk+Pu7N0mqT3boktDnuc/l/6rTVvHCGfH/QYnfPe2VpAj2G1x9vE6WbppaveefMSHrljnnunp/V7Q0KPhCaHQyTQJVF8JoyYuvj/MFI+JXaQKZRpw8ryO9f5drFsQM7jgicl3TP5ru8aecUd8fuJE/+kRy/opMKtiWObtskaU0142GI9vN5qZm+zjc8kwILjckPuRzTHmu8DKiI682WHEgG0/+v51hi1h2OS1kS9gUKXqFFJNKcxIVLQnGsCsldBrLODOpjCQNpAHGwURpUiaOAYBx640nSdlliEZsMpt//OIXTCeOSvH/347Y2MD5He2udunUZ0zry9sFJOaS/X8zs/GBYEVebdIIFJBbL5jWz6Yulon/h6WjMNP5xUVXDrbYIjZ2RxUAMHGMNE7KTJQvpdNGzqYlK6WYVNePhE5lJSvIfAnFFYlT9pjMIhqVJuU8uWEdj1cnX+TTndgvdUGK9o4WL/4/mYXPzWPZ0SlMt764VUgeXny5K9HnSumZodGF5PZLvg5PXap4urLBA09K3SUFvYK4zitpSSqTzrDLzI6ViKghzNZj1ptPPs6Re1yOl6SLmFRGuilejE6l8AEjWsMyYVbQVpbTEqPi4+zORwEQE8dQ/2NpP0x38i+6UvjYhBDhFpokrQaf0qTQ2CTpWRgyYyH82BCtoOkMeshG1DSq5OEhcdleMS0W9Av6Dj464M/3FhyUHlTku7nly70Efh6KOqq4XjH7mdLlmkIs8PeUX6Ni5XV3WS+HH18CAHwYAaBGfC0VIlVItmlEP2ipv0smNJxIDReUVHMuArAPFDo67UiB8PNnboQLAABXOvI7qajh+EfNeEDzj625IDIlYQ02hsJMDy6DW6RQl9nYCZto6VyINZzydK50SNipAg1AgDgCFAhgcBroinkEVeAKS2IPCngQDbjSEg8eEBB6uAAPvqIx+EMzUIIT1x1QAo/y4IAAFB4UYEgAXGmlBw98wN/DBTCk12KIh5+eTlZrgSoogQaoh5Y3l4yYmdGQAWXQDBU8bxsLMTATorHDJSN+iXpLsALKoALaoBaKoNnA32qHvN+Knl+J/4BlGszhhK3AQgWUhXhqn0XQCmVQ2rIYvgYW5k8Ts9jGuNnPBAoAAAAA)
    format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url(../fonts/Montserrat-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url(../fonts/Montserrat-ExtraBold.woff2) format("woff2");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url(../fonts/Montserrat-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url(../fonts/Montserrat-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url(../fonts/Montserrat-SemiBold.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
}
[class*="_icon-"]::before {
  font-family: icons;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

._icon-icons:before {
  content: "\e907";
}

._icon-arrow-stroke:before {
  content: "\e906";
}

._icon-close:before {
  content: "\e90c";
}

._icon-location:before {
  content: "\e900";
}

._icon-mail:before {
  content: "\e901";
}

._icon-plane:before {
  content: "\e902";
}

._icon-traffband:before {
  content: "\e903";
}

._icon-arrow-b-r:before {
  content: "\e904";
}

._icon-globe:before {
  content: "\e905";
}

html,
body {
  font-size: 10px;
  color: var(--text-primary);
}

.register-btn,
.btn-dark {
  background-color: var(--bg-secondary);
  color: var(--text-secondary);
}

.btn-light {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: background-color 0.3s;
}

body {
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}
body.lock-scroll {
  overflow: hidden;
}

#app {
  background-color: var(--bg-primary);
}

.hero .container {
  height: calc(100vh - 4rem);
  min-height: 54.2rem;
  position: relative;
  background-image: url("../images/line-mob.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (min-width: 768px) {
  .hero .container {
    height: calc(100vh - 7.2rem + 18rem);
    background-image: url("../images/line-bottom.png");
    padding-bottom: 18rem;
  }
}
.hero__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.hero__link {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
  margin-inline: auto;
  font-weight: 400;
  line-height: 1.2;
  font-size: 1.2rem;
  text-transform: uppercase;
  position: absolute;
  bottom: 18.8rem;
  left: 50%;
  transform: translateX(-50%);
}
.hero__link::before {
  margin-left: 0.5rem;
  color: var(--text-accent);
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .hero__link:hover::before {
    transform: rotate(44deg);
  }
}
@media (min-width: 768px) {
  .hero__link {
    display: inline-flex;
  }
}

.heading {
  text-align: center;
}
.heading > h1 {
  font-weight: 800;
  text-wrap: wrap;
  line-height: 1;
  font-size: clamp(130px, 16.6667px + 14.7569vw, 300px);
}
@media (min-width: 78rem) {
  .heading > h1 {
    text-wrap: nowrap;
  }
}
.heading__icon {
  display: inline-block;
  margin-top: 2rem;
  font-size: clamp(28px, 20px + 1.0417vw, 40px);
}
@media (min-width: 78rem) {
  .heading__icon {
    margin-top: 0rem;
  }
}
.heading__desc {
  margin-top: clamp(44px, 25.3333px + 2.4306vw, 72px);
  font-size: clamp(14px, 11.3333px + 0.3472vw, 18px);
  line-height: 1.5;
}

.meetup {
  position: absolute;
  bottom: 0rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  width: calc(100% - 2.6rem);
  padding: 1.2rem 1.8rem;
  border-radius: 0.4rem;
  background-color: var(--bg-secondary);
  transition: opacity 0.3s;
}
.meetup--sticky {
  position: fixed;
  z-index: 50;
  bottom: 6px;
  /* top: 6px; */
}
@media (min-width: 768px) {
  .meetup {
    display: none;
  }
}
.meetup > a {
  min-width: 12rem;
}
.meetup__text {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.meetup__label {
  margin-bottom: 0.2rem;
  font-size: clamp(1rem, 0.7966rem + 0.4237vw, 1.125rem);
  line-height: 1.5;
  color: var(--text-inverse);
  font-weight: 600;
  text-transform: uppercase;
}
.meetup time {
  font-size: clamp(0.75rem, 0.3432rem + 0.8475vw, 1rem);
  line-height: 1.5;
  color: #d3cbcb;
  font-weight: 500;
}
.meetup__register {
  min-width: 12rem;
  display: inline-block;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 4rem;
  border-radius: 0.4rem;
  overflow: hidden;
  cursor: pointer;
  padding: 0rem 2rem;
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .meetup__register:hover {
    background-color: var(--text-inverse);
  }
}

.s-wrap .container {
  height: auto;
  position: relative;
}
.s-wrap .container:has(.meet) {
  padding-top: 8rem;
  padding-bottom: clamp(40px, 13.3333px + 3.4722vw, 80px);
}
.s-wrap .container:has(.meet)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 16rem;
  background-image: url("../images/line-mob.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  background-position-y: bottom;
}
@media (min-width: 768px) {
  .s-wrap .container:has(.meet) {
    padding-top: 0;
  }
  .s-wrap .container:has(.meet)::before {
    content: "";
    display: none;
    visibility: hidden;
  }
}
.s-wrap .container:has(.speakers) {
  padding-top: clamp(40px, 13.3333px + 3.4722vw, 80px);
  padding-bottom: clamp(80px, 26.6667px + 6.9444vw, 160px);
}
.s-wrap .container:has(.topics) {
  padding-block: clamp(80px, 26.6667px + 6.9444vw, 160px);
}
.s-wrap .container:has(.faq) {
  padding-top: clamp(80px, 26.6667px + 6.9444vw, 160px);
  padding-bottom: clamp(40px, 13.3333px + 3.4722vw, 80px);
}
.s-wrap .container:has(.list-contact) {
  padding-top: clamp(40px, 13.3333px + 3.4722vw, 80px);
  padding-bottom: clamp(80px, 26.6667px + 6.9444vw, 160px);
}
.s-wrap .container > h2 {
  font-size: clamp(36px, 6.6667px + 3.8194vw, 80px);
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  scroll-margin-top: 75px;
}
.s-wrap.--dark {
  background-color: var(--bg-secondary);
  color: #fff;
}
.s-wrap.--dark .container h2 {
  color: var(--text-secondary);
}

.contact-list.meet {
  margin-top: clamp(28px, 14.6667px + 1.7361vw, 48px);
}

.contact-list {
  margin-top: clamp(32px, 21.3333px + 1.3889vw, 48px);
}
.contact-list .location {
  display: flex;
  padding-top: 0.6rem;
}
.contact-list .location__icon {
  padding-right: 1.4rem;
  position: relative;
}
.contact-list .location__icon svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 2.2rem;
  height: 2.2rem;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  .contact-list .location__icon {
    padding-right: 3rem;
  }
  .contact-list .location__icon svg {
    width: 3rem;
    height: 3rem;
  }
}
.contact-list .location span {
  font-size: clamp(18px, 12.6667px + 0.6944vw, 26px);
  font-weight: 500;
}
@media (any-hover: hover) {
  .contact-list .location:hover span {
    color: var(--text-primary);
  }
  .contact-list .location:hover svg:last-child {
    opacity: 0;
  }
}
.contact-list__register {
  margin-top: clamp(28px, 22.6667px + 0.6944vw, 36px);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 21.9rem;
  height: 5.8rem;
  font-size: 1.6rem;
  font-weight: 700;
}
@media (any-hover: hover) {
  .contact-list__register:hover {
    color: var(--text-inverse);
  }
}
@media (min-width: 640px) {
  .contact-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
  }
}
@media (min-width: 768px) {
  .contact-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.contact-list li {
  position: relative;
  z-index: 20;
}
.contact-list li:not(:last-child) {
  margin-bottom: 3.2rem;
}
@media (min-width: 768px) {
  .contact-list li:not(:last-child) {
    margin-bottom: 0;
  }
}
.contact-list li > div {
  margin-bottom: 0.6rem;
  font-weight: 700;
  font-size: clamp(18px, 6px + 1.5625vw, 36px);
  line-height: 1.5;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .contact-list li > div {
    margin-bottom: 1.6rem;
  }
}
.contact-list li > span,
.contact-list li > time {
  font-size: clamp(18px, 12.6667px + 0.6944vw, 26px);
  font-weight: 500;
  line-height: 1.5;
  display: block;
}
.contact-list li > a {
  font-size: 2rem;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .contact-list li > a {
    font-size: 2.4rem;
  }
}
.contact-list li > a span {
  margin-inline-start: 0.8rem;
  font-size: clamp(18px, 12.6667px + 0.6944vw, 26px);
  transition: color 0.3s;
  border-bottom: 0.1rem solid var(--text-primary);
}
@media (min-width: 768px) {
  .contact-list li > a span {
    margin-inline-start: 12px;
  }
}
@media (any-hover: hover) {
  .contact-list li > a:hover span {
    color: var(--text-accent);
    border-color: var(--text-accent);
  }
}
@media (min-width: 768px) {
  .contact-list li {
    flex: 1 0 calc(50% - 2.4rem);
  }
}
@media (min-width: 99.8rem) {
  .contact-list li {
    flex: 1 0 calc(33.3333% - 4.8rem);
  }
}

.speakers {
  margin-top: clamp(16px, 2.6667px + 1.7361vw, 36px);
}
.speakers__item {
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 0.1rem solid var(--text-muted);
  transition: all 0.3s;
}
.speakers__item > [class*="_icon-"]::before {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(16px, 9.3333px + 0.8681vw, 26px);
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .speakers__item:hover {
    padding-inline: 3.2rem;
    background: var(--bg-secondary);
    color: var(--text-secondary);
  }
  .speakers__item:hover span {
    color: var(--text-blur);
  }
  .speakers__item:hover > [class*="_icon-"]::before {
    right: 3.2rem;
    top: 50%;
    transform: rotate(-45deg) translateY(-50%);
  }
}
.speakers__btn {
  display: flex;
  flex-direction: column;
  padding-block: clamp(12px, -6.6667px + 2.4306vw, 40px);
  width: 100%;
  cursor: pointer;
}
.speakers__btn strong {
  font-size: clamp(20px, 4px + 2.0833vw, 44px);
  font-weight: 600;
  line-height: 1.5;
  transition: transform 0.3s;
  text-transform: uppercase;
}
.speakers__btn span {
  font-weight: 500;
  font-size: clamp(16px, 10.6667px + 0.6944vw, 24px);
  line-height: 1.5;
  color: var(--text-blur-dark);
  transition: color 0.3s;
}

.modal {
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  overflow-x: hidden;
  opacity: 0;
  transform: scale(0.8);
  transition: none;
  border: none;
}
.modal.modal_full {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.modal.modal_full .modal__footer {
  margin-block-start: auto;
}
.modal__dekor {
  position: absolute;
  top: 0;
  left: 1.6rem;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
}
.modal__dekor > div {
  border-left: 0.1rem solid var(--borderse);
}
@media (min-width: 768px) {
  .modal__dekor {
    display: none;
  }
}
@media (min-width: 998px) {
  .modal {
    max-width: 90%;
    max-height: auto;
    padding: 6rem;
    margin: auto;
    display: grid;
    grid-template-areas: "image content";
    grid-template-columns: minmax(320px, 1fr) 2fr;
    gap: 2rem;
  }
  .modal.modal_full {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}
.modal__close {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 1rem 1.6rem;
  position: relative;
  z-index: 2;
  text-align: left;
  position: sticky;
  z-index: 50;
  top: 0;
  background: #f8f8f8;
  width: 100%;
  outline: none;
}
.modal__close ._icon-arrow-stroke {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
.modal__close ._icon-close {
  display: none;
}
@media (min-width: 998px) {
  .modal__close {
    position: absolute;
    top: 2.8rem;
    right: 2.8rem;
    font-size: 2.4rem;
    position: fixed;
    background: none;
    width: auto;
  }
  .modal__close span {
    display: none;
  }
  .modal__close ._icon-arrow-stroke {
    display: none;
  }
  .modal__close ._icon-close {
    display: block;
    font-size: 3rem;
  }
}
@media (any-hover: hover) {
  .modal__close:hover ._icon-close {
    color: var(--text-accent);
  }
}
.modal__title {
  padding: 1.6rem 1.6rem 0;
  margin-bottom: 1.6rem;
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}
@media (min-width: 998px) {
  .modal__title {
    grid-area: content;
  }
}
.modal__img {
  padding: 0 1.6rem;
  max-width: 100%;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 998px) {
  .modal__img {
    grid-area: image;
    margin-bottom: 0;
  }
}
.modal__img img {
  width: 100%;
  height: auto;
}
.modal__content {
  padding: 0 1.6rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 998px) {
  .modal.modal_full .modal__content {
    padding-block-start: 0;
  } 
  .modal__content {
    grid-area: content;
    margin-bottom: auto;
    padding-top: 6.3rem;
  }
}
.modal__content p {
  line-height: 1.5;
  font-size: 1.6rem;
  font-weight: 500;
}
@media (min-width: 998px) {
  .modal__content p {
    font-size: 2rem;
  }
}
.modal__content p b {
  font-weight: 700;
}
.modal__content p i {
  font-weight: 600;
  font-style: normal;
}
.modal__content p:not(:last-child) {
  margin-bottom: 1.6rem;
}
@media (min-width: 768px) {
  .modal__content p:not(:last-child) {
    margin-bottom: 2.4rem;
  }
}
.modal__footer {
  padding: 4rem 0;
  background-color: var(--bg-modal-footer);
}
@media (min-width: 998px) {
  .modal__footer {
    display: none;
  }
}
.modal__footer p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}
.modal__next {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 2.2rem 1.6rem;
  position: relative;
}
.modal__next::after {
  position: absolute;
  content: "";
  width: calc(100% - 3.2rem);
  height: 0.1rem;
  background-color: #9c9c9c;
  bottom: 0;
  left: 1.6rem;
}
.modal__next::before {
  position: absolute;
  right: 1.6rem;
  font-size: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
}
.modal__next > strong {
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.5;
  text-transform: uppercase;
}
.modal__next > span {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-blur-dark);
}

.topics {
  display: grid;
  gap: clamp(20px, -1.3333px + 2.7778vw, 52px);
  margin-top: clamp(34px, 15.3333px + 2.4306vw, 62px);
  position: relative;
  overflow: hidden;
}
.topics__line {
  width: 0.1rem;
  height: 100%;
  background: #ffffff;
  transition: height 0.5s ease-out;
  position: absolute;
  top: 2rem;
  left: clamp(10px, 5.3333px + 0.6076vw, 17px);
  z-index: 2;
}
.topics__line-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.1rem;
  height: calc(100% - 6rem);
  background: var(--borders-sec);
  top: 2rem;
  left: clamp(10px, 5.3333px + 0.6076vw, 17px);
  z-index: 1;
}
.topics__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.topics__item_hide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 3rem;
  height: 50%;
  background: var(--bg-secondary);
}
.topics__item:last-child::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 30px;
  height: 50%;
  background: var(--bg-secondary);
}
.topics__title {
  font-size: clamp(20px, 6.6667px + 1.7361vw, 40px);
  font-weight: 700;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .topics__title {
    font-weight: 600;
    line-height: 1.25;
  }
}
.topics__circle {
  width: clamp(20px, 12px + 1.0417vw, 32px);
  height: clamp(20px, 12px + 1.0417vw, 32px);
  flex-basis: clamp(20px, 12px + 1.0417vw, 32px);
  flex-shrink: 0;
  flex-grow: 0;
  min-width: 2rem;
  margin-right: clamp(18px, 0.6667px + 2.2569vw, 44px);
  position: relative;
  z-index: 2;
  border-radius: 50%;
  border: 0.1rem solid var(--borders-sec);
  background-color: var(--bg-decor);
}

.faq {
  margin-top: clamp(24px, 16px + 1.0417vw, 36px);
}

.accordion {
  padding-block: 2rem;
  border-bottom: 0.1rem solid var(--text-muted);
}
@media (min-width: 768px) {
  .accordion {
    padding-block: 3.15rem;
  }
}
.accordion:first-child {
  border-top: 0.1rem solid var(--text-muted);
}

.accordion__title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
  transition: font-weight 0.15s;
}
@media (min-width: 768px) {
  .accordion__title {
    font-size: 2.6rem;
  }
}

.accordion__details[open] .accordion__summary:after {
  content: "−";
}
.accordion__details[open] .accordion__title {
  font-weight: 700;
}

.accordion__summary {
  padding-right: 1rem;
  list-style: none;
  position: relative;
  cursor: pointer;
}
.accordion__summary:after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4.4rem;
  font-weight: 400;
  transition: transform 0.3s ease;
}
.accordion__summary::-webkit-details-marker {
  display: none;
}
@media (any-hover: hover) {
  .accordion__summary:hover .accordion__title {
    font-weight: 700;
  }
}

.accordion__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s, padding-top 0.3s;
}

.accordion__content-body {
  overflow: hidden;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
}

.accordion__details[open] + .accordion__content {
  grid-template-rows: 1fr;
  padding-top: 0.7rem;
}

.about {
  display: flex;
  justify-content: space-between;
  padding-block: 160px;
}

.about__content {
  flex: 1;
  max-width: 34%;
  margin-inline-end: clamp(20px, 2vw, 73px);
  text-align: left;
}

.about__content h2 {
  display: flex;
  flex-direction: column;
  scroll-margin-block-start: 80px;
  font-size: 80px;
  font-weight: 800;
  line-height: 96px;
  text-transform: uppercase;
}

.about__content > div {
  margin-block-start: 30px;
}

.about__content p {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 16px;
}
.about__content p b {
  font-weight: 700;
}

.about__gallery {
  flex: 1;
  max-width: 62%;
}

.gallery-about {
  display: flex;
  gap: 20px;
}

.gallery-about__column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gallery-about__column:last-child {
  gap: 20px;
}

.gallery-about__img {
  width: 100%;
  overflow: hidden;
}

.gallery-about__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .about {
    flex-direction: column;
  }
  .about__content {
    flex: 1;
    max-width: 100%;
    margin-inline-end: 0px;
    text-align: left;
  }
  .about__content h2 {
    flex-direction: row;
    gap: 24px;
  }
  .about__content,
  .about__gallery {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .about {
    padding-block: 80px;
  }

  .about__content h2 {
    scroll-margin-block-start: 40px;
    text-align: center;
    font-size: 36px;
    line-height: 43px;
  }

  .about__content > div {
    margin-block-start: 24px;
  }

  .about__content > div p {
    text-align: left;
    font-size: 16px;
    line-height: 24px;
  }

  .about__content {
    text-align: center;
  }

  .gallery-about {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .gallery-about__img img,
  .gallery-about__img {
    min-height: 230px;
  }

  .gallery-about__img_lg {
    height: 587px;
  }
  .gallery-about__img_lg img {
    object-position: bottom;
  }
}
@media (max-width: 440px) {
  .gallery-about__img_lg {
    height: 387px;
  }
}

.footer {
  width: 100%;
  padding-top: clamp(70px, 23.3333px + 3.4722vw, 90px);
  padding-bottom: 12rem;
  flex-direction: column;
  min-height: 2.04rem;
  background-color: var(--bg-secondary);
}
.footer .container {
  display: flex;
  align-items: justify-content;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
.footer__logo {
  display: inline-block;
  padding-inline: clamp(6px, -16.6667px + 2.9514vw, 40px);
  font-weight: 800;
  font-size: clamp(17px, 4.3333px + 1.6493vw, 36px);
  line-height: clamp(20px, 0px + 2.6042vw, 50px);
  text-wrap: nowrap;
}
.footer p {
  margin-top: clamp(40px, 10.6667px + 1.7361vw, 44px);
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  text-align: center;
}
.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
}
@media (min-width: 768px) {
  .footer__top {
    flex-direction: row;
  }
}
.footer__link i {
  font-size: clamp(30px, 22.6667px + 0.9549vw, 41px);
  color: var(--text-secondary);
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .footer__link:hover i {
    color: var(--text-accent);
  }
}
.footer .container {
  display: flex;
  width: 100%;
}
