/*  MICROTHEMER STYLES  */

/*= Full Code Editor CSS ====== */

@charset "UTF-8";

/*= @forms radio and checkbox styling ======================================== */

/* ===== https://www.w3schools.com/howto/howto_css_custom_checkbox.asp ======= */

input[type=radio] {
  padding: 10px;
  margin: 15px 15px 0 0;
}

/* The container  */

.form__selection-container {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-top: 10px;
}

/* Hide the browser's default checkbox */

.form__selection-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */

.form__checkmark {
  position: absolute;
  top: -2px;
  left: 0;
  height: 25px;
  width: 25px;
  xbackground-color: #eee;
  border: solid 1px var(--color__accent-secondary);
}

/* On mouse-over, add a grey background color */

.form__selection-container:hover input ~ .form__checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */

.form__selection-container input:checked ~ .form__checkmark {
  background-color: var(--color__accent-secondary);
}

/* Create the checkmark/indicator (hidden when not checked) */

.form__checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */

.form__selection-container input:checked ~ .form__checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */

.form__selection-container .form__checkmark:after {
  left: 7.5px;
  top: 3px;
  width: 8px;
  height: 15px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

input,
textarea,
date {
  padding: 10px 15px;
  border-radius: 10px;
}

.sib-date {
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-width: 150px;
  min-height: 42px;
  border: 1px solid #bbb;
  margin: 5px 0 0 0;
}

/*= @vars ======================================== */

.wpcf7 .wpcf7-list-item:first-child {
  margin-top: 30px;
}

:root {
  /*====== colors =======*/
  --color__accent: #EA9042;
  /* color orange normal */
  --color__accent--darker: #e27515;
  --color__accent-secondary: #0071be;
  --color__accent-secondary--darker: #024A7B;
  --color__primary: #0271BE;
  --color__secondary: #e6eef7;
  --bg-light__color: #fff;
  --bg-darker__color: #eee;
  --header__txt-color: var(--color__accent-secondary);
  --body__txt-color: #3a3a3a;
  --color__orange--lighter: #FFA764;
  /* color orange lighter */
  --color__orange--darker: #c37611;
  /* color orange lighter */
  --color__orange: var(--color__accent);
  --color__blue: var(--color__accent-secondary);
  --color__blue--darker: var(--color__accent-secondary--darker);
  /*====== fonts =======*/
  --font__header: 'Nunito', Arial, Helvetica, sans-serif;
  --font__body: 'Nunito Sans', Arial, Helvetica, sans-serif;
  /*====== menu horizontal (container) =======*/
  --menu__height: 80px;
  --menu__background-color: white;
  --menu__shadow: 0px 30px 50px 0px rgba(0,0,0,0.03);
  --menu__logo-height: calc(var(--menu__height)*.7);
  /* a procentage of the menu height */
  --menu__logo-width: auto;
  /*====== menu txt =======*/
  --menu__txt-color: inherit;
  --menu__txt-color--hover: var(--color__accent--darker);
  --menu__txt-color--active: var(--color__accent--darker);
  --menu__font-size: 1.1em;
  --menu__font-weight: 700;
  --menu__font-family: 'Nunito', sans-serif;
  --menu__padding-vertical: 0.7em;
  --menu__padding-horizontal: 1.5em;
  /*====== button =======*/
  /* reset oxy default button radius in settings > links > btn */
  --btn__color: var(--color__accent);
  --btn__color--hover: var(--color__accent--darker);
  --btn__border: 2px;
  --btn__border-radius: 500px;
  /* for circle ending insert 500px */
  --btn__txt-color: white;
  --btn__txt-padding-vertical: 10px;
  --btn__txt-padding-horizontal: 20px;
  --btn__margin-top: 30px;
  --btn__color--inverse: white;
  --btn__color--hover--inverse: var(--btn__color--hover);
  --btn__txt-color--inverse: var(--color__accent);
  /*====== padding =======*/
  --padding: 8vw;
  /*====== margins =======*/
  --margin__outer: var(--padding);
  --margin__hero: 30%;
  /*====== hero =======*/
  --hero__height: 100vh;
  /*calc(100vh - var(--menu__height));*/
  --hero__width: 100vw;
  --hero__content-width: 80%;
  --hero__content-max-width: 600px;
  --hero__margin: 10%;
  /*====== features =======*/
  --feature-item__width: unset;
  --feature-item__max-width: unset;
  --feature-item__icon-color: var(--color__accent);
  --feature-item__icon-width: 60px;
}

/*====== END OF VARS ==================================================*/

/*= @reset browser defaults ===================== */

a {
  cursor: default;
  -webkit-transition: color .2s, border-color .2s, background .2s, transform .2s;
  transition: color .2s, border-color .2s, background .2s, transform .2s;
  -webkit-transition-timing-function: cubic-bezier(0.51, 0.92, 0.24, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.51, 0.92, 0.24, 1.15);
  -o-transition-timing-function: cubic-bezier(0.51, 0.92, 0.24, 1.15);
  -webkit-transition-timing-function: cubic-bezier(0.51, 0.92, 0.24, 1.15);
  transition-timing-function: cubic-bezier(0.51, 0.92, 0.24, 1.15);
  /* custom */
}

img {
  display: block;
}

p {
  display: block;
  margin-block-start: 0em;
  margin-block-end: .0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  margin-bottom: .7em;
  z-index: 100;
}

p:last-child {
  margin-bottom: 0;
}

body {
  line-height: 1.35;
  width: 100vw;
  overflow-x: hidden;
  overscroll-behavior: none;
}

h1,
h2,
h3,
h4,
h5 {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: -.08em;
  margin-inline-end: 0;
}

.ct-inner-content {
  xposition: absolute;
  xoverflow-x: hidden;
}

/*= @reset oxy defaults ============ */

.ct-section-inner-wrap {
  padding: 0;
  margin: 0;
}

/*= @set defaults ============ */

.ct-code-block svg {
  width: 100%;
}

.ct-section > .ct-section-inner-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: unset;
  align-items: unset;
  margin: auto;
  xmin-width: 100%;
}

.ct-section-inner-wrap,
.oxy-header-container {
  max-width: unset;
}

.ct-section {
  xflex-direction: column;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  xalign-items: center;
  xjustify-content: center;
}

