* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font: inherit;
}

html {
  height: 100%;
}

body {
  word-wrap: break-word;
  background: #000525;
  font-family: "Geologica", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.45;
  color: #000;
  text-rendering: optimizeLegibility;
  height: 100%;
}

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

a:not([class]) {
  text-decoration: none;
  color: #1C82C6;
}

img {
  max-width: 100%;
  height: auto;
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  overflow: hidden;
  clear: both;
  width: 100%;
  border: 0;
  border-top: 1px solid #eee;
  margin: 1.5rem 0;
  padding: 0;
}

b, strong {
  font-weight: 700;
}

i {
  font-style: italic;
}

button {
  cursor: pointer;
  font-family: sans-serif;
}

.pageWidth {
  width: 1360px;
  max-width: 100%;
  margin: 0 auto;
}

.agenda-panel-back, .m-awards-main-content .button, .focus-btn, .header-register-link {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  height: 60px;
  padding-inline: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.agenda-panel-back::before, .m-awards-main-content .button::before, .focus-btn::before, .header-register-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2));
  pointer-events: none;
  opacity: 0.5;
  transition: 0.5s opacity;
}
.agenda-panel-back:hover::before, .m-awards-main-content .button:hover::before, .focus-btn:hover::before, .header-register-link:hover::before {
  opacity: 1;
}

.header {
  z-index: 300;
  position: fixed;
  top: -1px;
  width: 100%;
  left: 0;
  padding-inline: 10px;
  transition: 0.5s background;
  background: transparent;
}

