:root {
  --hSpace: 40px;
  --mSpace: 180px;
}
@media (max-width: 500px) {
  :root {
    --hSpace: 20px;
  }
}

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

html {
  font-family: "Schibsted Grotesk", sans-serif;
  background: #E5E2DC;
  height: 100%;
  min-width: 320px;
  font-size: 16px;
  line-height: 1.45;
}
@media (max-width: 1200px) {
  html {
    font-size: 15px;
  }
}

html, body {
  overflow-x: hidden;
  scroll-padding-top: 140px;
}

body {
  margin: 0;
  color: #4B4B4B;
  line-height: 1.45;
}
body.is-popup-show {
  height: 100%;
  overflow: hidden;
}

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

input {
  font-family: "Unbounded", sans-serif;
}

a {
  text-decoration: none;
  color: #2F5C85;
}

@media screen and (prefers-reduced-motion: reduce) {
  * {
    transition: 0s !important;
  }
}
.hidden, [hidden] {
  display: none !important;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.container {
  max-width: 1470px;
  margin: 0 auto;
}

.button {
  min-height: 40px;
  background: #2F5C85;
  line-height: 1.2;
  border-radius: 3px;
  padding: 0 20px;
  color: #fff;
  font-weight: bold;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-family: "Unbounded", sans-serif;
  font-size: 13px;
  transition: 0.2s background-color;
}
.button:hover {
  background: #3d75a8;
}

.button-outline {
  min-height: 40px;
  background: none;
  color: #2F5C85;
  border: 1px solid #2F5C85;
  line-height: 1.2;
  border-radius: 3px;
  padding: 0 20px;
  font-weight: bold;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-family: "Unbounded", sans-serif;
  font-size: 13px;
  transition: 0.2s background-color, 0.2s color;
}
.button-outline:hover {
  border-color: #3d75a8;
  color: #3d75a8;
}

.header {
  display: flex;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 3;
  font-family: "Unbounded", sans-serif;
  background: transparent;
  transition: 0.2s background, 0.2s box-shadow;
}

.header.is-sticky {
  background: #E5E2DC;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.header-inside {
  max-width: 1470px;
  padding-inline: var(--hSpace);
  width: 100%;
  margin: 0 auto;
  display: flex;
}

.logo {
  width: 180px;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-burger {
  background: none;
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 0;
  cursor: pointer;
  grid-column: -2/-1;
  padding: 0;
  align-self: center;
  display: none;
}
.header-burger strong {
  display: none;
}
.header-burger span {
  width: 30px;
  height: 3px;
  background: #2F5C85;
  margin: 2px;
}

.nav {
  flex: 1;
  display: flex;
  align-items: center;
}

.menu {
  flex: 1;
  list-style: none;
  margin: 0;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.menu-el {
  margin-right: 20px;
  position: relative;
}

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

.menu-el-toggle,
.menu-sub-el-toggle {
  display: block;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 5px;
  margin: 0;
  padding: 0;
  text-indent: -9999px;
  overflow: hidden;
  z-index: 1;
  background: #2F5C85;
  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 14.975q-.2 0-.375-.062T11.3 14.7l-4.6-4.6q-.275-.275-.275-.7t.275-.7t.7-.275t.7.275l3.9 3.9l3.9-3.9q.275-.275.7-.275t.7.275t.275.7t-.275.7l-4.6 4.6q-.15.15-.325.213t-.375.062'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
  display: none;
}

.menu-el-link {
  font-size: inherit;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  transition: 0.1s color;
  flex: 1;
  display: flex;
  align-items: center;
}
.menu-el-link:hover {
  color: #2F5C85;
}

@media (min-width: 1210px) {
  .menu-el:has(.menu-sub) > .menu-el-inside .menu-el-link {
    background: url(/images/2023/arrow-down-dark.svg) right 8px no-repeat;
    padding-right: 10px;
  }
  .menu-el:hover > .menu-el-inside .menu-link {
    color: #2F5C85;
  }
  .menu-el:hover > .menu-sub {
    display: block;
  }
}
.menu-sub {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  translate: -50%;
  left: 50%;
  padding: 20px 0;
  list-style: none;
  margin: 0;
  background: #fff;
  border-radius: 5px;
  flex-direction: column;
  align-items: flex-start;
  white-space: nowrap;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.menu-sub:before {
  content: "";
  height: 10px;
  width: 100%;
  background: transparent;
  display: block;
  position: absolute;
  left: 0;
  top: -10px;
}

.menu-sub-el-link {
  padding: 3px 20px;
}

.menu-sub-el {
  margin-right: 0;
  position: static;
}

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

.menu-sub-el-link {
  color: inherit;
  display: flex;
  align-items: center;
  flex: 1;
}
.menu-sub-el-link:hover {
  color: #2F5C85;
}

@media (min-width: 1210px) {
  .menu-sub-el:has(.menu-sub) > .menu-sub-el-inside .menu-sub-el-link {
    padding-right: 35px;
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 16px;
    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='%236AA975' d='m12 16l4-4l-4-4l-1.4 1.4l1.6 1.6H8v2h4.2l-1.6 1.6zm0 6q-2.075 0-3.9-.788t-3.175-2.137T2.788 15.9T2 12t.788-3.9t2.137-3.175T8.1 2.788T12 2t3.9.788t3.175 2.137T21.213 8.1T22 12t-.788 3.9t-2.137 3.175t-3.175 2.138T12 22'/%3E%3C/svg%3E");
  }
  .menu-sub-el:hover > .menu-sub-el-inside .menu-sub-el-link {
    color: #2F5C85;
  }
  .menu-sub-el:hover > .menu-sub {
    display: block;
  }
}
.menu-sub .menu-sub {
  left: calc(100% + 10px);
  translate: 0;
  top: 0;
}
.menu-sub .menu-sub::before {
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 10px;
  translate: -100%;
  background: transparent;
}

.register {
  height: 40px;
  background: #2F5C85;
  padding: 0 20px;
  color: #fff;
  font-weight: bold;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
}
.register:hover {
  background: #3d75a8;
}

.login {
  width: 45px;
  height: 40px;
  border-radius: 3px;
  border: 1px solid #2F5C85;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-bottom-width: 2px;
  background: url(/images/2026/user-icon.svg) center no-repeat;
  text-indent: -999px;
  overflow: hidden;
  margin-left: 5px;
}

.register-out {
  min-width: 45px;
  height: 40px;
  border-radius: 3px;
  border: 1px solid #2F5C85;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-bottom-width: 2px;
  overflow: hidden;
  color: #2F5C85;
  font-weight: bold;
  padding: 0 20px;
  cursor: default;
}

@media (max-width: 1210px) {
  .header-inside {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "logo nav toggle";
    border-bottom: 0;
    backdrop-filter: none;
    background: none;
    padding: 20px var(--hSpace);
  }
  .header-burger {
    display: flex;
  }
  .nav {
    grid-area: nav;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .logo {
    height: auto;
    justify-content: center;
    grid-area: logo;
    align-self: center;
    justify-self: center;
  }
  .register {
    font-size: 14px;
  }
  .login {
    margin-right: 10px;
  }
  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    right: 0;
    left: 0;
    top: 100%;
    margin-right: 0;
    background: #E5E2DC;
    backdrop-filter: blur(2px);
    padding: 20px 40px 40px 40px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
  }
  .menu-el {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .menu-el:last-child {
    border: 0;
  }
  .menu-sub,
  .menu-sub .menu-sub {
    position: relative;
    top: 0;
    left: 0;
    translate: none;
    padding: 0;
  }
  .menu-el,
  .menu-sub-el {
    width: 100%;
    max-width: 450px;
  }
  .menu-el-link,
  .menu-sub-el-link {
    background: none;
    padding: 8px 0;
    font-size: 18px;
  }
  .menu-el-toggle,
  .menu-sub-el-toggle {
    display: block;
  }
  body.is-menu-show .header-burger {
    position: relative;
  }
  body.is-menu-show .header-burger span:nth-of-type(3) {
    display: none;
  }
  body.is-menu-show .header-burger span {
    position: absolute;
    left: 50%;
    top: 50%;
  }
  body.is-menu-show .header-burger span:nth-of-type(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  body.is-menu-show .header-burger span:nth-of-type(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  body.is-menu-show .menu {
    display: flex;
  }
  .is-show > * > .menu-el-toggle, .is-show > * > .menu-sub-el-toggle {
    scale: 1 -1;
  }
  .is-show > .menu-sub {
    display: block;
    position: relative;
    background: none;
    box-shadow: none;
  }
}
@media (max-width: 560px) {
  .header-inside {
    padding-block: 10px;
  }
  .logo {
    max-width: 100px;
  }
  .register-out {
    font-size: 11px;
    padding-inline: 15px;
  }
  .menu-el-link,
  .menu-sub-el-link {
    background: none;
    padding: 8px 0;
    font-size: 13px;
  }
}
.p-footer {
  padding: 30px;
  position: relative;
  z-index: 1;
  background: #fff;
}

.p-footer-inside {
  max-width: 1470px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.p-footer-main {
  flex: 1;
}

.p-footer-text {
  margin-top: 10px;
  display: block;
}

.p-footer-nav {
  display: flex;
  gap: 20px;
}
.p-footer-nav a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: 0.2s color;
}
.p-footer-nav a:hover {
  color: #3d75a8;
}

@media (max-width: 700px) {
  .p-footer {
    flex-direction: column;
    padding: 30px;
  }
  .p-footer-text {
    margin-top: 30px;
  }
}
@media (max-width: 870px) {
  .p-footer-inside {
    flex-direction: column;
    gap: 10px;
  }
  .p-footer-logo {
    margin-bottom: 20px;
  }
  .p-footer-nav {
    justify-content: center;
    flex-wrap: wrap;
  }
  .p-footer-nav a {
    max-width: 100%;
  }
}
@media (max-width: 870px) {
  .p-footer-nav {
    flex-direction: column;
  }
}
.m-title {
  font-size: 42px;
  font-family: "Unbounded", sans-serif;
  margin: 0;
  line-height: 1.2;
  margin-bottom: 30px;
}
@media (max-width: 640px) {
  .m-title {
    font-size: 30px;
  }
}

.m-text {
  max-width: 1000px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
}

.focus {
  font-family: "Unbounded", sans-serif;
  padding-top: 100px;
  background: #CBC8C3 url(/images/2026/bg.jpg);
  padding-bottom: 100px;
  mask: linear-gradient(to top, rgba(0, 0, 0, 0), #000 100px);
}

.focus-inside {
  max-width: 1470px;
  padding-inline: var(--hSpace);
  margin-inline: auto;
  display: flex;
  gap: 80px;
  align-items: center;
}

.focus-main {
  display: flex;
  flex-direction: column;
}

.focus-title {
  font-size: 48px;
  text-transform: uppercase;
  line-height: 1.3;
}

.focus-img {
  max-width: 50%;
}
.focus-img svg {
  width: 100%;
  height: auto;
}
.focus-img path:nth-of-type(1) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 0.05s 1 ease-in-out both;
}
.focus-img path:nth-of-type(2) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 0.1s 1 ease-in-out both;
}
.focus-img path:nth-of-type(3) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 0.15s 1 ease-in-out both;
}
.focus-img path:nth-of-type(4) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 0.2s 1 ease-in-out both;
}
.focus-img path:nth-of-type(5) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 0.25s 1 ease-in-out both;
}
.focus-img path:nth-of-type(6) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 0.3s 1 ease-in-out both;
}
.focus-img path:nth-of-type(7) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 0.35s 1 ease-in-out both;
}
.focus-img path:nth-of-type(8) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 0.4s 1 ease-in-out both;
}
.focus-img path:nth-of-type(9) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 0.45s 1 ease-in-out both;
}
.focus-img path:nth-of-type(10) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 0.5s 1 ease-in-out both;
}
.focus-img path:nth-of-type(11) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 0.55s 1 ease-in-out both;
}
.focus-img path:nth-of-type(12) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 0.6s 1 ease-in-out both;
}
.focus-img path:nth-of-type(13) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 0.65s 1 ease-in-out both;
}
.focus-img path:nth-of-type(14) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 0.7s 1 ease-in-out both;
}
.focus-img path:nth-of-type(15) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 0.75s 1 ease-in-out both;
}
.focus-img path:nth-of-type(16) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 0.8s 1 ease-in-out both;
}
.focus-img path:nth-of-type(17) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 0.85s 1 ease-in-out both;
}
.focus-img path:nth-of-type(18) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 0.9s 1 ease-in-out both;
}
.focus-img path:nth-of-type(19) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 0.95s 1 ease-in-out both;
}
.focus-img path:nth-of-type(20) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 1s 1 ease-in-out both;
}
.focus-img path:nth-of-type(21) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 1.05s 1 ease-in-out both;
}
.focus-img path:nth-of-type(22) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 1.1s 1 ease-in-out both;
}
.focus-img path:nth-of-type(23) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 1.15s 1 ease-in-out both;
}
.focus-img path:nth-of-type(24) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 1.2s 1 ease-in-out both;
}
.focus-img path:nth-of-type(25) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 1.25s 1 ease-in-out both;
}
.focus-img path:nth-of-type(26) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 1.3s 1 ease-in-out both;
}
.focus-img path:nth-of-type(27) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 1.35s 1 ease-in-out both;
}
.focus-img path:nth-of-type(28) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 1.4s 1 ease-in-out both;
}
.focus-img path:nth-of-type(29) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 1.45s 1 ease-in-out both;
}
.focus-img path:nth-of-type(30) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 1.5s 1 ease-in-out both;
}
.focus-img path:nth-of-type(31) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 1.55s 1 ease-in-out both;
}
.focus-img path:nth-of-type(32) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 1.6s 1 ease-in-out both;
}
.focus-img path:nth-of-type(33) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 1.65s 1 ease-in-out both;
}
.focus-img path:nth-of-type(34) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 1.7s 1 ease-in-out both;
}
.focus-img path:nth-of-type(35) {
  stroke-dasharray: 3200px;
  stroke-dashoffset: -3200px;
  animation: animFocus 4s 1.75s 1 ease-in-out both;
}

