/*MCWebDesign classes Pasieka Koniczynak 1.0*/
/*Global variables*/
:root,
::backdrop {
  /*Global breaking points*/
  /*
  Breakpoint 	Class infix 	Dimensions
  X-Small 	None 	<576px
  Small 	sm 	≥576px
  Medium 	md 	≥768px
  Large 	lg 	≥992px
  Content of 50-50 proportions break at this point.
  Extra large 	xl 	≥1200px
  Extra extra large 	xxl 	≥1400px
  */
  --sm: 576px;
  --md: 786px;
  --lg: 992px;
  --xl: 1200px;
  --xxl: 1400px;

  /*Global width max-width etc.*/
  --max-width: 1920px;
  /*All meaningful content of the page fits inside this width but sliders*/

  --content-width: 94.75%;
  --inner-content: 1440px;
  /*content-width: 2rem margin on 1920px screen. */

  /*Global radius*/
  --border-radius: 1rem;
  --button-border-rad: 3rem;

  /*Global gap*/
  --standard-gap: 1rem;

  /*pasieka colors*/
  --tan-1: #826548;
  --tan-2: #d88841;
  --tan-3: #f2bc8d;
  --tan-4: #ffdeab;
  --tan-5: #ffefd6;
  --tan-6: #faf2f2;
  --tan-7: #d8cccc;
  --tan-8: #f2e8de;
  --tan-9: #a65132;

  --violet: #9566c6;
  --red: #c4292d;
  --green-1: #02735f;
  --green-2: #03a689;
  --orange-1: #ffaf35;
  --orange-2: #ffaf35;

  /*Global colors*/
  /*
  --bg-icon: #F9FBFC;
  --bg-icon-active: #050B20;
  --bg-blue: #405FF2;
  --bg-green: #3D923A;
  --bg-google: #D93025;
  --bg-fb: #1967D2;
  */
  --bg: white;
  /*
  --bg-1: #F9FBFC;
  --bg-2: #EEF1FB;
  --bg-3: #E9F2FF;
  --bg-4: #FFE9F3;
  --bg-tan: #735043;
  --bg-accent: #F5F7FE;
  --bg-alarm: #9F3939;
  --bg-button-w: white;
  --bg-button-d: #050B20;
  --border-button: white;
  */
  --title: black;
  --text: black;
  /*
  --title-light: white;
  --text-light: white;
  --accent-text: #405FF2;
  --border: #050B20;
  --light-border: #E1E1E1;
  --brand-main-color: violet;
  --hr-line: #F2E8DE;
  --bg-icon-1: #6C6C83;
  --bg-footer-light: white;
  --bg-footer-dark: #050B20;
*/

  /*fonts*/
  --paragraph-size: 16px;
  --paragraph-weight: 400;
  --mont: "Montserrat", sans-serif;
}

/* Dark theme */
/*
@media (prefers-color-scheme: dark) {
  :root,
  ::backdrop {
    color-scheme: dark;
  }
}
*/
/* Reset box-sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
  /*border: 1px solid red;*/
}