.oxy-rich-text p,
.ct-text-block p,
.ct-headline p {
  margin-bottom: .8em;
}

.oxy-rich-text p:last-child,
.ct-text-block p:last-child,
.ct-headline p:last-child {
  margin-bottom: 0;
}

.oxy-rich-text p:last-child,
.ct-text-block p:last-child {
  margin-bottom: 0;
}

.oxy-rich-text p:first-child,
.ct-text-block p:first-child {
  margin-top: 0;
}

/*====== margins =======*/

.margin__outer {
  padding: var(--margin__outer);
}

.margin__outer--horizontal {
  padding-left: var(--margin__outer);
  padding-right: var(--margin__outer);
}

.margin__outer--bottom {
  padding-bottom: var(--margin__outer);
}

.margin__outer--top {
  padding-top: var(--margin__outer);
}

.margin__outer--big {
  padding: calc(var(--margin__outer)*2.5) calc(var(--margin__outer)*2.5) calc(var(--margin__outer)*3);
}

.margin-bottom--0 {
  margin-bottom: 0 !important;
}

.margin-top--0 {
  margin-top: 0 !important;
}

/*====== padding =======*/

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

.padding-horizontal {
  padding-left: var(--padding);
  padding-right: var(--padding);
}

.padding-bottom {
  padding-bottom: var(--padding);
}

.padding-top {
  padding-top: var(--padding);
}

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

.padding-big {
  padding: calc(var(--padding)*2.5) calc(var(--padding)*2.5) calc(var(--padding)*3);
}

.padding-bottom--0 {
  margin-bottom: 0 !important;
}

.padding-top--0 {
  margin-top: 0 !important;
}

/*====== background =======*/

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

.bg-darker {
  background-color: var(--bg-darker__color);
}

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

/*====== txt-color =======*/

.bg-dark .ct-headline,
.bg-dark .oxy-rich-text,
.bg-dark .ct-text-block {
  color: white;
}

/*= @header ============ */

