@charset "UTF-8";
:root {
  --accent: #e8f27a;
  /* limonkowe tło z projektu */
  --accent-2: #F2FD9C;
  /* delikatniejszy odcień */
  --brand: #0f1115;
  /* bardzo ciemny szary (prawie czarny) */
  --text: #0b0d10;
  --text-grey: #8A8A8A;
  --muted: #6b7280;
  --muted2: #D4D4D4;
  --card: #ffffff;
  --dark: #151719;
  --dark-2: #1d1f23;
  --radius: 18px;
  --radius-lg: 30px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .12);
  --bs-gutter-x: 20px;
}

h1,
.h1 {
  font-size: 40px;
}
@media (min-width: 992px) {
  h1,
  .h1 {
    font-size: 64px;
  }
}

h2,
.h2 {
  font-size: 34px;
}
@media (min-width: 992px) {
  h2,
  .h2 {
    font-size: 48px;
  }
}

h3,
.h3 {
  font-size: 24px;
  line-height: 1.4;
}
@media (min-width: 992px) {
  h3,
  .h3 {
    font-size: 32px;
  }
}

h4,
.h4 {
  font-size: 18px;
  line-height: 1.45;
}
@media (min-width: 992px) {
  h4,
  .h4 {
    font-size: 24px;
  }
}

a {
  color: var(--text);
  transition: 0.4s all;
}
a:hover {
  color: var(--text-grey);
  text-decoration: none;
}

body {
  font-family: "Inter", sans-serif;
}

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

.navbar-toggler {
  color: white;
  padding: 0 0 !important;
}
.navbar-toggler:hover {
  background: none !important;
}
.navbar-toggler img#close {
  display: none;
}
.navbar-toggler img#open {
  display: block;
}
.navbar-toggler[aria-expanded=true] img#close {
  display: block;
}
.navbar-toggler[aria-expanded=true] img#open {
  display: none;
}

@media (max-width: 991px) {
  .navbar-brand,
  .navbar-toggler {
    position: relative;
    z-index: 100;
  }
}

@media (max-width: 991px) {
  .collapse {
    display: block;
    /* potrzebne żeby max-height działało */
    overflow: hidden;
    transition: opacity 0.4s ease;
    position: fixed;
    z-index: 99;
    opacity: 0;
    padding: 60px 18px 20px;
    top: 67px;
    left: 0;
    background: var(--dark-2);
    width: 100%;
    height: 0 !important;
    max-height: 0 !important;
  }
}
@media (max-width: 991px) {
  .collapse .top-btn {
    position: absolute;
    bottom: 50px;
  }
}

.collapsing {
  transition: unset !important;
  height: 0 !important;
  max-height: 0 !important;
}

.collapse.show {
  height: calc(100vh - 66px) !important;
  max-height: calc(100vh - 66px) !important;
  opacity: 1;
  /* lub 100svh dla mobilnych */
}

.btn-primary,
button,
.jpb-btn {
  border: 0;
  box-shadow: none;
  height: 47px;
  font-size: 16px;
  padding: 0 30px !important;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  border-radius: var(--radius-lg);
  background: var(--accent);
  color: var(--dark);
  display: flex;
  width: auto;
  text-decoration: none;
  max-width: -moz-fit-content;
  max-width: fit-content;
  font-weight: 700;
  transition: 0.4s all;
}
@media (min-width: 992px) {
  .btn-primary,
  button,
  .jpb-btn {
    height: 60px;
    font-size: 20px;
  }
}
.btn-primary:hover,
button:hover,
.jpb-btn:hover {
  background: var(--accent-2) !important;
  color: var(--dark) !important;
}
.btn-primary:focus,
button:focus,
.jpb-btn:focus {
  background: var(--accent-2) !important;
  color: var(--dark) !important;
}

.center-button {
  display: inline-block;
  line-height: 3;
}

.form-control {
  display: block;
  width: 100%;
  padding: 15px 0.75rem;
  font-weight: 700;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #000;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 8px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  font-size: 16px;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--text-grey) !important;
  text-transform: uppercase;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-grey) !important;
  text-transform: uppercase;
}

.form-check-inline {
  margin: 0;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: var(--text-grey) !important;
}

.form-check-input,
input[type=checkbox] {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
  border-radius: 0.25em;
  float: left;
  margin-left: -1.5em;
  cursor: pointer;
}
.form-check-input:focus,
input[type=checkbox]:focus {
  border-color: var(--accent);
  outline: 0;
  box-shadow: 0 0 2px 3px rgba(232, 242, 122, 0.43);
}
.form-check-input:checked,
input[type=checkbox]:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}
.form-check-input:active,
input[type=checkbox]:active {
  filter: brightness(90%);
}
.form-check-input:checked,
input[type=checkbox]:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e") !important;
}

