/*MCWebDesign classes BOXCAR 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: 1400px;
  /*content-width: 2rem margin on 1920px screen. */

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

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

  /*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: #050B20;
  --text: #050B20;
  --title-light: white;
  --text-light: white;
  --accent-text: #405FF2;
  --border: #050B20;
  --light-border: #E1E1E1;
  --brand-main-color: violet;
  --hr-line: #E1E1E1;
  --bg-icon-1: #6C6C83;
  --bg-footer-light: white;
  --bg-footer-dark: #050B20;


  /*fonts*/
  --paragraph-size: 15px;
  --paragraph-weight: 400;
}

/* 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: "DM Sans", 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(--hr-line);
}

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

/* Format headers */
h1 {
  font-size: 3rem;
  margin-top: 3rem;
}

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

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

h4 {
  font-size: 1.44rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 0.96rem;
}

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 */
@media only screen and (max-width: 786px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.5rem;
  }
}

/*colors bg gradients etc.*/

/*bg*/

.bg-white {
  background: white;
}

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

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

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

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

.bg-blue {
  background: var(--bg-blue);
}

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

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

.bg-transparent {
  background: transparent;
}

.grad-active {
  background: linear-gradient(180deg, rgba(5, 11, 32, 0) 0%, #050B20 100%);
}

.shadow-1 {
  box-shadow: 0px 2px 5px 0px #00000014;
}

.shadow-2 {
  box-shadow: 0px 6px 24px 0px #0000000D;
}

/*
.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: 4rem;
}

.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;
}


/* 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.5rem;
  }
}

.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;
}

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

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

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


/*text utensils*/


.underline {
  text-decoration: underline;
}

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

/*
.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-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*/

.border-white {
  border: 1px solid white;
}

.border-light {
  border: 1px solid var(--light-border);
}

.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;
}

.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;
}

@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;
}

.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: 1300px) {
  .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*/

/*BOXCAR class section*/

/*fonts*/

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

.bar {
  height: 1px;
  background: var(--hr-line);
}

.product-tag {
  padding: 0 1rem 0 1rem;
}

.team-tag {
  padding: 0.5rem 1rem 0.5rem 1rem;
}

.product-bookmark-icon {
  width: 50% !important;
  height: auto !important;
}

.invert-non {
  filter: invert(1);
}

.mini-icon {
  width: 1.5rem !important;
}

.tiny-icon {
  width: 1rem !important;
}

.vh-50 {
  height: 50vh;
}

.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;
}

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

.gal-267 {
  min-width: 267px;
  aspect-ratio: 1 / 1;
}

@media screen and (max-width: 992px) {
  .gal-267 {
    width: 100%;
    aspect-ratio: 1 / 1;
  }
}

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

/*page template*/

.banner-container {
  height: 320px;
}

.galery-container {
  height: 550px;
}

.subgalery-container {
  min-width: 550px;
  min-height: 550px;
}

.subsection-container {
  width: 550px;
  height: 550px;
}

.subtext-container {
  width: 550px;
  height: 550px;
}

@media screen and (max-width: 992px) {
  .galery-container {
    height: auto;
  }

  .subgalery-container {
    min-width: 100%;
    min-height: 100%;
    aspect-ratio: 1 / 1;
  }
  .sq992 {
    aspect-ratio: 1 / 1;
  }

  .subtext-container {
    width: 100%;
    height: auto;
  }
  
}

/*masonry minigalery o-nas*/

.team-o-nas {
  width: 260px;
  height: 400px;
}

.team-photo-o-nas {
  width: 202px;
  height: 284px;
}

.masonry-cont {
  min-height: 567px;
}

.sq-cont {
  max-width: 567px;
}

.minh-325 {
  min-height: 320px;
}


@media screen and (max-width: 1500px) {
  .w1500-100 {
    max-width: 100%;
  }
}

.mgap {
  gap: 2rem;
}


.col2row1400 {
  flex-direction: column;
}

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

  .w567-1250 {
    max-width: 567px;
  }
}

