/* Zmienne CSS dla często używanych wartości */
:root {
  --primary-color: #1e5eb7;
  --secondary-color: #f1f3f5;
  --border-color: #e0e0e0;
  --transition-speed: 0.3s;
}
/* icons map */
.icon{
  margin-right:4px;
  font-size:12px;
    color:#f60;
}
/* search */
.mod-finder {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.search-wrapper {
    position: relative;
    display: inline-block;
}

.js-finder-search-query {
    width: 140px; /* Początkowa szerokość */
    padding: 4px 10px;
    border: 1px solid #ddd;
    background: #fff;
    transition: all 0.3s ease-in-out;
    outline: none;
    border-radius: 0;
    font-size: 14px;
}

.js-finder-search-query:focus,
.js-finder-search-query:not(:placeholder-shown) {
    width: 227px; /* Zwiększone o 30% z poprzedniej wartości 175px */
    border-color: #ddd;
}

.search-button {
    display: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ofcanvas */
/* Główny kontener menu */
.offcanvas-menu .offcanvas-inner ul.menu {
  position: relative;
  padding: 0.25rem 0;
}

/* Jasna linia po lewej stronie */
.offcanvas-menu .offcanvas-inner ul.menu::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #f0f0f0;
  /* Jasnoszary */
}

/* Style dla elementów głównego menu */
.offcanvas-menu .offcanvas-inner ul.menu>li {
  position: relative;
}

.offcanvas-menu .offcanvas-inner ul.menu>li>a,
.offcanvas-menu .offcanvas-inner ul.menu>li>div {
  display: block;
  padding: 0.5rem 1rem;
  color: #333333;
  /* Ciemnoszary */
  text-decoration: none;
  transition: color 0.3s ease;
}

.offcanvas-menu .offcanvas-inner ul.menu>li:hover>a,
.offcanvas-menu .offcanvas-inner ul.menu>li:hover>div,
.offcanvas-menu .offcanvas-inner ul.menu>li.active>a {
  color: #FF6600;
  /* Pomarańczowy */
}

/* Style dla elementów z submenu */
.offcanvas-menu .offcanvas-inner ul.menu>li.menu-parent>div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.offcanvas-menu .offcanvas-inner ul.menu>li.menu-parent>div>span:last-child {
  color: #888888;
  /* Średnioszary */
}

/* Pomarańczowa kreska - widoczna tylko dla aktywnego elementu i przy hover */
.offcanvas-menu .offcanvas-inner ul.menu>li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #FF6600;
  /* Pomarańczowy */
  transform: scaleY(0);
  transition: transform 0.2s ease-in-out;
}

.offcanvas-menu .offcanvas-inner ul.menu>li:hover::before,
.offcanvas-menu .offcanvas-inner ul.menu>li.active::before {
  transform: scaleY(1);
}

/* Submenu */
.offcanvas-menu .offcanvas-inner ul.menu ul {
  display: none;
  padding-left: 1rem;
  background-color: #f9f9f9;
  /* Jasnoszare tło dla submenu */
}

.offcanvas-menu .offcanvas-inner ul.menu>li.menu-parent:hover>ul,
.offcanvas-menu .offcanvas-inner ul.menu>li.menu-parent:focus-within>ul {
  display: block;
}

.offcanvas-menu .offcanvas-inner ul.menu ul>li {
  position: relative;
  padding-left: 12px;
}

.offcanvas-menu .offcanvas-inner ul.menu ul>li>a {
  display: block;
  padding: 0.25rem 0.5rem;
  color: #555555;
  /* Ciemnoszary dla submenu */
  text-decoration: none;
  transition: color 0.3s ease;
}

.offcanvas-menu .offcanvas-inner ul.menu ul>li:hover>a {
  color: #FF6600;
  /* Pomarańczowy */
}