joomla-alert {
  margin: 20px 0;
  font-weight: 700;
}
@media (min-width: 992px) {
  joomla-alert {
    padding: 20px;
  }
}
joomla-alert[type=success] {
  color: var(--brand);
  background: var(--accent-2);
  border-color: var(--accent);
}
joomla-alert .joomla-alert--close {
  padding: 0px 13px !important;
  top: -2px;
  bottom: unset;
  height: auto;
}

#top {
  text-align: center;
  font-size: 13px;
  padding: 11px 10px;
  position: relative;
  z-index: 99;
}
#top p {
  margin-bottom: 0;
}

header {
  position: sticky;
  top: 0;
  z-index: 99999999;
  width: 100%;
  background: var(--dark-2);
  transition: 0.4s all;
}
header .navbar {
  padding: 10px 0;
}
@media (min-width: 992px) {
  header .navbar {
    padding: 26px 0;
  }
}
header .navbar .navbar-logo {
  max-width: 171px;
}
@media (min-width: 992px) {
  header .navbar .navbar-logo {
    max-width: 250px;
  }
}
header .navbar .navbar-nav {
  margin-right: 23px;
}
header .navbar .navbar-nav .nav-item.current .nav-link {
  color: var(--accent);
}
header .navbar .navbar-nav .nav-link {
  text-transform: uppercase;
  display: block;
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  transition: 0.4s all;
  padding: 15px 0px;
}
@media (min-width: 992px) {
  header .navbar .navbar-nav .nav-link {
    padding: 0 27px;
  }
}
header .navbar .navbar-nav .nav-link:hover {
  color: var(--accent);
}
header #mainmenu p {
  margin: 0;
  display: none;
}
@media (min-width: 992px) {
  header #mainmenu p {
    display: block;
  }
}
header nav.bg-dark {
  background: none;
}
header .navbar-collapse {
  flex-grow: unset;
}

.top-btn {
  display: none;
  font-weight: 500;
  font-size: 12px;
  margin-bottom: 18px;
}
@media (min-width: 992px) {
  .top-btn {
    font-size: 16px;
    margin-bottom: 0px;
  }
}
@media (min-width: 1400px) {
  .top-btn {
    display: flex;
  }
}
@media (max-width: 991px) {
  .top-btn {
    display: flex;
  }
}
.top-btn p {
  margin: 0;
}
.top-btn a {
  letter-spacing: 0.025em;
  margin-left: 9px;
  color: var(--dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
}
@media (min-width: 992px) {
  .top-btn a {
    font-size: 20px;
  }
}

#home_main_section {
  max-height: 414px;
  width: 100vw;
  padding-bottom: 40px;
  background-size: 210% !important;
  background-position: center !important;
  background-attachment: scroll !important;
  background-color: var(--brand) !important;
}
@media (min-width: 768px) {
  #home_main_section {
    background-size: 150% !important;
  }
}
@media (min-width: 992px) {
  #home_main_section {
    min-height: 600px;
    max-height: unset;
    background-size: cover !important;
    background-attachment: fixed !important;
  }
}
#home_main_section .jpb-addon-title {
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1450980392);
  line-height: 1.1;
  font-weight: 500;
  color: white;
  margin-bottom: 12px !important;
  font-size: 32px;
}
@media (min-width: 992px) {
  #home_main_section .jpb-addon-title {
    font-size: 64px;
  }
}

#clickbait_section {
  background: var(--accent-2) no-repeat right bottom;
}
@media (max-width: 991px) {
  #clickbait_section {
    padding-bottom: 20px !important;
  }
}
@media (max-width: 991px) {
  #clickbait_section .image-layout-preset-style-card .jpb-addon-image-layout-content {
    padding: 0;
  }
}
@media (max-width: 991px) {
  #clickbait_section .jpb-col-sm-6:first-child {
    order: 2;
  }
}
@media (max-width: 991px) {
  #clickbait_section .jpb-col-sm-6:last-child {
    margin-bottom: 100px;
    order: 1;
  }
}
#clickbait_section .jpb-btn:hover {
  background: var(--dark) !important;
  color: var(--card) !important;
}

