/*MCWebDesign classes v1.4 Cafert*/

/* Global variables. */
:root,
::backdrop {
  /* Set sans-serif & mono fonts */

  --mono-font: Consolas, Menlo, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
  --standard-border-radius: 0px;
  --button-border-rad: 0px;
  /*Global width max-width etc.*/
  --max-width: 1920px;
  --content-width: 1540px;
  --inner-content-width: 860px;

  /*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 gap*/
  --content-gap: 0.3rem;
  --standard-gap: 1rem;
  --icon-padding: 0.1rem;
  --minihero-size: 3.5rem;
  --bg-icon: #F7F7F7;
  --bg-text-icon: #F7F7F7;
  --si-paragraph-size: 1.05rem;
  --list-gap: 1rem;
  --bg: white;
  --bg-grey: #D8D8D8;
  --bg-eb: #ebebeb;
  --bg-tan0: #C3B2A5;
  --bg-tan1: #E5DCD2;
  --bg-tan2: #B38E6A;
  --bg-tan3: #534931;
  --bg-light: #F7F7F7;
  --bg-accent: #534931;
  --bg-alarm: #9F3939;
  --bg-button-accent: #B38E6A;
  --bg-button-tan: #E5DCD2;
  --border-button: #B38E6A;
  --title: #534931;
  --text: #534931;
  --text-light: #B38E6A;
  --border: #B38E6A;
  --light-border: #CCCCCC;
  --accent-text: #B38E6A;
  --brand-main-color: #534931;
  --hr-line: #D9D9D9;
}

/* 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: "Raleway", sans-serif;
  /*var(--sans-font);*/
  font-style: normal;
  scroll-behavior: smooth;
}

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

/*
* {
  border: 1px solid tan; 
}
*/
/* Make the header bg full width, but the content inline with body */
body>header {
  background-color: var(--accent-bg);
  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(--si-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;
}

p {
  color: var(--text);
}

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

/* Consolidate box styling */
aside,
details,
pre {
  background-color: white;
  border: 1px solid var(--border);
  border-radius: var(--standard-border-radius);
  margin-bottom: 0.5rem;
}

progress {
  border-radius: 7px;
  width: 80%;
  height: 13px;
}

progress::-webkit-progress-bar {
  background-color: #f6f6f6;
  border-radius: 7px;
}

progress::-webkit-progress-value {
  background-color: var(--brand-main-color);
  border-radius: 7px;
}

aside {
  font-size: 1rem;
  width: 30%;
  padding: 0 15px;
  margin-inline-start: 15px;
  float: right;
}

*[dir="rtl"] aside {
  float: left;
}

/* Make aside full-width on mobile */
@media only screen and (max-width: 720px) {
  aside {
    width: 100%;
    float: none;
    margin-inline-start: 0;
  }
}

article,
fieldset,
dialog {
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: var(--standard-border-radius);
  margin-bottom: 1rem;
}

article h2:first-child,
section h2:first-child {
  margin-top: 1rem;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/*
Don't double separators when chaining sections
section+section,
section:first-child {
  border-top: 0;
  padding-top: 0;
}

section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
*/
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);
}

/*colors bg gradients etc.*/

.bg-icon,
.bg-icon-text {
  background: var(--bg-icon) !important;
}

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

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

.bg-tan0 {
  background: var(--bg-tan0) !important;
}

.bg-tan1 {
  background: var(--bg-tan1) !important;
}

.bg-tan2 {
  background: var(--bg-tan2) !important;
}

.bg-tan3 {
  background: var(--bg-tan3) !important;
}


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

.bg-brand {
  background: var(--brand-main-color);
}

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

.color-brand {
  color: var(--brand-main-color);
}

.nomargin {
  margin: 0 !important;
}

.pointer {
  cursor: pointer;
}

.spacer-unresponsive {
  height: 3rem;
}

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

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

  .cr-right-992-padding {
    padding-right: calc(5*var(--standard-gap));
  }

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

@media only screen and (max-width: 786px) {
  .cr-right-992-padding {
    padding-right: calc(2*var(--standard-gap));
  }
}

@media screen and (max-width: 576px) {
  .cr-right-992-padding {
    padding-right: 0px;
  }
}

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

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

.underline {
  text-decoration: underline;
}

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

/*heading sized paragraphs, for seo purposes*/



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

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


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

.ph35 {
  font-size: 2rem;
}

.ph4 {
  font-size: 1.44rem;
}

.ph5 {
  font-size: 1.25rem;
}

.ph6 {
  font-size: 0.96rem;
}

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

.ph1,
.ph2,
.ph3 {
  line-height: 1.1;
}


/* Reduce phx size on mobile */
@media only screen and (max-width: 786px) {
  .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;
  }
}

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

/*button section*/

.border-brand {
  border: 1px solid var(--bg-button-accent);
}