.header__s,
h4,
h3 {
  font-family: var(--font__header);
  font-size: calc(1.1vh + 9px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: .8em;
  margin-top: -.3em;
  color: var(--header__txt-color);
}

.header__l,
h2 {
  font-family: var(--font__header);
  font-size: calc(2vh + 12px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: .6em;
  margin-top: -.3em;
  color: var(--header__txt-color);
}

.header__xl,
h1 {
  font-family: var(--font__header);
  font-size: calc(2vh + 17px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: .8em;
  margin-top: -.3em;
  color: var(--header__txt-color);
}

.txt-center {
  width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.content-left > .ct-section-inner-wrap {
  margin-left: 0;
}

/*= @btn buttons ======================================== */

.ct-link-button {
  background-color: var(--btn__color);
  border: var(--btn__border) solid;
  border-color: var(--btn__color);
  color: var(--btn__txt-color);
  padding: var(--btn__txt-padding-vertical) var(--btn__txt-padding-horizontal);
  border-radius: var(--btn__border-radius);
  margin-top: var(--btn__margin-top);
}

.ct-link-button:hover {
  background: var(--color__accent--darker);
  border-color: var(--color__accent--darker);
  -webkit-transition: .25s;
  transition: .25s;
}

.bg-dark .ct-link-button {
  background-color: var(--btn__color--inverse);
  border-color: var(--btn__color--inverse);
  color: var(--btn__txt-color--inverse);
  border-radius: var(--btn__border-radius);
  margin-top: var(--btn__margin-top);
}

.bg-dark .ct-link-button:hover {
  background: var(--color__accent--darker);
  border-color: var(--color__accent--darker);
  color: var(--btn__color--inverse);
  -webkit-transition: .25s;
  transition: .25s;
}

.btn--ghost:not(:hover) {
  background-color: transparent !important;
  color: var(--btn__color);
}

.bg-dark .btn--ghost {
  color: var(--btn__color--inverse);
}

.btn-pair {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.btn-pair .ct-link-button {
  margin-top: 1.5em;
  margin-right: 1.5em;
}

/*
.btn-pair {
    margin-top: var(--btn__margin-top);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    column-gap: 24px;
    row-gap: 1.5em;
    width: 100%;
}
*/

/*

minmax(100px, 1fr);

.btn-pair {
    margin-top: var(--btn__margin-top);
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 200px));
    column-gap: 30px;
    row-gap: 1em;
}



.btn-pair {
    width: 520px;
    min-width: 320px;
    margin-top: var(--btn__margin-top);
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 260px));
    column-gap: 30px;
    row-gap: 1em;
}

*/

.ct-code-block svg {
  vertical-align: top;
}

/*= @menu desktop ======================================== */

.menu--horizontal {
  width: 100%;
  height: var(--menu__height);
  background: var(--menu__background-color);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  box-shadow: var(--menu__shadow);
  z-index: 10;
  position: fixed;
  top: 0;
  padding-left: var(--margin__outer);
  padding-right: var(--margin__outer);
}

@media only screen and (max-width: 1280px) {
  .menu--horizontal {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.menu--horizontal .menu__container {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
}

.menu--horizontal .logo svg {
  height: var(--menu__logo-height);
  width: var(--menu__logo-width);
}

/* change brighnes on hover */

.menu--horizontal .logo {
  filter: brightness(100%);
  -webkit-transition: ease-in .2s;
  transition: ease-in .2s;
}

.menu--horizontal .logo:hover {
  filter: brightness(80%);
  -webkit-transition: ease-in .2s;
  transition: ease-in .2s;
}

.menu__container .ct-link-button {
  /*resets default top margin for a btn*/
  margin-top: 0;
  font-weight: var(--menu__font-weight);
  font-family: var(--menu__font-family);
  /*makes btn smaller*/
  padding: calc(0.9 * var(--btn__txt-padding-vertical)) calc(0.9 * var(--btn__txt-padding-horizontal));
}

.menu__txt {
  /*reset list defaults*/
  list-style: none;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 0;
  cursor: default;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  -webkit-padding-start: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.menu__txt a {
  display: inline-block;
  color: var(--menu__txt-color);
  font-size: var(--menu__font-size);
  font-weight: var(--menu__font-weight);
  -webkit-transition: color 0.1s ease;
  transition: color 0.1s ease;
  padding-top: calc(var(--menu__padding-vertical)/2);
  padding-bottom: calc(var(--menu__padding-vertical)/2);
  padding-left: calc(var(--menu__padding-horizontal)/2);
  padding-right: calc(var(--menu__padding-horizontal)/2);
}

.menu__txt a:active {
  color: var(--menu__txt-color--active);
}

.menu__txt a:hover {
  color: var(--menu__txt-color--hover);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.menu__txt > li:first-child a {
  padding-left: 0;
}

.menu__txt > li:last-child a {
  padding-right: 0;
}

.menu__txt > li:last-child a {
  padding-right: var(--menu__padding-horizontal);
}

/* ---------- this is for vertical menu */

/* add ".menu--vertical" class to shortcode block */

.menu--vertical {
  /*mobile-menu*/
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.menu--vertical .menu__txt {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

/*= @mobile menu off-canvas [uporzadkowoac] ======================================== */

/* mobile menu */

.menu-mobile-off-canvas .menu-txt li {
  padding-left: 0;
  padding-right: 0;
}

.menu-mobile-off-canvas .menu-txt a:active {
  color: white;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.menu-mobile-off-canvas a:hover {
  color: unset;
}

@media only screen and (max-width: 350px) {
  #-off-canvas-97-14 .offcanvas-inner {
    padding-left: 30px;
    padding-right: 30px;
    xpadding-top: 15px;
    padding-bottom: 60px;
  }
}

/*= @mobile menu BOTTOM BAR ======================================== */

#footer-menu-bar {
  display: none;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  background-color: white;
  width: 100%;
  max-width: 500px;
  height: 65px;
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  text-align: justify;
  z-index: 10;
}

.footer-menu-item {
  color: #545454;
  width: 20%;
  height: 100%;
  text-align: center;
  padding-bottom: 6px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.footer-menu-item .ct-text-block {
  font-size: 13px;
  font-weight: 600;
  color: currentColor;
}

.footer-menu-item svg {
  fill: none;
  width: 28px;
  height: auto;
}

.footer-menu-item .ct-code-block {
  line-height: 0;
}

.footer-menu-item svg path {
  stroke-width: 2;
  stroke: currentColor;
}

.footer-menu-item.active {
  color: white;
  background-color: var(--color__accent);
}

.footer-menu-item .ab-cart-count {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  top: 5px;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  color: white;
  background-color: #E6485D;
  font-size: 14px;
  font-weight: 800;
}

@media screen and (max-width: 992px) {
  .menu__container {
    display: none;
  }

  #footer-menu-bar {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}

/*= @hero ======================================== */

.hero__container {
  height: var(--hero__height);
  width: 100%;
  background: grey;
}

.hero__content {
  width: var(--hero__content-width);
  max-width: var(--hero__content-width);
  margin-left: var(--hero__margin);
  margin-top: auto;
  margin-bottom: auto;
  margin-right: auto;
  xz-index: 1;
}

.hero__container img {
  width: var(--hero__width);
  height: var(--hero__height);
  object-fit: cover;
  position: absolute;
  top: 0;
  /*var(--menu__height) --- if you want image to start UNDER menu*/
  xz-index: 0;
}

/*= @col__2 alternating ======================================== */

.col__2 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  /* align-items: stretch;  */
  width: 100%;
}

.col__2--alternating:nth-child(even) {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.col__2 .single-column {
  width: 50%;
}

.col__2 .single-column__txt {
  padding: calc(var(--margin__outer)*3) calc(var(--margin__outer)*4) calc(var(--margin__outer)*3.5);
}

@media screen and (max-width: 1024px) {
  .col__2,
  .col__2--alternating:nth-child(even) {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .col__2 .single-column {
    width: 100%;
  }

  .col__2 .single-column--img {
    height: 60vw;
  }
}

.col__3 {
  margin-top: var(--btn__margin-top);
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 260px));
  grid-column-gap: 50px;
  column-gap: 50px;
  grid-row-gap: 1em;
  row-gap: 1em;
}

/*= @features ======================================== */

.col__4 {
  xxwidth: 80%;
  xmax-width: 80%;
  xxmargin: auto;
  xxmin-width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(200px, 250px));
  grid-column-gap: 2vw;
  column-gap: 2vw;
  grid-row-gap: calc(2vw);
  row-gap: calc(2vw);
  xxalign-items: center;
  xxjustify-items: center;
  /* adjusted */
}

@media screen and (max-width: 1024px) {
  .col__4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 490px) {
  .col__4 {
    grid-template-columns: 1fr;
  }
}

.features-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 200px));
  grid-column-gap: 3vw;
  column-gap: 3vw;
  xmax-width: 900px;
  xxalign-items: center;
  xxjustify-items: center;
  /* adjusted */
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 760px) {
  .features-4 {
    grid-template-columns: repeat(2, minmax(130px, 200px));
    grid-column-gap: 2vh;
    column-gap: 2vh;
    grid-row-gap: 2vh;
    row-gap: 2vh;
    pointer-events: none;
  }
}

@media screen and (max-width: 490px) {
  .col__4 {
    grid-template-columns: 1fr;
  }
}

.col__gap-m {
  xcolumn-gap: 6vw;
  /*wider gap*/
}

.col__4 a:hover {
  transform: scale(1.1);
  -webkit-transition: transform .3s;
  transition: transform .3s;
}

.feature-item__container {
  max-width: 200px;
}

.square {
  min-width: 200px;
  color: #FFFFFF;
}

.square:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.square > * {
  position: absolute;
}

/*
.features__content--4-items {
    width: 90%;
    margin: auto;
    max-width: calc(var(--feature-item__width)*4.5);
    background: pink !important;
    
    flex-direction: row;
    display: flex;
    text-align: center;
    align-items: space-between;
}
*/

.feature-item__container {
  xwidth: var(--feature-item__width);
  xmax-width: var(--feature-item__max-width);
  height: 100%;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin: auto;
  /*    
    svg {
        fill: var(--feature-item__icon-color);
        width: var(--feature-item__icon-width);
        margin-bottom: calc(var(--feature-item__icon-width)/4);
    }


*/
}

/*= @cta ======================================== */

/*= @cf7 Contact form 7 ============ */

.xcontact-form__content .oxy-rich-text p {
  margin-block-start: 0em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  margin-top: -.5em;
}

.contact-form__content a {
  color: black;
}

.contact-form__content a:hover {
  color: var(--color__accent);
}

div.wpcf7 {
  --cf-font-color: black;
  --cf-font-family: unset;
  --cf-font-size: 16px;
  --cf-font-weight: 300;
  --cf-input-field-background-color: white;
  --cf-input-field-border-color: grey;
  --cf-input-field-border-width: 1px;
  --cf-input-field-border-style: solid;
  --cf-input-field-padding: 10px 15px;
  --cf-input-field-font-color: var(--cf-font-color);
  --cf-input-field-font-family: var(--cf-font-family);
  --cf-input-field-font-size: var(--cf-font-size);
  --cf-input-field-font-weight: var(--cf-font-weight);
  --cf-input-field-placeholder-font-color: var(--cf-font-color);
  --cf-message-box-background-color: var(--cf-message-box-background-color);
  --cf-message-box-padding: var(--cf-input-field-padding);
  xmax-width: calc(100vw - 100px);
}

/* Contact form 7 >> reset blue border */

textarea:hover,
input:hover,
textarea:active,
input:active,
textarea:focus,
input:focus,
button:focus,
button:active,
button:hover,
label:focus,
.btn:active,
.wpcf7 input.wpcf7-submit[type=submit]:active,
.btn.active,
.wpcf7 input.active.wpcf7-submit[type=submit] {
  outline: 0px !important;
  /*-webkit-appearance:none;*/
  box-shadow: none !important;
}

/* Contact form 7 >> general definition of input fields */

/* Contact form 7 >> Form Paragraph */

.wpcf7 p {
  position: relative;
  overflow: hidden;
  display: block;
  margin-block-start: 0;
  margin-block-end: 30px;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

/* Contact form 7 >> Form Field Wrapper */

.wpcf7 span.wpcf7-form-control-wrap {
  position: static;
}

/* Contact form 7 >> Form Input Field */

.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=file],
.wpcf7 textarea,
.wpcf7 select {
  padding: var(--cf-input-field-padding);
  font-family: var(--cf-input-field-font-family);
  color: var(--cf-input-field-font-color);
  font-size: var(--cf-input-field-font-size);
  font-weight: var(--cf-input-field-font-weight);
  background-color: var(--cf-input-field-background-color);
  min-width: 100%;
  max-width: 100%;
  border-width: var(--cf-input-field-border-width);
  border-style: var(--cf-input-field-border-style);
  border-color: var(--cf-input-field-border-color);
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

/* Contact form 7 >> Drop down menu arrow */

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: var(--cf-input-field-placeholder-font-color);
}

/* Contact form 7 >> Drop down menu arrow */

.wpcf7 select {
  appearance: none;
  /* -webkit-appearance: none; */
  -moz-appearance: none;
  /*
	background: url('data:image/svg+xml;charset=utf-8,
	<svg xmlns="http://www.w3.org/2000/svg" width="96.2" height="96.2" fill="var(--cf-input-field-text-color)">
	<path d="M.6 21l46 57.6a2 2 0 003 0l46-57.6a2.9 2.9 0 00.2-3 2 2 0 00-1.7-1.1H2a2 2 0 00-1.8 1l-.2.4c-.2 1 0 2 .5 2.7z"/></svg>') 98.5% / 5% no-repeat; background-color: var(--cf-input-field-background-color);
*/
}

.wpcf7 select::-ms-expand {
  display: none;
}

/* Contact form 7 >> Checkbox or Radio Button Wrapper */

.wpcf7 .wpcf7-list-item {
  xwidth: 66%;
  position: relative;
  bottom: 25px;
  display: block;
  margin: 0;
}

/* Contact form 7 >> Quiz Question Label */

.wpcf7 .wpcf7-quiz-label {
  display: block;
}

/* Contact form 7 >> Captcha Image */

.wpcf7 img.wpcf7-captchac {
  border-color: #FFFFFF;
  border-width: 4px;
  display: block;
}

/* Contact form 7 >> Form Submit Button */

/* Contact form 7 >> Form Field Error Highlight (if ajax) */

span.wpcf7-not-valid-tip {
  xtext-indent: 9999px;
  background-color: transparent;
  background-image: url("https://altra.edu.pl/wp-content/uploads/red-50-2.png");
  xwidth: 65%;
  position: absolute;
  top: 0;
  left: 38%;
  right: 0;
  display: block;
  xpadding: var(--cf-input-field-padding);
  opacity: 0;
}

/* Contact form 7 >> Form Field Error Message (if no ajax) */

span.wpcf7-not-valid-tip-no-ajax {
  text-align: right;
  width: 63%;
  display: block;
}

/* Contact form 7 >> Ajax Message */

div.wpcf7-response-output {
  background-color: var(--cf-message-box-background-color);
}

.wpcf7 form .wpcf7-response-output {
  margin: 0;
  padding: var(--cf-message-box-padding);
  border: 2px solid #00a0d2;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
}

/*= @design-specyfic css ======================================== */

.xxx_blob__blue--multiply {
  fill: #EBF7FF;
  mix-blend-mode: multiply;
}

.xxx_blob__blue--lighter {
  fill: #F3F9FF;
}

.xxx_blob__orange {
  fill: #FDAF74;
}

a {
  color: var(--color__accent--darker);
}

.oxy-rich-text,
.ct-text-block,
.ct-headline,
.ct-link-button {
  z-index: 9;
}

.xxx_blob__orange-bg {
  background: #FDAF74;
}

.col__2 img {
  width: 30%;
}

.col__2 .blob-features-txt {
  width: 50%;
}

.col__2 .single-column {
  width: 50%;
}

.col__2 .single-column__txt {
  padding: calc(var(--margin__outer)*3) calc(var(--margin__outer)*4) calc(var(--margin__outer)*3.5);
}

@media screen and (max-width: 1024px) {
  .col__2,
  .col__2--alternating:nth-child(even) {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .col__2 .single-column {
    width: 100%;
  }

  .col__2 .single-column--img {
    height: 60vw;
  }
}

/* =========== blobs ==================== */

.xxx_features {
  display: inline-block;
  width: 100%;
  position: relative;
  margin-bottom: 5vw;
}

.xxx_features img {
  width: 70%;
  float: left;
}

.xxx_features .blob-features-txt {
  width: 60%;
  min-width: 400px;
  position: absolute;
  right: 0;
}

.xxx_features:nth-child(even) img {
  float: right;
}

.xxx_features:nth-child(even) .blob-features-txt {
  left: 0;
}

.blob__svg {
  width: 0;
  height: 0;
  filter: hue-rotate(0deg);
}

/* =========== zmniejszenie marginesow na features dla ipad w pionie */

@media only screen and (max-width: 770px) {
  #section-157-90 {
    width: 126%;
    margin-left: -13%;
    padding-bottom: 150px;
  }
}

/* =========== blob txt ==================== */

.blob-features-txt {
  clip-path: url(#blob-features-txt__path);
  -webkit-clip-path: url(#blob-features-txt__path);
  background: white;
}

.blob-features-txt__content {
  margin: 90px 90px 90px 100px;
}

#span-306-90 {
  margin-bottom: 20px;
}

.blob-features-txt__content .ct-link-text {
  font-weight: 700;
  margin-top: 1.2em;
}

/* add arrow after the link - use https://yoksel.github.io/url-encoder/ to encode SVG 
read more - svg as mask https://codepen.io/noahblon/post/coloring-svgs-in-css-background-images
remember to change fill color by hand
*/

/*
.blob-features-txt .ct-link-text::after {
      content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 14'%3E%3Cpath d='M23.7 7.7c.4-.4.4-1 0-1.3l-6-6c-.4-.4-1-.4-1.3 0-.4.4-.4 1 0 1.3L21.7 7l-5.4 5.4c-.4.4-.4 1 0 1.3.4.4 1 .4 1.3 0l6.1-6zM1 8h22V6H1v2zM0 7c0 .5.4 1 1 1s1-.4 1-1-.5-1-1-1-1 .5-1 1z' fill='%23e27515'/%3E%3C/svg%3E");
    display:inline-block;
    width:1.8em;
    height:auto;
    padding: .15em 0 0 .5em;
}
*/

.text-link__arrow {
  fill: red !important;
}

/* =========== blob shapes ==================== */

.blob-hero {
  clip-path: url(#blob-hero__path);
  -webkit-clip-path: url(#blob-hero__path);
}

.blob-features-nauka {
  clip-path: url(#blob-features-nauka__path);
  -webkit-clip-path: url(#blob-features-nauka__path);
}

.blob-features-relacje {
  clip-path: url(#blob-features-relacje__path);
  -webkit-clip-path: url(#blob-features-relacje__path);
}

.blob-features-samodzielnosc {
  clip-path: url(#blob-features-samodzielnosc__path);
  -webkit-clip-path: url(#blob-features-samodzielnosc__path);
}

.blob-features-zdrowie {
  clip-path: url(#blob-features-zdrowie__path);
  -webkit-clip-path: url(#blob-features-zdrowie__path);
}

.blob-tv {
  clip-path: url(#blob-tv__path);
  -webkit-clip-path: url(#blob-tv__path);
}

.luk-gora {
  clip-path: url(#luk-gora__path);
  -webkit-clip-path: url(#luk-gora__path);
}

@media only screen and (max-width: 992px) {
  .blob-features-nauka,
  .blob-features-relacje,
  .blob-features-samodzielnosc,
  .blob-features-zdrowie,
  .blob-hero {
    clip-path: url(#blob-features-mobile__path);
    -webkit-clip-path: url(#blob-features-mobile__path);
    margin-bottom: 20px;
    width: 100vw;
    height: auto;
  }

  .features-mobile a {
    margin-top: 1em;
    margin-bottom: 4em;
  }

  .blob-hero-txt {
    min-width: 100vw !important;
  }

  .hero--two-columns {
    -webkit-flex-direction: column !important;
    -moz-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  #code_block-224-90,
  #div_block-237-90 {
    background: var(--color__secondary);
  }

  #div_block-237-90 img {
    position: relative;
    top: -5rem;
  }

  #poznaj-szkole .ct-headline {
    margin-top: 0;
  }
}

.features-mobile {
  margin-top: calc(-8rem - 12vw);
}

@media only screen and (min-width: 992px) {
  .features-mobile {
    display: none !important;
  }
}

/* =========== hero blobs ==================== */

.blob-hero-txt {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 616 569' preserveAspectRatio='none'%3E%3Cpath fill='%23F3F9FF' d='M-180.6 302.4c-29-75 31.9-115.2 91.3-153.1C76.1 43.5 277.3-41.1 467.6 54.9c86 43.4 148.3 124 147.8 218.5-.4 80.6-55.1 152.4-111 198.6-83.4 69-137.6 98.7-246.3 96.7-59.8-1-108.4-22.7-152-62C86.4 489 50.4 397.3-18.1 377.5c-76.3-22-149.7-42-162.5-75.1z'/%3E%3Cpath fill='%23e6f0f9' mix-blend-mode='multiply' d='M160.4 532A350.5 350.5 0 01-128 327.6c-54.3-117.9 2.2-269 79.6-302.3 77.5-33.4 153.6.7 217.6 30.1 67.6 31 139.8 13.2 212 17.4 59.8 3.6 125.3 13.5 164 67.5 36.8 51 32.1 121.8 4.4 176C483 447 298.4 542.5 160.4 532z'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-top: calc(.5 * var(--margin__outer));
  min-width: 450px;
  width: 45vw;
  max-width: 800px;
  padding: 8vw 12vw 8vw var(--margin__outer);
}

.blob-hero-txt .btn-pair .ct-link-button {
  min-width: 150px;
}

.blob-hero-txt .btn-pair {
  min-width: 50vw;
  max-width: 100%;
}

.blob-hero-txt .header__s {
  max-width: 300px;
}

.blob-hero-image {
  xposition: relative;
  top: 5vw;
  width: 130%;
  xeft: 50vw;
}

.blob-hero-image img {
  width: 100%;
}

/* =========== hero blobs END ==================== */

/* =========== section centered ==================== */

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

.features-desktop {
  padding-left: 50px;
  padding-right: 50px;
  z-index: 3;
  position: relative;
}

.features-desktop .xxx_features {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  min-height: 20rem;
  z-index: 100;
}

@media only screen and (max-width: 992px) {
  #poznaj-szkole {
    margin-top: -8rem;
  }
}

.section--center > .ct-section-inner-wrap > .ct-headline {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.btn--blue {
  background-color: var(--color__accent-secondary);
  border-color: var(--color__accent-secondary);
}

.btn--blue:hover {
  background: var(--color__accent-secondary--darker);
  border-color: var(--color__accent-secondary--darker);
  -webkit-transition: .25s;
  transition: .25s;
}

.txt--blue {
  color: var(--color__accent-secondary);
}

.bg--accent {
  background: var(--color__accent);
}

#sib-container,
.sib-form,
.sib-form-block {
  padding: 0 !important;
}

.ct-text-block strong {
  letter-spacing: .2px;
}

.oxy-rich-text ul,
.ct-text-block ul {
  line-height: 1.2;
  list-style-type: square;
  padding: 0;
  margin: 0;
  margin-left: 1.2em;
}

.oxy-rich-text li,
.ct-text-block li {
  margin-bottom: .8em;
}

.oxy-rich-text li:last-child,
.ct-text-block li:last-child {
  margin-bottom: 0;
}

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

/* -----------------TEXT COLORS */

/* on WHITE bg (standard) ------- */

/* -----------------bold*/

strong {
  letter-spacing: .2px;
}

/* -----------------italics*/

em,
h4 {
  color: var(--color__orange);
  font-style: normal;
}

/* -----------------links*/

.ct-text-block a {
  color: var(--color__orange);
}

.ct-text-block a:hover {
  color: var(--color__orange--darker);
}

/* on ORANGE bg ------- */

.orange {
  /* -----------------text color*/
  /* -----------------italics*/
  /* -----------------links*/
}

.orange .ct-text-block,
.orange .ct-headline {
  color: #245473;
}

.orange em {
  color: white;
}

.orange a {
  color: white;
}

/* on BLUE bg ------- */

.blue {
  /* -----------------text color*/
  /* -----------------italics*/
}

.blue .ct-text-block,
.blue .ct-headline {
  color: var(--color__blue);
}

.blue em {
  color: var(--color__orange);
}

/* -----------------ŁUK height definition*/

:root {
  --clip-luk__height: calc(.6 * var(--padding));
}

.xhero__txt-container {
  padding-left: var(--padding);
  padding-right: var(--padding);
  padding-top: var(--padding);
  padding-bottom: calc(.5 * var(--padding));
}

.hero__txt-container {
  padding: var(--padding) calc(.9 * var(--padding)) calc(.8 * var(--padding)) calc(.9 * var(--padding));
}

.hero__txt-orange .hero__txt-container {
  padding: var(--padding) calc(.7 * var(--padding)) calc(.8 * var(--padding)) calc(.8 * var(--padding));
}

/* -----------------HERO txt blue----START----*/

.hero__txt-blue {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 616 569' preserveAspectRatio='none'%3E%3Cpath fill='%23F3F9FF' d='M-180.6 302.4c-29-75 31.9-115.2 91.3-153.1C76.1 43.5 277.3-41.1 467.6 54.9c86 43.4 148.3 124 147.8 218.5-.4 80.6-55.1 152.4-111 198.6-83.4 69-137.6 98.7-246.3 96.7-59.8-1-108.4-22.7-152-62C86.4 489 50.4 397.3-18.1 377.5c-76.3-22-149.7-42-162.5-75.1z'/%3E%3Cpath fill='%23e6f0f9' mix-blend-mode='multiply' d='M160.4 532A350.5 350.5 0 01-128 327.6c-54.3-117.9 2.2-269 79.6-302.3 77.5-33.4 153.6.7 217.6 30.1 67.6 31 139.8 13.2 212 17.4 59.8 3.6 125.3 13.5 164 67.5 36.8 51 32.1 121.8 4.4 176C483 447 298.4 542.5 160.4 532z'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-top: calc(.5 * var(--padding));
  min-width: 450px;
  width: 45vw;
  max-width: 800px;
}

.hero__txt-blue .hero__txt-container {
  max-width: 500px;
}

.hero__txt-blue h4:not(:first-child),
.hero__txt-blue h3:not(:first-child),
.hero__txt-blue h2:not(:first-child),
.hero__txt-blue h1:not(:first-child) {
  margin-top: 1em;
  margin-bottom: .2em;
}

.hero__txt-blue h4,
.hero__txt-blue h3,
.hero__txt-blue h2,
.hero__txt-blue h1 {
  margin-bottom: .5em;
}

@media only screen and (min-width: 771px) {
  .hero__txt-blue {
    position: absolute;
    top: calc(.5 * var(--padding));
  }
}

@media only screen and (max-width: 770px) {
  .hero__txt-blue {
    padding: 12vw 12vw 12vw var(--padding);
    width: 93vw;
    min-width: unset;
  }
}

/* -----------------HERO txt blue----END----*/

.current-menu-item:not(.current_page_item) {
  color: var(--color__orange);
}

/* -----------------HERO txt orange----START*/

.hero__txt-orange {
  background: var(--color__orange--lighter);
  z-index: 6;
}

@media only screen and (min-width: 771px) {
  .hero__txt-orange {
    width: 34vw;
    max-width: 500px;
    position: absolute;
    left: 28vw;
    top: 45vh;
    clip-path: url(#hero__orange-blob);
    -webkit-clip-path: url(#hero__orange-blob);
  }
}

@media only screen and (max-width: 770px) {
  .hero__txt-orange {
    margin-top: -27vw;
    text-align: center;
    width: 100%;
  }

  .hero__txt-container {
    padding-bottom: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__txt-orange::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: var(--clip-luk__height);
    background-color: inherit;
    position: relative;
    top: calc(-0.98 * var(--clip-luk__height));
    clip-path: url(#luk-gora__path);
    -webkit-clip-path: url(#luk-gora__path);
  }

  .hero__txt-orange::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: calc(2 * var(--clip-luk__height));
    background: inherit;
    position: relative;
    bottom: calc(-1.98 * var(--clip-luk__height));
    clip-path: url(#luk-dol__path);
    -webkit-clip-path: url(#luk-dol__path);
  }
}

/* -----------------HERO txt orange----END*/

/* -----------------HERO img----START----*/

.hero__img {
  clip-path: url(#blob-hero__path);
  -webkit-clip-path: url(#blob-hero__path);
}

@media only screen and (min-width: 771px) {
  .hero__img {
    position: relative;
    min-width: 40vw;
    max-width: 60vw;
    top: 0;
    left: 50vw;
    margin-top: var(--padding);
    margin-bottom: calc(.5 * var(--padding));
  }
}

@media only screen and (max-width: 770px) {
  .hero__img {
    position: static;
    margin-left: 0;
    margin-top: 1vw;
    max-width: initial;
    width: 100vw;
    margin-bottom: 17vw;
    clip-path: url(#blob-features-mobile__path);
    -webkit-clip-path: url(#blob-features-mobile__path);
  }
}

/* -----------------HERO img----END----*/

/* -----------------INFO----START----*/

@media only screen and (min-width: 771px) {
  .info__item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    width: 100vw;
  }

  .info__item:nth-child(even) {
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .info {
    margin-top: -10px;
  }

  .info__txt,
  .info__img {
    width: 50vw;
    xmax-height: 30vw;
    margin-bottom: 2vw;
  }

  /* -----------------INFO----img----*/

  .info__img img {
    width: 55vw;
    margin-top: -5vw;
    xheight: 35vw;
    xheight: 40vw;
    max-width: unset;
    object-fit: cover;
  }

  .info__item:nth-child(odd) .info__txt-content {
    padding-left: 0;
  }

  .info__item:nth-child(odd) .info__img {
    margin-right: calc(.6 * var(--padding));
    -webkit-align-items: flex-end;
    align-items: flex-end;
  }
}

.info__txt-content {
  padding: 0 var(--padding) var(--padding) var(--padding);
}

.info__txt h4 {
  margin-top: 2em;
}

.info__txt h4:first-child {
  margin-top: .5em;
}

@media only screen and (max-width: 770px) {
  .info img {
    width: 100vw;
    height: 80vw;
    object-fit: cover;
    clip-path: url(#blob-features-mobile__path);
    -webkit-clip-path: url(#blob-features-mobile__path);
    z-index: 5;
    min-width: 100%;
  }
}

/* -----------------INFO----END----*/

#footer-menu-bar {
  display: none;
}

/* -----------------specjalista photo size definition*/

:root {
  --spacjalista__img-size: min(300px, 60vw);
}

.specjalisci {
  width: 100vw;
  max-width: 1000px;
  padding-top: var(--padding);
  padding-bottom: calc(.5 * var(--padding));
  padding-left: calc(.9 * var(--padding));
  padding-right: calc(1.1 * var(--padding));
  margin-left: auto;
  margin-right: auto;
}

.specjalisci__naglowek {
  padding-left: var(--spacjalista__img-size);
  margin-bottom: 5vw;
}

.specjalista {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.specjalista:not(:last-child) {
  margin-bottom: 5vw;
}

.blob-specjalista-1 {
  clip-path: url(#specjalista-1__path);
  -webkit-clip-path: url(#specjalista-1__path);
}

.blob-specjalista-2 {
  clip-path: url(#specjalista-2__path);
  -webkit-clip-path: url(#specjalista-2__path);
}

.blob-specjalista-3 {
  clip-path: url(#specjalista-3__path);
  -webkit-clip-path: url(#specjalista-3__path);
}

.specjalista__img {
  width: var(--spacjalista__img-size);
  height: var(--spacjalista__img-size);
  margin-top: -40px;
  margin-bottom: 30px;
}

.specjalista__txt-content {
  margin-left: 35px;
}

.specjalista .ct-link-text {
  font-weight: 700;
  margin-top: 1.2em;
}

@media only screen and (max-width: 770px) {
  .specjalista__txt-content {
    margin-left: 0;
  }

  .specjalisci {
    width: 100vw;
    max-width: 100vw;
    padding-top: calc(3 * var(--padding));
    padding-bottom: calc(.1 * var(--padding));
    padding-left: calc(.9 * var(--padding));
    padding-right: calc(1.1 * var(--padding));
    margin-left: auto;
    margin-right: auto;
  }

  .specjalisci__naglowek {
    padding-left: 0;
    margin-bottom: 8vw;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .specjalista {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 15vw !important;
  }

  .specjalista__img,
  .specjalista .ct-headline,
  .specjalista .ct-link-text {
    margin-right: auto;
    margin-left: auto;
  }
}

.dyrektor {
  width: 100vw;
  background-image: url("data:image/svg+xml,%3Csvg width='1364' height='990' viewBox='0 0 1364 990' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-341.504 512.133C-403.663 379.435 -273.24 308.493 -146.035 241.371C208.163 54.1936 639.061 -95.3303 1046.54 74.3848C1230.8 151.148 1364.11 293.668 1363 460.837C1362.11 603.448 1245 730.507 1125.46 812.272C946.861 934.329 830.756 986.717 597.991 983.26C469.787 981.35 365.781 943.06 272.32 873.573C230.141 842.195 153.107 680.12 6.47778 645.104C-157.024 606.086 -314.087 570.706 -341.504 512.133Z' fill='%23F3F9FF'/%3E%3Cg style='mix-blend-mode:multiply'%3E%3Cpath d='M243.578 940.924C-19.5124 923.019 -257.087 788.258 -374.1 579.416C-490.438 370.922 -369.355 103.741 -203.549 44.6841C-37.7427 -14.3723 125.212 46.0075 262.393 98.0214C407.079 152.935 561.755 121.28 716.414 128.823C844.477 135.111 984.674 152.564 1067.57 248.118C1146.3 338.509 1136.3 463.655 1076.94 559.465C934.435 790.576 538.93 959.492 243.578 940.924Z' fill='%23EBF7FF'/%3E%3C/g%3E%3C/svg%3E%0A");
  padding-top: calc(.5 * var(--padding));
  padding-bottom: var(--padding);
  background-size: 100%;
}

.rekrutacja {
  min-width: 100vw;
  width: 100%;
  display: inline-block;
  position: relative;
  padding-top: calc(0,5 * var(--padding));
}

.start__rekrutacja-orange {
  background: var(--color__orange--lighter);
  clip-path: url(#start__rekrutacja-orange__path);
  -webkit-clip-path: url(#start__rekrutacja-orange__path);
  width: auto;
  max-width: 60vw;
  float: right;
  margin-top: calc(-4 * var(--padding));
}

.start__rekrutacja-orange .orange {
  margin-top: 10vw;
  padding: var(--padding) calc(1.5 * var(--padding)) var(--padding) calc(2.5 * var(--padding));
  xmin-width: 60vw;
}

.footer {
  width: 100vw;
  min-height: 500px;
  background: #D9DDE0;
}

@media only screen and (max-width: 770px) {
  .start__rekrutacja-orange {
    margin-top: var(--padding);
    width: 100vw;
    clip-path: none;
    -webkit-clip-path: none;
    max-width: 100vw;
  }

  .start__rekrutacja-orange .orange {
    margin-top: 0;
    padding: var(--padding);
  }

  .start__rekrutacja-orange::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: var(--clip-luk__height);
    background-color: inherit;
    position: relative;
    top: calc(-0.98 * var(--clip-luk__height));
    clip-path: url(#luk-gora__path);
    -webkit-clip-path: url(#luk-gora__path);
  }
}

@media only screen and (max-width: 770px) {
  .start__rekrutacja-txt {
    min-width: 100vw !important;
  }
}

/* =========== hero blobs ==================== */

.start__rekrutacja-txt {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 616 569' preserveAspectRatio='none'%3E%3Cpath fill='%23F3F9FF' d='M-180.6 302.4c-29-75 31.9-115.2 91.3-153.1C76.1 43.5 277.3-41.1 467.6 54.9c86 43.4 148.3 124 147.8 218.5-.4 80.6-55.1 152.4-111 198.6-83.4 69-137.6 98.7-246.3 96.7-59.8-1-108.4-22.7-152-62C86.4 489 50.4 397.3-18.1 377.5c-76.3-22-149.7-42-162.5-75.1z'/%3E%3Cpath fill='%23e6f0f9' mix-blend-mode='multiply' d='M160.4 532A350.5 350.5 0 01-128 327.6c-54.3-117.9 2.2-269 79.6-302.3 77.5-33.4 153.6.7 217.6 30.1 67.6 31 139.8 13.2 212 17.4 59.8 3.6 125.3 13.5 164 67.5 36.8 51 32.1 121.8 4.4 176C483 447 298.4 542.5 160.4 532z'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  xbackground: red;
  xposition: relative;
  xtop: 0;
  margin-top: calc(.5 * var(--margin__outer));
  min-width: 250px;
  width: auto;
  max-width: 40vw;
  width: 110%;
  padding: var(--margin__outer);
}

.wpcf7 .your-name,
.wpcf7 .your-email,
.wpcf7 p > .email-125 {
  display: inline-block;
  max-width: 40%;
}

.wpcf7 .your-email {
  float: right;
}

.wpcf7 p > .your-name,
.wpcf7 p > .your-email {
  display: inline-block;
  max-width: 48%;
}

.wpcf7 p > .your-email {
  float: right;
}

@media only screen and (max-width: 600px) {
  .wpcf7 p > .your-name,
  .wpcf7 p > .your-email {
    display: inline-block;
    max-width: 100%;
    min-width: 100%;
    float: left;
  }

  .wpcf7 p > .your-name {
    float: left;
    margin-top: 30px;
  }
}

.cf7-ramka {
  border: none !important;
}

.wpcf7 span .cf7-ramka {
  background: #e6eaed;
}

.margin-top-0 {
  margin-top: 0;
}

.footer__single-link {
  color: #687096;
  font-size: 18px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.footer__left-column a:hover {
  color: var(--color__orange) !important;
}

.footer__header {
  font-size: 24px !important;
}

.menu-vertical .menu__txt {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: var(--font__header);
  color: var(--header__txt-color);
  padding-top: 0px;
}

.menu-vertical .menu__txt > li:first-child a {
  padding-left: calc(var(--menu__padding-horizontal)/2);
}

.menu-vertical .menu__txt a {
  padding-top: .9em;
  padding-bottom: .9em;
}

.drugie-dziecko label::before {
  content: "DRUGIE DZIECKO";
  display: block;
  font-size: .8em;
  letter-spacing: 1px;
  opacity: .8;
  margin-bottom: .3em;
}

.sib_loader {
  background-color: #ffffff96;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  -webkit-transition: background-color 2s linear;
  -ms-transition: background-color 2s linear;
  -webkit-transition: background-color 2s linear;
  transition: background-color 2s linear;
}

.sib_loader img {
  margin-top: 45vh;
  margin-left: auto;
  margin-right: auto;
}

/*
input[type="date"]::-webkit-datetime-edit, input[type="date"]::-webkit-inner-spin-button, input[type="date"]::-webkit-clear-button {
  color: #fff;
  position: relative;
}

input[type="date"]::-webkit-datetime-edit-year-field{
  position: absolute !important;
  border-left:1px solid #8c8c8c;
  padding: 2px;
  color:#000;
  left: 56px;
}

input[type="date"]::-webkit-datetime-edit-month-field{
  position: absolute !important;
  border-left:1px solid #8c8c8c;
  padding: 2px;
  color:#000;
  left: 26px;
}


input[type="date"]::-webkit-datetime-edit-day-field{
  position: absolute !important;
  color:#000;
  padding: 2px;
  left: 4px;
  
}
*/

.nauczyciele {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 40px 4vw;
  gap: 40px 4vw;
}

@media only screen and (max-width: 600px) {
  .wpcf7 p > .your-name,
  .wpcf7 p > .your-email {
    display: inline-block;
    max-width: 100%;
    min-width: 100%;
    float: left;
  }

  .wpcf7 p > .your-name {
    float: left;
    margin-top: 30px;
  }
}

.xdsoft_datetimepicker {
  display: none !important;
}

.wpcf7 .your-name,
.wpcf7 .your-email,
.wpcf7 p > .email-125 {
  display: inline-block;
  max-width: 40%;
}

.wpcf7 .your-email {
  float: right;
}

.wpcf7 p > .your-name,
.wpcf7 p > .your-email {
  display: inline-block;
  max-width: 48%;
}

.wpcf7 p > .your-email {
  float: right;
}

@media only screen and (max-width: 600px) {
  .wpcf7 p > .your-name,
  .wpcf7 p > .your-email {
    display: inline-block;
    max-width: 100%;
    min-width: 100%;
    float: left;
  }

  .wpcf7 p > .your-name {
    float: left;
    margin-top: 30px;
  }
}

.cf7-ramka {
  border: none !important;
}

.wpcf7 span .cf7-ramka {
  background: #e6eaed;
}
