@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body, p {
  font-family: "Poppins", sans-serif;
}

h1, h2, h3 {
  font-family: "Instrument Sans", sans-serif;
  text-transform: uppercase;
}

h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 121%;
  letter-spacing: 0%;
}

h2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 141%;
  letter-spacing: 9%;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 177%;
  letter-spacing: 0%;
}

.hfe-nav-menu a,
.hfe-sub-menu-item {
  white-space: normal !important;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
}
.header__container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding: 30px 152px 0px 152px;
  color: #FFFFFF;
}
.header__menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.header__menu > li {
  position: relative;
}
.header__menu > li > a {
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
  color: #FFFFFF;
}
.header__menu > li > a:hover {
  color: #EE1D23;
}
.header__menu > li.current-menu-item > a, .header__menu > li.current-menu-ancestor > a {
  color: #EE1D23;
  font-weight: 600;
}
.header__menu > li .submenu-toggle {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}
.header__menu > li.menu-item-has-children:hover .submenu-toggle {
  transform: rotate(180deg);
}
.header__menu > li.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header__menu > li:last-child > a {
  background-color: #EE1D23;
  color: #FFFFFF;
  padding: 0.75rem 3rem;
  border-radius: 4px;
  font-size: 1rem;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
}
.header__menu > li:last-child > a:hover {
  opacity: 0.7;
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  background-color: #FFFFFF;
  min-width: 200px;
  margin-top: 20px;
  padding: 0;
  border-radius: 0 0 20px 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 10;
}
.sub-menu li {
  margin-bottom: 0.5rem;
}
.sub-menu li:last-child {
  margin-bottom: 0;
}
.sub-menu li:last-child a {
  border-radius: 0 0 20px 20px;
}
.sub-menu li a {
  text-decoration: none;
  display: block;
  font-size: 0.9rem;
  white-space: nowrap;
  color: #000000;
  padding: 12px 30px;
}
.sub-menu li a:hover {
  background-color: #EE1D23;
  color: #FFFFFF;
}

@media (max-width: 1220px) {
  .header {
    position: static;
    background-color: #000000;
    padding-bottom: 30px;
  }
  .header__container {
    justify-content: center;
  }
}
@media (max-width: 830px) {
  .header {
    position: relative;
    background-color: #000000;
  }
  .header__container {
    padding: 15px 20px;
    justify-content: space-between;
  }
  .header__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000000;
    flex-direction: column;
    padding-top: 80px;
    gap: 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 2000;
  }
  .header__menu.active {
    transform: translateY(0);
  }
  .header__menu li {
    width: 100%;
  }
  .header__menu li a {
    display: block;
    padding: 15px 20px;
    font-size: 1.1rem;
    color: #FFFFFF;
  }
  .header__menu li.menu-item-has-children .submenu-toggle {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 1rem;
    cursor: pointer;
  }
  .header__menu li.menu-item-has-children .sub-menu {
    position: static;
    max-height: 0;
    overflow: hidden;
    padding-left: 20px;
    background-color: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.3s ease;
  }
  .header__menu li.menu-item-has-children .sub-menu li a {
    color: #FFFFFF;
  }
  .header__menu li.menu-item-has-children.submenu-open .sub-menu {
    max-height: 500px;
  }
  .header__hamburger {
    display: block;
    width: 30px;
    height: 22px;
    cursor: pointer;
    position: relative;
    z-index: 2100;
  }
  .header__hamburger span {
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .header__hamburger span:nth-child(1) {
    top: 0;
  }
  .header__hamburger span:nth-child(2) {
    top: 9px;
  }
  .header__hamburger span:nth-child(3) {
    top: 18px;
  }
  .header__hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
  }
  .header__hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .header__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
  }
}
.blog-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .blog-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .blog-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #F1F1F1;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.2s ease;
  width: 100%;
  max-width: 512px;
  height: 100%;
  padding: 15px;
  margin: 0 auto;
}
.blog-card:hover {
  transform: translateY(-4px);
}
.blog-card__image {
  background-size: cover;
  background-position: center;
  padding-top: 40%;
  margin: 20px;
  border-radius: 20px;
}
.blog-card__content {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.blog-card__title {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  line-height: 147%;
  min-height: 3.5rem;
}
.blog-card__excerpt {
  flex-grow: 1;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  color: #000000;
}
.blog-card__button {
  display: inline-block;
  background-color: #FFFFFF;
  color: #EE1D23;
  padding: 10px 32.5px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
  text-align: center;
}
.blog-card__button:hover {
  background-color: #EE1D23;
  color: #FFFFFF;
}

.button {
  background-color: #EE1D23;
  color: #FFFFFF;
  padding: 0.75rem 3rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
  text-transform: uppercase;
  transition: opacity 0.3s;
  text-decoration: none;
}
.button:hover {
  opacity: 0.7;
}

.form-row--two p {
  display: flex;
  gap: 1rem;
  margin: 0;
}
.form-row--two p .form-field {
  flex: 1;
}

.form-field {
  display: flex;
  width: 100%;
}
.form-field span {
  width: 100%;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #E6E6E6;
  border-radius: 4px;
  font-size: 1rem;
  font-family: "Instrument Sans", sans-serif;
}
.form-field textarea {
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #EE1D23;
}

.form-submit {
  margin-top: 1rem;
}
.form-submit input[type=submit],
.form-submit button[type=submit] {
  background-color: #EE1D23;
  color: #FFFFFF;
  padding: 0.75rem 3.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
  text-transform: uppercase;
}
.form-submit input[type=submit]:hover,
.form-submit button[type=submit]:hover {
  background-color: #F4002F;
}

#wpcf7-f641-p19-o1 form .wpcf7-response-output {
  color: #FFFFFF;
}