#offer_section h3 {
  margin-bottom: 90px;
}
#offer_section .uk-panel {
  order: 0;
  display: flex;
  text-align: center;
  margin-bottom: 7px;
  flex-wrap: wrap;
}
#offer_section .uk-panel img {
  width: auto;
  height: 140px;
}
@media (max-width: 991px) {
  #offer_section .uk-panel img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (min-width: 992px) {
  #offer_section .uk-panel img {
    height: 240px;
  }
}
@media (max-width: 991px) {
  #offer_section .jpb-row-container {
    padding: 0;
  }
}
#offer_section .ui-title {
  margin-top: 15px !important;
  text-transform: uppercase;
  text-align: center;
  order: 2;
  width: 100%;
}
@media (max-width: 991px) {
  #offer_section .ui-title {
    margin-top: 35px !important;
    font-size: 16px;
  }
}
#offer_section .ui-content {
  margin: auto;
  max-width: 230px;
}
@media (max-width: 991px) {
  #offer_section .uk-grid {
    margin: 0;
  }
}
#offer_section .uk-grid > * {
  padding: 0;
}
@media (min-width: 992px) {
  #offer_section .uk-grid > * {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  #offer_section .uk-grid > * {
    border-bottom: 1px solid var(--muted2);
    border-right: 1px solid var(--muted2);
    margin: 0;
    padding: 8px 3px;
  }
}
@media (max-width: 991px) {
  #offer_section .uk-grid > *:nth-child(even) {
    border-right: 0px;
  }
}
#offer_section .uk-grid > *:last-child, #offer_section .uk-grid > *:nth-last-child(2) {
  border-bottom: none;
}

#instagram_section .jpb-addon.jpb-addon-header {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  #instagram_section .jpb-row-container {
    padding: 0;
  }
}
@media (max-width: 991px) {
  #instagram_section .jpb-row-container .jpb-row-column {
    padding: 0;
  }
}
#instagram_section .fa-instagram {
  background: var(--accent);
  display: inline-block;
  padding: 10px;
  border-radius: 100%;
}
#instagram_section h4:not(.jpb-addon-title) {
  text-align: center;
  border-bottom: 2px solid black;
}
#instagram_section .jpb-addon-title {
  margin: 0 10px 0 0 !important;
}
#instagram_section .addon-root-instagram-gallery {
  margin-top: 20px;
}

#testimontaial_section .jpb-carousel-extended-item {
  margin: 40px 0 0 0;
  background: white;
  border-radius: 10px;
  padding: 0 20px 20px 20px;
}
#testimontaial_section .jpb-testimonial-carousel-item-content {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}
#testimontaial_section .jpb-testimonial-carousel-item-content .jpb-testimonial-carousel-client-rating {
  order: 9;
}
#testimontaial_section .jpb-testimonial-carousel-img-wrap {
  margin-top: -40px;
}
#testimontaial_section .jpb-testimonial-carousel-img-wrap img {
  border: 6px solid #191919;
}
#testimontaial_section .jpb-testimonial-carousel-name {
  font-size: 22px;
  font-weight: 500;
}
#testimontaial_section .jpb-testimonial-carousel-message {
  font-style: italic;
}
#testimontaial_section .jpb-carousel-extended-item img {
  -o-object-fit: cover;
     object-fit: cover;
}

#clients_section h3 {
  margin-bottom: 40px;
}
#clients_section .jpb-addon-content {
  text-align: center;
}
#clients_section .jpb-row {
  justify-content: center;
}
#clients_section img {
  text-align: center;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}
@media (max-width: 991px) {
  #clients_section img {
    text-align: center;
    margin-bottom: 20px;
    width: auto;
    margin: auto auto 20px;
  }
}
@media (max-width: 575px) {
  #clients_section .jpb-col-sm-2 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.jpb-carousel-extended-item img {
  -o-object-fit: contain;
     object-fit: contain;
}

.jpb-addon-image-layout-text {
  margin-bottom: 40px;
}

.jpb-addon-image-layout-image img {
  border-radius: 15px;
}