@media screen and (max-width: 1500px) {
  .masonry-cont {
    min-height: none;
  }

  .col2row1400 {
    flex-direction: row !important;
  }
}

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

.minw-210 {
  min-width: 200px;
}

.minh-210 {
  min-height: 210px;
}

.maxh-210 {
  max-height: 200px;
}

.maxw-567 {
  max-width: 567px;
}

.minw-567 {
  min-width: 567px;
}

.flex-567 {
  flex: 0 1 567px;
  min-width: 400px;
}

.minh-567 {
  min-height: 567px;
}

.onasfaq {
  max-width: 800px;
}

/*end*/

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

/*product*/

.product-card-size {
  width: 329px;
  height: 460px;
}

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

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

.product-desc-pad {
  padding: 1rem 2rem 1rem 2rem;
}

/*team*/


.team-card-size {
  width: 329px;
  height: 360px;
}

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

.team-image-height {
  height: 45%;
}

.team-desc-pad {
  padding: 1rem 2rem 1rem 2rem;
}


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

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

.border-resp {
  border: 1px solid var(--light-border);
}

.border-resp:hover {
  border-color: var(--text);
}

.bg-icon-resp {
  background: var(--bg-icon);
}

.box-car-class:hover .bg-icon-resp {
  background: var(--bg-icon-active);
}

.box-car-class:hover .invert {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.ilustration1175 {
  aspect-ratio: 1.175 / 1;
}

.ilustration-hd {
  aspect-ratio: 19 / 10;
}

.ilustration-app {
  width: 350px;
}

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

.opinion-card-size {
  width: 329px;
  height: 200px;
}

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

/*404*/
.error404 {
  height: 60vh;

}


/*end*/

/*kontakt*/
.map-container {
  max-width: 1700px;
}

.kontakt-cont {
  padding: 2rem;
  margin: 0 0 0 1rem;
}

@media screen and (max-width: 992px) {
  .kontakt-cont {
    margin: 0;
  }
}

.form-cont {
  padding: 0.4rem 0 0.4rem 1rem;
}

@media screen and (max-width: 992px) {
  .form-cont {
    width: 100%;
  }
}


.form-height {
  min-height: 8rem;
}

/*end*/

/*ul list*/
.ul-margin {
  margin-left: 2rem;
}

/*end*/

/*rejestracja*/
.mw-sm {
  max-width: var(--sm);
}

/*end*/

/*input*/

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);
}

.form-control+.form-control {
  margin-top: 1em;
}

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*/


/*o nas*/

/*end*/

/*
.bg-icon {
  background: var(--bg-icon);
}

.bg-icon:hover {
  background: var(--bg-icon-active);
}
*/

/*end BOXCAR*/
/*

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

}

*/

/*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;
  }
}

/*productSwiper*/

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

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


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

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

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

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

.productSwiper .product-button-next {
  position: absolute;
  bottom: 0px;
  left: 200px;
}

.productSwiper .product-button-prev {
  position: absolute;
  bottom: 0px;
  left: 0px;
}

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

.productSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  width: 335px;
}

/*end*/

/*team*/
/*teamSwiper*/

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

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


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

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

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

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

.teamSwiper .team-button-next {
  position: absolute;
  bottom: 0px;
  left: 200px;
}

.teamSwiper .team-button-prev {
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.teamSwiper .team-pagination {
  position: absolute;
  bottom: 0px;
  left: 110px;
}

.teamSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  width: 335px;
}

/*end*/

/*teamSwiper Onas*/

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

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


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

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

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

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

.teamSwiperOnas .teamo-button-next {
  position: absolute;
  bottom: 0px;
  left: 200px;
}

.teamSwiperOnas .teamo-button-prev {
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.teamSwiperOnas .teamo-pagination {
  position: absolute;
  bottom: 0px;
  left: 110px;
}

.teamSwiperOnas .swiper-slide {
  display: flex;
  justify-content: center;
  width: 265px;
}

/*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*/