.contact-box__columns {
  display: flex;
  gap: 2rem;
  align-items: stretch;
}
.contact-box__left, .contact-box__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 27px;
}
.contact-box__row {
  margin: 0;
}
.contact-box__row p {
  margin: 0;
}
.contact-box__row--two p {
  display: flex;
  width: 100%;
  margin: 0;
}
.contact-box__row--two .contact-box__field {
  flex: 1;
}
.contact-box__row--two .contact-box__field--marginright1 {
  margin-right: 27px;
}
.contact-box__field {
  display: flex;
  width: 100%;
}
.contact-box__field span {
  width: 100%;
}
.contact-box__field input,
.contact-box__field textarea {
  width: 100%;
  padding: 20px 20px;
  font-size: 1rem;
  border: 1px solid #E6E6E6;
/*   border-radius: 8px; */
  background-color: #292929;
  color: #FFFFFF;
  font-family: "Instrument Sans", sans-serif;
  resize: none;
  box-sizing: border-box;
}
.contact-box__field input:focus,
.contact-box__field textarea:focus {
  outline: none;
}
.contact-box__field input::placeholder,
.contact-box__field textarea::placeholder {
  color: #FFFFFF;
  opacity: 1;
}
.contact-box__field--textarea {
  flex: 1;
}
.contact-box__field--textarea textarea {
  height: 152px;
}
.contact-box__submit {
  margin-top: 2rem;
}
.contact-box__submit p {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
}
.contact-box__submit input[type=submit] {
  background-color: #EE1D23;
  color: white;
  padding: 18px 75px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
  text-transform: uppercase;
  font-weight: 600;
}
.contact-box__submit input[type=submit]:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .contact-box__columns {
    flex-direction: column;
  }
  .contact-box__row--two p {
    flex-direction: column;
    gap: 0;
  }
  .contact-box__row--two p .contact-box__field--marginright1 {
    margin: 0;
  }
  .contact-box__submit p {
    align-items: center;
  }
}

.offers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .offers {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .offers {
    grid-template-columns: repeat(3, 1fr);
  }
}

