@charset "UTF-8";
/* ===== RESET ===== */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, div, span, a, img,
h1, h2, h3, h4, h5, h6, hgroup, p,
dl, dialog, dt, dd, ol, ul, li,
abbr, acronym, address, b, big, blockquote,
cite, code, del, dfn, em, i, ins, kbd, pre, q,
samp, tt, var, small, strong, sub, sup,
object, iframe, form, fieldset, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, footer, header, nav, section,
figure, menu, time, mark, audio, video {
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  font-style: inherit;
  vertical-align: baseline;
  white-space: normal;
  text-align: left;
  line-height: 1.5em;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  text-decoration: none !important;
}

article,
aside,
header,
hgroup,
nav,
figure,
section,
footer {
  display: block;
}

/* start general */
html {
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  height: 100%;
  font-size: 16px;
}

body {
  width: 100svw;
  height: 100%;
  margin: 0;
  padding: 0;
  color: #4B4B4B;
  font-size: 16px;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0em;
  background: #ffffff;
  background-size: cover;
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.page-ready {
  display: block !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.4em;
  line-height: 1.25em;
  color: #4B4B4B;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0em;
}
h1 a,
h1 p,
h1 i,
h1 span,
h2 a,
h2 p,
h2 i,
h2 span,
h3 a,
h3 p,
h3 i,
h3 span,
h4 a,
h4 p,
h4 i,
h4 span,
h5 a,
h5 p,
h5 i,
h5 span,
h6 a,
h6 p,
h6 i,
h6 span {
  line-height: 1em;
}

h1 {
  font-size: 3.25rem;
}

h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

h3 {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.875rem;
}

h5 {
  font-size: 1.5rem;
}

h6 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1em;
}