#services_section .uk-grid-match > div {
  margin: 0;
  border-bottom: 1px solid var(--muted2);
}
#services_section .uk-grid-match > div.uk-first-column {
  border-right: 1px solid var(--muted2);
}
@media (max-width: 991px) {
  #services_section .uk-grid-match > div.uk-first-column {
    border-right: 0;
  }
}
@media (min-width: 992px) {
  #services_section .uk-grid-match > div:nth-last-child(2) {
    border-bottom: 0;
  }
}
#services_section .uk-grid-match > div:last-child {
  border-bottom: 0;
}
#services_section .uk-grid-match > div {
  padding-top: 210px;
  padding-bottom: 25px;
}
@media (min-width: 992px) {
  #services_section .uk-grid-match > div {
    padding-top: 40px;
    padding-bottom: 75px;
  }
}
@media (min-width: 992px) {
  #services_section .uk-grid-match .ui-content {
    position: unset;
  }
}
#services_section .uk-grid-match .ui-content #mechanika_pojazdowa,
#services_section .uk-grid-match .ui-content #blacharstwo,
#services_section .uk-grid-match .ui-content #wulkanizacja,
#services_section .uk-grid-match .ui-content #stacja_diagnostyczna,
#services_section .uk-grid-match .ui-content #lambert,
#services_section .uk-grid-match .ui-content #regal {
  width: 200px;
  position: absolute;
  left: 0;
  right: unset;
  top: 0;
}
@media (max-width: 991px) {
  #services_section .uk-grid-match .ui-content #mechanika_pojazdowa,
  #services_section .uk-grid-match .ui-content #blacharstwo,
  #services_section .uk-grid-match .ui-content #wulkanizacja,
  #services_section .uk-grid-match .ui-content #stacja_diagnostyczna,
  #services_section .uk-grid-match .ui-content #lambert,
  #services_section .uk-grid-match .ui-content #regal {
    top: -250px;
    left: 0;
    right: 0;
    margin: auto;
  }
}

@media (max-width: 991px) {
  .uk-grid {
    margin: 0;
  }
}
.uk-grid > * {
  padding-left: 0;
}
@media (max-width: 991px) {
  .uk-grid > * {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .uk-grid > * {
    padding-left: 22px;
  }
}

.uk-width-expand {
  margin-bottom: 15px;
}

@media (min-width: 992px) {
  .uk-width-expand,
  .uk-card-body {
    line-height: 28px;
    margin-left: 238px;
    font-size: 20px;
    width: calc(100% - 238px);
    padding: 0;
    padding-right: 40px !important;
  }
}

.uk-card-body,
.uk-card-header {
  padding: 0px;
}

.uk-card-header .uk-first-column {
  padding-left: 15px;
}
@media (max-width: 991px) {
  .uk-card-header .uk-first-column {
    width: 100%;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .ui-image {
    width: auto !important;
    position: absolute;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media (min-width: 992px) {
  .uk-flex-middle {
    align-items: start !important;
  }
}

@media (max-width: 991px) {
  .uk-flex-middle {
    justify-content: center;
  }
}

footer {
  background: var(--accent-2);
  font-weight: 500;
  overflow-x: hidden;
}
footer p {
  margin: 0;
}
footer .logo {
  filter: invert(1);
}
footer #footer_contact {
  padding: 40px 0;
}
@media (min-width: 992px) {
  footer #footer_contact {
    padding: 0;
  }
}
footer #mobile_container a {
  display: block;
  width: 100%;
  margin: 0 0 10px;
}
footer .full-height {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 15px 0;
  align-content: space-between;
}
@media (min-width: 992px) {
  footer .full-height {
    padding: 45px 0;
  }
}
footer .full-height > * {
  width: 100%;
}
footer a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  margin-right: 10px;
  text-decoration: underline;
}
footer a:hover {
  color: var(--text);
  text-decoration: none;
}
footer .h4 {
  font-size: 24px;
}
@media (max-width: 991px) {
  footer .h4 {
    line-height: 1.7;
  }
}

.com-contact {
  display: flex;
  margin-top: 15px;
}
@media (min-width: 992px) {
  .com-contact {
    margin-top: 60px;
  }
}
.com-contact .field-spacer {
  display: none;
}
.com-contact .com-contact__miscinfo {
  margin-top: 50px;
}
.com-contact .control-label {
  display: none;
}
.com-contact .contact-misc p {
  margin-bottom: 40px;
}
.com-contact .contact_email_copy .control-label {
  display: block;
}
.com-contact #gdpr .control-group,
.com-contact .contact_email_copy .control-group {
  display: flex;
}
.com-contact #gdpr .control-group .control-label,
.com-contact .contact_email_copy .control-group .control-label {
  order: 2;
}
.com-contact #gdpr .control-group .controls,
.com-contact .contact_email_copy .control-group .controls {
  order: 1;
}
.com-contact #map {
  margin: 60px 0;
}
.com-contact #map h3 {
  margin-bottom: 30px;
}
.com-contact .btn-primary {
  width: 100%;
}
@media (min-width: 992px) {
  .com-contact .btn-primary {
    width: auto;
  }
}
@media (max-width: 991px) {
  .com-contact .btn-primary {
    max-width: none;
  }
}
.com-contact #privacy_policy_required {
  display: none !important;
}

