/*MCWebDesign classes v1.2 DalTech*/

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

  --mono-font: Consolas, Menlo, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
  --standard-border-radius: 8px;
  --button-border-rad: 6px;
  /*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;

  --icon-bg: #23252e;
  --text-icon-bg: #c4c4c4;
  --si-paragraph-size: 1.05rem;

  --list-gap: 1rem;

  --bg: white;
  --bg-tan: #F6F3EE;
  --bg-light: #F8F8F8;
  --accent-bg: #f5f7ff;
  --title: #222222;
  --text: #222222;
  --text-light: #A9AFC3;
  --border: #D9D9D9;
  --light-border: #EEEFF4;
  --accent-text: #166FD3;
  --code: #d81b60;
  --preformatted: #444;

  --marked: #ffdd33;
  --disabled: #efefef;
  /*--header-menu-text: rgb(31 41 55);*/
  --gray-900: rgb(17 24 39);
  --brand-main-color: #166FD3;
  /*--brand-10-color: #166FD3;*/
  --hr-line: #D9D9D9;

}

/* Dark theme */
/*
@media (prefers-color-scheme: dark) {

  :root,
  ::backdrop {
    color-scheme: dark;
    --bg: #212121;
    --accent-bg: #2b2b2b;
    --text: #dcdcdc;
    --text-light: #ababab;
    --accent: #ffb300;
    --accent-hover: #ffe099;
    --accent-text: var(--bg);
    --code: #f06292;
    --preformatted: #ccc;
    --disabled: #111;
  }
*/
/* Add a bit of transparency so light media isn't so glaring in dark mode */
/* img,
  video {
    opacity: 1;
  }
}
*/
/* 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: "Inter", sans-serif;
  /*var(--sans-font);*/
  scroll-behavior: smooth;
}

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

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


.dal-call-grad {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.31) 0%, rgba(0, 0, 0, 0.78) 80%, #fff 80%, #fff 100%);
}