ul,
ol {
  margin: 0 0 1em 1.5em;
  list-style-position: outside;
}
ul ul,
ul ol,
ol ul,
ol ol {
  margin-top: 1em;
}
ul li,
ol li {
  margin-bottom: 0.8em;
  padding-left: 10px;
  font-size: 100%;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

ul ul,
ol ul {
  list-style-type: circle;
}

ol ol,
ul ol {
  list-style-type: lower-latin;
}

dl {
  margin: 0 0 1em 1.5em;
}
dl dt {
  margin-top: 0.5em;
}

a {
  color: #4B0C23;
  text-decoration: none;
}

a.more,
span.more {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 1.625rem 2rem 1.8rem;
  min-width: 19.625rem;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1em;
  background: transparent url("/assets/images/icon-plus.svg") no-repeat calc(50% + 80px) center;
  background-size: auto auto;
  transition: all 0.3s;
  border: 2px solid #fff;
  border-radius: 0;
  text-align: center;
}
a.more:hover,
span.more:hover {
  color: #fff;
  background-color: #7C003F;
  border-color: #7C003F;
}

b,
strong,
th,
dt {
  font-weight: bold;
}

i,
em {
  font-style: italic;
}

small {
  font-size: 80%;
}

big {
  font-size: 125%;
}

sup {
  font-size: 80%;
  vertical-align: super;
}

sub {
  font-size: 80%;
  vertical-align: sub;
}

blockquote {
  padding: 0.3em 1em 1px;
  margin: 0 0 1em;
  border-left: solid 2px rgba(0, 0, 0, 0.4);
}
blockquote p:last-child {
  margin-bottom: 5px;
}

abbr,
acronym {
  font-size: 80%;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

abbr[title],
acronym[title],
dfn[title] {
  border-bottom: 1px dotted black;
  cursor: help;
}

.indent {
  text-indent: 1.5em;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.justify {
  text-align: justify;
}

[align=left] {
  text-align: left;
}

[align=right] {
  text-align: right;
}

[align=center] {
  text-align: center;
}

[align=justify] {
  text-align: justify;
}

img {
  max-width: 100%;
}

img.center {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

img.left {
  float: left;
  margin: 0 20px 20px 0;
}

img.right {
  float: right;
  margin: 0 0 20px 20px;
}

hr {
  height: 0;
  border: 0;
  border-bottom: solid 4px #4B0C23;
  margin: 30px 0;
  width: 100%;
}
hr.center {
  width: 70%;
  margin: 30px auto;
}

.blue {
  color: #3d61bf;
}

.black {
  color: #4B4B4B;
}

.icon {
  display: inline-block;
  width: 56px;
  height: 56px;
  margin: 0px 0;
  border-radius: 100%;
  background: #4B0C23 none no-repeat center;
  background-size: auto auto;
  text-indent: -9999px;
  cursor: pointer;
}
.icon.icon-house {
  background-image: asset_url("site/icon-house.svg");
}
.icon.icon-location {
  background-image: asset_url("site/icon-location.svg");
}
.icon.icon-contact {
  width: 120px;
  background-image: asset_url("site/icon-contact.svg");
  background-position: left center;
}
.icon.icon-linkedin {
  background-image: asset_url("site/icon-linkedin.svg");
}
.icon.icon-facebook {
  background-image: asset_url("site/icon-facebook.svg");
}

.columns-2 {
  column-count: 2;
  column-gap: 40px;
}
.columns-2 > * {
  overflow: hidden;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
  /* column-break-inside: avoid; */
  break-inside: avoid;
  break-inside: avoid-column;
}
.columns-2 > ul {
  overflow: inherit;
}

.columns-3 {
  column-count: 3;
  column-gap: 40px;
}
.columns-3 > * {
  overflow: hidden;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
  /* column-break-inside: avoid; */
  break-inside: avoid;
  break-inside: avoid-column;
}
.columns-3 > ul {
  overflow: inherit;
}

/* GoogleMap fix */
.gm-style-cc * {
  white-space: nowrap;
}

.application-pdf .title-file:before {
  background-image: asset_url("site/icon-pdf.svg");
  background-position: center !important;
  background-size: 112px auto;
}

.application-doc .title-file:before,
.application-docx .title-file:before,
.application-msword .title-file:before {
  background-position: 12px -170px !important;
}

.application-xls .title-file:before,
.application-x-ole-storage .title-file:before {
  background-position: 12px -360px !important;
}

.application-ppt .title-file:before {
  background-position: -187px -360px !important;
}

.application-zip .title-file:before {
  background-image: asset_url("site/icon-zip.svg");
  background-position: center !important;
  background-size: 112px auto;
}

div.table-wrapper {
  overflow-x: hidden;
}
div.table-wrapper.show {
  overflow-x: scroll;
}
div.table-wrapper table {
  margin-bottom: 10px;
}

.main-title {
  max-width: 100%;
}
.main-title h1 {
  line-height: 1em;
}
.main-title .description {
  padding-left: 50%;
  color: #4B0C23;
}
.main-title .info {
  margin-top: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  width: initial;
  padding: initial;
  border-bottom: initial;
  margin-bottom: initial;
}
.main-title p.date,
.main-title p.category {
  color: #4B4B4B;
  font-size: 14px;
  margin-right: 60px;
  margin-bottom: 0;
}
.main-title p.location {
  color: #4B4B4B;
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.5;
}

.title-with-desc {
  text-align: center;
  margin-bottom: 50px;
}
.title-with-desc h2 {
  max-width: 1130px;
  margin-bottom: 0.45em;
}
.title-with-desc h2 a,
.title-with-desc h2 p,
.title-with-desc h2 span {
  margin-bottom: 0;
}
.title-with-desc .desc {
  max-width: 600px;
  margin: 0 auto;
  color: #4B0C23;
}

/* end general */
/* layout */
#container {
  position: relative;
  margin: 0 auto;
  max-width: 2560px;
  width: 100%;
  min-height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  overflow-x: hidden;
}

#wrapper {
  position: relative;
  margin: 7.5rem auto 6.5rem;
  padding: 0 36px;
  width: 100%;
}

#content {
  position: relative;
  margin: 0 auto;
  padding: 0;
  max-width: 1320px;
}

.fixed {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.inner {
  position: relative;
  width: 100%;
  max-width: 2560px;
  margin: 0 auto;
  padding: 0 36px;
}

body.default #wrapper {
  margin-top: 9rem;
}

body.default2 #container {
  background-color: #7C003F;
  background: #7C003F url("/assets/images/bg-3.jpg") no-repeat center;
  background-size: cover;
}
body.default2 #wrapper {
  margin-top: 9rem;
}