@keyframes animFocus {
  100% {
    stroke-dashoffset: 0;
  }
}
.focus-text {
  font-size: 24px;
  font-weight: bold;
  color: #2F5C85;
  margin-bottom: 30px;
  max-width: 800px;
}

.focus-date,
.focus-place {
  font-size: 16px;
  font-weight: bold;
}

.focus-place {
  margin-bottom: 30px;
  margin-top: 10px;
}

.focus-buttons {
  display: flex;
  gap: 10px;
}

@media (max-width: 1100px) {
  .focus-img {
    position: absolute;
    left: 0;
    top: 50%;
    translate: -20% -50%;
  }
  .focus-main {
    max-width: 600px;
    margin-inline: auto;
    z-index: 2;
  }
}
@media (max-width: 640px) {
  .focus {
    padding-bottom: 80px;
    mask: linear-gradient(to top, rgba(0, 0, 0, 0), #000 80px);
  }
  .focus-inside {
    flex-direction: column;
    padding-inline: var(--hSpace);
    gap: 30px;
  }
  .focus-img {
    position: relative;
    translate: 0;
    max-width: 100%;
  }
  .focus-main {
    margin-top: -230px;
  }
  .focus-title {
    font-size: 30px;
  }
  .focus-text {
    font-size: 20px;
  }
  .focus-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .focus-buttons [class*=button] {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .focus-img {
    width: 150%;
    max-width: 150%;
  }
  .focus-main {
    margin-top: -300px;
  }
}
.m-about {
  max-width: 1470px;
  margin-inline: auto;
  position: relative;
  padding-top: 100px;
  padding-bottom: 180px;
  padding-inline: var(--hSpace);
}

.m-about-main {
  display: flex;
  gap: 80px;
  position: relative;
}

.m-about-addon {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: 240px;
  translate: 0 -60%;
  z-index: -1;
}
.m-about-addon path {
  stroke-dasharray: 2500px;
  stroke-dashoffset: -2500px;
}

.is-animated .m-about-addon path:nth-of-type(1) {
  animation: animLines 5s 0.02s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(2) {
  animation: animLines 5s 0.04s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(3) {
  animation: animLines 5s 0.06s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(4) {
  animation: animLines 5s 0.08s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(5) {
  animation: animLines 5s 0.1s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(6) {
  animation: animLines 5s 0.12s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(7) {
  animation: animLines 5s 0.14s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(8) {
  animation: animLines 5s 0.16s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(9) {
  animation: animLines 5s 0.18s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(10) {
  animation: animLines 5s 0.2s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(11) {
  animation: animLines 5s 0.22s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(12) {
  animation: animLines 5s 0.24s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(13) {
  animation: animLines 5s 0.26s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(14) {
  animation: animLines 5s 0.28s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(15) {
  animation: animLines 5s 0.3s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(16) {
  animation: animLines 5s 0.32s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(17) {
  animation: animLines 5s 0.34s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(18) {
  animation: animLines 5s 0.36s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(19) {
  animation: animLines 5s 0.38s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(20) {
  animation: animLines 5s 0.4s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(21) {
  animation: animLines 5s 0.42s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(22) {
  animation: animLines 5s 0.44s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(23) {
  animation: animLines 5s 0.46s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(24) {
  animation: animLines 5s 0.48s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(25) {
  animation: animLines 5s 0.5s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(26) {
  animation: animLines 5s 0.52s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(27) {
  animation: animLines 5s 0.54s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(28) {
  animation: animLines 5s 0.56s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(29) {
  animation: animLines 5s 0.58s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(30) {
  animation: animLines 5s 0.6s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(31) {
  animation: animLines 5s 0.62s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(32) {
  animation: animLines 5s 0.64s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(33) {
  animation: animLines 5s 0.66s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(34) {
  animation: animLines 5s 0.68s 1 ease-in-out both;
}
.is-animated .m-about-addon path:nth-of-type(35) {
  animation: animLines 5s 0.7s 1 ease-in-out both;
}

@keyframes animLines {
  100% {
    stroke-dashoffset: 0;
  }
}
.m-about-content {
  flex: 1;
  font-size: 18px;
  line-height: 1.5;
}

.m-about-video {
  flex: 1;
  position: relative;
}

.m-about-video video {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 20px;
}

@media (max-width: 860px) {
  .m-about-main {
    display: contents;
  }
  .m-about {
    display: flex;
    flex-direction: column;
  }
  .m-about-title {
    order: 0;
  }
  .m-about-video {
    order: 1;
  }
  .m-about-content {
    order: 2;
  }
}
@media (max-width: 640px) {
  .m-about {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 500px) {
  .m-about {
    margin-top: -30px;
  }
}
.m-tematyka {
  background: #CBC8C3 url(/images/2026/bg.jpg);
  padding-block: 100px;
  mask: linear-gradient(to top, rgba(0, 0, 0, 0), #000 100px);
  padding-inline: var(--hSpace);
}

.m-tematyka-addon {
  position: absolute;
  top: 0;
  left: 50%;
  translate: 0 -20%;
  margin-left: -1200px;
  pointer-events: none;
}

.m-tematyka-main {
  position: relative;
  max-width: 1470px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.m-tematyka-content {
  flex: 1;
  font-size: 18px;
  line-height: 1.5;
  max-width: 600px;
}

.m-tematyka-btn {
  margin-top: 30px;
}

.m-tematyka-icons {
  position: relative;
  z-index: 1;
  width: 100%;
  flex: 1;
  max-width: 580px;
  aspect-ratio: 1;
  isolation: isolate;
  display: grid;
  grid: auto/auto;
}

.m-tematyka-icons-a,
.m-tematyka-icons-b {
  grid-column: 1/-1;
  grid-row: 1/-1;
  transform-origin: center center;
  pointer-events: none;
}

.m-tematyka-icons:hover .m-tematyka-icons-a,
.m-tematyka-icons:hover .m-tematyka-icons-b {
  animation-play-state: paused;
}
.m-tematyka-icons:hover .m-tematyka-icons-a .m-tematyka-icons-el-inside,
.m-tematyka-icons:hover .m-tematyka-icons-b .m-tematyka-icons-el-inside {
  animation-play-state: paused;
}

.m-tematyka-icons::before,
.m-tematyka-icons::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1.5px solid #2F5C85;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

.m-tematyka-icons::after {
  width: 400px;
  height: 400px;
}

.m-tematyka-icons-a {
  animation: animR 30s 0s infinite linear;
}
.m-tematyka-icons-a .m-tematyka-icons-el-inside {
  animation: anim 30s 0s infinite linear;
}

.m-tematyka-icons-b {
  animation: anim 30s 0s infinite linear;
}
.m-tematyka-icons-b .m-tematyka-icons-el-inside {
  animation: animR 30s 0s infinite linear;
}

@keyframes anim {
  100% {
    rotate: 1turn;
  }
}
@keyframes animR {
  100% {
    rotate: -1turn;
  }
}
.m-tematyka-icons-el.is-green {
  --color: #6AA975 ;
}

.m-tematyka-icons-el {
  pointer-events: all;
  aspect-ratio: 1;
  position: absolute;
  --color: #2F5C85;
  width: var(--iconSize);
  height: var(--iconSize);
  left: 50%;
  top: 50%;
  top: calc(50% - var(--iconSize) / 2);
  left: calc(50% - var(--iconSize) / 2);
  --rotation: calc(360deg / var(--total) * var(--i));
  transform: translateX(calc(cos(var(--rotation)) * var(--radius))) translateY(calc(sin(var(--rotation)) * var(--radius)));
}

.m-tematyka-icons-el-inside {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  translate: -50% -50%;
}

.m-tematyka-icons-a {
  --iconSize: 82px;
  --radius: 200px;
  --total: 5;
}

.m-tematyka-icons-b {
  --iconSize: 82px;
  --radius: 90px;
  --total: 5;
}

.m-tematyka-icons-a .m-tematyka-icons-el:nth-child(1),
.m-tematyka-icons-b .m-tematyka-icons-el:nth-child(1) {
  --i: 1;
}

.m-tematyka-icons-a .m-tematyka-icons-el:nth-child(2),
.m-tematyka-icons-b .m-tematyka-icons-el:nth-child(2) {
  --i: 2;
}

.m-tematyka-icons-a .m-tematyka-icons-el:nth-child(3),
.m-tematyka-icons-b .m-tematyka-icons-el:nth-child(3) {
  --i: 3;
}

.m-tematyka-icons-a .m-tematyka-icons-el:nth-child(4),
.m-tematyka-icons-b .m-tematyka-icons-el:nth-child(4) {
  --i: 4;
}

.m-tematyka-icons-a .m-tematyka-icons-el:nth-child(5),
.m-tematyka-icons-b .m-tematyka-icons-el:nth-child(5) {
  --i: 5;
}

.m-tematyka-icons-el-front,
.m-tematyka-icons-el-back {
  padding: 15px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  background-color: var(--color);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 10px;
  font-size: 12px;
  line-height: 1.2;
}

.m-tematyka-icons-el-back {
  opacity: 0;
  font-size: 14px;
}

.m-tematyka-icons-el:hover {
  z-index: 10;
}

.m-tematyka-icons-el:hover .m-tematyka-icons-el-front {
  opacity: 0;
}

.m-tematyka-icons-el:hover .m-tematyka-icons-el-back {
  opacity: 1;
  width: 160%;
  height: 160%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.m-tematyka-icons-el-front img {
  filter: grayscale(1) brightness(400%);
  width: 80%;
  height: 80%;
}

.m-tematyka-icons-el-back img {
  filter: grayscale(1) brightness(400%);
  width: 30%;
  height: 30%;
}

@media (max-width: 860px) {
  .m-tematyka-main {
    flex-direction: column-reverse;
  }
  .m-tematyka-icons {
    width: 80%;
    height: 80%;
  }
  .m-tematyka-icons-a {
    --radius: 170px;
    --iconSize: 80px;
  }
  .m-tematyka-icons-b {
    --radius: 80px;
    --iconSize: 80px;
  }
  .m-tematyka-icons::before {
    width: 180px;
    height: 180px;
  }
  .m-tematyka-icons::after {
    width: 330px;
    height: 330px;
  }
}
@media (max-width: 640px) {
  .m-tematyka {
    padding-top: 30px;
    padding-bottom: 100px;
    mask: linear-gradient(to top, rgba(0, 0, 0, 0), #000 80px);
  }
}
@media (max-width: 500px) {
  .m-tematyka-icons-a {
    --radius: 150px;
    --iconSize: 70px;
  }
  .m-tematyka-icons-b {
    --radius: 70px;
    --iconSize: 70px;
  }
  .m-tematyka-icons-el-front, .m-tematyka-icons-el-back {
    font-size: 12px;
  }
  .m-tematyka-icons::before {
    width: 160px;
    height: 160px;
  }
  .m-tematyka-icons::after {
    width: 300px;
    height: 300px;
  }
}
.m-prelegent {
  padding-top: 20px;
  padding-bottom: 50px;
  padding-inline: 20px;
}

.m-prelegent-title {
  text-align: center;
  max-width: 1470px;
  margin-inline: auto;
}

.m-prelegent-list-cnt {
  max-width: 1470px;
  margin-inline: auto;
}

.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-el {
  flex-shrink: 0;
  width: 260px;
  position: relative;
  isolation: isolate;
}

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

.m-prelegent-el-photo {
  position: relative;
  width: 230px;
  margin-inline: auto;
}
.m-prelegent-el-photo::before {
  content: "";
  background: url(/images/2026/circle.svg) center/contain no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}

.m-prelegent-el-photo img {
  border-radius: 50%;
  aspect-ratio: 1;
  width: 230px;
  display: block;
  mix-blend-mode: multiply;
}

.m-prelegent-el-name {
  margin-top: 10px;
  font-size: 16px;
  font-family: "Unbounded", sans-serif;
  font-weight: 900;
  text-align: center;
}

.m-prelegent-el-text {
  font-size: 14px;
  margin-top: 20px;
  text-align: center;
}

.m-prelegent-title {
  text-align: center;
}

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

@media (max-width: 1200px) {
  .m-prelegent-el-name {
    font-size: 20px;
  }
}
@media (max-width: 1000px) {
  .m-prelegent-list .m-prelegent-el {
    flex-shrink: 0;
    max-width: 240px;
  }
}
@media (max-width: 640px) {
  .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-el {
    flex-shrink: 0;
    width: 200px;
  }
  .m-prelegent-el-photo {
    width: 180px;
  }
  .m-prelegent-el-name {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .m-prelegent-el-text {
    margin-top: 10px;
  }
}
@media (max-width: 640px) {
  .m-prelegent {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.m-contest {
  border-top: 1px solid #D4C9A6;
  padding-top: 80px;
  margin-top: 50px;
  padding-inline: var(--hSpace);
  padding-bottom: 100px;
}

.m-contest-title {
  text-align: center;
}

.m-contest-list {
  display: flex;
  gap: 50px;
  max-width: 1470px;
  margin-inline: auto;
}

.m-contest-list-el {
  color: inherit;
  flex: 1;
}

.m-contest-list-el-img {
  aspect-ratio: 637/350;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background-size: cover;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #CBC8C3;
}
.m-contest-list-el-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #6AA975;
  opacity: 0.8;
  backdrop-filter: blur(2px);
  z-index: -1;
  transition: 0.3s opacity;
}

.m-contest-list-el h3 {
  font-family: "Unbounded", sans-serif;
  font-size: 24px;
  margin-top: 20px;
}

.m-contest-list-el p {
  font-size: 18px;
  margin-bottom: 0;
}

.m-contest-list-el img {
  transition: 0.3s opacity;
  max-width: 200px;
}

.m-contest-list-el:hover .m-contest-list-el-img::before {
  opacity: 0;
}

.m-contest-list-el:hover .m-contest-list-el-img img {
  opacity: 0;
}

@media (max-width: 860px) {
  .m-contest-list {
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 640px) {
  .m-contest {
    margin-top: 0;
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
  }
}
.m-media {
  display: flex;
  gap: 50px;
  background: #CBC8C3 url(/images/2026/bg.jpg);
  padding-block: 100px;
  mask: linear-gradient(to top, rgba(0, 0, 0, 0), #000 100px);
  padding-inline: var(--hSpace);
  align-items: center;
  justify-content: center;
}

.m-media-img-cnt,
.m-media-main {
  flex: 1;
  font-size: 18px;
  max-width: 600px;
}

.m-media-links {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.m-media-bottom {
  display: flex;
  align-items: center;
}

.m-media-socials {
  display: flex;
  gap: 10px;
  align-items: center;
}

.m-media-socials a {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #2F5C85;
  border-radius: 3px;
  border-bottom-width: 2px;
}

.m-media-bottom {
  display: flex;
  gap: 20px;
  color: #2F5C85;
  margin-top: 20px;
}

@media (max-width: 860px) {
  .m-media {
    padding-top: 30px;
    flex-direction: column;
    gap: 30px;
  }
}
.m-practice {
  padding-inline: var(--hSpace);
  border-top: 1px solid #D4C9A6;
  padding-top: 100px;
}

.m-practice-title {
  text-align: center;
}

.m-practice-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 1470px;
  margin-inline: auto;
  padding-left: 32px;
  font-size: 18px;
}

.m-practice-list-el {
  flex: 1;
  position: relative;
  padding: 30px;
  border-left: 1px solid #6AA975;
}

.m-practice-list-el::before {
  content: "";
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  position: absolute;
  translate: -110% 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 8 8'%3E%3Cpath fill='%236AA975' d='M6 8V0h2v8M3 8V5h2v3M0 8V3h2v5'/%3E%3C/svg%3E");
  rotate: -90deg;
}

.m-practice-list-el::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  bottom: 0;
  left: -1px;
  translate: -50%;
  position: absolute;
  background: #6AA975;
}

@media (max-width: 860px) {
  .m-practice-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 0;
  }
}
@media (max-width: 600px) {
  .m-practice-list {
    overflow-x: auto;
    display: flex;
    padding-bottom: 20px;
  }
  .m-practice-list-el {
    min-width: 250px;
  }
}
.m-hyde-park {
  margin-top: 50px;
  padding-inline: var(--hSpace);
  padding-bottom: 80px;
}

.m-hyde-park-box {
  max-width: 1470px;
  margin-inline: auto;
  border-radius: 20px;
  overflow: hidden;
  background: #2F5C85;
  position: relative;
  min-height: 610px;
  isolation: isolate;
  color: #fff;
  align-items: center;
  display: flex;
}

.m-hyde-park-img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.m-hyde-park-content {
  color: #fff;
  padding: 50px;
  font-size: 18px;
  max-width: 700px;
}

.m-hyde-park-content h3 {
  font-size: 24px;
  margin-top: 0;
  font-family: "Unbounded", sans-serif;
  margin-bottom: 30px;
}

.m-hyde-park-content .button {
  background: #6AA975;
  margin-top: 20px;
}
.m-hyde-park-content .button:hover {
  background: #7cc589;
}

@media (max-width: 640px) {
  .m-hyde-park {
    padding-bottom: 50px;
  }
  .m-hyde-park-content {
    padding: 40px;
  }
  .m-hyde-park-content {
    font-size: 15px;
  }
  .m-contest-list-el h3 {
    font-size: 18px;
  }
}
@media (max-width: 500px) {
  .m-hyde-park-content {
    padding: 30px;
    font-size: 14px;
  }
  .m-hyde-park-content .button {
    width: 100%;
  }
}
.m-collaboration-section {
  margin-top: 50px;
  max-width: 1470px;
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--hSpace);
  overflow-x: hidden;
  padding-bottom: 40px;
}

.m-collaboration-title-cnt {
  text-align: center;
}

.m-collaboration-title {
  text-align: center;
}

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

.m-collaboration-main {
  color: inherit;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "map content";
  max-width: 1470px;
  margin-inline: auto;
  gap: 40px;
}

.m-collaboration-right {
  grid-area: content;
}

.m-collaboration-right-inside {
  background: #D4C9A6;
  display: flex;
  align-items: flex-end;
  flex-direction: row-reverse;
  border-radius: 20px;
  padding: 0 0 0 40px;
}

.m-collaboration-content {
  align-self: center;
  margin-right: -20px;
}

.m-collaboration-right img {
  width: 430px;
  margin-right: -90px;
  margin-left: -30px;
  margin-top: -150px;
}

@media (max-width: 1200px) {
  .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;
  }
  .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;
  }
  .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;
  }
}
@media (max-width: 476px) {
  .m-collaboration-section {
    margin-top: 0;
  }
  .m-collaboration-right {
    gap: 20px;
    padding-left: 0;
  }
  .m-collaboration-right img {
    width: 200px;
    margin-right: -30px;
  }
}
.m-partners {
  position: relative;
  padding-left: 30px;
  padding-bottom: 20px;
}

.m-partners .button {
  background: #2F5C85;
  color: #000;
}

.m-partners-title {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 30px;
}
.m-partners-title span {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  color: inherit;
  letter-spacing: 1px;
  font-weight: bold;
  font-size: 16px;
  margin: 0;
  text-transform: uppercase;
  font-family: "Unbounded", sans-serif;
  writing-mode: vertical-rl;
  text-align: center;
  text-orientation: mixed;
  white-space: nowrap;
  scale: -1 -1;
}

.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(4, auto);
  gap: 10px 20px;
  align-items: start;
}

.m-partners-list-el {
  display: flex;
  flex-direction: column;
}
.m-partners-list-el small {
  color: #333;
  font-size: 12px;
  text-align: center;
  line-height: 2.5em;
}
.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%;
  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: #2F5C85;
}

@media (max-width: 980px) {
  .m-partners {
    flex-direction: column;
    gap: 0;
    padding-left: 0;
    padding-inline: 20px;
  }
  .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(2, 1fr);
  }
}
@media (max-width: 600px) {
  .m-partners-title {
    margin-top: 20px;
  }
  .m-partners {
    padding-inline: 0;
  }
}
.m-contact-box-content {
  font-size: 18px;
}

.m-contact-box-content > p {
  color: #4B4B4B;
}

.m-contact-box-name {
  font-size: 24px;
  font-weight: 900;
  font-family: "Unbounded", sans-serif;
  margin-top: 20px;
  color: #333;
  margin-bottom: 0;
}

.m-contact-box-position {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 20px;
}

.m-contact-box-links {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column-reverse;
  margin-top: 20px;
}

.m-contact-box-link {
  position: relative;
  font-size: 17px;
  color: inherit;
  font-weight: 300;
  text-decoration: none;
  align-items: center;
  display: flex;
  gap: 5px;
}

@media (max-width: 640px) {
  .m-contact-box-name {
    font-size: 20px;
  }
  .m-contact-box-position {
    font-size: 12px;
  }
  .m-contact-box-links {
    font-size: 14px;
  }
  .m-contact-box-link::before {
    width: 8px;
    height: 8px;
  }
}
@media (max-width: 480px) {
  .m-contact-box-link {
    font-size: 12px;
  }
  .m-contact-box-link span {
    display: block;
    font-weight: bold;
  }
  .m-contact-box-content > p {
    font-size: 14px;
  }
}
.subpage-main {
  position: relative;
  overflow: hidden;
  padding-inline: var(--hSpace);
}

.subHeader,
.subpage-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  padding: 160px 0 20px 0;
  position: relative;
  text-align: center;
}

.subpage-addon-1 {
  position: absolute;
  left: 50%;
  top: 100px;
  translate: -100%;
  z-index: -1;
  pointer-events: none;
}

.subpage-addon-2 {
  position: absolute;
  left: 50%;
  top: 800px;
  z-index: -1;
  pointer-events: none;
}

.subHeader h1,
.subpage-title {
  width: 100%;
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: 50px;
  font-weight: 900;
  line-height: 1.3;
  max-width: 80%;
  text-align: center;
}

.subpage-lead,
.lead {
  max-width: 660px;
  margin: 20px auto;
  line-height: 1.4;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.subpage-excerpt {
  font-weight: bold;
  margin-bottom: 2rem;
  font-size: 27px;
  line-height: 140%;
  font-family: "Unbounded", sans-serif;
}

.subpage-content {
  width: 800px;
  background: #fff;
  border-radius: 20px;
  max-width: 100%;
  padding: 50px;
  margin: 0 auto;
  margin-bottom: 100px;
}

.subpage-content--wide {
  max-width: calc(100% - 20px);
}

:where(.subpage-content h2),
:where(.subpage-content h3),
:where(.subpage-content h4) {
  color: #2F5C85;
  font-size: 28px;
  margin: 30px 0 20px 0;
  font-family: "Unbounded", sans-serif;
}
:where(.subpage-content h2):first-child,
:where(.subpage-content h3):first-child,
:where(.subpage-content h4):first-child {
  margin-top: 0;
}
@media (max-width: 500px) {
  :where(.subpage-content h2),
  :where(.subpage-content h3),
  :where(.subpage-content h4) {
    font-size: 24px;
  }
}

:is(h2, h3) + p {
  margin-top: 0;
}

:where(.subpage-content ol:not([class])) li {
  margin-bottom: 5px;
}
:where(.subpage-content ol:not([class])) li::marker {
  color: #2F5C85;
  margin-right: 10px;
}

:where(.subpage-content ul:not([class]) li) {
  list-style: square;
  margin-bottom: 0.5rem;
}
:where(.subpage-content ul:not([class]) li):last-child {
  margin-bottom: 0;
}
:where(.subpage-content ul:not([class]) li) li {
  margin-bottom: 5px;
}

:where(.subpage-content a) {
  text-decoration: none;
}

@media (max-width: 740px) {
  .subpage-title {
    font-size: 30px;
  }
  .subpage-content {
    padding: 20px;
  }
  .subpage-lead,
  .lead {
    font-size: 20px;
    line-height: 25px;
  }
  .subpage-excerpt {
    font-size: 20px;
  }
}
@media (max-width: 560px) {
  .subHeader, .subpage-header {
    padding-top: 100px;
  }
  .subpage-title {
    font-size: 25px;
  }
  .subpage-excerpt {
    font-size: 18px;
  }
}
.partners-list {
  padding-left: 0;
}

.partners-list-main-title {
  color: inherit;
}

.box-person ~ .partners-list {
  display: flex;
}

.box-person ~ .partners-list li {
  flex: auto;
}

.box-person {
  margin: 40px 0 80px;
  display: grid;
  grid-template-columns: 205px 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 0 30px;
}
.box-person .box-person-img-wrap {
  position: relative;
  align-self: flex-start;
  grid-column: 1/2;
  grid-row: 1/-1;
}
.box-person .box-person-img-wrap::before {
  content: "";
  width: 205px;
  height: 205px;
  position: absolute;
  left: 33px;
  top: 30px;
  background-size: 16px 16px;
  background-position: right top;
}
.box-person .box-person-img img {
  width: 205px;
  height: 205px;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 5px;
}
.box-person .box-person-content {
  margin-left: 60px;
}
.box-person .box-person-title {
  margin-top: -5px;
  text-transform: unset;
  border: 0;
  margin-bottom: 0.5rem;
  font-size: 20px;
}
.box-person .box-person-name {
  font-weight: bold;
  font-family: "Unbounded", sans-serif;
  font-size: 25px;
  margin-bottom: 10px;
  line-height: 1;
}
.box-person .box-person-position {
  margin-top: 0;
  color: #888;
  font-size: 12px;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.box-person ul.box-person-contact {
  display: block;
  padding: 0;
  margin: 0;
  font-size: 16px;
}
.box-person ul.box-person-contact li {
  display: block;
  margin: 0 0 0.6rem;
  font-size: 16px;
}
.box-person ul.box-person-contact li:last-child {
  margin: 0;
}
.box-person ul.box-person-contact a {
  color: #060202;
  display: block;
  padding: 0 0 0 40px;
  background: left center scroll no-repeat;
  text-decoration: none;
  transition: all 0.2s linear;
}
.box-person ul.box-person-contact li.tel a {
  background-image: url("/images/2026/tel.svg");
}
.box-person ul.box-person-contact li.mail a {
  background-image: url("/images/2026/mail.svg");
}
.box-person ul.box-person-contact li.li a {
  background-image: url("/images/2026/li.svg");
}
@media (max-width: 670px) {
  .box-person {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .box-person .box-person-title {
    grid-row: 1/2;
  }
  .box-person .box-person-img-wrap {
    margin-bottom: 50px;
  }
  .box-person .box-person-img-wrap {
    grid-row: 2/3;
  }
  .box-person .box-person-position {
    margin-bottom: 20px;
  }
  .box-person ul.box-person-contact {
    padding-left: 0;
  }
}

.add-to-calendar {
  position: relative;
}

.add-to-calendar-box-close {
  position: absolute;
  right: 5px;
  top: 5px;
  translate: 50% -50%;
  width: 30px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  height: 30px;
  border: 0;
  text-indent: -9999px;
  overflow: hidden;
  background: none;
  cursor: pointer;
  background: #111;
  border-radius: 50%;
}
.add-to-calendar-box-close::before, .add-to-calendar-box-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  rotate: 45deg;
  width: 12px;
  height: 1.5px;
  background: #fff;
}
.add-to-calendar-box-close::after {
  rotate: -45deg;
}

.add-to-calendar.is-show .add-to-calendar-box {
  opacity: 1;
  pointer-events: all;
  margin-top: 0;
}

.add-to-calendar-box {
  transition: 0.3s opacity, 0.3s margin-top;
  pointer-events: none;
  opacity: 0;
  margin-top: 10px;
  position: absolute;
  padding: 10px 20px 20px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  left: 50%;
  translate: -50%;
  bottom: calc(100% + 15px);
}
.add-to-calendar-box::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 20px;
  height: 10px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  translate: -50% 100%;
  background: white;
}

.add-to-calendar-box-main {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.add-to-calendar-box a {
  width: 80px;
  border-radius: 4px;
  padding: 10px;
  border: 1px solid #eee;
  display: flex;
  justify-content: center;
  align-items: center;
}
.add-to-calendar-box a img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

@media (max-width: 600px) {
  .add-to-calendar-box {
    right: 0;
    left: auto;
    translate: 0;
  }
}
/*# sourceMappingURL=style.2026.min.css.map */