.tan-grad {
  background: linear-gradient(180deg, white 0%, white 60%, #F2F2F6 60%, #F2F2F6 100%);

}

.soft-shadow {
  box-shadow: 0px 10px 60px 0px #A5A5A540;
}


.soft-shadow-h {
  box-shadow: 0px 10px 60px 0px #A5A5A540;
}


.soft-shadow-h:hover {
  box-shadow: 0px 11px 39px 0px #166FD39F;
}

/*do ustawienia*/

.form-grad {
  background: linear-gradient(90deg, white 0%, white 10%, #F2F2F6 10%, #F2F2F6 100%);
}

.soft-grad {
  background: linear-gradient(180deg, white 0%, white 60%, rgba(246, 242, 237, 0) 60%, #F6F2ED 86%, white 86%, white 100%);
}

@media screen and (max-width: 992px) {
  .form-grad {
    background: #F2F2F6;
  }
}

@media screen and (max-width: 768px) {
  .soft-grad {
    background: linear-gradient(180deg, white 0%, white 60%, rgba(246, 242, 237, 0) 60%, #F6F2ED 95%, white 95%, white 100%);
  }
}

@media screen and (max-width: 576px) {
  .soft-grad {
    background: linear-gradient(180deg, white 0%, white 60%, rgba(246, 242, 237, 0) 60%, #F6F2ED 91%, white 91%, white 100%);
  }
}

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

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

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

.bg-discuss {
  background: linear-gradient(to right,
      white 60%,
      #F8F8F8 60%);
}

.bg-dark {
  background: #020626;
}

.border-dot-w {
  border: 1px dashed gray;
}

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

.nomargin {
  margin: 0 !important;
}

.hidden {
  display: hidden;
}

.display-none {
  display: none;
}

.pointer {
  cursor: pointer;
}

.spacer-unresponsive {
  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;
}

.cr-bar-3-5 {
  width: 3.5rem;
  height: 1px;
  background: var(--text)
}

.rotate-45 {
  transform: rotate(-45deg);
}

.rotate-90 {
  transform: rotate(-90deg);
}

.rotate-180 {
  transform: rotate(180deg);
}

.underline {
  text-decoration: underline;
}

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

.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-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-height-placeholder {
  height: 800px;
}

.slide-container {
  max-width: 1300px;
}


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

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

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

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

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

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

.si-quote-bump {
  margin-top: calc(-3*var(--standard-gap));
}

.si-quote-box {
  /*for single icon inside box*/
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--icon-bg);
  /*padding: var(--icon-padding);*/
  /*not needed anymore*/
  border-radius: var(--standard-border-radius);
  margin-bottom: 1rem;
  background-color: var(--brand-main-color);
}

/*non standard colors, gradients, shadows*/

.accent-shadow-h:hover {
  box-shadow: 0 0 10px var(--accent-text);
}

.accent-text-h:hover {
  color: var(--accent-text);
}

/*button section*/

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

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

.button-w-s {
  padding: 0.6em 2rem 0.6em 2rem;
}

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

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

.button-u {
  text-decoration: underline;
  color: var(--brand-main-color);
  font-weight: 600;
  font-size: 1rem;
}

.button-round-l,
.button-round-r {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--border);
  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));
}

.slim-button {
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  flex: 0 0 auto;
  background: #ebebeb;
  border-radius: var(--button-border-rad);
  padding: .5em 2rem .5em 2rem;
}

.slim-button:hover {
  color: white;
  background: var(--brand-main-color);
}

.round-icon-container,
.round-icon-container-6,
.round-icon-container-6-w {
  border-radius: 50%;
}

.round-icon-container {
  width: 4rem;
  height: 4rem;
}

.round-icon-container-6,
.round-icon-container-6-w {
  width: 6rem;
  height: 6rem;
}

.round-icon-container,
.round-icon-container-6 {
  background: #f5f6fd;
}

.round-icon-container-6-w {
  background: white;
}

.outlined {
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #5E5F63;
}

.ph1 {
  font-size: 5rem;
}

.vert-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}


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

/*photo section*/

.photo-bg {
  background-color: #c4c4c4;
}

.photo-size-1 {
  width: 502px;
  height: 618px;
}

.photo-size-2 {
  width: 711px;
  height: 826px;
}

.photo-size-3 {
  width: 848px;
  height: 840px;
}

.photo-size-4 {
  width: 273px;
  height: 151px;
}

.h-490 {
  height: 490px;
}

.dymek-tran {
  transform: translate(1rem, -1rem);
}

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

  .photo-size-1,
  .photo-size-2 {
    width: 100%;
    height: 60vh;
  }
}

/*end*/

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

.p-obs {
  padding: 3rem 3rem 3rem 2.5rem;
}

.p-exp {
  padding: 2rem 3rem 3rem 2.5rem;
}

.p-case {
  padding: 1.5rem 2rem 1.8rem 2rem;
}

.case-container:hover .case-desc-bg {
  background: transparent !important;
  transition: 0.1s ease-in-out;
}

.case-container:hover .case-desc {
  color: white !important;
  transition: 0.1s ease-in-out;
}

.case-container:hover {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 19.36%, rgba(15, 116, 230, 0.55) 71.26%, #166FD3 100%);
  transition: 0.1s ease-in-out;
}

.p-counter {
  padding: 5rem 7rem 7rem 5rem;
}

@media only screen and (max-width: 992px) {
  .p-counter {
    padding: 3rem 1rem 3rem 1rem;
  }
}

.bg-trick:hover {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 19.36%, rgba(15, 116, 230, 0.55) 71.26%, #1974DA 100%);
}