/* end layout */
@keyframes showUp {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes showUpZ {
  0% {
    opacity: 0;
    visibility: hidden;
    z-index: -2;
  }
  100% {
    opacity: 1;
    visibility: visible;
    z-index: 0;
  }
}
@keyframes hideDown {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
#header {
  position: relative;
  padding: 2rem 36px;
  z-index: 1000;
}
#header .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
#header .slogan h2 {
  font-size: 3.875rem;
  font-weight: 400;
  line-height: 1.18em;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-align: right;
  color: #fff;
}
#header .slogan h3 {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.18em;
  text-align: right;
  color: #fff;
}
#header .slogan h3 span {
  font-weight: 700;
}
#header .menu {
  margin: 1em 0;
}

.logo {
  display: inline-block;
}
.logo img {
  max-width: 100%;
  height: 95px;
}

.belka {
  margin: 5rem 0 0;
}

#prefooter {
  position: relative;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto 6.5rem;
}

#footer {
  width: 100svw;
  height: auto;
  padding: 1rem 0;
  text-align: center;
  margin: 0 auto;
  background: #7C003F;
  color: #fff;
}
#footer .copyright {
  text-align: center;
}

#breadcrumbs {
  position: absolute;
  top: 175px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
#breadcrumbs a {
  display: inline-block;
  margin: 0.2rem 0;
  padding: 0 0.6rem;
  vertical-align: -webkit-baseline-middle;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 0.8em;
  color: rgba(255, 255, 255, 0.6666666667);
  border-right: 1px solid #DFDFDF;
  border-bottom: 0;
  transition: all 0.3s;
}
#breadcrumbs a:hover {
  border-bottom: 0;
  text-decoration: none;
  color: #fff;
  text-shadow: 1px 0px 1px #ffffff;
}
#breadcrumbs a:first-child {
  padding-left: 0;
}
#breadcrumbs a:last-child {
  pointer-events: none;
  font-weight: 800;
  color: #fff;
  border-right: 0;
}
#breadcrumbs a:last-child:hover {
  text-decoration: none;
}

#intro {
  position: relative;
  background: transparent;
  width: 100svw;
  max-width: 2560px;
  height: 100svh;
  min-height: 600px;
  max-height: 1080px;
  padding: 0 36px;
}
#intro * {
  color: #fff;
}
#intro.default-baner {
  height: 640px;
  min-height: initial;
  max-height: initial;
}
#intro.default2-baner {
  height: 400px;
  min-height: initial;
  max-height: initial;
}
#intro .inner {
  height: 100%;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: row;
  padding: 4.125rem 0;
  gap: 2rem;
}
#intro .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/assets/images/intro-1.jpg") no-repeat center center;
  background-size: cover;
  z-index: -2;
}
#intro h1 {
  text-transform: uppercase;
  margin-bottom: 1.625rem;
  font-size: 6rem;
  font-weight: 800;
  line-height: 1.3em;
}
#intro h1 span {
  -webkit-text-stroke: 2px #fff;
  color: transparent;
}
#intro h1:last-child {
  margin-bottom: 0;
}
#intro h2 {
  margin-bottom: 0;
  font-size: 1.75rem;
}

.goal-idea-practic,
.people {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 8.125rem;
  margin: 11.25rem 0;
}
.goal-idea-practic:first-child,
.people:first-child {
  margin-top: 0;
}
.goal-idea-practic:last-child,
.people:last-child {
  margin-bottom: 0;
}
.goal-idea-practic .practic,
.goal-idea-practic .logo-with-title,
.people .practic,
.people .logo-with-title {
  width: 45%;
}
.goal-idea-practic .practic img,
.goal-idea-practic .logo-with-title img,
.people .practic img,
.people .logo-with-title img {
  margin-bottom: 2.25rem;
}
.goal-idea-practic .goal-idea,
.goal-idea-practic .organization-people,
.people .goal-idea,
.people .organization-people {
  width: 55%;
}
.goal-idea-practic .goal-idea img,
.goal-idea-practic .organization-people img,
.people .goal-idea img,
.people .organization-people img {
  margin-top: 2.25rem;
}
.goal-idea-practic .logo-with-title img,
.people .logo-with-title img {
  margin-bottom: 0;
  margin-top: 4rem;
  height: 13.875rem;
}
.goal-idea-practic .organization-people > div,
.people .organization-people > div {
  margin-bottom: 1.625rem;
}
.goal-idea-practic .organization-people > div span,
.people .organization-people > div span {
  display: inline-block;
  margin-bottom: 0.5rem;
}
.goal-idea-practic .organization-people > div:not(:first-child) span,
.people .organization-people > div:not(:first-child) span {
  margin-bottom: 0.3rem;
}
.goal-idea-practic .organization-people > div:not(:first-child) h6,
.people .organization-people > div:not(:first-child) h6 {
  line-height: 1.4em;
}