/* Strzałki dla submenu */
.offcanvas-menu .offcanvas-inner ul.menu ul>li::before {
  content: '▸';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #888888;
  /* Średnioszary */
  font-size: 0.8em;
}

.offcanvas-menu .offcanvas-inner ul.menu ul>li:hover::before {
  color: #FF6600;
  /* Pomarańczowy */
}

/* Top menu */
#sp-menu>.sp-column,
#sp-menu .sp-megamenu-wrapper {
  justify-content: flex-start !important;
}

.sp-megamenu-parent {
  display: flex;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.sp-megamenu-parent>li {
  position: relative;
  margin: 0 5px;
}

.sp-megamenu-parent>li>a {
  text-decoration: none;

  padding: 12px 4px;
  display: inline-block;
  transition: color var(--transition-speed) ease;
}

.sp-megamenu-parent>li::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: transform var(--transition-speed) ease;
}

.sp-megamenu-parent>li:hover::before {
  transform: scaleX(1);
}

.sp-megamenu-parent>li.active>a,
.sp-megamenu-parent>li.active:hover>a {
  font-weight: 700;
}

.sp-megamenu-parent>li.sp-has-child>a::after {
  content: '\25BC';
  font-size: 10px;
  margin-left: 5px;
  opacity: 0.7;
  transition: transform var(--transition-speed) ease;
}

.sp-megamenu-parent>li.sp-has-child:hover>a::after {
  transform: rotate(180deg);
}

/* Dropdown styles */
.sp-megamenu-parent .sp-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  display: none;
}

.sp-megamenu-parent>li:hover .sp-dropdown {
  display: block;
}

.sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 8px;
  border: 1px solid var(--border-color);
  border-bottom: 2px solid var(--primary-color);
  margin-top: 15px;
  border-radius: 4px;
  animation: fadeInDown 0.5s ease-out;
}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item>a {
  display: block;
  padding: 15px 15px 8px 45px;
  cursor: pointer;
  font-size: 13px;
  transition: all var(--transition-speed) ease;
  position: relative;
  border-bottom: 1px solid var(--border-color);
  background-color: transparent;
  z-index: 2;
}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item>a::before {
  content: '\2192';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-speed) ease, color 0.6s ease;
  z-index: 3;
}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: var(--secondary-color);
  transition: width 0.6s ease;
  z-index: 1;
}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item:hover>a {
  color: var(--primary-color);
}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item:hover>a::before {
  transform: translateX(5px) translateY(-50%);
  color: var(--primary-color);
}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item:hover::after {
  width: 100%;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -10px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes borderFade {
  from {
    border-bottom-color: var(--border-color);
  }

  to {
    border-bottom-color: var(--primary-color);
  }
}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item:hover>a {
  animation: borderFade var(--transition-speed) ease forwards;
}


@media (max-width: 1024px) {
  .sp-megamenu-parent li a {
    font-size: 1.rem;
  }
}

/* Buttons */
.but2 {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #0066cc, #004080);
  color: white;
  border: none;
  border-radius: 25px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.but2:hover {
  background: linear-gradient(135deg, #004080, #0066cc);
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.but2:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.but2:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.5), 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* c */

.sppb-btn-custom {

  padding: 12px 24px;
  background: linear-gradient(135deg, #0066cc, #004080);
  color: white;
  border: none;
  border-radius: 25px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sppb-btn-custom:hover {
  background: linear-gradient(135deg, #004080, #0066cc);
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.sppb-btn-custom:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sppb-btn-custom:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.5), 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* button 3 orange */
@keyframes delayedAppear {

  0%,
  99% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reflectMove {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translate(50%, 50%) scale(2);
    opacity: 0;
  }
}

.but3 {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ff8c00, #ff4500);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 25px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(255, 140, 0, 0.3);

  /* Nowa animacja dla opóźnionego pojawienia się */
  animation: delayedAppear 0.5s ease-out;
  animation-delay: 1.2s;
  animation-fill-mode: backwards;
}

.but3::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
}

.but3:hover {
  background: linear-gradient(135deg, #ff4500, #ff8c00);
  transform: translateY(-3px);
  box-shadow: 0 6px 8px rgba(255, 140, 0, 0.4);
}

.but3:hover::before {
  animation: reflectMove 1s ease-out;
}

.but3:active {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(255, 140, 0, 0.2);
}

.but3:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.5), 0 4px 6px rgba(255, 140, 0, 0.3);
}

/* menu login */
.but4 span {
  font-size: 12px;
}

.but4 {
  background-color: #f60;
  border-radius: 4px;



}

.sp-megamenu-parent>li:last-child>a {
  padding: 4px 15px 4px 15px;
  color: #fff;

}

/* sekcje */
.sekcja1 {
  position: relative;

}

.sekcja1::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #0f1d2e;
  /* Granatowy kolor trójkąta */
  z-index: 1;
}



/* Slideshow text span orange */
.orange {
  color: orange;
  display: inline-block;
  animation: pulse-and-zoom 3s infinite ease-in-out;
}

@keyframes pulse-and-zoom {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.03);
  }
}

/* Teacher box effect */
.imgc {
  --s: 220px;
  --b: 7px;
  --c: #d4d4d4;
  --bg: #575a6c;
  --f: 1;

  width: var(--s);
  aspect-ratio: 1;
  padding-top: calc(var(--s)/5);
  cursor: pointer;
  border-radius: 0 0 999px 999px;
  --_g: 50%/calc(100%/var(--f)) 100% no-repeat content-box;
  --_o: calc((1/var(--f) - 1)*var(--s)/2 - var(--b));
  outline: var(--b) solid var(--c);
  outline-offset: var(--_o);
  background: radial-gradient(circle closest-side,
      var(--bg) calc(99% - var(--b)), var(--c) calc(100% - var(--b)) 99%, #0000) var(--_g);
  -webkit-mask:
    linear-gradient(#000 0 0) no-repeat 50% calc(1px - var(--_o)) / calc(100%/var(--f) - 2*var(--b) - 2px) 50%,
    radial-gradient(circle closest-side, #000 99%, #0000) var(--_g);
  -moz-mask:
    linear-gradient(#000 0 0) no-repeat 50% calc(1px - var(--_o)) / calc(100%/var(--f) - 2*var(--b) - 2px) 50%,
    radial-gradient(circle closest-side, #000 99%, #0000) var(--_g);
  -ms-mask:
    linear-gradient(#000 0 0) no-repeat 50% calc(1px - var(--_o)) / calc(100%/var(--f) - 2*var(--b) - 2px) 50%,
    radial-gradient(circle closest-side, #000 99%, #0000) var(--_g);
  mask:
    linear-gradient(#000 0 0) no-repeat 50% calc(1px - var(--_o)) / calc(100%/var(--f) - 2*var(--b) - 2px) 50%,
    radial-gradient(circle closest-side, #000 99%, #0000) var(--_g);
  transform: scale(var(--f));
  transition: .5s;
}

.go:hover .imgc {
  --f: 1.35;
}

.imgc-1 {
  --c: #ffffff;
  --bg: #112131;
}

.imgc-2 {
  --c: #00ff00;
  --bg: #ccffcc;
}

.imgc-3 {
  --c: #0000ff;
  --bg: #ccccff;
}

/* Container layout */
.kontener {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.box-rowny {
  background-color: #f0f0f0;
  padding: 20px;
  border: 1px solid #ddd;
  text-align: center;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .kontener {
    grid-template-columns: 1fr;
  }
}

/* Header effect underline */
.go h2 {
  position: relative;
  display: inline-block;
}

.go h2::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: #ffffff;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform var(--transition-speed) ease-out;
}

.go:hover h2::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* zajawki */
.sppb-addon-article-layout-side-content {
  border-radius: 10px;
  padding: 15px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.sppb-addon-article-layout-side-content:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sppb-addon-article-layout-side-content .sppb-img-responsive {
  border-radius: 10px;
  transition: all 0.3s ease;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}


.sppb-addon-article-layout-side-content:hover .sppb-img-responsive {
  transform: scale(1.05);
}

.sppb-addon-article-layout-side-content:hover .sppb-img-responsive::before {
  left: 125%;
}

/* Nowe style dla nagłówka h3 i linku a */
.sppb-addon-article-layout-side-content h3,
.sppb-addon-article-layout-side-content a {
  transition: all 0.3s ease;
}

.sppb-addon-article-layout-side-content:hover h3 {
  transform: translateY(-5px);
  color: #007bff;
  /* Zmień na preferowany kolor */
}

.sppb-addon-article-layout-side-content:hover a {
  color: #0050a7 !important;
  /* Zmień na preferowany kolor */
  text-decoration: underline;
}

/* header info box */
.divider {
  border-right: 1px solid #33cccc;
}

@media (max-width: 768px) {
  .divider {
    border-right: 0px;
  }
}

/* animowany border */
.header-info {
  position: relative;
  display: inline-block;

  overflow: hidden;
}

.header-info::before,
.header-info::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  background-color: #33cccc;
  transition: width 0.3s ease;
}


.header-info::after {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.header-info:hover::before,
.header-info:hover::after {
  width: 100%;
}

.header-info::before:hover,
.header-info::after:hover {
  width: 100%;
}

/* tytuł divider */
:root {
  --brace-color: #112131;
  /* Ciemny granatowy */
}

.brace {
  width: 100%;
  min-width: 35px;
  padding-bottom: 20px;
  font-size: 1em;
  line-height: 1em;
  position: relative;
  text-align: center !important;
  vertical-align: middle;
  margin: 0 15px 35px;
  border: none;
  background-color: transparent;
  background-image: radial-gradient(circle at 0 0, rgba(0, 0, 128, 0) 14.5px, #112131 15.5px, #112131 19.5px, rgba(0, 0, 128, 0) 20.5px), radial-gradient(circle at 35px 0, rgba(0, 0, 128, 0) 14.5px, #112131 15.5px, #112131 19.5px, rgba(0, 0, 128, 0) 20.5px);
  background-size: 35px 20px;
  background-position: center bottom;
  background-repeat: no-repeat;
  font-style: italic;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .15));
  overflow: visible;
}

.brace::before {
  width: 50%;
  border-top: 5px solid var(--brace-color);
  border-left: 1px solid transparent;
  border-top-left-radius: 20% 30px;
  height: 100%;
  content: "";
  position: absolute;
  top: 100%;
  left: -15px;
  box-sizing: border-box;
  margin-top: -5px;
}

.brace::after {
  width: 50%;
  border-top: 5px solid var(--brace-color);
  border-right: 1px solid transparent;
  border-top-right-radius: 20% 30px;
  height: 100%;
  content: "";
  position: absolute;
  top: 100%;
  right: -15px;
  box-sizing: border-box;
  margin-top: -5px;
}

.brace-container {
  padding-left: 65px;
  position: relative;
  font-family: Arial, sans-serif;
}

.brace-container::before,
.brace-container::after {
  content: "";
  position: absolute;
  left: 35px;
  width: 20px;
  height: calc(50% + 15px);
  border-left: 5px solid var(--brace-color);
  box-sizing: border-box;
}

.brace-container::before {
  top: -15px;
  border-top: 1px solid transparent;
  border-top-left-radius: 30px 20%;
}

.brace-container::after {
  bottom: -15px;
  border-bottom: 1px solid transparent;
  border-bottom-left-radius: 30px 20%;
}

.brace-container::before,
.brace-container::after {
  background-image: radial-gradient(circle at 0 0, rgba(0, 0, 128, 0) 14.5px, var(--brace-color) 15.5px, var(--brace-color) 19.5px, rgba(0, 0, 128, 0) 20.5px);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  filter: drop-shadow(1px 0 1px rgba(0, 0, 0, .15));
}

.brace-container::after {
  background-image: radial-gradient(circle at 0 100%, rgba(0, 0, 128, 0) 14.5px, var(--brace-color) 15.5px, var(--brace-color) 19.5px, rgba(0, 0, 128, 0) 20.5px);
}
/* brace-left */

/* maszyna do pisania */
.typewriter {
  font-size: 12px;
  overflow: hidden;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  letter-spacing: .1em;
  opacity: 0;
  position: relative;
}

.typewriter.visible {
  opacity: 1;
  animation: typing 2s steps(40, end);
}

.typewriter::after {
  content: '|';
  position: absolute;
  right: -0.2em;
  animation: blink-caret .75s step-end infinite;
}

.typewriter.finished::after {
  display: none;
}

@keyframes typing {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

@keyframes blink-caret {

  from,
  to {
    color: transparent
  }

  50% {
    color: black;
  }
}

/* opinie */
/* boxy */
.sppb-carousel-extended-item {
  border-top: 1px solid #0c4ea5;
  position: relative;
  padding: 10px;
  border-radius: 10px;
  /* Dodane zaokrąglenie rogów */
  overflow: hidden;
  /* Zapewnia, że pseudo-elementy nie wychodzą poza zaokrąglone rogi */
}

.sppb-carousel-extended-item::before,
.sppb-carousel-extended-item::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, #0c4ea5 50%, transparent);
}

.sppb-carousel-extended-item::before {
  left: 0;
}

.sppb-carousel-extended-item::after {
  right: 0;
}

/* end boxy */
.sppb-testimonial-carousel-img-wrap img {
  border: 2px dotted #0c4ea5;
  padding: 6px;
}

.sppb-testimonial-carousel-name-designation {
  margin-left: 40px;
}

/* divider nagówek h3 diament opinie */
@keyframes diamondRotate {

  0%,
  10%,
  100% {
    transform: translateX(-50%) rotate(45deg);
  }

  5% {
    transform: translateX(-50%) rotate(405deg);
  }
}

.diamond h3 {

  position: relative;

}

.diamond h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background: linear-gradient(to right,
      rgba(0, 255, 255, 0),
      rgba(0, 255, 255, 0.5) 40%,
      rgba(0, 255, 255, 1) 50%,
      rgba(0, 255, 255, 0.5) 60%,
      rgba(0, 255, 255, 0));
}

.diamond h3::before {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  width: 12px;
  height: 12px;
  background-color: #00FFFF;
  border: none;
  animation: diamondRotate 5s linear infinite;
}

/* divider h3 grey */

/* divider nagłówek h3 diament opinie */
.grey-divider h3 {

  position: relative;

}

.grey-divider h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background: linear-gradient(to right,
      rgba(19, 64, 116, 0),
      rgba(19, 64, 116, 0.5) 40%,
      rgba(19, 64, 116, 1) 50%,
      rgba(19, 64, 116, 0.5) 60%,
      rgba(19, 64, 116, 0));
}

.grey-divider h3::before {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background-color: #134074;
  border: none;
}

/* maps */
.sppb-popover-marker {
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out forwards;
  position: absolute;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.sppb-popover-marker:nth-of-type(1) {
  animation-delay: 1s;
}

.sppb-popover-marker:nth-of-type(2) {
  animation-delay: 2s;
}

.sppb-popover-marker:nth-of-type(3) {
  animation-delay: 3s;
}

.sppb-popover-marker:nth-of-type(4) {
  animation-delay: 4s;
}

.sppb-popover-marker:nth-of-type(5) {
  animation-delay: 5s;
}

.sppb-popover-marker:nth-of-type(6) {
  animation-delay: 6s;
}

.sppb-popover-marker:nth-of-type(7) {
  animation-delay: 7s;
}

.sppb-popover-marker:nth-of-type(8) {
  animation-delay: 8s;
}

.sppb-popover-marker:nth-of-type(9) {
  animation-delay: 9s;
}

.sppb-popover-marker:nth-of-type(10) {
  animation-delay: 10s;
}

.sppb-popover-marker svg {
  width: 17px;
  height: 17px;
}

/* boxy*/
/* box jasny */
.box_jasny {
  background-color: #ffffff;
 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 25px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.box_jasny:hover {
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
  transform: translateY(-3px);
}
.box_jasny h3 {
  color: #333;
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 15px;
  border-bottom: 1px solid #f60;
  padding-bottom: 10px;
}
.box_jasny p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

.box-1 {
  background-color: #183145;
  color: white;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  margin-bottom: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.box-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 10px;
  pointer-events: none;
}

.box-1:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.box-1:hover::before {
  border-color: #017979;
  animation: borderAnimation 1.5s linear forwards;
  animation-fill-mode: forwards;
}

.box-1 h3 {
  color: #7fd4ff;
  font-size: 20px;
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 10px 0;
  padding-left: 10px;
  transition: text-shadow 0.3s ease;
}

.box-1 h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 0;
  width: 1px;
  background-color: #00ffff;
  transition: height 0.3s ease;
}

.box-1:hover h3::before {
  height: 100%;
  animation: expandLine 0.3s ease-out forwards;
}

.box-1:hover h3 {
  animation: glowPulse 2s infinite;
}

.box-1 p {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

/* Style dla menu stopki */
.footer-vmenu {
  position: relative;
  z-index: 10; /* Wyższy z-index niż box-1 */
}

.footer-vmenu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-vmenu li {
  margin-bottom: 0;
}

.footer-vmenu a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  padding: 1px 0;
  overflow: hidden;
  border-bottom: 1px solid #1a3e5d;
  position: relative; /* Dodane dla pozycjonowania pseudo-elementu */
}

.footer-vmenu a::before {
  content: '›';
  color: #ff6600;
  font-size: 20px;
  margin-right: 10px;
}

.footer-vmenu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #4498d9cc;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.footer-vmenu a:hover::after {
  transform: translateX(0);
}

/* Animacje */
@keyframes borderAnimation {
  0% { clip-path: inset(0 0 98% 0); }
  25% { clip-path: inset(0 98% 0 0); }
  50% { clip-path: inset(98% 0 0 0); }
  75% { clip-path: inset(0 0 0 98%); }
  100% { clip-path: inset(0 0 0 0); }
}

@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 5px rgba(34, 229, 255, 0.5); }
  50% { text-shadow: 0 0 20px rgba(58, 255, 245, 0.8); }
}

@keyframes expandLine {
  0% { height: 0; }
  100% { height: 100%; }
}
/* nowy kod */
/* artykuły blog zdięcia */
.article-list .article-intro-image img, .article-list .article-full-image img {
  width: 100%;
  height: 300px;
  display: block;
  object-fit: cover;
  object-position: top;
  padding: 18px;
}
.article-full-image img {
  width: 100%;
  height: 400px;
  display: block;
  object-fit: cover;
  object-position: center 20%;
}
/* pasek ingormacyjny data*/
.article-info {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #555;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  padding: 10px;
  background: rgb(255,255,255);
  background: linear-gradient(281deg, rgba(255,255,255,1) 0%, rgba(245,245,245,1) 89%);
  border-radius: 5px;
  margin-bottom: 20px;
  order: -1;
}

.article-info span {
  display: inline-flex;
  align-items: center;
}

.article-info span::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  background-size: contain;
  background-repeat: no-repeat;
}

.article-info .createdby::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%231a3e5d"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>');
}

.article-info .category-name::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%231a3e5d"><path d="M10 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2z"/></svg>');
}

.article-info .published::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%231a3e5d"><path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z"/></svg>');
}

.article-info .hits::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%231a3e5d"><path d="M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"/></svg>');
}

.article-info .read-time::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%231a3e5d"><path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z"/></svg>');
}

