@charset "UTF-8";
.c-szkolenie-hero {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .c-szkolenie-hero {
    margin-bottom: 60px;
  }
}
@media (min-width: 1023px) {
  .c-szkolenie-hero {
    margin-bottom: 100px;
  }
}
.c-szkolenie-hero__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1023px) {
  .c-szkolenie-hero__wrapper {
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 1023px) {
  .c-szkolenie-hero__content {
    width: 45%;
    max-width: 479px;
    margin-top: 30px;
  }
}
@media (min-width: 1200px) {
  .c-szkolenie-hero__content {
    margin-top: 0;
  }
}
.c-szkolenie-hero__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--color-orange);
}
@media (min-width: 1023px) {
  .c-szkolenie-hero__breadcrumbs {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.c-szkolenie-hero__breadcrumbs-home, .c-szkolenie-hero__breadcrumbs-current {
  display: inline-block;
  color: var(--color-orange);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.2em;
  text-decoration: none;
}
.c-szkolenie-hero__breadcrumbs-home {
  transition: color 250ms ease-in-out;
}
.c-szkolenie-hero__breadcrumbs-home:hover {
  color: var(--color-black);
}
.c-szkolenie-hero__breadcrumbs-current {
  position: relative;
}
.c-szkolenie-hero__breadcrumbs-current::before {
  content: "";
  position: absolute;
  left: -13px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 2px;
  background-color: var(--color-orange);
}
.c-szkolenie-hero__top {
  margin-bottom: 20px;
}
.c-szkolenie-hero__links {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-top: 50px;
  gap: 20px;
}
@media (min-width: 1023px) {
  .c-szkolenie-hero__links {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}
.c-szkolenie-hero__image {
  overflow: hidden;
}
@media (min-width: 1023px) {
  .c-szkolenie-hero__image {
    width: 55%;
    max-width: 657px;
    margin-left: auto;
  }
}
.c-szkolenie-hero__image-wrapper {
  position: relative;
  height: 0;
  padding-top: 90.8%;
}
.c-szkolenie-hero__image-img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
}
.c-szkolenie-hero__decor {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  opacity: 0; /* start niewidoczny */
  animation-name: blink-fade;
  animation-fill-mode: forwards; /* utrzymuje końcowy stan */
}
.c-szkolenie-hero__decor.top-left {
  width: 36.57%;
  animation-delay: 0s;
  animation-duration: 4s;
}
.c-szkolenie-hero__decor.top-right {
  width: 24.353%;
  left: auto;
  right: 0;
  animation-delay: 1s;
  animation-duration: 3.5s;
}
.c-szkolenie-hero__decor.bottom-left {
  top: auto;
  bottom: 0;
  width: 36.57%;
  animation-delay: 0.5s;
  animation-duration: 4.2s;
}
.c-szkolenie-hero__decor.bottom-right {
  width: 24.353%;
  left: auto;
  top: auto;
  bottom: 0;
  right: 0;
  animation-delay: 1.2s;
  animation-duration: 3.8s;
}

@keyframes blink-fade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}