/* --- Stylizacja Widgetu Konferencji --- */
/* Kontener główny widgetu - izolacja stylów */
.tm-widget-wrapper {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #111;
  width: 100%;
  margin: 7.5rem auto; /* Wyśrodkowanie widgetu */
}
.tm-widget-wrapper:first-child {
  margin-top: 0;
}
.tm-widget-wrapper:last-child {
  margin-bottom: 0;
}

/* Reset box-sizing tylko dla elementów wewnątrz widgetu */
.tm-widget-wrapper *,
.tm-widget-wrapper *::before,
.tm-widget-wrapper *::after {
  box-sizing: border-box;
}

/* Nagłówek nad szarą ramką */
.tm-header {
  text-align: center;
  margin-bottom: 40px;
}

.tm-header h2 {
  text-align: center;
}

/* Szary kontener główny */
.tm-schedule-container {
  background-color: #f2f2f2;
  background-image: linear-gradient(0deg, rgb(248, 248, 248) 0%, rgb(242, 242, 242) 50%);
  padding: 60px 200px;
  position: relative;
  border-radius: 4px; /* Opcjonalne delikatne zaokrąglenie */
}

/* Responsywność dla mniejszych ekranów */
@media (max-width: 768px) {
  .tm-schedule-container {
    padding: 30px 20px;
  }
}
/* Karty Dni */
.tm-days-nav {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.tm-day-card {
  border: 1px solid #ccc;
  padding: 20px 25px;
  flex: 1;
  cursor: pointer;
  transition: background-color 0.2s;
  background-color: rgba(255, 255, 255, 0.1); /* Delikatne tło */
}

.tm-day-card:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.tm-day-title {
  font-size: 32px; /* Nieco mniejsze niż H1 */
  font-weight: 700;
  margin: 0 0 5px 0;
  color: #222;
  display: block;
}

.tm-day-date {
  font-size: 14px;
  color: #555;
  font-weight: 500;
  display: block;
}

/* Lista Harmonogramu */
.tm-schedule-list {
  display: flex;
  flex-direction: column;
}

/* Pojedynczy wiersz harmonogramu */
.tm-schedule-item {
  padding: 25px 20px;
  position: relative;
}

/* Tło pierwszego elementu (szare) */
.tm-item-gray {
  background-color: #e6e6e6;
  border-bottom: 1px solid #ddd;
}

/* Tło drugiego elementu (białe/jasne) */
.tm-item-light {
  background-color: #fafafa;
  border-top: 1px solid #ddd;
  margin-top: 2px;
}

.tm-time {
  font-size: 40px;
  font-weight: 300;
  color: #444;
  margin-bottom: 10px;
  display: block;
}

.tm-details h4 {
  font-size: 18px;
  font-weight: 700;
  color: #444;
  margin: 0 0 5px 0;
}

.tm-details p {
  font-size: 14px;
  color: #888;
  margin: 0;
}

/* Przycisk CTA (Pływający) */
.tm-cta-wrapper {
  position: relative;
  height: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  overflow: visible;
}

.tm-cta-button {
  background-color: #7a1d46;
  color: white;
  border: none;
  padding: 1.625rem 3rem;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(-50%); /* To centruje przycisk na linii podziału */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s;
  font-family: inherit;
  text-transform: none;
}

.tm-cta-button:hover {
  background-color: #5e1635;
}

.tm-cta-plus {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}

.promoter {
  position: relative;
  margin: 7.5rem auto 6.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 8.125rem;
}
.promoter:first-child {
  margin-top: 0;
}
.promoter:last-child {
  margin-bottom: 0;
}
.promoter .text {
  width: 55%;
}
.promoter .logotype {
  width: 45%;
  text-align: right;
}

.promoter {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
}

.sponsors ul,
.promoter ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.sponsors ul li,
.promoter ul li {
  margin: 0;
  padding: 0;
  font-size: 0;
}
.sponsors ul li a,
.promoter ul li a {
  display: inline-block;
  font-size: 0;
}

.sponsors > div,
.promoter > div {
  display: block;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  margin: 3rem 0;
}

.sponsors > div h5,
.promoter > div h5 {
  min-width: 200px;
}

.sponsors div.gold h5,
.promoter div.gold h5 {
  color: gold;
}

.sponsors div.brown h5,
.promoter div.brown h5 {
  color: brown;
}

.sponsors ul li img {
  max-height: 89px;
}

.promoter ul li img {
  max-height: 100px;
}

.sponsors .sponsors-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  gap: 1rem;
}
@media (max-width: 500px) {
  .sponsors .sponsors-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

/* Kontener główny */
.symani-promo {
  line-height: 1.6;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e0e0e0;
  /* border-radius: 8px; */
  overflow: hidden;
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.05); */
}

