@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/* Slider */
.slick-loading .slick-list {
  background: #fff url("./../img/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("../fonts/slick.eot");
  src: url("../fonts/slick.eot?#iefix") format("embedded-opentype"), url("../fonts/slick.woff") format("woff"), url("../fonts/slick.ttf") format("truetype"), url("../fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 40px;
  width: 40px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  z-index: 2;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 40px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 8px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: 8px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: 8px;
}
[dir=rtl] .slick-next {
  left: 8px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Wymiary hero */
/* Mixiny */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f9f9f9;
  color: #181716;
  background-size: cover;
  aspect-ratio: 1920/700;
  /* Tło (IMG) */
  /* Treści */
}
@media (min-width: 1024px) {
  .hero {
    height: 600px;
    aspect-ratio: auto;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 290px !important;
  }
}
.hero__bg {
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.hero__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  padding-inline: clamp(16px, 4vw, 48px);
  text-align: center;
}
.hero__inner {
  max-width: 1100px;
  margin-inline: auto;
  padding: 64px 155px 86px;
  background-image: url(../img/hero-inner-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .hero__inner {
    padding: 64px 0px 86px;
    background-size: 120% 100%;
    margin-top: 0;
  }
}
.hero__title {
  font-size: clamp(28px, 4.5vw, 52px);
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 0.75rem;
  text-wrap: balance;
}
.hero__desc {
  font-size: clamp(16px, 2.2vw, 24px);
  line-height: 1.6;
  color: rgba(24, 23, 22, 0.9);
  max-width: 72ch;
  margin: 0 auto;
}

.hero-slider .hero-slider__slide {
  position: relative;
  height: 600px;
  display: flex !important;
  align-items: center;
  background-color: #f9f9f9;
  padding: 32px 0;
}
@media (max-width: 767.98px) {
  .hero-slider .hero-slider__slide {
    flex-direction: column;
    align-items: start;
    height: unset;
  }
}
.hero-slider .hero-slider__slide .hero-slider__image {
  width: 46%;
  height: 100%;
  border-radius: 0 80px 80px 0;
  background-position: center;
  background-size: cover;
}
@media (max-width: 767.98px) {
  .hero-slider .hero-slider__slide .hero-slider__image {
    width: 90%;
    min-height: 160px;
  }
}
.hero-slider .hero-slider__slide .hero-slider__content {
  width: 54%;
  display: flex;
  flex-direction: column;
  padding: 64px;
}
@media (max-width: 767.98px) {
  .hero-slider .hero-slider__slide .hero-slider__content {
    width: 100%;
  }
}
.hero-slider .hero-slider__slide .hero-slider__content .hero-slider__title {
  font-size: clamp(2rem, 1.6rem + 1vw, 3rem);
  font-weight: 700;
  line-height: 1.6;
}
@media (max-width: 767.98px) {
  .hero-slider .hero-slider__slide .hero-slider__content .hero-slider__title {
    line-height: 1.2;
  }
}
.hero-slider .hero-slider__slide .hero-slider__content .hero-slider__description {
  margin-bottom: 2rem;
  letter-spacing: 2px;
}
.hero-slider .hero-slider__slide .hero-slider__marker {
  width: 84px;
  height: 6px;
  background-color: #F39100;
  border-radius: 8px;
  margin-bottom: 2rem;
}
.hero-slider .hero-slider__slide .hero-slider__marker--navigation {
  width: 160px;
  background-color: #E3000B;
  position: absolute;
  top: 50px;
  right: 45px;
}
@media (max-width: 767.98px) {
  .hero-slider .hero-slider__slide .hero-slider__marker--navigation {
    display: none;
  }
}
.hero-slider .slick-prev, .hero-slider .slick-next {
  top: 88px;
}
.hero-slider .slick-prev:before, .hero-slider .slick-next:before {
  transition: 0.3s;
}
.hero-slider .slick-prev {
  left: unset;
  right: 133px;
}
.hero-slider .slick-next {
  right: 77px;
}
.hero-slider .slick-dots {
  bottom: 8px;
}
@media (min-width: 768px) {
  .hero-slider .slick-prev:before, .hero-slider .slick-next:before {
    color: #505050;
  }
}
@media (max-width: 767.98px) {
  .hero-slider .slick-prev, .hero-slider .slick-next {
    top: 164px;
    bottom: unset;
  }
  .hero-slider .slick-prev {
    left: unset;
    right: 153px;
  }
  .hero-slider .slick-next {
    right: 97px;
  }
}

.button,
.hentry .entry-content .wp-block-button .wp-block-button__link,
.editor-styles-wrapper .wp-block-button .wp-block-button__link,
.wp-element-button,
.wp-block-button__link:not(.has-background),
input[type=submit] {
  transition: 0.3s;
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.button--primary {
  background: #F39100;
  color: #fff;
  border: none;
}
.button--primary:hover {
  background: rgb(222.6, 132.8271604938, 0);
  border: none;
  color: #fff;
}

.button--highlighted {
  box-shadow: 0 14px 30px rgba(255, 155, 42, 0.35);
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, background 0.15s ease-out;
}
.button--highlighted:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(255, 155, 42, 0.45);
}

.givewp-donation-form-modal__open {
  border-radius: 50px !important;
}

.site-header-cart .widget_shopping_cart a.button {
  border-color: rgba(0, 0, 0, 0.04) !important;
}

body {
  font-family: "Roboto", "Source Sans Pro", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

.home.page:not(.page-template-template-homepage) .site-header {
  margin-bottom: 0;
  border-bottom: none;
}

.site-header .custom-logo-link {
  display: inline-block;
}
.site-header .site-branding {
  margin-bottom: 0;
}
.site-header .site-search .search-field {
  background: #fff;
  border: 1px solid #ededed;
  box-shadow: none;
}

.sr-topbar-widgets {
  padding: 10px 0;
}
.sr-topbar-widgets .widget.widget_block {
  margin: 0;
}
.sr-topbar-widgets .widget.widget_block .wp-block-columns {
  margin-bottom: 0;
}
.sr-topbar-widgets__inner .widget.widget_block {
  align-items: center;
}
.sr-topbar-widgets .wp-element-button,
.sr-topbar-widgets .wp-block-button__link:not(.has-background) {
  padding: 6.5px 20px;
}
.sr-topbar-widgets .pll-switcher-select {
  background: #eeeeee;
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 5px 32px 5px 20px;
  border-radius: 20px;
  appearance: none;
  background-image: url(../img/down-arrow.svg);
  background-repeat: no-repeat;
  background-size: 12px 12px;
  background-position: calc(100% - 20px);
}
@media (max-width: 768px) {
  .sr-topbar-widgets .phone_buttons, .sr-topbar-widgets .lang_and_socials_row, .sr-topbar-widgets .wp-block-social-links {
    gap: var(--wp--preset--spacing--20) 0.5em;
  }
}

.home_tile {
  position: relative;
}
.home_tile figure.wp-block-image {
  margin: 0 !important;
}
.home_tile__title {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.3411764706);
  color: #fff;
  width: 100%;
  margin: 0;
  transition: 0.3s;
}
.home_tile__title a {
  color: #fff;
  text-decoration: none;
}
.home_tile:hover .home_tile__title {
  height: 100%;
  font-weight: 400;
}

.site-branding .custom-logo-link img {
  transition: 0.3s;
}
.site-branding .custom-logo-link img:hover {
  scale: 1.02;
}

.site-footer .footer-widgets .widget {
  margin-bottom: 8px;
}
.site-footer .widget_nav_menu ul li {
  margin-bottom: 4px !important;
}
.site-footer a {
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .site-footer .footer-widgets .block:not(:last-child) {
    margin-right: 3% !important;
  }
  .site-footer .footer-widgets.col-3 .footer-widget-1 {
    width: 35% !important;
  }
  .site-footer .footer-widgets.col-3 .footer-widget-2 {
    width: 29.5% !important;
  }
  .site-footer .footer-widgets.col-3 .footer-widget-3 {
    width: 29.5% !important;
  }
  .site-footer .footer-widgets.col-4 .footer-widget-1 {
    width: 35% !important;
  }
  .site-footer .footer-widgets.col-4 .footer-widget-2 {
    width: 18.66% !important;
  }
  .site-footer .footer-widgets.col-4 .footer-widget-3 {
    width: 18.66% !important;
  }
  .site-footer .footer-widgets.col-4 .footer-widget-4 {
    width: 18.66% !important;
  }
}
@media (max-width: 768px) {
  .site-footer .footer-widget-2, .site-footer .footer-widget-3, .site-footer .footer-widget-4 {
    font-size: 20px;
  }
}

.dw-fullwidth-bg {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background: #f9f9f9;
  padding: var(--wp--preset--spacing--60) 0;
}
@media (max-width: 768px) {
  .dw-fullwidth-bg {
    padding: var(--wp--preset--spacing--30) 0;
  }
}

button.menu-toggle {
  margin-top: 18px;
}

.home-collection {
  background: #f9f9f9;
  border: 1px solid #ededed;
  padding: 10px;
  border-radius: 3px;
  text-decoration: none !important;
  transition: 0.3s;
}
.home-collection__header {
  position: relative;
}
.home-collection__header .wp-block-post-featured-image img {
  transition: 0.3s;
}
.home-collection__header .wp-block-post-featured-image .wp-post-image {
  margin-bottom: 0;
}
.home-collection__name {
  text-decoration: none !important;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.3411764706);
  color: #fff;
  width: 100%;
  margin: 0;
  transition: 0.3s;
}
.home-collection__title {
  text-align: center;
}
.home-collection:hover {
  background: #f9f9f9;
}
.home-collection:hover .home-collection__name {
  height: 100%;
}

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