/* Reset default appearance */
textarea,
select,
input,
progress {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

html {
  /* Set the font globally */
  font-family: "Poppins", sans-serif;
  /*var(--sans-font);*/
  font-style: normal;
  scroll-behavior: smooth;
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  color: var(--text);
  /*background-color: var(--bg);*/
  font-size: 1.15rem;
  line-height: 1.6;
}

/* Make the header bg full width, but the content inline with body */
body > header {
  padding: 0;
}

hr {
  border: 0;
  border-top: 1px solid var(--tan-8);
}

img {
  display: block;
  /*max-width: 100%;*/
}

/* Format headers */
h1 {
  font-size: var(--paragraph-size);
}

h2 {
  font-size: var(--paragraph-size);
}

h3 {
  font-size: var(--paragraph-size);
}

h4 {
  font-size: var(--paragraph-size);
}

h5 {
  font-size: var(--paragraph-size);
}

h6 {
  font-size: var(--paragraph-size);
}

p {
  font-size: var(--paragraph-size);
  margin: 1.5rem 0;
}

/* Prevent long strings from overflowing container */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* Fix line height when title wraps */
h1,
h2,
h3 {
  line-height: 1.1;
}

p + p,
li + li {
  margin-top: 1rem;
}

li {
  list-style-type: none;
}

p {
  color: var(--text);
  font-weight: var(--paragraph-weight);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* */
  color: var(--title);
}

/* Reduce header size on mobile */

/*colors bg gradients etc.*/

/*bg*/

.bg-white {
  background: white;
}

.bg-transparent {
  background: transparent;
}

/*
.shadow-3 {
  box-shadow: 0px 10px 40px 0px #0000000D;
}
*/
.red {
  background-color: red !important;
}

.mag {
  background: magenta !important;
}

/*bg end*/
.color-brand {
  color: var(--brand-main-color);
}

/*end colors*/
/*padding and spacers*/

.pad {
  padding: var(--standard-gap);
}

.pad05 {
  padding: 0.5rem;
}

.pad2 {
  padding: 2rem;
}

.nomargin {
  margin: 0 !important;
}

.mar {
  margin: var(--standard-gap);
}

.spacer-96 {
  height: 96px;
}

.spacer-u {
  height: 3rem;
}

.spacer {
  height: 3rem;
}

@media only screen and (max-width: 786px) {
  .spacer {
    height: 2rem;
  }
}

@media screen and (max-width: 576px) {
  .spacer {
    height: 1rem;
  }
}

.standard-padding {
  padding: var(--standard-gap);
}

.bottom-m-1 {
  margin-bottom: var(--standard-gap);
}

.left-padding {
  padding-left: var(--standard-gap);
}

.left-padding-3 {
  padding-left: calc(3 * var(--standard-gap));
}

.right-padding-3 {
  padding-right: calc(3 * var(--standard-gap));
}

.left-padding-4 {
  padding-left: calc(4 * var(--standard-gap));
}

.left-padding-5 {
  padding-left: calc(5 * var(--standard-gap));
}

@media only screen and (max-width: 992px) {
  .left-padding,
  .left-padding-3,
  .left-padding-4,
  .left-padding-5,
  .right-padding-3 {
    padding: 0px;
  }

  .padding-992-1 {
    padding: 0 var(--standard-gap) 0 var(--standard-gap);
  }
}

/*end padding*/

/*FONTS, text size and properties*/

/*weight*/

.weight-300 {
  font-weight: 300;
}

.weight-400 {
  font-weight: 400;
}

.weight-500 {
  font-weight: 500;
}

.weight-600 {
  font-weight: 600;
}

.weight-700 {
  font-weight: 700;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

/*font-size*/

.ph0 {
  font-size: 4.5rem;
}

.ph1 {
  font-size: 3rem;
  margin-top: 3rem;
}

.ph2 {
  font-size: 2.6rem;
  margin-top: 3rem;
}

.ph3 {
  font-size: 2.2rem;
  margin-top: 3rem;
}

.ph4 {
  font-size: 1.44rem;
}

.ph5 {
  font-size: 1.25rem;
}

.ph6 {
  font-size: 0.96rem;
}

.ph0,
.ph1,
.ph2,
.ph3,
.ph4,
.ph5,
.ph6 {
  overflow-wrap: break-word;
}

.ph0,
.ph1,
.ph2,
.ph3 {
  line-height: 1.1;
  font-weight: 400;
}

/* Reduce phx size on mobile */
@media only screen and (max-width: 786px) {
  .ph0 {
    font-size: 3rem;
  }

  .ph1 {
    font-size: 2.5rem;
  }

  .ph2 {
    font-size: 2.1rem;
  }

  .ph3 {
    font-size: 1.75rem;
  }

  .ph4 {
    font-size: 1.4rem;
  }
}

.p-26 {
  font-size: 2rem;
  line-height: 3rem;
}

.p-22 {
  font-size: 1.375rem;
}

.slide-placeholder {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.31) 0%,
    rgba(0, 0, 0, 0.78) 100%
  );
}

.slide-title {
  font-size: 6rem;
  line-height: 6rem;
}

@media only screen and (max-width: 1200px) {
  .slide-title {
    font-size: 6rem;
    line-height: 5rem;
  }
}

@media only screen and (max-width: 992px) {
  .slide-title {
    font-size: 5rem;
    line-height: 6rem;
  }

  .slide-order-992-1 {
    order: 1;
  }

  .p-22 {
    font-size: 1.2rem;
  }

  .p-26 {
    font-size: 1.5rem;
    line-height: 2.8rem;
  }
}

@media only screen and (max-width: 786px) {
  .slide-title {
    font-size: 4rem;
    line-height: 4rem;
  }

  .p-22 {
    font-size: 1.1rem;
  }

  .p-26 {
    font-size: 1.3rem;
    line-height: 2.2rem;
  }
}

@media only screen and (max-width: 576px) {
  .slide-title {
    font-size: 3.5rem;
    line-height: 3.5rem;
  }

  .p-22 {
    font-size: 1rem;
  }

  .p-26 {
    font-size: 1.2rem;
    line-height: 2rem;
  }
}

.space-nowrap {
  white-space: nowrap;
}

.overflow {
  overflow: visible;
}

.no-overflow {
  overflow: hidden;
}

/*text-color*/