.com-content-article {
  margin: 40px 0;
}
.com-content-article .h2 {
  margin-bottom: 40px;
}

html .cc-revoke,
html .cc-window {
  font-family: "Inter", sans-serif;
  letter-spacing: 0 !important;
}
html .cc-highlight .cc-btn.cc-deny,
html .cc-btn.cc-allowall {
  border-color: transparent !important;
}
html .cc-close {
  display: block;
  position: absolute;
  top: 1.3em;
  right: 0.9em;
  font-size: 0.9em;
  opacity: 0.9;
  line-height: 0.75;
  outline: none;
}
html div.cc-center-xtd div.cc-checkboxes-container {
  overflow-y: scroll;
  display: block;
  height: 32vh;
  overflow-x: hidden;
}
html .cc-grower > div {
  position: fixed;
}
html .cc-header {
  text-align: left;
}
html span.cc-header + span.cc-message span.cc-message-text {
  line-height: 1.5;
  margin-right: 5px;
}
html a.cc-link.cc-privacy::before,
html div.cc-settings-label::before,
html span.cc-message-text::before {
  display: none !important;
}
html div.cc-window.cc-center.cc-center-xtd.cc-window-settings-toggle-xtd {
  border-radius: 0;
  margin-top: 0 !important;
}
html div.cc-window.cc-floating div.cc-settings-label {
  margin-bottom: 20px;
  margin-top: 19px;
  text-align: left;
  font-size: 17px;
  font-weight: 700;
  opacity: 1 !important;
}
html div.cc-checkboxes-container input[type=checkbox] {
  margin-right: -16px !important;
  display: block !important;
}
html div.cc-center-xtd div.cc-checkbox-description {
  flex-basis: 100%;
  margin: 10px 0 0 0;
  font-size: 13px;
  line-height: 1.4;
}
html div.cc-center-xtd div.cc-checkbox-container {
  margin-bottom: 20px;
  padding: 14px;
  border: 1px solid #ccc;
  background: #f2f2f2;
  color: #000;
  border-radius: 0;
}
html div.cc-checkbox-category-readmore {
  margin-top: 15px !important;
  flex-basis: 100%;
  text-align: left;
  font-size: 13px;
  text-decoration: underline;
  margin-top: 5px;
  cursor: pointer;
  display: none;
}
html div.cc-checkboxes-container input.cc-cookie-checkbox + span {
  width: 34px;
}
html div.cc-checkboxes-container input.cc-cookie-checkbox + span::before {
  left: 2px;
}
html div.cc-checkboxes-container input.cc-cookie-checkbox:checked + span::before {
  left: 1px;
}
html a.cc-btn {
  padding: 15px !important;
  font-size: 14px;
  background: var(--accent) !important;
  border-radius: var(--radius-lg);
  color: var(--text) !important;
}
html a.cc-btn:hover {
  background: var(--accent-2) !important;
  color: var(--text) !important;
  text-decoration: none !important;
}
html span.cc-close {
  text-shadow: var(--text) 0 0 0 !important;
}
html div.cc-center a.cc-link,
html div.cc-checkbox-category-readmore {
  font-size: 14px !important;
  text-decoration: underline !important;
  color: var(--text) !important;
  margin-bottom: 16px !important;
  opacity: 1;
}
html div.cc-checkboxes-container input.cc-cookie-checkbox:checked + span,
html fieldset.cc-cookie-list-title .gdpr_onoffswitch-inner::before {
  background-color: var(--accent) !important;
}
html div.cc-center-xtd span.cc-cookie-settings-toggle {
  font-size: 16px;
}
html div.cc-center-xtd div.cc-checkboxes-container a.cc-btn.cc-allow {
  border: 0;
  padding: 0.7em 1.4em !important;
  float: left;
  margin-right: 6px;
}
html div.cc-center-xtd span.cc-cookie-settings-toggle {
  margin-top: 28px !important;
  font-size: 16px;
  text-decoration: underline;
  color: var(--text) !important;
}
html .cc-cookie-settings-toggler {
  display: none !important;
}
html div.cc-center-xtd div.cc-checkbox-container a:not(.cc-btn) {
  padding: 0;
  margin: 0 0 0 10px !important;
}
html .cc-revoke.cc-center.cc-revoke-bottom-left {
  padding: 5px 16px 5px 8px;
  left: 6em;
  right: auto;
  bottom: 3px;
  top: auto;
  margin: auto;
  border-radius: 5em;
  transform: translateY(0) !important;
}
html div.cc-revoke::before {
  filter: brightness(0);
}/*# sourceMappingURL=main.css.map */