/* Nagłówek */
.symani-header {
  background: #ececec;
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid #eaeaea;
}

.symani-header h2 {
  margin: 0 0 10px 0;
  color: #2c3e50;
  font-size: 1.8rem;
}

.symani-header .subtitle {
  margin: 0;
  color: #666;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Intro */
.symani-intro {
  padding: 30px 40px;
  text-align: center;
  font-size: 1.05rem;
  color: #444;
}

/* Grid layout dla dwóch kolumn */
.symani-grid {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}

.symani-column {
  flex: 1 1 300px; /* Responsywność: min 300px, potem się zawinie */
  padding: 30px;
}

.symani-column.bg-light {
  background-color: #fcfcfc;
  border-left: 1px solid #eaeaea;
}

.symani-column h3 {
  margin-top: 0;
  color: #2c3e50;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 20px;
  display: inline-block;
}

.small-desc {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: #666;
}

/* Lista z "ptaszkami" */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #27ae60; /* Zielony kolor ptaszka */
  font-weight: bold;
}

/* Lista szczegółów */
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
}

.info-list .label {
  font-weight: bold;
  font-size: 0.85rem;
  color: #888;
  text-transform: uppercase;
}

.info-list .value {
  font-weight: 500;
  color: #333;
}

/* Sekcja CTA na dole */
.symani-cta {
  padding: 40px 30px;
  text-align: center;
  background-color: #fff;
}

.symani-cta h3 {
  margin-top: 0;
  color: #2c3e50;
}

.btn-wrapper {
  margin-top: 25px;
}

.btn-wrapper a.more {
  border-color: #5e1635;
  color:#5e1635
}

.btn-wrapper a.more:hover {
  color: #fff;
}

/* Drobna poprawka responsywności dla małych ekranów */
@media (max-width: 700px) {
  .symani-column.bg-light {
    border-left: none;
    border-top: 1px solid #eaeaea;
  }
  .symani-intro {
    padding: 20px;
  }
}

body.default2 #wrapper {
  margin-top: 0;
}

body.default2 #content {
  max-width: initial;
}

body.default2 #footer {
  position: absolute;
    bottom: 0;
    left: 0;
}

.contact-wrapper {
      display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8.125rem;
}

.contact-wrapper .info-side {
  font-size: 18px;
}

.contact-wrapper .info-side > div {
  margin: 2rem 0;
}

.contact-wrapper .info-side span,
.contact-wrapper .info-side h6 {
  color: #fff;
}

.contact-wrapper .info-side h6 {
  font-size: 1.2em;
}

.contact-wrapper .info-side h6 a {
  color: #fff;
}

/* --- CSS Widgetu (Prefiks klas: .tmt-) --- */
/* Główny kontener widgetu - izolacja */
.tmt-wrapper {
  width: 100%;
  margin: 0 auto;
  background: transparent;
}

