@charset "UTF-8";
.c-hero-section {
  margin-bottom: 40px;
  margin-top: 125px;
}
@media (min-width: 768px) {
  .c-hero-section {
    margin-bottom: 60px;
  }
}
@media (min-width: 1023px) {
  .c-hero-section {
    margin-bottom: 96px;
    margin-top: 115px;
  }
}
.c-hero-section__wrapper {
  position: relative;
  background-color: #f3f3f3;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1023px) {
  .c-hero-section__wrapper {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
}
.c-hero-section__content {
  padding: 30px 20px;
}
@media (min-width: 1023px) {
  .c-hero-section__content {
    width: 52%;
    max-width: 712px;
    margin-top: 30px;
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .c-hero-section__content {
    margin-top: 0;
  }
}
.c-hero-section__links {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 20px;
}
@media (min-width: 768px) {
  .c-hero-section__links {
    margin-top: 30px;
  }
}
@media (min-width: 1023px) {
  .c-hero-section__links {
    margin-top: 50px;
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}
.c-hero-section__image {
  overflow: hidden;
  aspect-ratio: 1;
}
@media (min-width: 1023px) {
  .c-hero-section__image {
    width: 43%;
    max-width: 574px;
    margin-left: auto;
  }
}
.c-hero-section__image-wrapper {
  position: relative;
  height: 100%;
}
.c-hero-section__image-img {
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-hero-section__title {
  background: #fff;
  margin-bottom: 20px;
}
@media (min-width: 1023px) {
  .c-hero-section__title {
    padding: 15px 20px;
    margin-bottom: 30px;
  }
}
.c-hero-section__title.section-headline {
  padding: 15px;
  text-align: left;
}
@media (max-width: 768px) {
  .c-hero-section__title.section-headline {
    font-size: 26px;
  }
}
.c-hero-section__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-hero-section__decor.top-right {
  width: 30.5%;
  left: auto;
  right: 0;
  animation-delay: 1s;
  animation-duration: 3.5s;
}
.c-hero-section__decor.bottom-left {
  top: auto;
  bottom: 0;
  width: 30.5%;
  animation-delay: 0.5s;
  animation-duration: 4.2s;
}
.c-hero-section__decor.bottom-right {
  width: 30.5%;
  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;
  }
}