.color-white {
  color: white;
}

.color-tan {
  color: #684421;
}

.color-tan-7 {
  color: var(--tan-7);
}

.color-v {
  color: var(--violet);
}

.color-green-1 {
  color: var(--green-1);
}

.accent {
  color: var(--accent-text) !important;
}

.gray-300 {
  color: rgb(209 213 219);
}

.gray-500 {
  color: rgb(107 114 128);
}

/*text utensils*/

.mont {
  font-family: var(--mont);
}

.underline {
  text-decoration: underline;
}

.uppercase {
  text-transform: uppercase;
}

.through {
  text-decoration: line-through;
}

.text-nodecor {
  text-decoration: none !important;
}

/*
.outlined {
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #5E5F63;
}
*/
/*
.vert-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
*/

/*FONT end*/

/*button section*/

.pointer {
  cursor: pointer;
}

.button,
.button-w,
.button-d,
.button-green-1,
.button-green-2,
.button-orange-1,
.button-text {
  text-align: center !important;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  border-radius: var(--button-border-rad);
}

.button-text {
  color: var(--orange-1);
}

.button-d {
  padding: 0.8em 2rem 0.8em 2rem;
}

/*
.button-w,
.button-green-1, 
.button-green-2 {
  padding: 1em 2rem 1em 2rem;
}
*/
.bfat {
  padding: 1.2em 3rem 1.2em 3rem;
}

.bmid {
  padding: 1em 3rem 1em 3rem;
}

.bmini {
  font-size: 14px;
  padding: 0.5em 1rem 0.5em 1rem;
}

@media screen and (max-width: 576px) {
  .bfat {
    padding: 0.9em 1rem 0.9em 1rem;
  }

  .bmid {
    padding: 0.6em 1rem 0.6em 1rem;
  }

  .bmini {
    font-size: 14px;
    padding: 0.2em 0.5rem 0.2em 0.5rem;
  }
}

.button-w {
  background: white;
  border: 3px solid var(--orange-1);
  transition: 0.3s all ease-in-out;
  color: #000;
  text-decoration: none;
}

.button-w {
  background-image: linear-gradient(
    to left,
    #fff 50%,
    var(--green-1) 50%
  ); /* Gradient biały/zielony */
  background-size: 200% 100%; /* Powiększenie tła dla efektu przesuwania */
  background-position: right; /* Początkowa pozycja - przycisk jest biały */
  transition: background-position 0.4s ease, color 0.4s ease; /* Płynne przejście koloru i tła */
}

.button-w:hover {
  background-position: left; /* Przesunięcie tła w lewo, by zielony kolor pokrył przycisk */
  color: #fff; /* Zmiana koloru tekstu na biały */
}

.button-green-1 {
  color: white;
  background: var(--green-1);
  border: 3px solid #02735f;
}

.button-green-2 {
  color: white;
  background: var(--green-2);
}

.button-orange-1 {
  color: white !important;
  background: var(--orange-1);
}

/*
.button,
.button-w,
.button-d,
.button-dl,
.button-t,
.button-p,
.button-tw,
.button-e {
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  border-radius: var(--button-border-rad);
}

.button-google,
.button-facebook {
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  border-radius: var(--button-border-rad);
}

.button,
.button-w,
.button-d,
.button-dl,
.button-t,
.button-c,
.button-tw,
.button-google,
.button-facebook,
.button-e {
  padding: 1.3em 2rem 1em 2rem;
}

.button-404 {
  padding: 1em 2rem 0.8em 2rem;
}

.button {
  background: var(--bg-button);
  color: white;
}

.button-w {
  background: var(--bg-button-w);
  color: var(--text);
}

.button-d {
  background: var(--bg-button-d);
  color: white;
}

.button-dl {
  background: var(--bg-blue);
  color: white;
}

.button-t {
  background: transparent;
  color: var(--bg-blue);
  border: 2px solid var(--border-button);
  border-radius: var(--button-border-rad);
}

.button-tw {
  background: transparent;
  color: white;
  border: 2px solid var(--border-button);
  border-radius: var(--button-border-rad);
}

.button-google {
  color: var(--bg-google) !important;
  border: 1px solid var(--bg-google);
}

.button-facebook {
  color: var(--bg-fb) !important;
  border: 1px solid var(--bg-fb);
}

.button-404 {
  background: transparent;
  color: var(--bg-blue);
  border: 2px solid var(--bg-blue);
  border-radius: var(--button-border-rad);
}

.button-p {
  background: transparent;
  color: var(--text);
}

.button-c {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--light-border);
  border-radius: var(--button-border-rad);
}

.button-c:hover {
  border-color: var(--border);
}

.small-arrow {
  width: 1rem;
}


.button-round-l,
.button-round-r {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--border-button);
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  opacity: 0.7;
  transition: 0.1s ease-in-out;
}

.button-round-r:hover,
.tr-5-r:hover {
  transform: translateX(5px);
  opacity: 1;
}

.button-round-l:hover {
  transform: translateX(-5px);
  opacity: 1;
}

.button:hover .button-arrow {
  transform: translateX(3px);
  transition: 0.1s ease-in-out;
}

.button-b:hover .button-arrow {
  transform: translateX(3px);
  transition: 0.1s ease-in-out;
}

.button-u:hover .button-arrow {
  transform: translateX(3px);
  transition: 0.1s ease-in-out;
}

.button-w-s:hover .button-arrow {
  transform: translateX(3px);
  transition: 0.1s ease-in-out;
}
*/
/*
.ne-arrow-container:hover .ne-arrow {
  transform: translate(1rem, -1rem);
  opacity: 0;
  transition: 0.1s ease-in-out;
}*/
/*
.button-b {
  font-size: 1rem;
  margin-top: calc(0.5*var(--standard-gap));
}
*/
.cs {
  height: 0.4rem;
}