/* Reset stylów tylko wewnątrz widgetu */
.tmt-wrapper *,
.tmt-wrapper *::before,
.tmt-wrapper *::after {
  box-sizing: border-box;
}

/* Nagłówek sekcji */
.tmt-header {
  margin-bottom: 40px;
}

/* Układ kolumnowy (Flexbox) */
.tmt-container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

/* --- Kolumna lewa: Zakładki (Przyciski) --- */
.tmt-nav-col {
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tmt-nav-btn {
  display: block;
  padding: 25px 20px;
  background-color: #f4f4f4; /* Nieaktywny */
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
  text-align: left;
  width: 100%;
  outline: none;
  font-family: inherit;
}

.tmt-nav-btn h4 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 5px 0;
  color: #222;
}

.tmt-nav-btn span {
  font-size: 1.25rem;
  font-weight: 400;
  color: #666;
}

/* Stan aktywny przycisku */
.tmt-nav-btn.active {
  background-color: #7C003F; /* Bordowy */
}

.tmt-nav-btn.active h4,
.tmt-nav-btn.active span {
  color: #ffffff;
}

/* --- Kolumna prawa: Treść --- */
.tmt-content-col {
  flex-grow: 1;
  width: 100%;
}

/* Kontener konkretnego dnia */
.tmt-day-content {
  display: none; /* Domyślnie ukryte */
}

/* Klasa widoczności */
.tmt-day-content.tmt-visible {
  display: block;
  animation: tmtFadeIn 0.4s ease;
}

@keyframes tmtFadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Pojedynczy blok harmonogramu */
.tmt-item {
  background-color: #ececec; /* Standardowe szare tło */
  padding: 25px 30px;
  margin-bottom: 8px;
}

/* Wyróżniona sesja (białe tło) */
.tmt-item.tmt-item-highlight {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #ddd;
  padding: 30px;
  cursor: pointer;
}

.tmt-item.tmt-item-highlight:hover {
    background-color: #fcfcfc;
    border-color: #ccc;
}

.tmt-item.tmt-item-highlight::after {
    content: '';
    position: absolute;
    right: 30px;
    top: 35px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #91274e;
    border-bottom: 2px solid #91274e;
    transform: rotate(45deg); /* Strzałka w dół */
    transition: transform 0.3s ease;
}

/* Obrót strzałki gdy otwarte */
.tmt-item.tmt-item-highlight.tmt-open::after {
    transform: rotate(-135deg); /* Strzałka w górę */
}

/* Typografia wewnątrz itemów */
.tmt-time {
  font-size: 3rem;
  font-weight: 400;
  color: #222;
  margin-bottom: 10px;
  display: block;
  line-height: 1;
}

.tmt-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111;
  margin: 0 0 5px 0;
  line-height: 1.4;
}

/* Większy tytuł dla sesji wyróżnionych */
.tmt-item-highlight .tmt-title {
  font-size: 3rem;
  margin-bottom: 5px;
}

.tmt-item-highlight2 {
  background-color: #7C003F;
}

.tmt-item-highlight2 .tmt-time,
.tmt-item-highlight2 .tmt-title,
.tmt-item-highlight2 .tmt-subtitle,
.tmt-item-highlight2 .tmt-desc {
  color: #fff;
}

.tmt-item-highlight2 .tmt-title {
  max-width: 890px;
}

.tmt-subtitle {
  font-weight: 400;
  margin: 5px 0 15px 0;
  color: #111;
}

.tmt-desc {
  font-size: 1.25rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

.tmt-desc strong {
  font-weight: 600;
  color: #333;
}

.tmt-meta-group {
  margin-top: 12px;
}

/* --- Responsywność (RWD) --- */
@media (max-width: 1400px) {
  html {
    font-size: 14px;
  }
  #intro h1 {
    font-size: 4rem;
  }
  #intro h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 1360px) {
  #prefooter {
    padding: 0 36px;
  }
}

@media (max-width: 1270px) {
  .contact-wrapper {
    display: block;
  }
}

@media (max-width: 1100px) {
  #header .slogan h2 {
    font-size: 1.875rem;
  }
  #header .slogan h3 {
    font-size: 1rem;
  }
  #menu a {
    margin: 0 1rem;
  }
}