.article-info a {
  color: #f60;
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-info a:hover {
  color: #1a3e5d;
}

/* przeniesienie tytułu do góry */
/* kolor nagłowka */
.article-list .article .article-header h1 a, .article-list .article .article-header h2 a {
  color: #215084;
}
/* for single article */
.view-article .article-details {
  display: flex;
  flex-direction: column;
}
.view-article .article-header {
  order: -1;
  margin-bottom: 20px;
}
/* for articles list */
.article-list .articleBody, .article-list .article-body {
  display: contents;
}
.article-list .article {
  display: flex;
  flex-direction: column;
}
.article-list .article-header {
  order: -1;
  margin-bottom: 2px;
}
.article-info>span+span::before {

  content: "";
}

/* stylicazja artykułu */
/* Ogólne style dla treści artykułu */


/* Style dla kontenera artykułu */
.article-details, .article{
padding: 0 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Nagłówki */
.article-details h1,
.article-details h2,
.article-details h3,
.article-details h4,
.article-details h5,
.article-details h6 {
 
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.article-details h1 { 
  font-size: 2.5em; 
  border-bottom: 2px solid #ff9800; /* Pomarańczowy */
  padding-bottom: 10px; 
}
.article-details h2 { font-size: 2em; }
.article-details h3 { font-size: 1.75em; }
.article-details h4 { font-size: 1.5em; }
.article-details h5 { font-size: 1.25em; }
.article-details h6 { font-size: 1.1em; }

/* Paragrafy */
.article-details p {
  margin-bottom: 1em;
}

/* Listy */
.article-details ul,
.article-details ol {
    margin-left: 0;
    padding-left: 0;
    list-style-type: none;
}

.article-details li {
    position: relative;
    margin-bottom: 15px;
    padding-left: 30px;
    transition: all 0.3s ease;
}

.article-details li:hover {
    transform: translateX(5px);
}

/* Style dla listy nieuporządkowanej (ul) */
.article-details ul li::before {
    content: '•';
    color: #ff9800; /* Pomarańczowy */
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.article-details ul li:hover::before {
    color: #1a237e; /* Granatowy */
    transform: translateY(-50%) scale(1.2);
}

/* Style dla listy uporządkowanej (ol) */
.article-details ol {
    counter-reset: li-counter;
}

.article-details ol li::before {
    content: counter(li-counter);
    counter-increment: li-counter;
    color: #ffffff;
    background-color: #ff9800; /* Pomarańczowy */
    font-weight: bold;
    font-size: 0.8em;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
    transition: all 0.3s ease;
}

.article-details ol li:hover::before {
    background-color: #1a237e; /* Granatowy */
    box-shadow: 0 0 5px rgba(26, 35, 126, 0.5);
    transform: translateY(-50%) scale(1.1);
}

/* Dodatkowy efekt dla zagnieżdżonych list */
.article-details ul ul,
.article-details ol ul,
.article-details ul ol,
.article-details ol ol {
    margin-top: 10px;
    margin-left: 20px;
}
/* Wyróżniony tekst */
.article-details strong {
  font-weight: 700;
  color: #083a7a; /* Granatowy */
}

/* Linki */
.article-details a {
  color: #ff9800; /* Pomarańczowy */
  text-decoration: none;
  border-bottom: 1px solid #ff9800;
  transition: all 0.3s ease;
}

.article-details a:hover {
  color: #1a237e; /* Granatowy */
  border-bottom: 2px solid #1a237e;
}

/* Dodatkowy efekt dla akapitów */
.article-details p {
  transition: background-color 0.3s ease;
}

.article-details p:hover {
  background-color: #fff3e0; /* Jasny pomarańczowy */
}