/*end*/

/*border section*/

.circ {
  border-radius: 50%;
}

.round {
  border-radius: var(--border-radius);
}

/*end*/

/*static containers*/

.w-10 {
  width: 10%;
}

.w-25 {
  width: 25%;
}

.w-30 {
  width: 30%;
}

.w-33 {
  width: 33%;
}

.w-50 {
  width: 50%;
}

.w-70 {
  width: 70%;
}
*/ .w-80 {
  width: 80%;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

/*dynamic containers*/

.w992-20-100 {
  width: 20%;
}

.w992-30-100 {
  width: 30%;
}

.w992-33-100 {
  width: 33.3%;
}

.w992-40-100 {
  width: 40%;
}

.w992-50-100 {
  width: 50%;
}

.w992-60-100 {
  width: 60%;
}

.w992-70-100 {
  width: 70%;
}

.w992-80-100 {
  width: 80%;
}

@media screen and (max-width: 992px) {
  .w992-20-100,
  .w992-30-100,
  .w992-33-100,
  .w992-40-100,
  .w992-50-100,
  .w992-60-100,
  .w992-70-100,
  .w992-80-100 {
    width: 100%;
  }
}

/*end*/

/*FLEX*/

.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex-no {
  display: flex;
  flex-wrap: nowrap;
}

.col {
  flex-direction: column;
  flex-wrap: nowrap;
}

/*justify*/

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-around {
  justify-content: space-around;
}

.justify-between {
  justify-content: space-between;
}

/*align items*/

.align-start {
  align-items: flex-start;
}

.align-center {
  align-items: center;
}

.mc_align_center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.align-stretch {
  align-items: stretch;
}

.align-between {
  align-items: space-between;
}

.align-baseline {
  align-items: baseline;
}

/*align-content*/

.content-start {
  align-content: flex-start;
}

.content-center {
  align-content: center;
}

.content-end {
  align-content: flex-end;
}

/*align-self*/

.self-start {
  justify-self: flex-start;
}

.self-end {
  justify-self: flex-end;
}

.self-center {
  justify-self: center;
}

/*dynamic part*/

.justify-between-center-992 {
  justify-content: space-between;
}

.justify-around-center-992 {
  justify-content: space-around;
}

.justify-end-start-992 {
  justify-content: flex-end;
}

.justify-end-center-992 {
  justify-content: flex-end;
}

.align-center-end--786 {
  align-items: flex-end;
}

.align-start-center-786 {
  align-items: flex-start;
}

@media screen and (max-width: 786px) {
  .align-center-end--786 {
    align-items: center;
  }
  .align-start-center-786 {
    align-items: center;
  }
}

@media screen and (max-width: 992px) {
  .justify-between-center-992 {
    justify-content: center;
  }

  .justify-around-center-992 {
    justify-content: center;
  }

  .justify-end-start-992 {
    justify-content: flex-start;
  }

  .justify-center-992 {
    justify-content: center;
  }

  .justify-end-center-992 {
    justify-content: center;
  }
}

/*gap of flex and grid, basing on --standard-gap*/

.gap2px {
  gap: 2px;
}

.gap01 {
  gap: calc(0.1 * var(--standard-gap));
}

.gap05 {
  gap: calc(0.5 * var(--standard-gap));
}

.gap {
  gap: var(--standard-gap);
}

.gap15 {
  gap: calc(1.5 * var(--standard-gap));
}

.gap2 {
  gap: calc(2 * var(--standard-gap));
}

.gap25 {
  gap: calc(2.5 * var(--standard-gap));
}

/*flex:*/

.grow {
  flex: 1;
}

.shrink {
  flex-shrink: 1;
}

.f992-100 {
  flex: 1;
}

@media screen and (max-width: 992px) {
  .f992-100 {
    flex: 1 1 100%;
  }
}

.reverse {
  flex-wrap: wrap-reverse;
}

/*additional utensils*/

.cont {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*END FLEX*/

/*position*/

.relative {
  position: relative;
  /*width: 100%;
  height: 100%;*/
}

.absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*display*/

@media screen and (max-width: 885px) {
  .display-none-1300 {
    display: none !important;
  }
}

@media screen and (max-width: 786px) {
  .display-none-786 {
    display: none !important;
  }
}

@media screen and (max-width: 576px) {
  .display-none-576 {
    display: none !important;
  }
}

.fit {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cover {
  object-fit: cover;
  object-position: center center;
}

.z-1 {
  z-index: 1;
}

.z-1000 {
  z-index: 1000;
}

/*end*/

/*Universal sections part width*/
.mw {
  /*1920*/
  width: 100%;
  max-width: var(--max-width);
}

.mw-content {
  /*94%*/
  width: 100%;
  max-width: var(--content-width);
}

.mw-inner {
  /*1400*/
  width: 100%;
  max-width: var(--inner-content);
}

/*END*/

/*pasieka class section*/

/*fonts*/

.f-14 {
  font-size: 14px;
}

.f-16 {
  font-size: 16px;
}

.f-20 {
  font-size: 20px;
}

.f-24 {
  font-size: 24px;
}

.color-red {
  color: var(--red);
}

.bar {
  height: 2px;
  background: var(--tan-8);
}

.bar-8D {
  height: 2px;
  background: var(--tan-3);
}

.sq-17 {
  width: 17px;
  height: 17px;
}

.sq-19 {
  width: 19px;
  height: 19px;
}

.sq-21 {
  width: 21px;
  height: 21px;
}

.sq-25 {
  width: 25px;
  height: 25px;
}

.sq-36 {
  width: 2.25rem;
  height: 2.25rem;
}

.sq-40 {
  width: 40px;
  height: 40px;
}

/*page template*/

.sq {
  aspect-ratio: 1 / 1 !important;
}

/*
.product-image-height {
  height: 45%;
}

.product-desc-pad {
  padding: 1rem 2rem 1rem 2rem;
}
*/
/*404*/
.error404 {
  height: 40vh;
}

/*end*/

input[type="checkbox"] {
  appearance: auto;
  background-color: #fff;
  margin: 0;
  width: 1.15em;
  height: 1.15em;
  border: 1px solid var(--light-border);
  border-radius: 0.2em;
  transform: translateY(-0.075em);
}

input[type="checkbox"]::before {
  /* ...existing styles */

  transform-origin: bottom left;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

/*summary*/

details {
  padding: 0.7rem 1rem;
}

summary {
  cursor: pointer;
  font-weight: normal;
  padding: 0.7rem 1rem;
  margin: -0.7rem -1rem;
  word-break: break-all;
}

details[open] > summary + * {
  margin-top: 0;
}

details[open] > summary {
  margin-bottom: 0.5rem;
}

details[open] > :last-child {
  margin-bottom: 0;
}

/*koniec wstawki */

/* Remove the default triangle */

summary {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

/* Create a new custom triangle on the right side */
summary::after {
  height: 40px;
  width: 40px;
  font-size: 2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  content: "+";
  transition: 0.1s;
  background-color: transparent;
  color: var(--text);
  border-radius: 20px;
}

details[open] > summary::after {
  content: "-";
  background-color: transparent;
  color: var(--text);
}

/*end*/

/*swiper*/

/*boxcarSwiper*/
/*
.boxcarSwiper .swiper-wrapper {
  height: 960px;
}

.boxcarSwiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.boxcarSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.boxcarSwiper .slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 40px;
  border-radius: 30px;
  background: white;
}

.boxcarSwiper .swiper-button-next,
.boxcarSwiper .swiper-button-prev {
  position: absolute;
  top: 50%;
  z-index: 1001;
}

@media screen and (max-width: 1700px) {

  .boxcarSwiper .swiper-button-next,
  .boxcarSwiper .swiper-button-prev {
    top: 75%;
  }
}

.boxcarSwiper .slider-nav-lm {
  margin-left: 3.75%;
}

.boxcarSwiper .slider-nav-rm {
  margin-right: 3.75%;
}


.boxcarSwiper .swiper-button-next::after,
.boxcarSwiper .swiper-button-prev::after {
  content: "";
}

.boxcarSwiper .swiper-pagination {
  width: 100% !important;
}

.boxcarSwiper .swiper-pagination-bullet {
  transform: translateY(-50px);
  width: auto;
  height: auto;
  padding: 1rem 1rem 0.5rem 1rem;
  margin: 0rem 2rem 0rem 2rem !important;
  background: none;
  color: white;
  text-align: left;
  opacity: 1;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  cursor: pointer;
  border-radius: 0px;
  border-bottom: 2px solid gray;
  width: 20%;
}

.boxcarSwiper .swiper-pagination-bullet-active {
  color: white;
  font-weight: bold;
  border-color: white;
}

.boxcarSwiper .main-slider-content-pad {
  padding: 0;
}

@media screen and (max-width: 992px) {
  .boxcarSwiper .swiper-pagination-bullet {
    width: 40%;
  }
}

@media screen and (max-width: 576px) {
  .boxcarSwiper .swiper-pagination-bullet {
    width: 80%;
  }
}

@media screen and (max-width: 1450px) {
  .boxcarSwiper .main-slider-content-pad {
    padding: 0 0 0 1rem;
  }
}
*/

/*categorySwiper*/
.swiper {
  width: 100%;
  height: 100%;
}

.category-card-size {
  /*width: 329px;*/
  height: 100%;
}

@media screen and (max-width: 576px) {
  .category-card-size {
    /*width: 100%;*/
    height: 100%;
  }
}

.product-hex-icon {
  width: 220px;
}

.categorySwiper-margin {
  margin-bottom: 4rem;
}

.categorySwiper .swiper-wrapper {
  width: var(--inner-content);
  height: auto;
}

.categorySwiper .product-button-next::after,
.categorySwiper .product-button-prev::after {
  content: "";
}

.categorySwiper .slider-nav {
  display: none;
  z-index: 1000;
  /*display: flex;*/
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  /*border-radius: 30px;*/
  background: transparent;
  /*border: 1px solid var(--border);*/
}

@media screen and (max-width: 576px) {
  .categorySwiper .slider-nav {
    display: flex;
  }
}

.categorySwiper .swiper-slide {
  /*width: 100%;*/
  text-align: center;
  font-size: 18px;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.categorySwiper .main-slider-content-pad {
  padding: 0;
}

.categorySwiper .product-button-next {
  position: absolute;
  bottom: 66%;
  right: 0px;
}

.categorySwiper .product-button-prev {
  position: absolute;
  bottom: 66%;
  left: 0px;
}

.categorySwiper .product-pagination {
  position: absolute;
  bottom: 0px;
  left: 110px;
}

/*end*/

/*productSwiper*/

.product-card-size {
  width: 100%;
  height: 637px;
}

.product-picture {
  width: 100%;
  height: 50%;
}

.product-decription-cont {
  height: 50%;
  padding: 1rem;
}

.productSwiper-margin {
  margin-bottom: 5rem;
}

@media screen and (max-width: 576px) {
  .productSwiper-margin {
    margin-bottom: 3.8rem;
  }
}

.swiperStyle .swiper-wrapper {
  /*width: var(--inner-content);*/
  height: auto;
}

.swiperStyle .team-button-next::after,
.swiperStyle .team-button-prev::after {
  content: "";
}

.swiperStyle .slider-nav {
  display: flex;
  z-index: 1000;
  /*display: flex;*/
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  /*border-radius: 30px;*/
  background: transparent;
  /*border: 1px solid var(--border);*/
}

.swiperStyle .swiper-slide {
  /*width: fit-content;*/
  text-align: center;
  font-size: 18px;
  background: transparent;
  display: flex;
  /*flex-shrink: 100 !important;*/
  justify-content: center;
  align-items: center;
}

.swiperStyle .main-slider-content-pad {
  padding: 4rem;
}

.swiperStyle .team-button-next {
  position: absolute;
  bottom: 46.5%;
  right: 0;
}

.swiperStyle .team-button-prev {
  position: absolute;
  bottom: 46.5%;
  left: 0;
}

.swiperStyle .product-pagination {
  z-index: 1000;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
}

.swiperStyle .swiper-pagination-bullet {
  background-color: var(--orange-1);
  display: inline-block;
  width: 21px;
  height: 21px;
}

.swiperStyle .swiper-pagination-bullet-active {
  background-color: var(--green-2);
  display: inline-block;
  width: 21px;
  height: 21px;
}

@media screen and (max-width: 576px) {
  .swiperStyle .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }

  .swiperStyle .swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
  }
}

/*end*/

/*blogSwiper*/

.mc_blog_space {
  margin-top: 80px;
}

.blog-card-size {
  width: 100%;
  height: 637px;
}

.blog-picture {
  width: 100%;
  height: 50%;
}

.blog-decription-cont {
  height: 50%;
  padding: 1rem;
}

.blogSwiper-margin {
  margin-bottom: 5rem;
}

@media screen and (max-width: 576px) {
  .blogSwiper-margin {
    margin-bottom: 3.8rem;
  }
}

.blogSwiper .swiper-wrapper {
  /*width: var(--inner-content);*/
  height: auto;
}

.blogSwiper .team-button-next::after,
.blogSwiper .team-button-prev::after {
  content: "";
}

.blogSwiper .slider-nav {
  display: flex;
  z-index: 1000;
  /*display: flex;*/
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  /*border-radius: 30px;*/
  background: transparent;
  /*border: 1px solid var(--border);*/
}

.blogSwiper .swiper-slide {
  /*width: fit-content;*/
  text-align: center;
  font-size: 18px;
  background: transparent;
  display: flex;
  /*flex-shrink: 100 !important;*/
  justify-content: center;
  align-items: center;
}

.blogSwiper .main-slider-content-pad {
  padding: 4rem;
}

.blogSwiper .team-button-next {
  position: absolute;
  bottom: 46.5%;
  right: 0;
}

.blogSwiper .team-button-prev {
  position: absolute;
  bottom: 46.5%;
  left: 0;
}

.blogSwiper .blog-pagination {
  z-index: 1000;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
}

.blogSwiper .swiper-pagination-bullet {
  background-color: var(--orange-1);
  display: inline-block;
  width: 21px;
  height: 21px;
}

.blogSwiper .swiper-pagination-bullet-active {
  background-color: var(--green-2);
  display: inline-block;
  width: 21px;
  height: 21px;
}

@media screen and (max-width: 576px) {
  .blogSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }

  .blogSwiper .swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
  }
}

/*end*/

/*opinion*/
/*
.opinion-container {
  display: flex;
  align-items: center;
  max-width: 1400px;
  position: relative;
  overflow: visible;
  width: 100%;
}
*/
/*
.opinion-container {
  width: 100%;
  height: 300px;
}
*/
/*
.opinion-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  min-width: 330px;
}

.opinion-container .opinion-button-prev,
.opinion-container .opinion-button-next {
  position: absolute;
  top: 45%;
  z-index: 10;
}

.opinion-container .opinion-button-prev {
  left: -70px;
}

.opinion-container .opinion-button-next {
  right: -70px;
}

.opinion-container .slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 40px;
  border-radius: 30px;
  background: white;
  border: 1px solid var(--border);
}

.opinion-swiper .opinion-button-next::after,
.opinion-swiper .opinion-button-prev::after {
  content: "";
}

@media screen and (max-width: 1570px) {

  .opinion-container .opinion-button-next,
  .opinion-container .opinion-button-prev {
    display: none !important;
  }
}
*/
/* opinion onas */
/*
.opinion-container {
  display: flex;
  align-items: center;
  max-width: 1400px;
  position: relative;
  overflow: visible;
  width: 100%;
}


.opinion-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  min-width: 330px;
}

.opinion-container .opinion-button-prev,
.opinion-container .opinion-button-next {
  position: absolute;
  top: 45%;
  z-index: 10;
}

.opinion-container .opinion-button-prev {
  left: -70px;
}

.opinion-container .opinion-button-next {
  right: -70px;
}

.opinion-container .slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 40px;
  border-radius: 30px;
  background: white;
  border: 1px solid var(--border);
}

.opinion-swiper .opinion-button-next::after,
.opinion-swiper .opinion-button-prev::after {
  content: "";
}

@media screen and (max-width: 1570px) {

  .opinion-container .opinion-button-next,
  .opinion-container .opinion-button-prev {
    display: none !important;
  }
}


.opinion-pad {
  padding: 1.6rem 1.6rem 0rem 1.6rem;
}

.opinion-card-size {
  width: 448px;
  height: 347px;
}

@media screen and (max-width: 576px) {
  .opinion-card-size {
    width: 100%;
    height: 200px;
  }
}
*/
.top-round {
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.bottom-round {
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

/*end*/

/*Pasieka Koniczynak style*/

.bg-green-1 {
  background: var(--green-1);
}

.bg-tan-1 {
  background: var(--tan-1);
}

.bg-tan-2 {
  background: var(--tan-2);
}

.bg-tan-3 {
  background: var(--tan-3);
}

.bg-tan-4 {
  background: var(--tan-4);
}

.bg-tan-5 {
  background: var(--tan-5);
}

.bg-tan-6 {
  background: var(--tan-6);
}

.bg-tan-7 {
  background: var(--tan-7);
}

.bg-tan-8 {
  background: var(--tan-8);
}

.bg-tan-9 {
  background: var(--tan-9);
}

.bg-orange-1 {
  background: var(--orange-1);
}

.pasieka-title {
  height: 151px;
}

@media screen and (max-width: 576px) {
  .pasieka-title-img {
    height: 200px;
  }

  .pasieka-title {
    height: 90px;
  }
}

.pasieka-1-left {
  height: 565px;
  padding: 6rem 1rem 0rem 2rem;
}

.pasieka-1-right {
  height: 565px;
  padding: 0 2rem 3rem 2rem;
}

@media screen and (max-width: 576px) {
  .pasieka-1-left {
    height: 431px;
  }
}

.hex-cont {
  width: 120px;
  height: 120px;
}

.pasieka-bar-underbutton {
  margin-top: -40px;
}

.pasieka-bar-button {
  margin-bottom: 40px;
}

@media screen and (max-width: 992px) {
  .pasieka-bar-underbutton {
    margin-top: 0px;
  }
}

.pasieka-zal {
  z-index: 1000;
  width: 48%;
  height: 662px;
  margin-top: 3rem;
  position: relative;
}

.pasieka-onas {
  z-index: 1;
  width: 77%;
  position: absolute;
  top: 0;
  right: 0;
  padding: 3rem 4rem 3rem 30%;
}

@media screen and (max-width: 786px) {
  .pasieka-zal {
    z-index: 1000;
    width: 92%;
    height: 100%;
    margin-top: 0rem;
    position: relative;
    margin: auto;
    margin-top: 36px;
  }

  .pasieka-onas {
    z-index: 1;
    width: 100%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-top: -45%;
    left: 0;
    right: 0;
    text-align: center;
    padding: 50% 1.6rem 3rem 1.6rem;
  }
}

.clearf::after {
  content: "";
  display: table;
  clear: both;
}

.blog-ul {
  width: 300px;
}

@media screen and (max-width: 786px) {
  .blog-ul {
    width: 250px;
  }
}

.blog-gradient {
  background: linear-gradient(to bottom, white 318px, var(--tan-6) 318px);
}

.pasieka-top-title {
  min-height: 97px;
  display: flex;
  align-items: center;
  padding: 25px 0px;
}

/*kontakt*/

.pasieka-kontakt-container {
  padding: 2rem;
  min-height: 460px;
}

.pasieka-input-pad {
  padding: 1rem 2rem 1rem 2rem;
}

.pasieka-wiadomosc-filed {
  height: 20%;
}

.round30 {
  border-radius: 30px;
}

.pasieka-send-btn {
  margin: auto;
  width: fit-content;
}

.pasieka-kontakt-sep {
  margin-top: 0px;
}

@media screen and (max-width: 786px) {
  .pasieka-kontakt-sep {
    margin-top: 2rem;
  }
}
/*end kontakt*/
/* o-nas*/
.pasieka-zal-s {
  z-index: 1000;
  width: 91%;

  margin-top: 0rem;
  position: relative;
  margin: auto;
}

.pasieka-onas-s {
  z-index: 1;
  width: 100%;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: -10%;
  left: 0;
  right: 0;
  text-align: center;
  padding: 11% 3.7rem 3rem 3.7rem;
}

.bg-movie {
  background: #edfefb;
}

.movie-cont {
  padding: 1rem 0 1rem 0;
}

.location-selector {
  width: 80%;
  padding: 0.5rem 0.5rem 0.5rem 2rem;
}

.location-con {
  margin-left: 1rem;
  align-items: center;
}

.big-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--tan-2);
}

.pasieka-o-nas-sep {
  margin-top: 0px;
}

@media screen and (max-width: 786px) {
  .pasieka-o-nas-sep {
    margin-top: 2rem;
  }
}
/*end o-nas*/

/*blog archiwum*/

/*end blog archiwum*/

/*single post*/

.pasieka-img-b {
  z-index: 1000;
  width: 48%;

  margin-top: 3rem;
  position: relative;
  margin-right: -10%;
}

.pasieka-onas-b {
  z-index: 1;
  width: 77%;
  position: relative;
  top: 0;
  right: 0;
  height: 100%;
  padding: 3rem 4rem 3rem 15%;
}

@media screen and (max-width: 786px) {
  .pasieka-img-b {
    z-index: 1000;
    width: 85%;
    aspect-ratio: 1 / 1;
    height: auto;
    margin-top: 0rem;
    position: relative;
    margin: auto;
  }

  .pasieka-onas-b {
    z-index: 1;
    width: 100%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-top: -10%;
    left: 0;
    right: 0;

    padding: 10% 1.6rem 1rem 1.6rem;
  }
}

/*end single post*/

/*end Pasieka Koniczynak style*/
