html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, big, em, q, abbr, address, cite, code, del, dfn, em, img, ins, samp, small, strong, tt, var, b, u, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, figure, table, caption, tbody, tfoot, thead, tr, th, td, time, mark, audio, video, tbody, nav, section {
  vertical-align: baseline;
  box-sizing: border-box;
  border: 0;
  outline: 0;
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, tr, tbody, img {
  display: block;
}

ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

:root {
  --bg-color-even: #fff;
  --brand-color: #1e4544;
  --brand-color-accent: #487f70;
  --brand-color-hover: #fff;
  --bg-color-odd: #1e4544;
  --text: #333;
  --text-second: #666;
  --text-white: #fff;
  --header-height: 60px;
  --gutter: 20px;
  --font-logo: "Poppins", sans-serif;
}

.widget__figcaption, .owl__caption, .article__photo figcaption {
  color: #7f7f7f;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
}

@media screen and (width <= 768px) {
  .widget__figcaption, .owl__caption, .article__photo figcaption {
    font-size: 15px;
  }
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 100vw;
  font-size: 10px;
  padding-right: 0 !important;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
}

body {
  box-sizing: border-box;
  min-height: calc(100vh - var(--header-height));
  font-family: var(--font-main);
  width: 100%;
  padding-top: var(--header-height);
  background: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.75;
  position: relative;
  overflow-x: hidden;
}

img {
  display: block;
}

::-webkit-scrollbar {
  background-color: #fff;
  width: 6px;
}

::-webkit-scrollbar-track {
  background-color: #fff;
  border-radius: 0;
}

::-webkit-scrollbar-thumb {
  background: var(--brand-color-accent);
  border-radius: 1px;
}

.wrapper {
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
}

._js_inViewport {
  opacity: 0;
  transition: transform 2s cubic-bezier(0, 1, .3, 1) .25s, opacity .3s ease-out .25s;
  position: relative;
  transform: translateY(70px);
}

._js_inViewport.__js_onScreen {
  opacity: 1;
  position: relative;
  transform: translateY(0);
}

.intro__wrapper {
  aspect-ratio: 19.9 / 7.99;
  width: 100%;
  position: relative;
}

.intro__full_img {
  aspect-ratio: 19.9 / 7.99;
  object-fit: cover;
  object-position: 0 60%;
  width: 100%;
  max-width: 100%;
}

@media screen and (width <= 768px) {
  .intro__full_img {
    aspect-ratio: 4.8 / 5.36;
    object-fit: cover;
    object-position: 50% center;
    width: 200%;
    position: relative;
  }
}

.intro__title {
  z-index: 1;
  width: 100%;
  max-width: 980px;
  font-family: var(--font-headers);
  margin: 0 auto;
  padding: 0;
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
}

.intro__title h2 {
  background-color: var(--brand-color);
  text-shadow: 0 0 10px #00000080;
  text-transform: uppercase;
  text-align: left;
  color: #fff;
  letter-spacing: 1.65px;
  width: fit-content;
  padding: 4px 24px;
  font-size: 60px;
  font-weight: 700;
  line-height: 120%;
}

@media screen and (width <= 768px) {
  .intro__title h2 {
    font-size: 34px;
  }
}

.intro__author-footnote {
  color: #fff;
  z-index: 2;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 40px;
  font-size: 18px;
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
}

.articles {
  overflow: hidden;
}

article {
  color: var(--text);
  background-color: var(--bg-color-even);
  font-size: 20px;
  font-weight: 400;
}

article p {
  padding-bottom: 20px;
  line-height: 1.6;
}

article p a {
  color: #000;
  text-underline-offset: 2px;
  text-decoration: underline;
  transition: text-underline-offset .1s;
}

article p a:hover {
  text-underline-offset: 5px;
}

@media screen and (width <= 768px) {
  article p {
    font-size: 17px;
  }
}

article h1 {
  letter-spacing: .8px;
  font-size: 40px;
  line-height: 1.36;
  font-family: var(--font-headers);
  font-variation-settings: "wght" 700;
  padding-bottom: 20px;
  font-weight: 700;
}

@media screen and (width <= 520px) {
  article h1 {
    padding-bottom: 15px;
    font-size: 24px;
  }
}

article ul {
  padding-bottom: 24px;
}

article li {
  padding-left: 30px;
  position: relative;
}

article li:before {
  content: "";
  background-color: var(--brand-color-accent);
  border: 1px solid var(--brand-color-accent);
  filter: contrast();
  border-radius: 50%;
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  top: 11px;
  left: 10px;
}

article:nth-of-type(2n) {
  position: relative;
}

article:nth-of-type(2n) .article__author {
  color: var(--text-second);
}

article:nth-of-type(2n):before, article:nth-of-type(2n):after {
  content: "";
  position: var(--sidebar-position, absolute);
  top: var(--sidebar-top, 0);
  background-position: center;
  background-size: cover;
  width: calc(50vw - 490px);
  height: 100vh;
}

article:nth-of-type(2):before {
  background-image: url("http://singlepage-jeep-2026.wpcdn.pl/img/intro-left.jpg");
  left: 0;
}

article:nth-of-type(2):after {
  background-image: url("http://singlepage-jeep-2026.wpcdn.pl/img/intro-right.jpg");
  right: 0;
}

article:nth-of-type(4):before {
  background-image: url("http://singlepage-jeep-2026.wpcdn.pl/img/4-left.jpg");
  left: 0;
}

article:nth-of-type(4):after {
  background-image: url("http://singlepage-jeep-2026.wpcdn.pl/img/4-right.jpg");
  right: 0;
}

article:nth-of-type(6):before {
  background-image: url("http://singlepage-jeep-2026.wpcdn.pl/img/6-left.jpg");
  left: 0;
}

article:nth-of-type(6):after {
  background-image: url("http://singlepage-jeep-2026.wpcdn.pl/img/6-right.jpg");
  right: 0;
}

article:nth-of-type(odd) {
  z-index: 1;
  color: var(--text-white);
  background-color: var(--bg-color-odd);
  position: relative;
}

article:nth-of-type(odd) li:before {
  background-color: var(--brand-color);
  border: 1px solid var(--brand-color-accent);
}

article:nth-of-type(odd) .widget__figcaption, article:nth-of-type(odd) .owl__caption {
  color: #fff;
}

article:nth-of-type(odd) p a {
  color: #fff;
  text-underline-offset: 2px;
  text-decoration: underline;
  transition: text-underline-offset .1s;
}

article:nth-of-type(odd) p a:hover {
  text-underline-offset: 5px;
}

.article__section {
  position: relative;
}

.section__name {
  padding-bottom: 24px;
  line-height: 1.5;
}

.article__text_column {
  box-sizing: border-box;
  width: 980px;
  max-width: 100%;
  margin: 0 auto;
  padding: 50px 40px 40px;
}

@media screen and (width <= 768px) {
  .article__text_column {
    padding: 30px 40px;
  }
}

.article__row_socials {
  flex-wrap: wrap;
  align-items: center;
  row-gap: 15px;
  padding-bottom: 20px;
  display: flex;
}

.article__author {
  letter-spacing: .9px;
  margin-right: 30px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.38;
}

@media screen and (width <= 768px) {
  .article__author {
    letter-spacing: .7px;
    flex-direction: column;
    width: 100%;
    font-size: 14px;
    display: flex;
  }
}

.article__lead {
  font-family: var(--font-headers);
  font-variation-settings: "wght" 700;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.7;
}

@media screen and (width <= 520px) {
  .article__lead {
    font-size: 18px;
  }
}

.article__photo {
  margin-bottom: 24px;
}

.article__photo img {
  border-radius: 0;
  width: 100%;
  max-width: 100%;
  transition: border-radius .5s cubic-bezier(.165, .84, .44, 1);
  display: block;
}

.article__photo img:hover {
  border-radius: 0 60px;
}

.article__photo figcaption {
  padding-top: 8px;
}

article:nth-of-type(odd) .article__photo figcaption {
  color: #fff;
}

.article__quote {
  padding-bottom: 24px;
}

.article__quote blackquote {
  font-size: 21px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.90476;
  font-family: var(--font-headers);
}

.article__quote blackquote p:first-of-type:last-of-type, .article__quote blackquote p:last-of-type {
  padding-bottom: 0;
}

@media screen and (width <= 768px) {
  .article__quote blackquote {
    font-size: 17px;
  }
}

.article__quote header {
  background-image: linear-gradient(#0000 calc(100% - 27px), #000 calc(100% - 27px) calc(100% - 25px), #0000 calc(100% - 25px));
  background-position: 40px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: background-size .6s;
  position: relative;
}

.article__quote header:before {
  content: url("https://singlepage-softsharp-base-2024.wpcdn.pl/img/cytat-sharp.svg");
  background-color: var(--bg-color-even);
  width: 48px;
  height: 39px;
  padding-right: 20px;
  display: inline-block;
  position: relative;
}

.article__quote header:after {
  content: "";
  z-index: -1;
  background-image: linear-gradient(#0000 calc(100% - 27px), #b1b1b1 calc(100% - 27px) calc(100% - 25px), #0000 calc(100% - 25px));
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.article__quote header svg {
  background-color: #fff;
  padding-right: 20px;
}

.article__quote footer {
  text-align: right;
  background-image: linear-gradient(#0000 calc(100% - 17px), #000 calc(100% - 17px) calc(100% - 15px), #0000 calc(100% - 15px));
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: background-size .6s;
  position: relative;
}

.article__quote footer:after {
  content: "";
  z-index: -1;
  background-image: linear-gradient(#0000 calc(100% - 17px), #b1b1b1 calc(100% - 17px) calc(100% - 15px), #0000 calc(100% - 15px));
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.article__quote footer span {
  background-color: var(--bg-color-even);
  text-align: right;
  font-family: var(--font-headers);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding-left: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.57143%;
}

@media screen and (width <= 768px) {
  .article__quote footer span {
    font-size: 11px;
  }
}

.article__quote:hover footer, .article__quote:hover header {
  background-size: 0% 100%;
}

article:nth-of-type(odd) .article__quote header {
  background-image: linear-gradient(#0000 calc(100% - 27px), #fff calc(100% - 27px) calc(100% - 25px), #0000 calc(100% - 25px));
}

article:nth-of-type(odd) .article__quote header:before {
  content: url("https://singlepage-softsharp-base-2024.wpcdn.pl/img/cytat-sharp-white.svg");
  background-color: var(--bg-color-odd);
}

article:nth-of-type(odd) .article__quote header:after {
  background-image: linear-gradient(transparent calc(100% - 27px), var(--brand-color) calc(100% - 27px), var(--brand-color) calc(100% - 25px), transparent calc(100% - 25px));
  filter: contrast(.1);
}

article:nth-of-type(odd) .article__quote header svg {
  background-color: var(--brand-color);
}

article:nth-of-type(odd) .article__quote header path {
  fill: #fff;
}

article:nth-of-type(odd) .article__quote footer {
  background-image: linear-gradient(#0000 calc(100% - 17px), #fff calc(100% - 17px) calc(100% - 15px), #0000 calc(100% - 15px));
}

article:nth-of-type(odd) .article__quote footer:after {
  filter: contrast(.1);
  background-image: linear-gradient(#0000 calc(100% - 17px), #fff calc(100% - 17px) calc(100% - 15px), #0000 calc(100% - 15px));
}

article:nth-of-type(odd) .article__quote footer span {
  background-color: var(--bg-color-odd);
}

.header {
  width: 100%;
  height: var(--header-height);
  z-index: 4;
  background-color: #fff;
  position: fixed;
  top: 0;
}

.header > .wrapper {
  justify-content: space-between;
  max-width: 980px;
  height: 100%;
  padding: 0 35px;
  display: flex;
  position: relative;
}

@media screen and (width <= 1180px) {
  .header > .wrapper {
    padding: 0 40px;
  }
}

@media screen and (width <= 768px) {
  .header > .wrapper {
    padding: 0 20px;
  }
}

.logo_wp {
  height: var(--header-height);
  z-index: 1;
  align-items: center;
  display: flex;
  position: relative;
}

@media screen and (width <= 768px) {
  .logo_wp {
    margin-right: var(--margin);
  }
}

.logo_wp img {
  object-fit: contain;
  max-width: 100%;
}

@media screen and (width <= 520px) {
  .logo_wp svg {
    max-width: 44px;
  }
}

.customer_logo {
  object-fit: contain;
  flex-direction: row;
  place-content: flex-start center;
  align-items: center;
  column-gap: 20px;
  max-width: 110px;
  height: auto;
  display: flex;
}

@media screen and (width <= 768px) {
  .customer_logo {
    max-width: unset;
  }
}

@media screen and (width <= 520px) {
  .customer_logo {
    column-gap: 20px;
  }
}

.customer_logo span {
  color: var(--text);
  font-size: 14px;
  font-family: var(--font-logo);
  font-weight: 400;
  line-height: 100%;
}

.customer_logo img {
  object-fit: cover;
  width: 97px;
  height: 39px;
}

@media screen and (width <= 768px) {
  .customer_logo img {
    width: 74px;
    height: 30px;
  }
}

.footer {
  background-color: var(--bg-color-odd);
  color: #fff;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-height: 160px;
  margin-top: -1px;
  display: flex;
  position: relative;
}

.footer .wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  row-gap: 30px;
  max-width: 980px;
  margin: 0 auto;
  padding: 40px;
  display: flex;
}

@media screen and (width <= 768px) {
  .footer .wrapper {
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 30px;
    padding: 40px;
  }
}

.footer .logo_wp, .footer .customer_logo {
  max-width: unset;
  height: unset;
  flex-direction: row;
  place-content: flex-start center;
  align-items: center;
  column-gap: 16px;
  display: flex;
}

@media screen and (width <= 768px) {
  .footer .logo_wp, .footer .customer_logo {
    margin: 0;
    padding: 0;
  }
}

.footer .logo_wp span, .footer .customer_logo span {
  color: #fff;
}

.footer .customer_logo {
  column-gap: 10px;
  width: 250px;
}

.footer .logo_wp img {
  max-width: 50vw;
}

@media screen and (width <= 768px) {
  .footer .customer_logo {
    flex-direction: column;
    row-gap: 10px;
  }
}

.footer .customer_logo svg {
  width: 155px;
  max-width: 50vw;
}

.footer .customer_logo img {
  object-fit: contain;
  width: 91px;
  height: 37px;
}

@media screen and (width <= 768px) {
  .footer .customer_logo img {
    width: 125px;
    height: 51px;
  }
}

.footer strong {
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
  font-family: var(--font-headers);
}

@media screen and (width <= 768px) {
  .footer strong {
    font-size: 18px;
  }
}

.footer p {
  color: #fff;
  text-align: left;
  max-width: 100%;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

@media screen and (width <= 768px) {
  .footer p {
    order: 2;
    width: 100%;
    font-size: 14px;
  }
}

.footer__btn {
  text-align: center;
  font-family: var(--font-headers);
  letter-spacing: 5.4px;
  text-transform: uppercase;
  background-color: var(--brand-color-accent);
  border: 4px solid var(--brand-color-accent);
  padding: 29px 58px;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.22222;
}

.footer__btn:hover {
  color: #333;
  background-color: #fff;
  border-color: #333;
  text-decoration: none;
}

@media screen and (width <= 768px) {
  .footer__btn {
    padding: 15px 20px;
    font-size: 14px;
  }
}

.footer__logos {
  letter-spacing: 1.4px;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 22px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.57143;
  display: flex;
}

@media screen and (width <= 768px) {
  .footer__logos {
    flex-direction: column;
    row-gap: 20px;
  }
}

.socials {
  margin-right: 20px;
  display: flex;
}

.socials .__js_socialShare {
  cursor: pointer;
  box-sizing: border-box;
  background-color: #0000;
  border: 1px solid #666;
  border-radius: 50%;
  flex-wrap: wrap;
  place-content: center space-evenly;
  justify-items: center;
  width: 44px;
  height: 44px;
  margin-right: 6px;
  transition: all .22s;
  display: flex;
  position: relative;
}

.socials .__js_socialShare svg {
  z-index: 2;
  display: block;
  position: relative;
}

.socials .__js_socialShare[data-id="facebook"] svg {
  width: 14px;
  height: 28px;
}

.socials .__js_socialShare[data-id="twitter"] svg {
  width: 24px;
  height: 24px;
}

.socials .__js_socialShare[data-id="link"] svg {
  width: 75px;
  height: 75px;
}

.socials .__js_socialShare[data-id="link"].clicked:before {
  content: "Link skopiowany!";
  color: #000;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  display: block;
  position: absolute;
  top: -100px;
  left: 0%;
  box-shadow: 0 2px 5px #0000001a;
}

.socials .__js_socialShare:hover {
  background-color: #666;
  border: 1px solid #666;
}

.socials .__js_socialShare:hover path {
  stroke: #fff;
}

.socials .__js_socialShare:hover[data-id="link"] path {
  fill: #fff;
  stroke: #0000;
}

article:nth-of-type(odd) .socials .__js_socialShare {
  border: 1px solid #fff;
}

article:nth-of-type(odd) .socials .__js_socialShare path {
  stroke: #fff;
}

article:nth-of-type(odd) .socials .__js_socialShare[data-id="link"] path {
  fill: #fff;
  stroke: #0000;
}

article:nth-of-type(odd) .socials .__js_socialShare:hover {
  background-color: #fff;
  border: 1px solid #fff;
}

article:nth-of-type(odd) .socials .__js_socialShare:hover path {
  stroke: #666;
}

article:nth-of-type(odd) .socials .__js_socialShare:hover[data-id="link"] path {
  fill: #666;
  stroke: #0000;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.wp-player .npp-container.skinDefault .top .topcont, .wp-player .npp-container.skinDefault.nohover:hover .top .topcont {
  top: 0 !important;
}

.wp-player .npp-container.skinDefault .bottom, .wp-player .npp-container.skinDefault.nohover:hover .bottom {
  bottom: 0 !important;
}

.wp-player .npp-container.skinDefault.paused .btnplaybig, .wp-player .npp-container.skinDefault .btnplaybig, .wp-player .npp-container.skinMobile.paused.visible .btnplaybig, .wp-player .npp-container.skinMobile.paused .btnplaybig {
  background-size: contain;
  border-radius: 100%;
  opacity: 1 !important;
  background: #00000080 !important;
  border: 4px solid #fff !important;
  width: 80px !important;
  height: 80px !important;
}

@media screen and (width <= 768px) {
  .wp-player .npp-container.skinDefault.paused .btnplaybig, .wp-player .npp-container.skinDefault .btnplaybig, .wp-player .npp-container.skinMobile.paused.visible .btnplaybig, .wp-player .npp-container.skinMobile.paused .btnplaybig {
    border: 4px solid #fff !important;
    width: 80px !important;
    height: 80px !important;
  }
}

.wp-player .npp-container.skinDefault.paused .btnplaybig:after, .wp-player .npp-container.skinDefault .btnplaybig:after, .wp-player .npp-container.skinMobile.paused.visible .btnplaybig:after, .wp-player .npp-container.skinMobile.paused .btnplaybig:after {
  content: "";
  border-top: 16px solid #0000;
  border-bottom: 16px solid #0000;
  border-left: 22px solid #fff;
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translate(-50%, -50%);
}

@media screen and (width <= 768px) {
  .wp-player .npp-container.skinDefault.paused .btnplaybig:after, .wp-player .npp-container.skinDefault .btnplaybig:after, .wp-player .npp-container.skinMobile.paused.visible .btnplaybig:after, .wp-player .npp-container.skinMobile.paused .btnplaybig:after {
    border-top: 12px solid #0000;
    border-bottom: 12px solid #0000;
    border-left: 16px solid #fff;
  }
}

.wp-player .npp-container.skinDefault.paused .btnplaybig:hover, .wp-player .npp-container.skinDefault .btnplaybig:hover, .wp-player .npp-container.skinMobile.paused.visible .btnplaybig:hover, .wp-player .npp-container.skinMobile.paused .btnplaybig:hover {
  background: #000000b3 !important;
}

.wp-player .npp-container.skinMobile.paused.visible .btnplaybig, .wp-player .npp-container.skinMobile.paused .btnplaybig {
  width: 80px !important;
  height: 80px !important;
}

.wp-player .npp-container.skinDefault.playing .btnplaybig, .wp-player .npp-container.skinMobile.playing .btnplaybig {
  background-size: contain;
  border-radius: 100%;
  opacity: 1 !important;
  background: #00000080 !important;
  border: 4px solid #fff !important;
  width: 80px !important;
  height: 80px !important;
}

@media screen and (width <= 768px) {
  .wp-player .npp-container.skinDefault.playing .btnplaybig, .wp-player .npp-container.skinMobile.playing .btnplaybig {
    width: 80px !important;
    height: 80px !important;
  }
}

.wp-player .npp-container.skinDefault.playing .btnplaybig:after, .wp-player .npp-container.skinMobile.playing .btnplaybig:after {
  content: "";
  border: unset;
  background-image: linear-gradient(to right, #fff 4px, #0000 4px 14px, #fff 14px 18px);
  width: 18px;
  height: 24px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wp-player .npp-container.skinDefault.paused .wp-player__video-container, .wp-player .npp-container.skinMobile.paused .wp-player__video-container {
  position: absolute;
  top: 0;
}

.wp-player .npp-container.skinDefault .bottom .seek .seekcont .progress {
  background: var(--brand-color) !important;
}

.owl-carousel {
  -webkit-tap-highlight-color: transparent;
  z-index: 1;
  width: 100%;
  display: none;
  position: relative;
}

@media screen and (width <= 980px) {
  .owl-carousel[data-type="1"] .owl-item:not(.center) img {
    border-radius: 0;
  }

  .owl-carousel[data-type="1"] .owl-nav {
    top: 14vw;
  }
}

@media screen and (width <= 768px) {
  .owl-carousel[data-type="1"] .owl-nav {
    top: 18.5vw;
  }
}

.owl-carousel .owl-stage {
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  position: relative;
}

.owl-carousel .owl-stage:after {
  content: ".";
  clear: both;
  visibility: hidden;
  height: 0;
  line-height: 0;
  display: block;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-wrapper, .owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  min-height: 1px;
  position: relative;
}

.owl-carousel .owl-item img {
  width: 100%;
  display: block;
}

.owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav.disabled {
  display: flex;
}

.owl-prev, .owl-next, .owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  -khtml-user-select: none;
}

.owl-prev, .owl-next, .owl-dot {
  color: inherit;
  font: inherit;
  background: none;
  border: none;
  padding: 0 !important;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.no-js .owl-carousel {
  display: block;
}

.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

.owl-height {
  transition: height .5s ease-in-out;
}

.owl-carousel .owl-stage-outer {
  padding-bottom: 10px;
}

.owl__img_wrapper {
  aspect-ratio: 7.8 / 5;
  margin-top: 10%;
  margin-bottom: 10%;
}

.owl__img_wrapper img {
  aspect-ratio: 7.8 / 5;
  object-fit: cover;
  width: 100%;
  max-width: 100%;
}

[data-type="2"] .owl__img_wrapper {
  aspect-ratio: 4.4 / 6;
  margin-bottom: 21%;
}

[data-type="2"] .owl__img_wrapper img {
  aspect-ratio: 4.4 / 6;
}

.owl-item .item .owl__img_wrapper img {
  transition: all .5s;
  transform: scale(1);
}

.owl-item.center .owl__img_wrapper img {
  transform: scale(2);
}

@media screen and (width <= 768px) {
  .owl-item.center .owl__img_wrapper img {
    transform: scale(1.7);
  }
}

.owl-carousel .owl-item {
  filter: brightness(.5);
}

.owl-carousel .owl-item.active.center {
  z-index: 2;
  filter: brightness();
}

.owl-carousel .owl-item.active.center .owl__caption {
  opacity: 1;
  width: 35vw;
  position: relative;
  bottom: -100px;
  left: -125px;
}

@media screen and (width <= 980px) {
  .owl-carousel .owl-item.active.center .owl__caption {
    bottom: -10vw;
    left: -10vw;
  }
}

@media screen and (width <= 768px) {
  .owl-carousel .owl-item.active.center .owl__caption {
    width: 65vw;
    left: 45%;
    transform: translateX(-50%);
  }
}

.active.center .owl__img-wrapper {
  position: relative;
}

.owl__caption {
  opacity: 0;
  transform: translateX(-10%);
}

@media screen and (width <= 1640px) {
  .owl__caption {
    transform: translateX(-12%);
  }
}

@media screen and (width <= 768px) {
  .owl__caption {
    margin-left: 0;
    transform: translateX(0);
  }
}

.owl-dots {
  display: none;
}

.owl-nav {
  justify-content: space-between;
  width: 842px;
  max-width: 95vw;
  height: 0;
  margin: 0 auto;
  display: flex;
  position: absolute;
  top: 170px;
  left: 0;
  right: 0;
}

@media screen and (width <= 768px) {
  .owl-nav {
    width: 85vw;
    top: 20vw;
  }
}

[data-type="2"] .owl-nav {
  width: 660px;
  top: 275px;
}

@media screen and (width <= 980px) {
  [data-type="2"] .owl-nav {
    width: 75vw;
    top: 29vw;
  }
}

@media screen and (width <= 768px) {
  [data-type="2"] .owl-nav {
    width: 75vw;
    top: 40vw;
  }
}

.owl-prev {
  width: 88px;
  height: 88px;
  position: relative;
  top: -35px;
}

@media screen and (width <= 768px) {
  .owl-prev {
    width: 60px;
    height: 60px;
    top: -30px;
  }
}

.owl-prev span {
  text-indent: -200px;
  background: #00000080 url("http://singlepage-wielkamalakoza.wpcdn.pl/img/arr.svg") center no-repeat;
  border: 4px solid #fff;
  border-radius: 50%;
  width: 88px;
  height: 88px;
  display: block;
  overflow: hidden;
  transform: rotate(180deg);
}

@media screen and (width <= 768px) {
  .owl-prev span {
    background-size: 18px;
    width: 60px;
    height: 60px;
  }
}

.owl-prev span:hover {
  background: #ffffffbf url("https://singlepage-smerfy.wpcdn.pl/img/arr-hover.svg") center no-repeat;
  border: 3px solid #000;
}

@media screen and (width <= 768px) {
  .owl-prev span:hover {
    background-size: 18px;
  }
}

.owl-next {
  width: 88px;
  height: 88px;
  position: relative;
  top: -35px;
}

@media screen and (width <= 768px) {
  .owl-next {
    width: 60px;
    height: 60px;
    top: -30px;
  }
}

.owl-next span {
  text-indent: -200px;
  background: #00000080 url("http://singlepage-wielkamalakoza.wpcdn.pl/img/arr.svg") center no-repeat;
  border: 4px solid #fff;
  border-radius: 50%;
  width: 88px;
  height: 88px;
  display: block;
  overflow: hidden;
}

@media screen and (width <= 768px) {
  .owl-next span {
    background-size: 18px;
    width: 60px;
    height: 60px;
  }
}

.owl-next span:hover {
  color: #000;
  background: #ffffffbf url("https://singlepage-smerfy.wpcdn.pl/img/arr-hover.svg") center no-repeat;
  border: 3px solid #000;
}

@media screen and (width <= 768px) {
  .owl-next span:hover {
    background-size: 18px;
  }

  [data-type="2"] .owl-item.center .owl__img_wrapper img {
    transform: scale(1.5);
  }
}

.widget__wrapper {
  width: 100%;
  overflow: hidden;
}

@media screen and (width <= 768px) {
  .widget__wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}

.widget__wrapper.__wide {
  z-index: 1;
  width: calc(100% + 300px);
  position: relative;
  transform: translateX(-150px);
}

@media screen and (width <= 980px) {
  .widget__wrapper.__wide {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}

.widget__wrapper.__wider {
  z-index: 1;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (width <= 768px) {
  .widget__wrapper.__wider .widget__photos img {
    margin: 10px 0;
  }
}

.widget__wideo {
  padding-bottom: 24px;
}

@media screen and (width <= 768px) {
  .widget__wideo .widget__figcaption {
    padding-left: 40px;
  }
}

.widget__slider {
  padding: 150px 0;
  position: relative;
}

.widget__slider [data-type="2"] {
  padding: 50px 0;
}

.widget__slider [data-type="2"] .owl-item.active.center .owl__caption {
  bottom: -150px;
}

@media screen and (width <= 980px) {
  .widget__slider [data-type="2"] .owl-item.active.center .owl__caption {
    bottom: -14.5vw;
  }
}

@media screen and (width <= 768px) {
  .widget__slider [data-type="2"] .owl-item.active.center .owl__caption {
    width: 65vw;
    bottom: -6.5vw;
    left: 55%;
    transform: translateX(-50%);
  }
}

.widget__slider:before {
  clear: both;
  content: none;
  color: red;
  text-align: center;
  z-index: 10;
  width: 100%;
  font-size: 180%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (width <= 768px) {
  .widget__slider {
    padding: 100px 0;
  }
}

@media screen and (width <= 640px) {
  .widget__slider {
    padding: 35px 0;
  }
}

.widget__photos {
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 24px;
  display: flex;
}

@media screen and (width <= 768px) {
  .widget__photos {
    gap: 8px;
    padding: 0 40px 24px;
  }
}

.widget__photos img {
  order: 0;
  width: calc(50% - 10px);
  margin-right: 10px;
  transition: border-radius .5s cubic-bezier(.165, .84, .44, 1);
  display: block;
}

@media screen and (width <= 768px) {
  .widget__photos img {
    width: 100%;
    margin-right: 0;
  }
}

.widget__photos img:nth-of-type(2) {
  order: 1;
  margin-left: 10px;
  margin-right: 0;
}

@media screen and (width <= 768px) {
  .widget__photos img:nth-of-type(2) {
    order: 2;
    margin-left: 0;
  }
}

.widget__photos img:first-of-type:last-of-type {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.widget__photos img:first-of-type:last-of-type + .widget__figcaption {
  width: 100%;
  max-width: 900px;
  margin: 0 40px;
  padding-left: 0;
  padding-right: 0;
}

.widget__photos .widget__figcaption {
  box-sizing: border-box;
  order: 2;
  width: 450px;
  max-width: 50%;
  padding-top: 10px;
  padding-right: 10px;
}

@media screen and (width <= 768px) {
  .widget__photos .widget__figcaption {
    order: 1;
    width: 100%;
    max-width: 100%;
    padding-top: 0;
    padding-right: 0;
  }
}

.widget__photos .widget__figcaption:last-of-type {
  padding-left: 10px;
  padding-right: 0;
}

@media screen and (width <= 768px) {
  .widget__photos .widget__figcaption:last-of-type {
    order: 3;
    padding-left: 0;
  }
}

.widget__wrapper:not(__wide):not(__wider) img:first-of-type:last-of-type + .widget__figcaption {
  margin: 0 auto;
}

@media screen and (width <= 768px) {
  .single_wide .widget__photos {
    padding: 0 0 24px;
  }

  .single_wide .widget__photos .widget__figcaption {
    padding-left: 40px !important;
  }
}

:root {
  --gutter: 20px;
}

.cdc {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}

.cdc--products {
  flex-wrap: wrap;
  justify-content: space-between;
  display: flex;
}

@media screen and (width <= 640px) {
  .cdc--products {
    flex-direction: column;
  }
}

.cdc--product {
  border: 3px solid var(--brand-color-accent);
  width: calc((100% - var(--gutter)) / 2);
  box-sizing: border-box;
  background-color: #fff;
  padding-top: 20px;
  padding-bottom: 25px;
  position: relative;
  margin-top: 3% !important;
  margin-bottom: 3% !important;
}

@media screen and (width <= 640px) {
  .cdc--product {
    width: 100%;
    margin: 24px auto;
  }
}

.cdc--product:nth-last-of-type(3), .cdc--product:nth-last-of-type(3) + .cdc--product, .cdc--product:nth-last-of-type(3) + .cdc--product + .cdc--product {
  width: calc((100% - var(--gutter)) / 3);
}

@media screen and (width <= 640px) {
  .cdc--product:nth-last-of-type(3), .cdc--product:nth-last-of-type(3) + .cdc--product, .cdc--product:nth-last-of-type(3) + .cdc--product + .cdc--product {
    width: 80%;
  }
}

@media screen and (width <= 380px) {
  .cdc--product:nth-last-of-type(3), .cdc--product:nth-last-of-type(3) + .cdc--product, .cdc--product:nth-last-of-type(3) + .cdc--product + .cdc--product {
    width: 95%;
  }
}

.cdc--details {
  box-sizing: border-box;
  flex-direction: column;
  place-content: center;
  padding: 0 20px;
  display: flex;
}

.cdc--button, article a.cdc--button, .section:nth-of-type(2n) a.cdc--button, .section:nth-of-type(2n-1) a.cdc--button {
  font-size: 14px;
  font-weight: bold;
  font-family: var(--font-main);
  background-color: var(--brand-color-accent);
  border: 3px solid var(--brand-color-accent);
  letter-spacing: 2px;
  color: #fff;
  order: 3;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 40px;
  margin: 15px auto 0;
  text-decoration: none;
  transition: background-color .25s;
  display: flex;
  bottom: -6px;
}

.cdc--button:hover, article a.cdc--button:hover, .section:nth-of-type(2n) a.cdc--button:hover, .section:nth-of-type(2n-1) a.cdc--button:hover {
  background-color: var(--brand-color-hover);
  color: var(--brand-color-accent);
  text-decoration: none;
}

.cdc--button span {
  text-transform: uppercase;
}

.cdc--price {
  text-align: center;
  padding: 5px 0;
  font-weight: 700;
}

.cdc--old-price {
  color: red;
  margin: 0 2px;
  font-size: 110%;
  text-decoration: line-through;
}

.cdc--current-price {
  color: #208842;
  margin: 0 2px;
  font-size: 130%;
}

@media only screen and (width <= 320px) {
  .cdc--product {
    width: 100%;
  }
}

.cdc--photo-wrapper {
  text-align: center;
  width: 100%;
  height: 250px;
  position: relative;
}

.cdc--photo {
  object-fit: cover;
  max-width: calc(100% - 40px);
  height: 100%;
  margin: 0 auto;
  display: block;
}

.cdc--title, article .cdc--title, .section:nth-of-type(2n-1) .cdc--title {
  line-height: 1.15;
  font-family: var(--font-main);
  color: #010101;
  text-align: center;
  order: 1;
  place-content: flex-start;
  padding: 12px 0;
  font-size: 22px;
  font-weight: 700;
  display: flex;
}

.cdc--title a, article .cdc--title a, .section:nth-of-type(2n-1) .cdc--title a {
  color: #010101;
  text-decoration: none;
}

.cdc--lowest-price {
  color: #b7b7b7;
  font-size: 11px;
  font-weight: 100;
  text-decoration: none;
}

.cdc--subtitle {
  text-align: center;
  color: #010101;
  font-size: 20px;
  font-weight: 400;
  font-family: var(--font-main);
  order: 2;
  place-content: flex-start;
  margin-bottom: 0;
  padding-bottom: 12px;
  line-height: 1.3;
  display: flex;
  position: relative;
}

.cdc--external {
  flex-direction: column;
  order: 2;
  place-content: center;
  align-self: center;
  align-items: center;
  width: 100%;
  padding-bottom: 12px;
  text-decoration: none;
  display: flex;
}

.cdc--external > span {
  color: #010101;
  text-transform: uppercase;
  font-size: 12px;
}

.cdc--external .cdc--external-img {
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 220px;
  height: auto;
  max-height: 40px;
  margin: 0 10px;
  display: flex;
  position: relative;
}

.cdc--external .cdc--external-img img {
  object-fit: contain;
  max-width: 90%;
  max-height: 40px;
  margin: 0 auto;
  display: block;
}

.cdc-note {
  margin-top: -20px;
  font-size: 12px;
  display: block;
}

.section-cdc {
  width: 100%;
  max-width: 900px;
  margin: 30px auto;
}

.section-cdc--wrapper {
  box-sizing: border-box;
  width: 100%;
  font-family: var(--font-main);
  color: var(--text-black);
  text-align: center;
  flex-flow: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
  margin: 30px auto;
  padding: 30px;
  display: flex;
}

@media screen and (width <= 980px) {
  .section-cdc--wrapper {
    width: 100%;
    padding: unset;
    flex-direction: column;
  }
}

.section-cdc--box-left, .section-cdc--box-right {
  box-sizing: border-box;
  border: 3px solid var(--brand-color-accent);
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding: 20px;
  display: flex;
}

.section-cdc--box-left p, .section-cdc--box-right p {
  padding: unset;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 600;
  line-height: 140%;
}

@media screen and (width <= 768px) {
  .section-cdc--box-left p, .section-cdc--box-right p {
    font-size: 20px;
  }
}

.section-cdc--box-left img, .section-cdc--box-right img {
  box-sizing: border-box;
  max-width: 100%;
  height: auto;
  display: block;
}

.section-cdc--box-left .button, .section-cdc--box-right .button {
  background-color: var(--brand-color-accent);
  cursor: pointer;
  width: fit-content;
  height: 50px;
  color: var(--text-white);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  padding: 5px 30px;
  font-size: 14px;
  font-weight: 900;
  line-height: 22px;
  text-decoration: none;
  transition: background-color .3s;
  display: flex;
}

@media screen and (width <= 768px) {
  .section-cdc--box-left .button, .section-cdc--box-right .button {
    min-width: 220px;
  }
}

.section-cdc--box-left .button:hover, .section-cdc--box-right .button:hover {
  background-color: var(--brand-color-hover);
  border: 3px solid var(--brand-color-accent);
  color: var(--text);
}

.soft {
  font-family: var(--font-main-soft);
}

.soft .article__section {
  padding-top: 0;
  padding-bottom: 80px;
}

.soft .article__section:before {
  content: "";
  z-index: 2;
  background-color: #fff;
  border-radius: 50px 50px 0 0;
  width: 100%;
  height: 25px;
  position: absolute;
  top: -25px;
}

.soft article h1, .soft .intro__title {
  font-family: var(--font-headers-soft);
}

.soft .intro__title h2 {
  font-weight: 400;
}

.soft .article__text_column {
  padding-top: 0;
}

.soft .intro__author-footnote {
  bottom: 25px;
}

.soft .article__quote header:before {
  content: url("https://singlepage-softsharp-base-2024.wpcdn.pl/img/cytat.svg");
  background-color: #fff;
  width: 48px;
  height: 39px;
  padding-right: 20px;
  display: inline-block;
  position: relative;
}

.soft .article__photo img, .soft .widget__photos img, .soft .owl-carousel .owl-item img, .soft .widget__wrapper.__wider .widget__photos img, .soft .cdc--product, .soft .cdc--product .cdc--button, .soft .wp-player .npp-container, .soft .footer__btn {
  border-radius: 30px;
}

.soft article:nth-of-type(odd) .article__section:before {
  background-color: var(--brand-color);
}

.soft article:nth-of-type(odd) .article__quote header:before {
  content: url("https://singlepage-softsharp-base-2024.wpcdn.pl/img/cytat-white.svg");
  background-color: var(--brand-color);
}

.soft .owl-carousel .owl-item img {
  border-radius: 30px;
}
/*# sourceMappingURL=styles.min.css.map */