.bg-counter {
  background: linear-gradient(180deg,
      white 66%,
      #020626 66%);
}

.brand-border {
  border: 1px solid transparent;
}

.brand-border:hover {
  border: 1px solid var(--brand-main-color);
}

.border-w-t {
  border: 5px solid white;
}

.bg-opinion {
  background: linear-gradient(180deg,
      transparent 50px,
      white 50px);
}

.opinion-nav {
  background: #D6D1D1;
}

.opinion-nav:hover {
  background: var(--brand-main-color);
  -webkit-box-shadow: 0px 0px 0px 6px white, 0px 0px 0px 8px #0153F2;
  -moz-box-shadow: 0px 0px 0px 6px white, 0px 0px 0px 8px #0153F2;
  box-shadow: 0px 0px 0px 6px white, 0px 0px 0px 8px #0153F2;
}

.obs-container {
  max-width: 1300px;
}

.minus-margin-992 {
  padding-top: 250px;
  margin-top: -200px;
}

.w-icon-3 {
  width: 3rem;
}

.w-icon-4 {
  width: 4rem;
}

.over-grad-pad {
  padding: 3rem 2.5rem 3rem 2.5rem;
}

.over-grad-shadow {
  box-shadow: 0px 9px 21px 0px #0000000A;
}

.join-container {
  padding: 1.5rem 2.5rem 1.5rem 2.5rem;
  border-radius: 1rem;
  background: #F5F6FD;
}

.counter-padding {
  padding: 3rem 2.5rem 1.5rem 2.5rem;
}

.counter-icon-translate {
  transform: translateY(2.5rem);
}

.w-200 {
  width: 200px;
}

.w-410 {
  width: 410px;
}

.w-faq {
  width: 44.5rem;
}

.h-post-photo {
  height: 350px;
}

.margin-post-992 {
  margin: -100px 1.5rem 1.5rem 1.5rem;
}
@media only screen and (max-width: 992px) {
  .w-faq {
    width: 100%;
  }
  .margin-post-992 {
    margin: 0px;
  }
  
}

.p-date {
  padding: 0.5rem;
}

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

.p-opinion-nav {
  padding: 0.5rem 1rem 0.5rem 1rem;
}

.sq-2 {
  width: 2rem;
  height: 2rem;
}

.sq-3 {
  width: 3rem;
  height: 3rem;
}

.sq-10p {
  width: 10px;
  height: 10px;
}

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

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

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

.minus-l-m-10 {
  margin-left: -10px;
}

.p-ready {
  padding: 0.5rem 1rem 0.5rem 1rem;
}

.border-2-brand {
  border: 2px solid var(--brand-main-color);
}

.dotted-brand-border {
  border: 1px dotted var(--brand-main-color);
  border-radius: 1rem;
}

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

.p-conv {
  padding: 2rem;
}

.w-conv {
  width: 66%;
}

@media only screen and (max-width: 992px) {
  .w-conv {
    width: 95%;
  }
}

.post-container {
  width: 630px;
  height: 388px;
}

@media only screen and (max-width: 1300px) {
  .post-container {
    width: 100%;
    height: 388px;
  }
}

.und-hover:hover {
  text-decoration: underline;
}

.p-projects {
  padding: 4rem 5rem 2rem 5rem;
}

.p-branding {
  padding: 7rem 0 0 5rem;
}

.brand-shadow {
  box-shadow: 90px 66px 0px 0px var(--brand-main-color),
    90px 0px 0px 0px var(--brand-main-color),
    0px 66px 0px 0px var(--brand-main-color);
}

.p-l-992-4 {
  padding-left: 4rem;
}

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

@media only screen and (max-width: 1100px) {
  .brand-trans {
    transform: none;
  }
}

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

  .p-l-992-4 {
    padding: 0rem;
  }

  .brand-shadow {
    box-shadow: none;
  }

  .align-end-center-992 {
    align-items: center !important;
  }

  .p-branding {
    padding: 4rem 0 0 4rem;
  }
}

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

  .p-branding,
  .p-projects {
    padding: 1rem 1rem 1rem 1rem;
  }
}

.photo-design-h {
  min-height: 933px;
}

.w-quote {
  width: 2rem;
}

.circular-progress {
  --size: 250px;
  --half-size: calc(var(--size) / 2);
  --stroke-width: 20px;
  --radius: calc((var(--size) - var(--stroke-width)) / 2);
  --circumference: calc(var(--radius) * pi * 2);
  --dash: calc((var(--progress) * var(--circumference)) / 100);
  animation: progress-animation 5s linear 0s 1 forwards;
}

.circular-progress circle {
  cx: var(--half-size);
  cy: var(--half-size);
  r: var(--radius);
  stroke-width: var(--stroke-width);
  fill: none;
  stroke-linecap: round;
}

.circular-progress circle.bg {
  stroke: #ddd;
}