@media (max-width: 900px) {
  #header .slogan {
    position: absolute;
    right: 0;
    top: 65px;
  }

  #intro .inner {
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    padding-top: 170px;
  }
  #intro h1 {
    font-size: 3rem;
  }

  .promoter {
    display: block;
    flex-wrap: wrap;
  }

  .promoter .text,
  .promoter .logotype {
    width: 100%;
    text-align: left;
  }

  .goal-idea-practic, .people {
    display: block;;
  }
  .goal-idea-practic .practic, .goal-idea-practic .logo-with-title, .people .practic, .people .logo-with-title,
  .goal-idea-practic .goal-idea, .goal-idea-practic .organization-people, .people .goal-idea, .people .organization-people {
    width: 100%;
  }
  .goal-idea-practic .logo-with-title img, .people .logo-with-title img {
    margin: 2rem 0;
    height: auto;
  }
}

@media (max-width: 850px) {
  .tmt-container {
    flex-direction: column;
  }
  .tmt-nav-col {
    width: 100%;
    flex-direction: row; /* Przyciski obok siebie */
    gap: 10px;
  }
  .tmt-nav-btn {
    padding: 15px;
    text-align: center;
  }
  .tmt-nav-btn h4 {
    font-size: 20px;
  }
}
/* Tablet (poniżej 768px) */
@media (max-width: 768px) {
  .tm-schedule-container {
    padding: 40px 30px; /* Mniejszy padding kontenera */
  }
  .tm-time {
    font-size: 36px;
  }
  iframe {
    width: 100%;
  }
}
/* Mobile (poniżej 550px) */
@media (max-width: 550px) {
  .tm-schedule-container {
    padding: 30px 15px; /* Minimalny padding na telefonach */
  }
  /* Karty Dni jedna pod drugą */
  .tm-days-nav {
    flex-direction: column;
    gap: 10px;
  }
  .tm-day-card {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Tytuł i data obok siebie na pasku */
  }
  .tm-day-title {
    font-size: 24px;
    margin-bottom: 0;
  }
  /* Dostosowanie przycisku */
  .tm-cta-button {
    padding: 20px 20px;
    font-size: 13px;
    width: 90%; /* Przycisk szerszy na mobile */
    justify-content: center;
  }
  .tm-schedule-item {
    padding: 20px 15px;
  }
  .tm-time {
    font-size: 32px;
  }
  /* Podstrona - Program */
  .tmt-nav-col {
    flex-direction: column; /* Jeden pod drugim na telefonie */
    gap: 5px;
  }
  .tmt-nav-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
  }
  .tmt-nav-btn h4 {
    margin: 0;
  }
  .tmt-time {
    font-size: 28px;
  }
  .tmt-item {
    padding: 20px;
  }
  .tmt-subtitle {
    font-size: 18px;
  }

  #intro {
    height: initial;
  }

  #intro h1 {
    font-size: 2rem;
  }

  #intro .inner {
    padding-top: 300px;
  }

  .logo img {
    height: 65px;
  }

  a.more, span.more {
    min-width: 17.625rem;
  }

  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.75rem;
  }
}
/* Animowana ikona hamburgera z borderów */
.hamburger,
.hamburger2 {
  display: none;
  position: relative;
  z-index: 1001;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.hamburger__lines,
.hamburger2__lines {
  position: relative;
  display: block;
  width: 28px;
  height: 3px;
  background-color: #ffffff;
  margin: 0 auto;
  transition: background-color 0.3s ease-in-out;
}
.hamburger__lines::before, .hamburger__lines::after,
.hamburger2__lines::before,
.hamburger2__lines::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  left: 0;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}
.hamburger__lines::before,
.hamburger2__lines::before {
  top: -9px;
}
.hamburger__lines::after,
.hamburger2__lines::after {
  top: 9px;
}
#header.scroll .hamburger__lines, #header.scroll .hamburger__lines::before, #header.scroll .hamburger__lines::after,
#header.scroll .hamburger2__lines,
#header.scroll .hamburger2__lines::before,
#header.scroll .hamburger2__lines::after {
  background-color: #000;
}
body.default .white #header .hamburger__lines, body.default .white #header .hamburger__lines::before, body.default .white #header .hamburger__lines::after,
body.default .white #header .hamburger2__lines,
body.default .white #header .hamburger2__lines::before,
body.default .white #header .hamburger2__lines::after {
  background-color: #000;
}
.hamburger.is-active .hamburger__lines,
.hamburger.is-active .hamburger2__lines,
.hamburger2.is-active .hamburger__lines,
.hamburger2.is-active .hamburger2__lines {
  background-color: transparent;
}
.hamburger.is-active .hamburger__lines::before,
.hamburger.is-active .hamburger2__lines::before,
.hamburger2.is-active .hamburger__lines::before,
.hamburger2.is-active .hamburger2__lines::before {
  top: 0;
  transform: rotate(45deg);
  background: #fff;
}
.hamburger.is-active .hamburger__lines::after,
.hamburger.is-active .hamburger2__lines::after,
.hamburger2.is-active .hamburger__lines::after,
.hamburger2.is-active .hamburger2__lines::after {
  top: 0;
  transform: rotate(-45deg);
  background: #fff;
}