.offer-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  overflow: hidden;
  transition: transform 0.2s ease;
  width: 100%;
  max-width: 512px;
  padding: 15px;
  margin: 0 auto;
}
.offer-card:hover {
  transform: translateY(-6px);
}
.offer-card__image {
  background-size: cover;
  background-position: center;
  padding-top: 40%;
  margin: 20px;
}
.offer-card__content {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.offer-card__title {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  line-height: 147%;
  margin-bottom: 0.5rem;
  min-height: 3.5rem;
  color: #000000;
}
.offer-card__excerpt {
  flex-grow: 1;
  font-size: 0.95rem;
/*   margin-bottom: 2rem; */
  color: #000000;
  margin: 0;
}
@media (max-width: 425px) {
  .offer-card__title ,
  .offer-card__excerpt {
	  margin: 0 0 1rem;
	  min-height: 0;
  }
}
.offer-card__button {
  display: inline-block;
  background-color: #FFFFFF;
  color: #EE1D23;
  padding: 10px 9.5px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.offer-card__button:hover {
  opacity: 0.5;
}

.elementor-shortcode {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 2rem;
}

.tablepress {
  width: 100%;
}
.tablepress thead tr th {
  background-color: #FFFCCA;
  color: #000000;
  padding: 12px;
  text-align: left;
  border: none;
}
.tablepress thead tr th:last-child {
  text-align: center;
}
.tablepress thead tr:last-child th {
  text-align: center;
}
.tablepress td {
  padding: 12px;
  border: none;
}
.tablepress td:nth-child(3),
.tablepress td:nth-child(4),
.tablepress td:nth-child(5),
.tablepress td:nth-child(6),
.tablepress td:nth-child(7) {
  text-align: center;
}
.tablepress tbody tr:nth-child(odd) {
  background-color: #FFFFFF;
}
.tablepress tbody tr:nth-child(even) {
  background-color: #F2F3F7;
}

/* Tekst jako inicjały – wielkie litery */
.gtranslate_wrapper {
  margin: 20px;
}

.gtranslate_wrapper .gt_switcher-popup span {
  text-transform: lowercase;
  font-weight: bold;
}

.gtranslate_wrapper .gt_switcher-popup img {
  opacity: 1;
  border-radius: 6px;
}

/* Wybrany język w nagłówku – biały */
.gtranslate_wrapper .gt_switcher-popup span {
  color: white !important;
}

/* Języki w popupie – czarne */
.gtranslate_wrapper .gt_languages span {
  color: black !important;
}

/* Ukryj strzałkę ▼ */
.gtranslate_wrapper .gt_switcher-popup span:last-child {
  display: none;
}

.error404 {
/*   text-align: center; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.error404__background {
  background-color: #000000;
  height: 187px;
  width: 100%;
}
.error404__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 20px;
  display: flex;
  flex-direction: column;;
  align-items: center;
}
.error404__title {
  font-size: 100px;
  font-weight: bold;
  color: #000000;
}
.error404__subtitle {
  font-size: 24px;
  margin-bottom: 20px;
}
.error404__description {
  font-size: 18px;
  color: #000000;
  margin-bottom: 30px;
}

body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.gtranslate_wrapper .gt_switcher-popup:hover {
  opacity: 0.8;
}

.imageSquare .elementor-widget-container {
  position: relative;
  z-index: 1;
}

#squareRed.imageSquare::after {
  content: "";
  display: block;
  width: 106px;
  height: 183px;
  position: absolute;
  bottom: -14px;
  right: -7px;
  background-color: #EE1D23;
}

#squareBlack.imageSquare::after {
  content: "";
  display: block;
  width: 106px;
  height: 183px;
  position: absolute;
  bottom: -14px;
  right: -14px;
  background-color: #000000;
}

#squareYellow.imageSquare::after {
  content: "";
  display: block;
  width: 106px;
  height: 183px;
  position: absolute;
  bottom: -14px;
  right: -14px;
  background-color: #FEF200;
}

@media (max-width: 425px) {
  #squareRed.imageSquare::after,
  #squareBlack.imageSquare::after,
  #squareYellow.imageSquare::after {
    height: 130px;
  }
}

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

.hfe-breadcrumbs-home-icon {
	display: none !important;
}