.button,
.button-w,
.button-t {
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  flex: 0 0 auto;
  border-radius: var(--button-border-rad);
}

.button,
.button-w,
.button-t {
  padding: 1em 2rem 1em 2rem;
}

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

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

.button-t {
  background: var(--bg-tan1);
  color: white;
  border: 2px solid var(--border-button);
}


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

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

.red {
  background-color: red !important;
}

.cs {
  height: 0.4rem;
}

.m-cafert-top {
  margin-top: 2rem;
}

.h-cafert-section {
  height: 960px;
}

.sq-half {
  height: 50vw;
  max-height: 960px;
}

.sm-logo {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: red;
}

.sq-50 {
  width: 3.125rem;
  height: 3.125rem;
}

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

.h-480 {
  height: 480px;
}

.cafert-counter-h {
  min-height: 12.5rem;
}

.cafert-padding {
  padding-left: 3rem;
}

.h-cafert-danie {
  height: 108px;
}

.hr-cafert-accent1 {
  border: 1px solid #BF5544;
}

.hr-cafert-accent2 {
  border: 1px solid #498F50;
}

.cafert-event-plate {
  width: 370px;
  height: 224px;
  padding: 2rem 1.5rem 1.3rem 2rem;
  border: 1px solid var(--border);
}

.cafert-event-title {
  font-size: 1.5rem;
}

.cafert-event-desc-padding {
  padding-left: 1.5rem;
}

@media screen and (max-width: 992px) {
  .cafert-padding {
    padding-left: 2rem;
  }

  .m-cafert-top {
    margin-top: 1rem;
  }
}

@media screen and (max-width: 786px) {
  .cafert-padding {
    padding-left: 1rem;
  }

  .m-cafert-top {
    margin-top: 0.5rem;
  }

  .cafert-event-desc-padding {
    padding-left: 1rem;
  }
}

@media screen and (max-width: 576px) {
  .cafert-padding {
    padding-left: 1rem;
  }
}

.cafert-event-grid {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(3, 1fr);
  gap: calc((1170px - 3 * 370px)/2);
  grid-template-areas:
    "o1 o2 o3"
    "o4 o5 o6";
}

.o1 {
  grid-area: o1;
}

.o2 {
  grid-area: o2;
}

.o3 {
  grid-area: o3;
}

.o4 {
  grid-area: o4;
}

.o5 {
  grid-area: o5;
}

.o6 {
  grid-area: o6;
}

@media screen and (max-width: 1170px) {
  .cafert-event-grid {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: repeat(2, 1fr);
    gap: calc((1170px - 3 * 370px)/2);
    grid-template-areas:
      "o1 o2"
      "o3 o4"
      "o5 o6";
  }
}

@media screen and (max-width: 820px) {
  .cafert-event-grid {
    display: grid;
    grid-template-rows: repeat(6, 1fr);
    grid-template-columns: repeat(1, 1fr);
    gap: calc((1170px - 3 * 370px)/2);
    grid-template-areas:
      "o1"
      "o2"
      "o3"
      "o4"
      "o5"
      "o6";
  }
}

.opinion-photo-cont {
  min-height: 40vh;
}

.cafert-opinion-w {
  width: 60%;
}

.cafert-expert-pad {
  padding: 2rem;
}


@media screen and (max-width: 1500px) {
  .cafert-opinion-w {
    width: 75%;
  }
}

@media screen and (max-width: 1170px) {
  .cafert-opinion-w {
    width: 85%;
  }
}

@media screen and (max-width: 992px) {
  .cafert-opinion-w {
    width: 90%;
  }
  .cafert-expert-pad {
    padding: 1rem;
  }
}

@media screen and (max-width: 786px) {
  .cafert-opinion-w {
    width: 95%;
  }
}

@media screen and (max-width: 576px) {
  .cafert-opinion-w {
    width: 100%;
  }
}

.sq-480 {
  width: 30rem;
  height: 30rem;
}

.cafert-iner-galery-grid {
  display: grid;
  grid-template-rows: repeat(1, 1fr);
  grid-template-columns: repeat(4, 1fr);
  gap: 0rem;
  grid-template-areas:
    "gal-nav gal1 gal2 gal3";
}

.gal-nav {
  grid-area: gal-nav;
}

.gal1 {
  grid-area: gal1;
}

.gal2 {
  grid-area: gal2;
}

.gal3 {
  grid-area: gal3;
}

@media screen and (max-width: 1910px) {
  .cafert-iner-galery-grid {
    display: grid;
    grid-template-rows: repeat(1, 1fr);
    grid-template-columns: repeat(2, 1fr);
    gap: 0rem;
    grid-template-areas:
      "gal-nav gal1";
  }

  .gal2 {
    display: none !important;
  }

  .gal3 {
    display: none !important;
  }
}