body.home #container .header-wrapper > .menu {
  position: fixed;
  top: 0px;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #4B0C23;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  z-index: 1000;
}
body.home.menu-is-open #container .header-wrapper > .menu {
  transform: translateX(0);
}
body.home.menu-is-open {
  overflow: hidden;
}
body.home.hamburger2-active #header {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
body.home #container .header-wrapper > .menu nav#menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
body.home #container .header-wrapper > .menu nav#menu a {
  font-size: 1.5rem;
  padding: 1rem;
  color: #fff;
}

@media (max-width: 900px) {
  #header .inner .hamburger {
    display: block;
    order: 3;
  }
  #header .inner .menu {
    position: fixed;
    top: -15px;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #4B0C23;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    z-index: 1000;
  }
  body.menu-is-open #header .inner .menu {
    transform: translateX(0);
  }
  body.menu-is-open {
    overflow: hidden;
  }
  nav#menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  nav#menu a {
    font-size: 1.5rem;
    padding: 1rem;
    color: #fff;
  }
  body.default .white nav#menu a {
    color: #fff !important;
  }
  body.default.menu-is-open #header.scroll nav#menu a {
    color: #fff !important;
  }
  body.default.menu-is-open #menu a::after {
    background-color: #fff;
  }
  body.default.menu-is-open .white #header .hamburger__lines, body.default.menu-is-open .white #header .hamburger__lines::before, body.default.menu-is-open .white #header .hamburger__lines::after,
  body.default.menu-is-open #header .hamburger__lines, body.default.menu-is-open #header .hamburger__lines::before, body.default.menu-is-open #header .hamburger__lines::after {
    background-color: #fff;
  }
  body.default.menu-is-open .white #header .hamburger__lines,
  body.default.menu-is-open #header .hamburger__lines {
    background-color: transparent;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUpFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body {
  animation: fadeIn 0.8s ease-in-out forwards;
}

#intro h1,
#intro h2 {
  opacity: 0;
  animation: slideUpFadeIn 0.8s ease-out 0.5s forwards;
}

#intro h2 {
  animation-delay: 0.8s;
}

a, button {
  transition: all 0.3s ease;
}

.contact-button:hover,
a.more:hover,
a.more2:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#menu a {
  position: relative;
  padding-bottom: 0.25rem;
  margin: 0 2rem;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
}

#menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

#menu a:hover::after,
#menu a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.news-list .item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-list .item:hover {
  transform: scale(1.03);
  z-index: 10;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: 0s;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stages-grid .stage-item:nth-child(2) {
  transition-delay: 0.1s;
}

.stages-grid .stage-item:nth-child(3) {
  transition-delay: 0.2s;
}

.stages-grid .stage-item:nth-child(4) {
  transition-delay: 0.3s;
}

.news-list .item:nth-child(2) {
  transition-delay: 0.1s;
}

.news-list .item:nth-child(3) {
  transition-delay: 0.2s;
}

.news-list .item:nth-child(4) {
  transition-delay: 0.3s;
}

/*# sourceMappingURL=styles.css.map */