.header.isSticky {
  background: rgba(4, 31, 99, 0.23);
  -webkit-backdrop-filter: blur(10px) brightness(0.8);
          backdrop-filter: blur(10px) brightness(0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inside {
  padding-block: 15px;
  width: 1760px;
  max-width: 100%;
  margin-inline: auto;
  padding-left: 10px;
  display: grid;
  grid-template-columns: 195px 1fr auto;
  grid-template-rows: auto auto;
  grid-template-areas: "logo sub social" "logo nav register";
}

.header-logo {
  grid-area: logo;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-logo-img {
  display: block;
  max-width: 100%;
}

.header-social {
  grid-area: social;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  align-self: center;
  justify-self: end;
  margin-right: 20px;
}
.header-social a:hover {
  opacity: 0.8;
}

.main-nav {
  display: contents;
}

.main-submenu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 50px;
  grid-area: sub;
  align-self: center;
}

.main-submenu-el {
  position: relative;
}

.main-submenu-link {
  text-decoration: none;
  padding: 5px 0;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  flex: 1;
  transition: 0.2s color;
}
.main-submenu-link:hover {
  color: #1C82C6;
}

@media (min-width: 1150px) {
  .main-submenu-el:hover .main-submenu-sub {
    display: block;
  }
}
.main-submenu-sub {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  top: 100%;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  padding: 10px 0;
  min-width: 150px;
  list-style: none;
  margin: 0;
  z-index: 2;
  display: none;
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.main-submenu-el:has(.main-submenu-sub) .main-submenu-link {
  padding-right: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='m12 15l-5-5h10z'/%3E%3C/svg%3E");
  background-size: 17px;
  background-position: right center;
  background-repeat: no-repeat;
}

.main-submenu-el-inside {
  display: flex;
  align-items: center;
}

.main-submenu-toggle {
  display: none;
}

.main-submenu-sub-link {
  font-size: 15px;
  display: block;
  text-decoration: none;
  padding: 2px 20px;
  text-align: center;
  color: #000;
  transition: 0.1s background-color;
}
.main-submenu-sub-link:hover {
  color: #1C82C6;
}

.main-menu {
  grid-area: nav;
  display: flex;
  gap: 20px;
  align-items: center;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 50px;
  margin-top: 10px;
}

.main-menu-toggle {
  display: none;
}

.main-menu-el {
  height: 100%;
  position: relative;
}

.main-menu-el-inside {
  display: flex;
  align-items: center;
}

.main-menu-link {
  text-decoration: none;
  font-size: 18px;
  padding: 5px 0;
  color: #fff;
  display: flex;
  flex: 1;
  font-weight: 900;
  text-transform: uppercase;
  height: 100%;
  align-items: center;
  transition: 0.2s color;
}
.main-menu-link:hover {
  color: #1C82C6;
}

.main-menu-el--with-sub .main-menu-link::after {
  content: "";
  width: 7px;
  height: 5px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #1C82C6;
  display: inline-block;
  margin-left: 5px;
}

.main-menu-sub {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  top: 100%;
  background: #fff;
  padding: 10px 0;
  min-width: 100px;
  list-style: none;
  margin: 0;
  z-index: 2;
  display: none;
}

@media (min-width: 1150px) {
  .main-menu-el--with-sub:hover .main-menu-sub {
    display: block;
  }
}
.main-menu-el--with-sub:hover .main-menu-link {
  position: relative;
}

.main-menu-el--with-sub:hover .main-menu-link::before {
  content: "";
  height: 40px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: transparent;
}

.main-menu-el--with-sub:hover .main-menu-link {
  color: #1C82C6;
}

.main-menu-sub-link {
  color: #000;
  text-decoration: none;
  padding: 4px 20px;
  display: block;
  text-align: center;
  font-size: 15px;
  text-transform: uppercase;
  white-space: nowrap;
}
.main-menu-sub-link:hover {
  color: #000;
}

.header-register {
  position: relative;
  grid-area: register;
  align-self: center;
  font-size: 15px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 10px 20px;
}

.header-register-link {
  grid-area: register;
  align-self: center;
  padding-block: 5px;
  height: 40px;
  font-size: 14px;
  margin-top: 10px;
  margin-right: 20px;
  padding-inline: 20px;
}

.header-burger {
  justify-self: end;
  grid-area: burger;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding-right: 15px;
  overflow: hidden;
  background: none;
  border: 0;
  width: 50px;
  height: 100%;
  cursor: pointer;
  gap: 5px;
  z-index: 100;
}
.header-burger strong {
  position: absolute;
  left: -9999px;
}
.header-burger span {
  width: 25px;
  height: 2px;
  background: #fff;
}
.header-burger span:nth-of-type(2) {
  width: 20px;
}

body.menuOpen .header-burger {
  position: relative;
}
body.menuOpen .header-burger span:first-of-type {
  display: none;
}
body.menuOpen .header-burger span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
body.menuOpen .header-burger span:last-of-type {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 1300px) {
  .header {
    grid-template-rows: 50px 50px;
  }
  .main-menu-link {
    font-size: 14px;
  }
}
@media (max-width: 1150px) {
  .header-inside {
    grid-template-columns: 120px 1fr auto auto;
    grid-template-rows: 1fr;
    grid-template-areas: "logo nav register burger";
  }
  .main-nav {
    position: absolute;
    left: 0;
    top: 0;
    display: none;
    background: rgba(4, 31, 99, 0.23);
    -webkit-backdrop-filter: blur(10px) brightness(0.8);
            backdrop-filter: blur(10px) brightness(0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    justify-content: flex-start;
    width: 320px;
    height: 100vh;
    z-index: 10;
  }
  .main-menu {
    height: auto;
    order: -1;
  }
  .header-social {
    margin-left: 0;
    margin-right: auto;
    padding-left: 25px;
  }
  body.isMenuShow .main-nav {
    display: flex;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  body.isMenuShow::after {
    content: "";
    display: block;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(1px) grayscale(0.5);
            backdrop-filter: blur(1px) grayscale(0.5);
  }
  body.isMenuShow .header-burger {
    position: relative;
  }
  body.isMenuShow .header-burger span:nth-of-type(1) {
    display: none;
  }
  body.isMenuShow .header-burger span:nth-of-type(2),
  body.isMenuShow .header-burger span:nth-of-type(3) {
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    rotate: 45deg;
    width: 30px;
  }
  body.isMenuShow .header-burger span:nth-of-type(3) {
    rotate: -45deg;
  }
  .main-submenu,
  .main-menu {
    padding: 20px 10px;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    border: 0;
    gap: 0;
  }
  .main-submenu {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .main-menu-el,
  .main-submenu-el {
    width: 100%;
  }
  .main-menu-el.is-show .main-menu-sub,
  .main-submenu-el.is-show .main-submenu-sub {
    display: flex;
  }
  .main-submenu-el:has(.main-submenu-sub) .main-submenu-link {
    background: none;
  }
  .main-menu-el--with-sub .main-menu-link::after,
  .main-submenu-el:has(.main-submenu-sub) .main-submenu-link::after {
    display: none;
  }
  .main-submenu-toggle,
  .main-menu-toggle {
    display: block;
    background: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='m12 15l-5-5h10z'/%3E%3C/svg%3E");
    background-size: 17px;
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border: 0;
    text-indent: -9999px;
    overflow: hidden;
  }
  .is-show .main-submenu-toggle,
  .is-show .main-menu-toggle {
    scale: 1 -1;
  }
  .main-menu-link,
  .main-submenu-link {
    font-size: 16px;
    padding: 10px 15px;
    color: #fff;
    height: auto;
  }
  .main-menu-sub,
  .main-submenu-sub {
    background: none;
    position: relative;
    width: 100%;
    top: 0;
    -webkit-clip-path: none;
            clip-path: none;
    gap: 10px;
    display: none;
    flex-direction: column;
    padding: 10px 15px;
    box-shadow: none;
  }
  .main-submenu-sub-link,
  .main-menu-sub-link {
    text-align: left;
    padding: 0;
    font-size: 15px;
    color: #fff;
  }
  .header-burger {
    display: flex;
  }
  .header-register {
    border-left: 0;
    flex-direction: row;
    text-align: left;
    gap: 10px;
    justify-self: end;
  }
  .header-register-link {
    margin-top: 0;
  }
}
@media (max-width: 470px) {
  .header {
    padding-right: 10px;
    padding-left: 10px;
  }
  .header-inside {
    width: 100%;
    max-width: 100%;
  }
  .header-logo {
    max-width: 180px;
  }
  .header-register {
    font-size: 10px;
    padding: 10px;
  }
  .header-register-link {
    font-size: 12px;
    padding-inline: 15px;
    height: 35px;
    margin-right: 10px;
  }
  .main-nav {
    width: 100%;
    height: 100vh;
  }
}
:where(.subpage-content .button) {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  background: #1C82C6;
  min-height: 60px;
  padding-inline: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  border: 0;
}
:where(.subpage-content .button):hover {
  background: #1a7bbd;
}

.footer {
  background: #fff;
}
.footer .footer-inside {
  max-width: 1360px;
  margin-inline: auto;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "logo copyright" "logo menu";
  align-items: center;
  gap: 10px 30px;
  padding: 30px;
  background: #fff;
}
.footer .footer-logo {
  grid-area: logo;
}
.footer .footer-copyright {
  grid-area: copyright;
  align-self: end;
  font-weight: normal;
  color: #000;
}
.footer .footer-menu {
  grid-area: menu;
  align-self: start;
}
.footer .footer-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.footer .footer-menu-list-el {
  margin-right: 10px;
}
.footer .footer-menu-list-el a {
  text-decoration: none;
  font-weight: bold;
  color: #000;
  padding: 5px 5px 5px 0;
  display: block;
  text-transform: uppercase;
}
.footer .footer-menu-list-el a:hover {
  color: #1C82C6;
}
@media (max-width: 600px) {
  .footer .footer-inside {
    grid-template-columns: 1fr;
    gap: 30px;
    grid-template-rows: auto auto auto;
    grid-template-areas: "logo" "menu" "copyright";
  }
  .footer .footer-menu-list-el a {
    padding: 5px;
  }
  .footer .footer-menu-list {
    justify-content: center;
  }
  .footer .footer-copyright {
    text-align: center;
  }
  .footer .footer-logo {
    text-align: center;
  }
}

.m-collaboration-title, .m-jak-bylo-title, .m-news-title, .m-awards-title, .m-talks-title, .m-edition-title {
  text-align: center;
  font-size: 42px;
  text-transform: uppercase;
  font-weight: 900;
  color: #fff;
  margin: 0;
  max-width: 1360px;
  width: 100%;
  margin-inline: auto;
  line-height: 1.2;
}
.m-collaboration-title a, .m-jak-bylo-title a, .m-news-title a, .m-awards-title a, .m-talks-title a, .m-edition-title a {
  color: inherit;
}
@media (max-width: 540px) {
  .m-collaboration-title, .m-jak-bylo-title, .m-news-title, .m-awards-title, .m-talks-title, .m-edition-title {
    font-size: 35px;
  }
}
@media (max-width: 478px) {
  .m-collaboration-title, .m-jak-bylo-title, .m-news-title, .m-awards-title, .m-talks-title, .m-edition-title {
    font-size: 30px;
  }
}

.m-collaboration-text, .m-jak-bylo-text, .m-news-text, .m-awards-text, .m-talks-text, .m-edition-text {
  max-width: 1200px;
  width: 80%;
  text-align: center;
  color: #fff;
  line-height: 1.8;
  font-size: 18px;
  margin: 20px auto 40px;
}
@media (max-width: 640px) {
  .m-collaboration-text, .m-jak-bylo-text, .m-news-text, .m-awards-text, .m-talks-text, .m-edition-text {
    width: 100%;
  }
}
@media (max-width: 540px) {
  .m-collaboration-text, .m-jak-bylo-text, .m-news-text, .m-awards-text, .m-talks-text, .m-edition-text {
    font-size: 16px;
  }
}

.focus {
  min-height: 700px;
  height: 100vh;
  max-height: 1000px;
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: flex-end;
  padding: 30px;
  padding-bottom: 80px;
  isolation: isolate;
  -webkit-mask-image: linear-gradient(to bottom, #000 90%, rgba(0, 0, 0, 0));
          mask-image: linear-gradient(to bottom, #000 90%, rgba(0, 0, 0, 0));
  overflow: clip;
}

.focus-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.focus-bg video {
  width: 110%;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}

.fokus-layer {
  z-index: 1;
  pointer-events: none;
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.focus-content {
  width: 100%;
  max-width: 1760px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.focus-content-top {
  display: flex;
  border-bottom: 1px solid #1C82C6;
  padding-bottom: 30px;
  margin-bottom: 30px;
  gap: 30px;
}

.focus-content-top-left {
  flex: 1;
  align-items: center;
}

.focus-content-top-right {
  display: flex;
  align-items: center;
}

.focus-content {
  position: relative;
  z-index: 2;
}

.focus-title svg {
  width: 95%;
  max-width: 900px;
  height: auto;
  stroke-dasharray: 450px;
  stroke-dashoffset: -450px;
  stroke: #fff;
  fill: transparent;
  translate: 0 4%;
  animation: anim 1s 0s 1 linear both, anim2 1s 2s 1 linear both;
}

.focus-title svg ~ svg {
  display: none;
}

@keyframes anim {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes anim2 {
  to {
    fill: #fff;
  }
}
.focus-title {
  font-size: clamp(60px, 7vw, 110px);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}

.focus-text {
  color: #1C82C6;
  font-size: 24px;
  margin: 20px 0;
  margin-top: 10px;
}

.focus-bottom-text {
  font-size: 32px;
  text-transform: uppercase;
  color: #fff;
}

@media (orientation: portrait) {
  .focus-bg video {
    height: 100%;
    width: auto;
  }
}
@media (max-width: 1160px) {
  .focus-bg video {
    height: 100%;
    width: auto;
  }
}
@media (max-width: 860px) {
  .focus-text,
  .focus-bottom-text {
    font-size: 22px;
  }
}
@media (max-width: 740px) {
  .focus-content-top {
    flex-direction: column;
  }
  .focus-btn {
    translate: 0;
  }
  .focus-text {
    margin-bottom: 0;
  }
  .focus-text,
  .focus-bottom-text {
    font-size: 18px;
  }
  .focus-title svg:first-of-type {
    display: none;
  }
  .focus-title svg ~ svg {
    display: block;
    margin-bottom: 20px;
  }
}
.m-edition {
  position: relative;
  isolation: isolate;
  padding-block: 60px;
  padding-inline: 15px;
  padding-bottom: 0;
}

.m-edition-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  z-index: -1;
  opacity: 0.3;
}

.m-edition-box {
  max-width: 1360px;
  width: 100%;
  margin-inline: auto;
  background-color: #041F63;
  background-size: cover;
  border-radius: 40px;
  display: flex;
  gap: 40px;
  padding: 40px 50px 0 50px;
}

.m-edition-box-img {
  flex: 1;
  max-width: 326px;
  display: flex;
  align-items: flex-end;
}

.m-edition-box-img img {
  display: block;
  width: 100%;
}

.m-edition-box-content {
  flex: 1;
  font-size: 18px;
  color: #fff;
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
  padding-top: 40px;
  max-width: 340px;
  line-height: 1.6;
}

.m-edition-box-content small {
  margin-top: 20px;
  font-size: 14px;
}

.m-edition-box-content p {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
}

.m-edition-box-user-data {
  padding-top: 30px;
}

.m-edition-box-content small {
  font-size: 16px;
}

.m-edition-boxes {
  margin-top: 40px;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 500px;
  align-content: end;
  margin-bottom: 50px;
}

.m-edition-boxes-el {
  text-align: center;
  aspect-ratio: 1;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.m-edition-boxes-el::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2));
  pointer-events: none;
  opacity: 0.5;
}
.m-edition-boxes-el strong {
  font-size: 57px;
  font-weight: bold;
}
.m-edition-boxes-el small {
  font-size: 11px;
}

@media (max-width: 1200px) {
  .m-edition-box-content {
    font-size: 17px;
  }
  .m-edition-box-content p {
    font-size: 18px;
  }
  .m-edition-box-img img {
    max-width: 236px;
  }
  .m-edition-boxes-el strong {
    font-size: 40px;
  }
}
@media (max-width: 940px) {
  .m-edition-box {
    display: grid;
    gap: 10px;
    grid-template-areas: "img content" "img boxes";
  }
  .m-edition-box-img {
    grid-area: img;
    justify-content: center;
  }
  .m-edition-box-img img {
    max-width: 260px;
  }
  .m-edition-box-content {
    grid-area: content;
  }
  .m-edition-boxes span {
    display: none;
  }
  .m-edition-boxes {
    margin-top: 0;
    grid-area: boxes;
    display: flex;
    align-content: flex-start;
    justify-content: flex-start;
  }
  .m-edition-boxes-el {
    flex: 1;
  }
}
@media (max-width: 740px) {
  .m-edition-box {
    padding-inline: 20px;
  }
  .m-edition-box-content {
    font-size: 16px;
  }
  .m-edition-box-img {
    max-width: 220px;
  }
  .m-edition-boxes {
    gap: 10px;
  }
  .m-edition-boxes-el strong {
    font-size: 30px;
  }
}
@media (max-width: 600px) {
  .m-edition-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto auto;
    grid-template-areas: "boxes boxes" "content content" "img data";
    border-radius: 30px;
    padding: 20px;
    padding-bottom: 0;
  }
  .m-edition-boxes {
    grid-area: boxes;
    align-items: flex-end;
    margin-bottom: 0;
  }
  .m-edition-box-content {
    display: contents;
  }
  .m-edition-box-user-data {
    grid-area: data;
    align-self: center;
    margin-left: -20px;
    position: relative;
    z-index: 1;
    padding-top: 0;
  }
  .m-edition-boxes-el {
    aspect-ratio: 1;
    padding: 10px;
  }
  .m-edition-boxes-el strong {
    font-size: 25px;
  }
  .m-edition-boxes-el small {
    font-size: 10px;
  }
  .m-edition-box-img {
    max-width: 100%;
  }
  .m-edition-box-content blockquote {
    grid-area: content;
    font-size: 16px;
    margin-top: 20px;
  }
  .m-edition-box-content {
    font-size: 12px;
    padding-bottom: 20px;
    padding-top: 0;
  }
  .m-edition-box-content blockquote {
    margin-bottom: 10px;
  }
  .m-edition-box-content small {
    font-size: 13px;
  }
}
@media (max-width: 478px) {
  .m-edition-box-content blockquote {
    font-size: 14px;
  }
  .m-edition-box-content p {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .m-edition-box-content small ~ small {
    font-size: 13px;
  }
}
.m-talks {
  position: relative;
  isolation: isolate;
  padding-block: 60px;
  padding-inline: 15px;
}

.m-talks-main {
  max-width: 1360px;
  margin-inline: auto;
  width: 100%;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1fr;
}

.m-talks img {
  border-radius: 40px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: -30px 30px 0 0 rgba(28, 130, 198, 0.1);
}

.m-talks ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #fff;
}

.m-talks-main h3 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}
.m-talks-main h3:hover {
  color: #1C82C6;
}

.m-talks-main li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 20px;
  padding-top: 20px;
}

.m-talks-main li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border: 0;
}

.m-talks-main li div {
  font-size: inherit;
  font-weight: 300;
  overflow: hidden;
  height: 0;
  interpolate-size: allow-keywords;
  transition: 0.3s height;
  color: rgba(255, 255, 255, 0.8);
}

.m-talks-main p {
  margin: 0;
  padding-top: 16px;
}

.m-talks li.is-show div {
  height: auto;
}

@media (max-width: 1100px) {
  .m-talks-main {
    font-size: 14px;
    gap: 30px;
  }
  .m-talks-main h3 {
    font-size: 17px;
  }
  .m-talks-main li {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media (max-width: 760px) {
  .m-talks-main {
    grid-template-columns: 100%;
    max-width: 500px;
    margin-inline: auto;
  }
}
.m-awards {
  position: relative;
  isolation: isolate;
  padding-block: 60px;
  padding-bottom: 0;
  padding-inline: 15px;
}

.m-awards-main {
  max-width: 1360px;
  margin-inline: auto;
  width: 100%;
  display: grid;
  gap: 60px;
  grid: auto/auto;
  border-radius: 40px;
  overflow: hidden;
  background: linear-gradient(to right, #AE1036, #141740);
}

.m-awards-main-content {
  grid-column: 1/-1;
  grid-row: 1/1;
  position: relative;
  z-index: 1;
  padding: 50px;
  padding-top: 90px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-size: 18px;
  gap: 40px;
  max-width: 680px;
}

.m-awards-main-content img {
  max-width: 416px;
  width: 100%;
}

.m-awards-main-images {
  grid-column: 1/-1;
  grid-row: 1/1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  z-index: 0;
  position: relative;
}

.m-awards-img-left {
  grid-column: 1/9;
  grid-row: 1/-1;
  position: relative;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to right, #000 80%, rgba(0, 0, 0, 0));
          mask-image: linear-gradient(to right, #000 80%, rgba(0, 0, 0, 0));
}

.m-awards-img-right {
  grid-column: 7/-1;
  grid-row: 1/-1;
  position: relative;
  z-index: 0;
}

.m-awards-img-left img,
.m-awards-img-right img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  left: 0;
  top: 0;
}

@media (max-width: 640px) {
  .m-awards-main-content {
    justify-content: flex-start;
  }
  .m-awards-main-images {
    grid-template-columns: 100%;
    grid-template-rows: repeat(12, 1fr);
  }
  .m-awards-img-left {
    grid-column: 1/-1;
    grid-row: 1/11;
    width: 100%;
    -webkit-mask-image: linear-gradient(to bottom, #000 80%, rgba(0, 0, 0, 0));
            mask-image: linear-gradient(to bottom, #000 80%, rgba(0, 0, 0, 0));
  }
  .m-awards-img-right {
    grid-column: 1/-1;
    grid-row: 7/-1;
    width: 150%;
    min-height: 400px;
  }
}
@media (max-width: 478px) {
  .m-awards-main-content {
    padding: 30px;
    font-size: 15px;
  }
}
.m-prelegent {
  padding-top: 60px;
  padding-bottom: 20px;
  padding-inline: 20px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.m-prelegent-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 810px;
  z-index: -1;
  -webkit-mask-image: linear-gradient(to bottom, #000 50%, rgba(0, 0, 0, 0));
          mask-image: linear-gradient(to bottom, #000 50%, rgba(0, 0, 0, 0));
}

.m-prelegent-header {
  display: flex;
  max-width: 1100px;
  margin-inline: auto;
  gap: 50px;
  color: #fff;
  align-items: center;
  margin-bottom: 50px;
}

.m-prelegent-title {
  flex: 1;
  font-size: 42px;
  text-align: right;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1.2;
}

.m-prelegent-text {
  flex: 1;
  font-size: 18px;
  line-height: 1.6;
}

.m-prelegent-list-cnt {
  max-width: 1360px;
  margin-inline: auto;
  color: #fff;
}

.m-prelegent-list:not(.swiper-initialized) .swiper-wrapper {
  display: flex;
  gap: 50px;
  overflow-x: auto;
}

.m-prelegent-list-cnt:has(.swiper-initialized) {
  width: auto;
  max-width: 9999999px;
  margin-inline: -20px;
}

.m-prelegent-list .m-prelegent-list-el {
  flex-shrink: 0;
  width: 260px;
  position: relative;
  isolation: isolate;
  padding: 15px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  height: auto;
  padding-bottom: 30px;
}

.m-prelegent-list .swiper-wrapper {
  transition-timing-function: linear;
}

.m-prelegent-list-el-photo img {
  border-radius: 15px;
  aspect-ratio: 1;
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.m-prelegent-list-el-name {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 900;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.m-prelegent-list-el-text {
  font-size: 12px;
  margin-top: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.m-prelegent-list:not(.swiper-initialized) .swiper-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1260px;
}

.m-prelegent-list .m-prelegent-list-el {
  flex-shrink: 0;
  max-width: 260px;
  width: calc(20% - 40px);
}

@media (max-width: 1200px) {
  .m-prelegent-list-el-name {
    font-size: 18px;
  }
}
@media (max-width: 1000px) {
  .m-prelegent-list .m-prelegent-list-el {
    flex-shrink: 0;
    max-width: 260px;
    width: calc(50% - 40px);
  }
}
@media (max-width: 860px) {
  .m-prelegent-header {
    gap: 30px;
  }
  .m-prelegent-text {
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .m-prelegent-header {
    flex-direction: column;
    text-align: center;
  }
  .m-prelegent-title {
    text-align: center;
  }
  .m-prelegent-list .swiper-wrapper {
    flex-wrap: nowrap;
    justify-content: flex-start;
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none; /* Firefox */
  }
  .m-prelegent-list .swiper-wrapper::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
  }
  .m-prelegent-list {
    margin-right: -20px !important;
  }
  .m-prelegent-list .m-prelegent-list-el {
    flex-shrink: 0;
    width: 280px;
  }
}
.m-news {
  position: relative;
  isolation: isolate;
  padding-block: 60px;
  padding-inline: 15px;
}

.m-news-main {
  max-width: 1360px;
  margin-inline: auto;
  width: 100%;
}

.m-news-list-cnt-parent {
  padding-inline: 50px;
}

.m-news-list-cnt {
  width: 100%;
  max-width: 1260px;
  margin-inline: auto;
  position: relative;
}

.m-news-list:not(.swiper-initialized) .swiper-wrapper {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  max-width: 9999999px;
  overflow-x: auto;
}

.m-news .m-news-list-el {
  height: auto;
}

.m-news-list-el {
  height: auto;
  flex-shrink: 0;
  width: 330px;
  position: relative;
  isolation: isolate;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-weight: bold;
  overflow: hidden;
}
.m-news-list-el::before {
  content: "";
  position: absolute;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2));
  inset: 0;
  opacity: 0.5;
  z-index: -1;
  transition: 0.2s opacity;
}

.m-news-list-el-img img {
  border-radius: 15px;
  width: 100%;
  margin-bottom: 10px;
}

.m-news-list-el-link {
  color: #fff;
  display: block;
  text-decoration: none;
  font-size: 18px;
  padding: 15px;
  padding-bottom: 30px;
}

.m-news-list-el-link h3 {
  font-weight: bold;
}

.m-news-list-el:has(.m-news-list-el-link:hover)::before {
  opacity: 1;
}

.m-news-list-cnt .swiper-button-prev,
.m-news-list-cnt .swiper-button-next {
  top: 50%;
  z-index: 10;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='m9.55 12l7.35 7.35q.375.375.363.875t-.388.875t-.875.375t-.875-.375l-7.7-7.675q-.3-.3-.45-.675t-.15-.75t.15-.75t.45-.675l7.7-7.7q.375-.375.888-.363t.887.388t.375.875t-.375.875z'/%3E%3C/svg%3E");
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
  background-size: 25px;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
  overflow: hidden;
}
.m-news-list-cnt .swiper-button-prev::before,
.m-news-list-cnt .swiper-button-next::before {
  content: "";
  position: absolute;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2));
  inset: 0;
  opacity: 0.5;
  z-index: -1;
  transition: 0.2s opacity;
}
.m-news-list-cnt .swiper-button-prev svg,
.m-news-list-cnt .swiper-button-next svg {
  display: none;
}
.m-news-list-cnt .swiper-button-prev:hover::before,
.m-news-list-cnt .swiper-button-next:hover::before {
  opacity: 1;
}

.m-news-list-cnt .swiper-button-prev {
  left: 0;
  translate: -140% 0;
}

.m-news-list-cnt .swiper-button-next {
  scale: -1 1;
  left: auto;
  right: 0;
  translate: 140% 0;
}

@media (max-width: 640px) {
  .m-news-list-el-link {
    font-size: 17px;
  }
  .m-news-list-cnt .swiper-button-prev,
  .m-news-list-cnt .swiper-button-next {
    display: none;
  }
  .m-news-list-cnt-parent {
    padding-inline: 0;
  }
}
@media (max-width: 478px) {
  .m-news {
    overflow: hidden;
  }
  .m-news-list-el-link {
    font-size: 13px;
  }
  .m-news-list-cnt-parent {
    margin-inline: -15px;
  }
}
.m-jak-bylo {
  position: relative;
  isolation: isolate;
  padding-block: 60px;
  padding-inline: 15px;
}

.m-jak-bylo-inside {
  max-width: 1360px;
  margin-inline: auto;
  width: 100%;
}

.m-jak-bylo-title {
  text-align: left;
}

.m-jak-bylo-text {
  text-align: left;
  width: 100%;
  max-width: 900px;
  margin-left: 0;
}

.m-jak-bylo-main {
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  display: grid;
}

.m-jak-bylo-main-img {
  border-radius: 20px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.4);
  overflow: hidden;
}

.m-jak-bylo-main-img :is(img, video) {
  width: 100%;
  height: 100%;
  display: block;
}

.m-jak-bylo-main-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.m-jak-bylo-main-link {
  font-size: 18px;
  line-height: 1.3;
  font-weight: bold;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  padding: 10px;
  gap: 30px;
  width: 100%;
  flex: 1;
  isolation: isolate;
}
.m-jak-bylo-main-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2));
  pointer-events: none;
  opacity: 0.5;
  transition: 0.5s opacity;
  z-index: -1;
}
.m-jak-bylo-main-link img {
  width: 40%;
  max-width: 190px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.m-jak-bylo-main-link h3 {
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.m-jak-bylo-main-link:hover::before {
  opacity: 1;
}

@media (max-width: 880px) {
  .m-jak-bylo-main {
    gap: 10px;
  }
  .m-jak-bylo-main-list {
    gap: 10px;
  }
  .m-jak-bylo-main-link {
    font-size: 15px;
    gap: 10px;
    width: 100%;
  }
}
@media (max-width: 700px) {
  .m-jak-bylo-main-link {
    border-radius: 15px;
    padding: 5px;
  }
  .m-jak-bylo-main-link img {
    border-radius: 10px;
  }
}
@media (max-width: 550px) {
  .m-jak-bylo-title,
  .m-jak-bylo-text {
    text-align: center;
  }
  .m-jak-bylo-main {
    display: flex;
    flex-direction: column;
  }
  .m-jak-bylo-main-img img {
    border-radius: 20px;
  }
  .m-jak-bylo-main-link img {
    max-width: 70px;
  }
}
.m-collaboration {
  color: #fff;
  padding-block: 60px;
  padding-inline: 15px;
  background-size: cover;
}

.m-collaboration-section-desc {
  text-align: center;
  margin-bottom: 30px;
}

.m-collaboration-main {
  padding: 30px;
  padding-bottom: 0;
  border-radius: 40px;
  max-width: 1360px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "map content";
  gap: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
}

.m-collaboration-right {
  grid-area: content;
  display: flex;
  align-items: flex-end;
  flex-direction: row-reverse;
}

.m-collaboration-content {
  margin-top: 80px;
  align-self: center;
  position: relative;
  z-index: 1;
}

.m-collaboration-right img {
  width: 300px;
  display: block;
}

.m-contact-box-text {
  font-size: 18px;
}

.m-contact-box-text {
  font-size: 18px;
}

.m-contact-box-name {
  font-size: 24px;
  line-height: 1.2;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 5px;
}

.m-contact-box-position {
  font-size: 16px;
}

.m-contact-box-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.m-contact-box-link {
  color: inherit;
  text-decoration: none;
  height: 20px;
  display: inline-flex;
  padding-left: 30px;
  background-size: 20px;
  background-position: left center;
  background-repeat: no-repeat;
}

.m-contact-box-link--ln {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20.004' height='20.004' viewBox='0 0 20.004 20.004'%3E%3Cg id='_x31_0.Linkedin' transform='translate(-10 -10)'%3E%3Cpath id='Path_1823' data-name='Path 1823' d='M51.228,48.978V41.651c0-3.6-.775-6.351-4.976-6.351a4.342,4.342,0,0,0-3.926,2.15h-.05V35.625H38.3V48.978h4.151V42.351c0-1.75.325-3.426,2.475-3.426,2.125,0,2.15,1.975,2.15,3.526v6.5h4.151Z' transform='translate(-21.224 -18.974)' fill='%23fff'/%3E%3Cpath id='Path_1824' data-name='Path 1824' d='M11.3,36.6h4.151V49.953H11.3Z' transform='translate(-0.975 -19.949)' fill='%23fff'/%3E%3Cpath id='Path_1825' data-name='Path 1825' d='M12.4,10a2.413,2.413,0,1,0,2.4,2.4A2.4,2.4,0,0,0,12.4,10Z' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.m-contact-box-link--mail {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20.856' viewBox='0 0 20 20.856'%3E%3Cpath id='Path_1826' data-name='Path 1826' d='M24.34,10.777a17.267,17.267,0,0,0-.681-3.139,6.363,6.363,0,0,0-1.734-2.656,8.548,8.548,0,0,0-3.03-1.8A14.649,14.649,0,0,0,14.154,2.5a12.256,12.256,0,0,0-4.193.681,9.664,9.664,0,0,0-2.9,1.844,7.512,7.512,0,0,0-1.8,2.656,9.006,9.006,0,0,0-.746,3.1,3.768,3.768,0,0,0-.066.922v2.525a3.768,3.768,0,0,0,.066.922,9.216,9.216,0,0,0,.812,3.139,7.988,7.988,0,0,0,1.844,2.591,9.082,9.082,0,0,0,2.964,1.8,10.1,10.1,0,0,0,4.018.681,12.809,12.809,0,0,0,3.205-.307,11.964,11.964,0,0,0,2.459-.812h.022a1.042,1.042,0,0,0,.022-1.888l-.154-.088a2.653,2.653,0,0,0-2.086-.11H17.6a6.281,6.281,0,0,1-1.361.307,19.222,19.222,0,0,1-2.108.066,9.475,9.475,0,0,1-2.766-.373,5.324,5.324,0,0,1-1.976-1.12,5.459,5.459,0,0,1-1.3-1.778,6.356,6.356,0,0,1-.615-2.217,3.768,3.768,0,0,1-.066-.922c0-.373-.044-.746-.044-1.186,0-.373.066-.746.066-1.12a3.768,3.768,0,0,1,.066-.922A8.636,8.636,0,0,1,8.05,8.669,6.111,6.111,0,0,1,9.28,6.891a6.478,6.478,0,0,1,2.042-1.12,9.709,9.709,0,0,1,2.832-.439,12.722,12.722,0,0,1,3.337.373,5.078,5.078,0,0,1,2.108.988,4.341,4.341,0,0,1,1.229,1.734,12.691,12.691,0,0,1,.549,2.459,9.443,9.443,0,0,1,.066,1.3,9.886,9.886,0,0,1-.066,1.361,1.945,1.945,0,0,1-.307,1.164,1.22,1.22,0,0,1-.856.307,1.547,1.547,0,0,1-.922-.307,1.307,1.307,0,0,1-.373-.988V8.537a.723.723,0,0,0-.176-.483.712.712,0,0,0-.5-.176h-1.6a.87.87,0,0,0-.483.176.66.66,0,0,0-.176.483v.241a2.758,2.758,0,0,0-.856-.812,2.64,2.64,0,0,0-1.537-.307,3.8,3.8,0,0,0-1.668.373,3.568,3.568,0,0,0-1.3,1.054,5.612,5.612,0,0,0-.812,1.668,8.062,8.062,0,0,0-.241,2.151,8.05,8.05,0,0,0,.241,2.108,4.142,4.142,0,0,0,.856,1.668,3.443,3.443,0,0,0,1.3,1.054,4.244,4.244,0,0,0,1.734.373,4.206,4.206,0,0,0,1.361-.132,2.592,2.592,0,0,0,.856-.307,2.293,2.293,0,0,0,.615-.5,3.451,3.451,0,0,0,.439-.5,3.162,3.162,0,0,0,1.164.812,4.762,4.762,0,0,0,2.108.373,4.326,4.326,0,0,0,1.427-.241,4.441,4.441,0,0,0,1.3-.746,4.869,4.869,0,0,0,.988-1.229,5.444,5.444,0,0,0,.439-1.734c0-.5.066-.988.066-1.6C24.406,11.765,24.34,11.194,24.34,10.777Zm-8.891,3.93a1.678,1.678,0,0,1-1.3.549,1.474,1.474,0,0,1-1.164-.549,2.467,2.467,0,0,1-.549-1.778,2.5,2.5,0,0,1,.549-1.844,1.506,1.506,0,0,1,1.164-.549,1.678,1.678,0,0,1,1.3.549,2.9,2.9,0,0,1,.483,1.844A2.536,2.536,0,0,1,15.449,14.706Z' transform='translate(-4.45 -2.5)' fill='%23fff'/%3E%3C/svg%3E%0A");
}

@media (max-width: 1000px) {
  .m-collaboration-main {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "content" "map";
  }
  .m-collaboration-right {
    justify-content: center;
    max-width: 600px;
    margin-inline: auto;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .m-collaboration-right img {
    width: 320px;
  }
  .m-collaboration-title-cnt {
    text-align: left;
  }
}
@media (max-width: 600px) {
  .m-collaboration-section {
    margin-top: 50px;
  }
  .m-collaboration-main {
    gap: 20px;
    padding-inline: 0;
  }
  .m-collaboration-left {
    padding-inline: 10px;
  }
  .m-collaboration-right {
    padding-left: 20px;
    gap: 40px;
  }
  .m-collaboration-content {
    margin-top: 20px;
    font-size: 14px;
    margin-bottom: 20px;
  }
  .m-collaboration-title {
    width: 100%;
    text-align: center;
    margin-left: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .m-contact-box-text {
    font-size: 18px;
  }
  .m-contact-box-name {
    font-size: 22px;
  }
  .m-contact-box-position {
    font-size: 12px;
  }
  .m-collaboration-right img {
    margin-right: -30px;
  }
}
@media (max-width: 476px) {
  .m-collaboration {
    overflow: hidden;
  }
  .m-collaboration-main {
    border-radius: 30px;
  }
  .m-collaboration-section-desc {
    margin-bottom: 0;
  }
  .m-collaboration-left {
    padding-bottom: 10px;
  }
  .m-collaboration-right {
    gap: 20px;
  }
  .m-collaboration-right img {
    width: 200px;
  }
  .m-contact-box-text {
    font-size: 15px;
  }
  .m-contact-box-content {
    margin-right: -20px;
  }
}
.m-partners {
  position: relative;
  padding-bottom: 10px;
}

.m-partners .button {
  background: #1C82C6;
  color: #000;
}

.m-partners-title {
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.m-partners-list.slider {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  margin-bottom: 0;
}
.m-partners-list.slider .slider-list-slide {
  grid-column: 1/-1;
  grid-row: 1/-1;
  opacity: 0;
  pointer-events: none;
}
.m-partners-list.slider .slider-list-slide.is-show {
  z-index: 1;
  opacity: 1;
  pointer-events: all;
}

.m-partners .slider-list-slide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(auto-fit, 1fr);
  align-items: start;
  align-content: start;
  gap: 10px 20px;
  align-items: start;
}

.m-partners-list-el {
  display: flex;
  flex-direction: column;
}
.m-partners-list-el small {
  text-transform: uppercase;
  color: #fff;
  font-size: 11px;
  text-align: center;
  line-height: 1em;
  padding: 3px 0;
}
.m-partners-list-el span, .m-partners-list-el a {
  background: #fff;
  height: 120px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-partners-list-el img {
  display: block;
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}

.slider-dots {
  display: flex;
  display: none;
  gap: 10px;
  justify-content: center;
}
.slider-dots .slider-dots-el {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #eee;
  text-indent: -999px;
  overflow: hidden;
}
.slider-dots .slider-dots-el.is-active {
  background: #1C82C6;
}

@media (max-width: 980px) {
  .m-partners {
    flex-direction: column;
    gap: 0;
    padding-left: 0;
  }
  .m-partners-title {
    position: relative;
    line-height: 1;
    margin-top: 0;
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
  }
  .m-partners-title span {
    writing-mode: horizontal-tb;
    text-align: center;
    text-orientation: initial;
    scale: 1 1;
    translate: none;
    position: relative;
    width: 100%;
    display: block;
  }
  .m-partners .slider-list-slide {
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .m-partners-title {
    margin-top: 20px;
  }
  .m-partners-list-el span, .m-partners-list-el a {
    height: 90px;
    border-radius: 10px;
  }
}
.body-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.subpage {
  flex: 1;
  background: #000525 url("https://pliki.konferencje.ptwp.pl/i/e6/f4/eb/8w4ngjxe9pyl3oqx.png") center top/100% auto no-repeat;
  min-height: calc(100vh - 200px);
  padding-bottom: 20px;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  padding-inline: 15px;
}

.subpage-header {
  padding-top: 120px;
  padding-bottom: 60px;
  padding-left: 20px;
  padding-right: 20px;
  color: #fff;
}

.subpage-title {
  text-align: center;
  font-size: clamp(35px, 5vw, 55px);
  margin: 40px 0 0;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.subpage-top-date {
  color: #000525;
  background: #fff;
  border-radius: 100px;
  padding: 10px 30px;
  text-align: center;
  max-width: -moz-max-content;
  max-width: max-content;
  font-weight: bold;
  margin: 20px auto 0;
  font-size: 20px;
}

.subpage-subtitle {
  color: #fff;
  text-align: center;
  max-width: 690px;
  margin: 0 auto;
  font-size: 18px;
  margin-top: 30px;
  font-weight: 300;
}

.subpage-content-cnt {
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  isolation: isolate;
  padding-bottom: 100px;
  z-index: 1;
}

.subpage-content {
  font-weight: 300;
  position: relative;
  max-width: 800px;
  background-color: #fff;
  border-radius: 20px;
  color: #000;
  padding: 60px;
  margin: 0 auto;
  line-height: 1.6;
  flex: 1;
  width: 100%;
}

:where(.subpage-content p) {
  margin-bottom: 20px;
}
:where(.subpage-content p):last-child {
  margin-bottom: 0;
}

:where(.subpage-content h2, .subpage-content h3) {
  color: #1C82C6;
  line-height: 1.2;
  margin-bottom: 20px;
  font-size: 25px;
  font-weight: 900;
}

:where(.subpage-content a:not([class])) {
  font-weight: bold;
}

:where(.subpage-content ol:not([class])) {
  margin-block: 20px;
  padding-left: 45px;
}
:where(.subpage-content ol:not([class])) li::marker {
  color: #1C82C6;
}

:where(.subpage-content ul:not([class])) {
  margin-block: 20px;
  list-style: none;
  padding: 0;
}
:where(.subpage-content ul:not([class])) li {
  position: relative;
  padding-left: 45px;
  margin-bottom: 20px;
}
:where(.subpage-content ul:not([class])) li:last-child {
  margin-bottom: 0;
}
:where(.subpage-content ul:not([class])) li::before {
  content: "";
  width: 36px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3Cpath fill='%232F77D0' d='M16.175 13H5q-.425 0-.712-.288T4 12t.288-.712T5 11h11.175l-4.9-4.9q-.3-.3-.288-.7t.313-.7q.3-.275.7-.288t.7.288l6.6 6.6q.15.15.213.325t.062.375t-.062.375t-.213.325l-6.6 6.6q-.275.275-.687.275T11.3 19.3q-.3-.3-.3-.712t.3-.713z'/%3E%3C/svg%3E");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.subpage-content-header {
  margin: -60px;
  margin-bottom: 50px;
  aspect-ratio: 780/360;
  background-position: center;
  background-size: cover;
}

@media (max-width: 600px) {
  .subpage-subtitle {
    font-size: 17px;
  }
  .subpage-content {
    padding: 30px;
  }
  .subpage-content-header {
    margin: -40px;
    margin-bottom: 50px;
  }
}
@media (max-width: 476px) {
  .subpage-header {
    padding-bottom: 30px;
  }
  .subpage-content {
    padding: 20px;
    border-radius: 10px;
  }
}
.subpage-content:has(.timeline) {
  background: transparent;
  padding: 30px;
  color: #fff;
  padding-top: 0;
}
@media (max-width: 600px) {
  .subpage-content:has(.timeline) {
    padding-inline: 20px;
  }
}
@media (max-width: 478px) {
  .subpage-content:has(.timeline) {
    padding-inline: 0;
  }
}

.subpage-content:has(.agenda-panel) {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  padding: 30px;
  color: #fff;
}
@media (max-width: 600px) {
  .subpage-content:has(.agenda-panel) {
    padding-inline: 20px;
  }
}

.timeline-list-days {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline-list-days-el {
  flex: 1;
  max-width: 200px;
  height: 80px;
  border-radius: 4px;
  font-size: 26px;
}
.timeline-list-days-el.is-active {
  color: #fff;
}
.timeline-list-days-el.is-active span, .timeline-list-days-el.is-active a {
  color: inherit;
}
.timeline-list-days-el span, .timeline-list-days-el a {
  font-weight: bold;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.timeline-list-days-el small {
  font-weight: normal;
  font-size: 14px;
}

.agenda-events-time {
  font-size: 25px;
  color: #fff;
  display: flex;
  align-items: center;
  font-weight: 900;
  gap: 20px;
  margin: 30px 0;
}
.agenda-events-time::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.4);
}

.agenda-events {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 70px;
}
@media (max-width: 700px) {
  .agenda-events {
    grid-template-columns: repeat(2, 1fr);
  }
}

.agenda-event {
  max-width: 250px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  flex: 1;
  padding: 20px;
  min-height: 100px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.agenda-event-content {
  width: 100%;
  display: flex;
  min-height: 140px;
  flex-direction: column;
}

.agenda-event-type {
  font-size: 13px;
  font-weight: normal;
  display: block;
  margin-bottom: 10px;
  color: #ddd;
}

.agenda-event-title {
  text-transform: uppercase;
  font-size: 15px;
  flex: 1;
  margin-top: 0;
  line-height: 1.4;
  color: #fff;
  font-weight: 900;
  margin-bottom: auto;
}
@media (max-width: 500px) {
  .agenda-event-title {
    font-size: 12px;
  }
}
.agenda-event-title a {
  color: #fff;
}
.agenda-event-title a:hover {
  color: #1C82C6;
}

.agenda-event-links {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  padding-top: 20px;
}
.agenda-event-links a {
  color: #fff;
  font-weight: bold;
  font-size: 13px;
  text-decoration: none;
}
.agenda-event-links a:hover {
  color: #1C82C6;
}

.agenda-event-bottom {
  display: flex;
  height: 25px;
  margin-top: 10px;
  gap: 4px;
  font-size: 10px;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 500px) {
  .agenda-event-bottom {
    font-size: 10px;
  }
}

.agenda-event-broadcast,
.agenda-event-translate {
  text-decoration: none;
  flex: 1 1 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.agenda-event-broadcast::before {
  content: "";
  width: 21px;
  height: 21px;
  background-image: url(/nowyprzemysl.pl/images/icon-broadcast.svg);
  background-size: 17px;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 5px;
}

.agenda-event-translate::before {
  content: "";
  width: 21px;
  height: 21px;
  background-image: url(/nowyprzemysl.pl/images/icon-earth.svg);
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 5px;
}

.agenda-panel {
  margin-top: 40px;
  padding-bottom: 10px;
  line-height: 1.6;
}

.agenda-panel-title {
  font-size: 30px;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 500px) {
  .agenda-panel-title {
    font-size: 25px;
  }
}

.agenda-panel-date {
  color: #fff;
  font-size: 16px;
  margin-bottom: 25px;
}

.agenda-panel-social {
  display: flex;
  padding: 0;
  list-style: none;
  gap: 10px;
}
.agenda-panel-social svg {
  transition: 0.2s fill;
  fill: #fff;
}
.agenda-panel-social a:hover svg {
  fill: #fff;
}

.agenda-panel-section {
  margin-bottom: 50px;
}

.agenda-panel-section-title {
  font-size: 25px;
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 30px 0;
}
.agenda-panel-section-title::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.4);
}

.agenda-panel-speakers {
  flex-wrap: wrap;
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.agenda-panel-speaker {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  flex-direction: column;
  font-size: 14px;
  color: inherit;
  text-align: center;
}

.agenda-panel-speaker-photo {
  width: 100px;
  height: 100px;
}

.agenda-panel-speaker-img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
}

.agenda-panel-speaker-content {
  font-weight: normal;
}
.agenda-panel-speaker-content a {
  font-weight: inherit;
}

.agenda-panel-speaker-name {
  margin: 0;
  margin-bottom: 5px;
}

.agenda-panel-speaker-company {
  color: #888;
}

.agenda-panel-back {
  margin-top: 20px;
}

.agenda-panel .yt {
  padding-bottom: 56.25%;
  position: relative;
  margin: 20px 0;
}
.agenda-panel .yt iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

ul.list-12 {
  display: block;
  padding: 0 !important;
  list-style-type: none;
}
ul.list-12 li {
  display: flex;
  align-items: center;
  margin: 0 0 1.5rem !important;
}
ul.list-12 .wrap {
  display: flex;
  align-items: center;
}
ul.list-12 div.img {
  width: 60px;
  flex: 0 0 60px;
}
ul.list-12 div.img + div.desc {
  padding-left: 1.5rem;
}
ul.list-12 div.desc {
  flex: 1;
}
ul.list-12 div.img img {
  display: block;
  width: 60px;
  height: auto;
  border-radius: 100%;
}
ul.list-12 p {
  font-weight: 700;
  margin: 0;
  font-size: 18px;
}
ul.list-12 small {
  display: block;
  margin: 0.25rem 0 0;
}

.prelegents-section-list {
  margin: 0 0 2rem;
}

.prelegents-section-list ul.list-12 {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  font-size: 16px;
}
.prelegents-section-list ul.list-12 li {
  flex: 0 0 calc(50% - 20px);
  margin-bottom: 0 !important;
}
.prelegents-section-list ul.list-12 a {
  color: #000;
}
.prelegents-section-list ul.list-12 a:hover {
  color: #1C82C6;
}
@media (max-width: 760px) {
  .prelegents-section-list ul.list-12 {
    gap: 20px;
  }
  .prelegents-section-list ul.list-12 li {
    flex: 0 0 100%;
  }
}

.agenda-download {
  justify-content: center;
  display: flex;
  margin-bottom: 60px;
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 40px;
}
.agenda-download h4 {
  margin: 10px;
}
.agenda-download a {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232F77D0' class='bi bi-file-pdf-fill' viewBox='0 0 16 16'%3E  %3Cpath d='M5.523 10.424c.14-.082.293-.162.459-.238a7.878 7.878 0 0 1-.45.606c-.28.337-.498.516-.635.572a.266.266 0 0 1-.035.012.282.282 0 0 1-.026-.044c-.056-.11-.054-.216.04-.36.106-.165.319-.354.647-.548zm2.455-1.647c-.119.025-.237.05-.356.078a21.035 21.035 0 0 0 .5-1.05 11.96 11.96 0 0 0 .51.858c-.217.032-.436.07-.654.114zm2.525.939a3.888 3.888 0 0 1-.435-.41c.228.005.434.022.612.054.317.057.466.147.518.209a.095.095 0 0 1 .026.064.436.436 0 0 1-.06.2.307.307 0 0 1-.094.124.107.107 0 0 1-.069.015c-.09-.003-.258-.066-.498-.256zM8.278 4.97c-.04.244-.108.524-.2.829a4.86 4.86 0 0 1-.089-.346c-.076-.353-.087-.63-.046-.822.038-.177.11-.248.196-.283a.517.517 0 0 1 .145-.04c.013.03.028.092.032.198.005.122-.007.277-.038.465z'%3E%3C/path%3E  %3Cpath fill-rule='evenodd' d='M4 0h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2zm.165 11.668c.09.18.23.343.438.419.207.075.412.04.58-.03.318-.13.635-.436.926-.786.333-.401.683-.927 1.021-1.51a11.64 11.64 0 0 1 1.997-.406c.3.383.61.713.91.95.28.22.603.403.934.417a.856.856 0 0 0 .51-.138c.155-.101.27-.247.354-.416.09-.181.145-.37.138-.563a.844.844 0 0 0-.2-.518c-.226-.27-.596-.4-.96-.465a5.76 5.76 0 0 0-1.335-.05 10.954 10.954 0 0 1-.98-1.686c.25-.66.437-1.284.52-1.794.036-.218.055-.426.048-.614a1.238 1.238 0 0 0-.127-.538.7.7 0 0 0-.477-.365c-.202-.043-.41 0-.601.077-.377.15-.576.47-.651.823-.073.34-.04.736.046 1.136.088.406.238.848.43 1.295a19.707 19.707 0 0 1-1.062 2.227 7.662 7.662 0 0 0-1.482.645c-.37.22-.699.48-.897.787-.21.326-.275.714-.08 1.103z'%3E%3C/path%3E%3C/svg%3E");
  background-size: 40px;
  background-position: left center;
  min-height: 50px;
  background-repeat: no-repeat;
  text-decoration: none;
  display: inline-flex;
  padding-left: 45px;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  color: #000 !important;
}
.agenda-download img {
  display: none;
}

.login-popup .popup-container {
  padding: 30px;
}
.login-popup .popup-head {
  margin: -30px -30px 30px -30px;
  padding: 30px;
}
.login-popup .form-row {
  margin-bottom: 15px;
}
.login-popup .popup-footer {
  font-size: 16px;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-box {
  grid-area: content;
  display: flex;
  flex-direction: row-reverse;
  max-width: 600px;
  gap: 20px;
  margin-bottom: -60px;
}
@media (max-width: 600px) {
  .contact-box {
    margin-bottom: -30px;
  }
}

.contact-box-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-box img {
  width: 260px;
  display: block;
}

.contact-box-text {
  font-size: 20px;
}

.contact-box-text {
  font-size: 20px;
}

.contact-box-name {
  font-size: 24px;
  line-height: 1.2;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 5px;
}

.contact-box-position {
  font-size: 16px;
}

.contact-box-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.contact-box-link {
  color: inherit;
  text-decoration: none;
  height: 20px;
  display: inline-flex;
  align-items: center;
  padding-left: 30px;
  background-size: 20px;
  background-position: left center;
  background-repeat: no-repeat;
}

.contact-box-link--ln {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20.004' height='20.004' viewBox='0 0 20.004 20.004'%3E%3Cg id='_x31_0.Linkedin' transform='translate(-10 -10)'%3E%3Cpath id='Path_1823' data-name='Path 1823' d='M51.228,48.978V41.651c0-3.6-.775-6.351-4.976-6.351a4.342,4.342,0,0,0-3.926,2.15h-.05V35.625H38.3V48.978h4.151V42.351c0-1.75.325-3.426,2.475-3.426,2.125,0,2.15,1.975,2.15,3.526v6.5h4.151Z' transform='translate(-21.224 -18.974)' fill='black'/%3E%3Cpath id='Path_1824' data-name='Path 1824' d='M11.3,36.6h4.151V49.953H11.3Z' transform='translate(-0.975 -19.949)' fill='black'/%3E%3Cpath id='Path_1825' data-name='Path 1825' d='M12.4,10a2.413,2.413,0,1,0,2.4,2.4A2.4,2.4,0,0,0,12.4,10Z' fill='black'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.contact-box-link--mail {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20.856' viewBox='0 0 20 20.856'%3E%3Cpath id='Path_1826' data-name='Path 1826' d='M24.34,10.777a17.267,17.267,0,0,0-.681-3.139,6.363,6.363,0,0,0-1.734-2.656,8.548,8.548,0,0,0-3.03-1.8A14.649,14.649,0,0,0,14.154,2.5a12.256,12.256,0,0,0-4.193.681,9.664,9.664,0,0,0-2.9,1.844,7.512,7.512,0,0,0-1.8,2.656,9.006,9.006,0,0,0-.746,3.1,3.768,3.768,0,0,0-.066.922v2.525a3.768,3.768,0,0,0,.066.922,9.216,9.216,0,0,0,.812,3.139,7.988,7.988,0,0,0,1.844,2.591,9.082,9.082,0,0,0,2.964,1.8,10.1,10.1,0,0,0,4.018.681,12.809,12.809,0,0,0,3.205-.307,11.964,11.964,0,0,0,2.459-.812h.022a1.042,1.042,0,0,0,.022-1.888l-.154-.088a2.653,2.653,0,0,0-2.086-.11H17.6a6.281,6.281,0,0,1-1.361.307,19.222,19.222,0,0,1-2.108.066,9.475,9.475,0,0,1-2.766-.373,5.324,5.324,0,0,1-1.976-1.12,5.459,5.459,0,0,1-1.3-1.778,6.356,6.356,0,0,1-.615-2.217,3.768,3.768,0,0,1-.066-.922c0-.373-.044-.746-.044-1.186,0-.373.066-.746.066-1.12a3.768,3.768,0,0,1,.066-.922A8.636,8.636,0,0,1,8.05,8.669,6.111,6.111,0,0,1,9.28,6.891a6.478,6.478,0,0,1,2.042-1.12,9.709,9.709,0,0,1,2.832-.439,12.722,12.722,0,0,1,3.337.373,5.078,5.078,0,0,1,2.108.988,4.341,4.341,0,0,1,1.229,1.734,12.691,12.691,0,0,1,.549,2.459,9.443,9.443,0,0,1,.066,1.3,9.886,9.886,0,0,1-.066,1.361,1.945,1.945,0,0,1-.307,1.164,1.22,1.22,0,0,1-.856.307,1.547,1.547,0,0,1-.922-.307,1.307,1.307,0,0,1-.373-.988V8.537a.723.723,0,0,0-.176-.483.712.712,0,0,0-.5-.176h-1.6a.87.87,0,0,0-.483.176.66.66,0,0,0-.176.483v.241a2.758,2.758,0,0,0-.856-.812,2.64,2.64,0,0,0-1.537-.307,3.8,3.8,0,0,0-1.668.373,3.568,3.568,0,0,0-1.3,1.054,5.612,5.612,0,0,0-.812,1.668,8.062,8.062,0,0,0-.241,2.151,8.05,8.05,0,0,0,.241,2.108,4.142,4.142,0,0,0,.856,1.668,3.443,3.443,0,0,0,1.3,1.054,4.244,4.244,0,0,0,1.734.373,4.206,4.206,0,0,0,1.361-.132,2.592,2.592,0,0,0,.856-.307,2.293,2.293,0,0,0,.615-.5,3.451,3.451,0,0,0,.439-.5,3.162,3.162,0,0,0,1.164.812,4.762,4.762,0,0,0,2.108.373,4.326,4.326,0,0,0,1.427-.241,4.441,4.441,0,0,0,1.3-.746,4.869,4.869,0,0,0,.988-1.229,5.444,5.444,0,0,0,.439-1.734c0-.5.066-.988.066-1.6C24.406,11.765,24.34,11.194,24.34,10.777Zm-8.891,3.93a1.678,1.678,0,0,1-1.3.549,1.474,1.474,0,0,1-1.164-.549,2.467,2.467,0,0,1-.549-1.778,2.5,2.5,0,0,1,.549-1.844,1.506,1.506,0,0,1,1.164-.549,1.678,1.678,0,0,1,1.3.549,2.9,2.9,0,0,1,.483,1.844A2.536,2.536,0,0,1,15.449,14.706Z' transform='translate(-4.45 -2.5)' fill='black'/%3E%3C/svg%3E%0A");
}

@media (max-width: 600px) {
  .contact-box-text {
    font-size: 18px;
  }
  .contact-box img {
    max-width: 220px;
    margin-right: -30px;
  }
  .contact-box-name {
    font-size: 22px;
  }
  .contact-box-position {
    font-size: 12px;
  }
}
@media (max-width: 500px) {
  .contact-box {
    overflow-x: hidden;
    margin-inline: -20px;
    padding-left: 20px;
    gap: 10px;
  }
  .contact-box-text {
    font-size: 13px;
  }
  .contact-box img {
    max-width: 200px;
    margin-right: -50px;
  }
  .contact-box-name {
    font-size: 20px;
  }
  .contact-box-position {
    font-size: 11px;
  }
  .contact-box-link {
    height: 15px;
    padding-left: 25px;
    font-size: 14px;
    background-size: 15px;
  }
}
.register-box {
  padding: 30px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin: 0 0 1.5rem;
}
.register-box h2, .register-box h3 {
  margin-top: 0;
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
  color: #000;
}
.register-box .register-buttons {
  margin: 0;
}
.register-box .register-buttons .button {
  font-size: 16px;
}
.register-box .register-buttons .button ~ .button {
  background: #156aa2;
}
.register-box .register-buttons .button ~ .button:hover {
  background: #126398;
}
@media (max-width: 500px) {
  .register-box .register-buttons .button {
    min-height: 0;
  }
}

.register-box ~ .register-box {
  border-radius: 3px;
  padding: 30px;
  margin: 40px 0;
  background: #f6f6f6;
}

.register-buttons {
  display: flex;
  gap: 20px;
  margin: 30px 0;
  justify-content: center;
}
.register-buttons .button {
  gap: 2px;
  line-height: 1.2;
  font-weight: 200;
  font-size: 13px;
  padding-left: 20px;
  padding-right: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-transform: none;
  text-align: center;
  border-radius: 5px;
}
.register-buttons .button strong {
  font-size: 20px;
}
.register-buttons span {
  max-width: 300px;
}
@media (max-width: 500px) {
  .register-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .register-buttons .button {
    min-height: 90px;
  }
}

.register-list-cnt {
  overflow-x: auto;
}

.register-list-cnt {
  margin: 30px 0;
}
.register-list-cnt > h3 {
  text-align: center;
}

.register-list {
  width: 100%;
  border: 1px solid #ddd;
  margin: 0 0 30px 0;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.2;
  box-shadow: 0 3px 5px -2px rgba(0, 0, 0, 0.1);
}
.register-list td, .register-list th {
  border: 1px solid #ddd;
  padding: 15px;
  width: 25%;
  vertical-align: top;
}
.register-list thead th p, .register-list thead td p {
  margin: 0;
}
.register-list thead p small br {
  display: none;
}
.register-list img {
  filter: hue-rotate(35deg);
}
.register-list .register-list-head-text,
.register-list small {
  display: block;
  margin-bottom: 10px;
  color: #888;
}
.register-list .register-list-head-name,
.register-list strong {
  display: block;
  font-size: 22px;
  margin-bottom: 10px;
  color: #1C82C6;
}
.register-list .register-list-head-price {
  display: block;
  font-size: 14px;
  color: #000;
}
.register-list tbody td {
  vertical-align: middle;
}
.register-list tbody td:not(:first-child) {
  text-align: center;
  width: 230px;
  vertical-align: middle;
}
.register-list tbody tr:nth-of-type(even) {
  background: #f6f6f6;
}
@media (max-width: 670px) {
  .register-list {
    font-size: 15px;
  }
  .register-list td, .register-list th {
    padding: 10px;
  }
  .register-list tbody td:first-child {
    font-size: 13px;
  }
  .register-list .register-list-head-name {
    font-size: 20px;
  }
  .register-list tbody td:not(:first-child) {
    text-align: center;
    width: 160px;
  }
  .register-list tbody td:first-child {
    font-size: 14px;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-list dt {
  cursor: pointer;
  font-weight: bold;
  color: #1C82C6;
  padding: 3px 40px 3px 0;
  position: relative;
}
.faq-list dt a {
  text-decoration: none;
  color: inherit;
}
.faq-list dt::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  translate: 0 -50%;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='m12 15l-5-5h10z'/%3E%3C/svg%3E");
  background-size: 17px;
  background-position: center;
  background-repeat: no-repeat;
}
.faq-list dt:has(+ dd.is-show)::after {
  scale: 1 -1;
}
.faq-list dd {
  display: none;
  padding-top: 0;
  padding-left: 0;
  margin-left: 0;
  padding-bottom: 20px;
  font-size: 17px;
}
.faq-list dd p:first-child {
  margin-top: 0;
}
.faq-list dd.is-show {
  display: block;
}

.featured {
  padding: 1.5rem;
  background: #f4fbff;
  border: 1px solid #1C82C6;
  margin: 0 0 1.5rem;
  border-radius: 6px;
}
.featured *:first-child {
  margin-top: 0;
}
.featured *:last-child {
  margin-bottom: 0;
}
/*# sourceMappingURL=style.2026.css.map */