@media screen and (max-width: 960px) {
  .cafert-iner-galery-grid {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(1, 1fr);
    gap: 0rem;
    grid-template-areas:
      "gal-nav" 
      "gal1";
  }
}

/*
@media screen and (max-width: 786px) {

}

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

}
*/
.cafert-gal-box {
  width: 170px;
  height: 170px;
}

.cafert-galery-grid {
  display: grid;
  grid-template-rows: repeat(1fr, 1);
  grid-template-columns: repeat(1fr, 6);
  gap: calc((1170px - 6 * 170px)/5);
  grid-template-areas:
    "txt g1 g2 g3 g4 nav";
}

.txt {
  grid-area: txt;
}

.g1 {
  grid-area: g1;
}

.g2 {
  grid-area: g2;
}

.g3 {
  grid-area: g3;
}

.g4 {
  grid-area: g4;
}

.nav {
  grid-area: nav;
}

@media screen and (max-width: 1170px) {
  .cafert-galery-grid {
    grid-template-rows: repeat(1fr, 2);
    grid-template-columns: repeat(1fr, 3);
    grid-template-areas:
      "txt g1 g2"
      "g3 g4 nav";
  }
}

@media screen and (max-width: 786px) {
  .cafert-galery-grid {
    grid-template-rows: repeat(1fr, 2);
    grid-template-columns: repeat(1fr, 2);
    grid-template-areas:
      "g1 g2"
      "txt nav";
  }

  .g3 {
    display: none !important;
  }

  .g4 {
    display: none !important;
  }
}


/*koniec czesci cafert*/

.si-small {
  font-size: 0.9rem;
}

.si-bold {
  font-weight: 800;
}

.font-mont {
  font-family: "Montserrat", sans-serif;
}

.letter-sp-1 {
  letter-spacing: 1px;
}

.letter-sp-4 {
  letter-spacing: 4px;
}

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

.capitalize {
  text-transform: capitalize;
}

.uppercase {
  text-transform: uppercase;
}

.italic {
  font-style: italic;
}

.flex-inline-row-no {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

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

  .nowrap-576 {
    flex-wrap: nowrap;
  }
}

/*end*/

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

.tb-margin-1 {
  margin: var(--standard-gap) 0 var(--standard-gap) 0;
}

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

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

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

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

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

.p-7gap {
  padding: calc(0.7*var(--standard-gap));
}


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

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

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

@media screen and (max-width: 992px) {
  .right-3gap {
    padding-right: calc(2*var(--standard-gap));
  }

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

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

.mw-1920 {
  max-width: 1920px;
}

.mw-1170 {
  max-width: 1170px;
}

.mw-700 {
  max-width: 700px;
}

/*MC flex*/

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

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

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

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


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


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

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

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

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

.rgap1 {
  /*1 rem gap, adjusting to mobile resolutions*/
  gap: var(--standard-gap);
}

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

@media screen and (max-width: 992px) {
  .rgap1 {
    gap: calc(0.5*var(--standard-gap));
  }

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

.circ {
  border-radius: 50%;
}

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

.basis-fit {
  flex-basis: fit-content;
}

.grow-1 {
  flex-grow: 1;
}

.grow {
  flex-grow: 1;
}

.flex-grow-12 {
  flex-grow: 1.2;
}

.grow-2 {
  flex-grow: 2;
}

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

.flex-row-rev {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap-reverse;
}

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

.flex-col-no {
  display: flex;
  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;
}

/*end*/

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

/*dynamic containers*/

.mob-25-100 {
  width: 25%
}

.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-30-100,
  .w992-33-100,
  .w992-40-100,
  .w992-50-100,
  .w992-60-100,
  .w992-70-100,
  .w992-80-100 {
    width: 100%;
  }

  .si-992-hide {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .mob-25-100 {
    width: 50%;
  }
}

@media screen and (max-width: 576px) {
  .mob-25-100 {
    width: 100%;
  }
}

/*end*/
/*nowy moduł flex*/

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

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

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

/*cześć dynamiczna*/

.flex-110 {
  flex: 1 1 0;
}

.flex-010 {
  flex: 0 1 0;
}

.flex-992-50-100 {
  flex: 1 1 50%;
}

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

.flex-922-60-70 {
  flex: 1 1 60%;
}

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

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

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

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

  .flex-992-100 {
    flex: 1 1 100%;
  }

  .flex-992-50-100 {
    flex: 1 1 100%;
  }

  .flex-922-60-70 {
    flex: 1 1 70%;
  }
}

/*koniec cześć dynamiczna*/
/*koniec*/

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

.overlaping {
  position: absolute;
}

.line-height-4 {
  line-height: 4rem;
}

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

.overflow {
  overflow: visible;
}

.no-overflow {
  overflow: hidden;
}