.circular-progress circle.fg {
  transform: rotate(-90deg);
  transform-origin: var(--half-size) var(--half-size);
  stroke-dasharray: var(--dash) calc(var(--circumference) - var(--dash));
  transition: stroke-dasharray 0.3s linear 0s;
  stroke: var(--brand-main-color);
}

@property --progress {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

@keyframes progress-animation {
  from {
    --progress: 0;
  }

  to {
    --progress: 100;
  }
}

/*koniec czesci dal*/

.si-active>p {
  font-weight: 700;
  color: white;
}


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

.cr-text {
  color: var(--text);
}

/*end*/

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

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

.font-1pxg {
  letter-spacing: 1px;
}

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

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

.box-300-351 {
  width: 300px;
  height: 351px;
}

.dal-4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-template-areas: "o1 o2 o3 o4";
}

.o1 {
  grid-area: o1;
}

.o2 {
  grid-area: o2;
}

.o3 {
  grid-area: o3;
}

.o4 {
  grid-area: o4;
}

@media only screen and (max-width: 1200px) {
  .dal-4-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-template-areas:
      "o1 o2"
      "o3 o4";
  }
}

@media only screen and (max-width: 992px) {
  .dal-4-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-template-areas:
      "o1 o2"
      "o3 o4";
  }
}

@media only screen and (max-width: 768px) {
  .dal-4-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-template-areas:
      "o1"
      "o2"
      "o3"
      "o4";
  }
}

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

@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-1300 {
  max-width: 1300px;
}

.w-650-100 {
  width: 650px;
}

@media screen and (max-width: 992px) { 
  .w-650-100 {
    width: 100%
  }
}
/*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));
  }
}

.feature-box {
  min-width: 27rem;
  padding: 1.8rem 2rem 1.6rem 2rem;
}

.feature-box-text {
  white-space: nowrap;
  max-width: 15rem;
}

@media screen and (max-width: 992px) {
  .feature-box {
    flex-grow: 1;
  }
}

.bg-feature-box {
  background: linear-gradient(-90deg, #166FD3 calc(82px), #f6f6f6 0);
}

.bg-feature-box:hover {
  background: linear-gradient(-90deg, #DCB49A calc(82px), #f6f6f6 0);
}

.bg-service-box {
  background: linear-gradient(-90deg, #c4c4c4 calc(240px), #f6f6f6 0);
}

.bg-service-button {
  background: #F6F3EE;
}

.service-container:hover .bg-service-button {
  background: var(--brand-main-color);
  transition: 0.1s ease-in-out;
}

.service-icon {
  width: 95px;
}

.service-button-container {
  transform: translateX(-208px);
}

.service-box {
  width: 570px;
  height: 570px;
  padding: 4rem 0 5rem 3rem;
}

.rec-63-135 {
  width: 64px;
  height: 135px;
  border-radius: 32px;
}

@media screen and (max-width: 576px) {
  .rec-63-135 {
    width: 135px;
    height: 64px;
  }

  .col-576 {
    flex-direction: column !important;
  }

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

  .bg-service-box {
    background: linear-gradient(0deg, #c4c4c4 calc(5rem), #f6f6f6 0);
  }

  .service-button-container {
    transform: translate(-1rem, 2rem);
  }

  .service-box {
    width: 100%;
    height: 28rem;
    padding: 5rem 0 5rem 2rem;
  }

}

.dal-slide-nav,
.dal-slide-nav-active {
  height: 0.4rem;
  border-radius: 0.2rem;
  cursor: pointer;
}

.dal-slide-nav:hover {
  background: var(--accent-text);
}

.dal-slide-nav {
  width: 4rem;
  background: white;
}

.dal-slide-nav-active {
  width: 4rem;
  height: 0.4rem;
  background: var(--brand-main-color);
}

.circ {
  border-radius: 50%;
}

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

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

.grow-1 {
  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-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-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-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-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*/
/*start LandingTwo*/


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

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

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

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

.round-50 {
  border-radius: 25px;
  width: 50px;
  height: 50px;
}

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

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

.overflow {
  overflow: visible;
}

.no-overflow {
  overflow: hidden;
}